Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion torch_sim/integrators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using BAOAB scheme [1]
- Nosé-Hoover thermostat integrator :func:`nvt.nvt_nose_hoover_step` from [2]
NPT:
- Langevin barostat integrator :func:`npt.npt_langevin_step`
- Langevin barostat integrator :func:`npt.npt_langevin_step` [3, 4]
- Nosé-Hoover barostat integrator :func:`npt.npt_nose_hoover_step` from [2]

References:
Expand All @@ -21,6 +21,11 @@
[2] Martyna, G. J., Tuckerman, M. E., Tobias, D. J., & Klein, M. L. (1996).
Explicit reversible integrators for extended systems dynamics.
Molecular Physics, 87(5), 1117-1157.
[3] Grønbech-Jensen, N., & Farago, O. (2014).
Constant pressure and temperature discrete-time Langevin molecular dynamics.
The Journal of chemical physics, 141(19).
[4] LAMMPS: https://docs.lammps.org/fix_press_langevin.html


Examples:
>>> import torch_sim as ts
Expand Down