Miscellaneous Solvers
These are solvers that do not fall clearly into any of the major categories.
OrdinaryDiffEqLowOrderRK.SplitEuler
— TypeSplitEuler()
Split Method. 1st order fully explicit method for testing split accuracy
Keyword Arguments
References
Missing docstring for CompositeAlgorithm
. Check Documenter's build log for details.
OrdinaryDiffEqExplicitRK.ExplicitRK
— TypeExplicitRK(; tableau = ODE_DEFAULT_TABLEAU)
A generic explicit Runge-Kutta method that allows you to define a custom tableau. The default tableau is Dormand-Prince 4/5. This solver is primarily for research purposes or when you need a specific tableau not already implemented.
Parameters
tableau
: ADiffEqBase.ExplicitRKTableau
object defining the Runge-Kutta tableau.
For most applications, prefer the named methods like DP5()
, Tsit5()
, etc.