Buildings.Templates.Plants.Controls.Pumps.Primary

Sequences for primary pumps

Information

This package contains control sequences for primary pumps.

Package Content

Name Description
Buildings.Templates.Plants.Controls.Pumps.Primary.DisableDedicated DisableDedicated Pump disable for plants with dedicated primary pumps
Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered EnableLeadHeadered Lead primary pump enable/disable for plants with headered primary pumps
Buildings.Templates.Plants.Controls.Pumps.Primary.VariableSpeed VariableSpeed Variable speed primary pumps
Buildings.Templates.Plants.Controls.Pumps.Primary.Validation Validation Collection of validation models

Buildings.Templates.Plants.Controls.Pumps.Primary.DisableDedicated Buildings.Templates.Plants.Controls.Pumps.Primary.DisableDedicated

Pump disable for plants with dedicated primary pumps

Buildings.Templates.Plants.Controls.Pumps.Primary.DisableDedicated

Information

The pump is disabled when the associated plant equipment is disabled and:

When the flow request point is available, the default value for the pump disable delay dtOff is increased from 3 min to 10 min to ensure that flow is not cut off too soon.

Details

Used in Guideline 36 for disabling dedicated primary pumps in chiller and boiler plants.

The enable signal u1 is yielded by the staging event sequencing logic.

Parameters

TypeNameDefaultDescription
Booleanhave_reqFlofalseSet to true if plant equipment provides flow request point via network interface
RealdtOffif not have_reqFlo then 3*60...Runtime with lead equipment proven off before disabling [s]

Connectors

TypeNameDescription
input BooleanInputu1ReqFloFlow request from equipment
input BooleanInputu1Enable signal from system enable logic
input BooleanInputu1EquEquipment enable signal
input BooleanInputu1Equ_actualEquipment status
output BooleanOutputy1Lead pump enable signal

Modelica definition

block DisableDedicated "Pump disable for plants with dedicated primary pumps" parameter Boolean have_reqFlo=false "Set to true if plant equipment provides flow request point via network interface"; parameter Real dtOff( min=0, unit="s")=if not have_reqFlo then 3 * 60 else 10 * 60 "Runtime with lead equipment proven off before disabling"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1ReqFlo if have_reqFlo "Flow request from equipment"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1 "Enable signal from system enable logic"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Equ "Equipment enable signal"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Equ_actual "Equipment status"; Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1 "Lead pump enable signal"; Buildings.Controls.OBC.CDL.Logical.Latch lat "Clear enable signal if disable conditions are met"; Buildings.Controls.OBC.CDL.Logical.Not dis "Return true if lead equipment is disabled"; Buildings.Controls.OBC.CDL.Logical.Not off "Return true if lead equipment is proven off"; Buildings.Controls.OBC.CDL.Logical.Sources.Constant fal( final k=false) if not have_reqFlo "Placeholder constant"; Buildings.Controls.OBC.CDL.Logical.Or offOrNotReq "Return true if lead equipment proven off OR not requesting flow"; Buildings.Controls.OBC.CDL.Logical.Timer timOff( final t=dtOff) "Return true if lead equipment is proven off for specified duration"; Buildings.Controls.OBC.CDL.Logical.And disAndOffOrNotReq "Return true if lead equipment disbaled AND (proven off OR not requesting flow)"; Buildings.Controls.OBC.CDL.Logical.Edge edg "Trigger true signal when disable conditions turn true"; Buildings.Controls.OBC.CDL.Logical.Not noReq if have_reqFlo "Return true if no flow request"; Utilities.Initialization ini( final yIni=false) "Force false clear signal at initial time"; equation connect(lat.y, y1); connect(u1, lat.u); connect(u1Equ, dis.u); connect(u1Equ_actual, off.u); connect(fal.y, offOrNotReq.u2); connect(off.y, timOff.u); connect(timOff.passed, offOrNotReq.u1); connect(u1ReqFlo, noReq.u); connect(noReq.y, offOrNotReq.u2); connect(dis.y, disAndOffOrNotReq.u1); connect(offOrNotReq.y, disAndOffOrNotReq.u2); connect(disAndOffOrNotReq.y, edg.u); connect(edg.y, ini.u); connect(ini.y, lat.clr); end DisableDedicated;

Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered

