Implementing Equation in matlab

I have to implement park transformation ,the input to park transformation is
Va,Vb,Vc and theta and output is Vq,please tell how to implement this block

7 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 28 日
Are you using simulink?
FIR
FIR 2012 年 12 月 28 日
Yes azzi am using simulink
Jan
Jan 2012 年 12 月 28 日
編集済み: Jan 2012 年 12 月 28 日
@FIR: As usual I ask, what you have done so far and which problems have occurred. And again I add the "doit4me" tag, because I do not see any own effort or that you've spent enough time and energy to make your question clear.
An impressing large number of your question is marked by doit4me tags. Doesn't this let you think twice if you are perhaps trying to abuse this forum to do your work?
FIR
FIR 2012 年 12 月 28 日
Jan i have tried it as i was not correct
this is the model i have tried,but the output must be as
Jan
Jan 2012 年 12 月 28 日
@FIR: Do you think, that you make answering your questions as easy as possible? You did not answer a lot of questions for clarifications in the past. More than 50% of your questions could not be answered sufficiently.
FIR
FIR 2012 年 12 月 28 日
ok Jan can you please tell what caarification i have to make for this question
Image Analyst
Image Analyst 2013 年 1 月 5 日
Out of 200 questions you've asked, you've accepted only 47% of them (as shown in your profile). Does that mean we have a 53% chance of wasting both your time and our time if we spend time helping you?

サインインしてコメントする。

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 28 日
編集済み: Azzi Abdelmalek 2012 年 12 月 28 日

0 投票

You can use Matlab function block or Interpreted Matlab Function block to implement your abc-dq transformation

8 件のコメント

FIR
FIR 2012 年 12 月 28 日
Azzi its park transformation,but can i use block present in simulink,it has only one input.the eq is
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 28 日
The image just show the transformation matrix. You have to read basis of Park transformation http://en.wikipedia.org/wiki/Dqo_transformation
FIR
FIR 2013 年 1 月 4 日
i have read a paper REGARDING SRF PLL,where the PLL block is not present
http://imgur.com/S30Kd for SRF PLL,please tell is the block in the image is correct
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 4 日
FIR, you don't need a two blocks abc-alfa,beta then alfa,beta-dq, you can use one block abc-dq, with 4 inputs ua, ub, uc, the angle theta and two outputs ud, uq. You just need to get the Park transformation matrix, and use a matlab function block to make your program.
FIR
FIR 2013 年 1 月 5 日
Azzi is this mdl block correct
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 5 日
編集済み: Azzi Abdelmalek 2013 年 1 月 5 日
This is exact. But you can simply use one block instead all those blocks. a matlab function block with a function
function [ud,uq]=fcn(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);
The gain 2/3 or sqrt(2/3) depends on the Park transformation you've chosen.
FIR
FIR 2013 年 1 月 5 日
Thanks Azzi i have modelled as per the diagram
but why am not getting same output,please assist
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 5 日
FIR, I think it was clear how to program a Park transformation block, by the blocks you found or by the block I suggested. Maybe you have some problem with theory, I think you should read this theory.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by