Ind Motors Assignment
Ind Motors Assignment
Ind Motors Assignment
Induction Motor
Erandi M.A.U
200161V
With Starting Winding
%% With Starting Winding
% Motor parameters
R1 = 1.8;
X1 = 2.4;
R2 = 2.5;
X2 = 2.4;
R1_Aux = 10;
X1_Aux = 0.495;
Xm = 60;
V_m = 120;
V_a = 120;
N_s = 1800;
%% Turns ratio
a = sqrt(X1_Aux / X1);
%% Calulating Impedance
Z1_aux = R1_Aux + (1i * X1_Aux);
Z1_motor = R1 + (1i * X1);
%Torque
T = AG_Power / W_s;
Speed(end+1) = N;
Torque(end+1) = T;
if N == 0.7 * N_s
break
end
end
% Calculate impedances
Z_fwd = ((R2 / S2) + (1i * X2)) * (1i * Xm) / ((R2 /
S2) + (1i * X2) + (1i * Xm));
Z_bwd = ((R2 / (2 - S2)) + (1i * X2)) * (1i * Xm) /
((R2 / (2 - S2)) + (1i * X2) + (1i * Xm));
% Calculate torque
T = AG_Power / W_s;
Speed(end+1) = N;
Torque(end+1) = T;
end
%% Torque-speed characteristics
figure
plot(Speed, Torque, 'LineWidth', 2)
title('Torque-Speed Characteristic');
xlabel('Rotor speed (rpm)')
xlim([0 2000])
ylabel('Torque (Nm)')
ylim([0 5])
grid on
Without Starting Winding
%% Without starting winding %%%%%%%%%%%%%%%%%%%%%
%% Input current
I_1 = V_m./(R1 + 1i*X1 + 0.5*Z_fwd2 + 0.5*Z_bwd2);
%% Calculate Torque
T_2 = AG_Power./(N_s*((2*pi)/60));