Вы находитесь на странице: 1из 2

% Energizacion desde una subestacin que tiene una corriente de cortocircuito cono

cida.
% Pag. 11
clc
clear all
Vn=500;
SIL=981;
Zc=255;
beta=0.00131;
km=450;
theta=beta*km;
Kse=0.5;
Eths=1;
Icc=5.8;

Sccs=sqrt(3)*Vn*Icc;
Xths=Eths/(Sccs/SIL);
Ksh1=0;
Ksh2=0.3;
Ksh3=0.4;
Ksh4=0.6;
Ksh5=0.8;
theta_p1=theta*((1-Kse)*(1-Ksh1))^(1/2);
beta_p1=beta*((1-Kse)*(1-Ksh1))^(1/2);
Z_p1=Zc*((1-Kse)/(1-Ksh1))^(1/2);
theta_p2=theta*((1-Kse)*(1-Ksh2))^(1/2);
beta_p2=beta*((1-Kse)*(1-Ksh2))^(1/2);
Z_p2=Zc*((1-Kse)/(1-Ksh2))^(1/2);
theta_p3=theta*((1-Kse)*(1-Ksh3))^(1/2);
beta_p3=beta*((1-Kse)*(1-Ksh3))^(1/2);
Z_p3=Zc*((1-Kse)/(1-Ksh3))^(1/2);
theta_p4=theta*((1-Kse)*(1-Ksh4))^(1/2);
beta_p4=beta*((1-Kse)*(1-Ksh4))^(1/2);
Z_p4=Zc*((1-Kse)/(1-Ksh4))^(1/2);
theta_p5=theta*((1-Kse)*(1-Ksh5))^(1/2);
beta_p5=beta*((1-Kse)*(1-Ksh5))^(1/2);
Z_p5=Zc*((1-Kse)/(1-Ksh5))^(1/2);
n=0;
for m=0:0.001:1
n=n+1;
Vx_1(n)=Eths*cos(beta_p1*km*m)/(cos(theta_p1)*(1-Xths*tan(theta_p1)));
Vx_2(n)=Eths*cos(beta_p2*km*m)/(cos(theta_p2)*(1-Xths*tan(theta_p2)));
Vx_3(n)=Eths*cos(beta_p3*km*m)/(cos(theta_p3)*(1-Xths*tan(theta_p3)));
Vx_4(n)=Eths*cos(beta_p4*km*m)/(cos(theta_p4)*(1-Xths*tan(theta_p4)));
Vx_5(n)=Eths*cos(beta_p5*km*m)/(cos(theta_p5)*(1-Xths*tan(theta_p5)));

end
x=linspace(0,1,n);
figure
plot(x,Vx_1,'xk')
hold on
plot(x,Vx_2,'*g')
plot(x,Vx_3,'--b')
plot(x,Vx_4,'+y')
plot(x,Vx_5,'-m')
legend('Ksh=0','Ksh=0.3','Ksh=0.4','Ksh=0.6','Ksh=0.8')
title('LINEA COMPENSADA CON Kse=0.5 y Ksh VARIABLE ENERGIZADA EN VACIO')
xlabel('DISTANCIA A LA BARRA DE RECEPCION EN PU')
grid on

Вам также может понравиться