필터 지우기
필터 지우기

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