mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
200 lines
5.4 KiB
C
200 lines
5.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "nutUWallFunctionFvPatchScalarField.H"
|
|
#include "RASModel.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace incompressible
|
|
{
|
|
namespace RASModels
|
|
{
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
tmp<scalarField> nutUWallFunctionFvPatchScalarField::calcNut() const
|
|
{
|
|
const label patchI = patch().index();
|
|
|
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
|
const fvPatchVectorField& Uw = rasModel.U().boundaryField()[patchI];
|
|
const scalarField magUp = mag(Uw.patchInternalField() - Uw);
|
|
const scalarField& nuw = rasModel.nu().boundaryField()[patchI];
|
|
|
|
tmp<scalarField> tyPlus = calcYPlus(magUp);
|
|
scalarField& yPlus = tyPlus();
|
|
|
|
tmp<scalarField> tnutw(new scalarField(patch().size(), 0.0));
|
|
scalarField& nutw = tnutw();
|
|
|
|
forAll(yPlus, facei)
|
|
{
|
|
if (yPlus[facei] > yPlusLam_)
|
|
{
|
|
nutw[facei] =
|
|
nuw[facei]*(yPlus[facei]*kappa_/log(E_*yPlus[facei]) - 1.0);
|
|
}
|
|
}
|
|
|
|
return tnutw;
|
|
}
|
|
|
|
|
|
tmp<scalarField> nutUWallFunctionFvPatchScalarField::calcYPlus
|
|
(
|
|
const scalarField& magUp
|
|
) const
|
|
{
|
|
const label patchI = patch().index();
|
|
|
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
|
const scalarField& y = rasModel.y()[patchI];
|
|
const scalarField& nuw = rasModel.nu().boundaryField()[patchI];
|
|
|
|
tmp<scalarField> tyPlus(new scalarField(patch().size(), 0.0));
|
|
scalarField& yPlus = tyPlus();
|
|
|
|
forAll(yPlus, facei)
|
|
{
|
|
scalar kappaRe = kappa_*magUp[facei]*y[facei]/nuw[facei];
|
|
|
|
scalar yp = yPlusLam_;
|
|
scalar ryPlusLam = 1.0/yp;
|
|
|
|
int iter = 0;
|
|
scalar yPlusLast = 0.0;
|
|
|
|
do
|
|
{
|
|
yPlusLast = yp;
|
|
yp = (kappaRe + yp)/(1.0 + log(E_*yp));
|
|
|
|
} while(mag(ryPlusLam*(yp - yPlusLast)) > 0.01 && ++iter < 10 );
|
|
|
|
yPlus[facei] = max(0.0, yp);
|
|
}
|
|
|
|
return tyPlus;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
nutUWallFunctionFvPatchScalarField::nutUWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
nutkWallFunctionFvPatchScalarField(p, iF)
|
|
{}
|
|
|
|
|
|
nutUWallFunctionFvPatchScalarField::nutUWallFunctionFvPatchScalarField
|
|
(
|
|
const nutUWallFunctionFvPatchScalarField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
nutkWallFunctionFvPatchScalarField(ptf, p, iF, mapper)
|
|
{}
|
|
|
|
|
|
nutUWallFunctionFvPatchScalarField::nutUWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
nutkWallFunctionFvPatchScalarField(p, iF, dict)
|
|
{}
|
|
|
|
|
|
nutUWallFunctionFvPatchScalarField::nutUWallFunctionFvPatchScalarField
|
|
(
|
|
const nutUWallFunctionFvPatchScalarField& sawfpsf
|
|
)
|
|
:
|
|
nutkWallFunctionFvPatchScalarField(sawfpsf)
|
|
{}
|
|
|
|
|
|
nutUWallFunctionFvPatchScalarField::nutUWallFunctionFvPatchScalarField
|
|
(
|
|
const nutUWallFunctionFvPatchScalarField& sawfpsf,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
nutkWallFunctionFvPatchScalarField(sawfpsf, iF)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
tmp<scalarField> nutUWallFunctionFvPatchScalarField::yPlus() const
|
|
{
|
|
const label patchI = patch().index();
|
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
|
const fvPatchVectorField& Uw = rasModel.U().boundaryField()[patchI];
|
|
const scalarField magUp = mag(Uw.patchInternalField() - Uw);
|
|
|
|
return calcYPlus(magUp);
|
|
}
|
|
|
|
|
|
void nutUWallFunctionFvPatchScalarField::write(Ostream& os) const
|
|
{
|
|
fvPatchField<scalar>::write(os);
|
|
writeLocalEntries(os);
|
|
writeEntry("value", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makePatchTypeField
|
|
(
|
|
fvPatchScalarField,
|
|
nutUWallFunctionFvPatchScalarField
|
|
);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace RASModels
|
|
} // End namespace incompressible
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|