Skip to content

Commit

Permalink
Added another phrase for Gaussian trsh (#627)
Browse files Browse the repository at this point in the history
If the output file says "Error in GetGes" for a l401.exe error, try
removing the checkfile, it probably doesn't have the correct data
  • Loading branch information
kfir4444 committed Mar 28, 2023
2 parents f0b66af + a42ff6a commit be28706
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arc/job/trsh.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ def determine_ess_status(output_path: str,
if any([keyword in ['GL301', 'GL401'] for keyword in keywords]):
additional_info = forward_lines[len(forward_lines) - i - 2]
if 'No data on chk file' in additional_info \
or 'Basis set data is not on the checkpoint file' in additional_info:
or 'Basis set data is not on the checkpoint file' in additional_info \
or 'Error in GetGes' in additional_info:
keywords = ['CheckFile']
error = additional_info.rstrip()
elif 'GL301' in keywords:
Expand Down

0 comments on commit be28706

Please sign in to comment.