summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.7
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.7')
-rwxr-xr-x2231/CH1/EX1.7/Ex_1_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2231/CH1/EX1.7/Ex_1_7.sce b/2231/CH1/EX1.7/Ex_1_7.sce
new file mode 100755
index 000000000..0917d8fa0
--- /dev/null
+++ b/2231/CH1/EX1.7/Ex_1_7.sce
@@ -0,0 +1,16 @@
+//Example 1_7
+clc;
+clear;close;
+
+//Given data
+i_latch=40*10^-3;//A
+t=40*10^-6;//s
+Vdc=90;//V
+R=25;//ohm
+L=0.5;//H
+
+//Solution :
+i=Vdc/R*(1-exp(-R*t/L));//A
+disp("Current in the circuit is "+string(i)+" A, it is less than latchig current, the thyristor will not turn on.");
+R=Vdc/(i_latch-i);//ohm
+disp("Maximum value of R is "+string(R)+" ohm.");