time_tolerance and sync_times #16285
Answered
by
aeslaughter
hsheldon
asked this question in
Q&A General
-
Does time_tolerance apply to sync_times, or is it only used at the beginning and end of the simulation? I'm having trouble with the solver not reaching sync_times exactly, then trying to take a tiny step to reach the next sync_time and failing to converge. Setting time_tolerance doesn't seem to make any difference. |
Beta Was this translation helpful? Give feedback.
Answered by
aeslaughter
Nov 24, 2020
Replies: 1 comment 3 replies
-
Yes, it it applied in the TimeStepper object. The "timestep_tolerence" in the Executioner is applied to the TimeStepper here: |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
aeslaughter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, it it applied in the TimeStepper object. The "timestep_tolerence" in the Executioner is applied to the TimeStepper here:
moose/framework/src/timesteppers/TimeStepper.C
Line 130 in ee00f87