Skip to content

Commit

Permalink
fixed results_dict to include terminated and no_scf keys to fix behav…
Browse files Browse the repository at this point in the history
…ior on non-populated output files
  • Loading branch information
jwtoney committed Nov 20, 2024
1 parent 6e64a5e commit e740056
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jobmanager/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def read_outfile(outfile_path, short_ouput=False, long_output=True):
'finished': False, 'min_energy': None, 'scf_error': False,
'thermo_grad_error': False, 'solvation_energy': None, 'optimization_cycles': None,
'thermo_vib_energy': None, 'thermo_vib_free_energy': None, 'thermo_suspect': None,
'orbital_occupation': None, 'oscillating_scf_error': False}
'orbital_occupation': None, 'oscillating_scf_error': False,
'terminated': False, 'no_scf': False}
return return_dict

output_type = ['TeraChem', 'ORCA'][counter]
Expand Down

0 comments on commit e740056

Please sign in to comment.