Sha256: 45fd1b6615ea3032467ea7dc15beb17f2e4b0f3f0088ecb5782e56e86301969a

Contents?: true

Size: 1.48 KB

Versions: 3

Compression:

Stored size: 1.48 KB

Contents

class ASHRAE9012016 < ASHRAE901
  # @!group FanVariableVolume

  # The threhold horsepower below which part load control is not required.
  # Per 90.1-2016, table 6.5.3.2.1: the fan motor size for chiller-water
  # and evaporative cooling is 0.25 hp as of 1/1/2014 instead of 5 hp
  #
  # @param fan_variable_volume [OpenStudio::Model::FanVariableVolume] variable volume fan object
  # @return [Double] the limit, in horsepower. Return nil for no limit by default.
  def fan_variable_volume_part_load_fan_power_limitation_hp_limit(fan_variable_volume)
    hp_limit = case fan_variable_volume_cooling_system_type(fan_variable_volume)
               when 'dx'
                 0.0
               when 'chw', 'evap'
                 0.25
               end

    return hp_limit
  end

  # The threhold capacity below which part load control is not required.
  # Per 90.1-2016, table 6.5.3.2.1: the cooling capacity threshold is 75000
  # instead of 110000 as of 1/1/2014
  #
  # @param fan_variable_volume [OpenStudio::Model::FanVariableVolume] variable volume fan object
  # @return [Double] the limit, in Btu/hr. Return nil for no limit by default.
  def fan_variable_volume_part_load_fan_power_limitation_capacity_limit(fan_variable_volume)
    cap_limit_btu_per_hr = case fan_variable_volume_cooling_system_type(fan_variable_volume)
                           when 'dx'
                             65_000
                           end

    return cap_limit_btu_per_hr
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
openstudio-standards-0.7.0 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.FanVariableVolume.rb
openstudio-standards-0.7.0.rc1 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.FanVariableVolume.rb
openstudio-standards-0.6.3 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2016/ashrae_90_1_2016.FanVariableVolume.rb