diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo index ada4c3d13f7..26778f49651 100644 --- a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo +++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Controller.mo @@ -71,7 +71,7 @@ block Controller "Condenser water pump controller" annotation (Placement(transformation(extent={{120,-20},{160,20}}), iconTransformation(extent={{100,-50},{140,-10}}))); Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput yPumSpeChe - "Flag to indicate if pump speed achieve setpoint" + "Flag to indicate if pump speed achieves setpoint" annotation (Placement(transformation(extent={{120,-100},{160,-60}}), iconTransformation(extent={{100,-110},{140,-70}}))); Buildings.Controls.OBC.CDL.Continuous.AddParameter addPar( @@ -244,7 +244,7 @@ annotation (
Block that generates control signals for condenser water pumps control, according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II – -Central Plants and Hydronic Systems (Draft on March 2020), +Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.9 Condenser water pumps.
diff --git a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo index e410f6c8f79..47c3557615d 100644 --- a/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo +++ b/Buildings/Controls/OBC/ASHRAE/PrimarySystem/ChillerPlant/Pumps/CondenserWater/Subsequences/EnableLead_dedicated.mo @@ -8,7 +8,7 @@ block EnableLead_dedicated "Threshold to check lead chiller OFF time"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiEna - "Lead chiller enabling status" + "Lead chiller commanded on status" annotation (Placement(transformation(extent={{-140,50},{-100,90}}), iconTransformation(extent={{-140,60},{-100,100}}))); Buildings.Controls.OBC.CDL.Interfaces.BooleanInput uLeaChiSta @@ -35,9 +35,10 @@ protected annotation (Placement(transformation(extent={{60,60},{80,80}}))); Buildings.Controls.OBC.CDL.Logical.Timer tim( final t=offTimThr) - "Check if the chiller has been OFF for more than threshold" + "Check if the chiller has been proven off for more than threshold time" annotation (Placement(transformation(extent={{-40,-30},{-20,-10}}))); - Buildings.Controls.OBC.CDL.Logical.Not not3 "Logical not" + Buildings.Controls.OBC.CDL.Logical.Not not3 + "Check if the lead chiller is disabled" annotation (Placement(transformation(extent={{-60,30},{-40,50}}))); Buildings.Controls.OBC.CDL.Logical.And and2 "Logical and" annotation (Placement(transformation(extent={{0,30},{20,50}}))); @@ -108,14 +109,14 @@ annotation ( Block that enable and disable lead condenser water pump, for plants with dedicated condenser water pumps, according to ASHRAE RP-1711 Advanced Sequences of Operation for HVAC Systems Phase II – -Central Plants and Hydronic Systems (Draft on March 2020), +Central Plants and Hydronic Systems (Draft on March 23, 2020), section 5.2.9 Condenser water pumps, part 5.2.9.4.
The lead condenser water pump should be enabled when lead chiller is commanded
to run (uLeaChiEna
= true). It should be disabled when the lead
chiller is disabled and either the lead chiller has been proven off
-(uLeaChiSta
= false) for offTimThr
, i.e. 3 minutes or
+(uLeaChiSta
= false) for offTimThr
, i.e. 3 minutes, or
is not requesting condenser water flow (uLeaConWatReq
= false).