Sha256: 384f4f7afc798f290791604b93a7cb2b6b83faffafeeb59cdc5be2f8fb23dce3

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

# *******************************************************************************
# OpenStudio(R), Copyright (c) Alliance for Sustainable Energy, LLC.
# See also https://openstudio.net/license
# *******************************************************************************

class OpenStudio::Model::ZoneHVACLowTempRadiantVarFlow
  def maxWaterFlowRate
    vals = []
    if coolingCoil.maxWaterFlowRate.is_initialized
      vals << coolingCoil.maxWaterFlowRate.get
    end
    if heatingCoil.maxWaterFlowRate.is_initialized
      vals << heatingCoil.maxWaterFlowRate.get
    end
    if vals.size.zero?
      OpenStudio::OptionalDouble.new
    else
      OpenStudio::OptionalDouble.new(vals.max)
    end
  end

  def maxWaterFlowRateAutosized
    if coolingCoil.maxWaterFlowRate.is_initialized
      return OpenStudio::OptionalBool.new(false)
    elsif heatingCoil.maxWaterFlowRate.is_initialized
      return OpenStudio::OptionalBool.new(false)
    else
      return OpenStudio::OptionalBool.new(true)
    end
  end

  def performanceCharacteristics
    effs = []
    effs += heatingCoil.performanceCharacteristics
    effs += coolingCoil.performanceCharacteristics
    return effs
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
openstudio-common-measures-0.11.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb
openstudio-common-measures-0.10.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb
openstudio-common-measures-0.9.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb
openstudio-common-measures-0.8.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACLowTempRadiantVarFlow.rb