Class: OpenStudio::Model::FanConstantVolume
- Inherits:
-
Object
- Object
- OpenStudio::Model::FanConstantVolume
- Defined in:
- lib/measures/openstudio_results/resources/Siz.FanConstantVolume.rb
Overview
******************************************************************************* OpenStudio®, Copyright © Alliance for Sustainable Energy, LLC. See also openstudio.net/license *******************************************************************************
Instance Method Summary collapse
Instance Method Details
#maxAirFlowRate ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/measures/openstudio_results/resources/Siz.FanConstantVolume.rb', line 7 def maxAirFlowRate if maximumFlowRate.is_initialized maximumFlowRate else autosizedMaximumFlowRate end end |
#maxAirFlowRateAutosized ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'lib/measures/openstudio_results/resources/Siz.FanConstantVolume.rb', line 15 def maxAirFlowRateAutosized if maximumFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end |
#performanceCharacteristics ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/measures/openstudio_results/resources/Siz.FanConstantVolume.rb', line 24 def performanceCharacteristics effs = [] effs << [fanEfficiency, 'Fan Efficiency'] effs << [pressureRise, 'Pressure Rise'] effs << [motorEfficiency, 'Motor Efficiency'] return effs end |