/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016, 2019 OpenFOAM Foundation Copyright (C) 2019-2022 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 . Class Foam::epsilonWallFunctionFvPatchScalarField Group grpWallFunctions Description This boundary condition provides wall functions for the turbulent kinetic energy dissipation rate (i.e. \c epsilon) and the turbulent kinetic energy production contribution (i.e. \c G) for low- and high-Reynolds number simulations. Usage Example of the boundary condition specification: \verbatim { // Mandatory entries type epsilonWallFunction; // Optional entries lowReCorrection false; // Inherited entries ... } \endverbatim where the entries mean: \table Property | Description | Type | Reqd | Deflt type | Type name: epsilonWallFunction | word | yes | - lowReCorrection | Flag: apply low-Re correction | bool | no | false \endtable The inherited entries are elaborated in: - \link wallFunctionCoefficients.H \endlink - \link wallFunctionBlenders.H \endlink Note - \c lowReCorrection operates with only \c stepwise blending treatment to ensure the backward compatibility. - If \c lowReCorrection is \c on, \c stepwise blending treatment is fully active. - If \c lowReCorrection is \c off, only the inertial sublayer prediction is used in the wall function, hence high-Re mode operation. SourceFiles epsilonWallFunctionFvPatchScalarField.C \*---------------------------------------------------------------------------*/ #ifndef epsilonWallFunctionFvPatchScalarField_H #define epsilonWallFunctionFvPatchScalarField_H #include "fixedValueFvPatchField.H" #include "wallFunctionCoefficients.H" #include "wallFunctionBlenders.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class turbulenceModel; /*---------------------------------------------------------------------------*\ Class epsilonWallFunctionFvPatchScalarField Declaration \*---------------------------------------------------------------------------*/ class epsilonWallFunctionFvPatchScalarField : public fixedValueFvPatchField, private wallFunctionBlenders { protected: // Protected Data //- Tolerance used in weighted calculations static scalar tolerance_; //- Apply low-Re correction term (default = no) const bool lowReCorrection_; //- Initialised flag bool initialised_; //- Master patch ID label master_; //- Wall-function coefficients wallFunctionCoefficients wallCoeffs_; //- Local copy of turbulence G field scalarField G_; //- Local copy of turbulence epsilon field scalarField epsilon_; //- List of averaging corner weights List> cornerWeights_; // Protected Member Functions //- Set the master patch - master is responsible for updating all //- wall function patches virtual void setMaster(); //- Create the averaging weights for cells which are bounded by //- multiple wall function faces virtual void createAveragingWeights(); //- Helper function to return non-const access to an epsilon patch virtual epsilonWallFunctionFvPatchScalarField& epsilonPatch ( const label patchi ); //- Main driver to calculate the turbulence fields virtual void calculateTurbulenceFields ( const turbulenceModel& turbulence, scalarField& G0, scalarField& epsilon0 ); //- Calculate the epsilon and G virtual void calculate ( const turbulenceModel& turbulence, const List& cornerWeights, const fvPatch& patch, scalarField& G, scalarField& epsilon ); //- Return non-const access to the master patch ID virtual label& master() { return master_; } //- Write local wall function variables void writeLocalEntries(Ostream&) const; public: //- Runtime type information TypeName("epsilonWallFunction"); // Constructors //- Construct from patch and internal field epsilonWallFunctionFvPatchScalarField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary epsilonWallFunctionFvPatchScalarField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given //- epsilonWallFunctionFvPatchScalarField //- onto a new patch epsilonWallFunctionFvPatchScalarField ( const epsilonWallFunctionFvPatchScalarField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy epsilonWallFunctionFvPatchScalarField ( const epsilonWallFunctionFvPatchScalarField& ); //- Construct as copy setting internal field reference epsilonWallFunctionFvPatchScalarField ( const epsilonWallFunctionFvPatchScalarField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } //- Destructor virtual ~epsilonWallFunctionFvPatchScalarField() = default; // Member Functions // Access //- Return non-const access to the master's G field scalarField& G(bool init = false); //- Return non-const access to the master's epsilon field scalarField& epsilon(bool init = false); // Evaluation //- Update the coefficients associated with the patch field virtual void updateCoeffs(); //- Update the coefficients associated with the patch field virtual void updateWeightedCoeffs(const scalarField& weights); //- Manipulate matrix virtual void manipulateMatrix(fvMatrix& matrix); //- Manipulate matrix with given weights virtual void manipulateMatrix ( fvMatrix& matrix, const scalarField& weights ); // I-O //- Write virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //