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/CH5/EX5.16/Ex5_16.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2609/CH5/EX5.16/Ex5_16.sce (limited to '2609/CH5/EX5.16/Ex5_16.sce') diff --git a/2609/CH5/EX5.16/Ex5_16.sce b/2609/CH5/EX5.16/Ex5_16.sce new file mode 100755 index 000000000..62d0e90af --- /dev/null +++ b/2609/CH5/EX5.16/Ex5_16.sce @@ -0,0 +1,16 @@ +//Ex 5.16 +clc; +clear; +close; +format('v',4); +//From the given equationVout=-integrate('5*Vx+2*Vy+4*Vz','t',0,t) : +R1Cf=1/5;R2Cf=1/2;R3Cf=1/4; +disp("Various design parameters are : "); +Cf=10;//micro F////Chosen for the design +disp(Cf,"Capacitance(micro F)"); +R1=R1Cf/(Cf*10^-6)/1000;//kohm +R2=R2Cf/(Cf*10^-6)/1000;//kohm +R3=R3Cf/(Cf*10^-6)/1000;//kohm +disp(R1,"Resistance R1(kohm)"); +disp(R2,"Resistance R1(kohm)"); +disp(R3,"Resistance R1(kohm)"); -- cgit