Sha256: 2f5e5ebbe1c19286873f953bdb3cbd9229b821eb62db1479f17254df4a0dc262
Contents?: true
Size: 1.13 KB
Versions: 5
Compression:
Stored size: 1.13 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::CoilHeatingWaterBaseboardRadiant def maxHeatingCapacity if heatingDesignCapacity.is_initialized heatingDesignCapacity else autosizedHeatingDesignCapacity end end def maxWaterFlowRate if maximumWaterFlowRate.is_initialized maximumWaterFlowRate else autosizedMaximumWaterFlowRate end end def maxHeatingCapacityAutosized if heatingDesignCapacity.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 maximumWaterFlowRate.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