BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / fvMotionSolver / fvMotionSolvers / velocity / laplacian / velocityLaplacianFvMotionSolver.H
blob774cb960b7e8c15c7718bea5166f25c81791a7e0
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::velocityLaplacianFvMotionSolver
27 Description
28     Mesh motion solver for an fvMesh.  Based on solving the cell-centre
29     Laplacian for the motion velocity.
31 SourceFiles
32     velocityLaplacianFvMotionSolver.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef velocityLaplacianFvMotionSolver_H
37 #define velocityLaplacianFvMotionSolver_H
39 #include "fvMotionSolver.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward class declarations
47 class motionDiffusivity;
49 /*---------------------------------------------------------------------------*\
50               Class velocityLaplacianFvMotionSolver Declaration
51 \*---------------------------------------------------------------------------*/
53 class velocityLaplacianFvMotionSolver
55     public fvMotionSolver
57     // Private data
59         //- Point motion field
60         mutable pointVectorField pointMotionU_;
62         //- Cell-centre motion field
63         mutable volVectorField cellMotionU_;
65         //- Diffusivity used to control the motion
66         autoPtr<motionDiffusivity> diffusivityPtr_;
69     // Private Member Functions
71         //- Disallow default bitwise copy construct
72         velocityLaplacianFvMotionSolver
73         (
74             const velocityLaplacianFvMotionSolver&
75         );
77         //- Disallow default bitwise assignment
78         void operator=(const velocityLaplacianFvMotionSolver&);
81 public:
83     //- Runtime type information
84     TypeName("velocityLaplacian");
87     // Constructors
89         //- Construct from polyMesh and data stream
90         velocityLaplacianFvMotionSolver
91         (
92             const polyMesh&,
93             Istream& msDataUnused
94         );
97     //- Destructor
98     ~velocityLaplacianFvMotionSolver();
101     // Member Functions
103         //- Return reference to the point motion velocity field
104         pointVectorField& pointMotionU()
105         {
106             return pointMotionU_;
107         }
109         //- Return const reference to the point motion velocity field
110         const pointVectorField& pointMotionU() const
111         {
112             return pointMotionU_;
113         }
115         //- Return reference to the cell motion velocity field
116         volVectorField& cellMotionU()
117         {
118             return cellMotionU_;
119         }
121         //- Return const reference to the cell motion velocity field
122         const volVectorField& cellMotionU() const
123         {
124             return cellMotionU_;
125         }
127         //- Return point location obtained from the current motion field
128         virtual tmp<pointField> curPoints() const;
130         //- Solve for motion
131         virtual void solve();
133         //- Update topology
134         virtual void updateMesh(const mapPolyMesh&);
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 } // End namespace Foam
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 #endif
146 // ************************************************************************* //