Anda di halaman 1dari 1

Open-loop step response: Let's first view the open-loop step response.

num=1;
den=[1 10 20];
plant=tf(num,den);
step(plant

Let the proportional gain (KP) equal 300:


Kp=300;
contr=Kp;
sys_cl=feedback(contr*plant,1);
t=0:0.01:2;
step(sys_cl,t)
Let KP equal 300 as before and let KD equal 10.
Kp=300;
Kd=10;
contr=tf([Kd Kp],1);
sys_cl=feedback(contr*plant,1);
t=0:0.01:2;
step(sys_cl,t)

Let's reduce the KP to 30, and let KI equal 70.


Kp=30;
Ki=70;
contr=tf([Kp Ki],[1 0]);
sys_cl=feedback(contr*plant,1);
t=0:0.01:2;
step(sys_cl,t)

After several trial and error runs, the gains Kp=350, Ki=300, and Kd=50
provided the desired response
Kp=350;
Ki=300;
Kd=50;
contr=tf([Kd Kp Ki],[1 0]);
sys_cl=feedback(contr*plant,1);
t=0:0.01:2;
step(sys_cl,t)

Anda mungkin juga menyukai