フィルターのクリア

how to Design PID controller for second order untable process

3 ビュー (過去 30 日間)
Harshit Gole
Harshit Gole 2012 年 2 月 10 日
編集済み: Azzi Abdelmalek 2013 年 10 月 16 日
How a PID controller can be designed for a second order SISO process, of the form -a/S^2-b, where a,b>0 .

採用された回答

Arkadiy Turevskiy
Arkadiy Turevskiy 2012 年 2 月 13 日
Not sure if that is what you are looking for, but here is how you could do it in Control System Toolbox:
>>a=1; % change to desired value
>>b=4; % change to desired value
>>s=tf('s');
>>plant=-a/(s^2-b);
>>C=pidtune(plant,'PID'); design pid controller
>>step(feedback(C*plant,1)); plot the step response of the closed-loop system
>>pidtool(plant); % open the GUI for interactive tuning
HTH. Arkadiy
  2 件のコメント
Harshit Gole
Harshit Gole 2012 年 2 月 19 日
sir ,
after entering the command
"C=pidtune(plant,'PID');"
it is showing an error
"??? Undefined function or method 'pidtune' for input arguments of type 'tf'."
please guide me.
Walter Roberson
Walter Roberson 2012 年 2 月 19 日
pidtune is new as of R2010b
http://www.mathworks.com/help/toolbox/control/rn/bsllzup-1.html

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePID Controller Tuning についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by