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

Averages given functor inside the local sphere. More...

#include <superLocalAverage2D.h>

+ Inheritance diagram for olb::SuperLocalAverage2D< T, W >:
+ Collaboration diagram for olb::SuperLocalAverage2D< T, W >:

Public Member Functions

 SuperLocalAverage2D (FunctorPtr< SuperF2D< T > > &&f, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF, T radius)
 Primary constructor.
 
bool operator() (W output[], const int input[]) override
 Returns average of functor _f evaluated on all cells both inside a sphere of _radius around input and indicated by _indicatorF.
 
- Public Member Functions inherited from olb::SuperF2D< T, W >
SuperF2D< T, W > & operator- (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator+ (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator* (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator/ (SuperF2D< T, W > &rhs)
 
SuperStructure< T, 2 > & getSuperStructure ()
 
int getBlockFSize () const
 
BlockF2D< W > & getBlockF (int iCloc)
 
bool operator() (W output[], const int input[]) override
 
- Public Member Functions inherited from olb::GenericF< T, S >
virtual ~GenericF ()=default
 
int getSourceDim () const
 read only access to member variable _m
 
int getTargetDim () const
 read only access to member variable _n
 
std::string & getName ()
 read and write access to name
 
std::string const & getName () const
 read only access to name
 
virtual bool operator() (T output[], const S input[])=0
 has to be implemented for 'every' derived class
 
bool operator() (T output[])
 wrapper that call the pure virtual operator() (T output[], const S input[]) from above
 
bool operator() (T output[], S input0)
 
bool operator() (T output[], S input0, S input1)
 
bool operator() (T output[], S input0, S input1, S input2)
 
bool operator() (T output[], S input0, S input1, S input2, S input3)
 

Additional Inherited Members

- Public Types inherited from olb::SuperF2D< T, W >
using identity_functor_type = SuperIdentity2D<T,W>
 
- Public Types inherited from olb::GenericF< T, S >
using targetType = T
 
using sourceType = S
 
- Public Attributes inherited from olb::GenericF< T, S >
std::shared_ptr< GenericF< T, S > > _ptrCalcC
 memory management, frees resouces (calcClass)
 
- Protected Member Functions inherited from olb::SuperF2D< T, W >
 SuperF2D (SuperStructure< T, 2 > &superStructure, int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 
- Protected Attributes inherited from olb::SuperF2D< T, W >
SuperStructure< T, 2 > & _superStructure
 
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF
 Super functors may consist of several BlockF2D<W> derived functors.
 

Detailed Description

template<typename T, typename W = T>
class olb::SuperLocalAverage2D< T, W >

Averages given functor inside the local sphere.

Definition at line 36 of file superLocalAverage2D.h.

Constructor & Destructor Documentation

◆ SuperLocalAverage2D()

template<typename T , typename W >
olb::SuperLocalAverage2D< T, W >::SuperLocalAverage2D ( FunctorPtr< SuperF2D< T > > && f,
FunctorPtr< SuperIndicatorF2D< T > > && indicatorF,
T radius )

Primary constructor.

Parameters
fFunctor to be locally averaged
indicatorFIndicator describing relevant cells
radiusRadius of the locality sphere

Definition at line 35 of file superLocalAverage2D.hh.

39 : SuperF2D<T,W>(f->getSuperStructure(), f->getTargetDim()),
40 _f(std::move(f)),
41 _indicatorF(std::move(indicatorF)),
42 _radius(radius)
43{
44 this->getName() = "LocalAverage(" + _f->getName() + ")";
45
46 LoadBalancer<T>& load = _f->getSuperStructure().getLoadBalancer();
47
48 if ( _f->getBlockFSize() == load.size() &&
49 _indicatorF->getBlockFSize() == load.size() ) {
50 for (int iC = 0; iC < load.size(); ++iC) {
51 this->_blockF.emplace_back(
52 new BlockLocalAverage2D<T,W>(_f->getBlockF(iC),
53 _indicatorF->getBlockIndicatorF(iC),
54 _radius)
55 );
56 }
57 }
58}
std::string & getName()
read and write access to name
Definition genericF.hh:51
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF
Super functors may consist of several BlockF2D<W> derived functors.

References olb::SuperF2D< T, W >::_blockF, olb::GenericF< T, S >::getName(), and olb::LoadBalancer< T >::size().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

template<typename T , typename W >
bool olb::SuperLocalAverage2D< T, W >::operator() ( W output[],
const int input[] )
override

Returns average of functor _f evaluated on all cells both inside a sphere of _radius around input and indicated by _indicatorF.

Definition at line 61 of file superLocalAverage2D.hh.

62{
63 const auto& geometry = this->getSuperStructure().getCuboidGeometry();
64 const auto& load = this->getSuperStructure().getLoadBalancer();
65
66 for (int i = 0; i < this->getTargetDim(); ++i) {
67 output[i] = 0.;
68 }
69
70 if (!_indicatorF(input)) {
71 return true;
72 }
73
74 T centerOfCircle[2];
75 geometry.getPhysR(centerOfCircle, input);
76 IndicatorCircle2D<T> analyticalCircle(centerOfCircle, _radius);
77 SuperIndicatorFfromIndicatorF2D<T> latticeCircle(
78 analyticalCircle,
79 _indicatorF->getSuperGeometry());
80
81 std::size_t voxels(0);
82 int inputTmp[3];
83
84 for (int iC = 0; iC < load.size(); ++iC) {
85 inputTmp[0] = load.glob(iC);
86 const auto& cuboid = geometry.get(inputTmp[0]);
87
88 for (inputTmp[1] = 0; inputTmp[1] < cuboid.getNx(); ++inputTmp[1]) {
89 for (inputTmp[2] = 0; inputTmp[2] < cuboid.getNy(); ++inputTmp[2]) {
90 if (latticeCircle(inputTmp) && _indicatorF(inputTmp)) {
91 T outputTmp[_f->getTargetDim()];
92 _f(outputTmp, inputTmp);
93 for (int i = 0; i < this->getTargetDim(); ++i) {
94 output[i] += outputTmp[i];
95 }
96 voxels += 1;
97 }
98 }
99 }
100 }
101
102#ifdef PARALLEL_MODE_MPI
103 singleton::mpi().reduceAndBcast(voxels, MPI_SUM);
104#endif
105
106 if (voxels > 0) {
107 for (int i = 0; i < this->getTargetDim(); ++i) {
108#ifdef PARALLEL_MODE_MPI
109 singleton::mpi().reduceAndBcast(output[i], MPI_SUM);
110#endif
111 output[i] /= voxels;
112 }
113 }
114
115 return true;
116}
int getTargetDim() const
read only access to member variable _n
Definition genericF.hh:45
SuperStructure< T, 2 > & getSuperStructure()
CuboidGeometry< T, D > & getCuboidGeometry()
Read and write access to cuboid geometry.
LoadBalancer< T > & getLoadBalancer()
Read and write access to the load balancer.
void reduceAndBcast(T &reductVal, MPI_Op op, int root=0, MPI_Comm comm=MPI_COMM_WORLD)
Reduction operation, followed by a broadcast.
MpiManager & mpi()

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

+ Here is the call graph for this function:

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