Q.No.2 Using MATLAB, Calculate and Plot The Torque-Speed Characteristics of The Above Motor Both With The Original Rotor Resistance and With The Rotor Resistance Doubled
Q.No.2 Using MATLAB, Calculate and Plot The Torque-Speed Characteristics of The Above Motor Both With The Original Rotor Resistance and With The Rotor Resistance Doubled
2
(a) Using MATLAB, calculate and plot the torque-speed characteristics of the
above motor both with the original rotor resistance and with the rotor
resistance doubled.
clear all;
clc;
close all;
for ii = 1:51
t_indl(ii) = (3 * v_th^2 * r2 / s (ii)) / (w_sync * (( r_th + r2 / s(ii))^2 + (x_th + x2)^2));
end
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
(b) Using MATLAB, calculate and plot the torque-speed characteristics of the
above motor both with a supply frequency of 60 Hz and 40 Hz.
clear all;
clc;
close all;
for ii = 1:51
t_ind2(ii) = (3 * v_th^2 * r2 / s (ii)) / (w_sync2 * (( r_th + r2 / s(ii))^2 + (x_th + x2)^2));
end
T_max1 = 3*v_th^2/(2*w_sync1*(r_th+sqrt(r_th^2+(x_th+x2)^2)))
T_max2 = 3*v_th^2/(2*w_sync2*(r_th+sqrt(r_th^2+(x_th+x2)^2)))
T_start1 = (3 * v_th^2 * (1*r2)) / (w_sync1 * (((r_th + 1*r2)^2 + (x_th + x2)^2)))
T_start2 = (3 * v_th^2 * (1*r2)) / (w_sync2 * (((r_th + 1*r2)^2 + (x_th + x2)^2)))
(c) Using MATLAB, calculate and plot the torque-speed characteristics of the
above motor both with a line voltage of 460 V and 360 V.
clear all;
clc;
close all;
for ii = 1:51
t_indl(ii) = (3 * v_th1^2 * r2 / s (ii)) / (w_sync * (( r_th + r2 / s(ii))^2 + (x_th + x2)^2));
end
for ii = 1:51
t_ind2(ii) = (3 * v_th2^2 * r2 / s (ii)) / (w_sync * (( r_th + r2 / s(ii))^2 + (x_th + x2)^2));
end
T_max1 = 3*v_th1^2/(2*w_sync*(r_th+sqrt(r_th^2+(x_th+x2)^2)))
T_max2 = 3*v_th2^2/(2*w_sync*(r_th+sqrt(r_th^2+(x_th+x2)^2)))
T_start1 = (3 * v_th1^2 * (1*r2)) / (w_sync * (((r_th + 1*r2)^2 + (x_th + x2)^2)))
T_start2 = (3 * v_th2^2 * (1*r2)) / (w_sync * (((r_th + 1*r2)^2 + (x_th + x2)^2)))