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/CH3/EX3.8 | |
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/CH3/EX3.8')
-rw-r--r-- | 3872/CH3/EX3.8/Ex3_8.jpg | bin | 0 -> 27908 bytes | |||
-rw-r--r-- | 3872/CH3/EX3.8/Ex3_8.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3872/CH3/EX3.8/Ex3_8.jpg b/3872/CH3/EX3.8/Ex3_8.jpg Binary files differnew file mode 100644 index 000000000..3bf70145c --- /dev/null +++ b/3872/CH3/EX3.8/Ex3_8.jpg diff --git a/3872/CH3/EX3.8/Ex3_8.sce b/3872/CH3/EX3.8/Ex3_8.sce new file mode 100644 index 000000000..7645ebfa4 --- /dev/null +++ b/3872/CH3/EX3.8/Ex3_8.sce @@ -0,0 +1,24 @@ +//Book - Power system: Analysisi & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J.Overbye
+//Chapter-3 ;Example 3.8
+//Scilab Version - 6.0.0; OS - Windows
+
+clc;
+clear;
+
+Sr=200 //rated power of transformer in MVA
+VT1p=345 // rated voltage of transformer primary side in kV
+VT1s=34.5 // rated voltage of transformer secondary side in kV
+Xeq=0.08 // leakage reactance of transformer in ohms
+pf=0.8 //lagging power factor
+Irated=1.0 //rated current in Amperes
+Irated1=1.0*exp(%i*(-36.87)*(%pi/180)) //consider real and imaginary value of rated current
+VAN=1.0 //source voltage in Volts
+Vdrop=Irated*Xeq //per unit magnitudes of transformer voltage drop
+Van=VAN-(%i*Xeq)*Irated1 //per unit magnitudes of transformer voltage at low voltage terminals
+Isc=VAN/Xeq //per unit magnitudes of transformer fault current
+
+
+printf('The magnitude of transformer voltage drop in per unit is %.4f pu \n',Vdrop);
+printf('The magnitude of transformer voltage at low voltage terminal in per unit is %.4f and its angle is %.4f degrees\n',abs(Van),atand(imag(Van),real(Van)));
+printf('The magnitude of fault current in per unit is %.4f pu\n',Isc);
|