diff --git a/demo/ball_bounces.py b/demo/ball_bounces.py
index 455314ca29df2bf2b2551a80c0859e93a70352cb..696abd56b3d6e83cc964914d1ebbd8131d548544 100644
--- a/demo/ball_bounces.py
+++ b/demo/ball_bounces.py
@@ -92,7 +92,7 @@ if __name__ == "__main__":
     # this may be the cause for the VisibleDeprecationWarning
     # TODO: Longer term: We should initialize by writing expressions like "-2 \leq myball1.x \leq 5"
     # "-2 \leq myball1.x + myball2.x \leq 5"
-    traces = bouncingBall.simulate(40)
+    traces = bouncingBall.simulate(40,0.01)
     # TODO: There should be a print({traces}) function
     fig = go.Figure()
     fig = plotly_simulation_anime(traces, fig=fig)