summaryrefslogtreecommitdiff
path: root/3872/CH7/EX7.1/EX7_1.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3872/CH7/EX7.1/EX7_1.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3872/CH7/EX7.1/EX7_1.sce')
-rw-r--r--3872/CH7/EX7.1/EX7_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3872/CH7/EX7.1/EX7_1.sce b/3872/CH7/EX7.1/EX7_1.sce
new file mode 100644
index 000000000..5f5f08e1d
--- /dev/null
+++ b/3872/CH7/EX7.1/EX7_1.sce
@@ -0,0 +1,18 @@
+//Book - Power System: Analysis & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
+//Chapter - 7 ; Example 7.1
+//Scilab Version - 6.0.0 ; OS - Windows
+clc;
+clear;
+V = 20; //short ciruit voltage in kV
+X = 8; //short circuit inductance in ohm
+R = 0.8; //short ciruit resistance in ohm
+t = 3; //no. of cycles after fault inception
+Iac = V/(sqrt((X^2)+(R^2)))*1 //rms ac fault current in kA
+K = sqrt(1+ (2*%e^(-4*%pi*(0.5)/10))); //asymmetry factor for 0.5 cycles
+Imom = K*Iac; //rms momentart current at t=0.5 cycle in kA
+K = sqrt(1+ (2*%e^(-4*%pi*(3)/10))); //asymmetry factor for 3 cycles
+Irms = K*Iac; //rms asymmetrical fault current in kA
+printf('\n The rms ac fault current Iac = %f kA',Iac);
+printf('\n The rms momentary current at o.5 cycle Imom = %f kA',Imom);
+printf('\n The rms asymmetrical fault current Irms = %f kA',Irms);