initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / turbulenceModels / compressible / RAS / derivedFvPatchFields / wallFunctions / mutWallFunctions / mutSpalartAllmarasWallFunction / mutSpalartAllmarasWallFunctionFvPatchScalarField.H
blobfc37af6d82aaf92a03497466bff14bb67b500699
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::compressible::RASModels::
27     mutSpalartAllmarasWallFunctionFvPatchScalarField
29 Description
30     Wall function boundary condition for walls
32 SourceFiles
33     mutSpalartAllmarasWallFunctionFvPatchScalarField.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef compressibleMutSpalartAllmarasWallFunctionFvPatchScalarField_H
38 #define compressibleMutSpalartAllmarasWallFunctionFvPatchScalarField_H
40 #include "mutWallFunctionFvPatchScalarField.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
46 namespace compressible
48 namespace RASModels
51 /*---------------------------------------------------------------------------*\
52       Class mutSpalartAllmarasWallFunctionFvPatchScalarField Declaration
53 \*---------------------------------------------------------------------------*/
55 class mutSpalartAllmarasWallFunctionFvPatchScalarField
57     public mutWallFunctionFvPatchScalarField
59 protected:
61     // Protected member functions
63         //- Calculate the turbulence viscosity
64         virtual tmp<scalarField> calcMut() const;
66         //- Calculate the friction velocity
67         virtual tmp<scalarField> calcUTau(const scalarField& magGradU) const;
70 public:
72     //- Runtime type information
73     TypeName("mutSpalartAllmarasWallFunction");
76     // Constructors
78         //- Construct from patch and internal field
79         mutSpalartAllmarasWallFunctionFvPatchScalarField
80         (
81             const fvPatch&,
82             const DimensionedField<scalar, volMesh>&
83         );
85         //- Construct from patch, internal field and dictionary
86         mutSpalartAllmarasWallFunctionFvPatchScalarField
87         (
88             const fvPatch&,
89             const DimensionedField<scalar, volMesh>&,
90             const dictionary&
91         );
93         //- Construct by mapping given
94         //  mutSpalartAllmarasWallFunctionFvPatchScalarField
95         //  onto a new patch
96         mutSpalartAllmarasWallFunctionFvPatchScalarField
97         (
98             const mutSpalartAllmarasWallFunctionFvPatchScalarField&,
99             const fvPatch&,
100             const DimensionedField<scalar, volMesh>&,
101             const fvPatchFieldMapper&
102         );
104         //- Construct as copy
105         mutSpalartAllmarasWallFunctionFvPatchScalarField
106         (
107             const mutSpalartAllmarasWallFunctionFvPatchScalarField&
108         );
110         //- Construct and return a clone
111         virtual tmp<fvPatchScalarField> clone() const
112         {
113             return tmp<fvPatchScalarField>
114             (
115                 new mutSpalartAllmarasWallFunctionFvPatchScalarField(*this)
116             );
117         }
119         //- Construct as copy setting internal field reference
120         mutSpalartAllmarasWallFunctionFvPatchScalarField
121         (
122             const mutSpalartAllmarasWallFunctionFvPatchScalarField&,
123             const DimensionedField<scalar, volMesh>&
124         );
126         //- Construct and return a clone setting internal field reference
127         virtual tmp<fvPatchScalarField> clone
128         (
129             const DimensionedField<scalar, volMesh>& iF
130         ) const
131         {
132             return tmp<fvPatchScalarField>
133             (
134                 new mutSpalartAllmarasWallFunctionFvPatchScalarField(*this, iF)
135             );
136         }
139     // Member functions
141         // Evaluation functions
143             //- Calculate and return the yPlus at the boundary
144             virtual tmp<scalarField> yPlus() const;
147         // I-O
149             //- Write
150             virtual void write(Ostream& os) const;
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 } // End namespace RASModels
157 } // End namespace compressible
158 } // End namespace Foam
160 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 #endif
164 // ************************************************************************* //