reactingEulerFoam: Updated handling of thermal diffusivity to support Prandtl number and thermal wall-functions

This commit is contained in:
Henry Weller
2015-10-22 22:44:59 +01:00
parent c08cbc5871
commit 1fb1af5e87
21 changed files with 137 additions and 63 deletions

View File

@ -63,6 +63,7 @@ Foam::ThermalDiffusivity<BasicTurbulenceModel>::New
const alphaField& alpha,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& alphaRhoPhi,
const surfaceScalarField& phi,
const transportModel& transport,
const word& propertiesName
@ -76,6 +77,7 @@ Foam::ThermalDiffusivity<BasicTurbulenceModel>::New
alpha,
rho,
U,
alphaRhoPhi,
phi,
transport,
propertiesName

View File

@ -82,6 +82,7 @@ public:
const alphaField& alpha,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& alphaRhoPhi,
const surfaceScalarField& phi,
const transportModel& trasportModel,
const word& propertiesName = turbulenceModel::propertiesName

View File

@ -23,6 +23,8 @@ License
\*---------------------------------------------------------------------------*/
#include "EddyDiffusivity.H"
#define makeBaseTurbulenceModel( \
Alpha, Rho, baseModel, BaseModel, TDModel, Transport) \
\