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 --- 2609/CH9/EX9.2/Ex9_2.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 2609/CH9/EX9.2/Ex9_2.sce (limited to '2609/CH9/EX9.2') diff --git a/2609/CH9/EX9.2/Ex9_2.sce b/2609/CH9/EX9.2/Ex9_2.sce new file mode 100755 index 000000000..6594521ed --- /dev/null +++ b/2609/CH9/EX9.2/Ex9_2.sce @@ -0,0 +1,20 @@ +//Ex 9.2 +clc; +clear; +close; +format('v',5); +fH=1;//kHz +Ap=2;//Pass band gain +disp("Various design parameters are :-"); +C=0.05;//micro F//Chosen for the design +disp(C,"Capacitance(micro F)"); +format('v',4); +R=1/(2*%pi*fH*1000*C*10^-6)/1000;//kohm +disp(R,"Resistance R(kohm)"); +//Ap=1+Rf/Ri +RfBYRi=Ap-1;//Rf=Ri here +//R=Rf||Ri +Ri=2*R;//kohm +Rf=Ri;//kohm +disp(Ri,"Resistance Ri(kohm)"); +disp(Rf,"Resistance Rf(kohm)"); -- cgit