Data was read before writing to - StateFlow transition

10 Ansichten (letzte 30 Tage)
LostControl
LostControl am 16 Apr. 2023
Bearbeitet: Altaïr am 2 Jan. 2025
When trying to implement the bouncing ball using differential equations and continous simulation, as described on mathworks.com, I seem to encounter an error.
If I use transition condition falling(p), as shown on mathworks.com, an error is raised:
Error:The data p was read before being written to. This error will stop the simulation.
Transition in Chart 'simple_ball_ode/Falling':
[falling(p)]
If I use a condition p<=0 instead, the error is gone and simulation runs properly.
Please see the images for clarification. I would really appreciate some help, cause I am clueless at this point.

Antworten (1)

Altaïr
Altaïr am 2 Jan. 2025
Bearbeitet: Altaïr am 2 Jan. 2025
The falling(p) transition condition compares the previous and current values of the variable p to return a Boolean value. The error data p was read before being written to, could arise when the previous value of the variable is not available. To address this issue, ensure that the Execute (enter) chart at initialization option is checked in the properties of the chart.
Alternatively, initializing the variable p should resolve the issue.
Here are some related links for further reading:

Kategorien

Mehr zu Decision Logic finden Sie in Help Center und File Exchange

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by