LifeV
|
#include <TimeAdvanceBDFNavierStokes.hpp>
Private Attributes | |
TimeAdvanceBDF< VectorType > | M_bdfVelocity |
Bdf velocity. More... | |
TimeAdvanceBDF< VectorType > | M_bdfPressure |
Bdf pressure. More... | |
Public Types | |
typedef VectorType | vector_Type |
Constructor & Destructor | |
TimeAdvanceBDFNavierStokes () | |
Constructor. More... | |
~TimeAdvanceBDFNavierStokes () | |
Destructor. More... | |
Set Methods | |
void | setup (const UInt order) |
Setup the bdf velocity and the bdf pressure. More... | |
Methods | |
void | showMe () const |
Show the contents of the object. More... | |
TimeAdvanceBDF< VectorType > & | bdfVelocity () |
The method returns the Bdf velocity. More... | |
TimeAdvanceBDF< VectorType > & | bdfPressure () |
The method returns the Bdf pressure. More... | |
This class implements an easy handling of different order time discretizations/extrapolations Bdf based specific for the Navier-Stokes problem.
The idea is to couple a Bdf of order q with a pressure incremental approach of order q-1.
If q=1, we still have an incremental pressure treatment.
At the moment, the couple BDF of order q + extrapolation of order q seems unstable
Definition at line 71 of file TimeAdvanceBDFNavierStokes.hpp.
typedef VectorType vector_Type |
Definition at line 79 of file TimeAdvanceBDFNavierStokes.hpp.
Constructor.
Definition at line 146 of file TimeAdvanceBDFNavierStokes.hpp.
|
inline |
Destructor.
Definition at line 91 of file TimeAdvanceBDFNavierStokes.hpp.
void setup | ( | const UInt | order | ) |
Setup the bdf velocity and the bdf pressure.
order | Order q of the bdf |
Definition at line 155 of file TimeAdvanceBDFNavierStokes.hpp.
void showMe | ( | ) | const |
Show the contents of the object.
Definition at line 166 of file TimeAdvanceBDFNavierStokes.hpp.
|
inline |
The method returns the Bdf velocity.
Definition at line 116 of file TimeAdvanceBDFNavierStokes.hpp.
|
inline |
The method returns the Bdf pressure.
Definition at line 125 of file TimeAdvanceBDFNavierStokes.hpp.
|
private |
Bdf velocity.
Definition at line 135 of file TimeAdvanceBDFNavierStokes.hpp.
|
private |
Bdf pressure.
Definition at line 138 of file TimeAdvanceBDFNavierStokes.hpp.