finding all possible Kp and Kd that makes the system stable?

35 次查看(过去 30 天)
G(s)=([1 2 10],[1 5 8 3 12]) for this transver function I need to find all possible Kp,Ki and Kd that makes the system stable? How can I do that? Thanks

采纳的回答

Birdman
Birdman 2018-5-13
Define this transfer function in MATLAB command line:
Gs=tf([1 2 10],[1 5 8 3 12]);
and then write
pidTuner(Gs)
to enter PID Tuner app in MATLAB. Then, choose PID as the controller and adjust the controller parameters in order to obtain a stable closed loop response by dragging the ball in the bars above which makes your system robust or aggressive.
Or, you can use another app by typing
sisotool(Gs)
and then you can design your controller by adding integrators, zeros, poles to the root locus. Choose whatever you want.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Classical Control Design 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by