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

Block functor for rounding the value in a certain mode: None := No rounding NearestInteger := rounding to nearest integer Floor:= rounding to nearest lower integer Ceil := rounding to nearest higher integer. More...

#include <blockRoundingF2D.h>

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

Public Member Functions

 BlockRoundingF2D (BlockF2D< T > &f, RoundingMode rounding=RoundingMode::NearestInteger)
 
bool operator() (T output[], const int input[])
 has to be implemented for 'every' derived class
 
- Public Member Functions inherited from olb::BlockF2D< T >
virtual BlockStructureD< 2 > & getBlockStructure ()
 virtual destructor for defined behaviour
 
void setBlockStructure (BlockStructureD< 2 > *blockStructure)
 
BlockF2D< T > & operator- (BlockF2D< T > &rhs)
 
BlockF2D< T > & operator+ (BlockF2D< T > &rhs)
 
BlockF2D< T > & operator* (BlockF2D< T > &rhs)
 
BlockF2D< T > & operator/ (BlockF2D< T > &rhs)
 
- Public Member Functions inherited from olb::GenericF< T, int >
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[], int input0)
 
bool operator() (T output[], int input0, int input1)
 
bool operator() (T output[], int input0, int input1, int input2)
 
bool operator() (T output[], int input0, int input1, int input2, int input3)
 

Additional Inherited Members

- Public Types inherited from olb::GenericF< T, int >
using targetType
 
using sourceType
 
- Public Attributes inherited from olb::GenericF< T, int >
std::shared_ptr< GenericF< T, int > > _ptrCalcC
 memory management, frees resouces (calcClass)
 
- Protected Member Functions inherited from olb::BlockF2D< T >
 BlockF2D (BlockStructureD< 2 > &blockStructure, int targetDim)
 
 BlockF2D (int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< T, int >
 GenericF (int targetDim, int sourceDim)
 
- Protected Attributes inherited from olb::BlockF2D< T >
BlockStructureD< 2 > * _blockStructure
 

Detailed Description

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

Block functor for rounding the value in a certain mode: None := No rounding NearestInteger := rounding to nearest integer Floor:= rounding to nearest lower integer Ceil := rounding to nearest higher integer.

Definition at line 40 of file blockRoundingF2D.h.

Constructor & Destructor Documentation

◆ BlockRoundingF2D()

template<typename T >
olb::BlockRoundingF2D< T >::BlockRoundingF2D ( BlockF2D< T > & f,
RoundingMode rounding = RoundingMode::NearestInteger )
Parameters
fBlock functor
roundingMode how the value shall be rounded

Definition at line 33 of file blockRoundingF2D.hh.

35 :BlockF2D<T>(f.getBlockStructure(),f.getTargetDim()),_f(f),_rounding(rounding)
36{
37 this->getName() = "Rounding(" + _f.getName() + ")";
38}
std::string & getName()
read and write access to name
Definition genericF.hh:51

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

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

template<typename T >
bool olb::BlockRoundingF2D< T >::operator() ( T output[],
const int input[] )
virtual

has to be implemented for 'every' derived class

Implements olb::GenericF< T, int >.

Definition at line 41 of file blockRoundingF2D.hh.

42{
43
44 _f(output, input);
45
46
47 switch ( _rounding ) {
49 for ( int i=0; i < _f.getTargetDim(); i++ ) {
50 output[i] = std::nearbyint(output[i]);
51 }
52 break;
54 for ( int i=0; i < _f.getTargetDim(); i++ ) {
55 output[i] = output[i];
56 }
57 break;
59 for ( int i=0; i < _f.getTargetDim(); i++ ) {
60 output[i] = util::floor(output[i]);
61 }
62 break;
64 for ( int i=0; i < _f.getTargetDim(); i++ ) {
65 output[i] = util::ceil(output[i]);
66 }
67 break;
68 }
69
70 return true;
71}
ADf< T, DIM > ceil(const ADf< T, DIM > &a)
Definition aDiff.h:900
ADf< T, DIM > floor(const ADf< T, DIM > &a)
Definition aDiff.h:869
@ None
No rounding.
@ Ceil
Rounds down.
@ NearestInteger
Rounds to nearest Integer.
@ Floor
Rounds up.

References olb::util::ceil(), olb::Ceil, olb::util::floor(), olb::Floor, olb::NearestInteger, and olb::None.

+ Here is the call graph for this function:

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