diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2582/CH3/EX3.12 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2582/CH3/EX3.12')
-rwxr-xr-x | 2582/CH3/EX3.12/Ex3_12.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2582/CH3/EX3.12/Ex3_12.sce b/2582/CH3/EX3.12/Ex3_12.sce new file mode 100755 index 000000000..ecff2dac7 --- /dev/null +++ b/2582/CH3/EX3.12/Ex3_12.sce @@ -0,0 +1,16 @@ +//Ex 3.12
+clc;clear;close;
+format('v',6);
+fo=1.2*1000;//Hz
+Q=4;//Quality factor
+Ap=10;//band pass gain
+C=0.05;//micro F(have to choose C, 0.01<C<1)
+R2=2*Q/(2*%pi*fo*C*10^-6)/1000;//kohm
+R1=R2/2/Ap;//kohm
+R3=R1/(4*%pi^2*R1*1000*R2*1000*(C*10^-6)^2*fo^2-1);//kohm
+disp("Design values are :");
+disp(C,"Capacitance(micro F)");
+disp(R1,"Resistance R1(kohm)");
+disp(R2,"Resistance R2(kohm)");
+disp(R3*1000,"Resistance R3(ohm)");
+//Answer in the book is wrong for R3 & value of C is 0.05 instead of 0.5.
|