outletInletFvPatchField.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::outletInletFvPatchField
26 
27 Group
28  grpInletBoundaryConditions
29 
30 Description
31  This boundary condition provides a generic inflow condition, with
32  specified outflow for the case of reverse flow.
33 
34 Usage
35  \table
36  Property | Description | Required | Default value
37  phi | Flux field name | no | phi
38  outletValue | Outlet value for reverse flow | yes |
39  \endtable
40 
41  Example of the boundary condition specification:
42  \verbatim
43  <patchName>
44  {
45  type outletInlet;
46  phi phi;
47  outletValue uniform 0;
48  value uniform 0;
49  }
50  \endverbatim
51 
52  The mode of operation is determined by the sign of the flux across the
53  patch faces.
54 
55 Note
56  Sign conventions:
57  - Positive flux (out of domain): apply the "outletValue" fixed-value
58  - Negative flux (into of domain): apply zero-gradient condition
59 
60 See also
61  Foam::mixedFvPatchField
62  Foam::zeroGradientFvPatchField
63  Foam::inletOutletFvPatchField
64 
65 SourceFiles
66  outletInletFvPatchField.C
67 
68 \*---------------------------------------------------------------------------*/
69 
70 #ifndef outletInletFvPatchField_H
71 #define outletInletFvPatchField_H
72 
73 #include "mixedFvPatchField.H"
74 
75 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
76 
77 namespace Foam
78 {
79 
80 /*---------------------------------------------------------------------------*\
81  Class outletInletFvPatch Declaration
82 \*---------------------------------------------------------------------------*/
83 
84 template<class Type>
85 class outletInletFvPatchField
86 :
87  public mixedFvPatchField<Type>
88 {
89 
90 protected:
91 
92  // Protected data
93 
94  //- Name of flux field
95  word phiName_;
96 
97 
98 public:
99 
100  //- Runtime type information
101  TypeName("outletInlet");
102 
103 
104  // Constructors
105 
106  //- Construct from patch and internal field
108  (
109  const fvPatch&,
111  );
112 
113  //- Construct from patch, internal field and dictionary
115  (
116  const fvPatch&,
118  const dictionary&
119  );
120 
121  //- Construct by mapping given outletInletFvPatchField onto a new patch
123  (
125  const fvPatch&,
127  const fvPatchFieldMapper&
128  );
129 
130  //- Construct as copy
132  (
134  );
135 
136  //- Construct and return a clone
137  virtual tmp<fvPatchField<Type>> clone() const
138  {
139  return tmp<fvPatchField<Type>>
140  (
142  );
143  }
144 
145  //- Construct as copy setting internal field reference
147  (
150  );
152  //- Construct and return a clone setting internal field reference
154  (
156  ) const
157  {
158  return tmp<fvPatchField<Type>>
159  (
160  new outletInletFvPatchField<Type>(*this, iF)
161  );
162  }
163 
164 
165  // Member functions
166 
167  //- Update the coefficients associated with the patch field
168  virtual void updateCoeffs();
169 
170  //- Write
171  virtual void write(Ostream&) const;
172 };
173 
174 
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176 
177 } // End namespace Foam
178 
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 
181 #ifdef NoRepository
182  #include "outletInletFvPatchField.C"
183 #endif
184 
185 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
186 
187 #endif
188 
189 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
outletInletFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
virtual void write(Ostream &) const
Write.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
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:53
TypeName("outletInlet")
Runtime type information.
virtual tmp< fvPatchField< Type > > clone() const
Construct and return a clone.
This boundary condition provides a generic inflow condition, with specified outflow for the case of r...
Namespace for OpenFOAM.