173 lines
4.6 KiB
C++
173 lines
4.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015 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::LESModels::WALE
|
|
|
|
Group
|
|
grpLESTurbulence
|
|
|
|
Description
|
|
The Wall-adapting local eddy-viscosity (WALE) SGS model.
|
|
|
|
Reference:
|
|
\verbatim
|
|
Nicoud, F., & Ducros, F. (1999).
|
|
Subgrid-scale stress modelling based on the square of the velocity
|
|
gradient tensor.
|
|
Flow, Turbulence and Combustion, 62(3), 183-200.
|
|
\endverbatim
|
|
|
|
The default model coefficients correspond to the following:
|
|
\verbatim
|
|
WALECoeffs
|
|
{
|
|
Ck 0.094;
|
|
Ce 1.048;
|
|
Cw 0.325;
|
|
}
|
|
\endverbatim
|
|
|
|
SourceFiles
|
|
WALE.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef WALE_H
|
|
#define WALE_H
|
|
|
|
#include "LESModel.H"
|
|
#include "LESeddyViscosity.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace LESModels
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class WALE Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
template<class BasicTurbulenceModel>
|
|
class WALE
|
|
:
|
|
public LESeddyViscosity<BasicTurbulenceModel>
|
|
{
|
|
// Private Member Functions
|
|
|
|
// Disallow default bitwise copy construct and assignment
|
|
WALE(const WALE&);
|
|
WALE& operator=(const WALE&);
|
|
|
|
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
dimensionedScalar Ck_;
|
|
dimensionedScalar Cw_;
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Return the deviatoric symmetric part of the square of the given
|
|
// velocity gradient field
|
|
tmp<volSymmTensorField> Sd(const volTensorField& gradU) const;
|
|
|
|
//- Return SGS kinetic energy
|
|
// calculated from the given velocity gradient
|
|
tmp<volScalarField> k(const volTensorField& gradU) const;
|
|
|
|
//- Update the SGS eddy viscosity
|
|
virtual void correctNut();
|
|
|
|
|
|
public:
|
|
|
|
typedef typename BasicTurbulenceModel::alphaField alphaField;
|
|
typedef typename BasicTurbulenceModel::rhoField rhoField;
|
|
typedef typename BasicTurbulenceModel::transportModel transportModel;
|
|
|
|
|
|
//- Runtime type information
|
|
TypeName("WALE");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
WALE
|
|
(
|
|
const alphaField& alpha,
|
|
const rhoField& rho,
|
|
const volVectorField& U,
|
|
const surfaceScalarField& alphaRhoPhi,
|
|
const surfaceScalarField& phi,
|
|
const transportModel& transport,
|
|
const word& propertiesName = turbulenceModel::propertiesName,
|
|
const word& type = typeName
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~WALE()
|
|
{}
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Read model coefficients if they have changed
|
|
virtual bool read();
|
|
|
|
//- Return SGS kinetic energy
|
|
virtual tmp<volScalarField> k() const
|
|
{
|
|
return k(fvc::grad(this->U_));
|
|
}
|
|
|
|
//- Return sub-grid disipation rate
|
|
virtual tmp<volScalarField> epsilon() const;
|
|
|
|
//- Correct Eddy-Viscosity and related properties
|
|
virtual void correct();
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace LESModels
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
# include "WALE.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|