Data was read before writing to - StateFlow transition

12 views (last 30 days)
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.

Answers (1)

Altaïr
Altaïr on 2 Jan 2025
Edited: Altaïr on 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:

Categories

Find more on Decision Logic in Help Center and File Exchange

Products


Release

R2023a

Community Treasure Hunt

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

Start Hunting!