fix another typo

This commit is contained in:
Axel Kohlmeyer
2024-06-15 06:17:13 -04:00
parent 9b52f66a5a
commit ee0dd80cbe

View File

@ -801,7 +801,7 @@ class PyLammps(object):
comm['comm_style'] = ('brick', 'tiled')[idx] comm['comm_style'] = ('brick', 'tiled')[idx]
idx = self.lmp.extract_setting("comm_style") idx = self.lmp.extract_setting("comm_style")
comm['comm_layout'] = ('uniform', 'nonuniform', 'irregular')[idx] comm['comm_layout'] = ('uniform', 'nonuniform', 'irregular')[idx]
comm['ghost_velocity'] = self.lmp_extract_setting("ghost_velocity") == 1 comm['ghost_velocity'] = self.lmp.extract_setting("ghost_velocity") == 1
for line in output: for line in output:
if line.startswith("MPI library"): if line.startswith("MPI library"):