13#ifndef SANDALS_SSPRK43_HXX
14#define SANDALS_SSPRK43_HXX
45 this->
name =
"SSPRK43";
46 this->
type = Type::ERK;
48 this->
A << 0.0, 0.0, 0.0, 0.0,
49 1.0/2.0, 0.0, 0.0, 0.0,
50 1.0/2.0, 1.0/2.0, 0.0, 0.0,
51 1.0/6.0, 1.0/6.0, 1.0/6.0, 0.0;
52 this->
b << 1.0/6.0, 1.0/6.0, 1.0/6.0, 1.0/2.0;
53 this->
c << 0.0, 1.0/2.0, 1.0, 1.0/2.0;
64 template <Integer N, Integer M = 0>
std::shared_ptr< Implicit< N, M > > Pointer
Definition Implicit.hxx:42
RungeKutta(const RungeKutta &)=delete
SSPRK43(System t_system)
Definition SSPRK43.hxx:81
typename Implicit< N, M >::Pointer System
Definition SSPRK43.hxx:68
SSPRK43()
Definition SSPRK43.hxx:74
Butcher tableau for the 4-stage strong-stability preserving Runge-Kutta order 3 method.
Definition SSPRK43.hxx:35
SSPRK43Tableau()
Definition SSPRK43.hxx:44
The namespace for the Sandals library.
Definition Sandals.hh:73
Struct container for the Butcher tableau of a Runge-Kutta method.
Definition Tableau.hxx:36
enum class type :Integer {ERK=0, IRK=1, DIRK=2} Type
Definition Tableau.hxx:37
Eigen::Matrix< Real, S, S > Matrix
Definition Tableau.hxx:39
Integer order
Definition Tableau.hxx:43
Type type
Definition Tableau.hxx:42
Eigen::Vector< Real, S > Vector
Definition Tableau.hxx:38
Matrix A
Definition Tableau.hxx:45
std::string name
Definition Tableau.hxx:41
Vector b
Definition Tableau.hxx:46
Vector c
Definition Tableau.hxx:48