Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / postProcessing / functionObjects / forces / pointPatchFields / derived / sixDoFRigidBodyMotion / sixDoFRigidBodyMotionConstraint / fixedPoint / fixedPoint.H
blobde36a7714bc2d56259c0f7d026904a11e6cb3bc1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2010-2011 OpenCFD Ltd.
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::sixDoFRigidBodyMotionConstraints::fixedPoint
27 Description
28     sixDoFRigidBodyMotionConstraint.  Point fixed in space.
30 SourceFiles
31     fixedPoint.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef fixedPoint_H
36 #define fixedPoint_H
38 #include "sixDoFRigidBodyMotionConstraint.H"
39 #include "point.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 namespace sixDoFRigidBodyMotionConstraints
49 /*---------------------------------------------------------------------------*\
50                            Class fixedPoint Declaration
51 \*---------------------------------------------------------------------------*/
53 class fixedPoint
55     public sixDoFRigidBodyMotionConstraint
57     // Private data
59         //- Point which is rigidly attached to the body and constrains
60         //  it so that this point remains fixed.  This serves as the
61         //  reference point for displacements as well as the target
62         //  position.
63         point fixedPoint_;
66 public:
68     //- Runtime type information
69     TypeName("fixedPoint");
72     // Constructors
74         //- Construct from components
75         fixedPoint
76         (
77             const dictionary& sDoFRBMCDict
78         );
80         //- Construct and return a clone
81         virtual autoPtr<sixDoFRigidBodyMotionConstraint> clone() const
82         {
83             return autoPtr<sixDoFRigidBodyMotionConstraint>
84             (
85                 new fixedPoint(*this)
86             );
87         }
90     //- Destructor
91     virtual ~fixedPoint();
94     // Member Functions
96         //- Calculate the constraint position, force and moment.
97         //  Global reference frame vectors.  Returns boolean stating
98         //  whether the constraint been converged to tolerance.
99         virtual bool constrain
100         (
101             const sixDoFRigidBodyMotion& motion,
102             const vector& existingConstraintForce,
103             const vector& existingConstraintMoment,
104             scalar deltaT,
105             vector& constraintPosition,
106             vector& constraintForceIncrement,
107             vector& constraintMomentIncrement
108         ) const;
110         //- Update properties from given dictionary
111         virtual bool read(const dictionary& sDoFRBMCCoeff);
113         //- Write
114         virtual void write(Ostream&) const;
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 } // End namespace solidBodyMotionFunctions
121 } // End namespace Foam
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 #endif
127 // ************************************************************************* //