flowRateOutletVelocityFvPatchVectorField.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) 2017-2018 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::flowRateOutletVelocityFvPatchVectorField
26 
27 Description
28  Velocity outlet boundary condition which corrects the extrapolated velocity
29  to match the specified flow rate.
30 
31  For a mass-based flux:
32  - the flow rate should be provided in kg/s
33  - if \c rho is "none" the flow rate is in m^3/s
34  - otherwise \c rho should correspond to the name of the density field
35  - if the density field cannot be found in the database, the user must
36  specify the outlet density using the \c rhoOutlet entry
37 
38  For a volumetric-based flux:
39  - the flow rate is in m^3/s
40 
41 Usage
42  \table
43  Property | Description | Required | Default value
44  massFlowRate | mass flow rate [kg/s] | no |
45  volumetricFlowRate | volumetric flow rate [m^3/s]| no |
46  rho | density field name | no | rho
47  rhoOutlet | outlet density | no |
48  \endtable
49 
50  Example of the boundary condition specification for a volumetric flow rate:
51  \verbatim
52  <patchName>
53  {
54  type flowRateOutletVelocity;
55  volumetricFlowRate 0.2;
56  value uniform (0 0 0);
57  }
58  \endverbatim
59 
60  Example of the boundary condition specification for a mass flow rate:
61  \verbatim
62  <patchName>
63  {
64  type flowRateOutletVelocity;
65  massFlowRate 0.2;
66  rhoOutlet 1.0;
67  value uniform (0 0 0);
68  }
69  \endverbatim
70 
71  The \c flowRate entry is a \c Function1 of time, see Foam::Function1Types.
72 
73 Note
74  - \c rhoOutlet is required for the case of a mass flow rate, where the
75  density field is not available at start-up
76  - The value is positive out of the domain (as an outlet)
77  - May not work correctly for transonic outlets
78  - Strange behaviour with potentialFoam since the U equation is not solved
79 
80 See also
81  Foam::fixedValueFvPatchField
82  Foam::Function1Types
83  Foam::flowRateInletVelocityFvPatchVectorField
84 
85 SourceFiles
86  flowRateOutletVelocityFvPatchVectorField.C
87 
88 \*---------------------------------------------------------------------------*/
89 
90 #ifndef flowRateOutletVelocityFvPatchVectorField_H
91 #define flowRateOutletVelocityFvPatchVectorField_H
92 
94 #include "Function1.H"
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 namespace Foam
99 {
100 
101 /*---------------------------------------------------------------------------*\
102  Class flowRateOutletVelocityFvPatchVectorField Declaration
103 \*---------------------------------------------------------------------------*/
104 
105 class flowRateOutletVelocityFvPatchVectorField
106 :
107  public fixedValueFvPatchVectorField
108 {
109  // Private data
110 
111  //- Outlet integral flow rate
112  autoPtr<Function1<scalar>> flowRate_;
113 
114  //- Is volumetric?
115  bool volumetric_;
116 
117  //- Name of the density field used to normalize the mass flux
118  word rhoName_;
119 
120  //- Rho initialisation value (for start; if value not supplied)
121  scalar rhoOutlet_;
122 
123 
124  // Private member functions
125 
126  //- Update the patch values given the appropriate density type and value
127  template<class RhoType>
128  void updateValues(const RhoType& rho);
130 
131 public:
132 
133  //- Runtime type information
134  TypeName("flowRateOutletVelocity");
135 
136 
137  // Constructors
138 
139  //- Construct from patch and internal field
141  (
142  const fvPatch&,
144  );
145 
146  //- Construct from patch, internal field and dictionary
148  (
149  const fvPatch&,
151  const dictionary&
152  );
153 
154  //- Construct by mapping given
155  // flowRateOutletVelocityFvPatchVectorField
156  // onto a new patch
158  (
160  const fvPatch&,
162  const fvPatchFieldMapper&
163  );
164 
165  //- Construct as copy
167  (
169  );
170 
171  //- Construct and return a clone
172  virtual tmp<fvPatchVectorField> clone() const
173  {
175  (
177  );
178  }
179 
180  //- Construct as copy setting internal field reference
182  (
185  );
186 
187  //- Construct and return a clone setting internal field reference
189  (
191  ) const
192  {
194  (
196  );
197  }
198 
199 
200  // Member functions
201 
202  //- Update the coefficients associated with the patch field
203  virtual void updateCoeffs();
204 
205  //- Write
206  virtual void write(Ostream&) const;
207 };
208 
209 
210 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
211 
212 } // End namespace Foam
214 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
215 
216 #endif
217 
218 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Foam::fvPatchFieldMapper.
virtual tmp< fvPatchVectorField > clone() const
Construct and return a clone.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
TypeName("flowRateOutletVelocity")
Runtime type information.
Velocity outlet boundary condition which corrects the extrapolated velocity to match the specified fl...
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A class for managing temporary objects.
Definition: PtrList.H:53
flowRateOutletVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
Namespace for OpenFOAM.