numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver > Class Template Reference

Class of 4th order SDIRK (singly diagonally implicit Runge-Kutta) formula in [9]. More...

#include <num_collect/ode/runge_kutta/sdirk4_formula.h>

+ Inheritance diagram for num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >:
+ Collaboration diagram for num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >:

Public Types

using base_type
 Type of base class.
 
using problem_type
 Type of problem.
 
using scalar_type
 Type of scalars.
 
using this_type = sdirk4_formula<Problem, FormulaSolver>
 Type of this class.
 
using variable_type
 Type of variables.
 
- Public Types inherited from num_collect::ode::runge_kutta::implicit_formula_base< Derived, Problem, FormulaSolver >
using base_type = formula_base<Derived, Problem>
 Type of base class.
 
using formula_solver_type = FormulaSolver
 Type of solver of formula.
 
using problem_type
 Type of problem.
 
using scalar_type
 Type of scalars.
 
using variable_type
 Type of variables.
 
- Public Types inherited from num_collect::ode::formula_base< Derived, Problem >
using problem_type = Problem
 Type of problem.
 
using scalar_type = typename problem_type::scalar_type
 Type of scalars.
 
using variable_type = typename problem_type::variable_type
 Type of variables.
 

Public Member Functions

void step (scalar_type time, scalar_type step_size, const variable_type &current, variable_type &estimate)
 Compute the next variable.
 
void step_embedded (scalar_type time, scalar_type step_size, const variable_type &current, variable_type &estimate, variable_type &error)
 Compute the next variable and weak estimate of it with embedded formula.
 
- Public Member Functions inherited from num_collect::ode::runge_kutta::implicit_formula_base< Derived, Problem, FormulaSolver >
 implicit_formula_base (const problem_type &problem=problem_type())
 Constructor.
 
auto formula_solver () -> formula_solver_type &
 Get solver of formula.
 
auto formula_solver () const -> const formula_solver_type &
 Get solver of formula.
 
auto logger () const noexcept -> const num_collect::logging::logger &
 Access to the logger.
 
auto logger () noexcept -> num_collect::logging::logger &
 Access to the logger.
 
auto tolerances (const error_tolerances< variable_type > &val) -> Derived &
 Set the error tolerances.
 
- Public Member Functions inherited from num_collect::ode::formula_base< Derived, Problem >
 formula_base (const problem_type &problem=problem_type())
 Constructor.
 
auto problem () -> problem_type &
 Get the problem.
 
auto problem () const -> const problem_type &
 Get the problem.
 
void step (scalar_type time, scalar_type step_size, const variable_type &current, variable_type &estimate)
 Compute the next variable.
 

Static Public Attributes

static constexpr index_type lesser_order = 3
 Order of lesser coefficients of this formula.
 
static constexpr auto log_tag
 Log tag.
 
static constexpr index_type order = 4
 Order of this formula.
 
static constexpr index_type stages = 5
 Number of stages of this formula.
 
Coefficients in Butcher array.
  • a is coefficients of intermidiate variables in calculation of intermidiate variables.
  • b is coefficients of time in calculation of intermidiate variables.
  • c is coefficients of intermidiate variables in calculation of estimates of next variables.
static constexpr scalar_type ad = coeff(1, 4)
 
static constexpr scalar_type a21 = coeff(1, 2)
 
static constexpr scalar_type a31 = coeff(17, 50)
 
static constexpr scalar_type a32 = coeff(-1, 25)
 
static constexpr scalar_type a41 = coeff(371, 1360)
 
static constexpr scalar_type a42 = coeff(-137, 2720)
 
static constexpr scalar_type a43 = coeff(15, 544)
 
static constexpr scalar_type a51 = coeff(25, 24)
 
static constexpr scalar_type a52 = coeff(-49, 48)
 
static constexpr scalar_type a53 = coeff(125, 16)
 
static constexpr scalar_type a54 = coeff(-85, 12)
 
static constexpr scalar_type b1 = coeff(1, 4)
 
static constexpr scalar_type b2 = coeff(3, 4)
 
