diff options
Diffstat (limited to '2609/CH5/EX5.16/Ex5_16.sce')
-rwxr-xr-x | 2609/CH5/EX5.16/Ex5_16.sce | 16 |
1 files changed, 16 insertions, 0 deletions
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)");
|