How to draw a Motor efficiency map having speed, torque and efficiency?
Afficher commentaires plus anciens
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!
Réponses (1)
J Chen
le 8 Fév 2022
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 commentaires
Simone Scerra
le 8 Fév 2022
Sudha Panthi
le 10 Fév 2022
Did you solve it? I am also looking for the solution.
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!