Sha256: 994f582e4fdef4a713323ab76529d771bbaa3c276d2f0f9df75283f10c847c1c

Contents?: true

Size: 1.49 KB

Versions: 3

Compression:

Stored size: 1.49 KB

Contents

class ASHRAE9012019 < ASHRAE901
  # @!group FanVariableVolume

  # The threhold horsepower below which part load control is not required.
  # Per 90.1-2019, 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] the fan
  # @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'
                 0.25
               when 'evap'
                 0.25
               end

    return hp_limit
  end

  # The threhold capacity below which part load control is not required.
  # Per 90.1-2019, 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] the fan
  # @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.2.14 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.FanVariableVolume.rb
openstudio-standards-0.2.13 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.FanVariableVolume.rb
openstudio-standards-0.2.13.rc3 lib/openstudio-standards/standards/ashrae_90_1/ashrae_90_1_2019/ashrae_90_1_2019.FanVariableVolume.rb