rotatingWallVelocityFvPatchVectorField.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-2023 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::rotatingWallVelocityFvPatchVectorField
26 
27 Description
28  Condition on velocity for a boundary consisting of a rotating solid of
29  revolution, e.g. cylinder. Calculates a tangential component of velocity
30  from the angular velocity and rotational axis and ensures a zero normal
31  component.
32 
33 Usage
34  \table
35  Property | Description | Required | Default value
36  origin | origin of rotation in Cartesian co-ordinates | yes|
37  axis | axis of rotation | yes |
38  omega | angular velocity of the frame [rad/s] | no |
39  rpm | angular velocity of the frame [rpm] | no |
40  \endtable
41 
42  Example of the boundary condition specification:
43  \verbatim
44  <patchName>
45  {
46  type rotatingWallVelocity;
47  origin (0 0 0);
48  axis (0 0 1);
49  rpm 100;
50  }
51  \endverbatim
52 
53  The \c omega or \c rpm entries are Function1 of time, see Foam::Function1s.
54 
55 See also
56  Foam::fixedValueFvPatchField
57  Foam::Function1s
58 
59 SourceFiles
60  rotatingWallVelocityFvPatchVectorField.C
61 
62 \*---------------------------------------------------------------------------*/
63 
64 #ifndef rotatingWallVelocityFvPatchVectorField_H
65 #define rotatingWallVelocityFvPatchVectorField_H
66 
68 #include "omega.H"
69 
70 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
71 
72 namespace Foam
73 {
74 
75 /*---------------------------------------------------------------------------*\
76  Class rotatingWallVelocityFvPatchVectorField Declaration
77 \*---------------------------------------------------------------------------*/
78 
79 class rotatingWallVelocityFvPatchVectorField
80 :
81  public fixedValueFvPatchVectorField
82 {
83  // Private Data
84 
85  //- Origin of the rotation
86  vector origin_;
87 
88  //- Axis of the rotation
89  vector axis_;
90 
91  //- Rotational speed
92  Function1s::omega omega_;
93 
94 
95 public:
96 
97  //- Runtime type information
98  TypeName("rotatingWallVelocity");
99 
100 
101  // Constructors
102 
103  //- Construct from patch, internal field and dictionary
105  (
106  const fvPatch&,
108  const dictionary&
109  );
110 
111  //- Construct by mapping given rotatingWallVelocityFvPatchVectorField
112  // onto a new patch
114  (
116  const fvPatch&,
118  const fvPatchFieldMapper&
119  );
120 
121  //- Disallow copy without setting internal field reference
123  (
125  ) = delete;
126 
127  //- Copy constructor setting internal field reference
129  (
132  );
133 
134  //- Construct and return a clone setting internal field reference
136  (
138  ) const
139  {
141  (
143  );
144  }
145 
146 
147 
148  // Member Functions
149 
150  //- Update the coefficients associated with the patch field
151  virtual void updateCoeffs();
152 
153  //- Write
154  virtual void write(Ostream&) const;
155 };
156 
157 
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159 
160 } // End namespace Foam
161 
162 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
163 
164 #endif
165 
166 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Foam::fvPatchFieldMapper.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Condition on velocity for a boundary consisting of a rotating solid of revolution,...
virtual tmp< fvPatchVectorField > clone(const DimensionedField< vector, volMesh > &iF) const
Construct and return a clone setting internal field reference.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("rotatingWallVelocity")
Runtime type information.
rotatingWallVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
A class for managing temporary objects.
Definition: tmp.H:55
const scalar omega
Namespace for OpenFOAM.
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49