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

#include <wallFunctionBoundaryPostProcessors3D.h>

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

Public Member Functions

 WallFunctionBoundaryProcessorGenerator3D (int x0, int x1, int y0, int y1, int z0, int z1, BlockGeometry< T, 3 > &blockGeometryStructure, std::vector< int > discreteNormal, std::vector< int > missingIndices, UnitConverter< T, DESCRIPTOR > const &converter, wallFunctionParam< T > const &wallFunctionParam, IndicatorF3D< T > *geoIndicator)
 
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::WallFunctionBoundaryProcessorGenerator3D< T, DESCRIPTOR >

Definition at line 174 of file wallFunctionBoundaryPostProcessors3D.h.

Constructor & Destructor Documentation

◆ WallFunctionBoundaryProcessorGenerator3D()

template<typename T , typename DESCRIPTOR >
olb::WallFunctionBoundaryProcessorGenerator3D< T, DESCRIPTOR >::WallFunctionBoundaryProcessorGenerator3D ( int x0,
int x1,
int y0,
int y1,
int z0,
int z1,
BlockGeometry< T, 3 > & blockGeometryStructure,
std::vector< int > discreteNormal,
std::vector< int > missingIndices,
UnitConverter< T, DESCRIPTOR > const & converter,
wallFunctionParam< T > const & wallFunctionParam,
IndicatorF3D< T > * geoIndicator )

Definition at line 874 of file wallFunctionBoundaryPostProcessors3D.hh.

878 : PostProcessorGenerator3D<T,DESCRIPTOR>(x0, x1, y0, y1, z0, z1),
879 _blockGeometryStructure(blockGeometryStructure),
880 _discreteNormal(discreteNormal), _missingIndices(missingIndices),
881 _converter(converter), _wallFunctionParam(wallFunctionParam), _geoIndicator(geoIndicator)
882{ }

Member Function Documentation

◆ clone()

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

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 895 of file wallFunctionBoundaryPostProcessors3D.hh.

896{
897 return new WallFunctionBoundaryProcessorGenerator3D<T,DESCRIPTOR> (this->x0, this->x1, this->y0, this->y1, this->z0, this->z1,
898 _blockGeometryStructure, _discreteNormal, _missingIndices,
899 _converter, _wallFunctionParam, _geoIndicator);
900}

◆ generate()

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

Implements olb::PostProcessorGenerator3D< T, DESCRIPTOR >.

Definition at line 886 of file wallFunctionBoundaryPostProcessors3D.hh.

887{
888 return new WallFunctionBoundaryProcessor3D<T,DESCRIPTOR>( this->x0, this->x1, this->y0, this->y1, this->z0, this->z1,
889 _blockGeometryStructure, _discreteNormal, _missingIndices,
890 _converter, _wallFunctionParam, _geoIndicator);
891}

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