#include <memory>
#include <vector>
#include "utilities/functorPtr.h"
Go to the source code of this file.
|
| namespace | olb |
| | Top level namespace for all of OpenLB.
|
| |
|
| template<typename T , typename W = T> |
| using | olb::SuperL1Norm2D = SuperLpNorm2D<T,W,1> |
| | Functor that returns the L1 norm over omega of the the euklid norm of the input functor.
|
| |
| template<typename T , typename W = T> |
| using | olb::SuperL2Norm2D = SuperLpNorm2D<T,W,2> |
| | Functor that returns the L2 norm over omega of the the euklid norm of the input functor.
|
| |
| template<typename T , typename W = T> |
| using | olb::SuperLinfNorm2D = SuperLpNorm2D<T,W,0> |
| | Functor that returns the Linf norm over omega of the the euklid norm of the input functor.
|
| |