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 --- 1850/CH6/EX6.9/exa_6_9.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 1850/CH6/EX6.9/exa_6_9.sce (limited to '1850/CH6/EX6.9') diff --git a/1850/CH6/EX6.9/exa_6_9.sce b/1850/CH6/EX6.9/exa_6_9.sce new file mode 100755 index 000000000..67d2158a2 --- /dev/null +++ b/1850/CH6/EX6.9/exa_6_9.sce @@ -0,0 +1,23 @@ +// Exa 6.9 +clc; +clear; +close; +// Given Data +fL= 200;// in Hz +fH= 1;// in kHz +fH=fH*10^3;// in Hz +//Let the capacitor C_desh be of 0.01 micro F +C_desh= 0.01*10^-6;// in F +R_desh= 1/(2*%pi*fH*C_desh);// in ohm +R_desh=R_desh*10^-3;// in kohm +R_desh= 18;// in kohm +// Let +C=0.05*10^-6;// in F +R= 1/(2*%pi*fL*C);// in ohm +R=R*10^-3;// in kohm +R= 18;// in k ohm +Rf= 10;// in kohm +disp(Rf,"Value of Rf, Rf_desh, R1 and R1_desh in kohm"); +disp(R,"Value of R and R_desh in kohm"); +disp(C_desh*10^6,"Value of C_desh in micro F") +disp(C*10^6,"Value of C in micro F") -- cgit