BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / regionModels / surfaceFilmModels / derivedFvPatchFields / wallFunctions / alphatFilmWallFunction / alphatFilmWallFunctionFvPatchScalarField.H
blob25ec24197904a0733f856f577c80938aeb9a53a8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
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
19     for more details.
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/>.
24 Class
25     Foam::compressible::RASModels::alphatFilmWallFunctionFvPatchScalarField
27 Description
28     Turbulent thermal diffusivity boundary conditions for use with surface
29     film models.
31 SourceFiles
32     alphatFilmWallFunctionFvPatchScalarField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef compressibleMutRoughWallFunctionFvPatchScalarField_H
37 #define compressibleMutRoughWallFunctionFvPatchScalarField_H
39 #include "fixedValueFvPatchFields.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
45 namespace compressible
47 namespace RASModels
50 /*---------------------------------------------------------------------------*\
51           Class alphatFilmWallFunctionFvPatchScalarField Declaration
52 \*---------------------------------------------------------------------------*/
54 class alphatFilmWallFunctionFvPatchScalarField
56     public fixedValueFvPatchScalarField
58 protected:
60     // Protected data
62         //- B Coefficient (default = 5.5)
63         scalar B_;
65         //- y+ value for laminar -> turbulent transition (default = 11.05)
66         scalar yPlusCrit_;
68         //- Turbulent Cmu coefficient (default = 0.09)
69         scalar Cmu_;
71         //- Von-Karman constant (default = 0.41)
72         scalar kappa_;
74         //- Turbulent Prandtl number (default = 0.85)
75         scalar Prt_;
78 public:
80     //- Runtime type information
81     TypeName("alphatFilmWallFunction");
84     // Constructors
86         //- Construct from patch and internal field
87         alphatFilmWallFunctionFvPatchScalarField
88         (
89             const fvPatch&,
90             const DimensionedField<scalar, volMesh>&
91         );
93         //- Construct from patch, internal field and dictionary
94         alphatFilmWallFunctionFvPatchScalarField
95         (
96             const fvPatch&,
97             const DimensionedField<scalar, volMesh>&,
98             const dictionary&
99         );
101         //- Construct by mapping given
102         //  alphatFilmWallFunctionFvPatchScalarField
103         //  onto a new patch
104         alphatFilmWallFunctionFvPatchScalarField
105         (
106             const alphatFilmWallFunctionFvPatchScalarField&,
107             const fvPatch&,
108             const DimensionedField<scalar, volMesh>&,
109             const fvPatchFieldMapper&
110         );
112         //- Construct as copy
113         alphatFilmWallFunctionFvPatchScalarField
114         (
115             const alphatFilmWallFunctionFvPatchScalarField&
116         );
118         //- Construct and return a clone
119         virtual tmp<fvPatchScalarField> clone() const
120         {
121             return tmp<fvPatchScalarField>
122             (
123                 new alphatFilmWallFunctionFvPatchScalarField(*this)
124             );
125         }
127         //- Construct as copy setting internal field reference
128         alphatFilmWallFunctionFvPatchScalarField
129         (
130             const alphatFilmWallFunctionFvPatchScalarField&,
131             const DimensionedField<scalar, volMesh>&
132         );
134         //- Construct and return a clone setting internal field reference
135         virtual tmp<fvPatchScalarField> clone
136         (
137             const DimensionedField<scalar, volMesh>& iF
138         ) const
139         {
140             return tmp<fvPatchScalarField>
141             (
142                 new alphatFilmWallFunctionFvPatchScalarField(*this, iF)
143             );
144         }
147     // Member functions
149         // Evaluation functions
151             //- Update the coefficients associated with the patch field
152             virtual void updateCoeffs();
155         // I-O
157             //- Write
158             virtual void write(Ostream&) const;
162 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
164 } // End namespace RASModels
165 } // End namespace compressible
166 } // End namespace Foam
168 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
170 #endif
172 // ************************************************************************* //