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

Linear Bouzidi BC Generator. More...

#include <offBoundaryPostProcessors3D.h>

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

Public Member Functions

 ZeroVelocityBouzidiLinearPostProcessorGenerator3D (int x_, int y_, int z_, int iPop_, T dist_)
 
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>
class olb::ZeroVelocityBouzidiLinearPostProcessorGenerator3D< T, DESCRIPTOR >

Linear Bouzidi BC Generator.

Definition at line 129 of file offBoundaryPostProcessors3D.h.

Constructor & Destructor Documentation

◆ ZeroVelocityBouzidiLinearPostProcessorGenerator3D()

template<typename T , typename DESCRIPTOR >
olb::ZeroVelocityBouzidiLinearPostProcessorGenerator3D< T, DESCRIPTOR >::ZeroVelocityBouzidiLinearPostProcessorGenerator3D ( int x_,
int y_,
int z_,
int iPop_,
T dist_ )

Definition at line 266 of file offBoundaryPostProcessors3D.hh.

268 : PostProcessorGenerator3D<T,DESCRIPTOR>(x_, x_, y_, y_, z_, z_),
269 x(x_), y(y_), z(z_), iPop(iPop_), dist(dist_)
270{ }

Member Function Documentation

◆ clone()

template<typename T , typename DESCRIPTOR >
PostProcessorGenerator3D< T, DESCRIPTOR > * olb::ZeroVelocityBouzidiLinearPostProcessorGenerator3D< T, DESCRIPTOR >::clone ( ) const
overridevirtual

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 282 of file offBoundaryPostProcessors3D.hh.

283{
284 return new ZeroVelocityBouzidiLinearPostProcessorGenerator3D<T,DESCRIPTOR>
285 (this->x, this->y, this->z, this->iPop, this->dist);
286}

◆ generate()

template<typename T , typename DESCRIPTOR >
PostProcessor3D< T, DESCRIPTOR > * olb::ZeroVelocityBouzidiLinearPostProcessorGenerator3D< T, DESCRIPTOR >::generate ( ) const
overridevirtual

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 274 of file offBoundaryPostProcessors3D.hh.

275{
276 return new ZeroVelocityBouzidiLinearPostProcessor3D<T,DESCRIPTOR>
277 ( this->x, this->y, this->z, this->iPop, this->dist);
278}

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