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