version 3.9-dev
Dumux::RANSBoundaryTypes< ModelTraits, numEq > Class Template Reference

Class to specify the type of a boundary condition for the RANS extension to the Navier-Stokes model.

#include <dumux/freeflow/rans/boundarytypes.hh>

Inheritance diagram for Dumux::RANSBoundaryTypes< ModelTraits, numEq >:

Public Member Functions

 RANSBoundaryTypes ()
 
void setWall ()
 
bool hasWall () const
 Returns true if some equation is used to specify a Wall boundary condition. More...
 
void resetEq (const int eqIdx)
 Reset the boundary types for one equation. More...
 
void setAllSymmetry ()
 Sets a symmetry boundary condition for all equations. More...
 
bool isSymmetry () const
 Returns true if the there is a symmetry boundary condition. More...
 
template<class T = void>
void setAllDirichlet ()
 Prevent setting all boundary conditions to Dirichlet. More...
 
template<class T = void>
void setAllNeumann ()
 Prevent setting all boundary conditions to Neumann. More...
 
void setBeaversJoseph (const int eqIdx)
 Set a boundary condition for a single equation to Beavers-Joseph(-Saffmann) (special case of Dirichlet b.c.). More...
 
bool isBeaversJoseph (const int eqIdx) const
 Returns true if an equation is used to specify a Beavers-Joseph(-Saffman) boundary condition. More...
 
bool hasBeaversJoseph () const
 Returns true if some equation is used to specify a Beavers-Joseph(-Saffman) boundary condition. More...
 
void setOutflow (const int eqIdx)
 Set an outflow boundary condition. More...
 
bool isOutflow (const int eqIdx) const
 Returns true if an outflow boundary condition was set. More...
 
bool hasOutflow () const
 Returns true if some equation has an outflow boundary condition. More...
 
void reset ()
 Reset the boundary types for all equations. More...
 
bool isSet (int eqIdx) const
 Returns true if the boundary types for a given equation has been specified. More...
 
void checkWellPosed () const
 Make sure the boundary conditions are well-posed. More...
 
void setAllCouplingDirichlet ()
 Set all boundary conditions to Dirichlet-like coupling. More...
 
void setAllCouplingNeumann ()
 Set all boundary conditions to Neumann-like coupling. More...
 
void setNeumann (int eqIdx)
 Set a Neumann boundary condition for a single equation. More...
 
void setDirichlet (int pvIdx, int eqIdx)
 Set a Dirichlet boundary condition for a single primary variable. More...
 
void setDirichlet (int pvIdx)
 Set a Dirichlet boundary condition for a single primary variable. More...
 
void setCouplingDirichlet (int eqIdx)
 Set a boundary condition for a single equation to a Dirichlet-like coupling condition. More...
 
void setCouplingNeumann (int eqIdx)
 Set a boundary condition for a single equation to a Neumann-like coupling condition. More...
 
bool isDirichlet (unsigned eqIdx) const
 Returns true if an equation is used to specify a Dirichlet condition. More...
 
bool hasOnlyDirichlet () const
 Returns true if all equations are used to specify a Dirichlet condition. More...
 
bool hasDirichlet () const
 Returns true if some equation is used to specify a Dirichlet condition. More...
 
bool isNeumann (unsigned eqIdx) const
 Returns true if an equation is used to specify a Neumann condition. More...
 
bool hasOnlyNeumann () const
 Returns true if all equations are used to specify a Neumann condition. More...
 
bool hasNeumann () const
 Returns true if some equation is used to specify a Neumann condition. More...
 
bool isCouplingDirichlet (unsigned eqIdx) const
 Returns true if an equation is used to specify an Dirichlet coupling condition. More...
 
bool hasCouplingDirichlet () const
 Returns true if some equation is used to specify an Dirichlet coupling condition. More...
 
bool isCouplingNeumann (unsigned eqIdx) const
 Returns true if an equation is used to specify an Neumann coupling condition. More...
 
bool hasCouplingNeumann () const
 Returns true if some equation is used to specify an Neumann coupling condition. More...
 
bool isCoupling (unsigned eqIdx) const
 Returns true if an equation is used to specify a coupling condition. More...
 
bool hasCoupling () const
 Returns true if some equation is used to specify a coupling condition. More...
 
unsigned dirichletToEqIndex (unsigned pvIdx) const
 Returns the index of the equation which should be used for the Dirichlet condition of the pvIdx's primary variable. More...
 
unsigned eqToDirichletIndex (unsigned eqIdx) const
 Returns the index of the primary variable which should be used for the Dirichlet condition given an equation index. More...
 

Static Public Member Functions

static constexpr int size ()
 we have a boundary condition for each equation More...
 

Protected Attributes

bool isWall_
 
std::array< NavierStokesBoundaryInfo, numEq > boundaryInfo_
 
std::array< unsigned int, numEq > eq2pvIdx_
 
std::array< unsigned int, numEq > pv2eqIdx_
 

Constructor & Destructor Documentation

◆ RANSBoundaryTypes()

template<class ModelTraits , int numEq>
Dumux::RANSBoundaryTypes< ModelTraits, numEq >::RANSBoundaryTypes ( )
inline

Member Function Documentation

◆ checkWellPosed()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::checkWellPosed ( ) const
inlineinherited

If they are not, an assertion fails and the program aborts! (if the NDEBUG macro is not defined)

◆ dirichletToEqIndex()

template<int numEq>
unsigned Dumux::BoundaryTypes< numEq >::dirichletToEqIndex ( unsigned  pvIdx) const
inlineinherited
Parameters
pvIdxThe index of the primary variable which is be set by the Dirichlet condition.

◆ eqToDirichletIndex()

