Agade
Agade

Reputation: 545

Is there a Time Corrected Velocity Verlet algorithm?

I know of Velocity Verlet which doesn't have the initialisation issue of Verlet and has velocity calculation in it's workings, and Time Corrected Verlet which is correct for varying timesteps but doesn't include velocity calculations . I would like something like a "Time Corrected Velocity Verlet" which incorporates velocity calculations like Velocity Verlet and is correct with varying timesteps like Time-Corrected Verlet. Is this a well known algorithm I can find somewhere? I havn't found it on stackoverflow or google.

Upvotes: 2

Views: 400

Answers (1)

Agade
Agade

Reputation: 545

Time Corrected Velocity Verlet is Velocity Verlet. Looking at Velocity Verlet and it's derivation one can see it isn't wrong with varying timesteps. One can also test this with a simple system and a variable timestep. Time-Corrected Verlet and Velocity Verlet yield similar solutions.

I was convinced Velocity Verlet had to be wrong with varying timesteps if Verlet was. But it turns out those algorithms are more different than the names would suggest.

Upvotes: 1

Related Questions