You are on page 1of 4

format short e

%%% pre -laboratorio VILLANUEVA CONDORI DIEGO SAMIR

S=1000;
V1=220;
V2=110;
f=60;
m=220/110;
I1=S/V1;
%%% prueba de cortocircuito
Pcc=20;
Vcc=V1*0.08;
Icc=I1;
%%%%prueba de vacio
Po=35;
Vo=V1;
Io=0.12*I1;
%%% Rfe y Xu
disp('parametros referidos al lado de alta tension')
Ao=acos(Po/(Vo*Io))
Ife1=cos(Ao)*Io
Iu1=sin(Ao)*Io
Rfe1=Vo/Ife1
Xu1=V1/Iu1
% Rcc++Xcc
Acc=acos(Pcc/(Icc*Vcc))
Rcc1=Vcc*cos(Acc)/Icc
Xcc1=Vcc*sin(Acc)/Icc
disp('parametros referidos al secundario')
Ife2=Ife1*m
Iu2=Iu1*m
Rfe2=Rfe1/m^2
Xu2=Xu1/m^2
Rcc2=Rcc1/m^2;
Xcc2=Xcc1/m^2;
disp('regulacion del transformador')
fp=0.8
Ang=acosd(0.8);
C=[ 0.25 0.50 0.75 1.00 1.25 ];
I11=I1*(cosd(Ang)-sind(Ang)*i);
E1=V1+(Rcc1+Xcc1*i)*I11.*C;
regulacion=(abs(E1)-V1)./abs(E1);
n=(C.*S*fp)./(C.*S*fp+Po+Pcc*C.^2);
P=S*fp.*C;
disp('
potencia activa
porcentaje de carga
eficiencia ')
disp([ P'
C' regulacion' n'])
subplot(3,1,1)
plot(n,P)
grid
xlabel('eficiencia')
ylabel('potencia activa')
subplot(3,1,2)
plot(regulacion,P)

regulacion

grid
xlabel('regulacion')
ylabel('potencia activa')
subplot(3,1,3)
plot(P,n)
grid
xlabel('potencia activa')
ylabel('eficiencia')
parametros referidos al lado de alta tension
Ao =
1.2748e+00
Ife1 =
1.5909e-01
Iu1 =
5.2174e-01
Rfe1 =
1.3829e+03
Xu1 =
4.2167e+02
Acc =
1.3181e+00
Rcc1 =
9.6800e-01
Xcc1 =
3.7490e+00
parametros referidos al secundario
Ife2 =
3.1818e-01

Iu2 =
1.0435e+00
Rfe2 =
3.4571e+02
Xu2 =
1.0542e+02
regulacion del transformador
fp =
8.0000e-01
potencia activa
porcentaje de carga
2.0000e+02
2.5000e-01
1.5453e-02
4.0000e+02
5.0000e-01
3.0576e-02
6.0000e+02
7.5000e-01
4.5371e-02
8.0000e+02
1.0000e+00
5.9841e-02
1.0000e+03
1.2500e+00
7.3991e-02

regulacion
8.4656e-01
9.0909e-01
9.2843e-01
9.3567e-01
9.3787e-01

eficiencia

You might also like