diff options
Diffstat (limited to '1499/CH6/EX6.3/s3.sce')
-rw-r--r-- | 1499/CH6/EX6.3/s3.sce | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/1499/CH6/EX6.3/s3.sce b/1499/CH6/EX6.3/s3.sce new file mode 100644 index 000000000..4e6193d46 --- /dev/null +++ b/1499/CH6/EX6.3/s3.sce @@ -0,0 +1,49 @@ +s=%s;
+s=poly(0,'s');
+t=[0:0.05:10];
+syms Kv;
+g=(Kv/(s*(0.5*s+1)));
+// given Kv=10
+Kv=10;
+g=(10/(s*(s+1)*(s+2)));
+G=syslin('c',g)
+fmin=0.01;
+fmax=100;
+subplot(2,2,1)
+bode(G)
+
+subplot(2,2,2),
+plot2d(t,csim('step',t,G))
+//bode(G,fmin,fmax)
+//show_margins(G)
+
+xtitle("uncompensated system")
+[gm,freqGM]=g_margin(G)
+[pm,freqPM]=p_margin(G)
+disp(gm,"gain_margin=")
+disp((freqGM*2*%pi),"gain margin freq=");
+disp(pm,"phase margin=")
+disp((freqPM*2*%pi),"phase margin freq=");
+
+gc=(1+1.43*s)*(6.67*s+1)/((1+66.67*s)*(0.143*s+1))
+Gc=syslin('c',gc)
+disp(Gc,"transfer function of lead compensator=");
+G1=G*Gc
+disp(G1,"overall transfer function=");
+fmin=0.01;
+fmax=100;
+
+subplot(2,2,3)
+bode(G1)
+
+subplot(2,2,4),
+plot2d(t,csim('step',t,G1))
+
+
+//bode(G1,fmin,fmax);
+//show_margins(G1)
+xtitle("compensated system")
+[gm,freqGM]=g_margin(G1);
+[pm,freqPM]=p_margin(G1);
+disp(pm,"phase margin of compensated system=")
+disp((freqPM*2*%pi),"gain cross over frequency=")
|