twoPhaseEulerFoam: Added support for alphat and thermal wall-functions

This commit is contained in:
Henry Weller
2015-08-26 18:06:43 +01:00
parent 6e52d1864c
commit 34ce2e6d61
57 changed files with 442 additions and 66 deletions

View File

@ -149,9 +149,4 @@ Foam::ThermalDiffusivity<BasicTurbulenceModel>::alphat
}
template<class BasicTurbulenceModel>
void Foam::ThermalDiffusivity<BasicTurbulenceModel>::correctEnergyTransport()
{}
// ************************************************************************* //

View File

@ -166,9 +166,6 @@ public:
{
return alpha(patchi);
}
//- Correct the turbulence thermal diffusivity for energy transport
virtual void correctEnergyTransport();
};

View File

@ -73,4 +73,8 @@ Foam::compressibleTurbulenceModel::phi() const
}
void Foam::compressibleTurbulenceModel::correctEnergyTransport()
{}
// ************************************************************************* //

View File

@ -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();
};