inletOutletFvPatchField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2026 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 Description
28  This boundary condition provides a generic outflow condition, with
29  specified inflow for the case of return flow.
30 
31 Usage
32  \table
33  Property | Description | Required | Default value
34  phi | Flux field name | no | phi
35  inletValue | Inlet value for reverse flow | yes |
36  \endtable
37 
38  Example of the boundary condition specification:
39  \verbatim
40  <patchName>
41  {
42  type inletOutlet;
43  phi phi;
44  inletValue uniform 0;
45  }
46  \endverbatim
47 
48  The mode of operation is determined by the sign of the flux across the
49  patch faces.
50 
51  Note:
52  Sign conventions:
53  - Positive flux (out of domain): apply zero-gradient condition
54  - Negative flux (into of domain): apply the "inletValue" fixed-value
55 
56 See also
57  Foam::mixedFvPatchField
58  Foam::zeroGradientFvPatchField
59  Foam::outletInletFvPatchField
60 
61 SourceFiles
62  inletOutletFvPatchField.C
63 
64 \*---------------------------------------------------------------------------*/
65 
66 #ifndef inletOutletFvPatchField_H
67 #define inletOutletFvPatchField_H
68 
69 #include "mixedFvPatchField.H"
70 
71 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72 
73 namespace Foam
74 {
75 
76 /*---------------------------------------------------------------------------*\
77  Class inletOutletFvPatchField Declaration
78 \*---------------------------------------------------------------------------*/
79 
80 template<class Type>
81 class inletOutletFvPatchField
82 :
83  public mixedFvPatchField<Type>
84 {
85 
86 protected:
87 
88  // Protected data
89 
90  //- Name of flux field
91  word phiName_;
92 
93 
94 public:
95 
96  //- Runtime type information
97  TypeName("inletOutlet");
98 
99 
100  // Constructors
101 
102  //- Construct from patch and internal field
104  (
105  const fvPatch&,
107  );
108 
109  //- Construct from patch, internal field and dictionary
111  (
112  const fvPatch&,
114  const dictionary&,
115  const bool valuesRequired=true
116  );
117 
118  //- Construct by mapping given inletOutletFvPatchField onto a new patch
120  (
122  const fvPatch&,
124  const fieldMapper&
125  );
126 
127  //- Disallow copy without setting internal field reference
129 
130  //- Copy constructor setting internal field reference
132  (
135  );
136 
137  //- Construct and return a clone setting internal field reference
139  (
141  ) const
142  {
143  return tmp<fvPatchField<Type>>
144  (
145  new inletOutletFvPatchField<Type>(*this, iF)
146  );
147  }
148 
149 
150  // Member Functions
151 
152  // Attributes
153 
154  //- Return true: this patch field is altered by assignment
155  virtual bool assignable() const
156  {
157  return true;
158  }
159 
160  //- Return the flux-field name
161  const word& phiName() const
162  {
163  return phiName_;
164  }
165 
166  //- Return access to the flux-field name
167  word& phiName()
168  {
169  return phiName_;
170  }
171 
172 
173  //- Update the coefficients associated with the patch field
174  virtual void updateCoeffs();
175 
176  //- Write
177  virtual void write(Ostream&) const;
178 
179 
180  // Member Operators
181 
182  virtual void operator=(const fvPatchField<Type>& pvf);
183 
184  //- Inherit assignment
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 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Abstract base class for field mapping.
Definition: fieldMapper.H:48
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:90
tmp< fvPatchField< Type > > clone() const
Disallow clone without setting internal field reference.
Definition: fvPatchField.H:215
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:58
This boundary condition provides a generic outflow condition, with specified inflow for the case of r...
virtual void write(Ostream &) const
Write.
virtual void operator=(const fvPatchField< Type > &pvf)
inletOutletFvPatchField(const fvPatch &, const DimensionedField< Type, fvMesh > &)
Construct from patch and internal field.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("inletOutlet")
Runtime type information.
virtual bool assignable() const
Return true: this patch field is altered by assignment.
const word & phiName() const
Return the flux-field name.
This boundary condition provides a base class for 'mixed' type boundary conditions,...
A class for managing temporary objects.
Definition: tmp.H:55
A class for handling words, derived from string.
Definition: word.H:63
Namespace for OpenFOAM.