immersedBoundarySolidBodyMotionFvMesh.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 held by original author
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 the
13  Free Software Foundation; either version 2 of the License, or (at your
14  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, write to the Free Software Foundation,
23  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 
25 Class
26  Foam::immersedBoundarySolidBodyMotionFvMesh
27 
28 Description
29  Solid-body motion of the immersed boundary mesh specified by a
30  run-time selectable motion function for each immersed boundary surface
31 
32 SourceFiles
33  immersedBoundarySolidBodyMotionFvMesh.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef immersedBoundarySolidBodyMotionFvMesh_H
38 #define immersedBoundarySolidBodyMotionFvMesh_H
39 
40 #include "dynamicFvMesh.H"
41 #include "dictionary.H"
42 #include "movingImmersedBoundary.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class immersedBoundarySolidBodyMotionFvMesh Declaration
51 \*---------------------------------------------------------------------------*/
52 
54 :
55  public dynamicFvMesh
56 {
57  // Private data
58 
59  //- Dictionary of motion control parameters
61 
62  //- Immersed boundary motion control function
64 
65 
66  // Private Member Functions
67 
68  //- Disallow default bitwise copy construct
70  (
72  );
73 
74  //- Disallow default bitwise assignment
75  void operator=
76  (
78  );
79 
80 
81 public:
82 
83  //- Runtime type information
84  TypeName("immersedBoundarySolidBodyMotionFvMesh");
85 
86 
87  // Constructors
88 
89  //- Construct from IOobject
91 
92 
93  // Destructor
95 
96 
97  // Member Functions
98 
99  //- Update the mesh for both mesh motion and topology change
100  virtual bool update();
101 };
102 
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 } // End namespace Foam
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 #endif
111 
112 // ************************************************************************* //
Foam::IOobject
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
Foam::immersedBoundarySolidBodyMotionFvMesh::update
virtual bool update()
Update the mesh for both mesh motion and topology change.
Definition: immersedBoundarySolidBodyMotionFvMesh.C:102
Foam::dynamicFvMesh
Abstract base class for geometry and/or topology changing fvMesh.
Definition: dynamicFvMesh.H:51
Foam::immersedBoundarySolidBodyMotionFvMesh::ibMotions_
PtrList< movingImmersedBoundary > ibMotions_
Immersed boundary motion control function.
Definition: immersedBoundarySolidBodyMotionFvMesh.H:59
movingImmersedBoundary.H
Foam::PtrList
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:61
Foam::immersedBoundarySolidBodyMotionFvMesh
Definition: immersedBoundarySolidBodyMotionFvMesh.H:49
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam::immersedBoundarySolidBodyMotionFvMesh::TypeName
TypeName("immersedBoundarySolidBodyMotionFvMesh")
Runtime type information.
Foam::immersedBoundarySolidBodyMotionFvMesh::~immersedBoundarySolidBodyMotionFvMesh
virtual ~immersedBoundarySolidBodyMotionFvMesh()
Definition: immersedBoundarySolidBodyMotionFvMesh.C:96
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::immersedBoundarySolidBodyMotionFvMesh::immersedBoundarySolidBodyMotionFvMesh
immersedBoundarySolidBodyMotionFvMesh(const immersedBoundarySolidBodyMotionFvMesh &)
Disallow default bitwise copy construct.
dictionary.H
dynamicFvMesh.H
Foam::immersedBoundarySolidBodyMotionFvMesh::dynamicMeshCoeffs_
dictionary dynamicMeshCoeffs_
Dictionary of motion control parameters.
Definition: immersedBoundarySolidBodyMotionFvMesh.H:56