CactusPie
- 2
- 0
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 know what value should I use during first iteration for
r(t-Δt)
Could someone please help me?
r(t + Δt) = 2r(t) - r(t-Δt) + a(t)Δt^2
I don't really know what value should I use during first iteration for
r(t-Δt)
Could someone please help me?