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

Implementation of the forced entropic collision step. More...

#include <entropicDynamics.h>

+ Inheritance diagram for olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >:
+ Collaboration diagram for olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >:

Public Types

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

 ForcedEntropicDynamics (T omega_)
 Constructor.
 
virtual T computeEquilibrium (int iPop, T rho, const T u[DESCRIPTOR::d], T uSqr) const
 Compute equilibrium distribution function.
 
virtual CellStatistic< T > collide (Cell< T, DESCRIPTOR > &cell)
 Collision step.
 
virtual T getOmega () const
 Get local relaxation parameter of the dynamics.
 
virtual void setOmega (T omega_)
 Set local relaxation parameter of the dynamics.
 
- Public Member Functions inherited from olb::legacy::BasicDynamics< T, DESCRIPTOR, MOMENTA >
computeEquilibrium (int iPop, T rho, const T u[DESCRIPTOR::d]) const override
 Return iPop equilibrium for given first and second 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 = momenta::BulkTuple>
class olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >

Implementation of the forced entropic collision step.

Definition at line 119 of file entropicDynamics.h.

Member Typedef Documentation

◆ exchange_momenta

template<typename T , typename DESCRIPTOR , typename MOMENTA = momenta::BulkTuple>
template<typename M >
using olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::exchange_momenta = ForcedEntropicDynamics<T,DESCRIPTOR,M>

Definition at line 122 of file entropicDynamics.h.

Constructor & Destructor Documentation

◆ ForcedEntropicDynamics()

template<typename T , typename DESCRIPTOR , typename MOMENTA >
olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::ForcedEntropicDynamics ( T omega_)

Constructor.

Parameters
omega_relaxation parameter, related to the dynamic viscosity

Definition at line 293 of file entropicDynamics.hh.

294 : legacy::BasicDynamics<T,DESCRIPTOR,MOMENTA>(),
295 omega(omega_)
296{
297 this->getName() = "ForcedEntropicDynamics";
298}
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 >
CellStatistic< T > olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::collide ( Cell< T, DESCRIPTOR > & cell)
virtual

Collision step.

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

Definition at line 308 of file entropicDynamics.hh.

310{
311 typedef DESCRIPTOR L;
312 typedef entropicLbHelpers<T,DESCRIPTOR> eLbH;
313
314 T rho, u[DESCRIPTOR::d];
315 MOMENTA().computeRhoU(cell, rho, u);
316 T uSqr = util::normSqr<T,L::d>(u);
317
318 T f[L::q], fEq[L::q], fNeq[L::q];
319 for (int iPop = 0; iPop < L::q; ++iPop) {
320 fEq[iPop] = eLbH::equilibrium(iPop,rho,u);
321 fNeq[iPop] = cell[iPop] - fEq[iPop];
322 f[iPop] = cell[iPop] + descriptors::t<T,L>(iPop);
323 fEq[iPop] += descriptors::t<T,L>(iPop);
324 }
325 //==============================================================================//
326 //============= Evaluation of alpha using a Newton Raphson algorithm ===========//
327 //==============================================================================//
328
329 T alpha = 2.0;
330 bool converged = getAlpha(alpha,f,fNeq);
331 if (!converged) {
332 std::cout << "Newton-Raphson failed to converge.\n";
333 exit(1);
334 }
335
336 OLB_ASSERT(converged,"Entropy growth failed to converge!");
337
338 T* force = cell.template getFieldPointer<descriptors::FORCE>();
339 for (int iDim=0; iDim<DESCRIPTOR::d; ++iDim) {
340 u[iDim] += force[iDim] / (T)2.;
341 }
342 uSqr = util::normSqr<T,L::d>(u);
343 T omegaTot = omega / 2.0 * alpha;
344 for (int iPop=0; iPop < DESCRIPTOR::q; ++iPop) {
345 cell[iPop] *= (T)1-omegaTot;
346 cell[iPop] += omegaTot * eLbH::equilibrium(iPop,rho,u);
347 }
348 lbm<DESCRIPTOR>::addExternalForce(cell, u, omegaTot);
349
350 //statistics.incrementStats(rho, uSqr);
351}
void exit(int exitcode)
Definition singleton.h:165
#define OLB_ASSERT(COND, MESSAGE)
Definition olbDebug.h:45
static void addExternalForce(CELL &cell, const RHO &rho, const U &u, const OMEGA &omega, const FORCE &force) any_platform
Add a force term after BGK collision.
Definition lbm.h:463

References olb::lbm< DESCRIPTOR >::addExternalForce(), and OLB_ASSERT.

+ Here is the call graph for this function:

◆ computeEquilibrium()

template<typename T , typename DESCRIPTOR , typename MOMENTA >
T olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::computeEquilibrium ( int iPop,
T rho,
const T u[DESCRIPTOR::d],
T uSqr ) const
virtual

Compute equilibrium distribution function.

Definition at line 301 of file entropicDynamics.hh.

302{
304}
static T equilibrium(int iPop, T rho, const T u[DESCRIPTOR::d])
Computation of equilibrium distribution.

References olb::entropicLbHelpers< T, DESCRIPTOR >::equilibrium().

+ Here is the call graph for this function:

◆ getOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA >
T olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::getOmega ( ) const
virtual

Get local relaxation parameter of the dynamics.

Definition at line 354 of file entropicDynamics.hh.

355{
356 return omega;
357}

◆ setOmega()

template<typename T , typename DESCRIPTOR , typename MOMENTA >
void olb::ForcedEntropicDynamics< T, DESCRIPTOR, MOMENTA >::setOmega ( T omega_)
virtual

Set local relaxation parameter of the dynamics.

Definition at line 360 of file entropicDynamics.hh.

361{
362 omega = omega_;
363}

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