|
Chombo + EB + MF
3.2
|
#include <ARK4.H>
Public Member Functions | |
| ARK4 () | |
| void | define (const X &a_state, Real a_dt) |
| void | advance (Real a_time, X &a_state) |
| void | resetDt (Real a_dt) |
| bool | isDefined () const |
Static Public Attributes | |
| static const int | s_nStages = 6 |
| Runge-Kutta coefficients. More... | |
| static const Real | s_gamma = 0.25 |
| static const Real | s_aE [s_nStages][s_nStages] |
| static const Real | s_aI [s_nStages][s_nStages] |
| static const Real | s_b [s_nStages] |
| static const Real | s_c [s_nStages] = { 0.0, 0.5, 0.332, 0.62, 0.85, 1.0 } |
Protected Attributes | |
| bool | m_isDefined |
| Real | m_dt |
| X | m_phi [s_nStages] |
| dX | m_kE [s_nStages-1] |
| dX | m_kI [s_nStages-1] |
| dX | m_kEfinal |
| dX | m_rhs |
| FI | m_fI |
| FE | m_fE |
Static Private Attributes | |
| static ARK4< XConcept, FIConcept, FEConcept, dXConcept > | testConcept |
References XConcept::define().
| void ARK4< X, FI, FE, dX >::define | ( | const X & | a_state, |
| Real | a_dt | ||
| ) |
| void ARK4< X, FI, FE, dX >::advance | ( | Real | a_time, |
| X & | a_state | ||
| ) |
References CH_assert.
|
inline |
|
static |
Runge-Kutta coefficients.
|
static |
|
static |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
staticprivate |
1.8.13