-
Notifications
You must be signed in to change notification settings - Fork 135
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
IDAStopTest2 bug #339
Comments
@jehelset thanks for reporting this issue. The change you point to, while fixing a different minor bug, did introduce a new bug that will cause an unintended return at |
yes, it is a nice change otherwise. thanks! |
gardner48
added a commit
that referenced
this issue
Oct 2, 2023
balos1
pushed a commit
that referenced
this issue
Oct 4, 2023
Fixes #339: A regression was introduced by the stop time bug fix in v6.6.1 causing integrators to return at the stop time rather than the requested output time if the stop time was reached in the same step in which the output time was passed. Also fixes a missing check in ARKODE to interpolate (or not) the solution at the stop time.
Fixed by #349. |
gardner48
added a commit
that referenced
this issue
Dec 18, 2023
Fixes #339: A regression was introduced by the stop time bug fix in v6.6.1 causing integrators to return at the stop time rather than the requested output time if the stop time was reached in the same step in which the output time was passed. Also fixes a missing check in ARKODE to interpolate (or not) the solution at the stop time.
balos1
pushed a commit
that referenced
this issue
Dec 18, 2023
Fixes #339: A regression was introduced by the stop time bug fix in v6.6.1 causing integrators to return at the stop time rather than the requested output time if the stop time was reached in the same step in which the output time was passed. Also fixes a missing check in ARKODE to interpolate (or not) the solution at the stop time.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bfec386 moved check for tn past tstop before check for tn past tout in IDAStopTest2:
bfec386?diff=split#diff-a624e4aaf10771efab2a0c451839e9c4f24613e0f5ee296e82cf5f5bc4fcecebL2101
in a test i have a simple linear system dxdt = 1.0, and root function g(x) = 1.0 - x, doing fixed-step integration with dt = 0.1, and tstop = 1.5, at t = 0.7, instead of IDAStep computing the solution t = 0.8, like it does in version
6.6.0
, it now, in6.6.1
, instead does an early return and reports stop!The text was updated successfully, but these errors were encountered: