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 /3472/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 '3472/CH10/EX10.10')
-rw-r--r-- | 3472/CH10/EX10.10/Example10_10.sce | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/3472/CH10/EX10.10/Example10_10.sce b/3472/CH10/EX10.10/Example10_10.sce new file mode 100644 index 000000000..fce81b1c6 --- /dev/null +++ b/3472/CH10/EX10.10/Example10_10.sce @@ -0,0 +1,44 @@ +// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART II : TRANSMISSION AND DISTRIBUTION
+// CHAPTER 3: STEADY STATE CHARACTERISTICS AND PERFORMANCE OF TRANSMISSION LINES
+
+// EXAMPLE : 3.10 :
+// Page number 135
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+f = 50.0 // Frequency(Hz)
+l = 125.0 // Line length(km)
+P_r = 40.0*10**6 // Load at receiving end(VA)
+V_r = 110.0*10**3 // Line voltage at receiving end(V)
+PF_r = 0.8 // Lagging load power factor
+R = 11.0 // Resistance(ohm/phase)
+X = 38.0 // Inductive reactance(ohm/phase)
+Y = 3.0*10**-4 // Capacitive susceptance(S)
+
+// Calculations
+// Case(i)
+E_r = V_r/3**0.5 // Receiving end phase voltage(V)
+Z = complex(R,X) // Total impedance(ohm/phase)
+I_c1 = E_r*(Y/2)*exp(%i*90.0*%pi/180) // Current through shunt admittance at receiving end(A)
+I_r = P_r/(3**0.5*V_r)*exp(%i*-acos(PF_r)) // Load current(A)
+I = I_r+I_c1 // Current through series impedance(A)
+E_s = I*Z+E_r // Voltage across shunt admittance at sending end(V)
+E_s_ll = 3**0.5*E_s/1000.0 // Line to line voltage at sending end(kV)
+I_c2 = E_s*(Y/2)*exp(%i*90.0*%pi/180) // Current through shunt admittance at sending end(A)
+// Case(ii)
+I_s = I_c2+I_r // Sending end current(A)
+angle_Er_Es = phasemag(E_s) // Angle between E_r and E_s(°)
+angle_Er_Is = phasemag(I_s) // Angle between E_r and I_s(°)
+angle_Es_Is = angle_Er_Es-angle_Er_Is // Angle between E_s and I_s(°)
+PF_s = cosd(angle_Es_Is) // Sending end power factor
+
+// Results
+disp("PART II - EXAMPLE : 3.10 : SOLUTION :-")
+printf("\nCase(i) : Line to line voltage at sending end, E_s = %.f kV", abs(E_s_ll))
+printf("\nCase(ii): Sending end power factor = %.3f \n", PF_s)
+printf("\nNOTE: Answers in the textbook are incomplete")
|