Is an implementation of geometrical integrators like RK4 for molecular dynamics possible in the HOOMD framework? #1912
-
Hello HOOMD users, I am currently using HOOMD to simulate a swarm-like system of particles driven by a predator particle on a chaotic trajectory. The system has dissipative forces and is thus non-hamiltonian. Thank you in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, you could write a custom component that implements Runge-Kutta or any integrator you like. HOOMD-blue defines an
You can implement custom integrators in a C++ component: https://github.com/glotzerlab/hoomd-component-template/ |
Beta Was this translation helpful? Give feedback.
Yes, you could write a custom component that implements Runge-Kutta or any integrator you like. HOOMD-blue defines an
Integrator
as an operation that evolves the state of the simulation at some step t to step t+1:You can implement custom integrators in a C++ component: https://github.com/glotzerlab/hoomd-component-template/