Sandals
v0.0.0
A C++ library for ODEs/DAEs integration
|
Butcher tableau for the 5-stage Runge-Kutta-Chebyshev order 1 method. More...
#include <Chebyshev51.hxx>
Inherits Sandals::Tableau< 5 >.
Public Member Functions | |
Chebyshev51Tableau () | |
![]() | |
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 5-stage Runge-Kutta-Chebyshev order 1 method:
\[\begin{array}{c|ccccc} & & & & & \\ \frac{1}{25} & \frac{1}{25} & & & & \\ \frac{4}{25} & \frac{2}{25} & \frac{2}{25} & & & \\ \frac{9}{25} & \frac{3}{25} & \frac{4}{25} & \frac{2}{25} & & \\ \frac{16}{25} & \frac{4}{25} & \frac{6}{25} & \frac{4}{25} & \frac{2}{25} & \\ \hline & \frac{1}{5} & \frac{8}{25} & \frac{6}{25} & \frac{4}{25} & \frac{2}{25} \end{array} \text{.} \]
|
inline |
Class constructor for the 5-stage Runge-Kutta-Chebyshev order 1 method.