Buildings.Examples.Tutorial.CDL

Package with examples for how to implement a control sequence using CDL

Information

This package contains examples with step-by-step instructions for how to implement control sequences using the Control Description Language (CDL). The CDL is described at obc.lbl.gov and elementary building blocks are available at Buildings.Controls.OBC.CDL.

The example starts with an open-loop model of a boiler, a simple room and a radiator. In subsequent steps, controllers are added, starting with open loop control and then closed loop control. The tutorial also demonstrates how to add open loop validation tests for the controllers. At the end, you should be able to implement, document and test your own controllers.

The figure below shows the system architecture and the control charts.

image

The controls intent is as follows:

  1. The overall system shall be switched on if the outdoor temperature is below 16°C and, in addition, the room temperature is below 20°C. It shall be switched off if either the outdoor temperature is above 17°C or the room temperature is above 21°C.

  2. The boiler shall have on/off control that regulates its temperature between 70°C and 90°C.

  3. The three-way valve at the boiler return shall be modulated with a PI controller to track a return water temperature of 60°C.

  4. The heating water supply temperature to the room shall be regulated with a PI controller to be 50°C if the room temperature is 19°C, and 21°C if the room temperature is 21°C.

To explain the implementation of the controllers for this model, the model has been created in the stages described below.

  1. In Buildings.Examples.Tutorial.CDL.System1 we connected constant control signals to the open loop model that is the starting point for this tutorial.
  2. In Buildings.Examples.Tutorial.CDL.System2 we implemented four distinct controllers, which are all open loop but have the correct control input and output connectors. These controllers will be refined in the next steps. This determines the control architecture.
  3. In Buildings.Examples.Tutorial.CDL.System3 we implemented the controller that regulates the return water temperature to its setpoint.
  4. In Buildings.Examples.Tutorial.CDL.System4 we implemented the controller that switches the boiler on and off.
  5. In Buildings.Examples.Tutorial.CDL.System5 we implemented the controller that switches the whole system on and off.
  6. In Buildings.Examples.Tutorial.CDL.System6 we implemented the controller that tracks the room temperature set point.

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

Package Content

Name Description
Buildings.Examples.Tutorial.CDL.System1 System1 Open loop model
Buildings.Examples.Tutorial.CDL.System2 System2 Open loop model with control architecture implemented
Buildings.Examples.Tutorial.CDL.System3 System3 Open loop model with boiler return temperature control
Buildings.Examples.Tutorial.CDL.System4 System4 Open loop model with equipment on/off control
Buildings.Examples.Tutorial.CDL.System5 System5 Open loop model with system on/off control
Buildings.Examples.Tutorial.CDL.System6 System6 Closed loop model with all controls implemented
Buildings.Examples.Tutorial.CDL.Controls Controls Package with the controllers used in the tutorial
Buildings.Examples.Tutorial.CDL.BaseClasses BaseClasses Package that contains the model of the HVAC system and the building load

Buildings.Examples.Tutorial.CDL.System1 Buildings.Examples.Tutorial.CDL.System1

Open loop model

Buildings.Examples.Tutorial.CDL.System1

Information

This model extends from the open loop partial model Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop, which implements the HVAC system model and a simple room. In this partial model, the room is modeled as a first order response.

Implementation

To set control inputs, we instantiated Buildings.Controls.OBC.CDL.Continuous.Sources.Constant and connected them to the pumps, the boiler and the valves.

Exercise

Create a model, such as this model, that extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop and adds constant input signals for the valves, pumps and the boiler. Valves should be fully open (y=1), the boiler should be operating (y=1) and the mass flow rates of the pumps should be set to the parameter value of mRad_flow_nominal and mBoi_flow_nominal.

Simulate the model for January 15 to 16 and plot the open loop temperatures as shown below, which corresponds to a start time of 15*24*3600=1296000 seconds and a stop time of 1382400 seconds.

