How does Velocity Verlet integration improve accuracy in modeling fast dynamics?

AI Thread Summary
Velocity Verlet integration improves accuracy in modeling fast dynamics by integrating both velocity and position simultaneously, resulting in higher precision for velocity calculations. Unlike traditional Verlet integration, which computes velocity post-integration and incurs O(Δt²) errors, Velocity Verlet achieves O(Δt³) accuracy. This method is particularly useful in scenarios where higher-order techniques like RK4 may not be suitable due to the need for matching integration frequencies with fast dynamics. The discussion highlights the importance of using appropriate integration techniques based on the dynamics being modeled. Overall, Velocity Verlet integration is a valuable tool for enhancing the accuracy of simulations in fast dynamic systems.
squid
Messages
14
Reaction score
0
Hi!
Could anyone explain me why Velocity Verlet integration works and how did Loup Verlet come up with it?

Thanks!
 
Physics news on Phys.org
I saw that too. Links from that page suggest that "Velocity Verlet" integration is somewhat different from "Verlet integration".

EDIT

Found it http://www.ch.embnet.org/MD_tutorial/pages/MD.Part1.html". Velocity Verlet integration integrates velocity as well as position via a modified Euler scheme:
v(t+\Delta t) = v(t) + \frac 1 2 (a(t)+a(t+\Delta t))\Delta t

Plain Jane Verlet integration computes velocity post-integration, resulting in O(\Delta t^2) velocity errors. The Velocity Verlet integration yields O(\Delta t^3) accuracy for velocity.

/EDIT

We typically use higher-order propagation techniques to achieve a high level of accuracy. It's pretty hard to beat good old RK4 in a regime where the integration frequency has to match the thruster control frequency (10 to 100 Hz or so) while the orbital dynamics operate at a much slower frequency.

However, we sometimes need to revert to lower order techniques to model flex (very fast dynamics). This technique and related ones (e.g., http://en.wikipedia.org/wiki/Beeman%27s_algorithm" ) look very promising.

Thanks to the OP.
 
Last edited by a moderator:
I have recently been really interested in the derivation of Hamiltons Principle. On my research I found that with the term ##m \cdot \frac{d}{dt} (\frac{dr}{dt} \cdot \delta r) = 0## (1) one may derivate ##\delta \int (T - V) dt = 0## (2). The derivation itself I understood quiet good, but what I don't understand is where the equation (1) came from, because in my research it was just given and not derived from anywhere. Does anybody know where (1) comes from or why from it the...

Similar threads

Replies
2
Views
4K
Replies
4
Views
2K
Replies
55
Views
19K
Replies
2
Views
4K
Replies
3
Views
2K
Replies
1
Views
3K
Replies
6
Views
2K
Back
Top