diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3872/CH10/EX10.9/EX10_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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/CH10/EX10.9/EX10_9.sce')
-rw-r--r-- | 3872/CH10/EX10.9/EX10_9.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3872/CH10/EX10.9/EX10_9.sce b/3872/CH10/EX10.9/EX10_9.sce new file mode 100644 index 000000000..b5f8f1c92 --- /dev/null +++ b/3872/CH10/EX10.9/EX10_9.sce @@ -0,0 +1,20 @@ +//Book - Power System: Analysis & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
+//Chapter - 10 ; Example 10.9
+//Scilab Version - 6.0.0 ; OS - Windows
+
+clc;
+clear;
+
+Srated = 10; //power rating in MVA
+Vprtr = 80; //primary side of transformer voltage in kV
+Vsectr = 20; //secondary side of transformer voltage in kV
+CTratiopr = 150/5; //primary CT ratio
+CTratiosec = 600/5; //secondary CT ratio
+I1rated = (Srated*10^6)/(Vprtr*10^3); //rated current 1 in Amperes
+I2rated = (Srated*10^6)/(Vsectr*10^3); //rated current 2 in Amperes
+I1 = I1rated/CTratiopr; //differential current 1 in Amperes
+I2 = I2rated/CTratiosec; //differential current 2 in Amperes
+I = I1-I2; //differential current at rated conditions in Amperes
+k = 0.5/2.25; //from figure 10.34
+printf('The value of k is %f',k);
|