Cs Lab 10.1
Cs Lab 10.1
Muneeb Javed
Name Sardar Abdul Rafeh
Sobhan Ali Gohar
FA22-BEE-188
Registration Number FA22-BEE-202
FA22-BEE-212
Class BEE-5B
Lab Assessment
z = 0.2:0.05:0.5;
wn = 0:1:10;
sgrid(z, wn);
title('Root Locus');
pause;
rlocus(GH);
axis([-3 1 -4 4]);
title('Close-up');
z = 0.45;
wn = 0;
sgrid(z, wn);
for k = 1:3
[K, p] = rlocfind(GH);
end
pause;
DISCUSSION: The root locus analysis of the system in Figure 8.19(a) revealed key insights,
including the precise intersection points with the 0.45 damping ratio line and jv-axis, crucial for
stability assessment. Additionally, identification of the breakaway point on the real axis
contributes to understanding system behavior. The determined range of K provides a clear
framework for ensuring system stability.
CODE:
% Transfer function parameters
k = 1;
numerator = k;
denominator = conv([1 0], conv([1 3], conv([1 4], [1 8])));