Sha256: 878f3c5120569f4dd95856778165664b2c4a9c0eb65fa2cf7aa6a41768735dfe
Contents?: true
Size: 1.12 KB
Versions: 5
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::CoilHeatingWaterBaseboard 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