Miscellaneous Solvers
These are solvers that do not fall clearly into any of the major categories.
OrdinaryDiffEqLowOrderRK.SplitEuler — Type
SplitEuler()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 — Type
ExplicitRK(; 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.ExplicitRKTableauobject defining the Runge-Kutta tableau.
For most applications, prefer the named methods like DP5(), Tsit5(), etc.
Internal Interpolation Utilities
OrdinaryDiffEqExplicitRK.generic_rk_interpolant — Function
generic_rk_interpolant(Θ, dt, y₀, k, B_interp; idxs=nothing, order=0)Generic interpolation for Runge-Kutta methods using the B_interp coefficient matrix.
OrdinaryDiffEqExplicitRK.generic_rk_interpolant! — Function
generic_rk_interpolant!(out, Θ, dt, y₀, k, B_interp; idxs=nothing, order=0)In-place version of generic interpolation for Runge-Kutta methods.