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).
Name | Description |
---|---|
FixedApproachDryBulb | Test model for cooling tower with fixed approach temperature |
FixedApproachWetBulb | |
YorkCalc | |
BaseClasses | Package with base classes for Buildings.Fluid.HeatExchangers.CoolingTowers.Examples |
Type | Name | Default | Description |
---|---|---|---|
Nominal condition | |||
MassFlowRate | mWat_flow_nominal | 0.15 | Design air flow rate [kg/s] |
model FixedApproachDryBulb "Test model for cooling tower with fixed approach temperature" extends Modelica.Icons.Example; extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTower ( redeclare Buildings.Fluid.HeatExchangers.CoolingTowers.FixedApproach tow); equationconnect(TOut.y, tow.TAir); end FixedApproachDryBulb;
Type | Name | Default | Description |
---|---|---|---|
Nominal condition | |||
MassFlowRate | mWat_flow_nominal | 0.15 | Design air flow rate [kg/s] |
Type | Name | Description |
---|---|---|
Bus | weaBus |
model FixedApproachWetBulb extends Modelica.Icons.Example; extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb ( redeclare Buildings.Fluid.HeatExchangers.CoolingTowers.FixedApproach tow);end FixedApproachWetBulb;
Type | Name | Default | Description |
---|---|---|---|
Nominal condition | |||
MassFlowRate | mWat_flow_nominal | 0.15 | Design air flow rate [kg/s] |
Type | Name | Description |
---|---|---|
Bus | weaBus |
model YorkCalc extends Modelica.Icons.Example; extends Buildings.Fluid.HeatExchangers.CoolingTowers.Examples.BaseClasses.PartialStaticTwoPortCoolingTowerWetBulb ( redeclare Buildings.Fluid.HeatExchangers.CoolingTowers.YorkCalc tow, TOut( freqHz=1));Modelica.Blocks.Sources.Ramp y( height=-1, duration=0.1, offset=1, startTime=1); equationconnect(y.y, tow.y); end YorkCalc;