LBL logo

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples

Collection of models that illustrate model use and test models

Information

This package contains examples for the use of models that can be found in Buildings.Fluid.HeatExchangers.CoolingTowers.

Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).

Package Content

NameDescription
Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachDryBulb FixedApproachDryBulb Test model for cooling tower with fixed approach temperature using the dry-bulb temperature
Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachWetBulb FixedApproachWetBulb Test model for cooling tower with fixed approach temperature using the wet-bulb temperature
Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.YorkCalc YorkCalc Test model for cooling tower using the York performance correlation
Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses BaseClasses Package with base classes for Buildings.Fluid.HeatExchangers.CoolingTowers.Examples

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachDryBulb Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachDryBulb

Test model for cooling tower with fixed approach temperature using the dry-bulb temperature

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachDryBulb

Information

This example illustrates the use of the cooling tower model Buildings.Fluid.HeatExchangers.CoolingTowers.FixedApproach, using the outdoor dry-bulb temperature as the potential for heat transfer. Heat is injected into the volume vol. An on/off controller switches the cooling loop water pump on or off based on the temperature of this volume. The cooling tower outlet temperature has a fixed approach temperature to the outdoor dry-bulb temperature.

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTower (Base class for test models of cooling towers).

Parameters

TypeNameDefaultDescription
Nominal condition
MassFlowRatemWat_flow_nominal0.5Design air flow rate [kg/s]

Connectors

TypeNameDescription
BusweaBus 

Modelica definition

model FixedApproachDryBulb 
  "Test model for cooling tower with fixed approach temperature using the dry-bulb temperature"
  extends Modelica.Icons.Example;
  extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTower
    (
    redeclare Buildings.Fluid.HeatExchangers.CoolingTowers.FixedApproach tow);
equation 
  connect(weaBus.TDryBul, tow.TAir);
end FixedApproachDryBulb;

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachWetBulb Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachWetBulb

Test model for cooling tower with fixed approach temperature using the wet-bulb temperature

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.FixedApproachWetBulb

Information

This example illustrates the use of the cooling tower model Buildings.Fluid.HeatExchangers.CoolingTowers.FixedApproach, using the outdoor wet-bulb temperature as the potential for heat transfer. Heat is injected into the volume vol. An on/off controller switches the cooling loop water pump on or off based on the temperature of this volume. The cooling tower outlet temperature has a fixed approach temperature to the outdoor wet-bulb temperature.

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb (Partial test model for cooling tower with wet bulb temperature as potential for heat transfer).

Parameters

TypeNameDefaultDescription
Nominal condition
MassFlowRatemWat_flow_nominal0.5Design air flow rate [kg/s]

Connectors

TypeNameDescription
BusweaBus 

Modelica definition

model FixedApproachWetBulb 
  "Test model for cooling tower with fixed approach temperature using the wet-bulb temperature"
  extends Modelica.Icons.Example;
  extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb
    (redeclare FixedApproach tow);
equation 
  connect(wetBulTem.TWetBul, tow.TAir);
end FixedApproachWetBulb;

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.YorkCalc Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.YorkCalc

Test model for cooling tower using the York performance correlation

Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.YorkCalc

Information

This example illustrates the use of the cooling tower model Buildings.Fluid.HeatExchangers.CoolingTowers.YorkCalc. Heat is injected into the volume vol. An on/off controller switches the cooling loop water pump on or off based on the temperature of this volume. The cooling tower outlet temperature is controlled to track a fixed temperature.

Extends from Modelica.Icons.Example (Icon for runnable examples), Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb (Partial test model for cooling tower with wet bulb temperature as potential for heat transfer).

Parameters

TypeNameDefaultDescription
Nominal condition
MassFlowRatemWat_flow_nominal0.5Design air flow rate [kg/s]

Connectors

TypeNameDescription
BusweaBus 

Modelica definition

model YorkCalc 
  "Test model for cooling tower using the York performance correlation"
  extends Modelica.Icons.Example;
  extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb
    (
    redeclare Buildings.Fluid.HeatExchangers.CoolingTowers.YorkCalc tow,
      onOffController(bandwidth=2));

  Modelica.Blocks.Sources.Constant TSetLea(k=273.15 + 18) 
    "Setpoint for leaving temperature";
  Controls.Continuous.LimPID conFan(
    k=1,
    Ti=60,
    Td=10,
    reverseAction=true) "Controller for tower fan";
equation 
  connect(wetBulTem.TWetBul, tow.TAir);
  connect(TSetLea.y, conFan.u_s);
  connect(conFan.y, tow.y);
  connect(tow.TLvg, conFan.u_m);
end YorkCalc;

Automatically generated Thu Oct 24 15:08:43 2013.