greyDiffusiveViewFactorFixedValueFvPatchScalarField.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::greyDiffusiveViewFactorFixedValueFvPatchScalarField
26 
27 Group
28  grpThermoBoundaryConditions
29 
30 Description
31  This boundary condition provides a grey-diffuse condition for radiative
32  heat flux, \c Qr, for use with the view factor model
33 
34 Usage
35  \table
36  Property | Description | Required | Default value
37  Qro | external radiative heat flux | yes |
38  emissivityMode | emissivity mode: solidRadiation or lookup | yes |
39  \endtable
40 
41  Example of the boundary condition specification:
42  \verbatim
43  <patchName>
44  {
45  type greyDiffusiveRadiationViewFactor;
46  Qro uniform 0;
47  emissivityMode solidRadiation;
48  value uniform 0;
49  }
50  \endverbatim
51 
52 See also
53  Foam::radiationCoupledBase
54  Foam::radiation::radiationModel
55  Foam::radiation::viewFactor
56  Foam::fixedValueFvPatchField
57 
58 SourceFiles
59  greyDiffusiveViewFactorFixedValueFvPatchScalarField.C
60 
61 \*---------------------------------------------------------------------------*/
62 
63 #ifndef greyDiffusiveViewFactorFixedValueFvPatchScalarField_H
64 #define greyDiffusiveViewFactorFixedValueFvPatchScalarField_H
65 
66 #include "radiationCoupledBase.H"
68 
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71 namespace Foam
72 {
73 namespace radiation
74 {
75 
76 /*---------------------------------------------------------------------------*\
77  Class greyDiffusiveViewFactorFixedValueFvPatchScalarField declaration
78 \*---------------------------------------------------------------------------*/
79 
80 class greyDiffusiveViewFactorFixedValueFvPatchScalarField
81 :
82  public fixedValueFvPatchScalarField,
83  public radiationCoupledBase
84 {
85  // Private data
86 
87  //- External radiative heat flux
88  scalarField Qro_;
89 
90 
91 public:
92 
93  //- Runtime type information
94  TypeName("greyDiffusiveRadiationViewFactor");
95 
96 
97  // Constructors
98 
99  //- Construct from patch and internal field
101  (
102  const fvPatch&,
104  );
105 
106  //- Construct from patch, internal field and dictionary
108  (
109  const fvPatch&,
111  const dictionary&
112  );
113 
114  //- Construct by mapping given a
115  // greyDiffusiveViewFactorFixedValueFvPatchScalarField onto a new patch
117  (
119  const fvPatch&,
121  const fvPatchFieldMapper&
122  );
123 
124  //- Construct as copy
126  (
128  );
129 
130  //- Construct and return a clone
131  virtual tmp<fvPatchScalarField> clone() const
132  {
134  (
136  );
137  }
138 
139  //- Construct as copy setting internal field reference
141  (
144  );
146  //- Construct and return a clone setting internal field reference
148  (
150  ) const
151  {
153  (
155  (
156  *this,
157  iF
158  )
159  );
160  }
161 
163  // Member functions
164 
165  // Access
166 
167  //- Return external radiative heat flux
168  const scalarList& Qro()
169  {
170  return Qro_;
171  }
172 
173 
174  // Evaluation functions
175 
176  //- Update the coefficients associated with the patch field
177  virtual void updateCoeffs();
178 
179 
180  // I-O
181 
182  //- Write
183  virtual void write(Ostream&) const;
184 };
185 
186 
187 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
188 
189 } // End namespace radiation
190 } // End namespace Foam
191 
192 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
193 
194 #endif
195 
196 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
TypeName("greyDiffusiveRadiationViewFactor")
Runtime type information.
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
greyDiffusiveViewFactorFixedValueFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
This boundary condition provides a grey-diffuse condition for radiative heat flux, Qr, for use with the view factor model.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
A class for managing temporary objects.
Definition: PtrList.H:54
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))
Namespace for OpenFOAM.