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 /2609/CH8/EX8.2/ex_8_2.sce | |
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 '2609/CH8/EX8.2/ex_8_2.sce')
-rwxr-xr-x | 2609/CH8/EX8.2/ex_8_2.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2609/CH8/EX8.2/ex_8_2.sce b/2609/CH8/EX8.2/ex_8_2.sce new file mode 100755 index 000000000..519e0a1e8 --- /dev/null +++ b/2609/CH8/EX8.2/ex_8_2.sce @@ -0,0 +1,21 @@ +////Ex 8.2
+clc;
+clear;
+close;
+format('v',9);
+fo=450;//kHz
+deltafL=240;//kHz(+ve & -ve)
+deltafC=40;//kHz(+ve & -ve)
+Vplus=8*fo/deltafL;//V
+//Vplus=(VCC-(-VEE))/2 but |VCC|=|-VEE|
+VCC=Vplus;//V
+VEE=Vplus;//V
+disp(VCC,"For the design |VCC|=|-VEE| in Volt");
+RT=4.7;//kohm(Assumed for design)
+R=3.6;//kohm
+CT=0.3/(RT*1000*fo*1000)*10^12;//pF
+C=1/((deltafC*10^3)^2*(2*%pi*R*10^3)/(deltafL*1000))*10^9;//nF
+disp(RT,"Value of RT(kohm)");
+disp(CT,"Value of CT(pF)");
+disp(C,"Value of C(nF)");
+//Answer in the book is not accurate.
|