Question

1. [25%] Consider the closed-loop system shown where it is desired to stabilize the system with feedback where the control la1. [25%] Consider the closed-loop system shown where it is desired to stabilize the system with feedback where the control la

0 0
Add a comment Improve this question Transcribed image text
Answer #1

As per the question, we need to design a PID controller in order to stabilize a system as shown in the figure below Plant, Gl

And Kd+Kp.Kd =-2 ----(4) Now, if we utilize the third information, i.e, ess=1, then we will get S•R(3) ess =lims+01+G(5) H()

s=tf('s');
%% plant model
G = 2/(s^2+5*s+4);

%% PID parameter
Kp = 2.57;
Ki = 1;
Kd = -0.56;
C = pid(Kp,Ki,Kd);

%% Close loop system
G_CL = feedback(G*C,1);
%% compute root-locus
rlocus(G_CL)
%% compute step response
t=0:0.1:10;
step(G_CL,t)
%% compute ramp response
ramp=0.2*t;         % ramp input signal
[y,t]=lsim(G_CL,ramp,t); % compute ramp response
plot(t,y)

The root-locus plot of the above system is shown below.

Root Locus Imaginary Axis (seconds) 20 25 10 15 Real Axis (seconds)

The response for the step input and ramp input are shown below

Step Response Amplitude 10 Time (seconds)

Ramp Response NE 8 10 Time (sec.)

Add a comment
Know the answer?
Add Answer to:
1. [25%] Consider the closed-loop system shown where it is desired to stabilize the system with...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT