How to draw efficiency map contour of a motor?
143 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Praveen Kumar
el 4 de Sept. de 2017
Comentada: DGM
el 23 de Abr. de 2024
Given vectors of Speed, Torque and Efficiency. How do I draw the contour for efficiency map of the motor in matlab?
6 comentarios
Shraddha Walvekar
el 5 de Mzo. de 2022
How can we create lookup table 2D (obsolete) using electric motor efficiency map?
Kundan
el 28 de Dic. de 2022
Hello may any one guide me how to get builtin simulink model of PMSM based 3 phase inverter
Respuesta aceptada
KSSV
el 4 de Sept. de 2017
x0 = min(speed) ; x1 = max(speed) ; nx = 100 ;
y0 = min(torque) ; y1 = max(torque) ; ny = 100 ;
x = linspace(x0,x1,nx) ;
y = linspace(y0,y1,ny) ;
[X,Y] = meshgrid(x,y) ;
Z = griddata(speed,torque,efficiency,X,Y)
contour(X,Y,Z)
Where speed, torque and efficiency are vectors.
21 comentarios
Afaf
el 23 de Abr. de 2024
have you find the code to plot the efficiency map? i need it also if you can share
DGM
el 23 de Abr. de 2024
The answer has already been given. If you need something different, then it's up to you to describe what data you actually have and what specifically you want to do with it.
Más respuestas (1)
Kundan
el 20 de En. de 2023
Hello dear, please guide me. I want to draw efficieny map, I have toque, speed data but no efficieny data. How can I get the efficieny data in Simulink model. Please gudie me.
3 comentarios
Kundan
el 20 de En. de 2023
Dear parveen kumar, I m facing difficulty to calculate the efficiency, so need your guidance,. May you give me your whatsapp no or email so that I may forward my simulink model to you. Please dear sir guide me
Comunidades de usuarios
Más respuestas en Power Electronics Control
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!