Class: OpenStudio::Model::EvaporativeCoolerIndirectResearchSpecial
- Inherits:
-
Object
- Object
- OpenStudio::Model::EvaporativeCoolerIndirectResearchSpecial
- Defined in:
- lib/measures/openstudio_results/resources/Siz.EvaporativeCoolerIndirectResearchSpecial.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.EvaporativeCoolerIndirectResearchSpecial.rb', line 7 def maxAirFlowRate if primaryDesignAirFlowRate.is_initialized primaryDesignAirFlowRate else autosizedPrimaryDesignAirFlowRate end end |
#maxAirFlowRateAutosized ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'lib/measures/openstudio_results/resources/Siz.EvaporativeCoolerIndirectResearchSpecial.rb', line 15 def maxAirFlowRateAutosized if primaryDesignAirFlowRate.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 31 |
# File 'lib/measures/openstudio_results/resources/Siz.EvaporativeCoolerIndirectResearchSpecial.rb', line 24 def performanceCharacteristics effs = [] effs << [coolerMaximumEffectiveness, 'Cooler Maximum Effectiveness'] effs << [secondaryFanTotalEfficiency, 'Secondary Fan Total Efficiency'] effs << [secondaryFanDeltaPressure, 'Secondary Fan Delta Pressure'] effs << [coolerDrybulbDesignEffectiveness, 'Cooler Drybulb Design Effectiveness'] return effs end |