Sha256: 1b8d8b43630af5f2e45884b50ab8a77b858fb397e7f55aca18eb864a5ae2eb0c

Contents?: true

Size: 1.52 KB

Versions: 5

Compression:

Stored size: 1.52 KB

Contents

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

class OpenStudio::Model::SizingSystem
  def maxHeatingCapacity
    if heatingDesignCapacity.is_initialized
      heatingDesignCapacity
    else
      autosizedHeatingDesignCapacity
    end
  end

  def maxCoolingCapacity
    if coolingDesignCapacity.is_initialized
      coolingDesignCapacity
    else
      autosizedCoolingDesignCapacity
    end
  end

  def maxAirFlowRate
    if designOutdoorAirFlowRate.is_initialized
      designOutdoorAirFlowRate
    else
      autosizedDesignOutdoorAirFlowRate
    end
  end

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

  def maxCoolingCapacityAutosized
    if coolingDesignCapacity.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 designOutdoorAirFlowRate.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

5 entries across 5 versions & 1 rubygems

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