continuousGasKEpsilon< BasicMomentumTransportModel > Class Template Reference

k-epsilon model for the gas-phase in a two-phase system supporting phase-inversion. More...

Inheritance diagram for continuousGasKEpsilon< BasicMomentumTransportModel >:
Collaboration diagram for continuousGasKEpsilon< BasicMomentumTransportModel >:

Public Types

typedef BasicMomentumTransportModel::alphaField alphaField
 
typedef BasicMomentumTransportModel::rhoField rhoField
 
- Public Types inherited from kEpsilon< BasicMomentumTransportModel >
typedef BasicMomentumTransportModel::alphaField alphaField
 
typedef BasicMomentumTransportModel::rhoField rhoField
 
- Public Types inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > >
typedef BasicMomentumTransportModel::alphaField alphaField
 
typedef BasicMomentumTransportModel::rhoField rhoField
 
- Public Types inherited from linearViscousStress< BasicMomentumTransportModel >
typedef BasicMomentumTransportModel::alphaField alphaField
 
typedef BasicMomentumTransportModel::rhoField rhoField
 

Public Member Functions

 TypeName ("continuousGasKEpsilon")
 Runtime type information. More...
 
 continuousGasKEpsilon (const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity, const word &type=typeName)
 Construct from components. More...
 
 continuousGasKEpsilon (const continuousGasKEpsilon &)=delete
 Disallow default bitwise copy construction. More...
 
virtual ~continuousGasKEpsilon ()
 Destructor. More...
 
virtual bool read ()
 Re-read model coefficients if they have changed. More...
 
const momentumTransportModelliquidTurbulence () const
 Return the turbulence model for the liquid phase. More...
 
virtual tmp< volScalarFieldnuEff () const
 Return the effective viscosity. More...
 
virtual tmp< volScalarFieldrhoEff () const
 Return the effective density for the stress. More...
 
virtual tmp< volSymmTensorFieldsigma () const
 Return the stress tensor [m^2/s^2]. More...
 
void operator= (const continuousGasKEpsilon &)=delete
 Disallow default bitwise assignment. More...
 
- Public Member Functions inherited from kEpsilon< BasicMomentumTransportModel >
 TypeName ("kEpsilon")
 Runtime type information. More...
 
 kEpsilon (const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity, const word &type=typeName)
 Construct from components. More...
 
 kEpsilon (const kEpsilon &)=delete
 Disallow default bitwise copy construction. More...
 
virtual ~kEpsilon ()
 Destructor. More...
 
tmp< volScalarFieldDkEff () const
 Return the effective diffusivity for k. More...
 
tmp< volScalarFieldDepsilonEff () const
 Return the effective diffusivity for epsilon. More...
 
virtual tmp< volScalarFieldk () const
 Return the turbulence kinetic energy. More...
 
virtual tmp< volScalarFieldepsilon () const
 Return the turbulence kinetic energy dissipation rate. More...
 
virtual tmp< volScalarFieldomega () const
 Return the turbulence specific dissipation rate. More...
 
virtual void correct ()
 Solve the turbulence equations and correct the turbulence viscosity. More...
 
void operator= (const kEpsilon &)=delete
 Disallow default bitwise assignment. More...
 
- Public Member Functions inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > >
 eddyViscosity (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity)
 Construct from components. More...
 
virtual ~eddyViscosity ()
 Destructor. More...
 
virtual tmp< volScalarFieldnut () const
 Return the turbulence viscosity. More...
 
virtual tmp< scalarFieldnut (const label patchi) const
 Return the turbulence viscosity on patch. More...
 
virtual void validate ()
 Validate the turbulence fields after construction. More...
 
- Public Member Functions inherited from linearViscousStress< BasicMomentumTransportModel >
 linearViscousStress (const word &modelName, const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity)
 Construct from components. More...
 
virtual ~linearViscousStress ()
 Destructor. More...
 
virtual tmp< volSymmTensorFielddevTau () const
 Return the effective stress tensor. More...
 
virtual tmp< fvVectorMatrixdivDevTau (volVectorField &U) const
 Return the source term for the momentum equation. More...
 
virtual tmp< fvVectorMatrixdivDevTau (const volScalarField &rho, volVectorField &U) const
 Return the source term for the momentum equation. More...
 

Protected Member Functions

virtual void correctNut ()
 
tmp< volScalarFieldphaseTransferCoeff () const
 
virtual tmp< fvScalarMatrixkSource () const
 
virtual tmp< fvScalarMatrixepsilonSource () const
 

Protected Attributes

dimensionedScalar alphaInversion_
 
- Protected Attributes inherited from kEpsilon< BasicMomentumTransportModel >
dimensionedScalar Cmu_
 
dimensionedScalar C1_
 
dimensionedScalar C2_
 
dimensionedScalar C3_
 
dimensionedScalar sigmak_
 
dimensionedScalar sigmaEps_
 
volScalarField k_
 
volScalarField epsilon_
 
- Protected Attributes inherited from eddyViscosity< RASModel< BasicMomentumTransportModel > >
volScalarField nut_
 

Detailed Description

template<class BasicMomentumTransportModel>
class Foam::RASModels::continuousGasKEpsilon< BasicMomentumTransportModel >

