twoPhaseEulerFoam: Added support for alphat and thermal wall-functions
This commit is contained in:
@ -149,9 +149,4 @@ Foam::ThermalDiffusivity<BasicTurbulenceModel>::alphat
|
||||
}
|
||||
|
||||
|
||||
template<class BasicTurbulenceModel>
|
||||
void Foam::ThermalDiffusivity<BasicTurbulenceModel>::correctEnergyTransport()
|
||||
{}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -166,9 +166,6 @@ public:
|
||||
{
|
||||
return alpha(patchi);
|
||||
}
|
||||
|
||||
//- Correct the turbulence thermal diffusivity for energy transport
|
||||
virtual void correctEnergyTransport();
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -73,4 +73,8 @@ Foam::compressibleTurbulenceModel::phi() const
|
||||
}
|
||||
|
||||
|
||||
void Foam::compressibleTurbulenceModel::correctEnergyTransport()
|
||||
{}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -122,7 +122,7 @@ public:
|
||||
virtual tmp<fvVectorMatrix> divDevRhoReff(volVectorField& U) const = 0;
|
||||
|
||||
//- Correct the turbulence thermal diffusivity for energy transport
|
||||
virtual void correctEnergyTransport() = 0;
|
||||
virtual void correctEnergyTransport();
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user