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 --- 104/CH3/EX3.10/3_10.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 104/CH3/EX3.10/3_10.sce (limited to '104/CH3/EX3.10/3_10.sce') diff --git a/104/CH3/EX3.10/3_10.sce b/104/CH3/EX3.10/3_10.sce new file mode 100755 index 000000000..20d533b75 --- /dev/null +++ b/104/CH3/EX3.10/3_10.sce @@ -0,0 +1,29 @@ +//applying gain formula to state diagram 3-22 +//r(t),x1(t) and x2(t) are input nodes +//y(t) is output node +//superposition principle holds good + +syms s r x1 x2 +//r(t) as input node and y(t) as output node +M1=0 +delta1=1 +delta=1 +a=(M1*delta1)/delta +y1=a*r +disp(y1,"y1(t)=") + +//x1(t) as input node and y(t) as output node +M1=1 +delta1=1 +b=(M1*delta1)/delta +y2=b*x1 +disp(y2,"y2(t)=") + +//x2(t) as input node and y(t) as output node +M1=0 +delta1=1 +c=(M1*delta1)/delta +y3=c*x2 +disp(y3,"y3(t)=") + +disp(y1+y2+y3,"y(t)=") -- cgit