Skip to content

Commit

Permalink
Backport bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
shorowit committed Sep 19, 2022
1 parent e6fa1f2 commit 65ea829
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## OpenStudio-ERI v1.4.4

__Bugfixes__
- Fixes possible simulation error if a slab has an ExposedPerimeter near zero.

## OpenStudio-ERI v1.4.3

__Bugfixes__
Expand Down
2 changes: 2 additions & 0 deletions hpxml-measures/HPXMLtoOpenStudio/measure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,8 @@ def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac,
length *= total_slab_exp_perim / total_fnd_wall_length
end

return if length < 0.1 # Avoid Kiva error if exposed wall length is too small

if gross_area > net_area
# Create a "notch" in the wall to account for the subsurfaces. This ensures that
# we preserve the appropriate wall height, length, and area for Kiva.
Expand Down
2 changes: 1 addition & 1 deletion workflow/util.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def process_arguments(calling_rb, args, basedir, caller)
options[:timeseries_outputs] = timeseries_types[1..-1]
end
if options[:version]
workflow_version = '1.4.3'
workflow_version = '1.4.4'
puts "OpenStudio-ERI v#{workflow_version}"
puts "OpenStudio v#{OpenStudio.openStudioLongVersion}"
puts "EnergyPlus v#{OpenStudio.energyPlusVersion}.#{OpenStudio.energyPlusBuildSHA}"
Expand Down

0 comments on commit 65ea829

Please sign in to comment.