inletOutletFvPatchField.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::inletOutletFvPatchField
26 
27 Group
28  grpOutletBoundaryConditions
29 
30 Description
31  This boundary condition provides a generic outflow condition, with
32  specified inflow for the case of return flow.
33 
34 Usage
35  \table
36  Property | Description | Required | Default value
37  phi | Flux field name | no | phi
38  inletValue | Inlet value for reverse flow | yes |
39  \endtable
40 
41  Example of the boundary condition specification:
42  \verbatim
43  <patchName>
44  {
45  type inletOutlet;
46  phi phi;
47  inletValue 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 zero-gradient condition
58  - Negative flux (into of domain): apply the "inletValue" fixed-value
59 
60 See also
61  Foam::mixedFvPatchField
62  Foam::zeroGradientFvPatchField
63  Foam::outletInletFvPatchField
64 
65 SourceFiles
66  inletOutletFvPatchField.C
67 
68 \*---------------------------------------------------------------------------*/
69 
70 #ifndef inletOutletFvPatchField_H
71 #define inletOutletFvPatchField_H
72 
73 #include "mixedFvPatchField.H"
74 
75 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
76 
77 namespace Foam
78 {
79 
80 /*---------------------------------------------------------------------------*\
81  Class inletOutletFvPatchField Declaration
82 \*---------------------------------------------------------------------------*/
83 
84 template<class Type>
85 class inletOutletFvPatchField
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("inletOutlet");
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 inletOutletFvPatchField 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 inletOutletFvPatchField<Type>(*this, iF)
161  );
162  }
163 
164 
165  // Member functions
166 
167  // Attributes
169  //- Return true: this patch field is altered by assignment
170  virtual bool assignable() const
171  {
172  return true;
173  }
174 
175 
176  //- Update the coefficients associated with the patch field
177  virtual void updateCoeffs();
178 
179  //- Write
180  virtual void write(Ostream&) const;
181 
182 
183  // Member operators
185  virtual void operator=(const fvPatchField<Type>& pvf);
186 };
187 
188 
189 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
190 
191 } // End namespace Foam
192 
193 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
194 
195 #ifdef NoRepository
196  #include "inletOutletFvPatchField.C"
197 #endif
198 
199 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
200 
201 #endif
202 
203 // ************************************************************************* //
virtual void write(Ostream &) const
Write.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual bool assignable() const
Return true: this patch field is altered by assignment.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:66
virtual void operator=(const fvPatchField< Type > &pvf)
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Foam::fvPatchFieldMapper.
TypeName("inletOutlet")
Runtime type information.
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...
A class for managing temporary objects.
Definition: PtrList.H:53
virtual tmp< fvPatchField< Type > > clone() const
Construct and return a clone.
inletOutletFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
Namespace for OpenFOAM.
This boundary condition provides a generic outflow condition, with specified inflow for the case of r...