Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 192 Bytes

readme.md

File metadata and controls

11 lines (8 loc) · 192 Bytes

BouncingBall

The BouncingBall implements the following system of equations:

der(h) = v
der(v) = g

when h <= 0    then h := 0 and v := -e * v
when v < v_min then h := 0 and v := 0