Open loop temperatures.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System1 "Open loop model" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Buildings.Controls.OBC.CDL.Continuous.Sources.Constant y1(k=mRad_flow_nominal) "Control signal of 1"; Buildings.Controls.OBC.CDL.Continuous.Sources.Constant y2(k=1) "Control signal of 1"; Buildings.Controls.OBC.CDL.Continuous.Sources.Constant y3(k=1) "Constant control signal of 1"; Buildings.Controls.OBC.CDL.Continuous.Sources.Constant y4(k=1) "Control signal of 1"; Buildings.Controls.OBC.CDL.Continuous.Sources.Constant y5(k=mBoi_flow_nominal) "Control signal of 1"; equation connect(y1.y, pumRad.m_flow_in); connect(y3.y, boi.y); connect(y2.y, valBoi.y); connect(y4.y, valRad.y); connect(y5.y, pumBoi.m_flow_in); end System1;

Buildings.Examples.Tutorial.CDL.System2 Buildings.Examples.Tutorial.CDL.System2

Open loop model with control architecture implemented

Buildings.Examples.Tutorial.CDL.System2

Information

In this step, we added the control architecture. How the control is partitioned into various subcontrollers depends usually on the need to avoid communication over the network and on how control is distributed to different field controllers. Here, we used the four controllers indicated by the shaded background in the figure of Buildings.Examples.Tutorial.CDL. One controller switches the overall system on and off, one switches the boiler on and off, one tracks the supply water temperature to the room and one tracks the return water temperature that is fed to the boiler.

Implementation

This model was built as follows:

  1. First, we determined what functionality should be implemented in which controller, and what the inputs and outputs of the controllers are. In this example, we used these controllers:

    • Boiler return water controller, with input being the return water temperature TRet and output being the valve control signal yVal.

    • Radiator loop temperature controller, with input being the measured supply water temperature TSup, the measured room air temperature TRoo and output being the valve control signal yVal.

    • System on/off controller, with inputs being the outdoor temperature TOut and the room air temperature TRoo, and output being the system on/off signal onSys. Note that how inputs and outputs are named can simplify usability. For example, we called the output onSys so that a value of true is clearly understood as the system being on. If we had called it y, then it would not have been clear what a value of true means.

    • Equipment controller, with inputs being the system on/off command and the boiler temperature, and outputs being the pump on/off signal onPum and the boiler on/off signal onBoi.

  2. To organize our code, we created package that we called Controls.

  3. Next, we added the open loop controller for the boiler return water temperature. This controller is implemented in Buildings.Examples.Tutorial.CDL.Controls.OpenLoopBoilerReturn. To implement it, we created a Modelica block, and added an input, using a Buildings.Controls.OBC.CDL.Interfaces.RealInput, called it TRet for the measured return water temperature, and a Buildings.Controls.OBC.CDL.Interfaces.RealOutput for the valve control signal, which we called yVal.

    To output the valve control signal, which we set for now to a constant value of 1, we used an instance of Buildings.Controls.OBC.CDL.Continuous.Sources.Constant, set its parameter to 1, and connected it to the output.

    At this stage, because the control is open loop, we leave the input of the controller unconnected.

    Looking at the Modelica file shows that we also added documentation in an info section, a defaultComponentName, as well as graphical elements so that it is easily distinguishable in a schematic diagram. We also added the unit and displayUnit attributes.

    In the next step of this tutorial, we will provide an actual implementation of the controller. To better distinguish the open loop controller from the closed loop controller, we color the icon of open loop controllers grey, and will change this color to white when we implement the actual control logic.

  4. We did a similar process to add the other three open loop controllers. As before, we added all inputs and outputs, and set the outputs to a constant.

  5. Lastly, we instantiated these four controllers in the system model. Because the pumps and the boiler take as a control input a real-valued signal, we used Buildings.Controls.OBC.CDL.Conversions.BooleanToReal to convert between the boolean-valued signal and the real-valued inputs of these components. Whether this conversion is part of the controller or done outside the controller is an individual design decision.

Exercise

Create a model, such as this model. To do so,

  1. Copy Buildings.Examples.Tutorial.CDL.System1.

  2. Implement all four open loop controllers.

  3. Delete the constant control inputs, instantiate the open loop controllers, convert the signal as needed from Boolean to Real, and connect the control inputs and outputs.

Simulate the system to verify that you get the response shown below. As we have not changed any of the control logic, simulating the system should give the same response as for Buildings.Examples.Tutorial.CDL.System1.

