|
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.hh>
Inherits Sandals::Tableau< Real, 5 >.
Public Member Functions | |
| Chebyshev51Tableau () | |
| Public Member Functions inherited from Sandals::Tableau< Real, 5 > | |
| bool | check (bool verbose=false) const |
Additional Inherited Members | |
| Public Types inherited from Sandals::Tableau< Real, 5 > | |
| using | Type |
| using | Vector |
| using | Matrix |
| Public Attributes inherited from Sandals::Tableau< Real, 5 > | |
| const Real | SQRT_EPSILON |
| 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{.} \]
| Real | The scalar number type. |
|
inline |
Class constructor for the 5-stage Runge-Kutta-Chebyshev order 1 method.