Sha256: a788d7424645dab1a2cbbe3a22b21ef180ee8f8b52f3a9c94a25c5a46c6b3e93

Contents?: true

Size: 885 Bytes

Versions: 3

Compression:

Stored size: 885 Bytes

Contents

# A variety of cooling tower methods that are the same regardless of type.
# These methods are available to CoolingTowerSingleSpeed, CoolingTowerTwoSpeed, and CoolingTowerVariableSpeed
module ASHRAE9012016CoolingTower
  # @!group CoolingTower

  # Above this point, centrifugal fan cooling towers must meet the limits
  # of propeller or axial cooling towers instead.
  # 90.1 6.5.5.3 Limit on Centrifugal Fan Open Circuit Cooling Towers.
  # is 1,100 gallons per minute.
  #
  # @param cooling_tower [OpenStudio::Model::CoolingTowerSingleSpeed,
  # OpenStudio::Model::CoolingTowerTwoSpeed,
  # OpenStudio::Model::CoolingTowerVariableSpeed] the cooling tower
  # @return [Double] the limit, in gallons per minute.  Return nil for no limit.
  def cooling_tower_apply_minimum_power_per_flow_gpm_limit(cooling_tower)
    gpm_limit = 1100
    return gpm_limit
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openstudio-standards-0.2.14 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.CoolingTower.rb
openstudio-standards-0.2.13 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.CoolingTower.rb
openstudio-standards-0.2.13.rc3 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.CoolingTower.rb