How to draw a Motor efficiency map having speed, torque and efficiency?
28 ビュー (過去 30 日間)
古いコメントを表示
I'm looking for a way to draw a motor efficiency map.
I have a 1x1 vector for each: speed, torque and efficiency.
I need an efficiency map like this:
I tried with contour command but I'm getting a totally different rapresentation from what I need.
Thank you in advance!
0 件のコメント
回答 (1 件)
J Chen
2022 年 2 月 8 日
Use contour(x,y,z), where x, y need to be in grid corrdinate. You can study the following example for the grid coordinate
x = 1:3;
y = 1:5;
[X,Y] = meshgrid(x,y)
Next get z for each (x,y) pair
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Red についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!