filmPyrolysisVelocityCoupledFvPatchVectorField.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-2013 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::filmPyrolysisVelocityCoupledFvPatchVectorField
26 
27 Description
28  This boundary condition is designed to be used in conjunction with surface
29  film and pyrolysis modelling. It provides a velocity boundary condition
30  for patches on the primary region based on whether the patch is seen to
31  be 'wet', retrieved from the film alpha field.
32 
33  \li if the patch is wet, the velocity is set using the film velocity
34  \li otherwise, it is set using pyrolysis out-gassing velocity
35 
36  Example of the boundary condition specification:
37  \verbatim
38  myPatch
39  {
40  type filmPyrolysisVelocityCoupled;
41  phi phi; // name of flux field (default = phi)
42  rho rho; // name of density field (default = rho)
43  deltaWet 1e-4; // threshold height for 'wet' film
44  value uniform (0 0 0); // initial velocity / [m/s]
45  }
46  \endverbatim
47 
48 SourceFiles
49  filmPyrolysisVelocityCoupledFvPatchVectorField.C
50 
51 \*---------------------------------------------------------------------------*/
52 
53 #ifndef filmPyrolysisVelocityCoupledFvPatchVectorField_H
54 #define filmPyrolysisVelocityCoupledFvPatchVectorField_H
55 
57 
58 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 
60 namespace Foam
61 {
62 
63 /*---------------------------------------------------------------------------*\
64  Class filmPyrolysisVelocityCoupledFvPatchVectorField Declaration
65 \*---------------------------------------------------------------------------*/
66 
68 :
69  public fixedValueFvPatchVectorField
70 {
71  // Private data
72 
73  //- Name of film region
75 
76  //- Name of pyrolysis region
78 
79  //- Name of flux field
80  word phiName_;
81 
82  //- Name of density field
83  word rhoName_;
84 
85 
86 public:
87 
88  //- Runtime type information
89  TypeName("filmPyrolysisVelocityCoupled");
90 
91 
92  // Constructors
93 
94  //- Construct from patch and internal field
96  (
97  const fvPatch&,
99  );
100 
101  //- Construct from patch, internal field and dictionary
103  (
104  const fvPatch&,
106  const dictionary&
107  );
108 
109  //- Construct by mapping given
110  // filmPyrolysisVelocityCoupledFvPatchVectorField onto a new patch
112  (
114  const fvPatch&,
116  const fvPatchFieldMapper&
117  );
118 
119  //- Construct as copy
121  (
123  );
124 
125  //- Construct and return a clone
126  virtual tmp<fvPatchVectorField> clone() const
127  {
129  (
131  );
132  }
133 
134  //- Construct as copy setting internal field reference
136  (
139  );
140 
141  //- Construct and return a clone setting internal field reference
143  (
145  ) const
146  {
148  (
150  );
151  }
152 
153 
154  // Member functions
155 
156  // Access
157 
158  //- Return the name of phi
159  const word& phiName() const
160  {
161  return phiName_;
162  }
163 
164  //- Return reference to the name of phi to allow adjustment
165  word& phiName()
166  {
167  return phiName_;
168  }
169 
170  //- Return the name of rho
171  const word& rhoName() const
172  {
173  return rhoName_;
174  }
175 
176  //- Return reference to the name of rho to allow adjustment
177  word& rhoName()
178  {
179  return rhoName_;
180  }
181 
182 
183  //- Update the coefficients associated with the patch field
184  virtual void updateCoeffs();
185 
186  //- Write
187  virtual void write(Ostream&) const;
188 };
189 
190 
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
192 
193 } // End namespace Foam
194 
195 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
196 
197 #endif
198 
199 // ************************************************************************* //
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::write
virtual void write(Ostream &) const
Write.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:212
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::filmPyrolysisVelocityCoupledFvPatchVectorField::pyrolysisRegionName_
word pyrolysisRegionName_
Name of pyrolysis region.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:76
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::clone
virtual tmp< fvPatchVectorField > clone() const
Construct and return a clone.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:125
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField
This boundary condition is designed to be used in conjunction with surface film and pyrolysis modelli...
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:66
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::phiName
const word & phiName() const
Return the name of phi.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:158
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::filmPyrolysisVelocityCoupledFvPatchVectorField
filmPyrolysisVelocityCoupledFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:36
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
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
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::rhoName_
word rhoName_
Name of density field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:82
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::filmRegionName_
word filmRegionName_
Name of film region.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:73
fixedValueFvPatchFields.H
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::filmPyrolysisVelocityCoupledFvPatchVectorField::rhoName
const word & rhoName() const
Return the name of rho.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:170
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:121
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::phiName_
word phiName_
Name of flux field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:79
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::phiName
word & phiName()
Return reference to the name of phi to allow adjustment.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:164
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::rhoName
word & rhoName()
Return reference to the name of rho to allow adjustment.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:176
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::TypeName
TypeName("filmPyrolysisVelocityCoupled")
Runtime type information.
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:51