Skip to content

Commit

Permalink
Set stds_type value for windows based on template.
Browse files Browse the repository at this point in the history
  • Loading branch information
lymereJ committed Sep 27, 2024
1 parent b9f8f21 commit ef46ce3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions lib/openstudio-standards/standards/Standards.PlanarSurface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,17 @@ def planar_surface_apply_standard_construction(planar_surface, climate_zone, pre
end
case stds_type
when 'Metal Framing', 'Metal Framing with Thermal Break'
stds_type = 'Metal framing (all other)'
if template == '90.1-2013'
stds_type = 'Metal framing, fixed'
else
stds_type = 'Metal framing (all other)'
end
when 'Non-Metal Framing'
stds_type = 'Nonmetal framing (all)'
if template == '90.1-2013'
stds_type = 'Nonmetal framing, all'
else
stds_type = 'Nonmetal framing (all)'
end
when 'Any Vertical Glazing'
stds_type = 'Any Vertical Glazing'
else
Expand Down

0 comments on commit ef46ce3

Please sign in to comment.