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

Indicator extended by a layer. More...

#include <superIndicatorF3D.h>

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

Public Member Functions

 SuperIndicatorLayer3D (FunctorPtr< SuperIndicatorF3D< T > > &&indicatorF)
 
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)
 

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)
 
- 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.
 

Detailed Description

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

Indicator extended by a layer.

Definition at line 102 of file superIndicatorF3D.h.

Constructor & Destructor Documentation

◆ SuperIndicatorLayer3D()

template<typename T >
olb::SuperIndicatorLayer3D< T >::SuperIndicatorLayer3D ( FunctorPtr< SuperIndicatorF3D< T > > && indicatorF)

Definition at line 138 of file superIndicatorF3D.hh.

139 : SuperIndicatorF3D<T>(indicatorF->getSuperGeometry()),
140 _indicatorF(std::move(indicatorF))
141{
142 this->getName() = _indicatorF->getName();
143
144 for (int iC = 0; iC < _indicatorF->getBlockFSize(); ++iC) {
145 this->_blockF.emplace_back(
146 new BlockIndicatorLayer3D<T>(_indicatorF->getBlockIndicatorF(iC)));
147 }
148}
std::string & getName()
read and write access to name
Definition genericF.hh:51
std::vector< std::unique_ptr< BlockF3D< bool > > > _blockF
Super functors may consist of several BlockF3D<W> derived functors.

References olb::SuperF3D< T, bool >::_blockF, and olb::GenericF< T, S >::getName().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

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

Definition at line 151 of file superIndicatorF3D.hh.

152{
153 _indicatorF(output, input);
154 for (int iPop=1; iPop < descriptors::D3Q27<>::q; ++iPop) {
155 bool tmpOutput{};
156 Vector<int,4> tmpInput(input);
157 auto c_i = descriptors::c<descriptors::D3Q27<>>(iPop);
158 tmpInput += Vector<int,4>{0, c_i[0], c_i[1], c_i[2]};
159 _indicatorF(&tmpOutput, tmpInput.data());
160 output[0] |= tmpOutput;
161 }
162 return true;
163}

References olb::Vector< T, D >::data().

+ Here is the call graph for this function:

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