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

Functor for a logarithmic normal distribution. More...

#include <ParticleDistribution.h>

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

Public Member Functions

 LogNormalDistribution (T standardDeviation, T geometricMean, T scale=1)
 
bool operator() (T output[1], const S x[1])
 
- Public Member Functions inherited from olb::AnalyticalF< 1, 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
 
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::AnalyticalF< 1, T, S >
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::AnalyticalF< 1, T, S >
static constexpr unsigned dim
 
- Protected Member Functions inherited from olb::AnalyticalF< 1, 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::LogNormalDistribution< T, S >

Functor for a logarithmic normal distribution.

Definition at line 31 of file ParticleDistribution.h.

Constructor & Destructor Documentation

◆ LogNormalDistribution()

template<typename T , typename S >
olb::LogNormalDistribution< T, S >::LogNormalDistribution ( T standardDeviation,
T geometricMean,
T scale = 1 )

Definition at line 32 of file ParticleDistribution.hh.

32 :AnalyticalF1D<T, S>(1), _standardDeviation(standardDeviation), _geometricMean(geometricMean), _scale(scale) {
33 this->getName() = "LogNDistribution";
34 };
std::string & getName()
read and write access to name
Definition genericF.hh:51

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

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

template<typename T , typename S >
bool olb::LogNormalDistribution< T, S >::operator() ( T output[1],
const S x[1] )

Definition at line 37 of file ParticleDistribution.hh.

37 {
38 output[0] = _scale / (x[0] * _standardDeviation * util::pow((2 * M_PI), 0.5)) * util::exp(-util::pow(util::log(x[0] - _geometricMean), 2.) / (2 * util::pow((_standardDeviation), 2.)));
39
40 return true;
41 };
#define M_PI
ADf< T, DIM > log(const ADf< T, DIM > &a)
Definition aDiff.h:475
cpu::simd::Pack< T > pow(cpu::simd::Pack< T > base, cpu::simd::Pack< T > exp)
Definition pack.h:112
ADf< T, DIM > exp(const ADf< T, DIM > &a)
Definition aDiff.h:455

References olb::util::exp(), olb::util::log(), M_PI, and olb::util::pow().

+ Here is the call graph for this function:

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