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

Converts IndicatorF to AnalyticalF (used for Analytical operands for Identity) More...

#include <analyticalBaseF.h>

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

Public Member Functions

 AnalyticalFfromIndicatorF3D (IndicatorF3D< T > &indicatorF)
 
bool operator() (T output[], const S input[]) override
 has to be implemented for 'every' derived class
 
- 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

IndicatorF3D< T > & _indicatorF
 

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::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::AnalyticalFfromIndicatorF3D< T, S >

Converts IndicatorF to AnalyticalF (used for Analytical operands for Identity)

Definition at line 104 of file analyticalBaseF.h.

Constructor & Destructor Documentation

◆ AnalyticalFfromIndicatorF3D()

template<typename T , typename S >
olb::AnalyticalFfromIndicatorF3D< T, S >::AnalyticalFfromIndicatorF3D ( IndicatorF3D< T > & indicatorF)

Definition at line 80 of file analyticalBaseF.hh.

81 : AnalyticalF3D<T,S>(1), _indicatorF(indicatorF)
82{
83 this->getName() = "IndicatorFfrom" + _indicatorF.getName();
84}
std::string & getName()
read and write access to name
Definition genericF.hh:51

References olb::AnalyticalFfromIndicatorF3D< T, S >::_indicatorF, and olb::GenericF< T, S >::getName().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

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

has to be implemented for 'every' derived class

Implements olb::GenericF< T, S >.

Definition at line 87 of file analyticalBaseF.hh.

88{
89 bool tmp = false;
90 _indicatorF(&tmp, input);
91 if ( tmp ) {
92 output[0] = T(1);
93 }
94 else {
95 output[0] = T(0);
96 }
97 return tmp;
98}

Member Data Documentation

◆ _indicatorF

template<typename T , typename S >
IndicatorF3D<T>& olb::AnalyticalFfromIndicatorF3D< T, S >::_indicatorF
protected

Definition at line 106 of file analyticalBaseF.h.


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