Lead primary pump enable/disable for plants with headered primary pumps

Buildings.Templates.Plants.Controls.Pumps.Primary.EnableLeadHeadered

Information

Plants with parallel piped equipment

The lead primary pump is enabled when any equipment isolation valve is commanded open.

The lead primary pump is disabled when all equipment isolation valves are commanded closed.

For modulating valves, the "valve commanded open" condition is evaluated based on a command signal > 0 %. The "valve commanded closed" condition is evaluated as the negation of the previous condition.

Plants with series piped equipment

The lead primary pump is enabled when any equipment isolation valve is commanded closed.

The lead primary pump is disabled when all equipment isolation valves are commanded open.

For modulating valves, the "valve commanded closed" condition is evaluated based on a command signal < 100 %. The "valve commanded open" condition is evaluated as the negation of the previous condition.

Details

This logic is prescribed in ASHRAE, 2021 for:

The valve command is used in contrast to the feedback of the valve position or the end switch status, as prescribed by Guideline 36. This is for the sake of simplicity, as there is no harm in deadheading the pump for a couple seconds and it simplifies the programming.

For modulating valves, the "valve commanded open/closed" condition is evaluated without hysteresis because the valve command signal is generated by the enabling or staging logic and both use minimum runtime conditions. Therefore, the valve command signal is not subject to any oscillatory behavior.

References

Parameters

TypeNameDefaultDescription
EquipmentConnectiontypCon Type of connection between equipment and primary loop
ActuatortypValIsoBuildings.Templates.Plants.C...Type of isolation valve
IntegernValIso Number of isolation valves

Connectors

TypeNameDescription
input BooleanInputu1ValIso[nValIso]Isolation valve command
input RealInputuValIso[nValIso]Isolation valve command
output BooleanOutputy1Lead pump enable signal

Modelica definition

block EnableLeadHeadered "Lead primary pump enable/disable for plants with headered primary pumps" parameter Buildings.Templates.Plants.Controls.Types.EquipmentConnection typCon "Type of connection between equipment and primary loop"; parameter Buildings.Templates.Plants.Controls.Types.Actuator typValIso= Buildings.Templates.Plants.Controls.Types.Actuator.TwoPosition "Type of isolation valve"; parameter Integer nValIso( final min=1) "Number of isolation valves"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1ValIso[nValIso] if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.TwoPosition "Isolation valve command"; Buildings.Controls.OBC.CDL.Interfaces.RealInput uValIso[nValIso] if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.Modulating "Isolation valve command"; Buildings.Controls.OBC.CDL.Interfaces.BooleanOutput y1 "Lead pump enable signal"; Buildings.Controls.OBC.CDL.Logical.MultiOr anyOpePar( nin=nValIso) if typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Parallel "Return true if any valve is commanded open - Parallel piped equipment"; Buildings.Controls.OBC.CDL.Logical.MultiAnd allCloPar( nin=nValIso) if typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Parallel "Return true if all valves are commanded closed - Parallel piped equipment"; Buildings.Controls.OBC.CDL.Logical.Not cloParMod[nValIso] if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.Modulating and typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Parallel "Return true if valve is commanded closed"; Buildings.Controls.OBC.CDL.Reals.GreaterThreshold opeParMod[nValIso]( each final t=0) if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.Modulating and typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Parallel "Return true if valve commanded > 0 % open"; Buildings.Controls.OBC.CDL.Logical.Latch lat "Clear enable signal if disable conditions are met"; Buildings.Controls.OBC.CDL.Logical.MultiOr anyCloSer( nin=nValIso) if typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Series "Return true if any valve is commanded closed - Series piped equipment"; Buildings.Controls.OBC.CDL.Logical.MultiAnd allOpeSer( nin=nValIso) if typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Series "Return true if all valves are commanded open - Series piped equipment"; Buildings.Controls.OBC.CDL.Reals.LessThreshold cloSerMod[nValIso]( each final t=0.99) if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.Modulating and typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Series "Return true if valve commanded < 99 % open"; Buildings.Controls.OBC.CDL.Logical.Not opeSerMod[nValIso] if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.Modulating and typCon == Buildings.Templates.Plants.Controls.Types.EquipmentConnection.Series "Return true if valve is commanded open"; Buildings.Controls.OBC.CDL.Logical.Not cloTwo[nValIso] if typValIso == Buildings.Templates.Plants.Controls.Types.Actuator.TwoPosition "Return true if valve is commanded closed"; equation connect(uValIso, opeParMod.u); connect(opeParMod.y, cloParMod.u); connect(lat.y, y1); connect(anyOpePar.y, lat.u); connect(allCloPar.y, lat.clr); connect(allOpeSer.y, lat.clr); connect(anyCloSer.y, lat.u); connect(uValIso, cloSerMod.u); connect(cloSerMod.y, opeSerMod.u); connect(u1ValIso, cloTwo.u); connect(cloTwo.y, anyCloSer.u); connect(u1ValIso, anyOpePar.u); connect(cloTwo.y, allCloPar.u); connect(u1ValIso, allOpeSer.u); connect(cloParMod.y, allCloPar.u); connect(cloSerMod.y, anyCloSer.u); connect(opeSerMod.y, allOpeSer.u); connect(opeParMod.y, anyOpePar.u); end EnableLeadHeadered;

