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

Block indicator functor from material numbers. More...

#include <blockIndicatorF2D.h>

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

Public Member Functions

 BlockIndicatorMaterial2D (BlockGeometry< T, 2 > &blockGeometry, std::vector< int > materials)
 
 BlockIndicatorMaterial2D (BlockGeometry< T, 2 > &blockGeometry, std::list< int > materials)
 
 BlockIndicatorMaterial2D (BlockGeometry< T, 2 > &blockGeometry, int material)
 
bool operator() (bool output[], const int input[]) override
 
bool isEmpty () override
 Returns true iff indicated domain subset is empty.
 
Vector< int, 2 > getMin () override
 Returns min lattice position of the indicated domain's bounding box.
 
Vector< int, 2 > getMax () override
 Returns max lattice position of the indicated domain's bounding box.
 
- Public Member Functions inherited from olb::BlockIndicatorF2D< T >
 BlockIndicatorF2D (BlockGeometry< T, 2 > &geometry)
 
BlockGeometry< T, 2 > & getBlockGeometry ()
 Get underlying block geometry structure.
 
bool operator() (const int input[])
 Block indicator specific function operator overload.
 
bool operator() (int iX, int iY)
 
bool operator() (LatticeR< 2 > loc)
 
void setCache (const BlockData< 2, T, bool > &cache)
 Set bool-mask cache to be used by indicator operator overloads.
 
- Public Member Functions inherited from olb::BlockF2D< bool >
virtual BlockStructureD< 2 > & getBlockStructure ()
 virtual destructor for defined behaviour
 
void setBlockStructure (BlockStructureD< 2 > *blockStructure)
 
BlockF2D< bool > & operator- (BlockF2D< bool > &rhs)
 
BlockF2D< bool > & operator+ (BlockF2D< bool > &rhs)
 
BlockF2D< bool > & operator* (BlockF2D< bool > &rhs)
 
BlockF2D< bool > & operator/ (BlockF2D< bool > &rhs)
 
- 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

const std::vector< int > _materials
 
- Protected Attributes inherited from olb::BlockIndicatorF2D< T >
BlockGeometry< T, 2 > & _blockGeometryStructure
 
const BlockData< 2, T, bool > * _cachedData
 
- Protected Attributes inherited from olb::BlockF2D< bool >
BlockStructureD< 2 > * _blockStructure
 

Additional Inherited Members

