-
Notifications
You must be signed in to change notification settings - Fork 11
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
odesolver in BVPSOL #14
Comments
If Important:
|
So it's essentially the same as the options that you pass in, but with these three fields changed? The last two make sense, but why is the relative tolerance modified?
What is |
Yes. The rel. tol. may be changed by
|
Thanks. Out of curiosity, do you know how it uses this? |
BVPSOL is a boundary value problem solver working with the multiple-shooting principle. Here is a picture (the black dashed line is the initial guess given by the user). The shooting is done from right to left in this example, because at The blue IVP-solver has a step size prediction for its last step. Hence this is a (very) good initial step size to begin the numerical solution for the orange IVP-solver [especially if the Newton-method is converging and the gaps/jumps between different trajectories are getting smaller and smaller]. |
oh, so it's just using |
For the DiffEq wrapper of BVPSOL, I am hoping that we can allow any common interface method for the
odesolver
in BVPSOL. How exactly would I set that up? More specifically, what is it looking for in theodesolver
argument? A function with a specific signature?The text was updated successfully, but these errors were encountered: