Merge remote-tracking branch 'origin/nr/multiSolverFix' into nextRelease
[foam-extend-3.2.git] / src / dynamicMesh / meshMotion / RBFMotionSolver / RBFMotionSolver.H
blob07e5e1e5337e62761d6a80905e70cbe339a0cc66
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     RBFMotionSolver
28 Description
29     Radial basis function motion solver
31 Author
32     Frank Bos, TU Delft.  All rights reserved.
34 SourceFiles
35     RBFMotionSolver.C
37 \*---------------------------------------------------------------------------*/
39 #ifndef RBFMotionSolver_H
40 #define RBFMotionSolver_H
42 #include "motionSolver.H"
43 #include "polyMesh.H"
44 #include "RBFInterpolation.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 /*---------------------------------------------------------------------------*\
52                       Class RBFMotionSolver Declaration
53 \*---------------------------------------------------------------------------*/
55 class RBFMotionSolver
57     public motionSolver
59     // Private data
61         //- Moving patch names
62         wordList movingPatches_;
64         //- Static patch names
65         wordList staticPatches_;
67         //- Coarsening ratio
68         label coarseningRatio_;
70         //- Include zero motion of static patches in RBF interpolation
71         Switch includeStaticPatches_;
73         //- Frozen interpolation
74         Switch frozenInterpolation_;
76         //- Moving point IDs
77         labelList movingIDs_;
79         //- Moving points on the boundary
80         mutable vectorField movingPoints_;
82         //- Static point IDs
83         labelList staticIDs_;
85         //- Control point IDs
86         labelList controlIDs_;
88         //- Control points on the boundary
89         mutable vectorField controlPoints_;
91         //- Internal point IDs
92         labelList internalIDs_;
94         //- Internal points
95         vectorField internalPoints_;
97         //- Prescribed motion on control points
98         vectorField motion_;
100         //- RBF interpolation
101         RBFInterpolation interpolation_;
104     // Private Member Functions
106         //- Disallow default bitwise copy construct
107         RBFMotionSolver(const RBFMotionSolver&);
109         //- Disallow default bitwise assignment
110         void operator=(const RBFMotionSolver&);
113         //- Make control point IDs.  Constructor helper
114         void makeControlIDs();
116         //- Set location of points
117         void setMovingPoints() const;
120 public:
122     //- Runtime type information
123     TypeName("RBFMotionSolver");
126     // Constructors
128         //- Construct from polyMesh
129         RBFMotionSolver
130         (
131             const polyMesh& mesh,
132             Istream& msData
133         );
136     // Destructor
138         virtual ~RBFMotionSolver();
141     // Member Functions
143         //- Return moving point indices in mesh points
144         const labelList& movingIDs() const
145         {
146             return movingIDs_;
147         }
149         //- Return moving points
150         const vectorField& movingPoints() const;
152         //- Set motion of moving points
153         void setMotion(const vectorField&);
156         //- Return point location obtained from the current motion field
157         virtual tmp<pointField> curPoints() const;
159         //- Solve for motion
160         virtual void solve();
162         //- Update the mesh corresponding to given map
163         virtual void updateMesh(const mapPolyMesh&);
167 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
169 } // End namespace Foam
171 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 #endif
175 // ************************************************************************* //