You are on page 1of 2

plot(IS_IL.time, IS_IL.signals(1,1).

values(1:8001,1:3));
legend('Ia', 'Ib', 'Ic')
xlabel('time(Sec)');
ylabel('Current(A)');
title('Source Current(IS)')
figure
plot(IS_IL.time, IS_IL.signals(1,2).values(1:8001,1:3));
legend('Ia', 'Ib', 'Ic')
xlabel('time(Sec)');
ylabel('Current(A)');
title('Load Current(IL)')
figure
plot(VS_VL.time, VS_VL.signals(1,1).values(1:8001,1:3));
legend('Va', 'Vb', 'Vc')
xlabel('time(Sec)');
ylabel('Voltage(V)');
title('Source Voltage(VS)')
figure
plot(VS_VL.time, VS_VL.signals(1,2).values(1:8001,1:3));
legend('Va', 'Vb', 'Vc')
xlabel('time(Sec)');
ylabel('Voltage(V)');
title('Load Voltage(VL)')
figure
plot(If.time, If.signals.values(1:419217,1:3));
legend('Ifa', 'Ifb', 'Ifc');
xlabel('time(Sec)');
ylabel('Current(A)');
title('Filter Current(If)')

SUBPLOT(5,1,1)
plot(a.time, a.signals(1,1).values)
legend('Va', 'Vb', 'Vc')
xlabel('time(Sec)');
ylabel('Voltage(V)');
title('Source Voltage(VS)')
SUBPLOT(5,1,2)
plot(a.time, a.signals(1,2).values)
legend('Ia', 'Ib', 'Ic')
xlabel('time(Sec)');
ylabel('Current(A)');
title('Source Current(IS)')
SUBPLOT(5,1,3)
plot(a.time, a.signals(1,3).values)
legend('Va', 'Vb', 'Vc')
xlabel('time(Sec)');
ylabel('Voltage(V)');

title('Load Voltage(VL)')
SUBPLOT(5,1,4)
plot(a.time, a.signals(1,4).values)
legend('Ia', 'Ib', 'Ic')
xlabel('time(Sec)');
ylabel('Current(A)');
title('Load Current(IL)')
SUBPLOT(5,1,5)
plot(a.time, a.signals(1,5).values)
legend('Ia', 'Ib', 'Ic')
xlabel('time(Sec)');
ylabel('Current(A)');
title('Filter Current(IF)')

You might also like