In Simulink, why do two unrelated modules affect each other?
Show older comments
In Simulink, I created two computation modules A and B, as shown in Figure 1. Modules A and B are independent of each other and do not share any data. When A and B are not connected, the time history chart calculated by Module A is shown in Figure 1. However, when A is connected to B, Module A calculates a different time history chart, as shown in Figure 2. Note that Module B does not form a closed-loop with Module A. Why does this situation occur? I would appreciate it if anyone could tell me the reason, thank you very much.
Additionally, I found that as long as module A is connected with the transfer function module (without forming a closed-loop circuit), the time course graph on the oscilloscope will change.


Answers (1)
Paul
on 19 Jul 2024
0 votes
Even if A and B are not connected, changes in B can causes changes in output of A because those changes in B can affect the step size in the solver. Whether or not that is the case depends on your solver settings and whether or not you have the optimization turned on to not execute blocks that don't need to be executed, which appears to be the case in the first instance as (it appears) there are no signals being logged from B.
In the second case, connecting B to A could affect the step size of the solver as compared to the unconnected case, again depending on your solver settings.
The default solver settings use a variable step solver, so if you haven't changed from the default that's probably what's happening. A quick check would be to run both configurations and compare the tout (default name) output variable from the simulation so you can compare the simulation step times from both cases.
5 Comments
ZF
on 20 Jul 2024
Paul
on 21 Jul 2024
Ok. Let's try next steps.
Are your sure that all three Cases use the same block parameters, like El and the gains in the gain blocks?
Is there anything happening in the NNII function that could cause different results from run to run, like a call to rand or some other similar function? If you run each Case two times in a row, is the scope output the same?
I'm not familiar at all with the DataStore usage, and so not clear on when the DataStoreWrites and DataStoreReads execute relative to the execution of NNII. Actually, I'm surprised that building the model doesn't result in some sort of warning (at least) with that architecture. Anyway, maybe the order of those writes/reads changes for the different configurations for some reason. The DataStoreMemory block has three different parameters for diagnostics that might be helpful to see if this ordering is an issue, and they are defaulted to 'warning'. Are you seeing any warnings in the Diagnostics pane and, if so, are they the same for three different Cases? You can also go to Debug -> Information Overlays -> Execution Order and see if any blocks in the A subsystem are executed in a different order for each Case.
ZF
on 22 Jul 2024
Paul
on 22 Jul 2024
You're very welcome.
Would you mind providing a bit more detail on what the warning was and how it was addressed to solve the problem? Might be useful for others that might run into the same situation.
ZF
on 22 Jul 2024
Categories
Find more on Simulink Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




