OpenLB 1.8.1
Loading...
Searching...
No Matches
olb::AnalyticalFfromCallableF< D, T, S > Class Template Referencefinal

User friendly AnalyticalF accepting strictly typed callables Vector<T,OUT>(Vector<S,D>) More...

#include <analyticalF.h>

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

Public Member Functions

template<typename F >
 AnalyticalFfromCallableF (F &&f)
 
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)
 

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<unsigned D, typename T, typename S>
class olb::AnalyticalFfromCallableF< D, T, S >

User friendly AnalyticalF accepting strictly typed callables Vector<T,OUT>(Vector<S,D>)

Definition at line 77 of file analyticalF.h.

Constructor & Destructor Documentation

◆ AnalyticalFfromCallableF()

template<unsigned D, typename T , typename S >
template<typename F >
olb::AnalyticalFfromCallableF< D, T, S >::AnalyticalFfromCallableF ( F && f)
inline

Definition at line 83 of file analyticalF.h.

83 :
84 AnalyticalF<D,T,S>(typename decltype(std::function(f))::result_type{}.d),
85 _f([&,f](T* output, const S* input) -> bool {
86 auto out = f(input);
87 for (unsigned iD=0; iD < typename decltype(std::function(f))::result_type{}.d; ++iD) {
88 output[iD] = out[iD];
89 }
90 return true;
91 })
92 { }

Member Function Documentation

◆ operator()()

template<unsigned D, typename T , typename S >
bool olb::AnalyticalFfromCallableF< D, T, S >::operator() ( T output[],
const S input[] )
inlineoverridevirtual

has to be implemented for 'every' derived class

Implements olb::GenericF< T, S >.

Definition at line 94 of file analyticalF.h.

94 {
95 return _f(output, input);
96 }

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