When you create a nonlinear MPC controller using an nlmpc
object, you
can define any of the following constraints:
Standard linear constraints on states, outputs, manipulated variables, and manipulated variable rates of change
Custom equality constraints, specified as linear or nonlinear functions of the system states, inputs, and outputs
Custom inequality constraints, specified as linear or nonlinear functions of the system states, inputs, and outputs
The controller optimizes its control moves to satisfy all of these constraints; that is, the custom constraints supplement the standard linear constraints.
To improve computational efficiency, you can also specify analytical Jacobians for your custom equality and inequality constraints.
By specifying custom equality or inequality constraints, you can, for example:
Require the plant to reach a target state at the end of the prediction horizon
Require cumulative resource consumption to stay within specified limits
Before simulating your controller, it is best practice to validate your custom functions,
including the constraint functions and their Jacobians, using the validateFcns
command.
Linear MPC controllers have properties for defining custom constraints on linear combinations of inputs and outputs, as discussed in Constraints on Linear Combinations of Inputs and Outputs. These properties are not available for nonlinear MPC controllers. Instead, you implement such constraints within your custom equality or inequality constraint functions.
The following table shows the standard linear constraints supported by nonlinear MPC
controllers. For each of these constraints, you can specify a single bound that applies
across the entire prediction horizon, or you can vary each constraint over the prediction
horizon. For more information on setting controller linear constraint properties, see
nlmpc
.
Constraint | Controller Property | Constraint Softening |
---|---|---|
Lower bounds on state i | States(i).Min > -Inf | Not applicable. State bounds are always hard. |
Upper bounds on state i | States(i).Max < Inf | Not applicable. State bounds are always hard. |
Lower bounds on output variable i | OutputVariables(i).Min > -Inf |
Default:
|
Upper bounds on output variable i | OutputVariables(i).Max < Inf |
Default:
|
Lower bounds on manipulated variable i | ManipulatedVariables(i).Min > -Inf |
Default:
|
Upper bounds on manipulated variable i | ManipulatedVariables(i).Max < Inf |
Default:
|
Lower bounds on manipulated variable i rate of
change | ManipulatedVariables(i).RateMin > -Inf |
Default:
|
Lower bounds on manipulated variable i rate of
change | ManipulatedVariables(i).RateMax < Inf |
Default:
|
You can specify custom equality and inequality constraints for a nonlinear MPC
controller. To configure your nonlinear MPC controller to use custom equality or inequality
constraints, set its Optimization.CustomEqConFcn
or
Optimization.CustomIneqConFcn
respectively. To do so, specify the
custom functions as one of the following.
Name of a function in the current working folder or on the MATLAB® path, specified as a string or character vector
Optimization.CustomEqConFcn = "myEqConFunction"; Optimization.CustomIneqConFcn = "myIneqConFunction";
Handle to a function in the current working folder or on the MATLAB path
Optimization.CustomEqConFcn = @myEqConFunction; Optimization.CustomIneqConFcn = @myIneqConFunction;
Anonymous function
Optimization.CustomEqConFcn = ... @(X,U,data,params) myEqConFunction(X,U,data,params); Optimization.CustomIneqConFcn = ... @(X,U,e,data,params) myIneqConFunction(X,U,e,data,params);
Your constraint functions must have one of the following signatures.
If your controller does not use optional parameters:
function ceq = myEqConFunction(X,U,data) function cineq = myIneqConFunction(X,U,e,data)
If your controller uses parameters. Here, params
is a
comma-separated list of parameters:
function ceq = myEqConFunction(X,U,data,params) function cineq = myIneqConFunction(X,U,e,data,params)
This table describes the inputs and outputs of these functions, where:
Nx is the number of states and is equal to
the Dimensions.NumberOfStates
property of the controller.
Nu is the number of inputs, including all
manipulated variables, measured disturbances, and unmeasured disturbances, and is equal
to the Dimensions.NumberOfInputs
property of the controller.
Nceq is the number of equality constraints.
Ncineq is the number of inequality constraints.
p is the prediction horizon.
k is the current time.
Argument | Input/Output | Description | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
X | Input | State trajectory from time k to time
k+p, specified as a
(p+1)-by-Nx array.
The first row of X contains the current state values, which means
that the solver does not use the values in X(1,:) as decision
variables during optimization. | ||||||||||||||||||||||||||
U | Input | Input trajectory from time k to time
k+p, specified as a
(p+1)-by-Nu array.
The final row of U is always a duplicate of the preceding row;
that is, U(end,:) = U(end-1,:) . Therefore, the
values in the final row of U are not independent decision
variables during optimization. | ||||||||||||||||||||||||||
e | Input | Slack variable for constraint softening, specified as a positive scalar. Since all equality constraints are hard, this input argument applies to only the inequality constraint function. | ||||||||||||||||||||||||||
data | Input | Additional signals, specified as a structure with the following fields:
| ||||||||||||||||||||||||||
params | Input | Optional parameters, specified as a comma-separated list (for example
If your model uses optional
parameters, you must specify the number of parameters using
| ||||||||||||||||||||||||||
ceq | Output | Computed equality constraint values, returned as a column vector of length
Nceq. An equality constraint is
satisfied when the corresponding output is 0 . | ||||||||||||||||||||||||||
cineq | Output | Computed inequality constraint values, returned as a column vector of length
Ncineq. An inequality constraint is
satisfied when the corresponding output is less than or equal to
0 . |
To use output variable values in your constraint functions, you must first derive them
from the state and input arguments using the prediction model output function, as specified
in the Model.OutputFcn
property of the controller. For example, to
compute the output trajectory Y
from time k to time
k+p, use:
p = data.PredictionHorizon; for i=1:p+1 Y(i,:) = myOutputFunction(X(i,:)',U(i,:)',params)'; end
For more information on the prediction model output function, see Specify Prediction Model for Nonlinear MPC.
In general:
All equality constraints are hard.
To define soft inequality constraints, use the slack variable input argument,
e
. For more information on constraint softening in MPC, see Constraint Softening.
Equality constraints should be continuous and have continuous first derivatives with respect to the decision variables.
You can define custom constraints that apply across the entire prediction horizon. For example, suppose that you want to satisfy the following inequality constraints across the prediction horizon, where u1 is the first manipulated variable:
To define the constraint values across the prediction horizon, use:
p = data.PredictionHorizon; U1 = U(1:p,data.MVIndex(1)); X1 = X(2:p+1,1); X2 = X(2:p+1,2); cineq = [2*X1.^2 - 3*X2 - 10; U1.^2 - 5];
Applying these two constraints across p prediction horizon steps
produces a column vector with 2*p inequality constraints. These
inequality constraints are satisfied when the corresponding element of
cineq
is less than or equal to zero.
Alternatively, you can define constraints that apply at specific prediction horizon steps. For example, suppose that you want the states of a third-order plant to be:
To specify these state values as constraints on only the final prediction horizon step, use:
ceq = [X(p+1,1) - 5; X(p+1,2) + 3; X(p+1,3)];
These equality constraints are satisfied when the corresponding element of
ceq
is equal to zero.
For relatively simple constraints, you can specify the constraint function using an anonymous function handle. For example, to specify an anonymous function that implements the equality constraints, use:
Optimization.CustomEqConFcn = @(X,U,data) [X(p+1,1) - 5; X(p+1,2) + 3; X(p+1,3)];
To improve computational efficiency, it is best practice to specify analytical Jacobians for your custom constraint functions. If you do not specify Jacobians, the controller computes the Jacobians using numerical perturbation.
To specify a Jacobian for your equality or inequality constraint functions, set the
respective Jacobian.CustomEqConFcn
or
Jacobian.CustomIneqConFcn
property of the controller to one of the
following.
Name of a function in the current working folder or on the MATLAB path, specified as a string or character vector
Jacobian.CustomEqConFcn = "myEqConJacobian"; Jacobian.CustomIneqConFcn = "myIneqConJacobian";
Handle to a function in the current working folder or on the MATLAB path
Jacobian.CustomEqConFcn = @myEqConJacobian; Jacobian.CustomIneqConFcn = @myIneqConJacobian;
Anonymous function
Jacobian.CustomEqConFcn = @(X,U,data,params) myEqConJacobian(X,U,data,params); Jacobian.CustomInqConFcn = @(X,U,e,data,params) myIneqConJacobian(X,U,e,data,params);
Your constraint Jacobian functions must have one of the following signatures.
If your controller does not use optional parameters:
function [Geq,Gmv] = myEqConJacobian(X,U,data) function [Geq,Gmv,Ge] = myIneqConJacobian(X,U,e,data)
If your controller uses parameters. Here, params
is a
comma-separated list of parameters:
function [Geq,Gmv] = myEqConJacobian(X,U,data,params) function [Geq,Gmv,Ge] = myIneqConJacobian(X,U,e,data,params)
The input arguments of the constraint Jacobian functions are the same as the inputs of their respective custom constraint functions. This table describes the outputs of the Jacobian functions, where:
Nx is the number of states and is equal to
the Dimensions.NumberOfStates
property of the controller.
Nmv is the number of manipulated variables.
Nc is the number of constraints (either equality or inequality constraints, depending on the constraint function).
p is the prediction horizon.
Argument | Description |
---|---|
G | Jacobian of the equality or inequality constraints with respect to the state
trajectories, returned as a
p-by-Nx-by-Nc
array, where . Compute G based on X from
the second row to row p+1, ignoring the first row. |
Gmv | Jacobian of the equality or inequality constraints with respect to the
manipulated variable trajectories, returned as a
p-by-Nmv-by-Nc
array, where and MV(j) is the
jth MV index in
Since the controller forces
|
Ge | Jacobian of the inequality constraints with respect to the slack variable,
e , returned as a row vector of length
Nc, where |
To use output variable Jacobians in your constraint Jacobian functions, you must first
derive them from the state and input arguments using the Jacobian of the prediction model
output function, as specified in the Jacobian.OutputFcn
property of the
controller. For example, to compute the output variable Jacobians Yjacob
from time k to time k+p,
use:
p = data.PredictionHorizon; for i=1:p+1 Y(i,:) = myOutputFunction(X(i,:)',U(i,:)',params)'; end for i=1:p+1 Yjacob(i,:) = myOutputJacobian(X(i,:)',U(i,:)',params)'; end
Since prediction model output functions do not support direct feedthrough from inputs to
outputs, the output function Jacobian contains partial derivatives with respect to only the
states in X
. For more information on the output function Jacobian, see
Specify Prediction Model for Nonlinear MPC.
To find the Jacobians, compute the partial derivatives of the constraint functions with respect to the state trajectories, manipulated variable trajectories, and slack variable. For example, suppose that your constraint function is as follows, where u1 is the first manipulated variable.
To compute the Jacobian with respect to the state trajectories, use:
Nx = data.NumOfStates; Nc = 2*p; G = zeros(p,Nx,Nc); G(1:p,2,1:p) = diag(2*X1 - 3);
To compute the Jacobian with respect to the manipulated variable trajectories, use:
Nmv = length(data.MVIndex); Gmv = zeros(p,Nmv,Nc); Gmv(1:p,1,p+1:2*p) = diag(2*u(1:p,data.MVIndex(1)));
In this case, the derivative with respect to the slack variable is Ge =
zeros(20,1)
.