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

2 visualizaciones (últimos 30 días)
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..

Respuesta aceptada

Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis el 16 de Feb. de 2023
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 comentarios
Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis el 17 de Feb. de 2023
For a constraint like this, you could use linear MPC and set up the constraints as shown here.

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by