static constexpr scalar_type b3 = coeff(11, 20)
 
static constexpr scalar_type b4 = coeff(1, 2)
 
static constexpr scalar_type b5 = coeff(1)
 
static constexpr scalar_type c1 = a51
 
static constexpr scalar_type c2 = a52
 
static constexpr scalar_type c3 = a53
 
static constexpr scalar_type c4 = a54
 
static constexpr scalar_type c5 = ad
 
static constexpr scalar_type cw1 = coeff(59, 48)
 
static constexpr scalar_type cw2 = coeff(-17, 96)
 
static constexpr scalar_type cw3 = coeff(225, 32)
 
static constexpr scalar_type cw4 = coeff(-85, 12)
 
static constexpr scalar_type cw5 = coeff(0)
 
static constexpr scalar_type ce1 = c1 - cw1
 
static constexpr scalar_type ce2 = c2 - cw2
 
static constexpr scalar_type ce3 = c3 - cw3
 
static constexpr scalar_type ce5 = c5 - cw5
 

Protected Member Functions

auto formula_solver () -> formula_solver_type &
 Get solver of formula.
 
auto formula_solver () const -> const formula_solver_type &
 Get solver of formula.
 
- Protected Member Functions inherited from num_collect::ode::runge_kutta::implicit_formula_base< Derived, Problem, FormulaSolver >
auto derived () const noexcept -> const Derived &
 Access derived object.
 
auto derived () noexcept -> Derived &
 Access derived object.
 
- Protected Member Functions inherited from num_collect::ode::formula_base< Derived, Problem >
auto derived () const noexcept -> const Derived &
 Access derived object.
 
auto derived () noexcept -> Derived &
 Access derived object.
 

Private Attributes

Intermediate variables.
variable_type k1_ {}
 
variable_type k2_ {}
 
variable_type k3_ {}
 
variable_type k4_ {}
 
variable_type k5_ {}
 
variable_type z1_ {}
 
variable_type z2_ {}
 
variable_type z3_ {}
 
variable_type z4_ {}
 
variable_type z5_ {}
 

Additional Inherited Members

- Static Protected Member Functions inherited from num_collect::ode::formula_base< Derived, Problem >
template<typename T >
static constexpr auto coeff (T val) -> scalar_type
 Convert coefficients.
 
template<typename T1 , typename T2 >
static constexpr auto coeff (T1 num, T2 den) -> scalar_type
 Create coefficients.
 

Detailed Description

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
class num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >

Class of 4th order SDIRK (singly diagonally implicit Runge-Kutta) formula in [9].

Template Parameters
ProblemType of problem.
FormulaSolverType of solver of formula.

Definition at line 43 of file sdirk4_formula.h.

Member Typedef Documentation

◆ base_type

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
using num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::base_type
Initial value:
FormulaSolver>
implicit_formula_base(const problem_type &problem=problem_type())
Constructor.

Type of base class.

Definition at line 51 of file sdirk4_formula.h.

◆ problem_type

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
using num_collect::ode::formula_base< Derived, Problem >::problem_type

Type of problem.

Definition at line 44 of file formula_base.h.

◆ scalar_type

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
using num_collect::ode::formula_base< Derived, Problem >::scalar_type

Type of scalars.

Definition at line 45 of file formula_base.h.

◆ this_type

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
using num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::this_type = sdirk4_formula<Problem, FormulaSolver>

Type of this class.

Definition at line 48 of file sdirk4_formula.h.

◆ variable_type

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
using num_collect::ode::formula_base< Derived, Problem >::variable_type

Type of variables.

Definition at line 46 of file formula_base.h.

Member Function Documentation

◆ formula_solver() [1/2]

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
auto num_collect::ode::runge_kutta::implicit_formula_base< Derived, Problem, FormulaSolver >::formula_solver ( ) -> formula_solver_type&
inlinenodiscardprotected

Get solver of formula.

Returns
Solver of formula.

Definition at line 68 of file implicit_formula_base.h.

