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

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

Detailed Description

template<typename Real>
class Sandals::Chebyshev51Tableau< Real >

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

Template Parameters
RealThe scalar number type.

Constructor & Destructor Documentation

◆ Chebyshev51Tableau()

template<typename Real>
Sandals::Chebyshev51Tableau< Real >::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: