componentVelocityMotionSolver.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) 2012-2013 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::componentVelocityMotionSolver
26 
27 Description
28  Virtual base class for velocity motion solver
29 
30  The boundary displacement is set as a boundary condition
31  on the pointMotionUX pointScalarField.
32 
33 SourceFiles
34  componentVelocityMotionSolver.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef componentVelocityMotionSolver_H
39 #define componentVelocityMotionSolver_H
40 
41 #include "motionSolver.H"
42 #include "pointFields.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 class mapPolyMesh;
50 
51 /*---------------------------------------------------------------------------*\
52  Class componentVelocityMotionSolver Declaration
53 \*---------------------------------------------------------------------------*/
54 
56 :
57  public motionSolver
58 {
59 protected:
60 
61  // Protected data
62 
63  //- The component name to solve for
65 
66  //- The component to solve for
68 
69  //- Point motion field
71 
72 private:
73 
74  // Private Member Functions
75 
76  //- Return the component corresponding to the given component name
77  direction cmpt(const word& cmptName) const;
78 
79  //- Disallow default bitwise copy construct
81  (
83  );
84 
85  //- Disallow default bitwise assignment
86  void operator=(const componentVelocityMotionSolver&);
87 
88 public:
89 
90  //- Runtime type information
91  TypeName("componentVelocityMotionSolver");
92 
93 
94  // Constructors
95 
96  //- Construct from mesh and dictionary
98  (
99  const polyMesh&,
100  const IOdictionary&,
101  const word& type
102  );
103 
104 
105  //- Destructor
107 
108 
109  // Member Functions
110 
111  //- Non-const access to the pointMotionU in order to allow changes
112  // to the boundary motion
114  {
115  return pointMotionU_;
116  }
117 
118  //- Update local data for geometry changes
119  virtual void movePoints(const pointField&);
120 
121  //- Update local data for topology changes
122  virtual void updateMesh(const mapPolyMesh&);
123 };
124 
125 
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 
128 } // End namespace Foam
129 
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 
132 #endif
133 
134 // ************************************************************************* //
uint8_t direction
Definition: direction.H:46
Virtual base class for mesh motion solver.
Definition: motionSolver.H:53
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
Virtual base class for velocity motion solver.
TypeName("componentVelocityMotionSolver")
Runtime type information.
A class for handling words, derived from string.
Definition: word.H:59
virtual void updateMesh(const mapPolyMesh &)
Update local data for topology changes.
virtual void movePoints(const pointField &)
Update local data for geometry changes.
word cmptName_
The component name to solve for.
pointScalarField pointMotionU_
Point motion field.
pointScalarField & pointMotionU()
Non-const access to the pointMotionU in order to allow changes.
fileName::Type type(const fileName &)
Return the file type: DIRECTORY or FILE.
Definition: POSIX.C:461
direction cmpt_
The component to solve for.
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
Namespace for OpenFOAM.