- 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::BlockF2D< bool >
 BlockF2D (BlockStructureD< 2 > &blockStructure, int targetDim)
 
 BlockF2D (int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 

Detailed Description

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

Block indicator functor from material numbers.

Definition at line 88 of file blockIndicatorF2D.h.

Constructor & Destructor Documentation

◆ BlockIndicatorMaterial2D() [1/3]

template<typename T >
olb::BlockIndicatorMaterial2D< T >::BlockIndicatorMaterial2D ( BlockGeometry< T, 2 > & blockGeometry,
std::vector< int > materials )
Parameters
blockGeometryBlock geometry structue to be queried
materialsMaterial number vector

Definition at line 101 of file blockIndicatorF2D.hh.

103 : BlockIndicatorF2D<T>(blockGeometry),
104 _materials(materials)
105{ }
const std::vector< int > _materials

◆ BlockIndicatorMaterial2D() [2/3]

template<typename T >
olb::BlockIndicatorMaterial2D< T >::BlockIndicatorMaterial2D ( BlockGeometry< T, 2 > & blockGeometry,
std::list< int > materials )
Parameters
blockGeometryBlock geometry structure to be queried
materialsMaterial number list

Definition at line 108 of file blockIndicatorF2D.hh.

110 : BlockIndicatorMaterial2D(blockGeometry,
111 std::vector<int>(materials.begin(), materials.end()))
112{ }
BlockIndicatorMaterial2D(BlockGeometry< T, 2 > &blockGeometry, std::vector< int > materials)

◆ BlockIndicatorMaterial2D() [3/3]

template<typename T >
olb::BlockIndicatorMaterial2D< T >::BlockIndicatorMaterial2D ( BlockGeometry< T, 2 > & blockGeometry,
int material )
Parameters
blockGeometryBlock geometry structure to be queried
materialMaterial number

Definition at line 115 of file blockIndicatorF2D.hh.

117 : BlockIndicatorMaterial2D(blockGeometry, std::vector<int>(1,material))
118{ }

Member Function Documentation

◆ getMax()

template<typename T >
Vector< int, 2 > olb::BlockIndicatorMaterial2D< T >::getMax ( )
overridevirtual

Returns max lattice position of the indicated domain's bounding box.

Implements olb::BlockIndicatorF2D< T >.

Definition at line 171 of file blockIndicatorF2D.hh.

172{
173 const auto& statistics = this->getBlockGeometry().getStatistics();
174
175 Vector<int,2> globalMax = -this->getBlockGeometry().getPadding();
176
177 for ( int material : _materials ) {
178 if ( statistics.getNvoxel(material) > 0 ) {
179
180 const Vector<int,2> localMax = statistics.getMaxLatticeR(material);
181 for ( int d = 0; d < 2; ++d ) {
182 globalMax[d] = localMax[d] > globalMax[d] ? localMax[d] : globalMax[d];
183 }
184 }
185 }
186
187 return globalMax;
188}
const BlockGeometryStatistics< T, D > & getStatistics() const
Read only access to the associated block statistic.
BlockGeometry< T, 2 > & getBlockGeometry()
Get underlying block geometry structure.
int getPadding() const
Read only access to padding.
constexpr int d() any_platform

◆ getMin()

template<typename T >
Vector< int, 2 > olb::BlockIndicatorMaterial2D< T >::getMin ( )
overridevirtual

Returns min lattice position of the indicated domain's bounding box.

Implements olb::BlockIndicatorF2D< T >.

Definition at line 148 of file blockIndicatorF2D.hh.

149{
150 const auto& blockGeometry = this->getBlockGeometry();
151 const auto& statistics = blockGeometry.getStatistics();
152
153 Vector<int,2> globalMin{
154 blockGeometry.getNx()+blockGeometry.getPadding()-1,
155 blockGeometry.getNy()+blockGeometry.getPadding()-1
156 };
157
158 for ( int material : _materials ) {
159 if ( statistics.getNvoxel(material) > 0 ) {
160 const Vector<int,2> localMin = statistics.getMinLatticeR(material);
161 for ( int d = 0; d < 2; ++d ) {
162 globalMin[d] = localMin[d] < globalMin[d] ? localMin[d] : globalMin[d];
163 }
164 }
165 }
166
167 return globalMin;
168}

◆ isEmpty()

template<typename T >
bool olb::BlockIndicatorMaterial2D< T >::isEmpty ( )
overridevirtual

Returns true iff indicated domain subset is empty.

Reimplemented from olb::BlockIndicatorF2D< T >.

Definition at line 138 of file blockIndicatorF2D.hh.

139{
140 const auto& statistics = this->getBlockGeometry().getStatistics();
141 return std::none_of(_materials.cbegin(), _materials.cend(),
142 [&statistics](int material) -> bool {
143 return statistics.getNvoxel(material) > 0;
144 });
145}

◆ operator()()

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

Definition at line 121 of file blockIndicatorF2D.hh.

122{
123 // read material number explicitly using the const version
124 // of BlockGeometry<T,2>::get to avoid resetting geometry
125 // statistics:
126 const BlockGeometry<T,2>& blockGeometry = this->_blockGeometryStructure;
127 const int current = blockGeometry.getMaterial({input[0], input[1]});
128 output[0] = std::any_of(_materials.cbegin(),
129 _materials.cend(),
130 [current](int material) {
131 return current == material;
132 });
133
134 return true;
135}
int getMaterial(LatticeR< D > latticeR) const
returns the (iX,iY) entry in the 2D scalar field
BlockGeometry< T, 2 > & _blockGeometryStructure

References olb::BlockGeometry< T, D >::getMaterial().

+ Here is the call graph for this function:

Member Data Documentation

◆ _materials

template<typename T >
const std::vector<int> olb::BlockIndicatorMaterial2D< T >::_materials
protected

Definition at line 90 of file blockIndicatorF2D.h.


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