packageDataCenter
Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).
Information
System Configuration
This example demonstrates the implementation of a chiller plant with water-side economizer (WSE) to cool a data center. The system schematics is as shown below.
The system is a primary-only chiller plant with integrated WSE. The objective was to improve the energy efficiency of the chilled water plant by optimizing the control setpoints. The room of the data center was modeled using a mixed air volume with a heat source. Heat conduction and air infiltration through the building envelope were neglected since the heat exchange between the room and the ambient environment was small compared to the heat released by the computers.
The control objective was to maintain the temperature of the supply air to the room, while reducing energy consumption of the chilled water plant. The control was based on the control sequence proposed by Stein (2009). To simplify the implementation, we only applied the controls for the differential pressure of the chilled water loop, the setpoint temperature of the chilled water leaving the chiller, and the chiller and WSE on/off control.
Enabling/Disabling the WSE
The WSE is enabled when
- The WSE has been disabled for at least 20 minutes, and
- Tws > 0.9 Twet + ΔTt + ΔTw
where Tws is the temperature of chilled water leaving the cooling coil, Twet is the wet bulb temperature, ΔTt is the temperature difference between the water leaving the cooling tower and the air entering the cooling tower, ΔTw is the temperature difference between the chilled water leaving the WSE and the condenser water entering the WSE.
The WSE is disabled when
- The WSE has been enabled for at least 20 minutes, and
- Tws < Twc + ΔTwse,off
where Twc is the temperature of condenser water leaving the cooling tower, ΔTwse,off = 0.6 K is the offset temperature.
Enabling/Disabling the Chiller
The control strategy is as follows:
- The chiller is enabled when Tchw,ent > Tchi,set + ΔTchi,ban
- The chiller is disabled when Tchw,ent ≤ Tchi,set
where Tchw,ent is the temperature of chilled water entering the chiller, Tchi,set is the setpoint temperature of the chilled water leaving the chiller, and ΔTchi,ban is the dead-band to prevent short cycling.
Setpoint Reset
The setpoint reset strategy is to first increase the differential pressure, Δp, of the chilled water loop to increase the mass flow rate. If Δp reaches the maximum value and further cooling is still needed, the chiller temperature setpoint, Tchi,set, is reduced. If there is too much cooling, the Tchi,set and Δp will be changed in the reverse direction.
There are two implementations for the setpoint reset.
The model Buildings.Examples.ChillerPlant.DataCenter.DiscreteTimeControl implements a discrete time trim and respond logic as follows:
- A cooling request is triggered if the input signal, y, is larger than 0. y is the difference between the actual and set temperature of the supply air to the data center room.
- The request is sampled every 2 minutes. If there is a cooling request, the control signal u is increased by 0.03, where 0 ≤ u ≤ 1. If there is no cooling request, u is decreased by 0.03.
The model Buildings.Examples.ChillerPlant.DataCenter.ContinuousTimeControl uses a PI-controller to approximate the above trim and respond logic. This significantly reduces computing time.
For both models, the control signal u is converted to setpoints for Δp and Tchi,set as follows:
- If 0 ≤ u ≤ x then Δp = Δpmin + u (Δpmax-Δpmin)/x and T = Tmax
- If x < u ≤ 1 then Δp = Δpmax and T = Tmax - (u-x) (Tmax-Tmin)/(1-x)
where Δpmin and Δpmax are minimum and maximum values for Δp, and Tmin and Tmax are the minimum and maximum values for Tchi,set.
Reference
Stein, J. (2009). Waterside Economizing in Data Centers: Design and Control
Considerations. ASHRAE Transactions, 115(2), 192-200.
Taylor, S.T. (2007). Increasing Efficiency with VAV System Static Pressure Setpoint
Reset. ASHRAE Journal, June, 24-32.
Contents
| Name | Description |
|---|---|
| Model of data center that approximates the trim and respond logic | |
| Model of data center with trim and respond control | |
| Model of a data center connected to renewable energy generation | |
| Package with base classes for Buildings.Examples.ChillerPlant |