Buildings.Applications.DataCenters.DXCooled.Controls
Package with controllers for DX-cooled data centers
Information
This package contains controllers for DX-cooled data centers.
Extends from Modelica.Icons.Package (Icon for standard packages).
Package Content
Name | Description |
---|---|
![]() |
Controller for airside economizer |
![]() |
Controller for compressor speed |
![]() |
Controller for the DX cooling system with an airside economizer |
![]() |
Collection of validation models |
Buildings.Applications.DataCenters.DXCooled.Controls.AirsideEconomizer
Controller for airside economizer
Information
This model implements an airside economizer controller to modulate the outdoor air damper in order to maintain desired mixed air temperature. When the airside economizer is open, which means the system is in free cooling or partial mechanical cooling, the position of the OA damper is controlled by a PI controller to maintain a desired mixed air temperature; otherwise, the position of the OA damper is set as closed.
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | minOAFra | Minimum outdoor air fraction [1] | |
Control | |||
Real | gai | 1 | Gain of controller |
Time | Ti | 50 | Integrator time [s] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | TMixAirSet | Mixed air setpoint temperature [K] |
input RealInput | TMixAirMea | Measured mixed air temperature [K] |
input IntegerInput | cooMod | Cooling mode of the cooling system |
output RealOutput | y | Connector of Real output signal |
Modelica definition
Buildings.Applications.DataCenters.DXCooled.Controls.Compressor
Controller for compressor speed
Information
This model implements a PI controller to maintain the supply air temperature at its setpoint by adjusting the compressor's speed. When the free cooling is activated, the DX unit is deactivated by setting the speed signal as 0. In Partial Mechanical cooling and Full Mechanical cooling, the PI controller works to adjust the compressor's speed.
Parameters
Type | Name | Default | Description |
---|---|---|---|
Real | k | 0.5 | Gain of controller |
Time | Ti | 240 | Time constant of integrator block [s] |
Real | yMax | 1 | Upper limit of output |
Real | yMin | 0 | Lower limit of output |
Boolean | reverseAction | true | Set to true for throttling the water flow rate through a cooling coil controller |
Connectors
Type | Name | Description |
---|---|---|
input IntegerInput | cooMod | Cooling mode of the cooling system |
output RealOutput | y | Compressor speed [1] |
input RealInput | TMixAirSet | Mixed air setpoint temperature [K] |
input RealInput | TMixAirMea | Measured mixed air temperature [K] |
Modelica definition
Buildings.Applications.DataCenters.DXCooled.Controls.CoolingMode
Controller for the DX cooling system with an airside economizer
Information
This model implements a cooling mode controller for an air-cooled direct expansion (DX) cooling system with an airside economizer. This controller is based on a simplified differential dry-bulb temperature control strategy, as described in ASHRAE G36.
There are three cooling modes for this system: free cooling (FC) mode, partially mechanical cooling (PMC) mode and fully mechanical cooling (FMC) mode. The detailed switching logic is shown in the following:
The airside economizer is enabled when:
- Tout<Tret
The airside economizer is disabled when:
- Tout>Tret
The DX coil is enabled when:
- Tout>Tsup,set
The DX coil is disabled when:
- Tout>Tsup,set
where Tswi is the switching temperature, subscript set means set point, out means outdoor air, ret means return air, and sup means supply air. A deadband δT can be added to the above logics to avoid frequent switching.
Parameters
Type | Name | Default | Description |
---|---|---|---|
Time | tWai | Waiting time, set to avoid frequent switching [s] | |
TemperatureDifference | dT | 1.1 | Deadband [K] |
Connectors
Type | Name | Description |
---|---|---|
input RealInput | TOutDryBul | Dry-bulb temperature of outdoor air [K] |
input RealInput | TRet | Return air temperature [K] |
input RealInput | TSupSet | Supply air temperature setpoint [K] |
output IntegerOutput | y | Cooling mode signal, integer value of Buildings.Applications.DataCenters.Examples.BaseClasses.Types.CoolingMode |