BUGFIX: Illegal use of uninitialised value (backport)
[foam-extend-3.2.git] / src / dynamicMesh / dynamicFvMesh / dynamicBoxFvMesh / dynamicBoxFvMesh.H
blobd1304837e02773555895d713944d2ad646ed8a94
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.
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.
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.
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
25 Class
26     dynamicBoxFvMesh
28 Description
29     Automatic simplified mesh motion for "box-in-mesh" cases.  Here,
30     a direction of motion is defined, together with motion amplitude
31     and frequency.  The domain is separated into three parts, where
32     the middle part moves according to the prescribed motion law.
33     Parts of the mesh before and after the obstacle are scaled.
35 SourceFiles
36     dynamicBoxFvMesh.C
38 Author
39     Hrvoje Jasak, Wikki Ltd.  All rights reserved
41 \*---------------------------------------------------------------------------*/
43 #ifndef dynamicBoxFvMesh_H
44 #define dynamicBoxFvMesh_H
46 #include "dynamicFvMesh.H"
47 #include "dictionary.H"
48 #include "pointIOField.H"
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 namespace Foam
55 /*---------------------------------------------------------------------------*\
56                            Class dynamicBoxFvMesh Declaration
57 \*---------------------------------------------------------------------------*/
59 class dynamicBoxFvMesh
61     public dynamicFvMesh
63     // Private data
65         //- Moving mesh dictionary
66         dictionary movingMeshCoeffs_;
68         //- Motion box and direction
69         vector splitDirection_;
71         //- Left edge of box
72         vector leftEdge_;
74         //- Right edge of box
75         vector rightEdge_;
77         //- Motion amplitude
78         vector amplitude_;
80         //- Motion frequency
81         scalar frequency_;
83         //- Stationary point location
84         pointIOField stationaryPoints_;
86         //- Vertex markup field
87         scalarField motionMarkup_;
90     // Private Member Functions
92         //- Disallow default bitwise copy construct
93         dynamicBoxFvMesh(const dynamicBoxFvMesh&);
95         //- Disallow default bitwise assignment
96         void operator=(const dynamicBoxFvMesh&);
99 public:
101     //- Runtime type information
102     TypeName("dynamicBoxFvMesh");
105     // Constructors
107         //- Construct from IOobject
108         dynamicBoxFvMesh(const IOobject& io);
111     // Destructor
113         virtual ~dynamicBoxFvMesh();
116     // Member Functions
118         //- Update the mesh for both mesh motion and topology change
119         virtual bool update();
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************************************************************* //