Information
This package contains control sequences for primary or secondary pumps.
Package Content
Name |
Description |
ControlDifferentialPressure
|
Differential pressure control for variable speed pumps |
ResetLocalDifferentialPressure
|
Local differential pressure reset |
StagingHeadered
|
Generic staging logic for headered pumps |
StagingHeaderedDeltaP
|
Staging logic for headered variable speed pumps using ∆p pump speed control |
Validation
|
Collection of validation models |
Differential pressure control for variable speed pumps
Information
For plants where a remote DP sensor(s) is hardwired to the pump controller
(have_senDpRemHar=true
):
-
When any pump is proven on, the pump speed is controlled by a reverse acting PI loop
maintaining the differential pressure signal at setpoint.
All pumps receive the same speed signal.
-
Where multiple DP sensors exist, a PI loop runs for each sensor.
The pumps are controlled to the highest signal output of all DP sensor loops.
For plants where the remote DP sensor(s) is not hardwired to the plant controller, but
a local DP sensor is hardwired to the plant controller
(have_senDpRemHar=false
):
-
When any pump is proven on, the pump speed is controlled by a reverse acting PI
loop maintaining the local DP signal at the DP setpoint output from the
remote sensor control loop (see
Buildings.Templates.Plants.Controls.Pumps.Generic.ResetLocalDifferentialPressure).
All pumps receive the same speed signal.
-
Where multiple remote DP sensors exist, a PI loop shall run for each sensor.
The DP setpoint for the local DP sensor is the highest DP setpoint output
from each of the remote loops.
Details
This logic is prescribed in ASHRAE, 2021 for:
-
variable speed primary pumps in primary-only chiller and boiler plants
where the remote DP sensor(s) is hardwired to the plant controller,
-
variable speed primary pumps in primary-only chiller and boiler plants
where the remote DP sensor(s) is not hardwired to the plant controller, but
a local DP sensor is hardwired to the plant controller,
-
variable speed secondary pumps in primary-secondary chiller and boiler
plants where a remote DP sensor(s) is hardwired to the secondary pump controller,
-
variable speed secondary pumps in primary-secondary chiller and boiler plants
where a remote DP sensor is not hardwired to the secondary pump controller,
but a local DP sensor is hardwired to the secondary pump controller.
References
-
ASHRAE, 2021. Guideline 36-2021, High-Performance Sequences of Operation
for HVAC Systems. Atlanta, GA.
Parameters
Type | Name | Default | Description |
Boolean | have_senDpRemWir | | Set to true for remote differential pressure sensor(s) hardwired to controller |
Integer | nPum | | Number of pumps that operate at design conditions |
Integer | nSenDpRem | | Number of remote loop differential pressure sensors used for pump speed control |
Real | y_min | 0.1 | Minimum pump speed [1] |
Control gains |
Real | k | 1 | Gain of controller |
Real | Ti | 60 | Time constant of integrator block [s] |
Connectors
Type | Name | Description |
input BooleanInput | y1_actual[nPum] | Pump status |
input RealInput | dpRemSet[nSenDpRem] | Remote differential pressure setpoint [Pa] |
input RealInput | dpLoc | Loop differential pressure local to the plant [Pa] |
input RealInput | dpRem[nSenDpRem] | Remote loop differential pressure [Pa] |
input RealInput | dpLocSet[nSenDpRem] | Local differential pressure setpoint [Pa] |
output RealOutput | y | Pump speed command [1] |
output RealOutput | dpLocSetMax | Maximum local differential pressure setpoint [Pa] |
Modelica definition
block ControlDifferentialPressure
parameter Boolean have_senDpRemWir
;
parameter Integer nPum(
min=1)
;
parameter Integer nSenDpRem(
min=1)
;
parameter Real y_min(
max=1,
min=0,
unit="1")=0.1
;
final parameter Real y_max(
final unit="1",
final min=0,
final max=2)=1
;
parameter Real k(
min=100 * Buildings.Controls.OBC.CDL.Constants.eps)=1
;
parameter Real Ti(
min=100 * Buildings.Controls.OBC.CDL.Constants.eps,
unit="s")=60
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput y1_actual[nPum]
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpRemSet[nSenDpRem](
each final unit="Pa")
if have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpLoc(
final unit="Pa")
if not have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpRem[nSenDpRem](
each final unit="Pa")
if have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpLocSet[nSenDpRem](
each final unit="Pa")
if not have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Interfaces.RealOutput y(
final unit="1")
;
Buildings.Controls.OBC.CDL.Logical.MultiOr anyOn(
final nin=nPum)
;
Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator repEna(
final nout=nSenDpRem)
;
Buildings.Controls.OBC.CDL.Reals.MultiMax maxSet(
nin=nSenDpRem)
if not have_senDpRemWir
;
Utilities.PIDWithEnable ctlDpRem[nSenDpRem](
each final k=k,
each final Ti=Ti,
each r=dpSca,
each final yMin=y_min,
each final yMax=y_max,
each final y_reset=y_min,
each final y_neutral=0)
if have_senDpRemWir
;
Utilities.PIDWithEnable ctlDpLoc(
final k=k,
final Ti=Ti,
final r=dpSca,
final yMin=y_min,
final yMax=y_max,
final y_reset=y_min,
final y_neutral=0)
if not have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Reals.MultiMax maxY(
nin=nSenDpRem)
if have_senDpRemWir
;
Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpLocSetMax(
final unit="Pa")
if not have_senDpRemWir ;
protected
parameter Real dpSca(
final unit="Pa",
final min=0)=1E4
;
equation
connect(y1_actual, anyOn.u);
connect(anyOn.y, repEna.u);
connect(dpLocSet, maxSet.u);
connect(dpRemSet, ctlDpRem.u_s);
connect(maxSet.y, ctlDpLoc.u_s);
connect(dpRem, ctlDpRem.u_m);
connect(repEna.y, ctlDpRem.uEna);
connect(dpLoc, ctlDpLoc.u_m);
connect(anyOn.y, ctlDpLoc.uEna);
connect(ctlDpRem.y, maxY.u);
connect(ctlDpLoc.y, y);
connect(maxY.y, y);
connect(maxSet.y, dpLocSetMax);
end ControlDifferentialPressure;
Local differential pressure reset
Information
For plants where the remote DP sensor(s) is not hardwired to the plant controller, but
a local DP sensor is hardwired to the plant controller,
remote DP is maintained at setpoint by a reverse acting PI loop running in the controller
to which the remote sensor is wired.
The loop output is a DP setpoint for the local primary loop DP sensor hardwired to the
plant controller.
The local DP setpoint is reset from dpLocSet_min
at 0 % loop output
to dpLocSet_max
at 100 % loop output.
The minimum local differential pressure setpoint dpLocSet_min
is
dictated by minimum flow control in primary-only plants but has no lower
limit in primary-secondary plants.
In primary-only plants, the minimum setpoint needs to be high enough to drive design
minimum flow for the largest equipment through the minimum flow bypass valve.
Details
This logic is prescribed in ASHRAE, 2021 for:
-
variable speed primary pumps in primary-only chiller and boiler plants
where the remote DP sensor(s) is not hardwired to the plant controller, but
a local DP sensor is hardwired to the plant controller,
-
variable speed secondary pumps in primary-secondary chiller and boiler plants
where a remote DP sensor is not hardwired to the secondary pump controller,
but a local DP sensor is hardwired to the secondary pump controller.
References
-
ASHRAE, 2021. Guideline 36-2021, High-Performance Sequences of Operation
for HVAC Systems. Atlanta, GA.
Parameters
Type | Name | Default | Description |
Real | dpLocSet_min | 5*6895 | Minimum loop differential pressure setpoint local to the plant [Pa] |
Real | dpLocSet_max | | Maximum loop differential pressure setpoint local to the plant [Pa] |
Control gains |
Real | k | 1 | Gain of controller |
Real | Ti | 60 | Time constant of integrator block [s] |
Connectors
Type | Name | Description |
input RealInput | dpRemSet | Remote loop differential pressure setpoint [Pa] |
input RealInput | dpRem | Remote loop differential pressure [Pa] |
output RealOutput | dpLocSet | Local differential pressure setpoint [Pa] |
Modelica definition
block ResetLocalDifferentialPressure
parameter Real dpLocSet_min(
start=0,
final unit="Pa",
final min=0)=5 * 6895
;
parameter Real dpLocSet_max(
start=1E5,
final unit="Pa",
final min=0)
;
parameter Real k(
final min=100 * Buildings.Controls.OBC.CDL.Constants.eps)=1
;
parameter Real Ti(
final unit="s",
final min=100 * Buildings.Controls.OBC.CDL.Constants.eps)=60
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpRemSet(
final unit="Pa")
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpRem(
final unit="Pa")
;
Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpLocSet(
final unit="Pa")
;
Buildings.Controls.OBC.CDL.Reals.PID ctlDpRem(
final k=k,
final Ti=Ti,
final r=dpLocSet_max)
;
Buildings.Controls.OBC.CDL.Reals.Line dpLocRes
;
Buildings.Controls.OBC.CDL.Reals.Sources.Constant zer(
final k=0)
;
Buildings.Controls.OBC.CDL.Reals.Sources.Constant one(
final k=1)
;
Buildings.Controls.OBC.CDL.Reals.Sources.Constant dpLocSetMin(
final k=dpLocSet_min)
;
Buildings.Controls.OBC.CDL.Reals.Sources.Constant dpLocSetMax(
final k=dpLocSet_max)
;
equation
connect(dpRem, ctlDpRem.u_m);
connect(zer.y, dpLocRes.x1);
connect(dpLocSetMin.y, dpLocRes.f1);
connect(one.y, dpLocRes.x2);
connect(dpLocSetMax.y, dpLocRes.f2);
connect(dpRemSet, ctlDpRem.u_s);
connect(ctlDpRem.y, dpLocRes.u);
connect(dpLocRes.y, dpLocSet);
end ResetLocalDifferentialPressure;
Generic staging logic for headered pumps
Information
Plants with headered primary pumps that are not controlled to maintain differential pressure or flow setpoint
Primary pumps are lead/lag alternated as described in
Buildings.Templates.Plants.Controls.StagingRotation.SortRuntime.
The lead primary pump is enabled as described in
Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered.
The number of operating primary pumps matches the number of operating
equipment.
Plants with headered primary pumps that are controlled to maintain differential pressure or flow setpoint
Primary pumps are lead/lag alternated as described in
Buildings.Templates.Plants.Controls.StagingRotation.SortRuntime.
The lead primary pump is enabled as described in
Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered.
Primary pumps are staged as described in
Buildings.Templates.Plants.Controls.Pumps.Generic.StagingHeaderedDeltaP.
Plants with headered secondary pumps
Secondary pumps are lead/lag alternated as described in
Buildings.Templates.Plants.Controls.StagingRotation.SortRuntime.
The lead secondary pump is enabled when the plant is enabled.
Otherwise, the lead secondary pump is disabled.
Secondary pumps are staged as described in
Buildings.Templates.Plants.Controls.Pumps.Generic.StagingHeaderedDeltaP.
Details
To simplify integration into the plant controller this block also
serves as a pass-through for the dedicated primary pump command signal
that is generated in
Buildings.Templates.Plants.Controls.StagingRotation.EventSequencing.
For this purpose, the block includes the parameter is_hdr
to
specify whether the pumps are headered or dedicated.
At its current stage of development, this block contains no
logic for handling faulted equipment.
It is therefore assumed that all pumps are available at all times.
Parameters
Type | Name | Default | Description |
Boolean | is_pri | | Set to true for primary pumps, false for secondary pumps |
Boolean | is_hdr | | Set to true for headered pumps, false for dedicated pumps |
Boolean | is_ctlDp | | Set to true for variable speed pumps using ∆p pump speed control |
Boolean | have_valInlIso | | Set to true if the system as inlet isolation valves |
Boolean | have_valOutIso | | Set to true if the system as outlet isolation valves |
Integer | nEqu | | Number of equipment |
Integer | nPum | | Number of pumps |
Integer | nSenDp | | Number of hardwired ∆p sensors |
Real | V_flow_nominal | | Design flow rate [m3/s] |
Real | dtRun | 600 | Runtime before triggering stage change command based on efficiency condition [s] |
Real | dtRunFaiSaf | 300 | Runtime before triggering stage change command based on failsafe condition [s] |
Real | dtRunFaiSafLowY | dtRun | Runtime before triggering stage change command based on low pump speed failsafe condition [s] |
Real | dVOffUp | 0.03 | Stage up flow point offset [1] |
Real | dVOffDow | dVOffUp | Stage down flow point offset [1] |
Real | dpOff | 1E4 | Stage change ∆p point offset (>0) [Pa] |
Real | yUp | 0.99 | Stage up pump speed point [1] |
Real | yDow | 0.4 | Stage down pump speed point [1] |
Connectors
Type | Name | Description |
input BooleanInput | u1Pum[nEqu] | Pump command from equipment enable logic |
input BooleanInput | u1Pum_actual[nPum] | Pump status – Hardware point |
output BooleanOutput | y1[nPum] | Pump command – Hardware point |
output BooleanOutput | y1_actual[nEqu] | Pump status to equipment enable logic |
input RealInput | V_flow | Flow rate [m3/s] |
input BooleanInput | u1ValInlIso[nEqu] | Equipment inlet isolation valve command |
input BooleanInput | u1ValOutIso[nEqu] | Equipment outlet isolation valve command |
input BooleanInput | u1Pla | Plant enable signal |
input RealInput | y | Pump speed command [1] |
input RealInput | dp[nSenDp] | Loop differential pressure [Pa] |
input RealInput | dpSet[nSenDp] | Loop differential pressure setpoint [Pa] |
Modelica definition
block StagingHeadered
parameter Boolean is_pri(start=true)
;
parameter Boolean is_hdr(start=false)
;
parameter Boolean is_ctlDp(start=false)
;
parameter Boolean have_valInlIso(start=false)
;
parameter Boolean have_valOutIso(start=false)
;
parameter Integer nEqu
;
parameter Integer nPum
;
parameter Integer nSenDp(
final min=1, start=1)
;
parameter Real V_flow_nominal(
min=1E-6,
start=1E-6,
unit="m3/s")
;
parameter Real dtRun(
min=0,
start=600,
unit="s")=600
;
parameter Real dtRunFaiSaf(
final min=0,
final unit="s",
start=300)=300
;
parameter Real dtRunFaiSafLowY(
min=0,
start=600,
unit="s")=dtRun
;
parameter Real dVOffUp(
max=1,
min=0,
start=0.03,
unit="1")=0.03
;
parameter Real dVOffDow(
max=1,
min=0,
start=0.03,
unit="1")=dVOffUp
;
parameter Real dpOff(
final min=0,
final unit="Pa",
start=1E4)=1E4
;
parameter Real yUp(
final min=0,
final unit="1",
start=0.99)=0.99
;
parameter Real yDow(
final min=0,
final unit="1",
start=0.4)=0.4
;
final parameter Real staPum[nPum, nPum](
each unit="1",
each min=0,
each max=1)={
fill(i / nPum, nPum)
for i
in 1:nPum}
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Pum[nEqu]
if is_pri
and (
not is_hdr
or is_hdr
and not is_ctlDp)
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Pum_actual[nPum]
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1[nPum]
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1_actual[nEqu]
;
Utilities.StageIndex nPumHdrDp(
final have_inpAva=false,
final nSta=nPum)
if is_hdr
and is_ctlDp
;
Generic.StagingHeaderedDeltaP staHdrDp(
final nSenDp=nSenDp,
final V_flow_nominal=V_flow_nominal,
final dVOffDow=dVOffDow,
final dVOffUp=dVOffUp,
final dpOff=dpOff,
final dtRun=dtRun,
final dtRunFaiSaf=dtRunFaiSaf,
final dtRunFaiSafLowY=dtRunFaiSafLowY,
final nPum=nPum,
final yDow=yDow,
final yUp=yUp)
if is_hdr
and is_ctlDp
;
StagingRotation.SortRuntime sorRunTimHdr(
nin=nPum)
if is_hdr
;
Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt[nEqu](
each final integerTrue=1,
each final integerFalse=0)
if is_pri
and is_hdr
and not is_ctlDp
;
Buildings.Controls.OBC.CDL.Integers.MultiSum nPumHdrPriNotDp0(
nin=nEqu)
if is_pri
and is_hdr
and not is_ctlDp
;
Buildings.Controls.OBC.CDL.Logical.Sources.Constant u1Ava[nPum](
each final k=true)
if is_hdr
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput V_flow(
final unit="m3/s")
if is_hdr
and is_ctlDp
;
Buildings.Controls.OBC.CDL.Routing.BooleanExtractSignal sigPumPriDed(
final nin
=nEqu,
final nout=nPum)
if is_pri
and not is_hdr
;
Buildings.Controls.OBC.CDL.Routing.BooleanExtractSignal y1Ded_actual(
nin=nPum,
nout=nEqu)
if not is_hdr
;
Buildings.Controls.OBC.CDL.Routing.BooleanExtractor y1LeaHdr_actual(
final nin=nPum)
if is_hdr
;
Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep(
final nout=nEqu)
if is_hdr
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1ValInlIso[nEqu]
if is_pri
and is_hdr
and have_valInlIso
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1ValOutIso[nEqu]
if is_pri
and is_hdr
and have_valOutIso
;
Primary.EnableLeadHeadered enaLeaHdrPri(
final typCon=Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Parallel,
final typValIso=Buildings.Templates.Plants.Controls.Types.Actuator.TwoPosition,
final nValIso=2 * nEqu)
if is_pri
and is_hdr
;
Utilities.PlaceholderLogical phValInlIso[nEqu](
each final have_inp=
have_valInlIso,
each final have_inpPh=true)
if is_pri
and is_hdr
;
Utilities.PlaceholderLogical phValOutIso[nEqu](
each final have_inp=
have_valOutIso,
each final have_inpPh=true)
if is_pri
and is_hdr
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Pla
if not is_pri
and is_hdr
;
Buildings.Controls.OBC.CDL.Conversions.BooleanToInteger booToInt1(
final integerTrue=1,
final integerFalse=0)
if is_pri
and is_hdr
and not is_ctlDp
;
Buildings.Controls.OBC.CDL.Integers.Multiply nPumHdrPriNotDp
if is_pri
and is_hdr
and not is_ctlDp
;
StagingRotation.EquipmentEnable enaHdr(
final staEqu=staPum)
if is_hdr
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput y(
final unit="1")
if is_hdr
and is_ctlDp
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dp[nSenDp](
each final unit=
"Pa")
if is_hdr
and is_ctlDp ;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpSet[nSenDp](
each final unit
="Pa")
if is_hdr
and is_ctlDp ;
equation
connect(u1Pum_actual, staHdrDp.u1_actual);
connect(staHdrDp.y1Up, nPumHdrDp.u1Up);
connect(staHdrDp.y1Dow, nPumHdrDp.u1Dow);
connect(u1Pum, booToInt.u);
connect(booToInt.y, nPumHdrPriNotDp0.u);
connect(u1Ava.y, sorRunTimHdr.u1Ava);
connect(V_flow, staHdrDp.V_flow);
connect(u1Pum, sigPumPriDed.u);
connect(u1Pum_actual, y1Ded_actual.u);
connect(y1Ded_actual.y, y1_actual);
connect(u1Pum_actual, y1LeaHdr_actual.u);
connect(y1LeaHdr_actual.y, booScaRep.u);
connect(booScaRep.y, y1_actual);
connect(u1ValInlIso, phValInlIso.u);
connect(enaLeaHdrPri.y1, nPumHdrDp.u1Lea);
connect(phValInlIso.y, enaLeaHdrPri.u1ValIso[1:nEqu]);
connect(phValOutIso.y, enaLeaHdrPri.u1ValIso[nEqu + 1:2*nEqu]);
connect(u1ValOutIso, phValOutIso.u);
connect(u1ValOutIso, phValInlIso.uPh);
connect(u1ValInlIso, phValOutIso.uPh);
connect(u1Pla, nPumHdrDp.u1Lea);
connect(enaLeaHdrPri.y1, booToInt1.u);
connect(nPumHdrPriNotDp0.y, nPumHdrPriNotDp.u1);
connect(booToInt1.y, nPumHdrPriNotDp.u2);
connect(sorRunTimHdr.yIdx[1], y1LeaHdr_actual.index);
connect(u1Pum_actual, sorRunTimHdr.u1Run);
connect(enaHdr.y1, y1);
connect(nPumHdrDp.y, enaHdr.uSta);
connect(nPumHdrPriNotDp.y, enaHdr.uSta);
connect(u1Ava.y, enaHdr.u1Ava);
connect(sorRunTimHdr.yIdx, enaHdr.uIdxAltSor);
connect(sigPumPriDed.y, y1);
connect(dpSet, staHdrDp.dpSet);
connect(dp, staHdrDp.dp);
connect(y, staHdrDp.y);
end StagingHeadered;
Staging logic for headered variable speed pumps using ∆p pump speed control
Information
Pumps are staged as a function of the ratio ratV_flow
of current volume flow rate V_flow to design volume
flow rate V_flow_nominal,
the number of operating pumps nPum_actual
and the number of pumps that operate at design conditions
nPum.
Pumps are assumed to be equally sized.
FR = V_flow / V_flow_nominal
The next lag pump is enabled whenever either:
- Efficiency condition:
FR > nPum_actual / nPum − dVOffUp is true for
dtRun
; or
- Failsafe condition:
Pump speed command >
yUp
for dtRunFaiSaf
and loop ∆p < setpoint – dpOff
for dtRunFaiSaf
for all hardwired differential pressure sensors.
The last lag pump is disabled whenever either:
- The lag pump was staged on based on the efficiency condition and
FR < (nPum_actual - 1) / nPum − dVOffDow is true for
dtRun
; or
- The lag pump was staged on based on the failsafe condition,
pump speed command <
yDow
for dtRunFaiSafLowY
and loop ∆p > setpoint – dpOff
for dtRunFaiSaf
for all hardwired differential pressure sensors.
If desired, the stage down flow point dVOffDow
can be
offset slightly below the stage up point dVOffUp
to
prevent cycling between pump stages in applications with highly variable loads.
The timers are reset to zero when the status of a pump changes.
This is necessary to ensure the minimum pump runtime with rapidly changing loads.
Details
The staging logic based on the efficiency condition (excluding the failsafe condition)
is prescribed in ASHRAE, 2021 for:
-
headered variable speed primary pumps in primary-only chiller
and boiler plants using differential pressure pump speed control,
-
variable speed secondary pumps in primary-secondary chiller plants
with one or more sets of secondary loop pumps serving downstream
control valves,
-
variable speed secondary pumps in primary-secondary boiler
plants with serving a secondary loop with a flow meter.
For other plant configurations, the pumps are staged with the equipment,
i.e., the number of pumps matches the number of chillers or boilers.
The actual logic for generating the pump enable commands is part of the
staging event sequencing.
References
-
ASHRAE, 2021. Guideline 36-2021, High-Performance Sequences of Operation
for HVAC Systems. Atlanta, GA.
Parameters
Type | Name | Default | Description |
Integer | nPum | | Number of pumps that operate at design conditions |
Integer | nSenDp | | Number of hardwired ∆p sensors |
Real | V_flow_nominal | | Design flow rate [m3/s] |
Real | dtRun | 10*60 | Runtime before triggering stage change command based on efficiency condition [s] |
Real | dtRunFaiSaf | 5*60 | Runtime before triggering stage change command based on failsafe condition [s] |
Real | dtRunFaiSafLowY | dtRun | Runtime before triggering stage change command based on low pump speed failsafe condition [s] |
Real | dVOffUp | 0.03 | Stage up flow point offset (>0) [1] |
Real | dVOffDow | dVOffUp | Stage down flow point offset (>0) [1] |
Real | dpOff | 1E4 | Stage change ∆p point offset (>0) [Pa] |
Real | yUp | 0.99 | Stage up pump speed point [1] |
Real | yDow | 0.4 | Stage down pump speed point [1] |
Connectors
Modelica definition
block StagingHeaderedDeltaP
parameter Integer nPum(
final min=1)
;
parameter Integer nSenDp(
final min=1)
;
parameter Real V_flow_nominal(min=1E-6, unit="m3/s")
;
parameter Real dtRun(
min=0,
unit="s")=10*60
;
parameter Real dtRunFaiSaf(
min=0,
unit="s")=5*60
;
parameter Real dtRunFaiSafLowY(
min=0,
unit="s")=dtRun
;
parameter Real dVOffUp(
max=1,
min=0,
unit="1")=0.03
;
parameter Real dVOffDow(
max=1,
min=0,
unit="1")=dVOffUp
;
parameter Real dpOff(
min=0,
unit="Pa")=1E4
;
parameter Real yUp(
min=0,
unit="1")=0.99
;
parameter Real yDow(
min=0,
unit="1")=0.4
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput V_flow(
final unit="m3/s") ;
Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1Up
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1Dow
;
Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1_actual[nPum]
;
Buildings.Controls.OBC.CDL.Reals.MultiplyByParameter norV(
final k=1 / V_flow_nominal)
;
Buildings.Controls.OBC.CDL.Reals.MultiplyByParameter norN(
final k=1 / nPum)
;
Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea[nPum]
;
Buildings.Controls.OBC.CDL.Reals.Greater higV
;
Buildings.Controls.OBC.CDL.Reals.Less lowV ;
Buildings.Controls.OBC.CDL.Reals.AddParameter poiDow(
p=- 1 / nPum - dVOffDow)
;
Buildings.Controls.OBC.CDL.Reals.AddParameter poiUp(
p=- dVOffUp)
;
Buildings.Templates.Plants.Controls.Utilities.TimerWithReset timHigV(
final t=
dtRun)
;
Buildings.Templates.Plants.Controls.Utilities.TimerWithReset timLowV(
final t=
dtRun)
;
Buildings.Controls.OBC.CDL.Logical.Change cha[nPum]
;
Buildings.Controls.OBC.CDL.Reals.MultiSum nOpe(
nin=nPum)
;
Buildings.Controls.OBC.CDL.Logical.MultiOr anyCha(
nin=nPum)
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput y(
final unit="1")
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dp[nSenDp](
each final unit="Pa")
;
Buildings.Controls.OBC.CDL.Interfaces.RealInput dpSet[nSenDp](
each final unit
="Pa") ;
Buildings.Controls.OBC.CDL.Reals.GreaterThreshold higY(
final t=yUp)
;
Utilities.TimerWithReset timHigY(
final t=dtRunFaiSaf)
;
Buildings.Controls.OBC.CDL.Reals.Subtract delDpSet[nSenDp]
;
Buildings.Controls.OBC.CDL.Reals.LessThreshold lowDp[nSenDp](
each final t=-
dpOff)
;
Utilities.TimerWithReset timLowDp[nSenDp](
each final t=dtRunFaiSaf)
;
Buildings.Controls.OBC.CDL.Logical.And higYAndLowDp
;
Buildings.Controls.OBC.CDL.Logical.Or effOrFailSafUp
;
Buildings.Controls.OBC.CDL.Reals.LessThreshold lowY(
final t=yDow)
;
Utilities.TimerWithReset timLowY(
final t=dtRunFaiSafLowY)
;
Utilities.TimerWithReset timHigDp[nSenDp](
each final t=dtRunFaiSaf)
;
Buildings.Controls.OBC.CDL.Reals.GreaterThreshold higDp[nSenDp](
each final t=
-dpOff)
;
Buildings.Controls.OBC.CDL.Logical.Latch lckEff
;
Buildings.Controls.OBC.CDL.Logical.Latch lckFaiSaf
;
Buildings.Controls.OBC.CDL.Logical.Pre preEff
;
Buildings.Controls.OBC.CDL.Logical.Pre preFaiSaf
;
Buildings.Controls.OBC.CDL.Logical.And staDowAndPreEff
;
Buildings.Controls.OBC.CDL.Logical.MultiAnd staDowAndPreFaiSaf(nin=3)
;
Buildings.Controls.OBC.CDL.Logical.Or effOrFailSafDow
;
Buildings.Controls.OBC.CDL.Logical.Edge edgUp
;
Buildings.Controls.OBC.CDL.Logical.Edge edgDow
;
Buildings.Controls.OBC.CDL.Logical.MultiAnd allLowDp(nin=nSenDp)
;
Buildings.Controls.OBC.CDL.Logical.MultiAnd allHigDp(nin=nSenDp)
;
Buildings.Controls.OBC.CDL.Routing.BooleanScalarReplicator booScaRep(
final
nout=nSenDp) ;
equation
connect(norN.y, poiDow.u);
connect(norN.y, poiUp.u);
connect(norV.y, higV.u1);
connect(poiUp.y, higV.u2);
connect(poiDow.y, lowV.u2);
connect(norV.y, lowV.u1);
connect(lowV.y, timLowV.u);
connect(V_flow, norV.u);
connect(higV.y, timHigV.u);
connect(booToRea.y, nOpe.u);
connect(u1_actual, booToRea.u);
connect(u1_actual, cha.u);
connect(nOpe.y, norN.u);
connect(cha.y, anyCha.u);
connect(anyCha.y, timHigV.reset);
connect(anyCha.y, timLowV.reset);
connect(higY.y, timHigY.u);
connect(y, higY.u);
connect(anyCha.y, timHigY.reset);
connect(dp, delDpSet.u1);
connect(dpSet, delDpSet.u2);
connect(delDpSet.y, lowDp.u);
connect(lowDp.y, timLowDp.u);
connect(timHigY.passed, higYAndLowDp.u1);
connect(timHigV.passed, effOrFailSafUp.u1);
connect(higYAndLowDp.y, effOrFailSafUp.u2);
connect(y, lowY.u);
connect(lowY.y, timLowY.u);
connect(anyCha.y, timLowY.reset);
connect(higDp.y, timHigDp.u);
connect(delDpSet.y, higDp.u);
connect(higYAndLowDp.y, lckEff.clr);
connect(timHigV.passed, lckEff.u);
connect(higYAndLowDp.y, lckFaiSaf.u);
connect(timHigV.passed, lckFaiSaf.clr);
connect(lckFaiSaf.y, preFaiSaf.u);
connect(lckEff.y, preEff.u);
connect(preEff.y, staDowAndPreEff.u2);
connect(timLowV.passed, staDowAndPreEff.u1);
connect(timLowY.passed, staDowAndPreFaiSaf.u[1]);
connect(preFaiSaf.y, staDowAndPreFaiSaf.u[2]);
connect(staDowAndPreEff.y, effOrFailSafDow.u1);
connect(staDowAndPreFaiSaf.y, effOrFailSafDow.u2);
connect(effOrFailSafUp.y, edgUp.u);
connect(edgUp.y, y1Up);
connect(effOrFailSafDow.y, edgDow.u);
connect(edgDow.y, y1Dow);
connect(timLowDp.passed, allLowDp.u);
connect(timHigDp.passed, allHigDp.u);
connect(allLowDp.y, higYAndLowDp.u2);
connect(allHigDp.y, staDowAndPreFaiSaf.u[3]);
connect(anyCha.y, booScaRep.u);
connect(booScaRep.y, timLowDp.reset);
connect(booScaRep.y, timHigDp.reset);
end StagingHeaderedDeltaP;