Mushy Layer
1.0
|
IBC for simple Velocity advection (solid wall) boundary conditions. More...
#include <VelIBC.H>
Public Member Functions | |
VelIBC () | |
Null constructor. | |
~VelIBC () | |
Destructor. | |
PhysIBC * | new_physIBC () |
Factory method - this object is its own factory. More... | |
void | setDefaultValues () |
set default boundary values | |
void | primBC (FArrayBox &a_WGdnv, const FArrayBox &a_Wextrap, const FArrayBox &a_W, const int &a_dir, const Side::LoHiSide &a_side, const Real &a_time) |
Set boundary fluxes. | |
void | setBdrySlopes (FArrayBox &a_dW, const FArrayBox &a_W, const int &a_dir, const Real &a_time) |
Set boundary slopes. More... | |
void | initialize (LevelData< FArrayBox > &a_U) |
Set up initial conditions. More... | |
void | advectionVel (const RealVect &a_advVel) |
set velocity | |
const RealVect & | advectionVel () const |
Not sure why we have this. | |
void | probType (const int a_probtype) |
set problem type | |
void | setNormalWallVel (Real a_bcVal, int a_dir, Side::LoHiSide a_hiLo) |
set boundary value (default is 0) | |
Real | getNormalWallVel (int a_dir, Side::LoHiSide a_hiLo) const |
access boundary value | |
void | setSlopeValue (Real a_slopeVal, int a_dir, Side::LoHiSide a_hiLo) |
set slope value (default is 0) | |
Real | getSlopeValue (int a_dir, Side::LoHiSide a_hiLo) const |
access slope value | |
void | artViscBC (FArrayBox &a_F, const FArrayBox &a_U, const FArrayBox &a_divVel, const int &a_dir, const Real &a_time) |
Apply artifical viscosity BC. | |
int | probType () const |
accessor | |
Protected Attributes | |
RealVect | m_velocity |
advection velocity field | |
Real | m_bcVal [SpaceDim][2] |
BC values. | |
Real | m_slopeVal [SpaceDim][2] |
BC slope values. | |
bool | m_isBCvalSet |
Are BC values set? | |
bool | m_isSlopeValSet |
Are BC slope values set? | |
int | m_probtype |
initial condition type | |
IBC for simple Velocity advection (solid wall) boundary conditions.
This IBC sets normal component of velocities to the prescribed value (normally 0) at physical boundaries, and uses extrapolation to set tangential velocities.
|
virtual |
|
virtual |
Set boundary slopes.
The boundary slopes in a_dW are already set to one sided difference approximations. If this function doesn't change them they will be used for the slopes at the boundaries.
Implements PhysIBC.