![]() |
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 Nystrom's 6 stage Runge-Kutta method of O(5). More...
Variables | |
| integer, parameter | s = 6 |
| The order of the overall method. | |
| integer, parameter | m = 1 |
| 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 = [5] |
| The method orders. | |
| integer, dimension(m), parameter | se = [6] |
| Number of stages for each method. | |
Butcher tableau for Nystrom's 6 stage Runge-Kutta method of O(5).
| integer, parameter mrkiss_erk_nystrom_5::s = 6 |
The order of the overall method.
Definition at line 70 of file mrkiss_erk_nystrom_5.f90.
| integer, parameter mrkiss_erk_nystrom_5::m = 1 |
Number of methods.
Definition at line 72 of file mrkiss_erk_nystrom_5.f90.
The \(\mathbf{a}\) matrix for the Butcher Tableau.
Definition at line 74 of file mrkiss_erk_nystrom_5.f90.
The \(\mathbf{b}\) matrix for the Butcher Tableau.
Definition at line 81 of file mrkiss_erk_nystrom_5.f90.
| real(kind=rk), dimension(s), parameter mrkiss_erk_nystrom_5::c |
The \(\mathbf{c}\) matrix for the Butcher Tableau.
Definition at line 83 of file mrkiss_erk_nystrom_5.f90.
| integer, dimension(m), parameter mrkiss_erk_nystrom_5::p = [5] |
The method orders.
Definition at line 85 of file mrkiss_erk_nystrom_5.f90.
| integer, dimension(m), parameter mrkiss_erk_nystrom_5::se = [6] |
Number of stages for each method.
Definition at line 87 of file mrkiss_erk_nystrom_5.f90.