Add grepper fallback for output get_final_energy, get_gradient, and get_structure#237
Merged
Merged
Conversation
get_final_energy, get_structure, get_gradient, get_charge, and get_mult now fall back to parsing the plain-text .out file when no property JSON is available. The fallback is on by default and can be disabled with fallback=False. This covers external methods like GFN-FF that write a property JSON with no geometry entries. A new example (exmp054) demonstrates the pattern with a GFN-FF geometry optimisation. A new nox session out_gen regenerates the committed .out fixture from a real ORCA run, stripping all system-specific content.
timmyte
requested changes
May 7, 2026
timmyte
left a comment
Contributor
There was a problem hiding this comment.
Solid work.
And thanks for adding extensive tests.
Just make sure to put code in the PR description into mono-space font.
timmyte
approved these changes
Jun 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes Issues
Closes None
Description
get_final_energy,get_structure,get_gradient,get_charge, andget_multnow fall back to parsing the plain-text.outfile when no property JSON is available. The fallback is on by default and can be disabled with the keyword argumentfallback=False.This covers external methods like GFN-FF that write a property JSON with no geometry entries. A new example demonstrates the pattern with a GFN-FF geometry optimization.
A new nox session out_gen regenerates the committed .out fixture from a real ORCA run, stripping all system-specific content.
Release Notes
Added
get_final_energy,get_gradient, andget_structurethat allows to parse these properties from the.outfile if no JSON output is available (Add grepper fallback for output get_final_energy, get_gradient, and get_structure #237).