Skip to content

Commit

Permalink
Merge pull request #1826 from NREL/fix/issue1715
Browse files Browse the repository at this point in the history
Corrrect WWR adjustment logic
  • Loading branch information
mdahlhausen authored Oct 10, 2024
2 parents 0c521c4 + 3f4e375 commit 90f304c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/openstudio-standards/standards/Standards.Model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5504,7 +5504,7 @@ def model_apply_userdata_outdoor_air(model)
def model_does_require_wwr_adjustment?(wwr_limit, wwr_list)
require_adjustment = false
wwr_list.each do |wwr|
require_adjustment = true unless wwr > wwr_limit
require_adjustment = true if wwr > wwr_limit
end
return require_adjustment
end
Expand Down

0 comments on commit 90f304c

Please sign in to comment.