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

42 ビュー (過去 30 日間)
özkan toprak
özkan toprak 2018 年 5 月 13 日
再開済み: özkan toprak 2018 年 5 月 14 日
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 Center および File ExchangeClassical Control Design についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by