rotatingTotalPressureFvPatchScalarField.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 | Copyright (C) 2011-2016 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::rotatingTotalPressureFvPatchScalarField
26 
27 Group
28  grpInletBoundaryConditions grpOutletBoundaryConditions
29 
30 Description
31  This boundary condition provides a total pressure condition for patches
32  in a rotating frame.
33 
34 Usage
35  \table
36  Property | Description | Required | Default value
37  U | velocity field name | no | U
38  phi | flux field name | no | phi
39  rho | density field name | no | none
40  psi | compressibility field name | no | none
41  gamma | ratio of specific heats (Cp/Cv) | yes |
42  p0 | static pressure reference | yes |
43  omega | angular velocty of the frame [rad/s] | yes |
44  \endtable
45 
46  Example of the boundary condition specification:
47  \verbatim
48  <patchName>
49  {
50  type rotatingTotalPressure;
51  U U;
52  phi phi;
53  rho rho;
54  psi psi;
55  gamma 1.4;
56  p0 uniform 1e5;
57  omega 100;
58  }
59  \endverbatim
60 
61  The \c omega entry is a Function1 type, able to describe time varying
62  functions.
63 
64 See also
65  Foam::totalPressureFvPatchScalarField
66  Foam::Function1Types
67 
68 SourceFiles
69  rotatingTotalPressureFvPatchScalarField.C
70 
71 \*---------------------------------------------------------------------------*/
72 
73 #ifndef rotatingTotalPressureFvPatchScalarField_H
74 #define rotatingTotalPressureFvPatchScalarField_H
75 
77 #include "Function1.H"
78 
79 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
80 
81 namespace Foam
82 {
83 
84 /*---------------------------------------------------------------------------*\
85  Class rotatingTotalPressureFvPatchScalarField Declaration
86 \*---------------------------------------------------------------------------*/
87 
88 class rotatingTotalPressureFvPatchScalarField
89 :
90  public totalPressureFvPatchScalarField
91 {
92  // Private data
93 
94  //- Angular velocity of the frame
95  autoPtr<Function1<vector>> omega_;
96 
97 
98 public:
99 
100  //- Runtime type information
101  TypeName("rotatingTotalPressure");
102 
103 
104  // Constructors
105 
106  //- Construct from patch and internal field
108  (
109  const fvPatch&,
110  const DimensionedField<scalar, volMesh>&
111  );
112 
113  //- Construct from patch, internal field and dictionary
115  (
116  const fvPatch&,
117  const DimensionedField<scalar, volMesh>&,
118  const dictionary&
119  );
120 
121  //- Construct by mapping given rotatingTotalPressureFvPatchScalarField
122  // onto a new patch
124  (
126  const fvPatch&,
128  const fvPatchFieldMapper&
129  );
130 
131  //- Construct as copy
133  (
135  );
136 
137  //- Construct and return a clone
138  virtual tmp<fvPatchScalarField> clone() const
139  {
141  (
143  );
144  }
145 
146  //- Construct as copy setting internal field reference
148  (
151  );
152 
153  //- Construct and return a clone setting internal field reference
155  (
157  ) const
158  {
160  (
162  );
163  }
164 
165 
166  // Member functions
167 
168  // Evaluation functions
169 
170  //- Update the coefficients associated with the patch field
171  virtual void updateCoeffs();
172 
173 
174  //- Write
175  virtual void write(Ostream&) const;
176 };
178 
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 
181 } // End namespace Foam
182 
183 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
184 
185 #endif
186 
187 // ************************************************************************* //
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
This boundary condition provides a total pressure condition for patches in a rotating frame...
TypeName("rotatingTotalPressure")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:54
Namespace for OpenFOAM.
rotatingTotalPressureFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.