What is the correct method to implement a PID controller with a Process Model? #845
-
I would like to simulate a system response from FOPDT model with a PID controller.
Any suggestions are appreciated.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To implement saturation nonlinearities and anti-windup compensation, you'll have to create an input/output (I/O) system description. An example of a PID controller with anti-windup protection can be found in one of the examples in the documentation: PI controller with antiwindup protection. Note that the saturation nonlinearity is in the process dynamics (look for the |
Beta Was this translation helpful? Give feedback.
To implement saturation nonlinearities and anti-windup compensation, you'll have to create an input/output (I/O) system description. An example of a PID controller with anti-windup protection can be found in one of the examples in the documentation: PI controller with antiwindup protection. Note that the saturation nonlinearity is in the process dynamics (look for the
clip
call here, but you could also clip the output of the PID controller.