summaryrefslogtreecommitdiff
path: root/1820/CH4/EX4.3/Example4_3.sce
blob: 28ce14e24601d88fc040fb74b4d8ba9654a0c88b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION

// CHAPTER : 4 : OVERHEAD POWER TRANSMISSION

// EXAMPLE : 4.3 :
clear ; clc ; close ; // Clear the work space and console

// GIVEN DATA
Z_xy = 0.09 + %i*0.3 ; // Mutual impedance between two parallel feeders in Ω/mi per phase
Z_xx = 0.604*exp(%i*50.4*%pi/180) ; // Self impedance of feeders in Ω/mi per phase
Z_yy = 0.567*exp(%i*52.9*%pi/180) ; // Self impedance of feeders in Ω/mi per phase

// SOLUTION
Z_2 = Z_xx - Z_xy ; // mutual impedance between feeders
Z_4 = Z_yy - Z_xy ; // mutual impedance between feeders

// DISPLAY RESULTS
disp("EXAMPLE : 4.3 : SOLUTION :-") ;
printf("\n  Mutual impedance at node 2 , Z_2 = %.3f + j%.3f Ω\n",real(Z_2),imag(Z_2)) ;
printf("\n  Mutual impedance at node 4 , Z_4 = %.3f + j%.3f Ω\n",real(Z_4),imag(Z_4)) ;