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