When the GeometricBoundaryField template class was originally written it
was a separate class in the Foam namespace rather than a sub-class of
GeometricField as it is now. Without loss of clarity and simplifying
code which access the boundary field of GeometricFields it is better
that GeometricBoundaryField be renamed Boundary for consistency with the
new naming convention for the type of the dimensioned internal field:
Internal, see commit a25a449c9e
This is a very simple text substitution change which can be applied to
any code which compiles with the OpenFOAM-dev libraries.
162 lines
4.6 KiB
C
162 lines
4.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "vanDriestDelta.H"
|
|
#include "wallFvPatch.H"
|
|
#include "wallDistData.H"
|
|
#include "wallPointYPlus.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace LESModels
|
|
{
|
|
defineTypeNameAndDebug(vanDriestDelta, 0);
|
|
addToRunTimeSelectionTable(LESdelta, vanDriestDelta, dictionary);
|
|
}
|
|
}
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::LESModels::vanDriestDelta::calcDelta()
|
|
{
|
|
const fvMesh& mesh = turbulenceModel_.mesh();
|
|
|
|
const volVectorField& U = turbulenceModel_.U();
|
|
const tmp<volScalarField> tnu = turbulenceModel_.nu();
|
|
const volScalarField& nu = tnu();
|
|
tmp<volScalarField> nuSgs = turbulenceModel_.nut();
|
|
|
|
volScalarField ystar
|
|
(
|
|
IOobject
|
|
(
|
|
"ystar",
|
|
mesh.time().constant(),
|
|
mesh
|
|
),
|
|
mesh,
|
|
dimensionedScalar("ystar", dimLength, GREAT)
|
|
);
|
|
|
|
const fvPatchList& patches = mesh.boundary();
|
|
volScalarField::Boundary& ystarBf = ystar.boundaryFieldRef();
|
|
|
|
forAll(patches, patchi)
|
|
{
|
|
if (isA<wallFvPatch>(patches[patchi]))
|
|
{
|
|
const fvPatchVectorField& Uw = U.boundaryField()[patchi];
|
|
const scalarField& nuw = nu.boundaryField()[patchi];
|
|
const scalarField& nuSgsw = nuSgs().boundaryField()[patchi];
|
|
|
|
ystarBf[patchi] =
|
|
nuw/sqrt((nuw + nuSgsw)*mag(Uw.snGrad()) + VSMALL);
|
|
}
|
|
}
|
|
|
|
scalar cutOff = wallPointYPlus::yPlusCutOff;
|
|
wallPointYPlus::yPlusCutOff = 500;
|
|
wallDistData<wallPointYPlus> y(mesh, ystar);
|
|
wallPointYPlus::yPlusCutOff = cutOff;
|
|
|
|
delta_ = min
|
|
(
|
|
static_cast<const volScalarField&>(geometricDelta_()),
|
|
(kappa_/Cdelta_)*((scalar(1) + SMALL) - exp(-y/ystar/Aplus_))*y
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::LESModels::vanDriestDelta::vanDriestDelta
|
|
(
|
|
const word& name,
|
|
const turbulenceModel& turbulence,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
LESdelta(name, turbulence),
|
|
geometricDelta_
|
|
(
|
|
LESdelta::New
|
|
(
|
|
IOobject::groupName("geometricDelta", turbulence.U().group()),
|
|
turbulence,
|
|
dict.subDict(type() + "Coeffs")
|
|
)
|
|
),
|
|
kappa_(dict.lookupOrDefault<scalar>("kappa", 0.41)),
|
|
Aplus_
|
|
(
|
|
dict.subDict(type() + "Coeffs").lookupOrDefault<scalar>("Aplus", 26.0)
|
|
),
|
|
Cdelta_
|
|
(
|
|
dict.subDict(type() + "Coeffs").lookupOrDefault<scalar>("Cdelta", 0.158)
|
|
),
|
|
calcInterval_
|
|
(
|
|
dict.subDict(type() + "Coeffs").lookupOrDefault<label>
|
|
(
|
|
"calcInterval",
|
|
1
|
|
)
|
|
)
|
|
{
|
|
delta_ = geometricDelta_();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::LESModels::vanDriestDelta::read(const dictionary& dict)
|
|
{
|
|
const dictionary& coeffsDict(dict.subDict(type() + "Coeffs"));
|
|
|
|
geometricDelta_().read(coeffsDict);
|
|
dict.readIfPresent<scalar>("kappa", kappa_);
|
|
coeffsDict.readIfPresent<scalar>("Aplus", Aplus_);
|
|
coeffsDict.readIfPresent<scalar>("Cdelta", Cdelta_);
|
|
coeffsDict.readIfPresent<label>("calcInterval", calcInterval_);
|
|
|
|
calcDelta();
|
|
}
|
|
|
|
|
|
void Foam::LESModels::vanDriestDelta::correct()
|
|
{
|
|
if (turbulenceModel_.mesh().time().timeIndex() % calcInterval_ == 0)
|
|
{
|
|
geometricDelta_().correct();
|
|
calcDelta();
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|