diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /269/CH10/EX10.13 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '269/CH10/EX10.13')
-rw-r--r-- | 269/CH10/EX10.13/ex1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/269/CH10/EX10.13/ex1.sce b/269/CH10/EX10.13/ex1.sce new file mode 100644 index 000000000..bfaee392e --- /dev/null +++ b/269/CH10/EX10.13/ex1.sce @@ -0,0 +1,19 @@ +Syms t
+s=%s
+H=5
+disp('given')
+disp('H=5')
+disp('poles are -1 and -3')
+disp('The transfer function is ')
+disp('5s/(s+1)(s+3)')
+sysl=syslin('c',5*s/(s+1)*(s+3))
+evans(sysl,100)
+[h]=trfmod(sysl,0)
+//referring the root locus graph
+x=1*imag(exp(-180))
+y=2*imag(exp(-0))
+k1=H*(x/y)
+k2=H*(y/x)
+disp('The current therefore is')
+i=k1*exp(-t)+k2*exp(-3*t)
+disp(i)
|