Molecular Dynamics Simulations

JMD.jl can perform classical molecular dynamics simulations in the NVE and NVT ensemble.

using JMD

bdys = readSystem("water.xyz")

ensemble = NVE()

traj = run(TIP4Pf(), bdys, (0.0, 5ps), 0.1fs, ensemble)
using JMD

bdys = readSystem("water.xyz")

ensemble = Berendsen(100.0, 50fs) |> NVT

traj = run(TIP4Pf(), bdys, (0.0, 5ps), 0.1fs, ensemble)