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

2 次查看(过去 30 天)
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.

请先登录,再进行评论。

更多回答(0 个)

社区

更多回答在  Power Electronics Control

类别

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