Miscellaneous Solvers

These are solvers that do not fall clearly into any of the major categories.

Missing docstring.

Missing docstring for CompositeAlgorithm. Check Documenter's build log for details.

Missing docstring.

Missing docstring for FunctionMap. Check Documenter's build log for details.

OrdinaryDiffEqExplicitRK.ExplicitRKType
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: A DiffEqBase.ExplicitRKTableau object defining the Runge-Kutta tableau.

For most applications, prefer the named methods like DP5(), Tsit5(), etc.

source
Missing docstring.

Missing docstring for IDSolve. Check Documenter's build log for details.