◆ formula_solver() [2/2]

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
auto num_collect::ode::runge_kutta::implicit_formula_base< Derived, Problem, FormulaSolver >::formula_solver ( ) const -> const formula_solver_type&
inlinenodiscardprotected

Get solver of formula.

Returns
Solver of formula.

Definition at line 77 of file implicit_formula_base.h.

◆ step()

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
void num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::step ( scalar_type time,
scalar_type step_size,
const variable_type & current,
variable_type & estimate )
inline

Compute the next variable.

Parameters
[in]timeCurrent time.
[in]step_sizeStep size.
[in]currentCurrent variable.
[out]estimateEstimate of the next variable.

Definition at line 132 of file sdirk4_formula.h.

◆ step_embedded()

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
void num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::step_embedded ( scalar_type time,
scalar_type step_size,
const variable_type & current,
variable_type & estimate,
variable_type & error )
inline

Compute the next variable and weak estimate of it with embedded formula.

Parameters
[in]timeCurrent time.
[in]step_sizeStep size.
[in]currentCurrent variable.
[out]estimateEstimate of the next variable.
[out]errorEstimate of error.

Definition at line 184 of file sdirk4_formula.h.

Member Data Documentation

◆ a21

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a21 = coeff(1, 2)
staticconstexpr

Coefficient in Butcher array.

Definition at line 95 of file sdirk4_formula.h.

◆ a31

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a31 = coeff(17, 50)
staticconstexpr

Coefficient in Butcher array.

Definition at line 96 of file sdirk4_formula.h.

◆ a32

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a32 = coeff(-1, 25)
staticconstexpr

Coefficient in Butcher array.

Definition at line 97 of file sdirk4_formula.h.

◆ a41

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a41 = coeff(371, 1360)
staticconstexpr

Coefficient in Butcher array.

Definition at line 98 of file sdirk4_formula.h.

◆ a42

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a42 = coeff(-137, 2720)
staticconstexpr

Coefficient in Butcher array.

Definition at line 99 of file sdirk4_formula.h.

◆ a43

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a43 = coeff(15, 544)
staticconstexpr

Coefficient in Butcher array.

Definition at line 100 of file sdirk4_formula.h.

◆ a51

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a51 = coeff(25, 24)
staticconstexpr

Coefficient in Butcher array.

Definition at line 101 of file sdirk4_formula.h.

◆ a52

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a52 = coeff(-49, 48)
staticconstexpr

Coefficient in Butcher array.

Definition at line 102 of file sdirk4_formula.h.

◆ a53

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a53 = coeff(125, 16)
staticconstexpr

Coefficient in Butcher array.

Definition at line 103 of file sdirk4_formula.h.

◆ a54

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::a54 = coeff(-85, 12)
staticconstexpr

Coefficient in Butcher array.

Definition at line 104 of file sdirk4_formula.h.

◆ ad

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::ad = coeff(1, 4)
staticconstexpr

Coefficient in Butcher array.

Definition at line 94 of file sdirk4_formula.h.

◆ b1

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::b1 = coeff(1, 4)
staticconstexpr

Coefficient in Butcher array.

Definition at line 106 of file sdirk4_formula.h.

◆ b2

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::b2 = coeff(3, 4)
staticconstexpr

Coefficient in Butcher array.

Definition at line 107 of file sdirk4_formula.h.

◆ b3

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::b3 = coeff(11, 20)
staticconstexpr

Coefficient in Butcher array.

Definition at line 108 of file sdirk4_formula.h.

◆ b4

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::b4 = coeff(1, 2)
staticconstexpr

Coefficient in Butcher array.

Definition at line 109 of file sdirk4_formula.h.

◆ b5

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::b5 = coeff(1)
staticconstexpr

Coefficient in Butcher array.

Definition at line 110 of file sdirk4_formula.h.

◆ c1

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::c1 = a51
staticconstexpr

Coefficient in Butcher array.

Definition at line 112 of file sdirk4_formula.h.

◆ c2

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::c2 = a52
staticconstexpr

Coefficient in Butcher array.

Definition at line 113 of file sdirk4_formula.h.

◆ c3

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::c3 = a53
staticconstexpr

