TurbulenceModels: Refactored to transfer all heat and specie transport to the new ThermophysicalTransportModels library
This provides an extensible and run-time selectable framework to support complex energy and specie transport models, in particular multi-component diffusion. Currently only the Fourier for laminar and eddyDiffusivity for RAS and LES turbulent flows are provided but the interface is general and the set of models will be expanded in the near future.
This commit is contained in:
@ -54,7 +54,7 @@ PDRkEpsilon::PDRkEpsilon
|
||||
const word& modelName
|
||||
)
|
||||
:
|
||||
Foam::RASModels::kEpsilon<EddyDiffusivity<compressible::turbulenceModel>>
|
||||
Foam::RASModels::kEpsilon<compressible::turbulenceModel>
|
||||
(
|
||||
geometricOneField(),
|
||||
rho,
|
||||
|
||||
@ -78,13 +78,7 @@ namespace RASModels
|
||||
|
||||
class PDRkEpsilon
|
||||
:
|
||||
public Foam::RASModels::kEpsilon
|
||||
<
|
||||
EddyDiffusivity
|
||||
<
|
||||
compressible::turbulenceModel
|
||||
>
|
||||
>
|
||||
public Foam::RASModels::kEpsilon<compressible::turbulenceModel>
|
||||
{
|
||||
// Private Data
|
||||
|
||||
|
||||
Reference in New Issue
Block a user