-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#716: Write file when nonlinear solver does not converge #717
base: develop
Are you sure you want to change the base?
#716: Write file when nonlinear solver does not converge #717
Conversation
…sts for all failures
@cwschilly can you please post here some examples of the file written? |
@fnrizzi The file is always called
|
The log file doesn't seem to be getting written if we hit the maximum number of iterations. I don't see anything obvious. Do you all? |
@@ -79,6 +81,9 @@ void root_solving_loop_impl(NewtonTag /*problemTag*/, | |||
/* stage 4*/ | |||
if (mustStop(iStep)){ | |||
PRESSIOLOG_DEBUG("nonlinsolver: stopping"); | |||
writeNonlinearSolverTerminationFile( | |||
"Root Finder: Reached maximum number of iterations before convergence." | |||
); | |||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The log file doesn't seem to be getting written if we hit the maximum number of iterations. I don't see anything obvious. Do you all?
@eparish1 If I understand your question correctly, it is being written out here.
Fixes #716