OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | List of all members
olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION > Class Template Reference

Standard dynamics with wall capture and material number checks. More...

#include <particleDynamicsBase.h>

+ Inheritance diagram for olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION >:
+ Collaboration diagram for olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION >:

Public Member Functions

 VerletParticleDynamicsMaterialAwareWallCapture (SolidBoundary< T, PARTICLETYPE::d > &solidBoundary, std::shared_ptr< SuperIndicatorMaterial< T, PARTICLETYPE::d > >)
 Constructor.
 
void process (Particle< T, PARTICLETYPE > &particle, T timeStepSize) override
 Procesisng step.
 
- Public Member Functions inherited from olb::particles::dynamics::VerletParticleDynamics< T, PARTICLETYPE, PCONDITION >
 VerletParticleDynamics ()
 Constructor.
 
- Public Member Functions inherited from olb::particles::dynamics::ParticleDynamics< T, PARTICLETYPE >
virtual ~ParticleDynamics ()
 Destructor: virtual to enable inheritance.
 
std::string & getName ()
 read and write access to name
 
std::string const & getName () const
 read only access to name
 

Detailed Description

template<typename T, typename PARTICLETYPE, typename PCONDITION = conditions::active_particles>
class olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION >

Standard dynamics with wall capture and material number checks.

Definition at line 147 of file particleDynamicsBase.h.

Constructor & Destructor Documentation

◆ VerletParticleDynamicsMaterialAwareWallCapture()

template<typename T , typename PARTICLETYPE , typename PCONDITION >
olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION >::VerletParticleDynamicsMaterialAwareWallCapture ( SolidBoundary< T, PARTICLETYPE::d > & solidBoundary,
std::shared_ptr< SuperIndicatorMaterial< T, PARTICLETYPE::d > > materialIndicator )

Constructor.

Definition at line 235 of file particleDynamicsBase.hh.

239 : _solidBoundary(solidBoundary), _materialIndicator(materialIndicator)
240{
241 this->getName() = "VerletParticleDynamicsMaterialAwareWallCapture";
242}
std::string & getName()
read and write access to name

References olb::particles::dynamics::ParticleDynamics< T, PARTICLETYPE >::getName().

+ Here is the call graph for this function:

Member Function Documentation

◆ process()

template<typename T , typename PARTICLETYPE , typename PCONDITION >
void olb::particles::dynamics::VerletParticleDynamicsMaterialAwareWallCapture< T, PARTICLETYPE, PCONDITION >::process ( Particle< T, PARTICLETYPE > & particle,
T timeStepSize )
overridevirtual

Procesisng step.

Reimplemented from olb::particles::dynamics::VerletParticleDynamics< T, PARTICLETYPE, PCONDITION >.

Definition at line 246 of file particleDynamicsBase.hh.

248{
249 //Execute process of VerletParticleDynamcis
251 //Apply wall capture
252 boundaries::wallCaptureMaterialAware(particle, _solidBoundary, *_materialIndicator);
253}
void process(Particle< T, PARTICLETYPE > &particle, T timeStepSize) override
Procesisng step.
void wallCaptureMaterialAware(Particle< T, PARTICLETYPE > &particle, SolidBoundary< T, PARTICLETYPE::d > &solidBoundary, SuperIndicatorMaterial< T, PARTICLETYPE::d > &materialIndicator)
Wall capture with material awareness.

References olb::particles::dynamics::VerletParticleDynamics< T, PARTICLETYPE, PCONDITION >::process(), and olb::particles::boundaries::wallCaptureMaterialAware().

+ Here is the call graph for this function:

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