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.5 | |
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.5')
-rwxr-xr-x | 2582/CH3/EX3.5/Ex3_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2582/CH3/EX3.5/Ex3_5.sce b/2582/CH3/EX3.5/Ex3_5.sce new file mode 100755 index 000000000..67ec7ac18 --- /dev/null +++ b/2582/CH3/EX3.5/Ex3_5.sce @@ -0,0 +1,13 @@ +//Ex 3.5
+clc;clear;close;
+format('v',5);
+fo=2;//kHz
+Ap=10;//Band pass gain
+C=0.1;//micro F(have to choose C, 0.01<C<1)
+R2=1/(2*%pi*fo*10^3*C*10^-6);//ohm
+R1=R2/Ap;//ohm
+disp("Design values are :");
+disp(C,"Capacitance(micro F)");
+disp(R1,"Resistance R1(ohm)");
+disp(R2/1000,"Resistance R2(kohm)");
+//Answer in the book is wrong.
|