OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | List of all members
olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE > Class Template Referencefinal

#include <eul2LagrPostProcessor3D.h>

+ Inheritance diagram for olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >:
+ Collaboration diagram for olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >:

Public Member Functions

 Eul2LagrPostProcessorGenerator3D (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_, SuperParticleSystem3D< T, PARTICLETYPE > &spSys, SuperGeometry< T, 3 > &superGeometry)
 
 Eul2LagrPostProcessorGenerator3D (SuperParticleSystem3D< T, PARTICLETYPE > &spSys, SuperGeometry< T, 3 > &superGeometry)
 
PostProcessor3D< T, DESCRIPTOR > * generate () const override
 
PostProcessorGenerator3D< T, DESCRIPTOR > * clone () const override
 
- Public Member Functions inherited from olb::PostProcessorGenerator3D< T, DESCRIPTOR >
 PostProcessorGenerator3D (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
virtual ~PostProcessorGenerator3D ()
 
void shift (int deltaX, int deltaY, int deltaZ, int iC_=-1)
 
void shift (LatticeR< 3 > delta, int iC_=-1)
 
bool extract (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
bool extract (LatticeR< 3 > lower, LatticeR< 3 > upper)
 
void reset (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
void reset (LatticeR< 3 > lower, LatticeR< 3 > upper)
 

Additional Inherited Members

- Protected Attributes inherited from olb::PostProcessorGenerator3D< T, DESCRIPTOR >
int x0
 
int x1
 
int y0
 
int y1
 
int z0
 
int z1
 
int iC
 

Detailed Description

template<typename T, typename DESCRIPTOR, template< typename U > class PARTICLETYPE>
class olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >

Definition at line 95 of file eul2LagrPostProcessor3D.h.

Constructor & Destructor Documentation

◆ Eul2LagrPostProcessorGenerator3D() [1/2]

template<typename T , typename DESCRIPTOR , template< typename U > class PARTICLETYPE>
olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >::Eul2LagrPostProcessorGenerator3D ( int x0_,
int x1_,
int y0_,
int y1_,
int z0_,
int z1_,
SuperParticleSystem3D< T, PARTICLETYPE > & spSys,
SuperGeometry< T, 3 > & superGeometry )

Definition at line 116 of file eul2LagrPostProcessor3D.hh.

119 : PostProcessorGenerator3D<T,DESCRIPTOR>(x0_, x1_, y0_, y1_, z0_, z1_)
120{
121 _eul2LagrOperator = std::make_shared<Eul2LagrOperator3D<T,DESCRIPTOR,PARTICLETYPE>>(spSys[singleton::mpi().getRank()], superGeometry);
122}
int getRank() const
Returns the process ID.
MpiManager & mpi()

References olb::singleton::MpiManager::getRank(), and olb::singleton::mpi().

+ Here is the call graph for this function:

◆ Eul2LagrPostProcessorGenerator3D() [2/2]

template<typename T , typename DESCRIPTOR , template< typename U > class PARTICLETYPE>
olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >::Eul2LagrPostProcessorGenerator3D ( SuperParticleSystem3D< T, PARTICLETYPE > & spSys,
SuperGeometry< T, 3 > & superGeometry )

Definition at line 125 of file eul2LagrPostProcessor3D.hh.

127 : PostProcessorGenerator3D<T,DESCRIPTOR>(0, 0, 0, 0, 0, 0)
128{
129 _eul2LagrOperator = std::make_shared<Eul2LagrOperator3D<T,DESCRIPTOR,PARTICLETYPE>>(spSys[singleton::mpi().getRank()], superGeometry);
130}

References olb::singleton::MpiManager::getRank(), and olb::singleton::mpi().

+ Here is the call graph for this function:

Member Function Documentation

◆ clone()

template<typename T , typename DESCRIPTOR , template< typename U > class PARTICLETYPE>
PostProcessorGenerator3D< T, DESCRIPTOR > * olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >::clone ( ) const
overridevirtual

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 140 of file eul2LagrPostProcessor3D.hh.

141{
142 return new Eul2LagrPostProcessorGenerator3D<T,DESCRIPTOR,PARTICLETYPE>(*this);
143}

◆ generate()

template<typename T , typename DESCRIPTOR , template< typename U > class PARTICLETYPE>
PostProcessor3D< T, DESCRIPTOR > * olb::Eul2LagrPostProcessorGenerator3D< T, DESCRIPTOR, PARTICLETYPE >::generate ( ) const
overridevirtual

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 133 of file eul2LagrPostProcessor3D.hh.

134{
135 return new Eul2LagrPostProcessor3D<T,DESCRIPTOR>(this->x0,this->x1,this->y0,this->y1,this->z0,this->z1,
136 this->_eul2LagrOperator);
137}

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