Buildings.Templates.Plants.Controls.Pumps.Primary.VariableSpeed Buildings.Templates.Plants.Controls.Pumps.Primary.VariableSpeed

Variable speed primary pumps

Buildings.Templates.Plants.Controls.Pumps.Primary.VariableSpeed

Information

Plants with variable speed primary pumps that are not controlled to maintain differential pressure or flow setpoint

Heating-only plants

When commanded on, the primary HW pumps are commanded at a fixed speed yPumHeaWatPriSet, as determined during the Testing, Adjusting, and Balancing phase to provide the design heat pump flow.

Cooling-only plants

When commanded on, the primary CHW pumps are commanded at a fixed speed yPumChiWatPriSet, as determined during the Testing, Adjusting, and Balancing phase to provide the design heat pump flow.

Heating and cooling plants with common primary CHW and HW pumps

When commanded on, the primary pumps are commanded at a fixed speed yPumHeaWatPriSet in heating mode or yPumChiWatPriSet in cooling mode, as determined during the Testing, Adjusting, and Balancing phase to provide the design heat pump flow in heating mode or cooling mode. The operating mode of the associated heat pump is determined and latched at the time the pump is enabled.

Heating and cooling plants with separate primary CHW and HW pumps

When commanded on, the primary HW pumps are commanded at a fixed speed yPumHeaWatPriSet. When commanded on, the primary CHW pumps are commanded at a fixed speed yPumChiWatPriSet. The pump speed yPumHeaWatPriSet or yPumChiWatPriSet is determined during the Testing, Adjusting, and Balancing phase to provide the design heat pump flow in heating mode or cooling mode.

Plants with variable speed primary pumps that are controlled to maintain differential pressure or flow setpoint

Heating-only plants

The pumps are controlled as described in Buildings.Templates.Plants.Controls.Pumps.Generic.ControlDifferentialPressure. The "pump proven on" condition is evaluated based on the primary HW pump status.

Cooling-only plants

The pumps are controlled as described in Buildings.Templates.Plants.Controls.Pumps.Generic.ControlDifferentialPressure. The "pump proven on" condition is evaluated based on the primary CHW pump status.

Heating and cooling plants with common primary CHW and HW pumps

The pumps are controlled as described in Buildings.Templates.Plants.Controls.Pumps.Generic.ControlDifferentialPressure. For the HW loop, the "pump proven on" condition is evaluated based on the status of the primary pumps associated with heat pumps that are commanded in heating mode. For the CHW loop, the "pump proven on" condition is evaluated based on the status of the primary pumps associated with heat pumps that are commanded in cooling mode. The operating mode of the associated heat pump is determined and latched at the time the pump is enabled.

Heating and cooling plants with separate primary CHW and HW pumps

