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

#include <frameChangeF2D.h>

+ Inheritance diagram for olb::Poiseuille2D< T >:
+ Collaboration diagram for olb::Poiseuille2D< T >:

Public Member Functions

 Poiseuille2D (std::vector< T > axisPoint, std::vector< T > axisDirection, T maxVelocity, T radius)
 
 Poiseuille2D (SuperGeometry< T, 2 > &superGeometry, int material, T maxVelocity, T distance2Wall)
 construct from material number, note: untested
 
- Public Member Functions inherited from olb::PowerLaw2D< T >
 PowerLaw2D (std::vector< T > axisPoint, std::vector< T > axisDirection, T maxVelocity, T radius, T exponent)
 
 PowerLaw2D (SuperGeometry< T, 2 > &superGeometry, int material, T maxVelocity, T distance2Wall, T exponent)
 construct from material number, note: untested
 
bool operator() (T output[], const T input[]) override
 
- 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
 
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< 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)
 
- Protected Attributes inherited from olb::PowerLaw2D< T >
std::vector< T > _axisPoint
 
std::vector< T > _axisDirection
 
_maxVelocity
 
_radius
 
_exponent
 

Detailed Description

template<typename T>
class olb::Poiseuille2D< T >

Definition at line 80 of file frameChangeF2D.h.

Constructor & Destructor Documentation

◆ Poiseuille2D() [1/2]

template<typename T >
olb::Poiseuille2D< T >::Poiseuille2D ( std::vector< T > axisPoint,
std::vector< T > axisDirection,
T maxVelocity,
T radius )

Definition at line 96 of file frameChangeF2D.hh.

96 : PowerLaw2D<T>(axisPoint, axisDirection, maxVelocity, radius, 2)
97{
98 this->getName() = "Poiseuille2D";
99}
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:

◆ Poiseuille2D() [2/2]

template<typename T >
olb::Poiseuille2D< T >::Poiseuille2D ( SuperGeometry< T, 2 > & superGeometry,
int material,
T maxVelocity,
T distance2Wall )

construct from material number, note: untested

Definition at line 103 of file frameChangeF2D.hh.

103 : PowerLaw2D<T>(superGeometry, material, maxVelocity, distance2Wall, 2)
104{
105 this->getName() = "Poiseuille2D";
106}

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

+ Here is the call graph for this function:

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