OpenLB 1.7
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation > Class Template Reference

Defines incoming (axis parallel) directions on flat walls. More...

#include <rtlbmBoundaryDynamics.h>

+ Inheritance diagram for olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >:
+ Collaboration diagram for olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >:

Public Types

template<typename M >
using exchange_momenta = RtlbmDiffuseBoundaryDynamics<T,DESCRIPTOR,M,direction,orientation>
 
- Public Types inherited from olb::dynamics::CustomCollision< T, DESCRIPTOR, MOMENTA >
using value_t = T
 
using descriptor_t = DESCRIPTOR
 
using MomentaF = typename MOMENTA::template type<DESCRIPTOR>
 
- Public Types inherited from olb::Dynamics< T, DESCRIPTOR >
using value_t = T
 
using descriptor_t = DESCRIPTOR
 

Public Member Functions

 RtlbmDiffuseBoundaryDynamics (T omega_)
 Constructor.
 
computeEquilibrium (int iPop, T rho, const T u[DESCRIPTOR::d]) const override
 Compute equilibrium distribution function.
 
CellStatistic< T > collide (Cell< T, DESCRIPTOR > &cell) override
 Collision step for flat boundary.
 
getOmega () const
 place holder
 
void setOmega (T omega_)
 place holder
 
- Public Member Functions inherited from olb::legacy::BasicDynamics< T, DESCRIPTOR, MOMENTA >
std::type_index id () override
 Expose unique type-identifier for RTTI.
 
AbstractParameters< T, DESCRIPTOR > & getParameters (BlockLattice< T, DESCRIPTOR > &block) override
 Parameters access for legacy post processors.
 
- Public Member Functions inherited from olb::dynamics::CustomCollision< T, DESCRIPTOR, MOMENTA >
void initialize (Cell< T, DESCRIPTOR > &cell) override
 Initialize dynamics-specific data for cell.
 
computeRho (ConstCell< T, DESCRIPTOR > &cell) const override
 Compute particle density.
 
void computeU (ConstCell< T, DESCRIPTOR > &cell, T u[DESCRIPTOR::d]) const override
 Compute fluid velocity.
 
void computeJ (ConstCell< T, DESCRIPTOR > &cell, T j[DESCRIPTOR::d]) const override
 Compute fluid momentum.
 
void computeStress (ConstCell< T, DESCRIPTOR > &cell, T rho, const T u[DESCRIPTOR::d], T pi[util::TensorVal< DESCRIPTOR >::n]) const override
 Compute stress tensor.
 
void computeRhoU (ConstCell< T, DESCRIPTOR > &cell, T &rho, T u[DESCRIPTOR::d]) const override
 Compute fluid velocity and particle density.
 
void computeAllMomenta (ConstCell< T, DESCRIPTOR > &cell, T &rho, T u[DESCRIPTOR::d], T pi[util::TensorVal< DESCRIPTOR >::n]) const override
 Compute all momenta up to second order.
 
void defineRho (Cell< T, DESCRIPTOR > &cell, T rho) override
 Set particle density.
 
void defineU (Cell< T, DESCRIPTOR > &cell, const T u[DESCRIPTOR::d]) override
 Set fluid velocity.
 
void defineRhoU (Cell< T, DESCRIPTOR > &cell, T rho, const T u[DESCRIPTOR::d]) override
 Define fluid velocity and particle density.
 
void defineAllMomenta (Cell< T, DESCRIPTOR > &cell, T rho, const T u[DESCRIPTOR::d], const T pi[util::TensorVal< DESCRIPTOR >::n]) override
 Define all momenta up to second order.
 
void inverseShiftRhoU (ConstCell< T, DESCRIPTOR > &cell, T &rho, T u[DESCRIPTOR::d]) const override
 Calculate population momenta s.t. the physical momenta are reproduced by the computeRhoU.
 
- Public Member Functions inherited from olb::Dynamics< T, DESCRIPTOR >
virtual ~Dynamics () any_platform
 
virtual std::string getName () const
 Return human-readable name.
 
