i want to add switch blocks that switches my input
1 次查看(过去 30 天)
显示 更早的评论
hi,
i tried to add an switch block to my model to switch the input to the divider betwenn the look up table to a constat of 0.
im putting the conditions properly but everytime i running the simulation its stops me when it reaches the condition i gave him and i cannot understand why or how i can make that switching.
please help me :(
2 个评论
Saurabh
2023-6-6
By Looking at the Image I can figure out that if voltageBattery value is greather than or equal to 470, then it will take the Constant value otherwise 0.
Am I right?
And Can You Provide a little bit more description about the error you are getting?
回答(1 个)
Jon
2023-6-6
The problem you have is not with the switch, but with the "algebraic loop" that is formed when the switch changes state.
Please read about algebraic loops here, https://www.mathworks.com/help/simulink/ug/algebraic-loops.html
Typically you will find a loop of blocks all with "direct feedthrough".
First check if you really intended to create an algebraic loop, or whether you are missing for example some integration or time delay block that would have broken the loop. If not, a typical work around is to add a small delay somewhere in the loop, but you should check that this would still give you physically meaningful results before you resort to this approach.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 General Applications 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!