How to tune PID controller from time constant and static gain?
9 views (last 30 days)
Show older comments
Hi!
I would like to find the parameters of a PID controller (Kp, Ki, Kd) from the time constant and static gain of a transfer function.
Is there any method/equation for quick calculation of these parameters?
This is the transfer function:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1176013/image.png)
Could it be like this?
Ki = 72.4 / 639.2
Kd = 72.4 * 639.2
Kp = 72.4
thanks so much
0 Comments
Answers (1)
Sam Chak
on 1 Nov 2022
@Bruno Araujo, Not sure if you are looking for some manipulations like this:
Kp = 72.402;
Tp = 639.24;
Gc = pid(Kp)
Gf = tf([1], [Tp 1])
Gcf = series(Gc, Gf)
See Also
Categories
Find more on PID Controller Tuning in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!