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/CH6/EX6.13 | |
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/CH6/EX6.13')
-rwxr-xr-x | 2609/CH6/EX6.13/Ex6_13.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2609/CH6/EX6.13/Ex6_13.sce b/2609/CH6/EX6.13/Ex6_13.sce new file mode 100755 index 000000000..4dfb195ef --- /dev/null +++ b/2609/CH6/EX6.13/Ex6_13.sce @@ -0,0 +1,19 @@ +//Ex 6.13
+clc;
+clear;
+close;
+format('v',6);
+f0=1.5;//kHz
+Vout=6;//V////peak to peak
+Vsat=13.5;//V
+disp("Various design parameters are : ");
+R2=10;//kohm///choosen for the design
+R1=R2*2*Vsat/Vout;//kohm
+disp(R1,"R1(kohm)");
+disp(R2,"R2(kohm)");
+disp("Use R1=50 kohm for the design");
+//Let Cf=0.05 micro F for the design
+Cf=0.05;//micro F
+disp(Cf,"Cf(micro F)");
+Ri=R1*1000/(f0*1000)/4/(Cf*10^-6*R2*1000)/1000;//kohm
+disp(Ri,"Ri(kohm)");
|