Sha256: 1798eb763f1eb2ebbd0f0aafecff7f6d56cf0df01b9ea19c6ce4f9887f0d8d25
Contents?: true
Size: 836 Bytes
Versions: 4
Compression:
Stored size: 836 Bytes
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::BoilerSteam def maxHeatingCapacity if nominalCapacity.is_initialized nominalCapacity else autosizedNominalCapacity end end def maxHeatingCapacityAutosized if nominalCapacity.is_initialized # Not autosized if hard size field value present return OpenStudio::OptionalBool.new(false) else return OpenStudio::OptionalBool.new(true) end end def performanceCharacteristics effs = [] effs << [theoreticalEfficiency, 'Theoretical Efficiency'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems