Sha256: d07bc1e81431f6e162acf8986d81da22592583c6e2bf825e39dec896ffbcd89a
Contents?: true
Size: 928 Bytes
Versions: 20
Compression:
Stored size: 928 Bytes
Contents
class ASHRAE901 < Standard # @!group FanVariableVolume # The threhold horsepower below which part load control is not required. # # @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 = nil # No minimum limit return hp_limit end # The threhold capacity below which part load control is not required. # # @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 = nil # No minimum limit return cap_limit_btu_per_hr end end
Version data entries
20 entries across 20 versions & 1 rubygems