OpenLB 1.8.1
Loading...
Searching...
No Matches
olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation > Class Template Reference

#include <zouHeDynamics.h>

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

Public Types

using MomentaF = typename MOMENTA::template type<DESCRIPTOR>
 
using OriginalMomentaF = typename DYNAMICS::MomentaF
 
using EquilibriumF = typename CORRECTED_DYNAMICS::EquilibriumF
 
using parameters = typename CORRECTED_DYNAMICS::parameters
 
template<typename NEW_T >
using exchange_value_type
 
template<typename M >
using exchange_momenta = IncZouHeDynamics<T,DESCRIPTOR,DYNAMICS,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

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.
 
template<typename CELL , typename PARAMETERS , typename V = typename CELL::value_t>
CellStatistic< V > collide (CELL &cell, PARAMETERS &parameters) any_platform
 
template<typename CELL , typename PARAMETERS , typename V = typename CELL::value_t>
computeEquilibriumMP (int iPop, CELL &cell, PARAMETERS &parameters) any_platform
 
void computeEquilibrium (ConstCell< T, DESCRIPTOR > &cell, T p, const T u[DESCRIPTOR::d], T fEq[DESCRIPTOR::q]) const override
 Return iPop equilibrium for given first and second momenta.
 
std::string getName () const override
 Return human-readable name.
 
- 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 CellStatistic< T > collide (Cell< T, DESCRIPTOR > &cell)
 Perform purely-local collision step on Cell interface (legacy, to be deprecated)
 
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.
 

Static Public Attributes

static constexpr bool is_vectorizable = false
 

Detailed Description

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

Definition at line 148 of file zouHeDynamics.h.

Member Typedef Documentation

◆ EquilibriumF

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
using olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::EquilibriumF = typename CORRECTED_DYNAMICS::EquilibriumF

Definition at line 156 of file zouHeDynamics.h.

◆ exchange_momenta

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

Definition at line 167 of file zouHeDynamics.h.

◆ exchange_value_type

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
template<typename NEW_T >
using olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::exchange_value_type
Initial value:
IncZouHeDynamics<NEW_T,DESCRIPTOR,
typename DYNAMICS::template exchange_value_type<NEW_T>,
MOMENTA,direction,orientation
>
IncZouHeDynamics< NEW_T, DESCRIPTOR, typename DYNAMICS::template exchange_value_type< NEW_T >, MOMENTA, direction, orientation > exchange_value_type

Definition at line 161 of file zouHeDynamics.h.

◆ MomentaF

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
using olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::MomentaF = typename MOMENTA::template type<DESCRIPTOR>

Definition at line 154 of file zouHeDynamics.h.

◆ OriginalMomentaF

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
using olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::OriginalMomentaF = typename DYNAMICS::MomentaF

Definition at line 155 of file zouHeDynamics.h.

◆ parameters

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
using olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::parameters = typename CORRECTED_DYNAMICS::parameters

Definition at line 158 of file zouHeDynamics.h.

Member Function Documentation

◆ collide()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
template<typename CELL , typename PARAMETERS , typename V = typename CELL::value_t>
CellStatistic< V > olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::collide ( CELL & cell,
PARAMETERS & parameters )
inline

Definition at line 180 of file zouHeDynamics.h.

