From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 773/CH6/EX6.07/6_07.sci | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 773/CH6/EX6.07/6_07.sci (limited to '773/CH6/EX6.07') diff --git a/773/CH6/EX6.07/6_07.sci b/773/CH6/EX6.07/6_07.sci new file mode 100755 index 000000000..f6baf9a4f --- /dev/null +++ b/773/CH6/EX6.07/6_07.sci @@ -0,0 +1,22 @@ +//syslin// +exec series.sce; +syms G1 G2 G3 H1 H2 R X; +//putting x=0,then solving the block +a=G3/.H1; +b=series(G1,G2); +c=series(a,b); +x1=c/.H2; +C1=R*x1; +disp(x1,"C1(s)/R(s)=") +//putting r=0 ,then solving the block +d=series(G1,G2); +e=series(d,H2); +f=G3/.H1; +x2=f/.e; +C2=X*x2; +disp(x2,"C2(s)/X(s)=") +//resultant output C=C1+C2 +C=C1+C2; +C=simple(C); +disp(C,"Resultant Output=") + -- cgit