Sha256: a5bb926e20c2ac439ffbc5718b2b00befbe1212170ae287a7c1f466db7d58f09

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

Contents

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

class OpenStudio::Model::CoilHeatingWater
  def maxHeatingCapacity
    if ratedCapacity.is_initialized
      ratedCapacity
    else
      autosizedRatedCapacity
    end
  end

  def maxWaterFlowRate
    if maximumWaterFlowRate.is_initialized
      maximumWaterFlowRate
    else
      autosizedMaximumWaterFlowRate
    end
  end

  def maxHeatingCapacityAutosized
    if ratedCapacity.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 maximumWaterFlowRate.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.CoilHeatingWater.rb
openstudio-common-measures-0.10.0 lib/measures/openstudio_results/resources/Siz.CoilHeatingWater.rb
openstudio-common-measures-0.9.0 lib/measures/openstudio_results/resources/Siz.CoilHeatingWater.rb
openstudio-common-measures-0.8.0 lib/measures/openstudio_results/resources/Siz.CoilHeatingWater.rb