diff --git a/CHANGELOG.md b/CHANGELOG.md index 47870c1..20f0982 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Gemfile b/Gemfile index c99db30..333f583 100644 --- a/Gemfile +++ b/Gemfile @@ -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' diff --git a/README.md b/README.md index 145fbc3..2649f26 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/lib/measures/fan_assist_night_ventilation/measure.rb b/lib/measures/fan_assist_night_ventilation/measure.rb index 3c7b25a..92e8d76 100644 --- a/lib/measures/fan_assist_night_ventilation/measure.rb +++ b/lib/measures/fan_assist_night_ventilation/measure.rb @@ -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 diff --git a/lib/openstudio/ee_measures/version.rb b/lib/openstudio/ee_measures/version.rb index 07078c8..f0e1421 100644 --- a/lib/openstudio/ee_measures/version.rb +++ b/lib/openstudio/ee_measures/version.rb @@ -37,6 +37,6 @@ module OpenStudio module EeMeasures - VERSION = '0.6.0' + VERSION = '0.7.0' end end diff --git a/openstudio-ee.gemspec b/openstudio-ee.gemspec index a9a16b0..5d9ca3e 100644 --- a/openstudio-ee.gemspec +++ b/openstudio-ee.gemspec @@ -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'