180 {
181 // Along all the commented parts of this code there will be an example based
182 // on the situation where the wall's normal vector if (0,1) and the
183 // numerotation of the velocites are done according to the D2Q9
184 // lattice of the OpenLB library.
185
186 // Find all the missing populations
187 // (directions 3,4,5)
188 constexpr auto missingIndexesTmp = util::subIndexOutgoing<DESCRIPTOR,direction,orientation>();
189 std::vector<int> missingIndexes(missingIndexesTmp.cbegin(), missingIndexesTmp.cend());
190
191 // Will contain the missing poputations that are not normal to the wall.
192 // (directions 3,5)
193 std::vector<int> missingDiagonalIndexes = missingIndexes;
194 for (unsigned iPop = 0; iPop < missingIndexes.size(); ++iPop) {
195 int numOfNonNullComp = 0;
196 for (int iDim = 0; iDim < DESCRIPTOR::d; ++iDim) {
197 numOfNonNullComp += util::abs(descriptors::c<DESCRIPTOR>(missingIndexes[iPop],iDim));
198 }
199
200 if (numOfNonNullComp == 1) {
201 missingDiagonalIndexes.erase(missingDiagonalIndexes.begin()+iPop);
202 break;
203 }
204 }
205
206 V u[DESCRIPTOR::d];
207 V falseU[DESCRIPTOR::d];
208 MomentaF().computeU(cell, u);
209 auto rho = cell.template getField<descriptors::RHO>();
211
212 // The unknown non equilibrium populations are bounced back
213 // (f[3] = feq[3] + fneq[7], f[4] = feq[4] + fneq[8],
214 // f[5] = feq[5] + fneq[1])
215 for (unsigned iPop = 0; iPop < missingIndexes.size(); ++iPop) {
216 cell[missingIndexes[iPop]] = cell[descriptors::opposite<DESCRIPTOR>(missingIndexes[iPop])]
218 + computeEquilibriumMP(missingIndexes[iPop], cell, parameters);
219 }
220
221 // We recompute u in order to have the new momentum. Since the momen-
222 // tum is not conserved from this scheme, we will correct it. By adding
223 // a contribution to the missingDiagonalVelocities.
224 OriginalMomentaF().computeU(cell,falseU);
225
226 V diff[DESCRIPTOR::d] {};
227 for (int iDim = 0; iDim < DESCRIPTOR::d; ++iDim) {
228 diff[iDim] = rho*(u[iDim] - falseU[iDim])/ V(missingDiagonalIndexes.size());
229 }
230
231 for (unsigned iPop = 0; iPop < missingDiagonalIndexes.size(); ++iPop) {
232 for (int iDim = 1; iDim < DESCRIPTOR::d; ++iDim) {
233 cell[missingDiagonalIndexes[iPop]] +=
234 descriptors::c<DESCRIPTOR>(missingDiagonalIndexes[iPop],(direction+iDim)%DESCRIPTOR::d) * diff[(direction+iDim)%DESCRIPTOR::d];
235 }
236 }
237
238 typename CORRECTED_DYNAMICS::CollisionO().apply(cell, parameters);
239
240 return {rho, uSqr};
241 }
typename CORRECTED_DYNAMICS::parameters parameters
typename MOMENTA::template type< DESCRIPTOR > MomentaF
typename DYNAMICS::MomentaF OriginalMomentaF
V computeEquilibriumMP(int iPop, CELL &cell, PARAMETERS &parameters) any_platform
constexpr int c(unsigned iPop, unsigned iDim) any_platform
Definition functions.h:83
constexpr int opposite(unsigned iPop) any_platform
Definition functions.h:95
ADf< T, DIM > abs(const ADf< T, DIM > &a)
Definition aDiff.h:1019
constexpr auto subIndexOutgoing() any_platform
Compute opposites of wall-incoming population indices.
Definition util.h:262
auto normSqr(const ARRAY_LIKE &u) any_platform
Compute norm square of a d-dimensional vector.
Definition util.h:145

References olb::util::abs(), olb::descriptors::c(), olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::computeEquilibriumMP(), olb::util::normSqr(), olb::descriptors::opposite(), and olb::util::subIndexOutgoing().

+ Here is the call graph for this function:

◆ computeEquilibrium()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
void olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::computeEquilibrium ( ConstCell< T, DESCRIPTOR > & cell,
T rho,
const T u[DESCRIPTOR::d],
T fEq[DESCRIPTOR::q] ) const
inlineoverridevirtual

Return iPop equilibrium for given first and second momenta.

Implements olb::Dynamics< T, DESCRIPTOR >.

Definition at line 250 of file zouHeDynamics.h.

250 {
251 EquilibriumF().compute(cell, p, u, fEq);
252 };
typename CORRECTED_DYNAMICS::EquilibriumF EquilibriumF

◆ computeEquilibriumMP()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
template<typename CELL , typename PARAMETERS , typename V = typename CELL::value_t>
V olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::computeEquilibriumMP ( int iPop,
CELL & cell,
PARAMETERS & parameters )
inline

Definition at line 244 of file zouHeDynamics.h.

244 {
245 V fEq[DESCRIPTOR::q];
246 EquilibriumF().compute(cell, parameters, fEq);
247 return fEq[iPop];
248 };
+ Here is the caller graph for this function:

◆ getName()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
std::string olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::getName ( ) const
inlineoverridevirtual

Return human-readable name.

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

Definition at line 254 of file zouHeDynamics.h.

254 {
255 return "IncZouHeDynamics<" + CORRECTED_DYNAMICS().getName() + ">";
256 };

◆ getParameters()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
AbstractParameters< T, DESCRIPTOR > & olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::getParameters ( BlockLattice< T, DESCRIPTOR > & block)
inlineoverridevirtual

Parameters access for legacy post processors.

Implements olb::Dynamics< T, DESCRIPTOR >.

Definition at line 175 of file zouHeDynamics.h.

175 {
176 return block.template getData<OperatorParameters<IncZouHeDynamics>>();
177 }

◆ id()

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
std::type_index olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::id ( )
inlineoverridevirtual

Expose unique type-identifier for RTTI.

Implements olb::Dynamics< T, DESCRIPTOR >.

Definition at line 171 of file zouHeDynamics.h.

171 {
172 return typeid(IncZouHeDynamics);
173 }

Member Data Documentation

◆ is_vectorizable

template<typename T , typename DESCRIPTOR , typename DYNAMICS , typename MOMENTA , int direction, int orientation>
bool olb::IncZouHeDynamics< T, DESCRIPTOR, DYNAMICS, MOMENTA, direction, orientation >::is_vectorizable = false
staticconstexpr

Definition at line 169 of file zouHeDynamics.h.


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