k-epsilon model for the gas-phase in a two-phase system supporting phase-inversion.

In the limit that the gas-phase fraction approaches zero a contribution from the other phase is blended into the k and epsilon equations up to the phase-fraction of alphaInversion at which point phase-inversion is considered to have occurred and the model reverts to the pure single-phase form.

This model is unpublished and is provided as a stable numerical framework on which a more physical model may be built.

The default model coefficients are

    continuousGasKEpsilonCoeffs
    {
        Cmu             0.09;
        C1              1.44;
        C2              1.92;
        C3              0;
        sigmak          1.0;
        sigmaEps        1.3;
        alphaInversion  0.7;
    }
Source files

Definition at line 75 of file continuousGasKEpsilon.H.

Member Typedef Documentation

◆ alphaField

typedef BasicMomentumTransportModel::alphaField alphaField

Definition at line 105 of file continuousGasKEpsilon.H.

◆ rhoField

typedef BasicMomentumTransportModel::rhoField rhoField

Definition at line 106 of file continuousGasKEpsilon.H.

Constructor & Destructor Documentation

◆ continuousGasKEpsilon() [1/2]

continuousGasKEpsilon ( const alphaField alpha,
const rhoField rho,
const volVectorField U,
const surfaceScalarField alphaRhoPhi,
const surfaceScalarField phi,
const viscosity viscosity,
const word type = typeName 
)

Construct from components.

Definition at line 43 of file continuousGasKEpsilon.C.

References Foam::type().

Here is the call graph for this function:

◆ continuousGasKEpsilon() [2/2]

continuousGasKEpsilon ( const continuousGasKEpsilon< BasicMomentumTransportModel > &  )
delete

Disallow default bitwise copy construction.

◆ ~continuousGasKEpsilon()

virtual ~continuousGasKEpsilon ( )
inlinevirtual

Destructor.

Definition at line 132 of file continuousGasKEpsilon.H.

Member Function Documentation

◆ correctNut()

◆ phaseTransferCoeff()

tmp< volScalarField > phaseTransferCoeff
protected

Definition at line 222 of file continuousGasKEpsilon.C.

References alpha(), momentumTransportModel::epsilon(), momentumTransportModel::k(), Foam::max(), Foam::min(), rho, and U.

Here is the call graph for this function:

◆ kSource()

tmp< fvScalarMatrix > kSource
protectedvirtual

Reimplemented from kEpsilon< BasicMomentumTransportModel >.

Definition at line 245 of file continuousGasKEpsilon.C.

References momentumTransportModel::k(), and Foam::fvm::Sp().

Here is the call graph for this function:

◆ epsilonSource()

tmp< fvScalarMatrix > epsilonSource
protectedvirtual

Reimplemented from kEpsilon< BasicMomentumTransportModel >.

Definition at line 258 of file continuousGasKEpsilon.C.

References momentumTransportModel::epsilon(), and Foam::fvm::Sp().

Here is the call graph for this function:

◆ TypeName()

TypeName ( "continuousGasKEpsilon< BasicMomentumTransportModel >"  )

Runtime type information.

◆ read()

bool read
virtual

Re-read model coefficients if they have changed.

Reimplemented from kEpsilon< BasicMomentumTransportModel >.

Definition at line 100 of file continuousGasKEpsilon.C.

◆ liquidTurbulence()

const momentumTransportModel & liquidTurbulence

Return the turbulence model for the liquid phase.

Definition at line 154 of file continuousGasKEpsilon.C.

References phaseModel::fluid(), liquidProperties::name(), phaseSystem::otherPhase(), and U.

Here is the call graph for this function:

◆ nuEff()

tmp< Foam::volScalarField > nuEff
virtual

Return the effective viscosity.

Definition at line 174 of file continuousGasKEpsilon.C.

References Foam::max(), Foam::min(), and GeometricField< Type, PatchField, GeoMesh >::New().

Here is the call graph for this function:

◆ rhoEff()

tmp< Foam::volScalarField > rhoEff
virtual

Return the effective density for the stress.

Definition at line 201 of file continuousGasKEpsilon.C.

References dispersedVirtualMassModel::Cvm(), phaseModel::fluid(), phaseSystem::lookupInterfacialModel(), GeometricField< Type, PatchField, GeoMesh >::New(), phaseSystem::otherPhase(), phaseModel::rho(), and liquid::rho().

Here is the call graph for this function:

◆ sigma()

tmp< volSymmTensorField > sigma
virtual

Return the stress tensor [m^2/s^2].

Reimplemented from eddyViscosity< RASModel< BasicMomentumTransportModel > >.

Definition at line 271 of file continuousGasKEpsilon.C.

References Foam::dev(), Foam::fvc::grad(), Foam::I, k, GeometricField< Type, PatchField, GeoMesh >::New(), and Foam::twoSymm().

Here is the call graph for this function:

◆ operator=()

void operator= ( const continuousGasKEpsilon< BasicMomentumTransportModel > &  )
delete

Disallow default bitwise assignment.

Member Data Documentation

◆ alphaInversion_

dimensionedScalar alphaInversion_
protected

Definition at line 92 of file continuousGasKEpsilon.H.


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