mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
211 lines
5.8 KiB
C++
211 lines
5.8 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/>.
|
|
|
|
Class
|
|
Foam::incompressible::epsilonWallFunctionFvPatchScalarField
|
|
|
|
Group
|
|
grpIcoWallFunctions
|
|
|
|
Description
|
|
This boundary condition provides a turbulence dissipation wall function
|
|
condition for high Reynolds number, turbulent flow cases.
|
|
|
|
The condition can be applied to wall boundaries, whereby it
|
|
- calculates \c epsilon and \c G
|
|
- inserts near wall epsilon values directly into the epsilon equation
|
|
to act as a constraint
|
|
|
|
where
|
|
|
|
\vartable
|
|
epsilon | turblence dissipation field
|
|
G | turblence generation field
|
|
\endvartable
|
|
|
|
\heading Patch usage
|
|
|
|
\table
|
|
Property | Description | Required | Default value
|
|
Cmu | model coefficient | no | 0.09
|
|
kappa | Von Karman constant | no | 0.41
|
|
E | model coefficient | no | 9.8
|
|
\endtable
|
|
|
|
Example of the boundary condition specification:
|
|
\verbatim
|
|
myPatch
|
|
{
|
|
type epsilonWallFunction;
|
|
}
|
|
\endverbatim
|
|
|
|
SeeAlso
|
|
Foam::fixedInternalValueFvPatchField
|
|
|
|
SourceFiles
|
|
epsilonWallFunctionFvPatchScalarField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef epsilonWallFunctionFvPatchScalarField_H
|
|
#define epsilonWallFunctionFvPatchScalarField_H
|
|
|
|
#include "fixedInternalValueFvPatchField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace incompressible
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class epsilonWallFunctionFvPatchScalarField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class epsilonWallFunctionFvPatchScalarField
|
|
:
|
|
public fixedInternalValueFvPatchField<scalar>
|
|
{
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
//- Cmu coefficient
|
|
scalar Cmu_;
|
|
|
|
//- Von Karman constant
|
|
scalar kappa_;
|
|
|
|
//- E coefficient
|
|
scalar E_;
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Check the type of the patch
|
|
virtual void checkType();
|
|
|
|
//- Write local wall function variables
|
|
virtual void writeLocalEntries(Ostream&) const;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("epsilonWallFunction");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
epsilonWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
epsilonWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given
|
|
// epsilonWallFunctionFvPatchScalarField
|
|
// onto a new patch
|
|
epsilonWallFunctionFvPatchScalarField
|
|
(
|
|
const epsilonWallFunctionFvPatchScalarField&,
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
epsilonWallFunctionFvPatchScalarField
|
|
(
|
|
const epsilonWallFunctionFvPatchScalarField&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchScalarField> clone() const
|
|
{
|
|
return tmp<fvPatchScalarField>
|
|
(
|
|
new epsilonWallFunctionFvPatchScalarField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
epsilonWallFunctionFvPatchScalarField
|
|
(
|
|
const epsilonWallFunctionFvPatchScalarField&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct and return a clone setting internal field reference
|
|
virtual tmp<fvPatchScalarField> clone
|
|
(
|
|
const DimensionedField<scalar, volMesh>& iF
|
|
) const
|
|
{
|
|
return tmp<fvPatchScalarField>
|
|
(
|
|
new epsilonWallFunctionFvPatchScalarField(*this, iF)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
// Evaluation functions
|
|
|
|
//- Update the coefficients associated with the patch field
|
|
virtual void updateCoeffs();
|
|
|
|
//- Evaluate the patchField
|
|
virtual void evaluate(const Pstream::commsTypes);
|
|
|
|
|
|
// I-O
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace incompressible
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|