You are on page 1of 4

Instituto Politécnico Nacional

Escuela Superior De Ingeniería Mecánica Y Eléctrica


Unidad Zacatenco
DEPARTAMENTO DE INGENIERÍA ELÉCTRICA
ACADEMIA DE POTENCIA
ANÁLISIS DE SISTEMAS ELÉCTRICOS DE POTENCIA I

Sección 4.11 - Ejemplo 4.48

Profesor: Ing. Sergio Arturo Ávila Solís

Alumno: Gómez Servín Fernando

No. Lista: 11

Boleta: 2014010443

Grupo: 8EV1

Fecha: 21/03/2020
Example 4.48

14 m 14 m

9m

30 m

Data:

• 2 conductors per phase


• Outside diameter: 1.545”
• GMR (from table A.4): 0.052 ft
• Resistance (from table A.4): 0.0591 Ω
• Line lenght: 320 km
• Voltage: 400 kV
• Frecuency: 60 Hz
• Spacing between bundled conductors: 8xOutside diameter
Main source code Command Window
%SECTION 4.11 - EX 4.48
%THREE PHASE TRANSPOSED LINE
%DATA IN
CxP=input('Conductors per phase:');
Dext=input('Outside Diameter(in):');
RMG=input('GMR from T.A4(ft):');
Res=input('Resistance from T.A4(Ohm/mi):');
lenght=input('Line lenght(km):');
kv=input('kV:');
f=input('Frecuency(Hz):');
Dc=input('Spacing between conductors centre(in):');
Dh12=input('Horizontal spacing between phase 1-2(m):');
Dh23=input('Horizontal spacing between phase 2-3(m):');
Dv=input('Vertical spacing between phase 1-2(m):');
h=input('Height (m):');
%SOLVING
Dext=Dext*(2.54/100);
RMG=RMG*0.3048;
Res=(Res/1.609);
Dc=Dc*(2.54/100);
D13=Dh12+Dh23;
D12=sqrt((Dv^2)+(Dh12^2));
D23=sqrt((Dv^2)+(Dh23^2));
Deq=nthroot(D12*D23*D13,3);
if (CxP==2){...} end
if (CxP==3){...} end
if (CxP==4){...} end
La=(2*10^(-7))*log(Deq/Dsl);
Can1=((2*pi*(8.854187817*10^(-12)))/(log(Deq/Dsc)));
H1=2*h;
H2=2*(Dv+h);
H3=2*h;
Hs=nthroot((H1*H2*H3),3);
H12=sqrt((H2^2)+(Dh12^2));
H23=sqrt((H2^2)+(Dh23^2));
H13=sqrt((D13^2)+(H1^2));
Hm=nthroot(H12*H23*H13,3);
Can2=((2*pi*(8.854187817*10^(-12)))/(log(Deq/Dsc)-
log(Hm/Hs)));
Q3ph_1=2*pi*f*Can1*((kv*1000)^2);
Q3ph_2=2*pi*f*Can2*((kv*1000)^2);
VAR_1=Q3ph_1*lenght*1000;
VAR_2=Q3ph_2*lenght*1000;
%DATA OUT
fprintf(1,"\nInductance=%d [H/m]\n",La);
fprintf(1,"Capacitance to neutral (without ground effect)=%d
[F/m]\n",Can1);
fprintf(1,"Capacitance to neutral (with ground effect)=%d
[F/m]\n",Can2);
fprintf(1,"Resistance=%d [Ohm/km]\n",Res);
fprintf(1,"Reactive power (without ground effect)=%d
[MVAR]\n",(VAR_1/1000000));
fprintf(1,"Reactive power (with ground effect)=%d
[MVAR]\n",(VAR_2/1000000));
By Matlab Graphing Calculator

You might also like