Open loop temperatures.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System2 "Open loop model with control architecture implemented" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Controls.OpenLoopBoilerReturn conBoiRet "Controller for boiler return water temperature"; Controls.OpenLoopSystemOnOff conSysSta "Controller that switches the system on and off"; Controls.OpenLoopRadiatorSupply conRadSup "Controller for the mixing valve for the radiator supply water"; Controls.OpenLoopEquipmentOnOff conEquSta "Controller that switches the equipment on and off"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal radPumCon( realTrue=mRad_flow_nominal) "Type conversion for radiator pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiPumCon( realTrue=mBoi_flow_nominal) "Type conversion for boiler pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiSigCon( realTrue=1) "Type conversion for boiler signal"; equation connect(conSysSta.onSys, conEquSta.onSys); connect(conEquSta.onPum, boiPumCon.u); connect(radPumCon.u, conEquSta.onPum); connect(boiSigCon.u, conEquSta.onBoi); connect(radPumCon.y, pumRad.m_flow_in); connect(boiPumCon.y, pumBoi.m_flow_in); connect(boiSigCon.y, boi.y); connect(conRadSup.yVal, valRad.y); connect(conEquSta.TBoi, boi.T); connect(conSysSta.TOut, senTOut.T); connect(conRadSup.TRoo, temRoo.T); connect(conSysSta.TRoo, temRoo.T); connect(temRet.T, conBoiRet.TRet); connect(conBoiRet.yVal, valBoi.y); connect(temSup.T, conRadSup.TSup); end System2;

Buildings.Examples.Tutorial.CDL.System3 Buildings.Examples.Tutorial.CDL.System3

Open loop model with boiler return temperature control

Buildings.Examples.Tutorial.CDL.System3

Information

In this step, we added the controller for the boiler return water temperature.

Implementation

This model was built as follows:

  1. First, we copied the controller Buildings.Examples.Tutorial.CDL.Controls.OpenLoopBoilerReturn to create the block Buildings.Examples.Tutorial.CDL.Controls.BoilerReturn.

  2. In this new block, we used a constant output signal Buildings.Controls.OBC.CDL.Continuous.Sources.Constant and a PID controller Buildings.Controls.OBC.CDL.Continuous.PID, which we configured as a PI-controller.

    We set the controller logic to reverse action. That is because the tracking error is conventionally computed as the difference between the set point value and the sensed value. In our example, if the return temperature is lower than the set point, i.e., if the tracking error is positive, the valve control signal must tend toward zero, i.e., the valve bypass port must open. That means that the unbounded control signal must tend toward negative values so that the bounded output signal tends toward its minimum value. Binding a positive tracking error to a negative unbounded control signal or to the minimum value of the output signal requires a reverse action logic.

    Additionally we set the proportional gain to 0.1 as then, in absence of the integral action, a control error of 10 Kelvin changes the control output by 1. We set the time constant to 120 seconds, which is about the time it takes to open and close a valve. These values give typically good closed loop performance.

    As the control error is in Kelvin, which is typically of the order of 1 to 10, there is no need to normalize the control input. (If pressure were used, it would make sense to divide the measured signal and the set point so that the control error is usually of the order of one, which makes tuning easier.)

  3. To allow this controller to be tuned, we exposed at the top-level the parameters for the set point temperature and the control gains.

  4. While the controller Buildings.Examples.Tutorial.CDL.Controls.BoilerReturn is very simple, for demonstration purposes we also implemented a validation model for this controller. This is done in Buildings.Examples.Tutorial.CDL.Controls.Validation.BoilerReturn. Such validation models help detect implementation errors which may be difficult to diagnose once the controller is used as part of a larger system model. In our experience, implementing small scale validation tests leads to better code and overall faster development as errors are detected early on when they can be corrected quickly. For more information about how to implement a validation model, see the Modelica Buildings Library User Guide.

Exercise

Create a model, such as this model. To do so,

  1. Copy Buildings.Examples.Tutorial.CDL.System2.

  2. Implement the controller for the boiler return water temperature.

    Make a small unit test to verify that the controller is implemented correctly.

  3. Use this new controller instead of the open loop controller conBoiRet.

