Sha256: f911a730cff860572899f73095f85f6690eee38bab44f0bce1caa8cf6fc57b1a
Contents?: true
Size: 728 Bytes
Versions: 4
Compression:
Stored size: 728 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::AirLoopHVAC def maxAirFlowRate if designSupplyAirFlowRate.is_initialized designSupplyAirFlowRate else autosizedDesignSupplyAirFlowRate end end def maxAirFlowRateAutosized if designSupplyAirFlowRate.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