lib/openstudio-standards/standards/Standards.CoolingTowerSingleSpeed.rb in openstudio-standards-0.1.15 vs lib/openstudio-standards/standards/Standards.CoolingTowerSingleSpeed.rb in openstudio-standards-0.2.0.rc1

- old
+ new

@@ -1,11 +1,15 @@ -# Reopen the OpenStudio class to add methods to apply standards to this object -class OpenStudio::Model::CoolingTowerSingleSpeed +class Standard + # @!group CoolingTowerSingleSpeed + include CoolingTower - def apply_efficiency_and_curves(template) - apply_minimum_power_per_flow(template) + # Applies the standard efficiency ratings and typical performance curves to this object. + # + # @return [Bool] true if successful, false if not + def cooling_tower_single_speed_apply_efficiency_and_curves(cooling_tower_single_speed) + cooling_tower_apply_minimum_power_per_flow(cooling_tower_single_speed) return true end end