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