OpenLB 1.7
Loading...
Searching...
No Matches
Classes | Namespaces | Typedefs
superCalcF2D.h File Reference
#include "utilities/arithmetic.h"
#include "superBaseF2D.h"
#include "utilities/functorPtr.h"
+ Include dependency graph for superCalcF2D.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  olb::SuperCalcF2D< T, W, F >
 Arithmetic operations for SuperF2D functors. More...
 

Namespaces

namespace  olb
 Top level namespace for all of OpenLB.
 

Typedefs

template<typename T , typename W >
using olb::SuperCalcPlus2D = SuperCalcF2D<T,W,util::plus>
 Addition functor (W==bool: Union)
 
template<typename T , typename W >
using olb::SuperCalcMinus2D = SuperCalcF2D<T,W,util::minus>
 Subtraction functor (W==bool: Without)
 
template<typename T , typename W >
using olb::SuperCalcMultiplication2D = SuperCalcF2D<T,W,util::multiplies>
 Multiplication functor (W==bool: Intersection)
 
template<typename T , typename W >
using olb::SuperCalcDivision2D = SuperCalcF2D<T,W,util::divides>
 Division functor.
 
template<typename T , typename W = T>
using olb::SuperCalcPower2D = SuperCalcF2D<T,W,util::power>
 Power functor.
 

Functions

Arithmetic for functors managed by std::shared_ptr
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator+ (std::shared_ptr< SuperF2D< T, W > > lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator+ (std::shared_ptr< SuperF2D< T, W > > lhs, W rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator+ (W lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator- (std::shared_ptr< SuperF2D< T, W > > lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator- (std::shared_ptr< SuperF2D< T, W > > lhs, W rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator- (W lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator* (std::shared_ptr< SuperF2D< T, W > > lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator* (std::shared_ptr< SuperF2D< T, W > > lhs, W rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator* (W lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator/ (std::shared_ptr< SuperF2D< T, W > > lhs, std::shared_ptr< SuperF2D< T, W > > rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator/ (std::shared_ptr< SuperF2D< T, W > > lhs, W rhs)
 
template<typename T , typename W >
std::shared_ptr< SuperF2D< T, W > > olb::operator/ (W lhs, std::shared_ptr< SuperF2D< T, W > > rhs)