How to draw a Motor efficiency map having speed, torque and efficiency?

조회 수: 41 (최근 30일)
Simone Scerra
Simone Scerra 2022년 2월 8일
댓글: Sudha Panthi 2022년 2월 10일
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!

답변 (1개)

J Chen
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
Simone Scerra
Simone Scerra 2022년 2월 8일
Thank you for your reply. It gives me an error on Z (it needs to be a 2x2 vector) but I only have a column of data from the manufacturer...
Sudha Panthi
Sudha Panthi 2022년 2월 10일
Did you solve it? I am also looking for the solution.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Purple에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by