You are on page 1of 1

>> r1=1.

80;
>> x1=2.40;
>> r2=2.50;
>> x2=2.40;
>> xm=60;
>> v=120;
>> n_sync=1800;
>> w_sync=188.5;
>> s = 0:0.01:2.0;
>> s(1)=0.0001;
>> s(201)=1.999;
>> nm=(1-s)*n_sync;
>> zf=(r2./ s + j*x2)*(j*xm)./(r2./s+ j*x2 +j*xm);
>> zb=(r2./(2-s) + j*x2) * (j*xm)./(r2./(2-s)+j*x2 + j*xm);
>> il=v./(r1 + j*x1 +zf+zb);
>> p_ag_f=abs(il).^2.*0.5.*real(zf);
>> p_ag_b=abs(il).^2.*0.5.*real(zb);
>> p_ag = p_ag_f-p_ag_b;
>> t_ind=p_ag./w_sync;
>> figure (1)
>> plot(nm,t_ind, 'color', 'b', 'linewidth', 2.0);
>> title('single phase induction motor torque-speed characteristic','fontsize',1
2);
>> grid on;
>> hold off;

You might also like