Skip to content
Snippets Groups Projects
Commit a1a8105b authored by Mikkel Strange's avatar Mikkel Strange
Browse files

fix inverse units of forces

parent 9191538d
No related branches found
No related tags found
No related merge requests found
......@@ -87,10 +87,10 @@ def parse(filename):
c(f.get_total_energy(), 'eV'))
p.addArrayValues('atom_forces',
c(f.get_forces(),
'angstrom/eV'))
'eV/angstrom'))
p.addArrayValues('atom_forces_raw',
c(f.get_forces(apply_constraint=False),
'angstrom/eV'))
'eV/angstrom'))
with o(p, 'section_sampling_method'):
p.addValue('ensemble_type', 'NVE')
p.finishedParsingSession("ParseSuccess", None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment