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

#include <navierStokesAdvectionDiffusionCouplingPostProcessor2D.h>

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

Public Member Functions

 TotalEnthalpyPhaseChangeCouplingGenerator2D (int x0_, int x1_, int y0_, int y1_, T gravity_, T T0_, T deltaTemp_, std::vector< T > dir_)
 LatticeCouplingGenerator for advectionDiffusion coupling.
 
PostProcessor2D< T, DESCRIPTOR > * generate (std::vector< BlockStructureD< 2 > * > partners) const override
 
LatticeCouplingGenerator2D< T, DESCRIPTOR > * clone () const override
 
- Public Member Functions inherited from olb::LatticeCouplingGenerator2D< T, DESCRIPTOR >
 LatticeCouplingGenerator2D (int x0_, int x1_, int y0_, int y1_)
 
virtual ~LatticeCouplingGenerator2D ()
 
void shift (LatticeR< 2 > delta)
 
void shift (int deltaX, int deltaY)
 
bool extract (int x0_, int x1_, int y0_, int y1_)
 
bool extract (LatticeR< 2 > lower, LatticeR< 2 > upper)
 
void reset (int x0_, int x1_, int y0_, int y1_)
 
void reset (LatticeR< 2 > lower, LatticeR< 2 > upper)
 

Additional Inherited Members

- Protected Attributes inherited from olb::LatticeCouplingGenerator2D< T, DESCRIPTOR >
int x0
 
int x1
 
int y0
 
int y1
 

Detailed Description

template<typename T, typename DESCRIPTOR, typename DYNAMICS>
class olb::TotalEnthalpyPhaseChangeCouplingGenerator2D< T, DESCRIPTOR, DYNAMICS >

Definition at line 65 of file navierStokesAdvectionDiffusionCouplingPostProcessor2D.h.

Constructor & Destructor Documentation

◆ TotalEnthalpyPhaseChangeCouplingGenerator2D()

template<typename T , typename DESCRIPTOR , typename DYNAMICS >
olb::TotalEnthalpyPhaseChangeCouplingGenerator2D< T, DESCRIPTOR, DYNAMICS >::TotalEnthalpyPhaseChangeCouplingGenerator2D ( int x0_,
int x1_,
int y0_,
int y1_,
T gravity_,
T T0_,
T deltaTemp_,
std::vector< T > dir_ )

LatticeCouplingGenerator for advectionDiffusion coupling.

Definition at line 118 of file navierStokesAdvectionDiffusionCouplingPostProcessor2D.hh.

121 : LatticeCouplingGenerator2D<T,DESCRIPTOR>(x0_, x1_, y0_, y1_),
122 gravity(gravity_), T0(T0_), deltaTemp(deltaTemp_), dir(dir_)
123{ }

Member Function Documentation

◆ clone()

template<typename T , typename DESCRIPTOR , typename DYNAMICS >
LatticeCouplingGenerator2D< T, DESCRIPTOR > * olb::TotalEnthalpyPhaseChangeCouplingGenerator2D< T, DESCRIPTOR, DYNAMICS >::clone ( ) const
overridevirtual

Implements olb::LatticeCouplingGenerator2D< T, DESCRIPTOR >.

Definition at line 134 of file navierStokesAdvectionDiffusionCouplingPostProcessor2D.hh.

135{
136 return new TotalEnthalpyPhaseChangeCouplingGenerator2D<T,DESCRIPTOR,DYNAMICS>(*this);
137}

◆ generate()

template<typename T , typename DESCRIPTOR , typename DYNAMICS >
PostProcessor2D< T, DESCRIPTOR > * olb::TotalEnthalpyPhaseChangeCouplingGenerator2D< T, DESCRIPTOR, DYNAMICS >::generate ( std::vector< BlockStructureD< 2 > * > partners) const
overridevirtual

Implements olb::LatticeCouplingGenerator2D< T, DESCRIPTOR >.

Definition at line 126 of file navierStokesAdvectionDiffusionCouplingPostProcessor2D.hh.

128{
129 return new TotalEnthalpyPhaseChangeCouplingPostProcessor2D<T,DESCRIPTOR,DYNAMICS>(
130 this->x0,this->x1,this->y0,this->y1, gravity, T0, deltaTemp, dir,partners);
131}

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