summaryrefslogtreecommitdiff
path: root/29/CH11/EX11.25/exa11_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '29/CH11/EX11.25/exa11_25.sce')
-rwxr-xr-x29/CH11/EX11.25/exa11_25.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/29/CH11/EX11.25/exa11_25.sce b/29/CH11/EX11.25/exa11_25.sce
new file mode 100755
index 000000000..796050712
--- /dev/null
+++ b/29/CH11/EX11.25/exa11_25.sce
@@ -0,0 +1,14 @@
+//caption:stability_using_Nyquist_criterion
+//example 11_25
+//page 497
+clf();
+s=%s;
+s1=-s;
+g=(2.2/(s*(s+1)*(s^2+2*s+2)))
+g1=(2.2/(s1*(s1+1)*(s1^2+2*s1+2)))
+GH=syslin('c',g);
+GH1=syslin('c',g1);
+nyquist(GH);
+nyquist(GH1);
+mtlb_axis([-2.5 0.2 -75 75]);
+disp("as the nyquist plot passes through the point -1+%i*0, so system is marginally stable and output represents sustained oscillations.") \ No newline at end of file