The pumps are controlled as described in Buildings.Templates.Plants.Controls.Pumps.Generic.ControlDifferentialPressure. For the HW loop, the "pump proven on" condition is evaluated based on the status of the primary HW pumps. For the CHW loop, the "pump proven on" condition is evaluated based on the status of the primary CHW pumps.

Parameters

TypeNameDefaultDescription
Plant configuration
Booleanhave_heaWat Set to true for plants that provide HW
Booleanhave_chiWat Set to true for plants that provide CHW
Booleanhave_pumPriCtlDp Set to true for primary variable speed pumps using ∆p pump speed control
Booleanhave_pumChiWatPriDed Set to true for plants with separate dedicated primary CHW pumps
Booleanhave_pumPriHdr Set to true for headered primary pumps, false for dedicated pumps
IntegernEqu Number of equipment
IntegernPumHeaWatPri Number of primary HW pumps
IntegernPumChiWatPri Number of primary CHW pumps
Booleanhave_senDpHeaWatRemWir Set to true for remote HW differential pressure sensor(s) hardwired to controller
IntegernSenDpHeaWatRem Number of remote HW differential pressure sensors used for pump speed control
Booleanhave_senDpChiWatRemWir Set to true for remote CHW differential pressure sensor(s) hardwired to controller
IntegernSenDpChiWatRem Number of remote CHW differential pressure sensors used for pump speed control
Information provided by testing, adjusting, and balancing contractor
RealyPumHeaWatPriSet Primary pump speed providing design heat pump flow in heating mode [1]
RealyPumChiWatPriSet Primary pump speed providing design heat pump flow in cooling mode [1]
RealyPumHeaWatPri_min0.1Minimum primary HW pump speed [1]
RealyPumChiWatPri_min0.1Minimum primary CHW pump speed [1]
Control gains
RealkCtlDpHeaWat1Gain of controller for HW loop ∆p control
RealTiCtlDpHeaWat60Time constant of integrator block for HW loop ∆p control [s]
RealkCtlDpChiWat1Gain of controller for CHW loop ∆p control
RealTiCtlDpChiWat60Time constant of integrator block for CHW loop ∆p control [s]

Connectors

TypeNameDescription
input BooleanInputu1PumHeaWatPri[nPumHeaWatPri]Primary HW pump start command
output RealOutputyPumHeaWatPriHdrHeadered primary HW pump speed command
input BooleanInputu1PumChiWatPri[nPumChiWatPri]Primary CHW pump start command
output RealOutputyPumChiWatPriHdrHeadered primary CHW pump speed command
output RealOutputyPumHeaWatPriDed[nPumHeaWatPri]Dedicated primary HW pump speed command
output RealOutputyPumChiWatPriDed[nPumChiWatPri]Dedicated primary CHW pump speed command
input BooleanInputu1Hea[nEqu]Heating/cooling mode command
input BooleanInputu1PumHeaWatPri_actual[nPumHeaWatPri]Primary HW pump status
input BooleanInputu1PumChiWatPri_actual[nPumChiWatPri]Primary CHW pump status
input RealInputdpChiWatLocLocal CHW differential pressure [Pa]
input RealInputdpChiWatLocSet[nSenDpChiWatRem]Local CHW differential pressure setpoint output from each of the remote loops [Pa]
input RealInputdpChiWatRem[nSenDpChiWatRem]Remote CHW differential pressure [Pa]
input RealInputdpHeaWatLocLocal HW differential pressure [Pa]
input RealInputdpHeaWatLocSet[nSenDpHeaWatRem]Local HW differential pressure setpoint output from each of the remote loops [Pa]
input RealInputdpHeaWatRem[nSenDpHeaWatRem]Remote HW differential pressure [Pa]
input RealInputdpHeaWatRemSet[nSenDpHeaWatRem]Remote HW differential pressure setpoint [Pa]
input RealInputdpChiWatRemSet[nSenDpChiWatRem]Remote CHW differential pressure setpoint [Pa]
output RealOutputdpHeaWatLocSetMaxMaximum HW local differential pressure setpoint [Pa]
output RealOutputdpChiWatLocSetMaxMaximum CHW local differential pressure setpoint [Pa]

