Sha256: de0f5074b95b255d82f37c8f1bcc3ea2f76d5d4b840097508f7d41fef9607a54

Contents?: true

Size: 1.5 KB

Versions: 3

Compression:

Stored size: 1.5 KB

Contents

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

class OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit
  def maxHeatingCapacity
    if ratedHeatingCapacity.is_initialized
      ratedHeatingCapacity
    else
      autosizedRatedHeatingCapacity
    end
  end

  def maxAirFlowRate
    if ratedAirFlowRate.is_initialized
      ratedAirFlowRate
    else
      autosizedRatedAirFlowRate
    end
  end

  def maxWaterFlowRate
    if ratedWaterFlowRate.is_initialized
      ratedWaterFlowRate
    else
      autosizedRatedWaterFlowRate
    end
  end

  def maxHeatingCapacityAutosized
    if ratedHeatingCapacity.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

  def maxWaterFlowRateAutosized
    if ratedWaterFlowRate.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

3 entries across 3 versions & 1 rubygems

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