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 as copy setting internal field reference
131  (
134  );
135 
136  //- Return a clone
137  virtual tmp<fvPatchField<vector>> clone() const
138  {
139  return fvPatchField<vector>::Clone(*this);
140  }
141 
142  //- Clone with an internal field reference
144  (
146  ) const
147  {
148  return fvPatchField<vector>::Clone(*this, iF);
149  }
150 
152  // Member Functions
153 
154  //- True: this patch field is altered by assignment
155  virtual bool assignable() const { return true; }
156 
157 
158  // Access
159 
160  //- Return the name of rho
161  const word& rhoName() const
162  {
163  return rhoName_;
164  }
165 
166  //- Return reference to the name of rho to allow adjustment
167  word& rhoName()
168  {
169  return rhoName_;
170  }
171 
172  //- Return the name of phi
173  const word& phiName() const
174  {
175  return phiName_;
176  }
177 
178  //- Return reference to the name of phi to allow adjustment
179  word& phiName()
180  {
181  return phiName_;
182  }
183 
184 
185  //- Update the coefficients associated with the patch field
186  virtual void updateCoeffs();
187 
188  //- Write
189  virtual void write(Ostream&) const;
190 
191 
192  // Member operators
193 
194  virtual void operator=(const fvPatchField<vector>& pvf);
195 };
196 
198 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
199 
200 } // End namespace Foam
201 
202 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
203 
204 #endif
206 // ************************************************************************* //
virtual tmp< fvPatchField< vector > > clone() const
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
static tmp< fvPatchField< Type > > Clone(const DerivedPatchField &pf, Args &&... args)
Clone a patch field, optionally with internal field reference etc.
Definition: fvPatchField.H:597
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...
A class for managing temporary objects.
Definition: HashPtrTable.H:50
Namespace for OpenFOAM.