VelocityVerlet #
VelocityVerlet
integrator performs constant energy simulation according to Newtonian dynamics.
Example #
[simulator]
integrator.type = "VelocityVerlet"
integrator.remove.translation = true
integrator.remove.rotation = true
integrator.remove.rescale = true
Input reference #
Some of the other parameters, such as delta_t
, are defined in [simulator]
table.
type
: String- The name of Integrator. Here, it is
"VelocityVerlet"
.
- The name of Integrator. Here, it is
remove
: Table (optional)translation
androtation
: Boolean- If
true
, it removes the total translation and rotation. Otherwise, it does nothing.
- If
rescale
: Boolean- If
true
, it rescales all the velocities to make kinetic energy constant.
- If
- By default, all the fields becomes
false
.