diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3369/CH16/EX16.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3369/CH16/EX16.4')
-rwxr-xr-x | 3369/CH16/EX16.4/Ex16_4.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/3369/CH16/EX16.4/Ex16_4.sce b/3369/CH16/EX16.4/Ex16_4.sce new file mode 100755 index 000000000..3ae18c2a6 --- /dev/null +++ b/3369/CH16/EX16.4/Ex16_4.sce @@ -0,0 +1,29 @@ +//Chapter 16,Example 4, page 558 +//Determine the input voltage and power +clear +clc +Vc = 500*10^3 // V +A = 4 // A +Xl = 8/100 // in percentage +kV = 250 +Xc = Vc/A // Reactance of the cable +XL = Xl*(kV**2/100)*10**3 // Leakage reactance of the transformer +Radd = Xc-XL // Additional series reactance +Ind = Radd/(2*%pi*XL) // Inductance of required series inductor +R = 3.5/100*(kV**2/100)*10**3 // Total circuit resistance +Imax = 100/250 // maximum current that can be supplied by the transformer +Vex = Imax*R // Exciting voltage of transformer secondary +Vin = Vex*220/kV // Input voltage of transformer primary +P = Vin*100/220 // Input power of the transformer +printf("\n Reactance of the cable = %f k ohm", Xc*10^-3) +printf("\n Leakage reactance of the transformer = %f k ohm", XL*10^-3) +printf("\n Additional series reactance = %f k ohm", Radd*10^-3) +printf("\n Inductance of required series inductor = %f H", Ind*10^3) +printf("\n Total circuit resistance = %f k ohm", R*10^-3) +printf("\n maximum current that can be supplied by the transformer = %f A", Imax) +printf("\n Exciting voltage of transformer secondary = %f kV", Vex*10^-3) +printf("\n Input voltage of transformer primary = %f V", Vin*10^-3) +printf("\n Input power of the transformer = %f kW", P*10^-3) + +// Answers may vary due to round off error + |