Skip to content

Commit

Permalink
Fixing velocity conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
ltimmerman3 committed Nov 18, 2024
1 parent 4ed83af commit 050534e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparc/sparc_parsers/aimd.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _read_aimd_step(raw_aimd_text):
value = raw_value.reshape((-1, 3)) * Bohr
elif header_name == "V":
name = "velocities"
value = raw_value.reshape((-1, 3)) * Bohr / AUT / (Angstrom / fs)
value = raw_value.reshape((-1, 3)) * Bohr / AUT
elif header_name == "F":
name = "forces"
value = raw_value.reshape((-1, 3)) * Hartree / Bohr
Expand Down

0 comments on commit 050534e

Please sign in to comment.