cyrusyc commited on
Commit
da58f6e
·
1 Parent(s): 0a3d724

update lammps test

Browse files
Files changed (2) hide show
  1. tests/lammps/in.lammps +14 -3
  2. tests/lammps/log.lammps +15 -4
tests/lammps/in.lammps CHANGED
@@ -1,15 +1,26 @@
 
 
 
1
 
2
- # global parameters
3
  units real
4
  atom_style atomic
5
  atom_modify map yes
6
  newton on
7
 
 
 
 
 
8
  read_data initial.data
9
 
10
- # pair style
 
 
 
11
  pair_style mace
12
- pair_coeff * * ../../pretrained/2023-12-12-mace-128-L1_epoch-199.model-lammps.pt Na Cl
 
 
13
 
14
 
15
 
 
1
+ # ====================
2
+ # Global settings
3
+ # ====================
4
 
 
5
  units real
6
  atom_style atomic
7
  atom_modify map yes
8
  newton on
9
 
10
+ # ====================
11
+ # Structure
12
+ # ====================
13
+
14
  read_data initial.data
15
 
16
+ # ====================
17
+ # Potential
18
+ # ====================
19
+
20
  pair_style mace
21
+
22
+ # the elements need to match the order in the data file
23
+ pair_coeff * * ../../pretrained/2023-12-12-mace-128-L1_epoch-199.model-lammps.pt H Ni
24
 
25
 
26
 
tests/lammps/log.lammps CHANGED
@@ -1,24 +1,35 @@
1
  LAMMPS (28 Mar 2023 - Development)
2
  OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
3
  using 1 OpenMP thread(s) per MPI task
 
 
 
4
 
5
- # global parameters
6
  units real
7
  atom_style atomic
8
  atom_modify map yes
9
  newton on
10
 
 
 
 
 
11
  read_data initial.data
12
  Reading data file ...
13
  orthogonal box = (0 0 0) to (7.04 7.04 7.04)
14
  1 by 1 by 1 MPI processor grid
15
  reading atoms ...
16
  33 atoms
17
- read_data CPU = 0.020 seconds
 
 
 
 
18
 
19
- # pair style
20
  pair_style mace
21
- pair_coeff * * ../../pretrained/2023-12-12-mace-128-L1_epoch-199.model-lammps.pt Na Cl
 
 
22
 
23
 
24
 
 
1
  LAMMPS (28 Mar 2023 - Development)
2
  OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
3
  using 1 OpenMP thread(s) per MPI task
4
+ # ====================
5
+ # Global settings
6
+ # ====================
7
 
 
8
  units real
9
  atom_style atomic
10
  atom_modify map yes
11
  newton on
12
 
13
+ # ====================
14
+ # Structure
15
+ # ====================
16
+
17
  read_data initial.data
18
  Reading data file ...
19
  orthogonal box = (0 0 0) to (7.04 7.04 7.04)
20
  1 by 1 by 1 MPI processor grid
21
  reading atoms ...
22
  33 atoms
23
+ read_data CPU = 0.006 seconds
24
+
25
+ # ====================
26
+ # Potential
27
+ # ====================
28
 
 
29
  pair_style mace
30
+
31
+ # the elements need to match the order in the data file
32
+ pair_coeff * * ../../pretrained/2023-12-12-mace-128-L1_epoch-199.model-lammps.pt H Ni
33
 
34
 
35