Simulate the system to verify that the valve is controlled to maintain a return water temperature of at least 60°C as shown below.

Open loop temperatures.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System3 "Open loop model with boiler return temperature control" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Controls.BoilerReturn conBoiRet "Controller for boiler return water temperature"; Controls.OpenLoopSystemOnOff conSysSta "Controller that switches the system on and off"; Controls.OpenLoopRadiatorSupply conRadSup "Controller for the mixing valve for the radiator supply water"; Controls.OpenLoopEquipmentOnOff conEquSta "Controller that switches the equipment on and off"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal radPumCon( realTrue=mRad_flow_nominal) "Type conversion for radiator pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiPumCon( realTrue=mBoi_flow_nominal) "Type conversion for boiler pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiSigCon( realTrue=1) "Type conversion for boiler signal"; equation connect(conSysSta.onSys, conEquSta.onSys); connect(conEquSta.onPum, boiPumCon.u); connect(radPumCon.u, conEquSta.onPum); connect(boiSigCon.u, conEquSta.onBoi); connect(radPumCon.y, pumRad.m_flow_in); connect(boiPumCon.y, pumBoi.m_flow_in); connect(boiSigCon.y, boi.y); connect(conRadSup.yVal, valRad.y); connect(conEquSta.TBoi, boi.T); connect(conSysSta.TOut, senTOut.T); connect(conRadSup.TRoo, temRoo.T); connect(conSysSta.TRoo, temRoo.T); connect(temRet.T, conBoiRet.TRet); connect(conBoiRet.yVal, valBoi.y); connect(temSup.T, conRadSup.TSup); end System3;

Buildings.Examples.Tutorial.CDL.System4 Buildings.Examples.Tutorial.CDL.System4

Open loop model with equipment on/off control

Buildings.Examples.Tutorial.CDL.System4

Information

In this step, we added the controller for the boiler on/off control.

Implementation

This model was built as follows:

  1. First, we copied the controller Buildings.Examples.Tutorial.CDL.Controls.OpenLoopEquipmentOnOff to create the block Buildings.Examples.Tutorial.CDL.Controls.EquipmentOnOff.

  2. In this new block, we used a hysteresis block Buildings.Controls.OBC.CDL.Continuous.Hysteresis to switch the boiler, and negated its output because the boiler needs to be off if the temperature exceeds the value uHigh of this hysteresis. We also used an instance of Buildings.Controls.OBC.CDL.Logical.And to switch the boiler on only if the system control signal is on. Otherwise, the boiler would be kept warm in summer. (Note that in the simulations, the boiler has no heat loss to the ambient and, hence, if the boiler and its circulation pump are switched off, its temperature remains constant. To model heat losses to the ambient, the heat port boi.heatPort would need to be connected to a model that simulates heat conduction to ambient conditions.)

  3. We also implemented the open loop validation Buildings.Examples.Tutorial.CDL.Controls.Validation.EquipmentOnOff to ensure that the controller is implemented correctly.

Exercise

Create a model, such as this model. To do so,

  1. Copy Buildings.Examples.Tutorial.CDL.System3.

  2. Implement the controller for the equipment on/off control.

    Make a small unit test to verify that the controller is implemented correctly.

  3. Use this new controller instead of the open loop controller conEquSta.

Simulate the system to verify that the valve is controlled to maintain a return water temperature of at least 60°C, and that the boiler is switched off when the temperature exceeds 90°C and switched on again if it reaches 70°C as shown below.

