Info
此问题已关闭。 请重新打开它进行编辑或回答。
I'm unable to identify where my code below is wrong as it is not giving the right shape of the curve required .The question is : Write a Matlab program to Plot Rotor resistance (R) vs. starting torque (Ts). Assume Ns=25 r.p.s, X=0.7 ohm, E=80 V.
1 次查看(过去 30 天)
显示 更早的评论
I'm unable to identify where my code below is wrong as it is not giving the right shape of the curve required .The question is : Write a Matlab program to Plot Rotor resistance (R) vs. starting torque (Ts). Assume Ns=25 r.p.s, X=0.7 ohm, E=80 V. Take the range of R2 from 0 to 1.5 ohm. Make sure you take enough points to make the figure smooth. where Ts=3*E^2*R/(2*pi*Ns*(R^2+x^2)).
my solution is:
E=80; R=0:.1:1.5; x=0.7; Ns=25; Ts=3*E^2*R/(2*pi*Ns*(R^2+x^2)) plot(R,Ts) ylabel('torque') xlabel('rotor resistance') grid on
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!