Sha256: 1248d2a215b6304b07493919bfe0d7f1254ec14f63a405b3e87c2866eadbd61a
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::FluidCoolerSingleSpeed def maxAirFlowRate if designAirFlowRate.is_initialized designAirFlowRate else autosizedDesignAirFlowRate end end def maxWaterFlowRate if designWaterFlowRate.is_initialized designWaterFlowRate else autosizedDesignWaterFlowRate end end def maxAirFlowRateAutosized if designAirFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def maxWaterFlowRateAutosized if designWaterFlowRate.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end end
Version data entries
4 entries across 4 versions & 1 rubygems