Update to backwardsCompatibilityWallFunctions.C

autoCreateMut now creates mutkWallFunction by default (instead of abstract base
class mutWallFunction)
This commit is contained in:
Vuko Vukcevic 2018-06-19 15:22:23 +02:00
parent 306bd93e81
commit 4ec81f9103
2 changed files with 3 additions and 2 deletions

View file

@ -27,6 +27,7 @@ $(mutWallFunctions)/mutSpalartAllmarasStandardWallFunction/mutSpalartAllmarasSta
$(mutWallFunctions)/mutSpalartAllmarasStandardRoughWallFunction/mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField.C
$(mutWallFunctions)/mutSpalartAllmarasWallFunction/mutSpalartAllmarasWallFunctionFvPatchScalarField.C
backwardsCompatibility/wallFunctions/backwardsCompatibilityWallFunctions.C
epsilonWallFunctions = $(wallFunctions)/epsilonWallFunctions
$(epsilonWallFunctions)/epsilonWallFunction/epsilonWallFunctionFvPatchScalarField.C

View file

@ -27,7 +27,7 @@ License
#include "calculatedFvPatchField.H"
#include "alphatWallFunctionFvPatchScalarField.H"
#include "mutWallFunctionFvPatchScalarField.H"
#include "mutkWallFunctionFvPatchScalarField.H"
#include "mutLowReWallFunctionFvPatchScalarField.H"
#include "epsilonWallFunctionFvPatchScalarField.H"
#include "kqRWallFunctionFvPatchField.H"
@ -158,7 +158,7 @@ tmp<volScalarField> autoCreateMut
if (bm[patchI].isWall())
{
mutBoundaryTypes[patchI] =
RASModels::mutWallFunctionFvPatchScalarField::typeName;
RASModels::mutkWallFunctionFvPatchScalarField::typeName;
}
else
{