diff options
Diffstat (limited to '2231/CH1/EX1.32')
-rwxr-xr-x | 2231/CH1/EX1.32/Ex_1_32.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2231/CH1/EX1.32/Ex_1_32.sce b/2231/CH1/EX1.32/Ex_1_32.sce new file mode 100755 index 000000000..9bbf77e24 --- /dev/null +++ b/2231/CH1/EX1.32/Ex_1_32.sce @@ -0,0 +1,17 @@ +//Example 1_32
+clc;
+clear;close;
+
+//Given data:
+V=90;//V
+Iload=8;//A
+t_off=40*10^-6;//s
+//Ipeak=2*Iload;//assumed
+//V*sqrt(C/L)=2*Iload
+C_by_L=(2*Iload/V)^2;
+//t_off=%pi/2*sqrt(L*C)
+L_into_C=(t_off/%pi*2)^2;
+C=sqrt(L_into_C*C_by_L);//F
+L=L_into_C/C;//H
+disp(L,"Value of L(H)");
+disp(C,"Value of C(F)");
|