Sha256: b5043aef9a2b802480fc38d9712d5da6b9fa96f2382b018e9a9688dac9ec08d8

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

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

class OpenStudio::Model::CoilCoolingDXVariableRefrigerantFlow
  def maxCoolingCapacity
    if ratedTotalCoolingCapacity.is_initialized
      ratedTotalCoolingCapacity
    else
      autosizedRatedTotalCoolingCapacity
    end
  end

  def maxAirFlowRate
    if ratedAirFlowRate.is_initialized
      ratedAirFlowRate
    else
      autosizedRatedAirFlowRate
    end
  end

  def maxCoolingCapacityAutosized
    if ratedTotalCoolingCapacity.is_initialized
      # Not autosized if hard size field value present
      return OpenStudio::OptionalBool.new(false)
    else
      return OpenStudio::OptionalBool.new(true)
    end
  end

  def maxAirFlowRateAutosized
    if ratedAirFlowRate.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.CoilCoolingDXVariableRefrigerantFlow.rb
openstudio-common-measures-0.10.0 lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableRefrigerantFlow.rb
openstudio-common-measures-0.9.0 lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableRefrigerantFlow.rb
openstudio-common-measures-0.8.0 lib/measures/openstudio_results/resources/Siz.CoilCoolingDXVariableRefrigerantFlow.rb