Electromagnetic Power and Torque Plot

I'm trying to plot torque and power based off of my variable slip (S). My slip will run from 0 to 1 with .01 stepsize. Listed below is my code, but when I run the program, the plot comes up empty. Any guidance would be much appreciated.
Pa = 25.08;
Pfwc = 265;
Ws = 188.5;
S = [0:.01:1];
T = (Pa*(1-S)-Pfwc)/((1-S)*Ws);
Plot = (S,T)

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 4 月 11 日

0 投票

Try this
Pa = 25.08;
Pfwc = 265;
Ws = 188.5;
S = 0:.01:1;
T = (Pa*(1-S)-Pfwc)./((1-S)*Ws);
plot(S,T)

カテゴリ

ヘルプ センター および File ExchangePower and Energy Systems についてさらに検索

質問済み:

2020 年 4 月 11 日

回答済み:

2020 年 4 月 11 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by