OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | List of all members
olb::SuperIntegral2D< T, W > Class Template Referencefinal

SuperIntegral2D integrates f on a indicated subset. More...

#include <superIntegralF2D.h>

+ Inheritance diagram for olb::SuperIntegral2D< T, W >:
+ Collaboration diagram for olb::SuperIntegral2D< T, W >:

Public Member Functions

 SuperIntegral2D (FunctorPtr< SuperF2D< T, W > > &&f, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF)
 Constructor for integrating f on a indicated subset.
 
 SuperIntegral2D (FunctorPtr< SuperF2D< T, W > > &&f, SuperGeometry< T, 2 > &superGeometry, const int material)
 Constructor for integrating f on a given material.
 
bool operator() (W output[], const int input[]) override
 
- Public Member Functions inherited from olb::SuperF2D< T, W >
SuperF2D< T, W > & operator- (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator+ (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator* (SuperF2D< T, W > &rhs)
 
SuperF2D< T, W > & operator/ (SuperF2D< T, W > &rhs)
 
SuperStructure< T, 2 > & getSuperStructure ()
 
int getBlockFSize () const
 
BlockF2D< W > & getBlockF (int iCloc)
 
bool operator() (W output[], const int input[]) override
 
- 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::SuperF2D< T, W >
using identity_functor_type = SuperIdentity2D<T,W>
 
- 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)
 
- Protected Member Functions inherited from olb::SuperF2D< T, W >
 SuperF2D (SuperStructure< T, 2 > &superStructure, int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 
- Protected Attributes inherited from olb::SuperF2D< T, W >
SuperStructure< T, 2 > & _superStructure
 
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF
 Super functors may consist of several BlockF2D<W> derived functors.
 

Detailed Description

template<typename T, typename W = T>
class olb::SuperIntegral2D< T, W >

SuperIntegral2D integrates f on a indicated subset.

Definition at line 67 of file superIntegralF2D.h.

Constructor & Destructor Documentation

◆ SuperIntegral2D() [1/2]

template<typename T , typename W >
olb::SuperIntegral2D< T, W >::SuperIntegral2D ( FunctorPtr< SuperF2D< T, W > > && f,
FunctorPtr< SuperIndicatorF2D< T > > && indicatorF )

Constructor for integrating f on a indicated subset.

Parameters
ffunctor to be integrated
indicatorFindicator describing the subset on which to evaluate f

Definition at line 118 of file superIntegralF2D.hh.

120 : SuperF2D<T,W>(f->getSuperStructure(), f->getTargetDim()),
121 _f(std::move(f)),
122 _indicatorF(std::move(indicatorF))
123{
124 this->getName() = "Integral("+_f->getName()+")";
125
126 LoadBalancer<T>& load = _f->getSuperStructure().getLoadBalancer();
127
128 if ( _f->getBlockFSize() == load.size() &&
129 _indicatorF->getBlockFSize() == load.size() ) {
130 for (int iC = 0; iC < load.size(); ++iC) {
131 this->_blockF.emplace_back(
132 new BlockIntegral2D<T,W>(_f->getBlockF(iC),
133 _indicatorF->getBlockIndicatorF(iC))
134 );
135 }
136 }
137}
std::string & getName()
read and write access to name
Definition genericF.hh:51
std::vector< std::unique_ptr< BlockF2D< W > > > _blockF
Super functors may consist of several BlockF2D<W> derived functors.

References olb::SuperF2D< T, W >::_blockF, olb::GenericF< T, S >::getName(), and olb::LoadBalancer< T >::size().

+ Here is the call graph for this function:

◆ SuperIntegral2D() [2/2]

template<typename T , typename W >
olb::SuperIntegral2D< T, W >::SuperIntegral2D ( FunctorPtr< SuperF2D< T, W > > && f,
SuperGeometry< T, 2 > & superGeometry,
const int material )

Constructor for integrating f on a given material.

Parameters
ffunctor to be integrated
superGeometrysuper geometry for constructing material indicator
materialnumber of the relevant material

Definition at line 140 of file superIntegralF2D.hh.

144 std::forward<decltype(f)>(f),
145 superGeometry.getMaterialIndicator(material))
146{ }
std::unique_ptr< SuperIndicatorF< T, D > > getMaterialIndicator(std::vector< int > &&materials)
Returns a material indicator using the given vector of materials.
SuperIntegral2D(FunctorPtr< SuperF2D< T, W > > &&f, FunctorPtr< SuperIndicatorF2D< T > > &&indicatorF)
Constructor for integrating f on a indicated subset.

Member Function Documentation

◆ operator()()

template<typename T , typename W >
bool olb::SuperIntegral2D< T, W >::operator() ( W output[],
const int input[] )
override

Definition at line 149 of file superIntegralF2D.hh.

150{
151 _f->getSuperStructure().communicate();
152 CuboidGeometry2D<T>& geometry = _f->getSuperStructure().getCuboidGeometry();
153 LoadBalancer<T>& load = _f->getSuperStructure().getLoadBalancer();
154
155 for (int i = 0; i < this->getTargetDim(); ++i) {
156 output[i] = W(0);
157 }
158
159 if (this->_blockF.empty()) {
160 W outputTmp[_f->getTargetDim()];
161 int inputTmp[_f->getSourceDim()];
162
163 for (int iC = 0; iC < load.size(); ++iC) {
164 const Cuboid2D<T> cuboid = geometry.get(load.glob(iC));
165 const W weight = pow(cuboid.getDeltaR(), 2);
166 inputTmp[0] = load.glob(iC);
167 for (inputTmp[1] = 0; inputTmp[1] < cuboid.getNx(); ++inputTmp[1]) {
168 for (inputTmp[2] = 0; inputTmp[2] < cuboid.getNy(); ++inputTmp[2]) {
169 if (_indicatorF(inputTmp)) {
170 _f(outputTmp,inputTmp);
171 for (int i = 0; i < this->getTargetDim(); ++i) {
172 output[i] += outputTmp[i] * weight;
173 }
174 }
175 }
176 }
177 }
178 }
179 else {
180 for (int iC = 0; iC < load.size(); ++iC) {
181 this->getBlockF(iC)(output, input);
182 }
183 }
184
185#ifdef PARALLEL_MODE_MPI
186 for (int i = 0; i < this->getTargetDim(); ++i) {
187 singleton::mpi().reduceAndBcast(output[i], MPI_SUM);
188 }
189#endif
190 return true;
191}
int getTargetDim() const
read only access to member variable _n
Definition genericF.hh:45
BlockF2D< W > & getBlockF(int iCloc)
void reduceAndBcast(T &reductVal, MPI_Op op, int root=0, MPI_Comm comm=MPI_COMM_WORLD)
Reduction operation, followed by a broadcast.
Pack< T > pow(Pack< T > base, Pack< T > exp)
Definition 256.h:395
MpiManager & mpi()

References olb::SuperStructure< T, D >::communicate(), olb::CuboidGeometry2D< T >::get(), olb::Cuboid2D< T >::getDeltaR(), olb::Cuboid2D< T >::getNx(), olb::Cuboid2D< T >::getNy(), olb::SuperF2D< T, W >::getSuperStructure(), olb::LoadBalancer< T >::glob(), olb::singleton::mpi(), olb::singleton::MpiManager::reduceAndBcast(), and olb::LoadBalancer< T >::size().

+ Here is the call graph for this function:

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