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-2021 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] | yes |
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;
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 "Function1.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  autoPtr<Function1<scalar>> omega_;
92 
93 
94 public:
95 
96  //- Runtime type information
97  TypeName("rotatingWallVelocity");
98 
99 
100  // Constructors
101 
102  //- Construct from patch and internal field
104  (
105  const fvPatch&,
107  );
108 
109  //- Construct from patch, internal field and dictionary
111  (
112  const fvPatch&,
114  const dictionary&
115  );
116 
117  //- Construct by mapping given rotatingWallVelocityFvPatchVectorField
118  // onto a new patch
120  (
122  const fvPatch&,
124  const fvPatchFieldMapper&
125  );
126 
127  //- Disallow copy without setting internal field reference
129  (
131  ) = delete;
132 
133  //- Copy constructor setting internal field reference
135  (
138  );
139 
140  //- Construct and return a clone setting internal field reference
142  (
144  ) const
145  {
147  (
149  );
150  }
151 
152 
153 
154  // Member Functions
155 
156  // Access functions
157 
158  //- Return the origin of the rotation
159  const vector& origin() const
160  {
161  return origin_;
162  }
163 
164  //- Return the axis of the rotation
165  const vector& axis() const
166  {
167  return axis_;
168  }
169 
170  //- Return non-const access to the origin of the rotation
171  vector& origin()
172  {
173  return origin_;
174  }
175 
176  //- Return non-const access to the axis of the rotation
177  vector& axis()
178  {
179  return axis_;
180  }
181 
182 
183  //- Update the coefficients associated with the patch field
184  virtual void updateCoeffs();
185 
186  //- Write
187  virtual void write(Ostream&) const;
188 };
189 
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
192 
193 } // End namespace Foam
194 
195 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
197 #endif
198 
199 // ************************************************************************* //
rotatingWallVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:63
const vector & origin() const
Return the origin of the rotation.
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
TypeName("rotatingWallVelocity")
Runtime type information.
Condition on velocity for a boundary consisting of a rotating solid of revolution, e.g. cylinder. Calculates a tangential component of velocity from the angular velocity and rotational axis and ensures a zero normal component.
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
const vector & axis() const
Return the axis of the rotation.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
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.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.