How do I use a root locus to find a value of K such that the damping ratio of dominant closed loop poles is a specified value?
조회 수: 451 (최근 30일)
이전 댓글 표시
채택된 답변
Paul
2023년 3월 9일
Click on branch of the root locus and drag along the branch. The values in the datatip, which include the damping ratio, will correspond to the datamarker point on the locus.
댓글 수: 2
Paul
2023년 5월 1일
편집: Paul
2023년 5월 1일
Here's my attempt. Can't say I've thorougly tested it, but maybe it's a start. I know for sure it will break down if the desired damping ratio is 1.
Transfer function for testing and its root locus
h = tf([2 5 1],[1 2 3]);
s = tf('s');
h = h/(s+4)/(s+5);
figure
rlocus(h);
hold on
Desired damping ratios
zetad = [0.2, 0.6, 0.99];
Loop through the zetad, compute the gains and corresponding root locations, which are added to plot as filled, black dots
for ii = 1:numel(zetad)
[r,k{ii}] = zetagain(h,zetad(ii));
plot(real(r),imag(r),'k.','MarkerSize',15);
end
sgrid(zetad,1:5:25)
k
Cases with no solution
[r,k] = zetagain(tf(1,[1 1]),0.2)
[r,k] = zetagain(tf(1,[1 2*.5*1 1]),0.7)
Other corner cases would be where one or more branches of the root locus either lie exactly on a line of constant zetad or if the line of constant zetad is a root locus asymptote.
function [r,k] = zetagain(h,zetad)
% compute the rotation angle
theta = asin(zetad);
m = numel(h.num{:})-1;
n = numel(h.den{:})-1;
h1 = tf(h.num{:}.*exp(-1j*theta).^(m:-1:0),h.den{:}.*exp(-1j*theta).^(n:-1:0));
% gain margin in rotated complex plane
s = allmargin(h1);
k = s.GainMargin;
% roots at values of k
r = rlocus(h,k);
r = r(:);
% eliminate extraneous roots that aren't at the the desired zeta. use 0.02 as a tolerance,
% maybe this should be an input parameter. maybe this test could could be made more robust.
zeta = sin(atan2(-real(r),abs(imag(r))));
r(abs(zeta-zetad)>0.02) = [];
end
추가 답변 (1개)
Sam Chak
2023년 4월 26일
편집: Sam Chak
2023년 4월 26일
The steps are generally described in the following documentation, as well as in most undergrad control textbooks.
Demo:
% Plant
Gp = tf(32.5, [1 5 40])
% rlocus(Gp), sgrid
From the Root Locus of uncompensated system Gp with the s-plane grid of constant damping factors, it is clear that no matter how we move the 'square' data marker (■) to track the gain and damping values, it cannot achieve the desired 0.7071 damping ratio. Thus, a feedback controller is needed. In this example, a PID controller is designed and its gains are tuned.
% PID Controller
kp = -0.5066;
ki = 0.8703;
kd = 0.38;
Tf = 0.7071;
Gc = pid(kp, ki, kd, Tf)
rlocus(Gc*Gp), sgrid
From the Root Locus of the compensated system Gc*Gp, we clearly have more rooms to move the data marker (■). Now, if we zoom into the locus and move the data marker (■) until the desired 0.707 damping ratio is observed, then the corresponding gain is found to be .
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Classical Control Design에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!