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)
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.

Answers (1)

Arunkumar M
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
Zdenek Hurak
Zdenek Hurak on 12 Nov 2018
Honestly, I am not sure I understand. You write that the input to the SUM block is taken from the output from the SUM block. But that is obviously not true here. See the zero gain.
Arunkumar M
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.

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!