Sandals
v0.0.0
A C++ library for ODEs/DAEs integration
|
Butcher tableau for the 4-stage strong-stability preserving Runge-Kutta order 3 method. More...
#include <SSPRK43.hxx>
Inherits Sandals::Tableau< 4 >.
Public Member Functions | |
SSPRK43Tableau () | |
![]() | |
bool | check (bool verbose=false) const |
Additional Inherited Members | |
![]() | |
using | Type |
using | Vector |
using | Matrix |
![]() | |
std::string | name |
Type | type |
Integer | order |
Integer | order_e |
Matrix | A |
Vector | b |
Vector | b_e |
Vector | c |
bool | is_embedded |
Butcher tableau for the 4-stage strong-stability preserving Runge-Kutta order 3 method:
\[\begin{array}{c|cccc} 0 & 0 & 0 & 0 & 0 \\ \frac{1}{2} & \frac{1}{2} & 0 & 0 & 0 \\ 1 & \frac{1}{2} & \frac{1}{2} & 0 & 0 \\ \frac{1}{2} & \frac{1}{6} & \frac{1}{6} & \frac{1}{6} & 0 \\ \hline & \frac{1}{6} & \frac{1}{6} & \frac{1}{6} & \frac{1}{2} \end{array} \text{.} \]
|
inline |
Class constructor for the 4-stage strong-stability preserving Runge-Kutta order 3 method.