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

This functor gives a linar profile for a given point x as it computes the distance between x and the axis. More...

#include <frameChangeF3D.h>

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

Public Member Functions

 RotatingLinear3D (std::vector< T > axisPoint_, std::vector< T > axisDirection_, T w_, T scale_=1)
 
bool operator() (T output[], const T x[]) 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)
 

Protected Attributes

std::vector< T > axisPoint
 
std::vector< T > axisDirection
 
w
 
scale
 

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>
class olb::RotatingLinear3D< T >

This functor gives a linar profile for a given point x as it computes the distance between x and the axis.

The field in outcome is the velocity field of q rotating solid Functor with a linear profile e.g. for rotating velocity fields.

Definition at line 75 of file frameChangeF3D.h.

Constructor & Destructor Documentation

◆ RotatingLinear3D()

template<typename T >
olb::RotatingLinear3D< T >::RotatingLinear3D ( std::vector< T > axisPoint_,
std::vector< T > axisDirection_,
T w_,
T scale_ = 1 )

Definition at line 46 of file frameChangeF3D.hh.

48 : AnalyticalF3D<T,T>(3), axisPoint(axisPoint_), axisDirection(axisDirection_),
49 w(w_), scale(scale_) { }
std::vector< T > axisPoint
std::vector< T > axisDirection

Member Function Documentation

◆ operator()()

template<typename T >
bool olb::RotatingLinear3D< T >::operator() ( T output[],
const T x[] )
override

Definition at line 53 of file frameChangeF3D.hh.

54{
55 output[0] = (axisDirection[1]*(x[2]-axisPoint[2]) - axisDirection[2]*(x[1]-axisPoint[1]))*w*scale;
56 output[1] = (axisDirection[2]*(x[0]-axisPoint[0]) - axisDirection[0]*(x[2]-axisPoint[2]))*w*scale;
57 output[2] = (axisDirection[0]*(x[1]-axisPoint[1]) - axisDirection[1]*(x[0]-axisPoint[0]))*w*scale;
58 return true;
59}

Member Data Documentation

◆ axisDirection

template<typename T >
std::vector<T> olb::RotatingLinear3D< T >::axisDirection
protected

Definition at line 78 of file frameChangeF3D.h.

◆ axisPoint

template<typename T >
std::vector<T> olb::RotatingLinear3D< T >::axisPoint
protected

Definition at line 77 of file frameChangeF3D.h.

◆ scale

template<typename T >
T olb::RotatingLinear3D< T >::scale
protected

Definition at line 80 of file frameChangeF3D.h.

◆ w

template<typename T >
T olb::RotatingLinear3D< T >::w
protected

Definition at line 79 of file frameChangeF3D.h.


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