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-2015 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  \heading Patch usage
37 
38  \table
39  Property | Description | Required | Default value
40  T | temperature field name | no | T
41  \endtable
42 
43  Example of the boundary condition specification:
44  \verbatim
45  myPatch
46  {
47  type greyDiffusiveRadiation;
48  T T;
49  value uniform 0;
50  }
51  \endverbatim
52 
53 SeeAlso
54  Foam::radiation::radiationModel
55  Foam::radiation::fvDOM
56  Foam::radiationCoupledBase
57  Foam::mixedFvPatchField
58 
59 SourceFiles
60  greyDiffusiveRadiationMixedFvPatchScalarField.C
61 
62 \*---------------------------------------------------------------------------*/
63 
64 #ifndef greyDiffusiveRadiationMixedFvPatchScalarField_H
65 #define greyDiffusiveRadiationMixedFvPatchScalarField_H
66 
67 #include "mixedFvPatchFields.H"
68 
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71 namespace Foam
72 {
73 namespace radiation
74 {
75 /*---------------------------------------------------------------------------*\
76  Class greyDiffusiveRadiationMixedFvPatchScalarField Declaration
77 \*---------------------------------------------------------------------------*/
78 
79 class greyDiffusiveRadiationMixedFvPatchScalarField
80 :
81  public mixedFvPatchScalarField
82 {
83  // Private data
84 
85  //- Name of temperature field
86  word TName_;
87 
88  //- Activate solar load
89  bool solarLoad_;
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  );
146 
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
163 
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
179 
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 Foam
194 }
195 
196 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
197 
198 #endif
199 
200 // ************************************************************************* //
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::greyDiffusiveRadiationMixedFvPatchScalarField
greyDiffusiveRadiationMixedFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.C:42
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField
This boundary condition provides a grey-diffuse condition for radiation intensity,...
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.H:88
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::TName_
word TName_
Name of temperature field.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.H:95
radiation
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
mixedFvPatchFields.H
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::clone
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.H:141
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::write
virtual void write(Ostream &) const
Write.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.C:246
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::TName
const word & TName() const
Return the temperature field name.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.H:174
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.C:133
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:45
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::TypeName
TypeName("greyDiffusiveRadiation")
Runtime type information.
Foam::radiation::greyDiffusiveRadiationMixedFvPatchScalarField::solarLoad_
bool solarLoad_
Activate solar load.
Definition: greyDiffusiveRadiationMixedFvPatchScalarField.H:98
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:51