-
-
Notifications
You must be signed in to change notification settings - Fork 214
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
Added Algorithm FineRKN4
#1975
Added Algorithm FineRKN4
#1975
Conversation
Removed all code related to adaptive-step-size feature for ```FineRKN5```. This feature is beeing pushed in another PR.
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.
Thanks! I just have a minor comment
Do you have some tests with adaptive step size control here? |
I just added them! |
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.
Thanks!
Added the 4th order Nyström-Method presented by J. M. Fine in the article "Low Order Practical Runge-Kutta-Nyström Methods" (Also linked here: #677). Works with
adaptive step-size
. The Method passes the implemented convergence tests (harm. Oscillator):Yields:
There is one more PR on the way which adds
adaptive step-size
toFineRKN5
.Once these two PRs are merged I will add convergence test for
FineRKN4
,FineRKN5
andNystrom4
regarding the damped_oscillator introduced in #1973.CC @ranocha