How to draw efficiency map contour of a motor?

조회 수: 30 (최근 30일)
Praveen Kumar
Praveen Kumar 2017년 9월 4일
댓글: DGM 2024년 4월 23일
Given vectors of Speed, Torque and Efficiency. How do I draw the contour for efficiency map of the motor in matlab?
  댓글 수: 6
Shraddha Walvekar
Shraddha Walvekar 2022년 3월 5일
How can we create lookup table 2D (obsolete) using electric motor efficiency map?
Kundan
Kundan 2022년 12월 28일
Hello may any one guide me how to get builtin simulink model of PMSM based 3 phase inverter

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

채택된 답변

KSSV
KSSV 2017년 9월 4일
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
Afaf
Afaf 2024년 4월 23일
have you find the code to plot the efficiency map? i need it also if you can share
DGM
DGM 2024년 4월 23일
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.

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

추가 답변 (1개)

Kundan
Kundan 2023년 1월 20일
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
Kundan
Kundan 2023년 1월 20일
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
Praveen Kumar
Praveen Kumar 2023년 1월 30일
Sorry, at present wont be able to look at your model. If you want to plot the efficiency map, please check above example. You need speed, torque and efficiency data.

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

커뮤니티

더 많은 답변 보기:  Power Electronics Community

카테고리

Help CenterFile Exchange에서 Choose and Parameterize Blocks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by