|
Sandals
v0.0.0
A C++ library for ODEs/DAEs integration
|
Butcher tableau for the Lobatto IIIA order 2 method. More...
#include <LobattoIIIA2.hh>
Inherits Sandals::Tableau< Real, 2 >.
Public Member Functions | |
| LobattoIIIA2Tableau () | |
| Public Member Functions inherited from Sandals::Tableau< Real, 2 > | |
| bool | check (bool verbose=false) const |
Additional Inherited Members | |
| Public Types inherited from Sandals::Tableau< Real, 2 > | |
| using | Type |
| using | Vector |
| using | Matrix |
| Public Attributes inherited from Sandals::Tableau< Real, 2 > | |
| 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 Lobatto IIIA order 2 method:
\[\begin{array}{c|cc} 1/3 & 5/12 & -1/12 \\ 1 & 3/4 & 1/4 \\ \hline & 3/4 & 1/4 \end{array} \text{.} \]
| Real | The scalar number type. |
|
inline |
Class constructor for the Lobatto IIIA order 2 method.