Sha256: 89b747a42bbe56cc38309b2031a166f9292049eb527c25c1737a86b776640177
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
# ******************************************************************************* # OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://openstudio.net/license # ******************************************************************************* class OpenStudio::Model::WaterHeaterStratified def maxHeatingCapacity if heater1Capacity.is_initialized heater1Capacity else autosizedHeater1Capacity end end def maxWaterFlowRate if useSideDesignFlowRate.is_initialized useSideDesignFlowRate else autosizedUseSideDesignFlowRate end end def maxHeatingCapacityAutosized if heater1Capacity.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 useSideDesignFlowRate.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 << [heaterThermalEfficiency, 'Heater Thermal Efficiency'] effs << [useSideEffectiveness, 'Use Side Effectiveness'] effs << [sourceSideEffectiveness, 'Source Side Effectiveness'] return effs end end
Version data entries
4 entries across 4 versions & 1 rubygems