0% found this document useful (0 votes)
18 views2 pages

Lê Arquivos CSV Com Os Dados Das Partidas Realizadas em Lab

The document loads CSV files containing data from motor starts performed in Lab. It then plots the stator and rotor currents from direct start, star-delta start, early star-delta start, and start with external rotor resistance on separate figures with two subplots each.

Uploaded by

bella_duane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views2 pages

Lê Arquivos CSV Com Os Dados Das Partidas Realizadas em Lab

The document loads CSV files containing data from motor starts performed in Lab. It then plots the stator and rotor currents from direct start, star-delta start, early star-delta start, and start with external rotor resistance on separate figures with two subplots each.

Uploaded by

bella_duane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

L arquivos csv com os dados das partidas realizadas em Lab.

f1 = csvread('scope_1.csv', 6);
f2 = csvread('scope_3.csv', 2);
f3 = csvread('scope_5.csv', 2);
f4 = csvread('scope_7.csv', 2);
f5 = csvread('scope_9.csv', 2);

Partida Direta

figure(1)
subplot(2,1,1)
% Plota Corrente de Estator
plot(f1(:,1), f1(:,2), 'LineWidth', 1.5)
title('Partida Direta')
xlim([-4.7e-2 9.52e-1])
grid on
xlabel('Tempo [s]')
ylabel('Corrente de Estator [A]')
subplot(2,1,2)
% Plota Corrente de Rotor
plot(f1(:,1), f1(:,3), 'r', 'LineWidth', 1.5)
xlabel('Tempo [s]')
ylabel('Corrente de Rotor [A]')
xlim([-4.7e-2 9.52e-1])
grid on

Partida Estrela-Tringulo

figure(2)
subplot(2,1,1)
% Plota Corrente de Estator
plot(f2(:,1), f2(:,2))
title('Partida Y-\Delta')
grid on
xlabel('Tempo [s]')
ylabel('Corrente de Estator [A]')
subplot(2,1,2)
% Plota Corrente de Rotor
plot(f2(:,1), f2(:,3), 'r')
xlabel('Tempo [s]')
ylabel('Corrente de Rotor [A]')
grid on

Partida Estrela-Tringulo Precoce


figure(3)
subplot(2,1,1)
%Plota Corrente de Estator
plot(f3(:,1), f3(:,2), 'LineWidth', 1.3)
title('Partida Y-\Delta Precoce')
grid on
xlabel('Tempo [s]')
ylabel('Corrente de Estator [A]')
subplot(2,1,2)
% Plota Corrente de Rotor
plot(f3(:,1), f3(:,3), 'r', 'LineWidth', 1.3)
xlabel('Tempo [s]')
ylabel('Corrente de Rotor [A]')
grid on

Partida com R_ext de Rotor

figure(5)
subplot(2,1,1)
%Plota Corrente de Estator
plot(f5(:,1), f5(:,2))
xlim([0 5])
title('Partida com Resistncia Externa de Rotor')
grid on
xlabel('Tempo [s]')
ylabel('Corrente de Estator [A]')
subplot(2,1,2)
% Plota Corrente de Rotor
plot(f5(:,1), f5(:,3), 'r')
xlim([0 5])
xlabel('Tempo [s]')
ylabel('Corrente de Rotor [A]')
grid on
ylim([-22 22])

Published with MATLAB R2017a

You might also like