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

Unit-level data for MF/SFA buildings #728

Open
1 of 7 tasks
joseph-robertson opened this issue Oct 25, 2021 · 4 comments · Fixed by #712
Open
1 of 7 tasks

Unit-level data for MF/SFA buildings #728

joseph-robertson opened this issue Oct 25, 2021 · 4 comments · Fixed by #712
Assignees

Comments

@joseph-robertson
Copy link
Contributor

joseph-robertson commented Oct 25, 2021

Moved from: https://trello.com/c/Sgeu6Q7u/96-unit-level-data-for-mf-sfa-buildings.

ResStock currently has a number of building-level options that are mapped to dwelling unit (eg, stories, # of units, infiltration), we instead want to update:

  • ResStockArguments to directly populate unit-level options (chose this for now)
  • TSVs (do we eventually want to do this?)
    • Geometry Attic/Foundation Type
    • Infiltration
    • Geometry Stories
    • Ducts (leakage for units not adjacent to foundation space)
    • ?
@joseph-robertson
Copy link
Contributor Author

joseph-robertson commented Jun 11, 2024

For infiltration, we see adjusted ACH50 values as high as ~106 (multifamily, 67 units, 3 stories, sampled 50 ACH50). Although, as you can see in the plot below, the distributions across building types are generally similar.

image

@afontani
Copy link
Contributor

For infiltration, the action would be to assign the ACH 50 value to the unit and scale it based on the amount of the area to the outside environment.

@joseph-robertson
Copy link
Contributor Author

Here are the results when we set the air leakage type to "unit total" instead of "unit exterior only" (along w/ commenting out "Infiltration adjustment for SFA/MF units" in ResStockArguments).

image

@aspeake
Copy link
Contributor

aspeake commented Jun 14, 2024

For infiltration, the action would be to assign the ACH 50 value to the unit and scale it based on the amount of the area to the outside environment.

That is supposed to be what's happening here:

# Infiltration adjustment for SFA/MF units
# Calculate exposed wall area ratio for the unit (unit exposed wall area
# divided by average unit exposed wall area)
if (n_units_per_floor <= 2) || (n_units_per_floor == 4 && has_rear_units) # No middle unit(s)
exposed_wall_area_ratio = 1.0 # all units have same exterior wall area
else # Has middle unit(s)
if has_rear_units
n_end_units = 4 * n_floors
n_mid_units = n_units - n_end_units
n_bldg_fronts_backs = n_end_units + n_mid_units
n_bldg_sides = n_end_units
else
n_end_units = 2 * n_floors
n_mid_units = n_units - n_end_units
n_bldg_fronts_backs = n_end_units * 2 + n_mid_units * 2
n_bldg_sides = n_end_units
end
if has_rear_units
n_unit_fronts_backs = 1
else
n_unit_fronts_backs = 2
end
if ['Middle'].include? horiz_location
n_unit_sides = 0
elsif ['Left', 'Right'].include? horiz_location
n_unit_sides = 1
end
n_bldg_sides_equivalent = n_bldg_sides + n_bldg_fronts_backs * aspect_ratio
n_unit_sides_equivalent = n_unit_sides + n_unit_fronts_backs * aspect_ratio
exposed_wall_area_ratio = n_unit_sides_equivalent / (n_bldg_sides_equivalent / n_units)
end
# Apply adjustment to infiltration value
args[:air_leakage_value] *= exposed_wall_area_ratio

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants