07 December 2020 3 9K Report

I'm trying to linearize a non-linear model and write it in state-space form (derive state-space matrices) for control and optimization purposes. The nonlinear model is: x(k+1)=f(x(k),u(k),d(k)), and it contains the minimum of three terms:

f(x(k),u(k),d(k))=x(k)+min(a.u(k),b.x(k),c.d(k))+...

a,b and c are constants and the three terms inside the min() function are all linear. How do I go about linearizing this model? Note that I want to use the linearized model as a prediction model for MPC.

Thank you in advance.

Similar questions and discussions