135 lines
3.9 KiB
C
135 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2012 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 "nutLowReWallFunctionFvPatchScalarField.H"
|
|
#include "RASModel.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace incompressible
|
|
{
|
|
namespace RASModels
|
|
{
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
tmp<scalarField> nutLowReWallFunctionFvPatchScalarField::calcNut() const
|
|
{
|
|
return tmp<scalarField>(new scalarField(patch().size(), 0.0));
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
nutWallFunctionFvPatchScalarField(p, iF)
|
|
{}
|
|
|
|
|
|
nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
|
|
(
|
|
const nutLowReWallFunctionFvPatchScalarField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
nutWallFunctionFvPatchScalarField(ptf, p, iF, mapper)
|
|
{}
|
|
|
|
|
|
nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
nutWallFunctionFvPatchScalarField(p, iF, dict)
|
|
{}
|
|
|
|
|
|
nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
|
|
(
|
|
const nutLowReWallFunctionFvPatchScalarField& nlrwfpsf
|
|
)
|
|
:
|
|
nutWallFunctionFvPatchScalarField(nlrwfpsf)
|
|
{}
|
|
|
|
|
|
nutLowReWallFunctionFvPatchScalarField::nutLowReWallFunctionFvPatchScalarField
|
|
(
|
|
const nutLowReWallFunctionFvPatchScalarField& nlrwfpsf,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
nutWallFunctionFvPatchScalarField(nlrwfpsf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
tmp<scalarField> nutLowReWallFunctionFvPatchScalarField::yPlus() const
|
|
{
|
|
const label patchi = patch().index();
|
|
const turbulenceModel& turbModel =
|
|
db().lookupObject<turbulenceModel>("turbulenceModel");
|
|
const scalarField& y = turbModel.y()[patchi];
|
|
const tmp<volScalarField> tnu = turbModel.nu();
|
|
const volScalarField& nu = tnu();
|
|
const scalarField& nuw = nu.boundaryField()[patchi];
|
|
const fvPatchVectorField& Uw = turbModel.U().boundaryField()[patchi];
|
|
|
|
return y*sqrt(nuw*mag(Uw.snGrad()))/nuw;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makePatchTypeField
|
|
(
|
|
fvPatchScalarField,
|
|
nutLowReWallFunctionFvPatchScalarField
|
|
);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace RASModels
|
|
} // End namespace incompressible
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|