Sha256: 841dc14a3677848a14a6314966ed8b4eeb14716e93d597e732ee804e9768c661

Contents?: true

Size: 1.91 KB

Versions: 4

Compression:

Stored size: 1.91 KB

Contents

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

class OpenStudio::Model::ZoneHVACFourPipeFanCoil
  def maxHeatingCapacity
    heatingCoil.maxHeatingCapacity
  end

  def maxCoolingCapacity
    coolingCoil.maxCoolingCapacity
  end

  def maxAirFlowRate
    if maximumSupplyAirFlowRate.is_initialized
      maximumSupplyAirFlowRate
    else
      autosizedMaximumSupplyAirFlowRate
    end
  end

  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 maxHeatingCapacityAutosized
    heatingCoil.maxHeatingCapacityAutosized
  end

  def maxCoolingCapacityAutosized
    coolingCoil.maxCoolingCapacityAutosized
  end

  def maxAirFlowRateAutosized
    if maximumSupplyAirFlowRate.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 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 += supplyAirFan.performanceCharacteristics
    effs += coolingCoil.performanceCharacteristics
    effs += heatingCoil.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.ZoneHVACFourPipeFanCoil.rb
openstudio-common-measures-0.10.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACFourPipeFanCoil.rb
openstudio-common-measures-0.9.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACFourPipeFanCoil.rb
openstudio-common-measures-0.8.0 lib/measures/openstudio_results/resources/Siz.ZoneHVACFourPipeFanCoil.rb