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.10 | |
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.10')
-rw-r--r-- | 3872/CH10/EX10.10/EX10_10.JPG | bin | 0 -> 31323 bytes | |||
-rw-r--r-- | 3872/CH10/EX10.10/EX10_10.sce | 31 |
2 files changed, 31 insertions, 0 deletions
diff --git a/3872/CH10/EX10.10/EX10_10.JPG b/3872/CH10/EX10.10/EX10_10.JPG Binary files differnew file mode 100644 index 000000000..5d74b5458 --- /dev/null +++ b/3872/CH10/EX10.10/EX10_10.JPG diff --git a/3872/CH10/EX10.10/EX10_10.sce b/3872/CH10/EX10.10/EX10_10.sce new file mode 100644 index 000000000..1e6891a82 --- /dev/null +++ b/3872/CH10/EX10.10/EX10_10.sce @@ -0,0 +1,31 @@ +//Book - Power System: Analysis & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
+//Chapter - 10 ; Example 10.10
+//Scilab Version - 6.0.0 ; OS - Windows
+
+clc;
+clear;
+
+Srated = 30; //power rating in MVA
+Vprtr = 34.5; //primary side of transformer voltage in kV
+Vsectr = 138; //secondary side of transformer voltage in kV
+IArated = (Srated*10^6)/(sqrt(3)*Vsectr*10^3); //Rated current on the 138-kV side of the transformer in Amperes
+CTratiosec = 150/5; //CT ratio on the 138-kV side
+IA = IArated/CTratiosec; //differential current in 138kV side in Amperes
+Iarated = (Srated*10^6)/(sqrt(3)*Vprtr*10^3); //Rated current on the 34.5-kV side of the transformer in Amperes
+CTratiopr = 500/5; //CT ratio on the 34.5-kV side
+Ia = Iarated/CTratiopr; //differential current in 138kV side in Amperes
+Iab = Ia*sqrt(3); //diffrential current in lefthand re-straining winding of figure 10.37 in Amperes
+crtratio = Iab/IA; //ratio of the currents in the left- to righthand restraining winding
+TA = 5;
+Tab = 10;
+tapratio = Tab/TA; //closest relay tap ratio
+%mismatch = (((Iab/Tab)-(IA/TA))/(Iab/Tab))*100; //percentage mismatch for tap setting
+printf('\nRated current on the 138kV side of the transformer is %f A',IArated);
+printf('\nRated current on CT ratio in 138 kV side of the transformer is %f A',IA);
+printf('\nRated current on the 34.5kV side of the transformer is %f A',Iarated);
+printf('\nRated current on CT ratio in 34.5kV side of the transformer is %f A',Ia);
+printf('\nThe percentage mismatch for the tap setting is %f',%mismatch);
+
+
+
|