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

Butcher Tableau for the Gauss-Legendre order 4 method. More...

#include <GaussLegendre4.hxx>

Inherits Sandals::Tableau< 2 >.

Public Member Functions

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

Additional Inherited Members

- Public Types inherited from Sandals::Tableau< 2 >
using Type
 
using Vector
 
using Matrix
 
- Public Attributes inherited from Sandals::Tableau< 2 >
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 Gauss-Legendre order 4 method:

\[\begin{array}{c|cc} 1/2-t & 1/4 & 1/4-t \\ 1/2+t & 1/4+t & 1/4 \\ \hline & 1/2 & 1/2 \end{array} \text{,} \]

with \( t = \frac{\sqrt{3}}{6}\).

Constructor & Destructor Documentation

◆ GaussLegendre4Tableau()

Sandals::GaussLegendre4Tableau::GaussLegendre4Tableau ( )
inline

Class constructor for the Gauss-Legendre order 4 method.


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