Direct feedthrough MPC Design

3 visualizaciones (últimos 30 días)
David Arenes
David Arenes el 30 de Jul. de 2020
Respondida: Kothuri el 17 de En. de 2025
I am working in the design of a controller using the MPC Toolbox. When trying to run the MATLAB code, using the validateFcns() function I get the following warning:
Is there any way to solve this problem and use a direct feedrough from the manipulated vairbales to the output?
Tank you!

Respuestas (1)

Kothuri
Kothuri el 17 de En. de 2025
Hi David Arenes,
The warning you are seeing indicates "direct feedthrough" from the manipulated variables (MVs) to the outputs (OVs) in your nonlinear MPC (NMPC) setup. MATLAB's MPC toolbox uses this warning to highlight a potential issue that in direct feedthrough, the output at the current timestep y(k) depends on the manipulated variable mv(k).
To rectify this warning you can:
  • Add a delay in your system model to eliminate the direct dependency of y(k) on mv(k).
  • If you want to simulate some dynamics, you can modify the output function to calculate y(k) based on the previous state or delayed manipulated variable.
You can refer the below MATLAB Answer for more info:

Categorías

Más información sobre Controller Creation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by