![]() |
MRKISS 2025-09-10
A tiny library with zero dependencies that aims to make it easy to use & experiment with explicit Runge-Kutta methods.
|
Butcher tableau for Sofroniou Spaletta's 5 step, order (4,3) Runge-Kutta method. More...
Variables | |
| integer, parameter | s = 5 |
| The order of the overall method. | |
| integer, parameter | m = 2 |
| Number of methods. | |
| real(kind=rk), dimension(s, s), parameter | a |
| The \(\mathbf{a}\) matrix for the Butcher Tableau. | |
| real(kind=rk), dimension(s, m), parameter | b |
| The \(\mathbf{b}\) matrix for the Butcher Tableau. | |
| real(kind=rk), dimension(s), parameter | c |
| The \(\mathbf{c}\) matrix for the Butcher Tableau. | |
| integer, dimension(m), parameter | p = [4, 3] |
| The method orders. | |
| integer, dimension(m), parameter | se = [4, 5] |
| Number of stages for each method. | |
Butcher tableau for Sofroniou Spaletta's 5 step, order (4,3) Runge-Kutta method.
| integer, parameter mrkiss_eerk_sofroniou_spaletta_4_3::s = 5 |
The order of the overall method.
Definition at line 63 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
| integer, parameter mrkiss_eerk_sofroniou_spaletta_4_3::m = 2 |
Number of methods.
Definition at line 65 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
The \(\mathbf{a}\) matrix for the Butcher Tableau.
Definition at line 67 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
The \(\mathbf{b}\) matrix for the Butcher Tableau.
Definition at line 73 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
| real(kind=rk), dimension(s), parameter mrkiss_eerk_sofroniou_spaletta_4_3::c |
The \(\mathbf{c}\) matrix for the Butcher Tableau.
Definition at line 76 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
| integer, dimension(m), parameter mrkiss_eerk_sofroniou_spaletta_4_3::p = [4, 3] |
The method orders.
Definition at line 78 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.
| integer, dimension(m), parameter mrkiss_eerk_sofroniou_spaletta_4_3::se = [4, 5] |
Number of stages for each method.
Definition at line 80 of file mrkiss_eerk_sofroniou_spaletta_4_3.f90.