MRKISS 2025-09-10
A tiny library with zero dependencies that aims to make it easy to use & experiment with explicit Runge-Kutta methods.
Loading...
Searching...
No Matches
mrkiss_eerk_bogacki_shampine_3_2.f90 File Reference

Butcher tableau for Bogacki Shampine's 4 step, order (3,2) Runge-Kutta method. More...

Go to the source code of this file.

Modules

module  mrkiss_eerk_bogacki_shampine_3_2
 Butcher tableau for Bogacki Shampine's 4 step, order (3,2) Runge-Kutta method.

Variables

integer, parameter mrkiss_eerk_bogacki_shampine_3_2::s = 4
 The order of the overall method.
integer, parameter mrkiss_eerk_bogacki_shampine_3_2::m = 2
 Number of methods.
real(kind=rk), dimension(s, s), parameter mrkiss_eerk_bogacki_shampine_3_2::a
 The \(\mathbf{a}\) matrix for the Butcher Tableau.
real(kind=rk), dimension(s, m), parameter mrkiss_eerk_bogacki_shampine_3_2::b
 The \(\mathbf{b}\) matrix for the Butcher Tableau.
real(kind=rk), dimension(s), parameter mrkiss_eerk_bogacki_shampine_3_2::c
 The \(\mathbf{c}\) matrix for the Butcher Tableau.
integer, dimension(m), parameter mrkiss_eerk_bogacki_shampine_3_2::p = [3, 2]
 The method orders.
integer, dimension(m), parameter mrkiss_eerk_bogacki_shampine_3_2::se = [3, 4]
 Number of stages for each method.

Detailed Description

Butcher tableau for Bogacki Shampine's 4 step, order (3,2) Runge-Kutta method.

Author
Mitch Richling http://www.mitchr.me/
Keywords
ode ivp differential equation initial value problem rk
Standards
F2023
See also
https://github.com/richmit/MRKISS

Definition in file mrkiss_eerk_bogacki_shampine_3_2.f90.