diff options
Diffstat (limited to '3889/CH5/EX5.10')
-rw-r--r-- | 3889/CH5/EX5.10/Ex5_10.sce | 21 | ||||
-rw-r--r-- | 3889/CH5/EX5.10/Ex5_10output.PNG | bin | 0 -> 16988 bytes |
2 files changed, 21 insertions, 0 deletions
diff --git a/3889/CH5/EX5.10/Ex5_10.sce b/3889/CH5/EX5.10/Ex5_10.sce new file mode 100644 index 000000000..c5aecdcfe --- /dev/null +++ b/3889/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,21 @@ +//Example 5.10
+//page 327
+//Control Systems: Principles and Design
+//M Gopal, Second Edition, Tata McGraw-Hill
+//Chapter:Concepts of Stability: Routh Stability Array
+
+xdel(winsid())//close all graphics Windows
+clear;
+clc;
+//transfer function
+s=poly(2,'s');
+//substitution of s-2 for s
+
+P=(1+(5/s))*((s+3)/(s^2+2*s+2));
+k=poly(0,'k')
+//routh array
+r=routh_t(P,k)
+disp(r,"Routh Array")
+kval=kpure(P)
+mprintf('%g <K , is range of gain for closed loop poles to satisfy Re(s)<-2',kval(1))
+
diff --git a/3889/CH5/EX5.10/Ex5_10output.PNG b/3889/CH5/EX5.10/Ex5_10output.PNG Binary files differnew file mode 100644 index 000000000..4338c03b8 --- /dev/null +++ b/3889/CH5/EX5.10/Ex5_10output.PNG |