What does the Following mean in Simulink
1 次查看(过去 30 天)
显示 更早的评论
With Reference to calculate Id current, I found following algorithm. Can anyone tell me about the purpose of this
1 个评论
Peter O
2021-7-22
Check this link out:
https://www.mathworks.com/matlabcentral/discussions/power-electronics-control/134439-pmsm-in-motor-control-block
采纳的回答
更多回答(1 个)
Varun Nair
2021-7-22
1 个评论
Walter Roberson
2021-7-22
- you can create a variable named Ldq in the base workspace (and hope that it stays existing)
- you can create a function or script that creates Ldq in the base workspace, and then invokes sim() to start the model
- you can, if I understand correctly, create a function that creates Ldq in the function workspace, and then invoke sim() to start the model
- you can create a Simulink variable named Ldq; https://www.mathworks.com/matlabcentral/answers/351732-define-variable-value-in-simulink-model#answer_415063
- you can create a Simulink global variable; see https://www.mathworks.com/help/simulink/ug/use-global-variables-in-system-objects.html
- you can set up a model initialization function callback that assigns Ldq in the base workspace
- you can use a From Workspace block
- you can use a From File block
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Event Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!