initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / compressible / rhoCentralFoam / BCs / T / smoluchowskiJumpTFvPatchScalarField.H
blob274574c6b5172203053c783b63bb1cf2a43d6607
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::smoluchowskiJumpTFvPatchScalarField
28 Description
29     Smoluchowski temperature jump boundary condition
31 SourceFiles
32     smoluchowskiJumpTFvPatchScalarField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef smoluchowskiJumpTFvPatchScalarFields_H
37 #define smoluchowskiJumpTFvPatchScalarFields_H
39 #include "mixedFvPatchFields.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                  Class smoluchowskiJumpTFvPatch Declaration
48 \*---------------------------------------------------------------------------*/
50 class smoluchowskiJumpTFvPatchScalarField
52     public mixedFvPatchScalarField
55     // Private data
57         // Accommodation coefficient
58         scalar accommodationCoeff_;
60         // Wall surface temperature
61         scalarField Twall_;
63         // Heat capacity ratio (default 1.4)
64         scalar gamma_;
66 public:
68     //- Runtime type information
69     TypeName("smoluchowskiJumpT");
72     // Constructors
74         //- Construct from patch and internal field
75         smoluchowskiJumpTFvPatchScalarField
76         (
77             const fvPatch&,
78             const DimensionedField<scalar, volMesh>&
79         );
81         //- Construct from patch, internal field and dictionary
82         smoluchowskiJumpTFvPatchScalarField
83         (
84             const fvPatch&,
85             const DimensionedField<scalar, volMesh>&,
86             const dictionary&
87         );
89         //- Construct by mapping given smoluchowskiJumpTFvPatchScalarField
90         //  onto a new patch
91         smoluchowskiJumpTFvPatchScalarField
92         (
93             const smoluchowskiJumpTFvPatchScalarField&,
94             const fvPatch&,
95             const DimensionedField<scalar, volMesh>&,
96             const fvPatchFieldMapper&
97         );
99         //- Construct and return a clone
100         virtual tmp<fvPatchScalarField> clone() const
101         {
102             return tmp<fvPatchScalarField>
103             (
104                 new smoluchowskiJumpTFvPatchScalarField(*this)
105             );
106         }
108         //- Construct as copy setting internal field reference
109         smoluchowskiJumpTFvPatchScalarField
110         (
111             const smoluchowskiJumpTFvPatchScalarField&,
112             const DimensionedField<scalar, volMesh>&
113         );
115         //- Construct and return a clone setting internal field reference
116         virtual tmp<fvPatchScalarField> clone
117         (
118             const DimensionedField<scalar, volMesh>& iF
119         ) const
120         {
121             return tmp<fvPatchScalarField>
122             (
123                 new smoluchowskiJumpTFvPatchScalarField(*this, iF)
124             );
125         }
127         // Mapping functions
129             //- Map (and resize as needed) from self given a mapping object
130             virtual void autoMap
131             (
132                 const fvPatchFieldMapper&
133             );
135             //- Reverse map the given fvPatchField onto this fvPatchField
136             virtual void rmap
137             (
138                 const fvPatchField<scalar>&,
139                 const labelList&
140             );
143         // Evaluation functions
145             //- Update the coefficients associated with the patch field
146             virtual void updateCoeffs();
149         //- Write
150         virtual void write(Ostream&) const;
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 } // End namespace Foam
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 #endif
162 // ************************************************************************* //