summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.34
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.34')
-rwxr-xr-x2231/CH1/EX1.34/Ex_1_34.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2231/CH1/EX1.34/Ex_1_34.sce b/2231/CH1/EX1.34/Ex_1_34.sce
new file mode 100755
index 000000000..ef09f51a5
--- /dev/null
+++ b/2231/CH1/EX1.34/Ex_1_34.sce
@@ -0,0 +1,18 @@
+//Example 1_34
+clc;
+clear;close;
+
+//Given data:
+IL=40;//A
+VC=100;//V
+t_off=60*10^-6;//s
+C=t_off*IL/VC;//F
+disp(C,"Value of C(F)");
+//L>VC^2*C/IL
+L_lower=VC^2*C/IL^2;//H
+Ip=VC*sqrt(C/L_lower);//A
+disp("Value of L should be greater than "+string(L_lower)+" H. For this value of L, Peak capacitor current is "+string(Ip)+" A. But it should be less than maximum load current.")
+//Let Ip=34.6 A
+Ip=34.6;//A
+L=C/(Ip/VC)^2;//H
+disp(L,"Value of L(H)");