Buildings.Examples.ChillerPlant
Chiller plant with water side economizer for data center
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 tempearture 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 different 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.DataCenterDiscreteTimeControl 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 suppuly 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.DataCenterContinuousTimeControl 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.
Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).
Package Content
Name | Description |
---|---|
DataCenterContinuousTimeControl | Model of data center that approximates the trim and respond logic |
DataCenterDiscreteTimeControl | Model of data center with trim and respond control |
DataCenterRenewables | Model of a data center connected to renewable energy generation |
BaseClasses | Package with base classes for Buildings.Examples.ChillerPlant |
Buildings.Examples.ChillerPlant.DataCenterContinuousTimeControl
Model of data center that approximates the trim and respond logic
Information
This model is the chilled water plant with continuous time control. The trim and respond logic is approximated by a PI controller which significantly reduces computing time. The model is described at Buildings.Examples.ChillerPlant.
See Buildings.Examples.ChillerPlant.DataCenterContinuousTimeControl for an implementation with the discrete time trim and respond logic.
Extends from Buildings.Examples.ChillerPlant.BaseClasses.DataCenter (Primary only chiller plant system with water-side economizer), Modelica.Icons.Example (Icon for runnable examples).
Parameters
Type | Name | Default | Description |
---|---|---|---|
replaceable package MediumA | Air | Medium model | |
replaceable package MediumW | Water | Medium model | |
MassFlowRate | mAir_flow_nominal | roo.QRoo_flow/(1005*15) | Nominal mass flow rate at fan [kg/s] |
Power | P_nominal | 80E3 | Nominal compressor power (at y=1) [W] |
TemperatureDifference | dTEva_nominal | 10 | Temperature difference evaporator inlet-outlet [K] |
TemperatureDifference | dTCon_nominal | 10 | Temperature difference condenser outlet-inlet [K] |
Real | COPc_nominal | 3 | Chiller COP |
MassFlowRate | mCHW_flow_nominal | 2*roo.QRoo_flow/(4200*20) | Nominal mass flow rate at chilled water [kg/s] |
MassFlowRate | mCW_flow_nominal | 2*roo.QRoo_flow/(4200*6) | Nominal mass flow rate at condenser water [kg/s] |
PressureDifference | dp_nominal | 500 | Nominal pressure difference [Pa] |
Connectors
Type | Name | Description |
---|---|---|
Bus | weaBus |
Modelica definition
Buildings.Examples.ChillerPlant.DataCenterDiscreteTimeControl
Model of data center with trim and respond control
Information
This model is the chilled water plant with trim and respond control, which is a discrete time control logic.
The trim and respond logic is approximated by a PI controller which significantly reduces computing time. The model is described at Buildings.Examples.ChillerPlant.
See Buildings.Examples.ChillerPlant.DataCenterContinuousTimeControl for an implementation that approximates the trim and respond logic by a continuous time controller.
Extends from Buildings.Examples.ChillerPlant.BaseClasses.DataCenter (Primary only chiller plant system with water-side economizer), Modelica.Icons.Example (Icon for runnable examples).
Parameters
Type | Name | Default | Description |
---|---|---|---|
replaceable package MediumA | Air | Medium model | |
replaceable package MediumW | Water | Medium model | |
MassFlowRate | mAir_flow_nominal | roo.QRoo_flow/(1005*15) | Nominal mass flow rate at fan [kg/s] |
Power | P_nominal | 80E3 | Nominal compressor power (at y=1) [W] |
TemperatureDifference | dTEva_nominal | 10 | Temperature difference evaporator inlet-outlet [K] |
TemperatureDifference | dTCon_nominal | 10 | Temperature difference condenser outlet-inlet [K] |
Real | COPc_nominal | 3 | Chiller COP |
MassFlowRate | mCHW_flow_nominal | 2*roo.QRoo_flow/(4200*20) | Nominal mass flow rate at chilled water [kg/s] |
MassFlowRate | mCW_flow_nominal | 2*roo.QRoo_flow/(4200*6) | Nominal mass flow rate at condenser water [kg/s] |
PressureDifference | dp_nominal | 500 | Nominal pressure difference [Pa] |
Connectors
Type | Name | Description |
---|---|---|
Bus | weaBus |
Modelica definition
Buildings.Examples.ChillerPlant.DataCenterRenewables
Model of a data center connected to renewable energy generation
Information
This model illustrates a data center with DC and AC load.
The electrical supply is from a grid, from wind turbines and from PV.
The battery is charged during the night and discharged during
the day in such a way that it is fully charged and discharged.
This control logic is implemented using a finite state machine
inside the model con
.
Extends from Modelica.Icons.Example (Icon for runnable examples).
Connectors
Type | Name | Description |
---|---|---|
Bus | weaBus | Weather data bus |