Obtain the root locus plot of G(S)H(S) = k(S+3)(S+4)/(S+5)(S+6); Determine the poles for gain k = 1, 3,5, 7,10 Determine the range of k for stability. Determine the value of k where the overshoot is 5%. And plot the step response. Include screen shots of code and output in your report
Obtain the root locus plot of G(S)H(S) = k(S+3)(S+4)/(S+5)(S+6); Determine the poles for gain k = 1, 3,5, 7,10 Determine the range of k for stability. Determine the value of k where the overshoot is 5%. And plot the step response. Include screen shots of code and output in your report
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
May I please get help with this matlab exercise. Took snippets of example in the images. Thank you.
1: Obtain the root locus plot of
G(S)H(S) = k(S+3)(S+4)/(S+5)(S+6);
Determine the poles for gain k = 1, 3,5, 7,10
Determine the range of k for stability.
Determine the value of k where the overshoot is 5%. And plot the step response. Include screen shots of code and output in your report
Expert Solution
Step 1
MATLAB CODE:
clear all
s = tf('s');
GH = ((s+3)*(s+4))/((s+5)*(s+6))
rlocus(GH)
fprintf('Poles of the open loop transfer function:\n')
s =pole(GH)
k = [1 3 5 7 10];
for i=1:length(k)
CLTF = (1+k(i)*GH);
fprintf('Poles of closed loop transfer function for k = %d are:\n',k(i));
s = zero(CLTF)
end
COMMAND WINDOW OUTPUT:
GH =
s^2 + 7 s + 12
---------------
s^2 + 11 s + 30
Continuous-time transfer function.
Poles of the open loop transfer function:
s =
-6.0000
-5.0000
Poles of closed loop transfer function for k = 1 are:
s =
-4.5000 + 0.8660i
-4.5000 - 0.8660i
Poles of closed loop transfer function for k = 3 are:
s =
-4.0000 + 0.7071i
-4.0000 - 0.7071i
Poles of closed loop transfer function for k = 5 are:
s =
-3.8333 + 0.5528i
-3.8333 - 0.5528i
Poles of closed loop transfer function for k = 7 are:
s =
-3.7500 + 0.4330i
-3.7500 - 0.4330i
Poles of closed loop transfer function for k = 10 are:
s =
-3.6818 + 0.2839i
-3.6818 - 0.2839i
>>
Step by step
Solved in 2 steps with 4 images
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY