Skip to content

Commit

Permalink
Cleaned thermochemistry to frequency parser
Browse files Browse the repository at this point in the history
  • Loading branch information
abelcarreras committed Aug 17, 2021
1 parent 368328f commit b884d71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyqchem/parsers/parser_frequencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ def get_data_from_line(text):
tot_enthalpy, tot_enthalpy_unis = get_data_from_line('Total Enthalpy')
tot_entropy, tot_entropy_units = get_data_from_line('Total Entropy')

thermochemistry = {'zpe': zpe, 'zpe_units': zpe_units,
thermochemistry = {'conditions': {'temperature': 298.15, 'temperature_units': 'K',
'pressure': 1.00, 'pressure_units': 'atm' },
'zpe': zpe, 'zpe_units': zpe_units,
'trans_enthalpy': trans_enthalpy, 'trans_enthalpy_units': trans_enthalpy_units,
'rot_enthalpy': rot_enthalpy, 'rot_enthalpy_units': rot_enthalpy_units,
'vib_enthalpy': vib_enthalpy, 'vib_enthalpy_units': vib_enthalpy_units,
Expand Down

0 comments on commit b884d71

Please sign in to comment.