Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add water heater location #1125

Merged
merged 35 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
5a117f8
initial commit of new/updated tsv files
lixiliu Aug 24, 2023
d8af822
Add update_yml_precomputed_files
lixiliu Aug 24, 2023
4c5b76d
update options_lookup
lixiliu Aug 25, 2023
b1cded1
add yml_precomputed buildstock generation to github action
lixiliu Aug 25, 2023
954a370
update tsvs, buildstock script, CI action, yamls
lixiliu Aug 28, 2023
6b4b56b
update upgrade yamls
lixiliu Aug 29, 2023
d16c7df
update tsvs
lixiliu Sep 6, 2023
4c40fbf
Merge branch 'develop' into ll/water_heater_location
lixiliu Sep 6, 2023
3eb67a0
fix read_csv in buildstock generation
lixiliu Sep 6, 2023
1d9f878
new tsvs
lixiliu Sep 7, 2023
52e8267
update config
lixiliu Sep 7, 2023
94f54f5
new tsvs
lixiliu Sep 7, 2023
29fcff1
Merge branch 'develop' into ll/water_heater_location
lixiliu Sep 7, 2023
12e3eff
Merge branch 'develop' into ll/water_heater_location
lixiliu Sep 7, 2023
73f578a
fix indentations
lixiliu Sep 7, 2023
b172f0b
Merge branch 'll/water_heater_location' of https://github.com/NREL/re…
lixiliu Sep 7, 2023
c92ca65
new tsvs
lixiliu Sep 8, 2023
e583c10
update tsvs
lixiliu Sep 11, 2023
1d22a2e
Merge branch 'develop' into ll/water_heater_location
lixiliu Sep 11, 2023
5085fef
new tsvs
lixiliu Sep 11, 2023
1c3020b
prevent outside WH install in project_testing
lixiliu Sep 13, 2023
f19e63d
Latest results.
Sep 14, 2023
35cf073
add new warning to bypass for testing
lixiliu Sep 14, 2023
32dc0e7
Merge branch 'll/water_heater_location' of https://github.com/NREL/re…
lixiliu Sep 14, 2023
5ac7506
enforce ordering in CI config
lixiliu Sep 14, 2023
f6185f7
Minor cleanup
lixiliu Sep 14, 2023
58367ff
Latest results.
Sep 14, 2023
64d1db2
new tsvs with correct basement allocations
lixiliu Sep 14, 2023
778348c
Merge branch 'll/water_heater_location' of https://github.com/NREL/re…
lixiliu Sep 14, 2023
134f4aa
Latest results.
Sep 15, 2023
546a3fc
Tighten Geometry Space Combination so no option has 0 sampling_prob
lixiliu Sep 15, 2023
9b146bf
update change log
lixiliu Sep 19, 2023
706aeef
Update CI config to run precomputed buildstocks with analysis-tests
lixiliu Sep 19, 2023
c2b4156
Merge branch 'develop' into ll/water_heater_location
joseph-robertson Sep 20, 2023
10934c8
Latest results.
Sep 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Not all may apply:
- [ ] Tests (and test files) have been updated
- [ ] Documentation has been updated
- [ ] If related to resstock-estimation, checklist includes [data dictionary](https://github.com/NREL/resstock/tree/develop/resources/data/dictionary), [source report](https://github.com/NREL/resstock/tree/develop/project_national/resources/source_report.csv), [options saturation](https://github.com/NREL/resstock/tree/develop/project_national/resources/options_saturations.csv), [options_lookup](https://github.com/NREL/resstock/blob/develop/resources/options_lookup.tsv).
- [ ] If changes to project_testing tsvs, checklist includes [yml_precomputed](https://github.com/NREL/resstock/tree/develop/test/tests_yml_files/yml_precomputed), [yml_precomputed_outdated](https://github.com/NREL/resstock/tree/develop/test/tests_yml_files/yml_precomputed_outdated), [yml_precomputed_weight](https://github.com/NREL/resstock/tree/develop/test/tests_yml_files/yml_precomputed_weight)
- [ ] Changelog has been updated
- [ ] `openstudio tasks.rb update_measures` has been run
- [ ] No unexpected regression test changes on CI (checked comparison artifacts)
46 changes: 42 additions & 4 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
path: resources
name: options_lookup

- name: Run integrity checks for all projects
run: |
bundle exec rake unit_tests:project_integrity_checks
Expand All @@ -71,9 +71,35 @@ jobs:
path: coverage
name: coverage

precomputed-buildstocks:
runs-on: ubuntu-latest
needs: [unit-tests]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}

- name: Download and Install OpenStudio
run: |
wget -q https://github.com/NREL/OpenStudio/releases/download/v3.6.1/OpenStudio-3.6.1+bb9481519e-Ubuntu-20.04-x86_64.deb
sudo apt install -y ./OpenStudio-3.6.1+bb9481519e-Ubuntu-20.04-x86_64.deb
openstudio openstudio_version
which openstudio

- name: Generate precomputed buildstocks
run: |
pip install pandas
python test/update_yml_precomputed_files.py

- name: Upload precomputed buildstocks
uses: actions/upload-artifact@v3
with:
path: test/tests_yml_files/yml_precomputed*/buildstock*.csv
name: precomputed_buildstocks

analysis-tests:
runs-on: ubuntu-latest
needs: [format-files]
needs: [precomputed-buildstocks]
lixiliu marked this conversation as resolved.
Show resolved Hide resolved
container:
image: docker://nrel/openstudio:3.6.1
steps:
Expand All @@ -91,6 +117,12 @@ jobs:
path: resources
name: options_lookup

- name: Download precomputed buildstocks
uses: actions/download-artifact@v3
with:
path: test/tests_yml_files
name: precomputed_buildstocks

- name: Run run_analysis.rb
run: |
bundle exec rake workflow:analysis_tests
Expand Down Expand Up @@ -153,7 +185,6 @@ jobs:
- name: Process results
run: |
pip install plotly

python test/process_bsb_analysis.py

- name: Run tests
Expand Down Expand Up @@ -292,7 +323,7 @@ jobs:

update-results:
runs-on: ubuntu-latest
needs: [integration-tests]
needs: [integration-tests, precomputed-buildstocks]
lixiliu marked this conversation as resolved.
Show resolved Hide resolved
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -322,6 +353,12 @@ jobs:
path: resources
name: options_lookup

- name: Download precomputed buildstocks
uses: actions/download-artifact@v3
with:
path: test/tests_yml_files
name: precomputed_buildstocks

- name: Commit latest results
shell: bash
run: |
Expand All @@ -335,6 +372,7 @@ jobs:
git add test/base_results
git add docs
git add resources/options_lookup.tsv
git add test/tests_yml_files
git status
if [[ $(git diff --cached --exit-code) ]]; then
git config --global user.email "github-action@users.noreply.github.com"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Features
- Include HVAC secondary heating capabilities for project_testing ([#1090](https://github.com/NREL/resstock/pull/1090))
- For heat pump upgrades, adds the ability to set the existing primary (non-shared) heating system as the backup system using only a single option from the lookup ([#1074](https://github.com/NREL/resstock/pull/1074))
- options_saturations.csv is added to project_*/resources/ folder ([#1132](https://github.com/NREL/resstock/pull/1132))
- Add Water Heater Location and Geometry Space Combination, update Geometry Garage and Geometry Floor Area Bin to RECS2020, update RECS2020 microdata from v2 to v4, auto-generate buildstocks for yml_precomputed tests ([#1125](https://github.com/NREL/resstock/pull/1125))
lixiliu marked this conversation as resolved.
Show resolved Hide resolved

Fixes
- Set standard format for options_lookup ([#962](https://github.com/NREL/resstock/pull/962))
Expand Down
46 changes: 2 additions & 44 deletions measures/UpgradeCosts/measure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<schema_version>3.1</schema_version>
<name>upgrade_costs</name>
<uid>ef51212c-acc4-48d7-9b29-cf2a5c6c4449</uid>
<version_id>c1701f5c-37ad-4148-aff8-70f5e42e8a60</version_id>
<version_modified>2023-08-21T22:09:39Z</version_modified>
<version_id>1508f0de-709b-4094-9b7b-ffe4bc89b4df</version_id>
<version_modified>2023-09-14T18:18:54Z</version_modified>
<xml_checksum>9BF1E6AC</xml_checksum>
<class_name>UpgradeCosts</class_name>
<display_name>Upgrade Costs</display_name>
Expand Down Expand Up @@ -119,12 +119,6 @@
<usage_type>test</usage_type>
<checksum>B9183037</checksum>
</file>
<file>
<filename>SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.xml</filename>
<filetype>xml</filetype>
<usage_type>test</usage_type>
<checksum>65449877</checksum>
</file>
<file>
<filename>SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw</filename>
<filetype>osw</filetype>
Expand All @@ -149,24 +143,12 @@
<usage_type>test</usage_type>
<checksum>ABFCA3DB</checksum>
</file>
<file>
<filename>SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.xml</filename>
<filetype>xml</filetype>
<usage_type>test</usage_type>
<checksum>076668CA</checksum>
</file>
<file>
<filename>SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw</filename>
<filetype>osw</filetype>
<usage_type>test</usage_type>
<checksum>B57303D3</checksum>
</file>
<file>
<filename>SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.xml</filename>
<filetype>xml</filetype>
<usage_type>test</usage_type>
<checksum>451F9215</checksum>
</file>
<file>
<filename>SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw</filename>
<filetype>osw</filetype>
Expand All @@ -179,12 +161,6 @@
<usage_type>test</usage_type>
<checksum>986E1AAD</checksum>
</file>
<file>
<filename>SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.xml</filename>
<filetype>xml</filetype>
<usage_type>test</usage_type>
<checksum>DDDC28CD</checksum>
</file>
<file>
<filename>SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw</filename>
<filetype>osw</filetype>
Expand Down Expand Up @@ -221,24 +197,6 @@
<usage_type>test</usage_type>
<checksum>B165DD4B</checksum>
</file>
<file>
<filename>in.epw</filename>
<filetype>epw</filetype>
<usage_type>test</usage_type>
<checksum>E23378AA</checksum>
</file>
<file>
<filename>in.osm</filename>
<filetype>osm</filetype>
<usage_type>test</usage_type>
<checksum>06875597</checksum>
</file>
<file>
<filename>in.xml</filename>
<filetype>xml</filetype>
<usage_type>test</usage_type>
<checksum>BD7C5A72</checksum>
</file>
<file>
<filename>upgrade_costs_test.rb</filename>
<filetype>rb</filetype>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
Dependency=Duct Location Dependency=Vintage Option=0% Leakage, Uninsulated Option=10% Leakage, R-4 Option=10% Leakage, R-6 Option=10% Leakage, R-8 Option=10% Leakage, Uninsulated Option=20% Leakage, R-4 Option=20% Leakage, R-6 Option=20% Leakage, R-8 Option=20% Leakage, Uninsulated Option=30% Leakage, R-4 Option=30% Leakage, R-6 Option=30% Leakage, R-8 Option=30% Leakage, Uninsulated Option=None sampling_probability
Garage <1940 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.000330212
Garage 1940s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.000686286
Garage 1950s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00252339
Garage 1960s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00445986
Garage 1970s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00604545
Garage 1980s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00612074
Garage 1990s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00709953
Garage 2000s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0102489
Garage 2010s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.00323595
Dependency=Duct Location Dependency=Vintage Option=0% Leakage to Outside, Uninsulated Option=10% Leakage to Outside, R-4 Option=10% Leakage to Outside, R-6 Option=10% Leakage to Outside, R-8 Option=10% Leakage to Outside, Uninsulated Option=20% Leakage to Outside, R-4 Option=20% Leakage to Outside, R-6 Option=20% Leakage to Outside, R-8 Option=20% Leakage to Outside, Uninsulated Option=30% Leakage to Outside, R-4 Option=30% Leakage to Outside, R-6 Option=30% Leakage to Outside, R-8 Option=30% Leakage to Outside, Uninsulated Option=None sampling_probability
Garage <1940 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00075272
Garage 1940s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00113032
Garage 1950s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00283827
Garage 1960s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00487706
Garage 1970s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00626345
Garage 1980s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00675924
Garage 1990s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00770859
Garage 2000s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0114911
Garage 2010s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.00351737
Heated Basement <1940 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0130456
Heated Basement 1940s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00699022
Heated Basement 1940s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00699023
Heated Basement 1950s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0162687
Heated Basement 1960s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0125387
Heated Basement 1970s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.014702
Heated Basement 1980s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0115802
Heated Basement 1990s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0142111
Heated Basement 2000s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.013389
Heated Basement 2010s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00392685
Living Space <1940 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00972023
Living Space 1940s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00544694
Living Space 1950s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0111479
Living Space 1960s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0179951
Living Space 1970s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0372989
Living Space 1980s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0376897
Living Space 1990s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0377422
Living Space 2000s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0331732
Living Space 2010s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0134787
Living Space <1940 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00929772
Living Space 1940s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.00500291
Living Space 1950s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.010833
Living Space 1960s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0175778
Living Space 1970s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0370809
Living Space 1980s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0370511
Living Space 1990s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0371331
Living Space 2000s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0319309
Living Space 2010s 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.0131972
None <1940 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.0514666
None 1940s 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.0162025
None 1950s 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.0261588
Expand All @@ -36,50 +36,32 @@ None 1990s 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.0226111
None 2000s 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.0148904
None 2010s 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0.00854894
Unheated Basement <1940 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0275207
Unheated Basement 1940s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00531834
Unheated Basement 1940s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00531833
Unheated Basement 1950s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0121735
Unheated Basement 1960s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00810462
Unheated Basement 1970s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00950424
Unheated Basement 1960s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00810461
Unheated Basement 1970s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00950423
Unheated Basement 1980s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00693004
Unheated Basement 1990s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00822665
Unheated Basement 2000s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.00930419
Unheated Basement 2000s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.0093042
Unheated Basement 2010s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.00299098
Unvented Attic <1940 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.000526475
Unvented Attic 1940s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.000504865
Unvented Attic 1950s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00128323
Unvented Attic 1960s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00109253
Unvented Attic 1970s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00146199
Unvented Attic 1980s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00218898
Unvented Attic 1990s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00220789
Unvented Attic 2000s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.00293582
Unvented Attic 2010s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.00109907
Unvented Crawlspace <1940 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0
Unvented Crawlspace 1940s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0
Unvented Crawlspace 1950s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0
Unvented Crawlspace 1960s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0
Unvented Crawlspace 1970s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0
Unvented Crawlspace 1980s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00377893
Unvented Crawlspace 1990s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00433997
Unvented Crawlspace 2000s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.0033795
Unvented Crawlspace 2010s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.00113085
Vented Attic <1940 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00467473
Vented Attic 1940s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00486351
Vented Attic 1950s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.012169
Vented Attic 1960s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0164433
Vented Attic 1970s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0216035
Vented Attic 1980s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0231398
Vented Attic 1990s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0247919
Vented Attic 2000s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0370506
Vented Attic 2010s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0118452
Vented Crawlspace <1940 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0201107
Vented Crawlspace 1940s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00939403
Vented Crawlspace 1950s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0221166
Vented Crawlspace 1960s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0174584
Vented Crawlspace 1970s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0232042
Vented Crawlspace 1980s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.015199
Vented Crawlspace 1990s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0166722
Vented Crawlspace 2000s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.0130519
Vented Crawlspace 2010s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.00447859
Attic <1940 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00520121
Attic 1940s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.00536837
Attic 1950s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0134522
Attic 1960s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0175358
Attic 1970s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0230655
Attic 1980s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0253288
Attic 1990s 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0 0.0269998
Attic 2000s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0399864
Attic 2010s 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0.0129443
Crawlspace <1940 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0201107
Crawlspace 1940s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.00939403
Crawlspace 1950s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0221166
Crawlspace 1960s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0174584
Crawlspace 1970s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0232042
Crawlspace 1980s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0189779
Crawlspace 1990s 0 0 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0.0210122
Crawlspace 2000s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.0164314
Crawlspace 2010s 0 0 0.26 0 0 0 0.47 0 0 0 0.27 0 0 0 0.00560944
# Created by: sources\other\tsv_maker.py
# Description: Duct insulation and leakage to outside from the portion of ducts in unconditioned spaces
# Source: Duct insulation as a function of location: IECC 2009
Expand Down
Loading