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

AnalyticalRamdomSeededNormal: alternative version with seed specification. More...

#include <analyticalF.h>

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

Public Member Functions

 AnalyticalRandomSeededNormal (T mean=0., T stdDev=1.)
 
bool operator() (T output[], const S x[]) 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

std::normal_distribution< T > distro
 
- Protected Attributes inherited from olb::AnalyticalRandomSeededBase< D, T, S, seed >
std::random_device rd
 
std::mt19937 gen
 

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::AnalyticalRandomSeededBase< D, T, S, seed >
 AnalyticalRandomSeededBase ()
 
- 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, unsigned seed>
class olb::AnalyticalRandomSeededNormal< D, T, S, seed >

AnalyticalRamdomSeededNormal: alternative version with seed specification.

Definition at line 152 of file analyticalF.h.

Constructor & Destructor Documentation

◆ AnalyticalRandomSeededNormal()

template<unsigned D, typename T , typename S , unsigned seed>
olb::AnalyticalRandomSeededNormal< D, T, S, seed >::AnalyticalRandomSeededNormal ( T mean = 0.,
T stdDev = 1. )

Definition at line 202 of file analyticalF.hh.

203 : AnalyticalRandomSeededBase<D,T,S,seed>(),
204 distro{mean, stdDev}
205{ }
std::normal_distribution< T > distro

Member Function Documentation

◆ operator()()

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

has to be implemented for 'every' derived class

Implements olb::GenericF< T, S >.

Definition at line 208 of file analyticalF.hh.

209{
210 output[0] = distro(this->gen);
211 return true;
212}

Member Data Documentation

◆ distro

template<unsigned D, typename T , typename S , unsigned seed>
std::normal_distribution<T> olb::AnalyticalRandomSeededNormal< D, T, S, seed >::distro
protected

Definition at line 157 of file analyticalF.h.


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