Update to backwardsCompatibilityWallFunctions.C
autoCreateMut now creates mutkWallFunction by default (instead of abstract base class mutWallFunction)
This commit is contained in:
parent
306bd93e81
commit
4ec81f9103
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Reference in a new issue