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

Torque-Speed Characteristic Induction Motor Plot: M-File Matlab

The document contains an M-file code in Matlab that creates a plot of the torque-speed characteristic curve of an induction motor. It initializes motor parameters like resistances and reactances. It then calculates the Thevenin voltage and impedance. A torque is calculated for different slips between 0-1. The code plots the torque-speed curve for the original and doubled rotor resistance to compare.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
283 views2 pages

Torque-Speed Characteristic Induction Motor Plot: M-File Matlab

The document contains an M-file code in Matlab that creates a plot of the torque-speed characteristic curve of an induction motor. It initializes motor parameters like resistances and reactances. It then calculates the Thevenin voltage and impedance. A torque is calculated for different slips between 0-1. The code plots the torque-speed curve for the original and doubled rotor resistance to compare.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

GIORGIO RENDRA G.

/2215 105 064

Torque-Speed Characteristic Induction Motor Plot

M-file Matlab

% M-file: torque_speed_curve.m
% M-file create a plot of the torque-speed curve of the
% induction motor.
% First, initialize the values needed in this program.
r1 = 0.08;
% Stator resistance
x1 = 0.198;
% Stator reactance
r2 = 0.0589;
% Rotor resistance
x2 = 0.198;
% Rotor reactance
xm = 5.257;
% Magnetization branch reactance
v_phase = 208 / sqrt(3);
% Phase voltage
n_sync = 1800;
% Synchronous speed (r/min)
w_sync = 188.496;
% Synchronous speed (rad/s)
% Calculate the Thevenin voltage and impedance from Equations
% 7-41a and 7-43.
v_th = v_phase * ( xm / sqrt(r1^2 + (x1 + xm)^2) );
z_th = ((j*xm) * (r1 + j*x1)) / (r1 + j*(x1 + xm));
r_th = real(z_th);
x_th = imag(z_th);
% Now calculate the torque-speed characteristic for many
% slips between 0 and 1. Note that the first slip value
% is set to 0.001 instead of exactly 0 to avoid divide% by-zero problems.
s = (0:1:50) / 50;
% Slip
s(1) = 0.001;
nm = (1 - s) * n_sync;
% Mechanical speed
% Calculate torque for original rotor resistance
for ii = 1:51
t_ind1(ii) = (3 * v_th^2 * r2 / s(ii)) / ...
(w_sync * ((r_th + r2/s(ii))^2 + (x_th + x2)^2) );
end
% Calculate torque for doubled rotor resistance
% for ii = 1:51
%
t_ind2(ii) = (3 * v_th^2 * (2*r2) / s(ii)) / ...
%
(w_sync * ((r_th + (2*r2)/s(ii))^2 + (x_th + x2)^2) );
% end
% Plot the torque-speed curve
plot(nm,t_ind1,'Color','k','LineWidth',2.0);
hold on;
plot(nm,t_ind2,'Color','k','LineWidth',2.0,'LineStyle','-.');
xlabel('\itn_{m}','Fontweight','Bold');
ylabel('\tau_{ind}','Fontweight','Bold');
title ('Induction Motor Torque-Speed Characteristic','Fontweight','Bold');
legend ('Original R_{2}','Doubled R_{2}');
grid on;

GIORGIO RENDRA G. /2215 105 064


hold off;

Gambar Plot karakteristik Torsi vs Kecepatan pada motor induksi

You might also like