Sha256: c14094862fc3f96e18f35a5eaa374e7b406bf8d71d552e5255bf52df8994653f
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::ChillerAbsorption 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
5 entries across 5 versions & 1 rubygems