Info
This question is closed. Reopen it to edit or answer.
Does Simulink ignore the values of the parameters of the blocks in the diagram while detecting algebraic loops?
1 view (last 30 days)
Show older comments
It appears that Simulink detects an algebraic loop by analyzing the structure of the model but not the parameters of the blocks - see the screenshot below. The algebraic loop was detected and visualised by typing in the command line
Simulink.BlockDiagram.getAlgebraicLoops(bdroot)
Is this correct? And is this desirable? In this case, there is in fact no algebraic loop there.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/195935/image.png)
0 Comments
Answers (1)
Arunkumar M
on 10 Nov 2018
The input of the SUM block are taken from output of the sum block - which is why you are getting algebraic loop problem, as at the first time step, there wont be any output from sum block. Hence, simulink usually takes default value (0) in such cases.
2 Comments
Arunkumar M
on 13 Nov 2018
Edited: Arunkumar M
on 13 Nov 2018
The value of the gain block doesnt matter here. Simulink only checks, during simulation of each time step, whether it has all required input values.
Irrespective of what is the gain value, the input of gain block is the output of sum block, for which the value will be obtained only from second time step. So simulink has to assume a default value (0) in this case for the first time step.
Try adding unit delay at the output of sum block - I hope that solves the algebraic loop probelm.
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!