trick/trick_source/trick_utils/SAIntegrator/examples/BouncyCannonBall
2021-02-25 22:58:39 -06:00
..
images Add BouncyCannonBall example to demonstrate dynamic events. #1097 2021-01-27 12:27:01 -06:00
.gitignore SAIntegrator: Add gitignore files. 2021-02-25 22:58:39 -06:00
BouncyCannonBall.cpp Add BouncyCannonBall example to demonstrate dynamic events. #1097 2021-01-27 12:27:01 -06:00
makefile Add BouncyCannonBall example to demonstrate dynamic events. #1097 2021-01-27 12:27:01 -06:00
plot_trajectory.py Add BouncyCannonBall example to demonstrate dynamic events. #1097 2021-01-27 12:27:01 -06:00
README.md Add BouncyCannonBall example to demonstrate dynamic events. #1097 2021-01-27 12:27:01 -06:00

BouncyCannonBall

The BouncyCannonBall program adds dynamic events to the Cannonball simulation. using a rootfinder with our integrator to detect contact with the ground, and bounce the cannonball.

For each numerical integration time-step, the simulation program prints:

  1. time (s)
  2. 2D position vector (m)
  3. 2D velocity vector (m/s)

to stdout, in Comma Separated Values (CSV) format.

Building & Running the Simulation Program

Generate the results as follows:

$ make
$ ./BouncyCannonBall > cannon.csv

Plotting the Results

The Python script, plot_trajectory.py is provided to plot the results in cannon.csv using (Python) matplotlib.

Plot the cannon ball trajectory as follows:

$ python plot_trajectory.py

Cannon