Skip to content

Commit

Permalink
Fixed incorrect conversion of kJ/mol to J
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernadette-Mohr committed Jul 26, 2024
1 parent 81682c8 commit 983119d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atomisticparsers/gromacs/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def __init__(self):
self.mdp_std_filename = "mdout"
self.xvg_parser = GromacsXvgParser()
self.input_parameters = {}
self._gro_energy_units = ureg.kilojoule * MOL
self._gro_energy_units = (ureg.kilojoule / ureg.avogadro_number) * ((1000 * ureg.joule) / ureg.kilojoule)
self._thermo_ignore_list = ["Time", "Box-X", "Box-Y", "Box-Z"]
self._base_calc_map = {
"Temperature": ("temperature", ureg.kelvin),
Expand Down

0 comments on commit 983119d

Please sign in to comment.