mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
252 lines
6.5 KiB
C
252 lines
6.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2008-2010 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 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 "nutkWallFunctionFvPatchScalarField.H"
|
|
#include "RASModel.H"
|
|
#include "fvPatchFieldMapper.H"
|
|
#include "volFields.H"
|
|
#include "wallFvPatch.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace incompressible
|
|
{
|
|
namespace RASModels
|
|
{
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
void nutkWallFunctionFvPatchScalarField::checkType()
|
|
{
|
|
if (!isA<wallFvPatch>(patch()))
|
|
{
|
|
FatalErrorIn("nutkWallFunctionFvPatchScalarField::checkType()")
|
|
<< "Invalid wall function specification" << nl
|
|
<< " Patch type for patch " << patch().name()
|
|
<< " must be wall" << nl
|
|
<< " Current patch type is " << patch().type() << nl << endl
|
|
<< abort(FatalError);
|
|
}
|
|
}
|
|
|
|
|
|
scalar nutkWallFunctionFvPatchScalarField::calcYPlusLam
|
|
(
|
|
const scalar kappa,
|
|
const scalar E
|
|
) const
|
|
{
|
|
scalar ypl = 11.0;
|
|
|
|
for (int i=0; i<10; i++)
|
|
{
|
|
ypl = log(E*ypl)/kappa;
|
|
}
|
|
|
|
return ypl;
|
|
}
|
|
|
|
|
|
tmp<scalarField> nutkWallFunctionFvPatchScalarField::calcNut() const
|
|
{
|
|
const label patchI = patch().index();
|
|
|
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
|
const scalarField& y = rasModel.y()[patchI];
|
|
const tmp<volScalarField> tk = rasModel.k();
|
|
const volScalarField& k = tk();
|
|
const scalarField& nuw = rasModel.nu()().boundaryField()[patchI];
|
|
|
|
const scalar Cmu25 = pow025(Cmu_);
|
|
|
|
tmp<scalarField> tnutw(new scalarField(patch().size(), 0.0));
|
|
scalarField& nutw = tnutw();
|
|
|
|
forAll(nutw, faceI)
|
|
{
|
|
label faceCellI = patch().faceCells()[faceI];
|
|
|
|
scalar yPlus = Cmu25*y[faceI]*sqrt(k[faceCellI])/nuw[faceI];
|
|
|
|
if (yPlus > yPlusLam_)
|
|
{
|
|
nutw[faceI] = nuw[faceI]*(yPlus*kappa_/log(E_*yPlus) - 1.0);
|
|
}
|
|
}
|
|
|
|
return tnutw;
|
|
}
|
|
|
|
|
|
void nutkWallFunctionFvPatchScalarField::writeLocalEntries(Ostream& os) const
|
|
{
|
|
os.writeKeyword("Cmu") << Cmu_ << token::END_STATEMENT << nl;
|
|
os.writeKeyword("kappa") << kappa_ << token::END_STATEMENT << nl;
|
|
os.writeKeyword("E") << E_ << token::END_STATEMENT << nl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
nutkWallFunctionFvPatchScalarField::nutkWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(p, iF),
|
|
Cmu_(0.09),
|
|
kappa_(0.41),
|
|
E_(9.8),
|
|
yPlusLam_(calcYPlusLam(kappa_, E_))
|
|
{
|
|
checkType();
|
|
}
|
|
|
|
|
|
nutkWallFunctionFvPatchScalarField::nutkWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkWallFunctionFvPatchScalarField& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(ptf, p, iF, mapper),
|
|
Cmu_(ptf.Cmu_),
|
|
kappa_(ptf.kappa_),
|
|
E_(ptf.E_),
|
|
yPlusLam_(ptf.yPlusLam_)
|
|
{
|
|
checkType();
|
|
}
|
|
|
|
|
|
nutkWallFunctionFvPatchScalarField::nutkWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<scalar, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(p, iF, dict),
|
|
Cmu_(dict.lookupOrDefault<scalar>("Cmu", 0.09)),
|
|
kappa_(dict.lookupOrDefault<scalar>("kappa", 0.41)),
|
|
E_(dict.lookupOrDefault<scalar>("E", 9.8)),
|
|
yPlusLam_(calcYPlusLam(kappa_, E_))
|
|
{
|
|
checkType();
|
|
}
|
|
|
|
|
|
nutkWallFunctionFvPatchScalarField::nutkWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkWallFunctionFvPatchScalarField& wfpsf
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(wfpsf),
|
|
Cmu_(wfpsf.Cmu_),
|
|
kappa_(wfpsf.kappa_),
|
|
E_(wfpsf.E_),
|
|
yPlusLam_(wfpsf.yPlusLam_)
|
|
{
|
|
checkType();
|
|
}
|
|
|
|
|
|
nutkWallFunctionFvPatchScalarField::nutkWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkWallFunctionFvPatchScalarField& wfpsf,
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchScalarField(wfpsf, iF),
|
|
Cmu_(wfpsf.Cmu_),
|
|
kappa_(wfpsf.kappa_),
|
|
E_(wfpsf.E_),
|
|
yPlusLam_(wfpsf.yPlusLam_)
|
|
{
|
|
checkType();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void nutkWallFunctionFvPatchScalarField::updateCoeffs()
|
|
{
|
|
if (updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
operator==(calcNut());
|
|
|
|
fixedValueFvPatchScalarField::updateCoeffs();
|
|
}
|
|
|
|
|
|
tmp<scalarField> nutkWallFunctionFvPatchScalarField::yPlus() const
|
|
{
|
|
const label patchI = patch().index();
|
|
|
|
const RASModel& rasModel = db().lookupObject<RASModel>("RASProperties");
|
|
const scalarField& y = rasModel.y()[patchI];
|
|
|
|
const tmp<volScalarField> tk = rasModel.k();
|
|
const volScalarField& k = tk();
|
|
tmp<scalarField> kwc = k.boundaryField()[patchI].patchInternalField();
|
|
const scalarField& nuw = rasModel.nu()().boundaryField()[patchI];
|
|
|
|
return pow025(Cmu_)*y*sqrt(kwc)/nuw;
|
|
}
|
|
|
|
|
|
void nutkWallFunctionFvPatchScalarField::write(Ostream& os) const
|
|
{
|
|
fvPatchField<scalar>::write(os);
|
|
writeLocalEntries(os);
|
|
writeEntry("value", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makeNonTemplatedPatchTypeField
|
|
(
|
|
fvPatchScalarField,
|
|
nutkWallFunctionFvPatchScalarField
|
|
);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace RASModels
|
|
} // End namespace incompressible
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|