summaryrefslogtreecommitdiff
path: root/29/CH3/EX3.2.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /29/CH3/EX3.2.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '29/CH3/EX3.2.3')
-rwxr-xr-x29/CH3/EX3.2.3/exa3_2_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/29/CH3/EX3.2.3/exa3_2_3.sce b/29/CH3/EX3.2.3/exa3_2_3.sce
new file mode 100755
index 000000000..2f5e487bb
--- /dev/null
+++ b/29/CH3/EX3.2.3/exa3_2_3.sce
@@ -0,0 +1,18 @@
+//Caption:transfer_function
+// example 3.2.3
+//page 35
+// we have defined parallel and series function which we are going to use here
+//exec parallel.sce;
+//exec series.sce;
+syms G1 G2 G3 G4 G5 G6 H1 H2;
+//shift the takeof point placed before G2 towards right side of block G2
+a= G5/G2;
+b=parallel(G3,G4);
+c=series(b,G6);
+d=parallel(a,c);
+e=series(G1,G2);
+l=series(H1,d);
+g=e/.H2
+y=g/(1+g*l)
+y=simple (y);
+disp(y,"C(s)/R(s)=") \ No newline at end of file