OpenLB 1.8.1
Loading...
Searching...
No Matches
olb::SuperMin2D< T, W > Class Template Referencefinal

SuperMin2D returns the min in each component of f on a indicated subset. More...

#include <superMin2D.h>

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

Public Member Functions

 SuperMin2D (FunctorPtr< SuperF2D< T, W > > &&f, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF)
 Constructor for determining the minimum of f on a indicated subset.
 
 SuperMin2D (FunctorPtr< SuperF2D< T, W > > &&f, SuperGeometry< T, 2 > &superGeometry, const int material)
 Constructor for determining the minimum of f on a given material.
 
bool operator() (W output[], const int input[]) override
 has to be implemented for 'every' derived class
 
- Public Member Functions inherited from olb::SuperF2D< T, T >
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)
 
- Public Member Functions inherited from olb::GenericF< W, int >
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
 
bool operator() (W output[])
 wrapper that call the pure virtual operator() (T output[], const S input[]) from above
 
bool operator() (W output[], int input0)
 
bool operator() (W output[], int input0, int input1)
 
bool operator() (W output[], int input0, int input1, int input2)
 
bool operator() (W output[], int input0, int input1, int input2, int input3)
 

Additional Inherited Members

- Public Types inherited from olb::SuperF2D< T, T >
using identity_functor_type
 
- Public Types inherited from olb::GenericF< W, int >
using targetType
 
using sourceType
 
- Public Attributes inherited from olb::GenericF< W, int >
std::shared_ptr< GenericF< W, int > > _ptrCalcC
 memory management, frees resouces (calcClass)
 
- Protected Member Functions inherited from olb::SuperF2D< T, T >
 SuperF2D (SuperStructure< T, 2 > &superStructure, int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< W, int >
 GenericF (int targetDim, int sourceDim)
 
- Protected Attributes inherited from olb::SuperF2D< T, T >
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::SuperMin2D< T, W >

SuperMin2D returns the min in each component of f on a indicated subset.

Definition at line 37 of file superMin2D.h.

Constructor & Destructor Documentation

◆ SuperMin2D() [1/2]

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

Constructor for determining the minimum of f on a indicated subset.

Parameters
ffunctor of which the minimum is to be determined
indicatorFindicator describing the subset on which to evaluate f

Definition at line 34 of file superMin2D.hh.

36 : SuperF2D<T,W>(f->getSuperStructure(), f->getTargetDim()),
37 _f(std::move(f)),
38 _indicatorF(std::move(indicatorF))
39{
40 this->getName() = "Min("+_f->getName()+")";
41
42 LoadBalancer<T>& load = _f->getSuperStructure().getLoadBalancer();
43 auto& cuboid = _f->getSuperStructure().getCuboidDecomposition();
44
45 if ( _f->getBlockFSize() == load.size() &&
46 _indicatorF->getBlockFSize() == load.size() ) {
47 for (int iC = 0; iC < load.size(); ++iC) {
48 this->_blockF.emplace_back(
49 new BlockMin2D<T,W>(_f->getBlockF(iC),
50 _indicatorF->getBlockIndicatorF(iC),
51 cuboid.get(load.glob(iC)))
52 );
53 }
54 }
55}
std::string & getName()
Definition genericF.hh:51
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF

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

+ Here is the call graph for this function:

◆ SuperMin2D() [2/2]

template<typename T , typename W >
olb::SuperMin2D< T, W >::SuperMin2D ( FunctorPtr< SuperF2D< T, W > > && f,
SuperGeometry< T, 2 > & superGeometry,
const int material )

Constructor for determining the minimum of f on a given material.

Parameters
ffunctor of which the minimum is to be determined
superGeometrysuper geometry for constructing material indicator
materialnumber of the relevant material

Definition at line 58 of file superMin2D.hh.

61 : SuperMin2D(
62 std::forward<decltype(f)>(f),
63 superGeometry.getMaterialIndicator(material))
64{ }
SuperMin2D(FunctorPtr< SuperF2D< T, W > > &&f, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF)
Constructor for determining the minimum of f on a indicated subset.
Definition superMin2D.hh:34

Member Function Documentation

◆ operator()()

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

has to be implemented for 'every' derived class

Reimplemented from olb::SuperF2D< T, T >.

Definition at line 67 of file superMin2D.hh.

68{
69 _f->getSuperStructure().communicate();
70 auto& geometry = _f->getSuperStructure().getCuboidDecomposition();
71 LoadBalancer<T>& load = _f->getSuperStructure().getLoadBalancer();
72
73 for (int i = 0; i < this->getTargetDim(); ++i) {
74 output[i] = std::numeric_limits<W>::max();
75 }
76
77 if (this->_blockF.empty()) {
78 W outputTmp[_f->getTargetDim()];
79 int inputTmp[_f->getSourceDim()];
80
81 for (int iC = 0; iC < load.size(); ++iC) {
82 const Cuboid2D<T> cuboid = geometry.get(load.glob(iC));
83 inputTmp[0] = load.glob(iC);
84 for (inputTmp[1] = 0; inputTmp[1] < cuboid.getNx(); ++inputTmp[1]) {
85 for (inputTmp[2] = 0; inputTmp[2] < cuboid.getNy(); ++inputTmp[2]) {
86 if (_indicatorF(inputTmp)) {
87 _f(outputTmp,inputTmp);
88 for (int i = 0; i < this->getTargetDim(); ++i) {
89 if (outputTmp[i] < output[i]) {
90 output[i] = outputTmp[i];
91 }
92 }
93 }
94 }
95 }
96 }
97 }
98 else {
99 for (int iC = 0; iC < load.size(); ++iC) {
100 this->getBlockF(iC)(output, input);
101 }
102 }
103
104#ifdef PARALLEL_MODE_MPI
105 for (int i = 0; i < this->getTargetDim(); ++i) {
106 singleton::mpi().reduceAndBcast(output[i], MPI_MIN);
107 }
108#endif
109 return true;
110}
int getTargetDim() const
Definition genericF.hh:45
BlockF2D< W > & getBlockF(int iCloc)
void reduceAndBcast(T &reductVal, MPI_Op op, int root=0, MPI_Comm comm=MPI_COMM_WORLD)
Reduction operation, followed by a broadcast.
MpiManager & mpi()
Cuboid< T, 2 > Cuboid2D
Definition cuboid.h:149

References olb::SuperStructure< T, D >::communicate(), olb::Cuboid< T, D >::getNx(), olb::Cuboid< T, D >::getNy(), olb::SuperF2D< T, U >::getSuperStructure(), olb::LoadBalancer< T >::glob(), olb::singleton::mpi(), olb::singleton::MpiManager::reduceAndBcast(), and olb::LoadBalancer< T >::size().

+ Here is the call graph for this function:

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