pressureNormalInletOutletVelocityFvPatchVectorField.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2016 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::pressureNormalInletOutletVelocityFvPatchVectorField
28 
29 Group
30  grpInletBoundaryConditions grpOutletBoundaryConditions
31 
32 Description
33  This velocity inlet/outlet boundary condition is applied to patches where
34  the pressure is specified. A zero-gradient condition is applied for
35  outflow (as defined by the flux); for inflow, the velocity is obtained from
36  the flux with a direction normal to the patch faces.
37 
38 Usage
39  \table
40  Property | Description | Required | Default value
41  phi | flux field name | no | phi
42  rho | density field name | no | rho
43  \endtable
44 
45  Example of the boundary condition specification:
46  \verbatim
47  <patchName>
48  {
49  type pressureNormalInletOutletVelocity;
50  phi phi;
51  rho rho;
52  value uniform 0;
53  }
54  \endverbatim
55 
56 Note
57  Sign conventions:
58  - positive flux (out of domain): apply zero-gradient condition
59  - negative flux (into of domain): derive from the flux and patch-normal
60  direction
61 
62 See also
63  Foam::mixedFvPatchVectorField
64 
65 SourceFiles
66  pressureNormalInletOutletVelocityFvPatchVectorField.C
67 
68 \*---------------------------------------------------------------------------*/
69 
70 #ifndef pressureNormalInletOutletVelocityFvPatchVectorField_H
71 #define pressureNormalInletOutletVelocityFvPatchVectorField_H
72 
73 #include "fvPatchFields.H"
74 #include "mixedFvPatchFields.H"
75 
76 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
77 
78 namespace Foam
79 {
80 
81 /*---------------------------------------------------------------------------*\
82  Class pressureNormalInletOutletVelocityFvPatchVectorField Declaration
83 \*---------------------------------------------------------------------------*/
84 
85 class pressureNormalInletOutletVelocityFvPatchVectorField
86 :
87  public mixedFvPatchVectorField
88 {
89  // Private data
90 
91  //- Flux field name
92  word phiName_;
93 
94  //- Density field name
95  word rhoName_;
96 
97 
98 public:
99 
100  //- Runtime type information
101  TypeName("pressureNormalInletOutletVelocity");
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
122  // pressureNormalInletOutletVelocityFvPatchVectorField
123  // onto a new patch
125  (
127  const fvPatch&,
129  const fvPatchFieldMapper&
130  );
131 
132  //- Construct as copy
134  (
136  );
137 
138  //- Construct as copy setting internal field reference
140  (
143  );
144 
145  //- Return a clone
146  virtual tmp<fvPatchField<vector>> clone() const
147  {
148  return fvPatchField<vector>::Clone(*this);
149  }
150 
151  //- Clone with an internal field reference
153  (
155  ) const
156  {
157  return fvPatchField<vector>::Clone(*this, iF);
158  }
159 
160 
161  // Member Functions
162 
163  //- True: this patch field is altered by assignment
164  virtual bool assignable() const { return true; }
165 
166 
167  // Access
168 
169  //- Return the name of rho
170  const word& rhoName() const
171  {
172  return rhoName_;
173  }
174 
175  //- Return reference to the name of rho to allow adjustment
176  word& rhoName()
177  {
178  return rhoName_;
179  }
180 
181  //- Return the name of phi
182  const word& phiName() const
183  {
184  return phiName_;
185  }
186 
187 
188  //- Return reference to the name of phi to allow adjustment
189  word& phiName()
190  {
191  return phiName_;
192  }
193 
194 
195  //- Update the coefficients associated with the patch field
196  virtual void updateCoeffs();
198  //- Write
199  virtual void write(Ostream&) const;
200 
201 
202  // Member operators
203 
204  virtual void operator=(const fvPatchField<vector>& pvf);
205 };
206 
207 
208 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
209 
210 } // End namespace Foam
211 
212 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
214 #endif
215 
216 // ************************************************************************* //
This velocity inlet/outlet boundary condition is applied to patches where the pressure is specified...
pressureNormalInletOutletVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:70
TypeName("pressureNormalInletOutletVelocity")
Runtime type information.
static tmp< fvPatchField< Type > > Clone(const DerivedPatchField &pf, Args &&... args)
Clone a patch field, optionally with internal field reference etc.
Definition: fvPatchField.H:597
A class for handling words, derived from Foam::string.
Definition: word.H:63
A FieldMapper for finite-volume patch fields.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:56
virtual bool assignable() const
True: this patch field is altered by assignment.
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: HashPtrTable.H:50
Namespace for OpenFOAM.