void iniEquilibrium (Cell< T, DESCRIPTOR > &cell, T rho, const T u[DESCRIPTOR::d])
 Initialize to equilibrium distribution.
 
void iniRegularized (Cell< T, DESCRIPTOR > &cell, T rho, const T u[DESCRIPTOR::d], const T pi[util::TensorVal< DESCRIPTOR >::n])
 Initialize cell to equilibrium and non-equilibrum part.
 

Detailed Description

template<typename T, typename DESCRIPTOR, typename MOMENTA, int direction, int orientation>
class olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >

Defines incoming (axis parallel) directions on flat walls.

Parameters
directionstakes values 0, 1, 2; which corresponds to x, y, z plane normal
orientationtakes values -1, 1; which is the sign of plane normal

Note: Dynamics computes the arriving density on walls and redistributes it equally to all inward pointing directions.

Definition at line 42 of file rtlbmBoundaryDynamics.h.

Member Typedef Documentation

◆ exchange_momenta

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
template<typename M >
using olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::exchange_momenta = RtlbmDiffuseBoundaryDynamics<T,DESCRIPTOR,M,direction,orientation>

Definition at line 45 of file rtlbmBoundaryDynamics.h.

Constructor & Destructor Documentation

◆ RtlbmDiffuseBoundaryDynamics()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::RtlbmDiffuseBoundaryDynamics ( T omega_)

Constructor.

Definition at line 36 of file rtlbmBoundaryDynamics.hh.

37 : legacy::BasicDynamics<T,DESCRIPTOR,MOMENTA>()
38{
39 this->getName() = "RtlbmDiffuseBoundaryDynamics";
40}
virtual std::string getName() const
Return human-readable name.
Definition interface.h:63

References olb::Dynamics< T, DESCRIPTOR >::getName().

+ Here is the call graph for this function:

Member Function Documentation

◆ collide()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
CellStatistic< T > olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::collide ( Cell< T, DESCRIPTOR > & cell)
overridevirtual

Collision step for flat boundary.

Reimplemented from olb::Dynamics< T, DESCRIPTOR >.

Definition at line 49 of file rtlbmBoundaryDynamics.hh.

50{
51 typedef DESCRIPTOR L;
52 using MomentaF = typename MOMENTA::template type<DESCRIPTOR>;
53 T dirichletTemperature = MomentaF().computeRho(cell);
54 constexpr auto missing_iPop = util::subIndexOutgoing<L,direction,orientation>();
55 // compute summ of weights for all missing directions
56 T sumWeights = 0;
57 for ( int i : missing_iPop ) {
58 sumWeights += descriptors::t<T,L>(i);
59 }
60 // construct missing directions such that 0th moment equals emposed dirichletTemperature
61 for ( int i : missing_iPop ) {
62 cell[i] = descriptors::t<T,L>(i)*dirichletTemperature/sumWeights - descriptors::t<T,L>(i);
63 }
64 return {-1, -1};
65}
typename MOMENTA::template type< DESCRIPTOR > MomentaF
Definition interface.h:299

◆ computeEquilibrium()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
T olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::computeEquilibrium ( int iPop,
T rho,
const T u[DESCRIPTOR::d] ) const
overridevirtual

Compute equilibrium distribution function.

Reimplemented from olb::legacy::BasicDynamics< T, DESCRIPTOR, MOMENTA >.

Definition at line 43 of file rtlbmBoundaryDynamics.hh.

44{
45 return descriptors::t<T,DESCRIPTOR>(iPop)*rho - descriptors::t<T,DESCRIPTOR>(iPop);
46}

◆ getOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
T olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::getOmega ( ) const

place holder

Definition at line 68 of file rtlbmBoundaryDynamics.hh.

69{
70 return T(-1);
71}

◆ setOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int direction, int orientation>
void olb::RtlbmDiffuseBoundaryDynamics< T, DESCRIPTOR, MOMENTA, direction, orientation >::setOmega ( T omega_)

place holder

Definition at line 74 of file rtlbmBoundaryDynamics.hh.

75{
76}

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