Sandals  v0.0.0
A C++ library for ODEs/DAEs integration
Loading...
Searching...
No Matches
Sandals::Chebyshev51Tableau Class Reference

Butcher tableau for the 5-stage Runge-Kutta-Chebyshev order 1 method. More...

#include <Chebyshev51.hxx>

Inherits Sandals::Tableau< 5 >.

Public Member Functions

 Chebyshev51Tableau ()
 
- Public Member Functions inherited from Sandals::Tableau< 5 >
bool check (bool verbose=false) const
 

Additional Inherited Members

- Public Types inherited from Sandals::Tableau< 5 >
using Type
 
using Vector
 
using Matrix
 
- Public Attributes inherited from Sandals::Tableau< 5 >
std::string name
 
Type type
 
Integer order
 
Integer order_e
 
Matrix A
 
Vector b
 
Vector b_e
 
Vector c
 
bool is_embedded
 

Detailed Description

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{.} \]

Constructor & Destructor Documentation

◆ Chebyshev51Tableau()

Sandals::Chebyshev51Tableau::Chebyshev51Tableau ( )
inline

Class constructor for the 5-stage Runge-Kutta-Chebyshev order 1 method.


The documentation for this class was generated from the following file: