Está en la página 1de 1

CURVAS DE CORRIENTES DE EJE DIRECTO Y EN CUADRATURA EN MATLAB

f=60;
w=2*pi*f;
t=0:0.00001:(2/60);
Im=208;
q=0;
IA=Im/sqrt(2);
Ia=sqrt(2)*IA*cos(w*t);
Ib=sqrt(2)*IA*cos((w*t)-120);
Ic=sqrt(2)*IA*cos((w*t)-240);
subplot(3,1,1);plot(t,Ia,t,Ib,t,Ic)
title('Corrientes Ia, Ib, Ic');
grid on
subplot(3,1,2); plot(t,Im,'r');
title('Corriente de eje d');
grid on
subplot(3,1,3); plot(t,q, 'g');
title('Corriente de eje q');
grid on

También podría gustarte