-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue2048 boiler plant condensation control #2156
Changes from 14 commits
81eed76
e9a68e6
8561d72
691d50b
01c2d7b
e04ea98
b51aaf2
e77523f
b9cd08d
3188750
08b0137
131a95f
79f2d36
5bb336b
7b5b6a7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,238 @@ | ||
within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints; | ||
block CondensationControl | ||
"Sequence to calculate setpoint limits for condensation control in non-condesing boilers" | ||
|
||
parameter Boolean primaryOnly = false | ||
"True: Primary-only plant; False: Primary-secondary plant"; | ||
|
||
parameter Boolean variablePrimary = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rename to |
||
"True: Variable speed pumps in primary loop; False: Constant speed pumps in primary loop" | ||
annotation(Evaluate=true,Dialog(enable=(not primaryOnly))); | ||
|
||
parameter Integer nSta=5 | ||
"Number of stages"; | ||
|
||
parameter Real TRetSet( | ||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") = 60 | ||
"Minimum hot water return temperature for optimal non-condensing boiler performance"; | ||
|
||
parameter Real TRetMinAll( | ||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") = 57.2 | ||
"Minimum allowed hot water return temperature for non-condensing boiler"; | ||
|
||
parameter Real minSecPumSpe( | ||
final unit="1", | ||
final displayUnit="1", | ||
final min=0, | ||
final max=1) = 0 | ||
"Minimum secondary pump speed"; | ||
|
||
parameter Real minPriPumSpeSta[nSta]( | ||
final unit="1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use |
||
final displayUnit="1", | ||
final min=0, | ||
final max=1) = {0,0,0,0,0} | ||
"Vector of minimum primary pump speed for each stage"; | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uCurSta | ||
"Current stage" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason not to use |
||
annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), | ||
iconTransformation(extent={{-140,-20},{-100,20}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.IntegerInput uStaTyp[nSta] | ||
"Stage type vector" | ||
annotation (Placement(transformation(extent={{-140,-90},{-100,-50}}), | ||
iconTransformation(extent={{-140,-80},{-100,-40}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRet( | ||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") | ||
"Measured hot water return temperature" | ||
annotation (Placement(transformation(extent={{-140,50},{-100,90}}), | ||
iconTransformation(extent={{-140,40},{-100,80}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinBypValPos( | ||
final unit="1", | ||
final displayUnit="1", | ||
final min=0, | ||
final max=1) if primaryOnly | ||
"Minimum allowed setpoint of bypass valve position" | ||
annotation (Placement(transformation(extent={{100,30},{140,70}}), | ||
iconTransformation(extent={{100,40},{140,80}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMinPriPumSpe( | ||
final unit="1", | ||
final displayUnit="1", | ||
final min=0, | ||
final max=1) if (variablePrimary and not primaryOnly) | ||
"Minimum allowed primary pump speed" | ||
annotation (Placement(transformation(extent={{100,-20},{140,20}}), | ||
iconTransformation(extent={{100,-20},{140,20}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealOutput yMaxSecPumSpe( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Based on the conventions please place Min or Max always as a suffix (unless you have a suffix with a leading underscore to use after it, for example |
||
final unit="1", | ||
final displayUnit="1", | ||
final min=0, | ||
final max=1) if not primaryOnly | ||
"Maximum allowed secondary pump speed" | ||
annotation (Placement(transformation(extent={{100,-70},{140,-30}}), | ||
iconTransformation(extent={{100,-80},{140,-40}}))); | ||
|
||
protected | ||
Buildings.Controls.OBC.CDL.Logical.Switch swi | ||
"Pass 0 regulation signal if stage type is not non-condensing" | ||
annotation (Placement(transformation(extent={{-50,40},{-30,60}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Continuous.Sources.Constant con( | ||
final k=0) | ||
"Zero source" | ||
annotation (Placement(transformation(extent={{-90,20},{-70,40}}))); | ||
|
||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator proReg( | ||
final TRetSet=TRetSet, | ||
final TRetMinAll=TRetMinAll) | ||
"Proportional regulator" | ||
annotation (Placement(transformation(extent={{-90,60},{-70,80}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Routing.RealExtractor extIndSig( | ||
final nin=nSta) | ||
"Identify stage type for current stage" | ||
annotation (Placement(transformation(extent={{-50,-80},{-30,-60}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Conversions.IntegerToReal intToRea[nSta] | ||
"Integer to Real conversion" | ||
annotation (Placement(transformation(extent={{-90,-80},{-70,-60}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Continuous.GreaterThreshold greThr( | ||
final threshold=Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.Types.BoilerTypes.condensingBoiler) | ||
"Identify if current stage is condensing type or non-condensing type" | ||
annotation (Placement(transformation(extent={{-10,-80},{10,-60}}))); | ||
|
||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits pumSpeLim( | ||
final variablePrimary=variablePrimary, | ||
final nSta=nSta, | ||
final minSecPumSpe=minSecPumSpe, | ||
final minPriPumSpeSta=minPriPumSpeSta) if not primaryOnly | ||
"Block to calculate pump speed limits" | ||
annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); | ||
|
||
equation | ||
connect(THotWatRet, proReg.THotWatRet) | ||
annotation (Line(points={{-120,70},{-92,70}}, | ||
color={0,0,127})); | ||
|
||
connect(yMinBypValPos, yMinBypValPos) | ||
annotation (Line(points={{120,50},{120,50}}, color={0,0,127})); | ||
|
||
connect(uStaTyp, intToRea.u) | ||
annotation (Line(points={{-120,-70},{-92,-70}}, | ||
color={255,127,0})); | ||
|
||
connect(intToRea.y, extIndSig.u) | ||
annotation (Line(points={{-68,-70},{-52,-70}}, | ||
color={0,0,127})); | ||
|
||
connect(uCurSta, extIndSig.index) annotation (Line(points={{-120,0},{-60,0},{-60, | ||
-90},{-40,-90},{-40,-82}}, | ||
color={255,127,0})); | ||
|
||
connect(extIndSig.y, greThr.u) | ||
annotation (Line(points={{-28,-70},{-12,-70}}, | ||
color={0,0,127})); | ||
|
||
connect(proReg.yRegSig, swi.u1) annotation (Line(points={{-68,70},{-60,70},{-60, | ||
58},{-52,58}}, color={0,0,127})); | ||
connect(greThr.y, swi.u2) annotation (Line(points={{12,-70},{20,-70},{20,-50}, | ||
{-56,-50},{-56,50},{-52,50}}, color={255,0,255})); | ||
connect(swi.y, yMinBypValPos) annotation (Line(points={{-28,50},{120,50}}, | ||
color={0,0,127})); | ||
connect(con.y, swi.u3) annotation (Line(points={{-68,30},{-60,30},{-60,42},{-52, | ||
42}}, color={0,0,127})); | ||
connect(swi.y, pumSpeLim.uRegSig) annotation (Line(points={{-28,50},{-20,50},{ | ||
-20,-5},{-12,-5}}, color={0,0,127})); | ||
connect(uCurSta, pumSpeLim.uCurSta) annotation (Line(points={{-120,0},{-60,0}, | ||
{-60,5},{-12,5}}, color={255,127,0})); | ||
connect(pumSpeLim.yMinPriPumSpe, yMinPriPumSpe) | ||
annotation (Line(points={{12,5},{30,5},{30,0},{120,0}},color={0,0,127})); | ||
connect(pumSpeLim.yMaxSecPumSpe, yMaxSecPumSpe) annotation (Line(points={{12,-5}, | ||
{30,-5},{30,-50},{120,-50}}, color={0,0,127})); | ||
annotation (defaultComponentName= | ||
"conSet", | ||
Icon(graphics={ | ||
Rectangle( | ||
extent={{-100,100},{100,-100}}, | ||
lineColor={0,0,0}, | ||
fillColor={255,255,255}, | ||
fillPattern=FillPattern.Solid, | ||
lineThickness=0.1), | ||
Rectangle( | ||
extent={{-100,100},{100,-100}}, | ||
lineColor={28,108,200}, | ||
fillColor={255,255,255}, | ||
fillPattern=FillPattern.Solid, | ||
lineThickness=5, | ||
borderPattern=BorderPattern.Raised), | ||
Text( | ||
extent={{-120,146},{100,108}}, | ||
lineColor={0,0,255}, | ||
textString="%name"), | ||
Ellipse( | ||
extent={{-80,80},{80,-80}}, | ||
lineColor={28,108,200}, | ||
fillColor={170,255,213}, | ||
fillPattern=FillPattern.Solid)}, | ||
coordinateSystem( | ||
preserveAspectRatio=false, | ||
extent={{-100,-100},{100,100}})), | ||
Diagram( | ||
coordinateSystem(preserveAspectRatio=false, | ||
extent={{-100,-100},{100,100}})), | ||
Documentation( | ||
info="<html> | ||
<p> | ||
Block that generates condensation control setpoints according to ASHRAE RP-1711, | ||
March, 2020 draft, section 5.3.5. | ||
</p> | ||
<p> | ||
The sequence calculates the condensation control setpoints for minimum bypass | ||
valve position <code>yMinBypValPos</code>, minimum primary pump speed <code>yMinPriPumSpe</code> | ||
and maximum secondary pump speed <code>yMaxSecPumSpe</code> using the following calculations: | ||
<ol> | ||
<li> | ||
Block <code>proReg</code> implemented in the class | ||
<a href=\"modelica://Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator\"> | ||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.ProportionalRegulator</a> | ||
uses the measured hot water return temperature <code>THotWatRet</code> to generate a regulation signal with P-only control loop. | ||
</li> | ||
<li> | ||
The regulation signal is used as is for <code>yMinBypValPos</code>. | ||
</li> | ||
<li> | ||
The regulation signal is used by block <code>pumSpeLim</code> implemented in the class | ||
<a href=\"modelica://Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits\"> | ||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.PumpSpeedLimits</a> | ||
to generate the pump speed limits <code>yMinPriPumSpe</code> and <code>yMaxSecPumSpe</code>. | ||
</li> | ||
</ol> | ||
<p align=\"center\"> | ||
<img alt=\"Validation plot for PlantEnable\" | ||
src=\"modelica://Buildings/Resources/Images/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/CondensationControl.png\"/> | ||
<br/> | ||
Validation plot generated from model <a href=\"modelica://Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Validation.CondensationControl\"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Per Michael's guidance please remove the validation plots from the blocks themselves. This will be needed for the sequence export purposes. |
||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Validation.CondensationControl</a>. | ||
</p> | ||
</html>", | ||
revisions="<html> | ||
<ul> | ||
<li> | ||
May 18, 2020, by Karthik Devaprasad:<br/> | ||
First implementation. | ||
</li> | ||
</ul> | ||
</html>")); | ||
end CondensationControl; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
within Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences; | ||
block ProportionalRegulator | ||
"Sequence to calculate regulation signal with measured return temperature as input" | ||
|
||
parameter Real TRetSet( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are you usually using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reason is that it makes the instance name better searchable in any text editor. |
||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") = 60 | ||
"Minimum hot water return temperature for optimal non-condensing boiler performance"; | ||
|
||
parameter Real TRetMinAll( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") = 57.2 | ||
"Minimum allowed hot water return temperature for non-condensing boiler"; | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealInput THotWatRet( | ||
final unit="K", | ||
final displayUnit="K", | ||
final quantity="ThermodynamicTemperature") | ||
"Measured hot water return temperature" | ||
annotation (Placement(transformation(extent={{-140,-20},{-100,20}}), | ||
iconTransformation(extent={{-140,-20},{-100,20}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Interfaces.RealOutput yRegSig( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could this be only |
||
final unit="1", | ||
final displayUnit="1", | ||
final min=0, | ||
final max=1) | ||
"Regulation signal from P-only loop for condensation control" | ||
annotation (Placement(transformation(extent={{100,-20},{140,20}}), | ||
iconTransformation(extent={{100,-20},{140,20}}))); | ||
|
||
protected | ||
Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar( | ||
final p=TRetSet, | ||
final k=-1) | ||
"Compare hot water return temperature and minimum return temperature" | ||
annotation (Placement(transformation(extent={{-60,-10},{-40,10}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Continuous.Limiter lim( | ||
final uMax=TRetSet - TRetMinAll, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not permitted in CDL. You could use min/max and have it be an input. |
||
final uMin=0) | ||
"Limit input for calculating control signal" | ||
annotation (Placement(transformation(extent={{-10,-10},{10,10}}))); | ||
|
||
Buildings.Controls.OBC.CDL.Continuous.Gain gai( | ||
final k=1/(TRetSet - TRetMinAll)) | ||
"Calculate control signal" | ||
annotation (Placement(transformation(extent={{40,-10},{60,10}}))); | ||
|
||
equation | ||
connect(addPar.u, THotWatRet) | ||
annotation (Line(points={{-62,0},{-120,0}}, color={0,0,127})); | ||
|
||
connect(lim.u, addPar.y) | ||
annotation (Line(points={{-12,0},{-38,0}}, color={0,0,127})); | ||
|
||
connect(lim.y, gai.u) | ||
annotation (Line(points={{12,0},{38,0}}, color={0,0,127})); | ||
|
||
connect(gai.y, yRegSig) | ||
annotation (Line(points={{62,0},{120,0}}, color={0,0,127})); | ||
|
||
annotation (defaultComponentName= | ||
"proReg", | ||
Icon(graphics={ | ||
Rectangle( | ||
extent={{-100,100},{100,-100}}, | ||
lineColor={0,0,0}, | ||
fillColor={255,255,255}, | ||
fillPattern=FillPattern.Solid, | ||
lineThickness=0.1), | ||
Rectangle( | ||
extent={{-100,100},{100,-100}}, | ||
lineColor={28,108,200}, | ||
fillColor={255,255,255}, | ||
fillPattern=FillPattern.Solid, | ||
lineThickness=5, | ||
borderPattern=BorderPattern.Raised), | ||
Text( | ||
extent={{-120,146},{100,108}}, | ||
lineColor={0,0,255}, | ||
textString="%name"), | ||
Ellipse( | ||
extent={{-80,80},{80,-80}}, | ||
lineColor={28,108,200}, | ||
fillColor={170,255,213}, | ||
fillPattern=FillPattern.Solid)}, | ||
coordinateSystem( | ||
preserveAspectRatio=false, | ||
extent={{-100,-100},{100,100}})), | ||
Diagram( | ||
coordinateSystem(preserveAspectRatio=false, | ||
extent={{-100,-100},{100,100}})), | ||
Documentation( | ||
info="<html> | ||
<p> | ||
Block that generates proportional regulation signal for condensation control | ||
in non-condensing boilers according to RP-1711, March, 2020 draft, section | ||
5.3.5. | ||
</p> | ||
<p> | ||
The minimum bypass valve position <code>yProReg</code> is calculated | ||
as follows: | ||
<li> | ||
The measured hot-water return temperature <code>THotWatRet</code> is compared | ||
to the minimum hot water return temperature for optimal operation <code>TRetSet</code>, | ||
with the output <code>yProReg</code> varying linearly from 0% at | ||
<code>TRetSet</code> to 100% at <code>TRetMinAll</code>. | ||
</li> | ||
<p align=\"center\"> | ||
<img alt=\"Validation plot for ValvePosition\" | ||
src=\"modelica://Buildings/Resources/Images/Controls/OBC/ASHRAE/PrimarySystem/BoilerPlant/SetPoints/Subsequences/ProportionalRegulator.png\"/> | ||
<br/> | ||
Validation plot generated from model <a href=\"modelica://Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.Validation.ProportionalRegulator\"> | ||
Buildings.Controls.OBC.ASHRAE.PrimarySystem.BoilerPlant.SetPoints.Subsequences.Validation.ProportionalRegulator</a>. | ||
</p> | ||
</html>", | ||
revisions="<html> | ||
<ul> | ||
<li> | ||
July 21, 2020, by Karthik Devaprasad:<br/> | ||
First implementation. | ||
</li> | ||
</ul> | ||
</html>")); | ||
end ProportionalRegulator; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename to
have_priOnl
.