Can we equate or un-equate the two MV's of the MPC controller in command line?

2 ビュー (過去 30 日間)
Hi
I have the system with 2inputs, 1output, in that I need to give the constraints for 2MV's and the constraint range(min&max) of those 2MV's is same. but I need to give the condition that, MV1 should not be equal to the MV2. can I give this condition in MPC command line coding? please suggest me.
Thank you in advance..

採用された回答

Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis 2023 年 2 月 16 日
Hello,
A couple of points first:
1) I am assuming your MVs are continuous (if they are discrete, what you are asking is not supported because you would need a mixed-integer NLP solver and Model Predictive Control Toolbox does not have one out of the box yet).
2) A constraint of the form MV1 ~= MV2 does not make much sense for floating point calculations. So basically you can just design your linear MPC without this constraint and it is very unlikely that MV1 == MV2 considering again numerics etc. So I am assuming that you want the 2 MVs to be significantly different, for example |MV1-MV2|>= 0.1.
This kind of constraint you cannot implement with linear MPC, so you have to use nonlinear MPC (see how to create custom constraints here) With that in mind, you can do something like sqrt((MV1-MV2)^2) >=0.1 or equivalent.
Hope that helps
  3 件のコメント
Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis 2023 年 2 月 17 日
For a constraint like this, you could use linear MPC and set up the constraints as shown here.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRefinement についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by