how to Design PID controller for second order untable process
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Harshit Gole
le 10 Fév 2012
Modifié(e) : Azzi Abdelmalek
le 16 Oct 2013
How a PID controller can be designed for a second order SISO process, of the form -a/S^2-b, where a,b>0 .
0 commentaires
Réponse acceptée
Arkadiy Turevskiy
le 13 Fév 2012
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 commentaires
Walter Roberson
le 19 Fév 2012
pidtune is new as of R2010b
http://www.mathworks.com/help/toolbox/control/rn/bsllzup-1.html
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur PID Controller Tuning dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!