Model Predictive Control(3)--Prediction

Model predictive control is like playing chess, at ,each time step, you choose the best strategy to win. In this process, you make prediction based on current situation. This article discuss about the prediction in MPC

Prediction with SS model

Basic concepts of prediction

Discrete models are one-step ahead prediction model, that is, given data at time $k$, we can determine data at $k+1$:

Nomally we can assume that $dk=d{k+1}$.

It should be noticed that one step prediction can be used recursively to find an n-step ahead prediction as follows

general step is

Notation: double subscript, the first determines the time of the prediction and second determines the sample at which the prediction was made. For example, $x_{k+4|k}$ means prediction at sample $k+4$ where prediction was made at sample $k$. Now we can rewrite our general step as

Splitting predictions

We can saperate the predictions into known and unknown part

  • known: $C A^{n} x{k}+d{k}$, based on current and past measurement
  • unknown: $C\left(A^{n-1} B u{k |k}+A^{n-2} B u{k+1 |k}+\cdots+B u_{k+n-1| k}\right)$, based on future input choices.

    Our aim is to choose the unknown inputs to make sure that the overall prediction is satisfactory!!

Matrix form of ss prediction

Now we rewrite the prediction in a more compact way, let $\mathbf{x}_{k+1}$ be

where $k+1$ indicate the first value in the vector, the matrix form of ss prediction is

make seperation, we get

the vector $\mathbf{u}_k$ is the decision variables, replace the matrix with some notation, we get

Similarly, we get the output predictions

Prediction with TF model (Mainly focus on SISO systems)

Carima model

The most common tf model in MPC is carima model which includes the uncertainty with a form of

$\frac{G_{k}}{\Delta}$ is a zero mean random variable, although $T(z)$ could arise from a model identification, in practice it is treated as a design paramter.

Basic concepts of prediction

We consider the discrete model

thus

Significance of Carima model

It incorporates a disturbance estimate and therefore can give unbiased predictions in steady-state, irrespective of some parameter uncertainty.

In practice, the incremental form is used for predictions:

Reference

0%