initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / thermophysicalModels / radiation / derivedFvPatchFields / MarshakRadiationFixedT / MarshakRadiationFixedTMixedFvPatchScalarField.H
blob83823c763f3bfd069d0d41dc50f2cb405ae3d54c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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::MarshakRadiationFixedTMixedFvPatchScalarField
28 Description
29     Radiation temperature specified
31 SourceFiles
32     MarshakRadiationFixedTMixedFvPatchScalarField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef MarshakRadiationFixedTMixedFvPatchField_H
37 #define MarshakRadiationFixedTMixedFvPatchField_H
39 #include "mixedFvPatchFields.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47         Class MarshakRadiationFixedTMixedFvPatchScalarField Declaration
48 \*---------------------------------------------------------------------------*/
50 class MarshakRadiationFixedTMixedFvPatchScalarField
52     public mixedFvPatchScalarField
55     // Private data
57         //- Radiation temperature field
58         scalarField Trad_;
60         //- Emissivity
61         scalar emissivity_;
64 public:
66     //- Runtime type information
67     TypeName("MarshakRadiationFixedT");
70     // Constructors
72         //- Construct from patch and internal field
73         MarshakRadiationFixedTMixedFvPatchScalarField
74         (
75             const fvPatch&,
76             const DimensionedField<scalar, volMesh>&
77         );
79         //- Construct from patch, internal field and dictionary
80         MarshakRadiationFixedTMixedFvPatchScalarField
81         (
82             const fvPatch&,
83             const DimensionedField<scalar, volMesh>&,
84             const dictionary&
85         );
87         //- Construct by mapping given MarshakRadiationFvPatchField onto a new
88         //  patch
89         MarshakRadiationFixedTMixedFvPatchScalarField
90         (
91             const MarshakRadiationFixedTMixedFvPatchScalarField&,
92             const fvPatch&,
93             const DimensionedField<scalar, volMesh>&,
94             const fvPatchFieldMapper&
95         );
97         //- Construct as copy
98         MarshakRadiationFixedTMixedFvPatchScalarField
99         (
100             const MarshakRadiationFixedTMixedFvPatchScalarField&
101         );
103         //- Construct and return a clone
104         virtual tmp<fvPatchScalarField> clone() const
105         {
106             return tmp<fvPatchScalarField>
107             (
108                 new MarshakRadiationFixedTMixedFvPatchScalarField(*this)
109             );
110         }
112         //- Construct as copy setting internal field reference
113         MarshakRadiationFixedTMixedFvPatchScalarField
114         (
115             const MarshakRadiationFixedTMixedFvPatchScalarField&,
116             const DimensionedField<scalar, volMesh>&
117         );
119         //- Construct and return a clone setting internal field reference
120         virtual tmp<fvPatchScalarField> clone
121         (
122             const DimensionedField<scalar, volMesh>& iF
123         ) const
124         {
125             return tmp<fvPatchScalarField>
126             (
127                 new MarshakRadiationFixedTMixedFvPatchScalarField(*this, iF)
128             );
129         }
132     // Member functions
134         // Access
136             //- Return the radiation temperature
137             const scalarField& Trad() const
138             {
139                 return Trad_;
140             }
142             //- Return reference to the radiation temperature to allow
143             //  adjustment
144             scalarField& Trad()
145             {
146                 return Trad_;
147             }
149             //- Return the emissivity
150             const scalar& emissivity() const
151             {
152                 return emissivity_;
153             }
155             //- Return reference to the emissivity to allow adjustment
156             scalar& emissivity()
157             {
158                 return emissivity_;
159             }
162         // Mapping functions
164             //- Map (and resize as needed) from self given a mapping object
165             virtual void autoMap
166             (
167                 const fvPatchFieldMapper&
168             );
170             //- Reverse map the given fvPatchField onto this fvPatchField
171             virtual void rmap
172             (
173                 const fvPatchScalarField&,
174                 const labelList&
175             );
178         // Evaluation functions
180             //- Update the coefficients associated with the patch field
181             virtual void updateCoeffs();
184         // I-O
186             //- Write
187             virtual void write(Ostream&) const;
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
193 } // End namespace Foam
195 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
197 #endif
199 // ************************************************************************* //