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

#include <navierStokesAdvectionDiffusionCouplingPostProcessor3D.h>

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

Public Member Functions

 TotalEnthalpyPhaseChangeCouplingGenerator3D (int x0_, int x1_, int y0_, int y1_, int z0_, int z1_, T gravity_, T T0_, T deltaTemp_, std::vector< T > dir_)
 LatticeCouplingGenerator for advectionDiffusion coupling.
 
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, typename DYNAMICS>
class olb::TotalEnthalpyPhaseChangeCouplingGenerator3D< T, DESCRIPTOR, DYNAMICS >

Definition at line 69 of file navierStokesAdvectionDiffusionCouplingPostProcessor3D.h.

Constructor & Destructor Documentation

◆ TotalEnthalpyPhaseChangeCouplingGenerator3D()

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

LatticeCouplingGenerator for advectionDiffusion coupling.

Definition at line 123 of file navierStokesAdvectionDiffusionCouplingPostProcessor3D.hh.

126 : LatticeCouplingGenerator3D<T,DESCRIPTOR>(x0_, x1_, y0_, y1_, z0_, z1_),
127 gravity(gravity_), T0(T0_), deltaTemp(deltaTemp_), dir(dir_)
128{ }

Member Function Documentation

◆ clone()

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

Implements olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >.

Definition at line 139 of file navierStokesAdvectionDiffusionCouplingPostProcessor3D.hh.

140{
141 return new TotalEnthalpyPhaseChangeCouplingGenerator3D<T,DESCRIPTOR,DYNAMICS>(*this);
142}

◆ generate()

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

Implements olb::LatticeCouplingGenerator3D< T, DESCRIPTOR >.

Definition at line 131 of file navierStokesAdvectionDiffusionCouplingPostProcessor3D.hh.

133{
134 return new TotalEnthalpyPhaseChangeCouplingPostProcessor3D<T,DESCRIPTOR,DYNAMICS>(
135 this->x0,this->x1,this->y0,this->y1,this->z0,this->z1, gravity, T0, deltaTemp, dir,partners);
136}

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