Query regarding induction motor equation
3 views (last 30 days)
Show older comments
Hello,
I am doing a project on modelling of induction motor in simulink. I am stuck at one position. I can't find a way to solve an equation (I have given the link of the paper http://www.arpnjournals.com/jeas/research_papers/rp_2009/jeas_0809_230.pdf ) The equation to be solved is eq 6.... I have to obtain the four values of current viz ids, iqs, idr, iqr. Can anyone help me with this please...?? It's very urgent.
Thank you
0 Comments
Answers (1)
Jarrod Rivituso
on 25 Apr 2011
Hmm... I can think of two options
1. Use a Divide block, with the "Multiplication" setting to "Matrix". Then, pass the 4-by-4 matrix into a divide port of the Divide block and the V vector in to a multiplication port of the divide block.
2. Use an "MATLAB Function" block (formerly known as the Embedded MATLAB Function block, for pre R2011a users). You could have two inputs - V and the 4-by-4 matrix (A). Then, solve for i with
i = A \ V
To be honest I'm not sure which approach is more efficient numerically (generally, these systems are more accurately solved if you avoid taking the inverse of the matrix and instead solve the system of equations as a whole).
There's a brief description of the matrix behavior of the product block in the "Matrix mode" section here:
Hope this helps!
0 Comments
Communities
More Answers in the Power Electronics Control
See Also
Categories
Find more on Motor Drives in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!