timestep_limiting_postprocessor ineffective #31484
Unanswered
jessecarterMOOSE
asked this question in
Q&A General
Replies: 2 comments 4 replies
-
|
Hello you can try to adjust the postprocessor schedule to have it be computed before the reset but not after. Maybe timestep_end? alternatively we could had an option to not restep a postprocessor during a restep. @zachmprince if you have more ideas |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
What exactly is the logic for your |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Check these boxes if you have followed the posting rules.
Question
I'm trying to use a
timestep_limiting_postprocessorinIterationAdaptiveDTto give a suggestion for the next dt. I'm using aTerminator(set to SOFT at TIMESTEP_END) to trigger a failed solve when the material model requests it. Theoretically, in this case, thetimestep_limiting_postprocessorwill limit the dt, but the failed solve causes a bunch of values to reset to end of the last good solve (seen inReporter Restoration Summaryprinted to screen) . This includes mytimestep_limiting_postprocessorvalue, so the information on what the material model was suggesting is lost.Can I not reset the postprocessor on failed solve? Or is there some way to "trigger" another material loop and re-compute the processor? I'm using a custom TimeStepper that inherits from IterationAdaptiveDT so maybe I can do something there in the
computeFailedDTmethod.Beta Was this translation helpful? Give feedback.
All reactions