From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3369/CH16/EX16.4/Ex16_4.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 3369/CH16/EX16.4/Ex16_4.sce (limited to '3369/CH16/EX16.4') 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 + -- cgit