greyDiffusiveRadiationMixedFvPatchScalarField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField
26 
27 Group
28  grpThermoBoundaryConditions
29 
30 Description
31  This boundary condition provides a grey-diffuse condition for radiation
32  intensity, \c I, for use with the finite-volume discrete-ordinates model
33  (fvDOM), in which the radiation temperature is retrieved from the
34  temperature field boundary condition.
35 
36 Usage
37  \table
38  Property | Description | Required | Default value
39  T | temperature field name | no | T
40  emissivityMode | emissivity mode: solidRadiation or lookup | yes |
41  \endtable
42 
43  Example of the boundary condition specification:
44  \verbatim
45  <patchName>
46  {
47  type greyDiffusiveRadiation;
48  T T;
49  emissivityMode solidRadiation;
50  value uniform 0;
51  }
52  \endverbatim
53 
54 See also
55  Foam::radiationCoupledBase
56  Foam::radiation::radiationModel
57  Foam::radiation::fvDOM
58  Foam::mixedFvPatchField
59 
60 SourceFiles
61  greyDiffusiveRadiationMixedFvPatchScalarField.C
62 
63 \*---------------------------------------------------------------------------*/
64 
65 #ifndef greyDiffusiveRadiationMixedFvPatchScalarField_H
66 #define greyDiffusiveRadiationMixedFvPatchScalarField_H
67 
68 #include "mixedFvPatchFields.H"
69 #include "radiationCoupledBase.H"
70 
71 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72 
73 namespace Foam
74 {
75 namespace radiation
76 {
77 /*---------------------------------------------------------------------------*\
78  Class greyDiffusiveRadiationMixedFvPatchScalarField Declaration
79 \*---------------------------------------------------------------------------*/
80 
81 class greyDiffusiveRadiationMixedFvPatchScalarField
82 :
83  public mixedFvPatchScalarField,
84  public radiationCoupledBase
85 {
86  // Private data
87 
88  //- Name of temperature field
89  word TName_;
90 
91 
92 public:
93 
94  //- Runtime type information
95  TypeName("greyDiffusiveRadiation");
96 
97 
98  // Constructors
99 
100  //- Construct from patch and internal field
102  (
103  const fvPatch&,
105  );
106 
107  //- Construct from patch, internal field and dictionary
109  (
110  const fvPatch&,
112  const dictionary&
113  );
114 
115  //- Construct by mapping given a
116  // greyDiffusiveRadiationMixedFvPatchScalarField onto a new patch
118  (
120  const fvPatch&,
122  const fvPatchFieldMapper&
123  );
124 
125  //- Construct as copy
127  (
129  );
130 
131  //- Construct and return a clone
132  virtual tmp<fvPatchScalarField> clone() const
133  {
135  (
137  );
138  }
139 
140  //- Construct as copy setting internal field reference
142  (
145  );
147  //- Construct and return a clone setting internal field reference
149  (
151  ) const
152  {
154  (
156  );
157  }
158 
159 
160  // Member functions
161 
162  // Access
164  //- Return the temperature field name
165  const word& TName() const
166  {
167  return TName_;
168  }
169 
170  //- Return reference to the temperature field name to allow
171  // adjustment
172  word& TName()
173  {
174  return TName_;
175  }
176 
177 
178  // Evaluation functions
180  //- Update the coefficients associated with the patch field
181  virtual void updateCoeffs();
182 
183 
184  // I-O
185 
186  //- Write
187  virtual void write(Ostream&) const;
188 };
189 
190 
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
192 
193 } // End namespace radiation
194 } // End namespace Foam
195 
196 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
197 
198 #endif
199 
200 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
This boundary condition provides a grey-diffuse condition for radiation intensity, I, for use with the finite-volume discrete-ordinates model (fvDOM), in which the radiation temperature is retrieved from the temperature field boundary condition.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
A class for handling words, derived from string.
Definition: word.H:59
Foam::fvPatchFieldMapper.
greyDiffusiveRadiationMixedFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
A class for managing temporary objects.
Definition: PtrList.H:54
TypeName("greyDiffusiveRadiation")
Runtime type information.
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))
Namespace for OpenFOAM.