summaryrefslogtreecommitdiff
path: root/1499/CH5/EX5.1.1/q1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1499/CH5/EX5.1.1/q1.sce')
-rw-r--r--1499/CH5/EX5.1.1/q1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1499/CH5/EX5.1.1/q1.sce b/1499/CH5/EX5.1.1/q1.sce
new file mode 100644
index 000000000..5d1216950
--- /dev/null
+++ b/1499/CH5/EX5.1.1/q1.sce
@@ -0,0 +1,16 @@
+s=%s;
+
+g=(1/(s^2+2*s+4));
+
+G=syslin('c',g)
+fmin=0.01;
+fmax=100;
+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=");