make names of custom data functions consistent

This commit is contained in:
Axel Kohlmeyer
2020-10-19 01:00:31 -04:00
parent f74203fb33
commit 5a70ee8a40
6 changed files with 17 additions and 9 deletions

View File

@ -13,7 +13,7 @@ lammps_command(lmp, "create_atoms 1 box")
print("LAMMPS version ",ver)
print("Number of created atoms: %g" % lammps_get_natoms(lmp))
print("Current size of timestep: %g" % doublep_value(void_to_double(lammps_extract_global(lmp,'dt'))))
print("Current size of timestep: %g" % double_p_value(void_p_to_double_p(lammps_extract_global(lmp,'dt'))))
lammps_close(lmp)
EOF