Modelica definition

block VariableSpeed "Variable speed primary pumps" parameter Boolean have_heaWat "Set to true for plants that provide HW"; parameter Boolean have_chiWat "Set to true for plants that provide CHW"; parameter Boolean have_pumPriCtlDp "Set to true for primary variable speed pumps using ∆p pump speed control"; final parameter Boolean have_pumHeaWatPri=have_heaWat "Set to true for plants with primary HW pumps"; parameter Boolean have_pumChiWatPriDed( start=false) "Set to true for plants with separate dedicated primary CHW pumps"; final parameter Boolean have_pumChiWatPri=have_chiWat and (have_pumPriHdr or have_pumChiWatPriDed) "Set to true for plants with separate primary CHW pumps"; parameter Boolean have_pumPriHdr "Set to true for headered primary pumps, false for dedicated pumps"; parameter Integer nEqu( start=0) "Number of equipment"; parameter Integer nPumHeaWatPri "Number of primary HW pumps"; parameter Integer nPumChiWatPri( start=if have_pumChiWatPri then nEqu else 0) "Number of primary CHW pumps"; parameter Real yPumHeaWatPriSet( max=2, min=0, start=1, unit="1") "Primary pump speed providing design heat pump flow in heating mode"; parameter Real yPumChiWatPriSet( max=2, min=0, start=1, unit="1") "Primary pump speed providing design heat pump flow in cooling mode"; parameter Boolean have_senDpHeaWatRemWir( start=false) "Set to true for remote HW differential pressure sensor(s) hardwired to controller"; parameter Integer nSenDpHeaWatRem( start=0) "Number of remote HW differential pressure sensors used for pump speed control"; parameter Real yPumHeaWatPri_min( max=1, min=0, start=0.1, unit="1")=0.1 "Minimum primary HW pump speed"; parameter Real kCtlDpHeaWat( min=100 * Buildings.Controls.OBC.CDL.Constants.eps, start=1)=1 "Gain of controller for HW loop ∆p control"; parameter Real TiCtlDpHeaWat( min=100 * Buildings.Controls.OBC.CDL.Constants.eps, start=60, unit="s")=60 "Time constant of integrator block for HW loop ∆p control"; parameter Boolean have_senDpChiWatRemWir( start=false) "Set to true for remote CHW differential pressure sensor(s) hardwired to controller"; parameter Integer nSenDpChiWatRem( start=0) "Number of remote CHW differential pressure sensors used for pump speed control"; parameter Real yPumChiWatPri_min( max=1, min=0, start=0.1, unit="1")=0.1 "Minimum primary CHW pump speed"; parameter Real kCtlDpChiWat( min=100 * Buildings.Controls.OBC.CDL.Constants.eps, start=1)=1 "Gain of controller for CHW loop ∆p control"; parameter Real TiCtlDpChiWat( min=100 * Buildings.Controls.OBC.CDL.Constants.eps, start=60, unit="s")=60 "Time constant of integrator block for CHW loop ∆p control"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1PumHeaWatPri[nPumHeaWatPri] if have_pumHeaWatPri "Primary HW pump start command"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumHeaWatPriHdr if have_pumHeaWatPri and have_pumPriHdr "Headered primary HW pump speed command"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1PumChiWatPri[nPumChiWatPri] if have_pumChiWatPri "Primary CHW pump start command"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumChiWatPriHdr if have_pumChiWatPri and have_pumPriHdr "Headered primary CHW pump speed command"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumHeaWatPriDed[nPumHeaWatPri] if have_pumHeaWatPri and not have_pumPriHdr "Dedicated primary HW pump speed command"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput yPumChiWatPriDed[nPumChiWatPri] if have_pumChiWatPri and not have_pumPriHdr "Dedicated primary CHW pump speed command"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1Hea[nEqu] if have_heaWat and have_chiWat and not have_pumChiWatPri "Heating/cooling mode command"; Buildings.Controls.OBC.CDL.Reals.Switch setPumChiWatPriDed[nPumChiWatPri] if have_pumChiWatPri and not have_pumPriHdr "Set prescribed speed when pump is enabled"; Buildings.Controls.OBC.CDL.Reals.Sources.Constant zer( final k=0) "Constant"; Buildings.Controls.OBC.CDL.Reals.Switch setPumHeaWatPriDed[nPumHeaWatPri] if have_pumHeaWatPri and not have_pumPriHdr "Set prescribed speed when pump is enabled"; Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator rep( nout=nPumHeaWatPri) if have_pumHeaWatPri "Replicate signal"; Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator rep1( nout=nPumChiWatPri) if have_pumChiWatPri "Replicate signal"; Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator rep2( nout=nPumChiWatPri) if have_pumChiWatPri "Replicate signal"; Buildings.Controls.OBC.CDL.Reals.Switch setPumChiWatPriHdr if have_pumChiWatPri and have_pumPriHdr "Set prescribed speed when pump is enabled"; Buildings.Controls.OBC.CDL.Reals.Switch setPumHeaWatPriHdr if have_pumHeaWatPri and have_pumPriHdr "Set prescribed speed when pump is enabled"; Buildings.Controls.OBC.CDL.Logical.MultiOr anyPumChiWatPri( nin=nPumChiWatPri) if have_pumChiWatPri "Return true if any pump is enabled"; Buildings.Controls.OBC.CDL.Logical.MultiOr anyPumHeaWatPri( nin=nPumHeaWatPri) if have_pumHeaWatPri "Return true if any pump is enabled"; Buildings.Controls.OBC.CDL.Reals.Switch selSpeHea[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri and not have_pumPriHdr "Select prescribed pump speed depending on heating/cooling mode – Case with common CHW and HW dedicated pumps"; Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator rep3( nout=nPumHeaWatPri) if have_heaWat "Replicate signal"; Buildings.Controls.OBC.CDL.Routing.RealScalarReplicator rep4( nout=nPumHeaWatPri) if have_heaWat and have_chiWat and not have_pumChiWatPri and not have_pumPriHdr "Replicate signal"; Utilities.PlaceholderReal ph[nPumHeaWatPri]( each final have_inp=have_heaWat and have_chiWat and not have_pumChiWatPri and not have_pumPriHdr, each final have_inpPh=true) if have_pumHeaWatPri and not have_pumPriHdr "Always use HW pump speed in case of separate dedicated CHW pumps "; Generic.ControlDifferentialPressure ctlDpHeaWat( final have_senDpRemWir=have_senDpHeaWatRemWir, final k=kCtlDpHeaWat, final nPum=nPumHeaWatPri, final nSenDpRem=nSenDpHeaWatRem, final Ti=TiCtlDpHeaWat, final y_min=yPumHeaWatPri_min) if have_heaWat and have_pumPriCtlDp "HW loop ∆p control"; Utilities.PlaceholderReal phSpePumHeaWatPri( final have_inp=have_pumPriCtlDp, final have_inpPh=false, final u_internal=yPumHeaWatPriSet) if have_heaWat "Replace with fixed speed"; Generic.ControlDifferentialPressure ctlDpChiWat( final have_senDpRemWir=have_senDpChiWatRemWir, final k=kCtlDpChiWat, final nPum=if have_pumChiWatPri then nPumChiWatPri else nPumHeaWatPri, final nSenDpRem=nSenDpChiWatRem, final Ti=TiCtlDpChiWat, final y_min=if have_pumChiWatPri then yPumChiWatPri_min else yPumHeaWatPri_min) if have_chiWat and have_pumPriCtlDp "CHW loop ∆p control"; Utilities.PlaceholderReal phSpePumChiWatPri( final have_inp=have_pumPriCtlDp, final have_inpPh=false, final u_internal=yPumChiWatPriSet) if have_chiWat "Replace with fixed speed"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1PumHeaWatPri_actual[nPumHeaWatPri] if have_pumHeaWatPri and have_pumPriCtlDp "Primary HW pump status"; Buildings.Controls.OBC.CDL.Interfaces.BooleanInput u1PumChiWatPri_actual[nPumChiWatPri] if have_pumChiWatPri and have_pumPriCtlDp "Primary CHW pump status"; Buildings.Controls.OBC.CDL.Logical.Not u1Coo[nEqu] if have_heaWat and have_chiWat and not have_pumChiWatPri "Return true if cooling mode command"; Buildings.Controls.OBC.CDL.Logical.And u1CooAndOn[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri and have_pumPriCtlDp "Return true if cooling mode command and pump proven on"; Utilities.PlaceholderLogical phPumChiWatPriSta[if have_pumChiWatPri then nPumChiWatPri else nPumHeaWatPri]( each final have_inp=have_pumChiWatPri, each final have_inpPh=true) if have_chiWat and have_pumPriCtlDp "Replace with common dedicated pump signal"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatLoc( final unit="Pa") if have_chiWat and have_pumPriCtlDp and not have_senDpChiWatRemWir "Local CHW differential pressure"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatLocSet[nSenDpChiWatRem]( each final unit="Pa") if have_chiWat and have_pumPriCtlDp and not have_senDpChiWatRemWir "Local CHW differential pressure setpoint output from each of the remote loops"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatRem[nSenDpChiWatRem]( each final unit="Pa") if have_chiWat and have_pumPriCtlDp and have_senDpChiWatRemWir "Remote CHW differential pressure"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHeaWatLoc( final unit="Pa") if have_heaWat and have_pumPriCtlDp and not have_senDpHeaWatRemWir "Local HW differential pressure"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHeaWatLocSet[nSenDpHeaWatRem]( each final unit="Pa") if have_heaWat and have_pumPriCtlDp and not have_senDpHeaWatRemWir "Local HW differential pressure setpoint output from each of the remote loops"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHeaWatRem[nSenDpHeaWatRem]( each final unit="Pa") if have_heaWat and have_pumPriCtlDp and have_senDpHeaWatRemWir "Remote HW differential pressure"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpHeaWatRemSet[nSenDpHeaWatRem]( each final unit="Pa") if have_heaWat and have_pumPriCtlDp and have_senDpHeaWatRemWir "Remote HW differential pressure setpoint"; Buildings.Controls.OBC.CDL.Interfaces.RealInput dpChiWatRemSet[nSenDpChiWatRem]( each final unit="Pa") if have_chiWat and have_pumPriCtlDp and have_senDpChiWatRemWir "Remote CHW differential pressure setpoint"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpHeaWatLocSetMax( final unit="Pa") if have_heaWat and have_pumPriCtlDp and not have_senDpHeaWatRemWir "Maximum HW local differential pressure setpoint"; Buildings.Controls.OBC.CDL.Interfaces.RealOutput dpChiWatLocSetMax( final unit="Pa") if have_chiWat and have_pumPriCtlDp and not have_senDpChiWatRemWir "Maximum CHW local differential pressure setpoint"; Buildings.Controls.OBC.CDL.Logical.Latch latCoo[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri "Latch signal until pump is re-enabled with equipment commanded to alternative mode"; Buildings.Controls.OBC.CDL.Logical.Edge edgU1PumHeaWatPri[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri "Return true exactly when the pump is enabled"; Buildings.Controls.OBC.CDL.Logical.And edgU1Coo[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri "Return true if equipment commanded in cooling mode when the pump is enabled"; Buildings.Controls.OBC.CDL.Logical.And edgU1AndHea[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri "Return true if equipment commanded in heating mode when the pump is enabled"; Buildings.Controls.OBC.CDL.Logical.Latch latHea[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri "Latch signal until pump is re-enabled with equipment commanded to alternative mode"; Buildings.Controls.OBC.CDL.Logical.And u1HeaAndOn[nPumHeaWatPri] if have_heaWat and have_chiWat and not have_pumChiWatPri and have_pumPriCtlDp "Return true if heating mode command and pump proven on"; Utilities.PlaceholderLogical phPumHeaWatPriSta[nPumHeaWatPri]( each final have_inp=have_chiWat and have_pumChiWatPri or not have_chiWat, each final have_inpPh=true) if have_heaWat and have_pumPriCtlDp "Replace with common dedicated pump signal"; equation connect(u1PumChiWatPri, setPumChiWatPriDed.u2); connect(setPumChiWatPriDed.y, yPumChiWatPriDed); connect(setPumHeaWatPriDed.y, yPumHeaWatPriDed); connect(zer.y, rep.u); connect(zer.y, rep2.u); connect(setPumHeaWatPriHdr.y, yPumHeaWatPriHdr); connect(setPumChiWatPriHdr.y, yPumChiWatPriHdr); connect(rep2.y, setPumChiWatPriDed.u3); connect(rep1.y, setPumChiWatPriDed.u1); connect(zer.y, setPumChiWatPriHdr.u3); connect(rep.y, setPumHeaWatPriDed.u3); connect(zer.y, setPumHeaWatPriHdr.u3); connect(u1PumChiWatPri, anyPumChiWatPri.u); connect(u1PumHeaWatPri, anyPumHeaWatPri.u); connect(anyPumHeaWatPri.y, setPumHeaWatPriHdr.u2); connect(anyPumChiWatPri.y, setPumChiWatPriHdr.u2); connect(u1PumHeaWatPri, setPumHeaWatPriDed.u2); connect(rep3.y, selSpeHea.u1); connect(ph.y, setPumHeaWatPriDed.u1); connect(selSpeHea.y, ph.u); connect(u1Hea, u1Coo.u); connect(u1PumChiWatPri_actual, phPumChiWatPriSta.u); connect(phPumChiWatPriSta.y, ctlDpChiWat.y1_actual); connect(dpHeaWatRemSet, ctlDpHeaWat.dpRemSet); connect(dpHeaWatRem, ctlDpHeaWat.dpRem); connect(dpHeaWatLocSet, ctlDpHeaWat.dpLocSet); connect(dpHeaWatLoc, ctlDpHeaWat.dpLoc); connect(dpChiWatRemSet, ctlDpChiWat.dpRemSet); connect(dpChiWatRem, ctlDpChiWat.dpRem); connect(dpChiWatLocSet, ctlDpChiWat.dpLocSet); connect(dpChiWatLoc, ctlDpChiWat.dpLoc); connect(ctlDpHeaWat.dpLocSetMax, dpHeaWatLocSetMax); connect(ctlDpChiWat.dpLocSetMax, dpChiWatLocSetMax); connect(rep3.y, ph.uPh); connect(rep4.y, selSpeHea.u3); connect(u1PumHeaWatPri, edgU1PumHeaWatPri.u); connect(u1Hea, edgU1AndHea.u2); connect(u1PumHeaWatPri_actual, u1HeaAndOn.u1); connect(edgU1AndHea.y, latHea.u); connect(phSpePumChiWatPri.y, setPumChiWatPriHdr.u1); connect(ctlDpHeaWat.y, phSpePumHeaWatPri.u); connect(ctlDpChiWat.y, phSpePumChiWatPri.u); connect(phSpePumHeaWatPri.y, setPumHeaWatPriHdr.u1); connect(phSpePumHeaWatPri.y, rep3.u); connect(phSpePumChiWatPri.y, rep4.u); connect(u1CooAndOn.y, phPumChiWatPriSta.uPh); connect(phPumHeaWatPriSta.y, ctlDpHeaWat.y1_actual); connect(u1HeaAndOn.y, phPumHeaWatPriSta.uPh); connect(u1PumHeaWatPri_actual, phPumHeaWatPriSta.u); connect(latCoo.y, u1CooAndOn.u2); connect(latHea.y, selSpeHea.u2); connect(latHea.y, u1HeaAndOn.u2); connect(phSpePumChiWatPri.y, rep1.u); connect(u1PumHeaWatPri_actual, u1CooAndOn.u1); connect(u1Coo.y, edgU1Coo.u2); connect(edgU1PumHeaWatPri.y, edgU1Coo.u1); connect(edgU1PumHeaWatPri.y, edgU1AndHea.u1); connect(edgU1Coo.y, latCoo.u); connect(edgU1AndHea.y, latCoo.clr); connect(edgU1Coo.y, latHea.clr); end VariableSpeed;