OpenLB 1.7
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 > Class Template Reference

#include <rtlbmBoundaryDynamics.h>

+ Inheritance diagram for olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >:
+ Collaboration diagram for olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >:

Public Types

template<typename M >
using exchange_momenta = RtlbmDiffuseEdgeBoundaryDynamics<T,DESCRIPTOR,M,plane,normal1,normal2>
 
- 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

 RtlbmDiffuseEdgeBoundaryDynamics (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 plane, int normal1, int normal2>
class olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >

Definition at line 60 of file rtlbmBoundaryDynamics.h.

Member Typedef Documentation

◆ exchange_momenta

template<typename T , typename DESCRIPTOR , typename MOMENTA , int plane, int normal1, int normal2>
template<typename M >
using olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::exchange_momenta = RtlbmDiffuseEdgeBoundaryDynamics<T,DESCRIPTOR,M,plane,normal1,normal2>

Definition at line 63 of file rtlbmBoundaryDynamics.h.

Constructor & Destructor Documentation

◆ RtlbmDiffuseEdgeBoundaryDynamics()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int plane, int normal1, int normal2>
olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::RtlbmDiffuseEdgeBoundaryDynamics ( T omega_)

Constructor.

Definition at line 80 of file rtlbmBoundaryDynamics.hh.

81 : legacy::BasicDynamics<T,DESCRIPTOR,MOMENTA>()
82{
83 this->getName() = "RtlbmDiffuseEdgeBoundaryDynamics";
84}
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 plane, int normal1, int normal2>
CellStatistic< T > olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::collide ( Cell< T, DESCRIPTOR > & cell)
overridevirtual

Collision step for flat boundary.

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

Definition at line 93 of file rtlbmBoundaryDynamics.hh.

94{
95 typedef DESCRIPTOR L;
96 using MomentaF = typename MOMENTA::template type<DESCRIPTOR>;
97 T dirichletTemperature = MomentaF().computeRho(cell);
98 std::vector<int> missing_iPop = util::subIndexOutgoing3DonEdges<L,plane,normal1,normal2>();
99 // compute summ of weights for all missing directions
100 T sumWeights = 0;
101 for ( int i : missing_iPop ) {
102 sumWeights += descriptors::t<T,L>(i);
103 }
104 // construct missing directions such that 0th moment equals emposed dirichletTemperature
105 for ( int i : missing_iPop ) {
106 cell[i] = descriptors::t<T,L>(i)*dirichletTemperature/sumWeights - descriptors::t<T,L>(i);
107 }
108 return {-1, -1};
109}
typename MOMENTA::template type< DESCRIPTOR > MomentaF
Definition interface.h:299

◆ computeEquilibrium()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int plane, int normal1, int normal2>
T olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::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 87 of file rtlbmBoundaryDynamics.hh.

88{
89 return descriptors::t<T,DESCRIPTOR>(iPop)*rho - descriptors::t<T,DESCRIPTOR>(iPop);
90}

◆ getOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int plane, int normal1, int normal2>
T olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::getOmega ( ) const

place holder

Definition at line 112 of file rtlbmBoundaryDynamics.hh.

113{
114 return T(-1);
115}

◆ setOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int plane, int normal1, int normal2>
void olb::RtlbmDiffuseEdgeBoundaryDynamics< T, DESCRIPTOR, MOMENTA, plane, normal1, normal2 >::setOmega ( T omega_)

place holder

Definition at line 118 of file rtlbmBoundaryDynamics.hh.

119{
120}

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