Sha256: 3dbfa4605aa07d207759ba392bccbb3a2b26d29f242459b576a2e8a1b9cd8ed2
Contents?: true
Size: 1.08 KB
Versions: 4
Compression:
Stored size: 1.08 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilCoolingWater 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