Temperatures and control signal.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System4 "Open loop model with equipment on/off control" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Controls.BoilerReturn conBoiRet "Controller for boiler return water temperature"; Controls.OpenLoopSystemOnOff conSysSta "Controller that switches the system on and off"; Controls.OpenLoopRadiatorSupply conRadSup "Controller for the mixing valve for the radiator supply water"; Controls.EquipmentOnOff conEquSta "Controller that switches the equipment on and off"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal radPumCon( realTrue=mRad_flow_nominal) "Type conversion for radiator pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiPumCon( realTrue=mBoi_flow_nominal) "Type conversion for boiler pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiSigCon( realTrue=1) "Type conversion for boiler signal"; equation connect(conSysSta.onSys, conEquSta.onSys); connect(conEquSta.onPum, boiPumCon.u); connect(radPumCon.u, conEquSta.onPum); connect(boiSigCon.u, conEquSta.onBoi); connect(radPumCon.y, pumRad.m_flow_in); connect(boiPumCon.y, pumBoi.m_flow_in); connect(boiSigCon.y, boi.y); connect(conRadSup.yVal, valRad.y); connect(conEquSta.TBoi, boi.T); connect(conSysSta.TOut, senTOut.T); connect(conRadSup.TRoo, temRoo.T); connect(conSysSta.TRoo, temRoo.T); connect(temRet.T, conBoiRet.TRet); connect(conBoiRet.yVal, valBoi.y); connect(temSup.T, conRadSup.TSup); end System4;

Buildings.Examples.Tutorial.CDL.System5 Buildings.Examples.Tutorial.CDL.System5

Open loop model with system on/off control

Buildings.Examples.Tutorial.CDL.System5

Information

In this step, we added the controller for the system on/off control.

Implementation

This model was built as follows:

  1. First, we copied the controller Buildings.Examples.Tutorial.CDL.Controls.OpenLoopSystemOnOff to create the block Buildings.Examples.Tutorial.CDL.Controls.SystemOnOff.

  2. In this new block, we used two on/off controllers Buildings.Controls.OBC.CDL.Logical.OnOffController to determine whether the system should be on, which is the case if both, the outside air temperature and the room air temperature are below a limit. If either is above this limit, plus a deadband, the system is off.

  3. We also implemented the open loop validation Buildings.Examples.Tutorial.CDL.Controls.Validation.SystemOnOff to ensure that the controller is implemented correctly.

Exercise

Create a model, such as this model. To do so,

  1. Copy Buildings.Examples.Tutorial.CDL.System4.

  2. Implement the controller for the system on/off control.

    Make a small unit test to verify that the controller is implemented correctly.

  3. Use this new controller instead of the open loop controller conSysSta.

Simulate the system to verify that the system is switched off if the room temperature exceeeds its set point plus half the dead band. This should yield a plot similar to the one below.

Temperatures and control signals.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System5 "Open loop model with system on/off control" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Controls.BoilerReturn conBoiRet "Controller for boiler return water temperature"; Controls.SystemOnOff conSysSta "Controller that switches the system on and off"; Controls.OpenLoopRadiatorSupply conRadSup "Controller for the mixing valve for the radiator supply water"; Controls.EquipmentOnOff conEquSta "Controller that switches the equipment on and off"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal radPumCon( realTrue=mRad_flow_nominal) "Type conversion for radiator pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiPumCon( realTrue=mBoi_flow_nominal) "Type conversion for boiler pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiSigCon( realTrue=1) "Type conversion for boiler signal"; equation connect(conSysSta.onSys, conEquSta.onSys); connect(conEquSta.onPum, boiPumCon.u); connect(radPumCon.u, conEquSta.onPum); connect(boiSigCon.u, conEquSta.onBoi); connect(radPumCon.y, pumRad.m_flow_in); connect(boiPumCon.y, pumBoi.m_flow_in); connect(boiSigCon.y, boi.y); connect(conRadSup.yVal, valRad.y); connect(conEquSta.TBoi, boi.T); connect(conSysSta.TOut, senTOut.T); connect(conRadSup.TRoo, temRoo.T); connect(conSysSta.TRoo, temRoo.T); connect(temRet.T, conBoiRet.TRet); connect(conBoiRet.yVal, valBoi.y); connect(temSup.T, conRadSup.TSup); end System5;

Buildings.Examples.Tutorial.CDL.System6 Buildings.Examples.Tutorial.CDL.System6

Closed loop model with all controls implemented

Buildings.Examples.Tutorial.CDL.System6

Information

In this step, we added the last controller, which is controlling the mixing valve for the radiator supply water temperature.

Implementation

