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

Generator class for the PostProcessors calculating the interfacial force. More...

#include <freeEnergyPostProcessor3D.h>

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

Public Member Functions

 FreeEnergyForceGenerator3D (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
 FreeEnergyForceGenerator3D ()
 
PostProcessor3D< T, DESCRIPTOR > * generate (std::vector< BlockStructureD< 3 > * > partners) const override
 
LatticeCouplingGenerator3D< T, DESCRIPTOR > * clone () const override
 
- Public Member Functions inherited from olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >
 LatticeCouplingGenerator3D ()=delete
 
 LatticeCouplingGenerator3D (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
virtual ~LatticeCouplingGenerator3D ()
 
void shift (LatticeR< 3 > delta, int iC_=-1)
 
void shift (int deltaX, int deltaY, int deltaZ, int iC_=-1)
 
bool extract (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 
bool extract (LatticeR< 3 > lower, LatticeR< 3 > upper)
 
void reset (LatticeR< 3 > lower, LatticeR< 3 > upper)
 
void reset (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_)
 

Additional Inherited Members

- Protected Attributes inherited from olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >
int x0
 
int x1
 
int y0
 
int y1
 
int z0
 
int z1
 
int iC
 

Detailed Description

template<typename T, typename DESCRIPTOR>
class olb::FreeEnergyForceGenerator3D< T, DESCRIPTOR >

Generator class for the PostProcessors calculating the interfacial force.

Definition at line 196 of file freeEnergyPostProcessor3D.h.

Constructor & Destructor Documentation

◆ FreeEnergyForceGenerator3D() [1/2]

template<typename T , typename DESCRIPTOR >
olb::FreeEnergyForceGenerator3D< T, DESCRIPTOR >::FreeEnergyForceGenerator3D ( int x0_,
int x1_,
int y0_,
int y1_,
int z0_,
int z1_ )

Definition at line 557 of file freeEnergyPostProcessor3D.hh.

559 : LatticeCouplingGenerator3D<T,DESCRIPTOR>(x0_, x1_, y0_, y1_, z0_, z1_)
560{ }

◆ FreeEnergyForceGenerator3D() [2/2]

template<typename T , typename DESCRIPTOR >
olb::FreeEnergyForceGenerator3D< T, DESCRIPTOR >::FreeEnergyForceGenerator3D ( )

Definition at line 563 of file freeEnergyPostProcessor3D.hh.

564 : LatticeCouplingGenerator3D<T,DESCRIPTOR>(0, 0, 0, 0, 0, 0)
565{ }

Member Function Documentation

◆ clone()

template<typename T , typename DESCRIPTOR >
LatticeCouplingGenerator3D< T, DESCRIPTOR > * olb::FreeEnergyForceGenerator3D< T, DESCRIPTOR >::clone ( ) const
overridevirtual

Implements olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >.

Definition at line 576 of file freeEnergyPostProcessor3D.hh.

577{
578 return new FreeEnergyForceGenerator3D<T,DESCRIPTOR>(*this);
579}

◆ generate()

template<typename T , typename DESCRIPTOR >
PostProcessor3D< T, DESCRIPTOR > * olb::FreeEnergyForceGenerator3D< T, DESCRIPTOR >::generate ( std::vector< BlockStructureD< 3 > * > partners) const
overridevirtual

Implements olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >.

Definition at line 568 of file freeEnergyPostProcessor3D.hh.

570{
571 return new FreeEnergyForceCoupling3D<T,DESCRIPTOR>(
572 this->x0, this->x1, this->y0, this->y1, this->z0, this->z1, partners);
573}

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