Sha256: 692685294ee9ba23fc204da4398b6e0cd4b70c5e8c9bacaec60c1a09798a5d93

Contents?: true

Size: 1.12 KB

Versions: 4

Compression:

Stored size: 1.12 KB

Contents

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

class OpenStudio::Model::EvaporativeFluidCoolerTwoSpeed
  def maxAirFlowRate
    if highFanSpeedAirFlowRate.is_initialized
      highFanSpeedAirFlowRate
    else
      autosizedHighFanSpeedAirFlowRate
    end
  end

  def maxWaterFlowRate
    if designWaterFlowRate.is_initialized
      designWaterFlowRate
    else
      autosizedDesignWaterFlowRate
    end
  end

  def maxAirFlowRateAutosized
    if highFanSpeedAirFlowRate.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 designWaterFlowRate.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

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