0% found this document useful (0 votes)
8 views5 pages

Lab 8

The document outlines a Control Engineering lab exercise focused on analyzing system responses to step, ramp, and parabolic inputs using MATLAB code. It introduces the concept of root locus as a graphical method for assessing the stability and transient response of closed-loop systems. Additionally, it highlights the differences between open-loop and closed-loop pole behavior in control systems.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views5 pages

Lab 8

The document outlines a Control Engineering lab exercise focused on analyzing system responses to step, ramp, and parabolic inputs using MATLAB code. It introduces the concept of root locus as a graphical method for assessing the stability and transient response of closed-loop systems. Additionally, it highlights the differences between open-loop and closed-loop pole behavior in control systems.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Control Engineering

(LAB)
Course Code: ME-317L

Lab # 8
Class: Fall-2019
Practice Question
Solve it for , Step ramp and parabolic input
clc G=minreal(G);
clear Kv=dcgain(G)
errorR=1/Kv
num=poly([-3 -5]);
den=poly([-8 -7 0]); 'Parabolic'
numP=conv([1 0 0],poly([-3 -5]));
G=tf(num,den); G=tf(numP,den);
T=feedback(G,1);
G=minreal(G);
P=pole(T) Ka=dcgain(G)
errorR=1/Kv
'Step'
Kp=dcgain(G)
error=1/(1+Kp)

'Ramp'
numg=conv([1 0],poly([-3 -
5]));
G=tf(numg,den);
Introduction to Root Locus
 Root locus is a graphical presentation of poles of a closed loop system which gives an
analysis of stability and transient response as a system parameter is varied.
 Feedback control systems are difficult to comprehend , as they heavily rely on
mathematics.
 The root locus gives us the qualitative description of a system’s performance that we
are looking for.
 Root locus is also able to provide solution of systems of order higher than 2.
The Control System Problem
 The poles of the open loop transfer function are easily found and do not
change with changes in system gain. On the other hand, the poles of the
closed loop transfer function are more difficult to find and they changes
with the change in system gain.
Example Problem

 Code:

Num=1;
Den=poly([0 -1 -2]);
G=tf(Num,Den);
T=feedback(G,1);
rlocus(T)

You might also like