Skip to content

Commit

Permalink
Merge pull request #40 from pyiron/lmp_atom_modify
Browse files Browse the repository at this point in the history
reordering of input items in Lammps
  • Loading branch information
samwaseda committed Jan 26, 2021
2 parents a47a13b + b3990c3 commit d9145e6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyiron_atomistics/lammps/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,14 @@ def dataset(self):
def _init_block_dict(self):
block_dict = OrderedDict()
block_dict["read_restart"] = "read_restart"
block_dict["structure"] = (
block_dict["environment"] = (
"units",
"dimension",
"boundary",
"atom_style",
"atom_modify",
)
block_dict["structure"] = (
"read_data",
"include",
)
Expand Down

0 comments on commit d9145e6

Please sign in to comment.