This model was built as follows:

  1. First, we copied the controller Buildings.Examples.Tutorial.CDL.Controls.OpenLoopRadiatorSupply to create the block Buildings.Examples.Tutorial.CDL.Controls.RadiatorSupply.

  2. In this new block, we used Buildings.Controls.OBC.CDL.Continuous.Line to compute the set point for the supply water temperature based on the room air temperature. This set point is then used in a PI controller Buildings.Controls.OBC.CDL.Continuous.PID to modulate the mixing valve position in order to track the supply water temperature set point.

  3. To allow configuring the temperatures and the control gains, we exposed the main parameters of the controller, see Buildings.Examples.Tutorial.CDL.Controls.RadiatorSupply.

  4. We also implemented the open loop validation Buildings.Examples.Tutorial.CDL.Controls.Validation.RadiatorSupply to ensure that the controller is implemented correctly.

Exercise

Create a model, such as this model. To do so,

  1. Copy Buildings.Examples.Tutorial.CDL.System5.

  2. Implement the controller for the radiator supply water temperature control.

    Make a small unit test to verify that the controller is implemented correctly.

  3. Use this new controller instead of the open loop controller conRadSup.

Simulate the system to verify that the mixing valve conRadSup is modulated and the room air temperature temRoo.T is well tracked.

Temperatures and control signals.

Extends from Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop (Partial model with open loop system).

Parameters

TypeNameDefaultDescription
replaceable package MediumAAirMedium model for air
replaceable package MediumWWaterMedium model for water
HeatFlowRateQ_flow_nominal20000Nominal heat flow rate of radiator [W]
TemperatureTRadSup_nominal273.15 + 50Radiator nominal supply water temperature [K]
TemperatureTRadRet_nominal273.15 + 40Radiator nominal return water temperature [K]
MassFlowRatemRad_flow_nominalQ_flow_nominal/4200/(TRadSup...Radiator nominal mass flow rate [kg/s]
TemperatureTBoiSup_nominal273.15 + 70Boiler nominal supply water temperature [K]
TemperatureTBoiRet_min273.15 + 60Boiler minimum return water temperature [K]
MassFlowRatemBoi_flow_nominalQ_flow_nominal/4200/(TBoiSup...Boiler nominal mass flow rate [kg/s]
MassFlowRatemRadVal_flow_nominalQ_flow_nominal/4200/(TBoiSup...Radiator nominal mass flow rate [kg/s]
VolumeV6*10*3Room volume [m3]
MassFlowRatemA_flow_nominalV*1.2*6/3600Nominal mass flow rate [kg/s]
HeatFlowRateQRooInt_flow4000Internal heat gains of the room [W]

Connectors

TypeNameDescription
BusweaBusWeather data bus

Modelica definition

model System6 "Closed loop model with all controls implemented" extends Buildings.Examples.Tutorial.CDL.BaseClasses.PartialOpenLoop; Controls.BoilerReturn conBoiRet "Controller for boiler return water temperature"; Controls.SystemOnOff conSysSta "Controller that switches the system on and off"; Controls.RadiatorSupply conRadSup "Controller for the mixing valve for the radiator supply water"; Controls.EquipmentOnOff conEquSta "Controller that switches the equipment on and off"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal radPumCon( realTrue=mRad_flow_nominal) "Type conversion for radiator pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiPumCon( realTrue=mBoi_flow_nominal) "Type conversion for boiler pump signal"; Buildings.Controls.OBC.CDL.Conversions.BooleanToReal boiSigCon( realTrue=1) "Type conversion for boiler signal"; equation connect(conSysSta.onSys, conEquSta.onSys); connect(conEquSta.onPum, boiPumCon.u); connect(radPumCon.u, conEquSta.onPum); connect(boiSigCon.u, conEquSta.onBoi); connect(radPumCon.y, pumRad.m_flow_in); connect(boiPumCon.y, pumBoi.m_flow_in); connect(boiSigCon.y, boi.y); connect(conRadSup.yVal, valRad.y); connect(conEquSta.TBoi, boi.T); connect(conSysSta.TOut, senTOut.T); connect(conRadSup.TRoo, temRoo.T); connect(conSysSta.TRoo, temRoo.T); connect(temRet.T, conBoiRet.TRet); connect(conBoiRet.yVal, valBoi.y); connect(temSup.T, conRadSup.TSup); end System6;