Sha256: 08148adb7fdcc5c7e787a87a5839770794e852c5872e299ec1ea83d1ecb6412d
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::ChillerAbsorptionIndirect def maxCoolingCapacity if nominalCapacity.is_initialized nominalCapacity else autosizedNominalCapacity end end def maxWaterFlowRate if designChilledWaterFlowRate.is_initialized designChilledWaterFlowRate else autosizedDesignChilledWaterFlowRate end end def maxCoolingCapacityAutosized if nominalCapacity.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 designChilledWaterFlowRate.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