OpenLB 1.8.1
Loading...
Searching...
No Matches
olb::opti::DifferenceObjective3D< T, DESCRIPTOR > Class Template Reference

functor to compute 0.5*L2Norm(f-f_wanted)^2 on a lattice More...

#include <dualFunctors3D.h>

+ Inheritance diagram for olb::opti::DifferenceObjective3D< T, DESCRIPTOR >:
+ Collaboration diagram for olb::opti::DifferenceObjective3D< T, DESCRIPTOR >:

Public Member Functions

 DifferenceObjective3D (SuperLattice< T, DESCRIPTOR > &sLattice, FunctorPtr< SuperF3D< T, T > > &&f, FunctorPtr< AnalyticalF3D< T, T > > &&wantedF, FunctorPtr< SuperIndicatorF3D< T > > &&indicatorF)
 
 DifferenceObjective3D (FunctorPtr< SuperLatticeF3D< T, DESCRIPTOR > > &&f, FunctorPtr< AnalyticalF3D< T, T > > &&wantedF, FunctorPtr< SuperIndicatorF3D< T > > &&indicatorF)
 
 DifferenceObjective3D (SuperLattice< T, DESCRIPTOR > &sLattice, FunctorPtr< SuperF3D< T, T > > &&f, FunctorPtr< AnalyticalF3D< T, T > > &&wantedF, SuperGeometry< T, 3 > &geometry, int material)
 
- Public Member Functions inherited from olb::SuperIdentity3D< T, T >
 SuperIdentity3D (FunctorPtr< SuperF3D< T, T > > &&f)
 
bool operator() (T output[], const int input[]) override
 has to be implemented for 'every' derived class
 
- Public Member Functions inherited from olb::SuperF3D< T, T >
SuperF3D< T, W > & operator- (SuperF3D< T, W > &rhs)
 
SuperF3D< T, W > & operator+ (SuperF3D< T, W > &rhs)
 
SuperF3D< T, W > & operator* (SuperF3D< T, W > &rhs)
 
SuperF3D< T, W > & operator/ (SuperF3D< T, W > &rhs)
 
SuperStructure< T, 3 > & getSuperStructure ()
 
int getBlockFSize () const
 
BlockF3D< W > & getBlockF (int iCloc)
 
- Public Member Functions inherited from olb::GenericF< W, 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() (W output[])
 wrapper that call the pure virtual operator() (T output[], const S input[]) from above
 
bool operator() (W output[], int input0)
 
bool operator() (W output[], int input0, int input1)
 
bool operator() (W output[], int input0, int input1, int input2)
 
bool operator() (W output[], int input0, int input1, int input2, int input3)
 

Additional Inherited Members

- Public Types inherited from olb::SuperF3D< T, T >
using identity_functor_type
 
- Public Types inherited from olb::GenericF< W, int >
using targetType
 
using sourceType
 
- Public Attributes inherited from olb::GenericF< W, int >
std::shared_ptr< GenericF< W, int > > _ptrCalcC
 memory management, frees resouces (calcClass)
 
- Static Public Attributes inherited from olb::SuperF3D< T, T >
static constexpr bool isSuper
 
static constexpr unsigned d
 
- Protected Member Functions inherited from olb::SuperF3D< T, T >
 SuperF3D (SuperStructure< T, 3 > &superStructure, int targetDim)
 
- Protected Member Functions inherited from olb::GenericF< W, int >
 GenericF (int targetDim, int sourceDim)
 
- Protected Attributes inherited from olb::SuperIdentity3D< T, T >
FunctorPtr< SuperF3D< T, T > > _f
 
- Protected Attributes inherited from olb::SuperF3D< T, T >
SuperStructure< T, 3 > & _superStructure
 
std::vector< std::unique_ptr< BlockF3D< W > > > _blockF
 Super functors may consist of several BlockF3D<W> derived functors.
 

Detailed Description

template<typename T, typename DESCRIPTOR>
class olb::opti::DifferenceObjective3D< T, DESCRIPTOR >

functor to compute 0.5*L2Norm(f-f_wanted)^2 on a lattice

Definition at line 94 of file dualFunctors3D.h.

Constructor & Destructor Documentation

◆ DifferenceObjective3D() [1/3]

template<typename T , typename DESCRIPTOR >
olb::opti::DifferenceObjective3D< T, DESCRIPTOR >::DifferenceObjective3D ( SuperLattice< T, DESCRIPTOR > & sLattice,
FunctorPtr< SuperF3D< T, T > > && f,
FunctorPtr< AnalyticalF3D< T, T > > && wantedF,
FunctorPtr< SuperIndicatorF3D< T > > && indicatorF )

Definition at line 165 of file dualFunctors3D.hh.

170 : SuperIdentity3D<T,T>([&]()
171{
172 using namespace functor_dsl;
173
174 auto wantedLatticeF = restrictF(wantedF.toShared(), sLattice);
175 auto differenceF = norm<2>(f.toShared() - wantedLatticeF, indicatorF.toShared());
176
177 return util::pow(differenceF, 2) / T(2.0);
178}())
179{
180 this->getName() = "differenceObjective";
181}
std::string & getName()
Definition genericF.hh:51
std::shared_ptr< SuperF2D< T, W > > restrictF(std::shared_ptr< AnalyticalF2D< T, W > > f, SuperLattice< T, DESCRIPTOR > &sLattice)
Returns restriction of a analytical functor f to the lattice sLattice.
Expr pow(Expr base, Expr exp)
Definition expr.cpp:235
constexpr T norm(const ScalarVector< T, D, IMPL > &a) any_platform
Euclidean vector norm.

References olb::norm(), and olb::util::pow().

+ Here is the call graph for this function:

◆ DifferenceObjective3D() [2/3]

template<typename T , typename DESCRIPTOR >
olb::opti::DifferenceObjective3D< T, DESCRIPTOR >::DifferenceObjective3D ( FunctorPtr< SuperLatticeF3D< T, DESCRIPTOR > > && f,
FunctorPtr< AnalyticalF3D< T, T > > && wantedF,
FunctorPtr< SuperIndicatorF3D< T > > && indicatorF )

Definition at line 184 of file dualFunctors3D.hh.

189 f->getSuperLattice(),
190 std::static_pointer_cast<SuperF3D<T,T>>(f.toShared()),
191 std::forward<decltype(wantedF)>(wantedF),
192 std::forward<decltype(indicatorF)>(indicatorF))
193{ }
DifferenceObjective3D(SuperLattice< T, DESCRIPTOR > &sLattice, FunctorPtr< SuperF3D< T, T > > &&f, FunctorPtr< AnalyticalF3D< T, T > > &&wantedF, FunctorPtr< SuperIndicatorF3D< T > > &&indicatorF)

◆ DifferenceObjective3D() [3/3]

template<typename T , typename DESCRIPTOR >
olb::opti::DifferenceObjective3D< T, DESCRIPTOR >::DifferenceObjective3D ( SuperLattice< T, DESCRIPTOR > & sLattice,
FunctorPtr< SuperF3D< T, T > > && f,
FunctorPtr< AnalyticalF3D< T, T > > && wantedF,
SuperGeometry< T, 3 > & geometry,
int material )

Definition at line 196 of file dualFunctors3D.hh.

203 sLattice,
204 std::forward<decltype(f)>(f),
205 std::forward<decltype(wantedF)>(wantedF),
206 geometry.getMaterialIndicator(material))
207{ }

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