View Source Integrator.RungeKutta.BogackiShampine23 (Integrator v0.1.3)

Bogacki-Shampine method of third order. For the definition of this method see Wikipedia

Originally based on Octave runge_kutta_23.m

Summary

Functions

Solves a set of non-stiff Ordinary Differential Equations (non-stiff ODEs) with the well-known explicit Bogacki-Shampine method of order 3.

Performs a Hermite cubic interpolation when using BogackiShampine23 via Utils.hermite_cubic_interpolation/4

Returns the order of this Runge-Kutta method (which is 3)

Functions

Link to this function

integrate(ode_fn, t, x, dt, k_vals, t_next)

View Source

Solves a set of non-stiff Ordinary Differential Equations (non-stiff ODEs) with the well-known explicit Bogacki-Shampine method of order 3.

See Wikipedia here and here

Link to this function

interpolate(t, x, der, t_out)

View Source

Performs a Hermite cubic interpolation when using BogackiShampine23 via Utils.hermite_cubic_interpolation/4

Returns the order of this Runge-Kutta method (which is 3)