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

#include <smoothIndicatorBaseF3D.h>

+ Inheritance diagram for olb::SmoothIndicatorIdentity3D< T, S >:
+ Collaboration diagram for olb::SmoothIndicatorIdentity3D< T, S >:

Public Member Functions

 SmoothIndicatorIdentity3D (SmoothIndicatorF3D< T, S, false > &f)
 
bool operator() (T output[], const S input[]) override
 has to be implemented for 'every' derived class
 
- Public Member Functions inherited from olb::SmoothIndicatorF3D< T, S, false >
void init ()
 
const Vector< S, 3 > & getMin () const
 
const Vector< S, 3 > & getMax () const
 
const Vector< S, 3 > & getPos () const
 
const Vector< S, 9 > & getRotationMatrix () const
 
const Vector< S, 3 > & getTheta () const
 
const S & getCircumRadius () const
 
const S & getEpsilon () const
 
std::string name ()
 
void setPos (Vector< S, 3 > pos)
 
void setTheta (Vector< S, 3 > theta)
 
void setEpsilon (S epsilon)
 
virtual S getVolume ()
 
virtual Vector< S, 4 > calcMofiAndMass (S density)
 
virtual Vector< S, 3 > calcCenterOfMass ()
 
virtual Vector< S, 3 > surfaceNormal (const Vector< S, 3 > &pos, const S meshSize)
 
virtual Vector< S, 3 > surfaceNormal (const Vector< S, 3 > &pos, const S meshSize, std::function< Vector< S, 3 >(const Vector< S, 3 > &)> transformPos)
 
virtual const S signedDistance (const PhysR< T, 3 > input)
 
virtual bool distance (S &distance, const Vector< S, 3 > &origin, const Vector< S, 3 > &direction, S precision, S pitch)
 
bool isInsideCircumRadius (const PhysR< S, 3 > &input)
 
SmoothIndicatorF3D< T, S, false > & operator+ (SmoothIndicatorF3D< T, S, false > &rhs)
 
- Public Member Functions inherited from olb::AnalyticalF< D, T, S >
AnalyticalF< D, T, S > & operator- (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator+ (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator* (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator/ (AnalyticalF< D, T, S > &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
 
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

SmoothIndicatorF3D< T, S, false > & _f
 
- Protected Attributes inherited from olb::SmoothIndicatorF3D< T, S, false >
Vector< S, 3 > _myMin
 
Vector< S, 3 > _myMax
 
Vector< S, 3 > _pos
 
Vector< S, 9 > _rotMat
 
_circumRadius
 
Vector< S, 3 > _theta
 
_epsilon
 
std::string _name = "smoothIndicator3D"
 

Additional Inherited Members

- Public Types inherited from olb::AnalyticalF< D, T, S >
using identity_functor_type = AnalyticalIdentity<D,T,S>
 
- 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::AnalyticalF< D, T, S >
static constexpr unsigned dim = D
 
- Protected Member Functions inherited from olb::SmoothIndicatorF3D< T, S, false >
 SmoothIndicatorF3D ()
 
- Protected Member Functions inherited from olb::AnalyticalF< D, T, S >
 AnalyticalF (int n)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 

Detailed Description

template<typename T, typename S>
class olb::SmoothIndicatorIdentity3D< T, S >

Definition at line 89 of file smoothIndicatorBaseF3D.h.

Constructor & Destructor Documentation

◆ SmoothIndicatorIdentity3D()

template<typename T , typename S >
olb::SmoothIndicatorIdentity3D< T, S >::SmoothIndicatorIdentity3D ( SmoothIndicatorF3D< T, S, false > & f)

Definition at line 227 of file smoothIndicatorBaseF3D.hh.

228 : _f(f)
229{
230 this->_myMin = _f.getMin();
231 this->_myMax = _f.getMax();
232 std::swap( _f._ptrCalcC, this->_ptrCalcC );
233}
std::shared_ptr< GenericF< T, S > > _ptrCalcC
memory management, frees resouces (calcClass)
Definition genericF.h:71
SmoothIndicatorF3D< T, S, false > & _f

References olb::SmoothIndicatorIdentity3D< T, S >::_f, olb::SmoothIndicatorF3D< T, S, false >::_myMax, olb::SmoothIndicatorF3D< T, S, false >::_myMin, olb::GenericF< T, S >::_ptrCalcC, olb::SmoothIndicatorF3D< T, S, false >::getMax(), and olb::SmoothIndicatorF3D< T, S, false >::getMin().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

template<typename T , typename S >
bool olb::SmoothIndicatorIdentity3D< T, S >::operator() ( T output[],
const S input[] )
overridevirtual

has to be implemented for 'every' derived class

Reimplemented from olb::SmoothIndicatorF3D< T, S, false >.

Definition at line 236 of file smoothIndicatorBaseF3D.hh.

237{
238 _f(output, input);
239 return true;
240}

Member Data Documentation

◆ _f

template<typename T , typename S >
SmoothIndicatorF3D<T, S, false>& olb::SmoothIndicatorIdentity3D< T, S >::_f
protected

Definition at line 91 of file smoothIndicatorBaseF3D.h.


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