Sha256: 44f993ecc7f1a7b62d9ca6ccd33a9cceb9cce90fc14814167213998647396e2a
Contents?: true
Size: 1.13 KB
Versions: 4
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::CoilHeatingDXVariableRefrigerantFlow def maxHeatingCapacity if ratedTotalHeatingCapacity.is_initialized ratedTotalHeatingCapacity else autosizedRatedTotalHeatingCapacity end end def maxAirFlowRate if ratedAirFlowRate.is_initialized ratedAirFlowRate else autosizedRatedAirFlowRate end end def maxHeatingCapacityAutosized if ratedTotalHeatingCapacity.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def maxAirFlowRateAutosized if ratedAirFlowRate.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