File tree 2 files changed +24
-0
lines changed
imdclient/tests/hpc_testing/lammps
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -44,4 +44,22 @@ pytest -s ../../test_manual.py \
44
44
--topol_arg topology_after_min.data \
45
45
--traj_arg lammps_trj.h5md \
46
46
--first_frame_arg 1
47
+ ```
48
+
49
+ ``` bash
50
+ ./lmp < /Users/ljwoods2/workspace/imdclient/imdclient/tests/hpc_testing/lammps/lammps_v3.in
51
+
52
+ ```
53
+
54
+
55
+ ``` bash
56
+ module load mamba
57
+ # Environment containing IMDClient
58
+ source activate imdclient-test
59
+
60
+ pytest -s imdclient/tests/test_manual.py \
61
+ --topol_path_arg imdclient/tests/hpc_testing/topology_after_min.data \
62
+ --traj_path_arg imdclient/tests/hpc_testing/ \
63
+ --first_frame_arg < first traj frame to compare to IMD>
64
+
47
65
```
Original file line number Diff line number Diff line change @@ -42,13 +42,19 @@ velocity all create 300 102939 dist gaussian mom yes rot yes
42
42
# this is equlibration process.
43
43
fix 1 all nve
44
44
45
+ ## H5MD settings
46
+ dump h5md1 all h5md 1 lammps_trj.h5md position velocity force box yes
47
+ dump_modify h5md1 unwrap no
48
+
45
49
## IMD settings
46
50
# https://docs.lammps.org/fix_imd.html
47
51
fix 2 all imd 8888 version 3 unwrap off nowait off
48
52
49
53
## Run MD sim
50
54
run 100
51
55
56
+ undump h5md1
57
+
52
58
# Unfix the NVE. Additional lines if any will assume that this fix is off.
53
59
unfix 1
54
60
You can’t perform that action at this time.
0 commit comments