Coefficient in Butcher array.

Definition at line 114 of file sdirk4_formula.h.

◆ c4

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::c4 = a54
staticconstexpr

Coefficient in Butcher array.

Definition at line 115 of file sdirk4_formula.h.

◆ c5

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::c5 = ad
staticconstexpr

Coefficient in Butcher array.

Definition at line 116 of file sdirk4_formula.h.

◆ ce1

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::ce1 = c1 - cw1
staticconstexpr

Coefficient in Butcher array.

Definition at line 124 of file sdirk4_formula.h.

◆ ce2

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::ce2 = c2 - cw2
staticconstexpr

Coefficient in Butcher array.

Definition at line 125 of file sdirk4_formula.h.

◆ ce3

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::ce3 = c3 - cw3
staticconstexpr

Coefficient in Butcher array.

Definition at line 126 of file sdirk4_formula.h.

◆ ce5

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::ce5 = c5 - cw5
staticconstexpr

Coefficient in Butcher array.

Definition at line 128 of file sdirk4_formula.h.

◆ cw1

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::cw1 = coeff(59, 48)
staticconstexpr

Coefficient in Butcher array.

Definition at line 118 of file sdirk4_formula.h.

◆ cw2

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::cw2 = coeff(-17, 96)
staticconstexpr

Coefficient in Butcher array.

Definition at line 119 of file sdirk4_formula.h.

◆ cw3

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::cw3 = coeff(225, 32)
staticconstexpr

Coefficient in Butcher array.

Definition at line 120 of file sdirk4_formula.h.

◆ cw4

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::cw4 = coeff(-85, 12)
staticconstexpr

Coefficient in Butcher array.

Definition at line 121 of file sdirk4_formula.h.

◆ cw5

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
scalar_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::cw5 = coeff(0)
staticconstexpr

Coefficient in Butcher array.

Definition at line 122 of file sdirk4_formula.h.

◆ k1_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::k1_ {}
private

Intermediate variable.

Definition at line 199 of file sdirk4_formula.h.

◆ k2_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::k2_ {}
private

Intermediate variable.

Definition at line 200 of file sdirk4_formula.h.

◆ k3_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::k3_ {}
private

Intermediate variable.

Definition at line 201 of file sdirk4_formula.h.

◆ k4_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::k4_ {}
private

Intermediate variable.

Definition at line 202 of file sdirk4_formula.h.

◆ k5_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::k5_ {}
private

Intermediate variable.

Definition at line 203 of file sdirk4_formula.h.

◆ lesser_order

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
index_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::lesser_order = 3
staticconstexpr

Order of lesser coefficients of this formula.

Definition at line 77 of file sdirk4_formula.h.

◆ log_tag

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
auto num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::log_tag
staticconstexpr
Initial value:
=
logging::log_tag_view("num_collect::ode::runge_kutta::sdirk4_formula")

Log tag.

Definition at line 80 of file sdirk4_formula.h.

◆ order

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
index_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::order = 4
staticconstexpr

Order of this formula.

Definition at line 74 of file sdirk4_formula.h.

◆ stages

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
index_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::stages = 5
staticconstexpr

Number of stages of this formula.

Definition at line 71 of file sdirk4_formula.h.

◆ z1_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::z1_ {}
private

Intermediate variable.

Definition at line 204 of file sdirk4_formula.h.

◆ z2_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::z2_ {}
private

Intermediate variable.

Definition at line 205 of file sdirk4_formula.h.

◆ z3_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::z3_ {}
private

Intermediate variable.

Definition at line 206 of file sdirk4_formula.h.

◆ z4_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::z4_ {}
private

Intermediate variable.

Definition at line 207 of file sdirk4_formula.h.

◆ z5_

template<concepts::problem Problem, concepts::update_equation_solver FormulaSolver = inexact_newton_update_equation_solver<Problem>>
variable_type num_collect::ode::runge_kutta::sdirk4_formula< Problem, FormulaSolver >::z5_ {}
private

Intermediate variable.

Definition at line 208 of file sdirk4_formula.h.


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