How can I solve the problem of designing state observer when using model predictive control toolbox

8 次查看(过去 30 天)
When using the model predictive control toolbox, the matlab always says that,'Problems encountered when designing the overall state observer (Kalman filter)'. Is there anybody who can solve this problem? Thank you very much!!!!

回答(2 个)

André Paradis
André Paradis 2014-7-6
For Model Predictive control purposes, your system must be observable in its state-space representation.
This being said, an observable system can become unobservable do to numerical errors. Thus, you could modify the state estimator gain using :
setestim(MPCobj,M);
Also, if your system is not defined in a state-space representation (e.g. TF), MATLAB will convert it to one. In this case, try using
MPCobj.Model.Plant=ss(model,'min');
Where your system will converted in its state-space representation with the minimal number of states.
Hope this helps
  1 个评论
fariba
fariba 2015-4-27
dear andre i have this problem with my mpc. what do you mean ,modify modify the state estimator gain? my gain in mpc is like below M =
1.0e+03 *
0.0013 -0.0134
0.0000 0.0001
0.1136 -1.1636
0.0000 0.0000
-0.0000 -0.0000
0.0000 0.0000
0.0000 -0.0000
-0.0003 0.0134
what should i do?

请先登录,再进行评论。


fariba
fariba 2015-4-26
dear andre i have this problem with my mpc. what do you mean ,modify modify the state estimator gain? my gain in mpc is like below M =
1.0e+03 *
0.0013 -0.0134
0.0000 0.0001
0.1136 -1.1636
0.0000 0.0000
-0.0000 -0.0000
0.0000 0.0000
0.0000 -0.0000
-0.0003 0.0134
what should i do?

类别

Help CenterFile Exchange 中查找有关 Controller Creation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by