summaryrefslogtreecommitdiff
path: root/2231/CH1/EX1.40
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH1/EX1.40')
-rwxr-xr-x2231/CH1/EX1.40/Ex_1_40.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2231/CH1/EX1.40/Ex_1_40.sce b/2231/CH1/EX1.40/Ex_1_40.sce
new file mode 100755
index 000000000..762399a98
--- /dev/null
+++ b/2231/CH1/EX1.40/Ex_1_40.sce
@@ -0,0 +1,17 @@
+//Example 1_40
+clc;
+clear;close;
+
+//Given data:
+V=230;//V
+R1=2;//ohm
+R2=5;//ohm
+R3=1;//ohm
+R4=6;//ohm
+R5=5;//ohm
+Isqr_t=30;//A^2-s
+R=R1+R2*R3/(R2+R3);//ohm(X grounded)
+Ifault=sqrt(2)*V/R;//A
+tc=Isqr_t/Ifault^2;//s
+disp(tc,"Fault clearing time in seconds");
+