From 416e043eced0e40cfd8aa54061a98652a42ea477 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 2 Sep 2025 22:52:26 +0800 Subject: [PATCH] docs(lmp): fix the usage of LAMMPS `pair_style hybrid/overlay` As documented in https://docs.lammps.org/pair_hybrid.html, "In the pair_coeff commands, the name of a pair style must be added after the I,J type specification". Signed-off-by: Jinzhe Zeng --- doc/third-party/lammps-command.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/third-party/lammps-command.md b/doc/third-party/lammps-command.md index fd8aab7c52..25a77f8670 100644 --- a/doc/third-party/lammps-command.md +++ b/doc/third-party/lammps-command.md @@ -319,6 +319,6 @@ For example, when `water.pb` is trained against the PBE0 functional, the simulat ```lammps pair_style hybrid/overlay deepmd water.pb dispersion/d3 original pbe0 30.0 20.0 -pair_coeff * * O H -pair_coeff * * O H +pair_coeff * * deepmd O H +pair_coeff * * dispersion/d3 O H ```