mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
215 lines
6.0 KiB
C++
215 lines
6.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2018 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::nutkRoughWallFunctionFvPatchScalarField
|
|
|
|
Description
|
|
This boundary condition provides a turbulent kinematic viscosity condition
|
|
when using wall functions for rough walls, based on turbulence kinetic
|
|
energy. The condition manipulates the E parameter to account for roughness
|
|
effects.
|
|
|
|
Parameter ranges
|
|
- roughness height = sand-grain roughness (0 for smooth walls)
|
|
- roughness constant = 0.5-1.0
|
|
|
|
Usage
|
|
\table
|
|
Property | Description | Required | Default value
|
|
Ks | sand-grain roughness height | yes |
|
|
Cs | roughness constant | yes |
|
|
\endtable
|
|
|
|
Example of the boundary condition specification:
|
|
\verbatim
|
|
<patchName>
|
|
{
|
|
type nutkRoughWallFunction;
|
|
Ks uniform 0;
|
|
Cs uniform 0.5;
|
|
}
|
|
\endverbatim
|
|
|
|
See also
|
|
Foam::nutkRoughWallFunctionFvPatchScalarField
|
|
|
|
SourceFiles
|
|
nutkRoughWallFunctionFvPatchScalarField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef nutkRoughWallFunctionFvPatchScalarField_H
|
|
#define nutkRoughWallFunctionFvPatchScalarField_H
|
|
|
|
#include "nutkWallFunctionFvPatchScalarField.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class nutkRoughWallFunctionFvPatchScalarField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class nutkRoughWallFunctionFvPatchScalarField
|
|
:
|
|
public nutkWallFunctionFvPatchScalarField
|
|
{
|
|
protected:
|
|
|
|
// Protected data
|
|
|
|
//- Roughness height
|
|
scalarField Ks_;
|
|
|
|
//- Roughness constant
|
|
scalarField Cs_;
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Compute the roughness function
|
|
virtual scalar fnRough(const scalar KsPlus, const scalar Cs) const;
|
|
|
|
//- Calculate the turbulence viscosity
|
|
virtual tmp<scalarField> calcNut() const;
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("nutkRoughWallFunction");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
nutkRoughWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
nutkRoughWallFunctionFvPatchScalarField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given
|
|
// nutkRoughWallFunctionFvPatchScalarField
|
|
// onto a new patch
|
|
nutkRoughWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkRoughWallFunctionFvPatchScalarField&,
|
|
const fvPatch&,
|
|
const DimensionedField<scalar, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
nutkRoughWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkRoughWallFunctionFvPatchScalarField&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchScalarField> clone() const
|
|
{
|
|
return tmp<fvPatchScalarField>
|
|
(
|
|
new nutkRoughWallFunctionFvPatchScalarField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
nutkRoughWallFunctionFvPatchScalarField
|
|
(
|
|
const nutkRoughWallFunctionFvPatchScalarField&,
|
|
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 nutkRoughWallFunctionFvPatchScalarField(*this, iF)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
// Access functions
|
|
|
|
// Return Ks
|
|
scalarField& Ks()
|
|
{
|
|
return Ks_;
|
|
}
|
|
|
|
// Return Cs
|
|
scalarField& Cs()
|
|
{
|
|
return Cs_;
|
|
}
|
|
|
|
|
|
// Mapping functions
|
|
|
|
//- Map (and resize as needed) from self given a mapping object
|
|
virtual void autoMap(const fvPatchFieldMapper&);
|
|
|
|
//- Reverse map the given fvPatchField onto this fvPatchField
|
|
virtual void rmap
|
|
(
|
|
const fvPatchScalarField&,
|
|
const labelList&
|
|
);
|
|
|
|
|
|
// I-O
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|