Skip to content

Commit

Permalink
remove mass 2
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz authored Nov 18, 2023
1 parent 77b4cc5 commit 9544e35
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions source/lmp/tests/test_lammps_faparam.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ def _lammps(data_file, units="metal") -> PyLammps:
lammps.read_data(data_file.resolve())
if units == "metal" or units == "real":
lammps.mass("1 16")
lammps.mass("2 2")
elif units == "si":
lammps.mass("1 %.10e" % (16 * constants.mass_metal2si))
lammps.mass("2 %.10e" % (2 * constants.mass_metal2si))
else:
raise ValueError("units should be metal, real, or si")
if units == "metal":
Expand Down

0 comments on commit 9544e35

Please sign in to comment.