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

Butcher tableau for the 3-stage strong-stability preserving Runge-Kutta order 3 method. More...

#include <SSPRK33.hh>

Inherits Sandals::Tableau< Real, 3 >.

Public Member Functions

 SSPRK33Tableau ()
Public Member Functions inherited from Sandals::Tableau< Real, 3 >
bool check (bool verbose=false) const

Additional Inherited Members

Public Types inherited from Sandals::Tableau< Real, 3 >
using Type
using Vector
using Matrix
Public Attributes inherited from Sandals::Tableau< Real, 3 >
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::SSPRK33Tableau< Real >

Butcher tableau for the 3-stage strong-stability preserving Runge-Kutta order 3 method:

\[\begin{array}{c|ccc} 0 & 0 & 0 & 0 \\ 1 & 1 & 0 & 0 \\ 1/2 & 1/4 & 1/4 & 0 \\ \hline & 1/6 & 1/6 & 2/3 \end{array} \text{.} \]

Template Parameters
RealThe scalar number type.

Constructor & Destructor Documentation

◆ SSPRK33Tableau()

template<typename Real>
Sandals::SSPRK33Tableau< Real >::SSPRK33Tableau ( )
inline

Class constructor for the 3-stage strong-stability preserving Runge-Kutta order 3 method.


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