forming the transformation matrix
古いコメントを表示
I have two images uploaded,i need to perform transformation matrix given in image
and i need a block in simulink as
http://imgur.com/F95lw plesae tell how to perform
回答 (1 件)
Azzi Abdelmalek
2012 年 10 月 26 日
1 投票
- The first image represents Park transformation, you can use two Matlab function for Direct and inverse transformation.
- The second shows simulink model containing subsystems, we can't guess what they contain, you can built your own model if you are familiar with simulink
10 件のコメント
kash
2012 年 10 月 26 日
kash
2012 年 10 月 26 日
Azzi Abdelmalek
2012 年 10 月 26 日
Use Matlab function to program
function u=park(ua,ub,uc,tetas)
uq=sqrt(2/3)*(cos(tetas)*ua+cos(tetas-2*pi/3)*ub+cos(tetas-4*pi/3)*uc);
ud=sqrt(2/3)*(-sin(tetas)*ua-sin(tetas-2*pi/3)*ub-sin(tetas-4*pi/3)*uc);
u=[uq ud];
and
function u=parki(ud,uq,tetas)
ua=sqrt(2/3)*(cos(tetas)*ud-sin(tetas)*uq);
ub=sqrt(2/3)*(cos(tetas-2*pi/3)*ud-sin(tetas-2*pi/3)*uq);
uc=sqrt(2/3)*(cos(tetas-4*pi/3)*ud-sin(tetas-4*pi/3)*uq);
u=[ua ub uc];
kash
2012 年 10 月 26 日
Azzi Abdelmalek
2012 年 10 月 26 日
編集済み: Azzi Abdelmalek
2012 年 10 月 26 日
You can get them in simpowersystem toolbox (in simscape).
for the function above, you have to use Matlab function block from simulink/user defined functions
kash
2012 年 10 月 26 日
Azzi Abdelmalek
2012 年 10 月 26 日
kash, take your time to explore what is under simpowersystem. in simulink search type pwm.
kash
2012 年 10 月 26 日
Azzi Abdelmalek
2012 年 10 月 26 日
kash, I think you have some gaps to fill, you can't in few minutes built a controller for your applications, maybe you have, first, to read how pwm works, the different technics used, try to built your own pwm model. After that it will be easy for you to understand how to use availables models in Matlab. I did'nt work with pwm, I can just guide you
kash
2012 年 10 月 26 日
カテゴリ
ヘルプ センター および File Exchange で Switches and Breakers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!