Skip to content

Commit

Permalink
Merge pull request #44 from NREL/develop
Browse files Browse the repository at this point in the history
0.7.0 release
  • Loading branch information
kflemin authored Nov 30, 2022
2 parents c3becb7 + 6cb332a commit 4329586
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# OpenStudio EE Gem

## Version 0.7.0
* Support for OpenStudio 3.5 (upgrade to standards gem 0.3.0, extension gem 0.6.0)

## Version 0.6.0
* Support for OpenStudio 3.4 (upgrade to standards gem 0.2.16, no extension gem upgrade)

Expand Down
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ gemspec
# checkout the latest version (develop) from github.
allow_local = ENV['FAVOR_LOCAL_GEMS']

# Delete when these branchesa are merged and released
#gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'v0.6.0-rc1'
#gem 'openstudio-standards', '= 0.2.17.rc1', :github => 'NREL/openstudio-standards', :ref => '3.5.0_changes'


# uncomment when you want CI to use develop branch of extension gem
# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Or install it yourself as:

|OpenStudio EE Gem|OpenStudio|Ruby|
|:--------------:|:----------:|:--------:|
| 0.7.0 | 3.5 | 2.7 |
| 0.6.0 | 3.4 | 2.7 |
| 0.5.0 | 3.3 | 2.7 |
| 0.4.0 | 3.2 | 2.7 |
Expand Down
1 change: 0 additions & 1 deletion lib/measures/fan_assist_night_ventilation/measure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ def run(model, runner, user_arguments)
zone_ventilation.setName("PathStart_#{zone.name}")
zone_ventilation.addToThermalZone(zone)
zone_ventilation.setVentilationType('Exhaust') # switched from Natural to use power. Need to set fan properties. Used exhaust so no heat from fan in stream
zone_ventilation.setDesignFlowRateCalculationMethod('Flow/Zone')
fraction_flow = design_flow_rate_si * zone_opp_area / bldg_area_counter
zone_ventilation.setDesignFlowRate(fraction_flow)
zone_design_flow_rate_ip = OpenStudio.convert(zone_ventilation.designFlowRate, 'm^3/s', 'cfm').get
Expand Down
2 changes: 1 addition & 1 deletion lib/openstudio/ee_measures/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@

module OpenStudio
module EeMeasures
VERSION = '0.6.0'
VERSION = '0.7.0'
end
end
4 changes: 2 additions & 2 deletions openstudio-ee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '~> 2.7.0'

spec.add_dependency 'bundler', '~> 2.1'
spec.add_dependency 'openstudio-extension', '~> 0.5.1'
spec.add_dependency 'openstudio-standards', '~> 0.2.16'
spec.add_dependency 'openstudio-extension', '~> 0.6.0'
spec.add_dependency 'openstudio-standards', '~> 0.3.0'

spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.9'
Expand Down

0 comments on commit 4329586

Please sign in to comment.