pressureInletVelocityFvPatchVectorField.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::pressureInletVelocityFvPatchVectorField
28 
29 Group
30  grpInletBoundaryConditions
31 
32 Description
33  This velocity inlet boundary condition is applied to patches where the
34  pressure is specified. The inflow velocity is obtained from the flux with
35  a direction normal to the patch faces.
36 
37 Usage
38  Example of the boundary condition specification:
39  \verbatim
40  <patchName>
41  {
42  type pressureInletVelocity;
43  phi phi;
44  rho rho;
45  value uniform 0;
46  }
47  \endverbatim
48 
49 Note
50  If reverse flow is possible or expected use
51  the pressureInletOutletVelocityFvPatchVectorField condition instead.
52 
53 See also
54  Foam::fixedValueFvPatchField
55  Foam::pressureInletOutletVelocityFvPatchVectorField
56 
57 SourceFiles
58  pressureInletVelocityFvPatchVectorField.C
59 
60 \*---------------------------------------------------------------------------*/
61 
62 #ifndef pressureInletVelocityFvPatchVectorField_H
63 #define pressureInletVelocityFvPatchVectorField_H
64 
65 #include "fvPatchFields.H"
67 
68 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
69 
70 namespace Foam
71 {
72 
73 /*---------------------------------------------------------------------------*\
74  Class pressureInletVelocityFvPatchVectorField Declaration
75 \*---------------------------------------------------------------------------*/
76 
78 :
79  public fixedValueFvPatchVectorField
80 {
81  // Private data
82 
83  //- Flux field name
84  word phiName_;
85 
86  //- Density field name
87  word rhoName_;
88 
89 
90 public:
91 
92  //- Runtime type information
93  TypeName("pressureInletVelocity");
94 
95 
96  // Constructors
97 
98  //- Construct from patch and internal field
100  (
101  const fvPatch&,
103  );
104 
105  //- Construct from patch, internal field and dictionary
107  (
108  const fvPatch&,
110  const dictionary&
111  );
112 
113  //- Construct by mapping given pressureInletVelocityFvPatchVectorField
114  // onto a new patch
116  (
118  const fvPatch&,
120  const fvPatchFieldMapper&
121  );
122 
123  //- Construct as copy
125  (
127  );
128 
129  //- Construct and return a clone
130  virtual tmp<fvPatchVectorField> clone() const
131  {
133  (
135  );
136  }
137 
138  //- Construct as copy setting internal field reference
140  (
143  );
144 
145  //- Construct and return a clone setting internal field reference
147  (
149  ) const
150  {
152  (
154  );
155  }
156 
157 
158  // Member Functions
159 
160  //- True: this patch field is altered by assignment
161  virtual bool assignable() const { return true; }
162 
164  // Access
165 
166  //- Return the name of rho
167  const word& rhoName() const
168  {
169  return rhoName_;
170  }
171 
172  //- Return reference to the name of rho to allow adjustment
173  word& rhoName()
174  {
175  return rhoName_;
176  }
177 
178  //- Return the name of phi
179  const word& phiName() const
180  {
181  return phiName_;
182  }
183 
184  //- Return reference to the name of phi to allow adjustment
185  word& phiName()
186  {
187  return phiName_;
188  }
189 
190 
191  //- Update the coefficients associated with the patch field
192  virtual void updateCoeffs();
193 
194  //- Write
195  virtual void write(Ostream&) const;
196 
197 
198  // Member operators
199 
200  virtual void operator=(const fvPatchField<vector>& pvf);
201 };
202 
204 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
205 
206 } // End namespace Foam
207 
208 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
209 
210 #endif
212 // ************************************************************************* //
virtual tmp< fvPatchVectorField > clone() const
Construct and return a clone.
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
TypeName("pressureInletVelocity")
Runtime type information.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:70
virtual bool assignable() const
True: this patch field is altered by assignment.
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
pressureInletVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
virtual void operator=(const fvPatchField< vector > &pvf)
This velocity inlet boundary condition is applied to patches where the pressure is specified...
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: areaFieldsFwd.H:42
A class for managing temporary objects.
Definition: HashPtrTable.H:50
Namespace for OpenFOAM.