1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 Foam::incompressible::RASModels::nutLowReWallFunctionFvPatchScalarField
28 Boundary condition for turbulent (kinematic) viscosity when for use with
29 low Reynolds number models.
31 Sets nut to zero, and provides an access function to calculate y+.
34 nutLowReWallFunctionFvPatchScalarField.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef nutLowReWallFunctionFvPatchScalarField_H
39 #define nutLowReWallFunctionFvPatchScalarField_H
41 #include "nutkWallFunctionFvPatchScalarField.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace incompressible
52 /*---------------------------------------------------------------------------*\
53 Class nutLowReWallFunctionFvPatchScalarField Declaration
54 \*---------------------------------------------------------------------------*/
56 class nutLowReWallFunctionFvPatchScalarField
58 public nutkWallFunctionFvPatchScalarField
62 // Protected Member Functions
64 //- Calculate the turbulence viscosity
65 virtual tmp<scalarField> calcNut() const;
70 //- Runtime type information
71 TypeName("nutLowReWallFunction");
76 //- Construct from patch and internal field
77 nutLowReWallFunctionFvPatchScalarField
80 const DimensionedField<scalar, volMesh>&
83 //- Construct from patch, internal field and dictionary
84 nutLowReWallFunctionFvPatchScalarField
87 const DimensionedField<scalar, volMesh>&,
91 //- Construct by mapping given
92 // nutLowReWallFunctionFvPatchScalarField
94 nutLowReWallFunctionFvPatchScalarField
96 const nutLowReWallFunctionFvPatchScalarField&,
98 const DimensionedField<scalar, volMesh>&,
99 const fvPatchFieldMapper&
102 //- Construct as copy
103 nutLowReWallFunctionFvPatchScalarField
105 const nutLowReWallFunctionFvPatchScalarField&
108 //- Construct and return a clone
109 virtual tmp<fvPatchScalarField> clone() const
111 return tmp<fvPatchScalarField>
113 new nutLowReWallFunctionFvPatchScalarField(*this)
117 //- Construct as copy setting internal field reference
118 nutLowReWallFunctionFvPatchScalarField
120 const nutLowReWallFunctionFvPatchScalarField&,
121 const DimensionedField<scalar, volMesh>&
124 //- Construct and return a clone setting internal field reference
125 virtual tmp<fvPatchScalarField> clone
127 const DimensionedField<scalar, volMesh>& iF
130 return tmp<fvPatchScalarField>
132 new nutLowReWallFunctionFvPatchScalarField(*this, iF)
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 } // End namespace RASModels
141 } // End namespace incompressible
142 } // End namespace Foam
144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148 // ************************************************************************* //