Recent content by CactusPie
-
C
Undergrad Verlet integration - first iteration
Thank you very much, that really helped! -
C
Undergrad Verlet integration - first iteration
I'm trying to make a simple simulation of a projectile motion with air drag. I have already implemented it using Euler and fourth order Runge Kutta methods. I am however unsure about Verlet integration. The equation goes as follows: r(t + Δt) = 2r(t) - r(t-Δt) + a(t)Δt^2 I don't really...