RKN1210 - A 12th/10th order Runge-Kutta-Nyström integrator
RKN1210 12th/10th order Runge-Kutta-Nyström integrator
RKN1210() is a 12th/10th order variable-step numerical integrator for second-order ordinary differential equations of the form
y'' = f(t, y) (1)
with initial conditions
y(t0) = y0
y'(t0) = yp0 (2)
This second-order differential equation is integrated with a Runge-Kutta-Nyström method using 17 function evaluations per step. RKN12(10) is a very high-order method, to be used in problems with *extremely* stringent error tolerances.
The RKN-class of integrators is especially suited for problems of type (1). Compared to a classic Runge-Kutta integration scheme, the same accuracy can be obtained with fewer function evaluations. Also, it has been shown in various studies that this particular integration method is overall more efficient than (symplectic) multi-step or extrapolation methods that give the same accuracy.
RKN1210's behavior is very similar MATLAB's ODE-integrator suite; you can set options via ODESET, and input and output values are also practically the same.
Both output functions and event functions are fully supported.
The construction of RKN12(10) is described in
High-Order Embedded Runge-Kutta-Nyström Formulae
J. R. DORMAND, M. E. A. EL-MIKKAWY, AND P. J. PRINCE
IMA Journal of Numerical Analysis (1987) 7, 423-430
Coefficients obtained from
http://www.tampa.phys.ucl.ac.uk/rmat/test/rknint.f
These are also available in any format on request to these authors.
If you find this work useful, please consider a small donation:
https://www.paypal.me/RodyO/3.5
Zitieren als
Rody Oldenhuis (2024). RKN1210 - A 12th/10th order Runge-Kutta-Nyström integrator (https://github.com/rodyo/FEX-RKN1210/releases/tag/v2.1), GitHub. Abgerufen.
Kompatibilität der MATLAB-Version
Plattform-Kompatibilität
Windows macOS LinuxKategorien
- MATLAB > Mathematics > Numerical Integration and Differential Equations > Ordinary Differential Equations >
Tags
Quellenangaben
Inspiriert: Vectorized N-Body Equation
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
private
Versionen, die den GitHub-Standardzweig verwenden, können nicht heruntergeladen werden
Version | Veröffentlicht | Versionshinweise | |
---|---|---|---|
2.1 | See release notes for this release on GitHub: https://github.com/rodyo/FEX-RKN1210/releases/tag/v2.1 |
||
2.0.0.0 | Description update
See GitHub for way more details (255 char limit here) |
|
|
1.9.0.0 | fixed divide-by-zero error for isolated cases where f turns all-zero |
|
|
1.8.0.0 | - Misc. bugfixes (minor)
|
||
1.7.0.0 | - Found & removed some stray debugging code
|
||
1.6.0.0 | - Fixed 2 bugs (thanks everyone!)
|
||
1.5.0.0 | Improvements regarding performance and memory usage. |
||
1.4.0.0 | bugfix for missing "index" variable on numel(tspan)>2 as noted by Tarek |
||
1.3.0.0 | - Removed bug inherited from RKN86; the error estimates there were all wrong. Now RKN1210 integrates at least 50x faster!
|
||
1.2.0.0 | - Fixed 2 bugs: 1) exitflag = 3 was never assigned or described in the argument [output] 2) intermediate results were erased by event functions and only the event's zero was returned
|
||
1.1.0.0 | - Interactive demonstration included
|
||
1.0.0.0 |