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-2024 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 | no |
39  \endtable
40 
41  Example of the boundary condition specification:
42  \verbatim
43  <patchName>
44  {
45  type rotatingWallVelocity;
46  origin (0 0 0);
47  axis (0 0 1);
48  omega 100 [rpm];
49  }
50  \endverbatim
51 
52  The \c omega entry is a Function1 of time, see Foam::Function1s.
53 
54 See also
55  Foam::fixedValueFvPatchField
56  Foam::Function1s
57 
58 SourceFiles
59  rotatingWallVelocityFvPatchVectorField.C
60 
61 \*---------------------------------------------------------------------------*/
62 
63 #ifndef rotatingWallVelocityFvPatchVectorField_H
64 #define rotatingWallVelocityFvPatchVectorField_H
65 
67 #include "omega1.H"
68 
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71 namespace Foam
72 {
73 
74 /*---------------------------------------------------------------------------*\
75  Class rotatingWallVelocityFvPatchVectorField Declaration
76 \*---------------------------------------------------------------------------*/
77 
78 class rotatingWallVelocityFvPatchVectorField
79 :
80  public fixedValueFvPatchVectorField
81 {
82  // Private Data
83 
84  //- Origin of the rotation
85  vector origin_;
86 
87  //- Axis of the rotation
88  vector axis_;
89 
90  //- Rotational speed
91  Function1s::omega omega_;
92 
93 
94 public:
95 
96  //- Runtime type information
97  TypeName("rotatingWallVelocity");
98 
99 
100  // Constructors
101 
102  //- Construct from patch, internal field and dictionary
104  (
105  const fvPatch&,
107  const dictionary&
108  );
109 
110  //- Construct by mapping given rotatingWallVelocityFvPatchVectorField
111  // onto a new patch
113  (
115  const fvPatch&,
117  const fieldMapper&
118  );
119 
120  //- Disallow copy without setting internal field reference
122  (
124  ) = delete;
125 
126  //- Copy constructor setting internal field reference
128  (
131  );
132 
133  //- Construct and return a clone setting internal field reference
135  (
137  ) const
138  {
140  (
142  );
143  }
144 
145 
146 
147  // Member Functions
148 
149  //- Update the coefficients associated with the patch field
150  virtual void updateCoeffs();
151 
152  //- Write
153  virtual void write(Ostream&) const;
154 };
155 
156 
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
158 
159 } // End namespace Foam
160 
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 
163 #endif
164 
165 // ************************************************************************* //
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:162
Abstract base class for field mapping.
Definition: fieldMapper.H:48
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