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.15 | |
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.15')
-rwxr-xr-x | 2609/CH6/EX6.15/Ex6_15.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2609/CH6/EX6.15/Ex6_15.sce b/2609/CH6/EX6.15/Ex6_15.sce new file mode 100755 index 000000000..dac52471b --- /dev/null +++ b/2609/CH6/EX6.15/Ex6_15.sce @@ -0,0 +1,20 @@ +//Ex 6.15
+clc;
+clear;
+close;
+format('v',4);
+//Data given
+f0=1;//kHz
+Vo_pp=7;//V
+Vsat=14;//V
+disp("Various design parameters are :-");
+//Let R2=10;//kohm for the design
+R2=10;//kohm
+R1=2*R2*Vsat/Vo_pp;//kohm
+disp(R1,"R1(kohm)");
+disp(R2,"R2(kohm)");
+//Choose Cf=0.1 micro F for the design
+Cf=0.1;//micro F
+disp(Cf,"Cf(micro F)");
+Ri=R1*10^3/(4*f0*10^3*Cf*10^-6*R2*10^3)/1000;//kohm
+disp(Ri,"Ri(kohm)");
|