diff options
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)");
|