OpenLB 1.7
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal > Class Template Reference

#include <rtlbmBoundaryDynamics.h>

+ Inheritance diagram for olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >:
+ Collaboration diagram for olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >:

Public Types

template<typename M >
using exchange_momenta = RtlbmDirectedCornerBoundaryDynamics<T,DESCRIPTOR,M,yNormal,yNormal,zNormal>
 
- 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

 RtlbmDirectedCornerBoundaryDynamics (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 directed boundary walls.
 
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 xNormal, int yNormal, int zNormal>
class olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >

Definition at line 214 of file rtlbmBoundaryDynamics.h.

Member Typedef Documentation

◆ exchange_momenta

template<typename T , typename DESCRIPTOR , typename MOMENTA , int xNormal, int yNormal, int zNormal>
template<typename M >
using olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::exchange_momenta = RtlbmDirectedCornerBoundaryDynamics<T,DESCRIPTOR,M,yNormal,yNormal,zNormal>

Definition at line 217 of file rtlbmBoundaryDynamics.h.

Constructor & Destructor Documentation

◆ RtlbmDirectedCornerBoundaryDynamics()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int xNormal, int yNormal, int zNormal>
olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::RtlbmDirectedCornerBoundaryDynamics ( T omega_)

Constructor.

Definition at line 456 of file rtlbmBoundaryDynamics.hh.

457 : legacy::BasicDynamics<T,DESCRIPTOR,MOMENTA>()
458{
459 this->getName() = "RtlbmDirectedCornerBoundaryDynamics";
460}
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 xNormal, int yNormal, int zNormal>
CellStatistic< T > olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::collide ( Cell< T, DESCRIPTOR > & cell)
overridevirtual

Collision step for directed boundary walls.

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

Definition at line 469 of file rtlbmBoundaryDynamics.hh.

470{
471 typedef DESCRIPTOR L;
472 using MomentaF = typename MOMENTA::template type<DESCRIPTOR>;
473 T dirichletTemperature = MomentaF().computeRho(cell);
474
475 for ( int iPop = 0; iPop < L::q; ++iPop ) {
476 cell[iPop] = - descriptors::t<T,L>(iPop);
477 }
478
479 std::vector<int> const missingDiagonal = util::subIndexOutgoing3DonCorners<DESCRIPTOR,xNormal,yNormal,zNormal>();
480 for ( int i : missingDiagonal ) {
481 // compute norm of c_iPopMissing
482 // is direction axis parallel
483 if ( util::normSqr<int>({descriptors::c<L>(i,0), descriptors::c<L>(i,1), descriptors::c<L>(i,2)}) == 1 ) {
484 if ( std::is_base_of<DESCRIPTOR,descriptors::D3Q7<> >::value ) {
485 cell[i] = (1-descriptors::t<T,L>(0))*dirichletTemperature - descriptors::t<T,L>(i);
486 }
487 if ( DESCRIPTOR::template provides<descriptors::tag::RTLBM>() ) {
488 cell[i] = dirichletTemperature - descriptors::t<T,L>(i);
489 }
490 }
491 }
492 if ( std::is_base_of<DESCRIPTOR,descriptors::D3Q7<> >::value ) {
493 cell[0] = descriptors::t<T,L>(0)*dirichletTemperature - descriptors::t<T,L>(0);
494 }
495 return {-1, -1};
496}
typename MOMENTA::template type< DESCRIPTOR > MomentaF
Definition interface.h:299

◆ computeEquilibrium()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int xNormal, int yNormal, int zNormal>
T olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::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 463 of file rtlbmBoundaryDynamics.hh.

464{
465 return rho*descriptors::t<T,DESCRIPTOR>(iPop) - descriptors::t<T,DESCRIPTOR>(iPop);
466}

◆ getOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int xNormal, int yNormal, int zNormal>
T olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::getOmega ( ) const

place holder

Definition at line 499 of file rtlbmBoundaryDynamics.hh.

500{
501 return T(-1);
502}

◆ setOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA , int xNormal, int yNormal, int zNormal>
void olb::RtlbmDirectedCornerBoundaryDynamics< T, DESCRIPTOR, MOMENTA, xNormal, yNormal, zNormal >::setOmega ( T omega_)

place holder

Definition at line 505 of file rtlbmBoundaryDynamics.hh.

506{
507}

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