Skip to content

Commit 20701aa

Browse files
authored
Fix indentation in the LAMMPS documentation (#35)
1 parent a107e70 commit 20701aa

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/lammps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Running in LAMMPS is supported starting from FlashMD 0.2.5. Make sure you have a
88
updated version:
99

1010
```bash
11-
pip install flashmd --upgrade
11+
pip install flashmd --upgrade
1212
```
1313

1414
Next, you will need to install a version of LAMMPS with FlashMD enabled. Here, we focus
@@ -47,12 +47,12 @@ LAMMPS will need the FlashMD model and, in some cases, the energy model (MLIP) i
4747
trained on. Here is how you can get them in the current directory from Python:
4848

4949
```py
50-
from flashmd import get_pretrained
50+
from flashmd import get_pretrained
5151

52-
time_step = 16 # 16 fs, also available: 1, 2, 4, 8, 32, 64, 128 fs
53-
energy_model, flashmd_model = get_pretrained("pet-omatpes-v2", time_step)
54-
energy_model.save("mlip.pt")
55-
flashmd_model.save(f"flashmd-{time_step}.pt")
52+
time_step = 16 # 16 fs, also available: 1, 2, 4, 8, 32, 64, 128 fs
53+
energy_model, flashmd_model = get_pretrained("pet-omatpes-v2", time_step)
54+
energy_model.save("mlip.pt")
55+
flashmd_model.save(f"flashmd-{time_step}.pt")
5656
```
5757

5858
**Note:** Stick to no more than 30x the time step that you would use in normal MD for your system!

0 commit comments

Comments
 (0)