Sha256: b4beee44ad97e8363714e767d05d06ff79efcd5e42a9bd584c185c9c8ffd1c97
Contents?: true
Size: 887 Bytes
Versions: 4
Compression:
Stored size: 887 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::EvaporativeCoolerDirectResearchSpecial def maxAirFlowRate if primaryAirDesignFlowRate.is_initialized primaryAirDesignFlowRate else autosizedPrimaryAirDesignFlowRate end end def maxAirFlowRateAutosized if primaryAirDesignFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def performanceCharacteristics effs = [] effs << [coolerEffectiveness, 'Cooler Effectiveness'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems