OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | Protected Attributes | List of all members
olb::SuperIndicatorFfromIndicatorF3D< T > Class Template Reference

SuperIndicatorF3D from IndicatorF3D. More...

#include <superIndicatorF3D.h>

+ Inheritance diagram for olb::SuperIndicatorFfromIndicatorF3D< T >:
+ Collaboration diagram for olb::SuperIndicatorFfromIndicatorF3D< T >:

Public Member Functions

 SuperIndicatorFfromIndicatorF3D (FunctorPtr< IndicatorF3D< T > > &&indicatorF, SuperGeometry< T, 3 > &geometry)
 
bool operator() (bool output[], const int input[]) override
 
- Public Member Functions inherited from olb::SuperIndicatorF3D< T >
 SuperIndicatorF3D (SuperGeometry< T, 3 > &geometry)
 
BlockIndicatorF3D< T > & getBlockIndicatorF (int iCloc)
 Get block indicator.
 
SuperGeometry< T, 3 > & getSuperGeometry ()
 Get underlying super geometry.
 
bool operator() (const int input[])
 Indicator specific function operator overload.
 
bool operator() (int iC, int iX, int iY, int iZ)
 Indicator specific function operator overload.
 
void cache ()
 Optional: initialize _cachedData for faster access.
 
- Public Member Functions inherited from olb::SuperF3D< T, bool >
SuperF3D< T, bool > & operator- (SuperF3D< T, bool > &rhs)
 
SuperF3D< T, bool > & operator+ (SuperF3D< T, bool > &rhs)
 
SuperF3D< T, bool > & operator* (SuperF3D< T, bool > &rhs)
 
SuperF3D< T, bool > & operator/ (SuperF3D< T, bool > &rhs)
 
SuperStructure< T, 3 > & getSuperStructure ()
 
int getBlockFSize () const
 
BlockF3D< bool > & getBlockF (int iCloc)
 
bool operator() (bool output[], const int input[])
 
- 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)
 

Protected Attributes

FunctorPtr< IndicatorF3D< T > > _indicatorF
 
- Protected Attributes inherited from olb::SuperIndicatorF3D< T >
SuperGeometry< T, 3 > & _superGeometry
 
std::unique_ptr< SuperData< 3, T, bool > > _cachedData
 
- Protected Attributes inherited from olb::SuperF3D< T, bool >
SuperStructure< T, 3 > & _superStructure
 
std::vector< std::unique_ptr< BlockF3D< bool > > > _blockF
 Super functors may consist of several BlockF3D<W> derived functors.
 

Additional Inherited Members

- Public Types inherited from olb::SuperIndicatorF3D< T >
using identity_functor_type = SuperIndicatorIdentity3D<T>
 
- Public Types inherited from olb::SuperF3D< T, bool >
using identity_functor_type
 
- 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)
 
- Static Public Attributes inherited from olb::SuperF3D< T, bool >
static constexpr bool isSuper
 
static constexpr unsigned d
 
- Protected Member Functions inherited from olb::SuperF3D< T, bool >
 SuperF3D (SuperStructure< T, 3 > &superStructure, int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 

Detailed Description

template<typename T>
class olb::SuperIndicatorFfromIndicatorF3D< T >

SuperIndicatorF3D from IndicatorF3D.

Definition at line 39 of file superIndicatorF3D.h.

Constructor & Destructor Documentation

◆ SuperIndicatorFfromIndicatorF3D()

template<typename T >
olb::SuperIndicatorFfromIndicatorF3D< T >::SuperIndicatorFfromIndicatorF3D ( FunctorPtr< IndicatorF3D< T > > && indicatorF,
SuperGeometry< T, 3 > & geometry )
Parameters
indicatorFIndicator to be converted into a super indicator
geometrySuper geometry required for block indicator construction

Definition at line 36 of file superIndicatorF3D.hh.

38 : SuperIndicatorF3D<T>(geometry),
39 _indicatorF(std::move(indicatorF))
40{
41 this->getName() = "SuperIndicator_from_" + _indicatorF->getName();
42
43 LoadBalancer<T>& load = this->getSuperStructure().getLoadBalancer();
44
45 for (int iC = 0; iC < load.size(); ++iC) {
46 this->_blockF.emplace_back(
47 new BlockIndicatorFfromIndicatorF3D<T>(
48 *_indicatorF, geometry.getBlockGeometry(iC))
49 );
50 }
51}
std::string & getName()
read and write access to name
Definition genericF.hh:51
SuperStructure< T, 3 > & getSuperStructure()
std::vector< std::unique_ptr< BlockF3D< bool > > > _blockF
Super functors may consist of several BlockF3D<W> derived functors.
BlockGeometry< T, D > & getBlockGeometry(int locIC)
Read and write access to a single block geometry.
FunctorPtr< IndicatorF3D< T > > _indicatorF
LoadBalancer< T > & getLoadBalancer()
Read and write access to the load balancer.

References olb::SuperF3D< T, bool >::_blockF, olb::SuperIndicatorFfromIndicatorF3D< T >::_indicatorF, olb::SuperGeometry< T, D >::getBlockGeometry(), olb::SuperStructure< T, D >::getLoadBalancer(), olb::GenericF< T, S >::getName(), olb::SuperF3D< T, bool >::getSuperStructure(), and olb::LoadBalancer< T >::size().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

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

Definition at line 54 of file superIndicatorF3D.hh.

55{
56 T physR[3];
57 this->_superStructure.getCuboidGeometry().getPhysR(physR, input);
58 return _indicatorF(output, physR);
59}
SuperStructure< T, 3 > & _superStructure
CuboidGeometry< T, D > & getCuboidGeometry()
Read and write access to cuboid geometry.

Member Data Documentation

◆ _indicatorF

template<typename T >
FunctorPtr<IndicatorF3D<T> > olb::SuperIndicatorFfromIndicatorF3D< T >::_indicatorF
protected

Definition at line 41 of file superIndicatorF3D.h.


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