I am not able to understand how to implement this into simulink.

조회 수: 2 (최근 30일)
Varun Nair
Varun Nair 2021년 7월 26일
댓글: Varun Nair 2021년 8월 5일
This is a stator current and Rotor angle (Beta) look up table under working condition.
How can I implement a look up table in simulink to decide the optimum points.

채택된 답변

Peter O
Peter O 2021년 7월 26일
Fortunately, that current map looks very smooth. Consider using the 2D lookup block: https://www.mathworks.com/help/simulink/slref/2dlookuptable.html
Use one block for beta and another for magnitude, same inputs to each.
You will need to decide how you want it to handle edge cases where the inputs don't map inside the table boundaries.
  댓글 수: 5
Peter O
Peter O 2021년 8월 3일
I'm not sure if you'll need the Model Calibration Toolbox. Golden section search is a way of locating the optimum point along a curve by taking steps in a division driven by the golden ratio. This is a complicated problem, so I would recommend approaching it with several smaller steps.
  1. Formulate your golden section search algorithm code. Test its performance on a simple optimization function to which you know the "true" solution.
  2. Formulate the Simulink model of the motor, drive, and current controller. Verify its performance in open-loop by supplying a known current magnitude, angle, and speed. You can solve the steady-state formulation analytically to verify your model is outputting the correct information.
  3. Your cost function on the optimizer is probably to maximize the system efficiency.
  4. Sweep the operating domain of speed and torque points into the steady-state analytical formulation. The optimizer will report back the "best" current angle and magnitude for each power point.
  5. Collect these optimal values into the 2D lookup table that the "torque command" block area feeds to establish the full model with dynamic control. The PI controller in that block will probably also need some tuning to get the system to respond at the right level of agressiveness.
Varun Nair
Varun Nair 2021년 8월 5일
It looks bit complicated with the time frame I have with me now.

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

추가 답변 (0개)

커뮤니티

더 많은 답변 보기:  Power Electronics Community

카테고리

Help CenterFile Exchange에서 Get Started with Model-Based Calibration Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by