Neko
0.9.99
A portable framework for high-order spectral element flow simulations
|
Implements adv_dummy_t
Data Types | |
type | adv_dummy_t |
A zero-valued advection that can be used to kill the advection term. More... | |
Functions/Subroutines | |
subroutine | init_adv_dummy (this, coef) |
Constructor. More... | |
subroutine | free_adv_dummy (this) |
Destructor. More... | |
subroutine | compute_adv_dummy (this, vx, vy, vz, fx, fy, fz, Xh, coef, n, dt) |
Add the advection term for the fluid, i.e. \(u \cdot \nabla u \) to the RHS. More... | |
subroutine | compute_scalar_adv_dummy (this, vx, vy, vz, s, fs, Xh, coef, n, dt) |
Add the advection term for a scalar, i.e. \(u \cdot \nabla s \), to the RHS. More... | |
|
private |
Here, does nothing.
vx | The x component of velocity. |
vy | The y component of velocity. |
vz | The z component of velocity. |
fx | The x component of source term. |
fy | The y component of source term. |
fz | The z component of source term. |
Xh | The function space. |
coef | The coefficients of the (Xh, mesh) pair. |
n | Typically the size of the mesh. |
dt | Current time-step, not required for this method. |
Definition at line 88 of file adv_dummy.f90.
|
private |
Here, does nothing.
this | The object. |
vx | The x component of velocity. |
vy | The y component of velocity. |
vz | The z component of velocity. |
s | The scalar. |
fs | The source term. |
Xh | The function space. |
coef | The coefficients of the (Xh, mesh) pair. |
n | Typically the size of the mesh. |
dt | Current time-step, not required for this method. |
Definition at line 113 of file adv_dummy.f90.
|
private |
Definition at line 70 of file adv_dummy.f90.
subroutine adv_dummy::init_adv_dummy | ( | class(adv_dummy_t), intent(inout) | this, |
type(coef_t), intent(in) | coef | ||
) |
coef | The coefficients of the (space, mesh) pair. |
Definition at line 63 of file adv_dummy.f90.