From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2609/CH6/EX6.13/Ex6_13.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 2609/CH6/EX6.13/Ex6_13.sce (limited to '2609/CH6/EX6.13') 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)"); -- cgit