template<int numEq>
unsigned Dumux::BoundaryTypes< numEq >::eqToDirichletIndex ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation which is used to set the Dirichlet condition.

◆ hasBeaversJoseph()

template<int numEq>
bool Dumux::NavierStokesBoundaryTypes< numEq >::hasBeaversJoseph ( ) const
inlineinherited

◆ hasCoupling()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasCoupling ( ) const
inlineinherited

◆ hasCouplingDirichlet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasCouplingDirichlet ( ) const
inlineinherited

◆ hasCouplingNeumann()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasCouplingNeumann ( ) const
inlineinherited

◆ hasDirichlet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasDirichlet ( ) const
inlineinherited

◆ hasNeumann()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasNeumann ( ) const
inlineinherited

◆ hasOnlyDirichlet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasOnlyDirichlet ( ) const
inlineinherited

◆ hasOnlyNeumann()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::hasOnlyNeumann ( ) const
inlineinherited

◆ hasOutflow()

template<int numEq>
bool Dumux::NavierStokesBoundaryTypes< numEq >::hasOutflow ( ) const
inlineinherited

◆ hasWall()

template<class ModelTraits , int numEq>
bool Dumux::RANSBoundaryTypes< ModelTraits, numEq >::hasWall ( ) const
inline

◆ isBeaversJoseph()

template<int numEq>
bool Dumux::NavierStokesBoundaryTypes< numEq >::isBeaversJoseph ( const int  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isCoupling()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isCoupling ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isCouplingDirichlet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isCouplingDirichlet ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isCouplingNeumann()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isCouplingNeumann ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isDirichlet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isDirichlet ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isNeumann()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isNeumann ( unsigned  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isOutflow()

template<int numEq>
bool Dumux::NavierStokesBoundaryTypes< numEq >::isOutflow ( const int  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isSet()

template<int numEq>
bool Dumux::BoundaryTypes< numEq >::isSet ( int  eqIdx) const
inlineinherited
Parameters
eqIdxThe index of the equation

◆ isSymmetry()

template<int numEq>
bool Dumux::NavierStokesBoundaryTypes< numEq >::isSymmetry ( ) const
inlineinherited

◆ reset()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::reset ( )
inlineinherited

After this method no equations will be disabled and neither Neumann nor Dirichlet conditions will be evaluated. This corresponds to a Neumann zero boundary.

◆ resetEq()

template<class ModelTraits , int numEq>
void Dumux::RANSBoundaryTypes< ModelTraits, numEq >::resetEq ( const int  eqIdx)
inline

◆ setAllCouplingDirichlet()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setAllCouplingDirichlet ( )
inlineinherited

◆ setAllCouplingNeumann()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setAllCouplingNeumann ( )
inlineinherited

◆ setAllDirichlet()

template<int numEq>
template<class T = void>
void Dumux::NavierStokesBoundaryTypes< numEq >::setAllDirichlet ( )
inlineinherited

◆ setAllNeumann()

template<int numEq>
template<class T = void>
void Dumux::NavierStokesBoundaryTypes< numEq >::setAllNeumann ( )
inlineinherited

◆ setAllSymmetry()

template<int numEq>
void Dumux::NavierStokesBoundaryTypes< numEq >::setAllSymmetry ( )
inlineinherited

◆ setBeaversJoseph()

template<int numEq>
void Dumux::NavierStokesBoundaryTypes< numEq >::setBeaversJoseph ( const int  eqIdx)
inlineinherited

◆ setCouplingDirichlet()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setCouplingDirichlet ( int  eqIdx)
inlineinherited

◆ setCouplingNeumann()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setCouplingNeumann ( int  eqIdx)
inlineinherited

◆ setDirichlet() [1/2]

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setDirichlet ( int  pvIdx)
inlineinherited

Depending on the discretization, setting the Dirichlet condition will replace the balance equation with index equal to pvIdx.

Parameters
pvIdxThe index of the primary variable inside a PrimaryVariables object.

◆ setDirichlet() [2/2]

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setDirichlet ( int  pvIdx,
int  eqIdx 
)
inlineinherited
Parameters
pvIdxThe index of the primary variable for which the Dirichlet condition should apply.
eqIdxThe index of the equation which should used to set the Dirichlet condition

◆ setNeumann()

template<int numEq>
void Dumux::BoundaryTypes< numEq >::setNeumann ( int  eqIdx)
inlineinherited
Parameters
eqIdxThe index of the equation

◆ setOutflow()

template<int numEq>
void Dumux::NavierStokesBoundaryTypes< numEq >::setOutflow ( const int  eqIdx)
inlineinherited

◆ setWall()

template<class ModelTraits , int numEq>
void Dumux::RANSBoundaryTypes< ModelTraits, numEq >::setWall ( )
inline

◆ size()

template<int numEq>
static constexpr int Dumux::BoundaryTypes< numEq >::size ( )
inlinestaticconstexprinherited

Member Data Documentation

◆ boundaryInfo_

template<int numEq>
std::array<NavierStokesBoundaryInfo, numEq> Dumux::NavierStokesBoundaryTypes< numEq >::boundaryInfo_
protectedinherited

◆ eq2pvIdx_

template<int numEq>
std::array<unsigned int, numEq> Dumux::BoundaryTypes< numEq >::eq2pvIdx_
protectedinherited

◆ isWall_

template<class ModelTraits , int numEq>
bool Dumux::RANSBoundaryTypes< ModelTraits, numEq >::isWall_
protected

◆ pv2eqIdx_

template<int numEq>
std::array<unsigned int, numEq> Dumux::BoundaryTypes< numEq >::pv2eqIdx_
protectedinherited

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