I am supposed to find the stability of my closed loop system using Nyquist stability in Matlab
Show older comments
Hi all , I am looking to find the stability for a closed loop system with delay . I have written a small program in Matlab:
kp =0.25;
kd = 2;
ki = -40;
t = (1+s)/(((s^2)+s-(exp(-2*s))));
p = ((kd*s^2)+(kp*s)+ki)/s;
r = (p*t)/(1+(p*t));
nyquist(r);
But I donot know how to determine the stability from the plot that appears when i execute this program. I know that the nyquist stability criterion but for a delay case as above im confused. A help from someone would be greatful. Thanx in Advance
2 Comments
Azzi Abdelmalek
on 6 Sep 2013
Have you tried your code on Matlab?
Raghavendran Srinivasan
on 6 Sep 2013
Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!