lib/openstudio-standards/standards/Standards.FluidCooler.rb in openstudio-standards-0.2.14 vs lib/openstudio-standards/standards/Standards.FluidCooler.rb in openstudio-standards-0.2.15.pre.rc1

- old
+ new

@@ -19,11 +19,11 @@ # OpenStudio::Model::EvaporativeFluidCoolerSingleSpeed, # OpenStudio::Model::EvaporativeFluidCoolerTwoSpeed] the fluid cooler # @param equipment_type [String] heat rejection equipment type enumeration used for lookup query, # options are 'Closed Cooling Tower', modeled as an EvaporativeFluidCooler, # or 'Dry Cooler', modeled as a FluidCooler - # @return [Bool] true if successful, false if not + # @return [Bool] returns true if successful, false if not def fluid_cooler_apply_minimum_power_per_flow(fluid_cooler, equipment_type: 'Closed Cooling Tower') # Get the design water flow rate if fluid_cooler.designWaterFlowRate.is_initialized design_water_flow_m3_per_s = fluid_cooler.designWaterFlowRate.get elsif fluid_cooler.autosizedDesignWaterFlowRate.is_initialized @@ -43,10 +43,10 @@ search_criteria['template'] = template # Closed cooling towers are fluidcooler objects. search_criteria['equipment_type'] = equipment_type - # TODO: Standards replace this with a mechanism to store this + # @todo Standards replace this with a mechanism to store this # data in the fluid cooler object itself. # For now, retrieve the fan type from the name name = fluid_cooler.name.get if name.include?('Centrifugal') fan_type = 'Centrifugal'