1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2010-2011 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
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
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/>.
25 Foam::sixDoFRigidBodyMotionConstraints::fixedPlane
28 sixDoFRigidBodyMotionConstraint. Reference point may only move
34 \*---------------------------------------------------------------------------*/
39 #include "sixDoFRigidBodyMotionConstraint.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace sixDoFRigidBodyMotionConstraints
50 /*---------------------------------------------------------------------------*\
51 Class fixedPlane Declaration
52 \*---------------------------------------------------------------------------*/
56 public sixDoFRigidBodyMotionConstraint
60 //- Plane which the transformed reference point is constrained
67 //- Runtime type information
68 TypeName("fixedPlane");
73 //- Construct from components
76 const dictionary& sDoFRBMCDict
79 //- Construct and return a clone
80 virtual autoPtr<sixDoFRigidBodyMotionConstraint> clone() const
82 return autoPtr<sixDoFRigidBodyMotionConstraint>
90 virtual ~fixedPlane();
95 //- Calculate the constraint position, force and moment.
96 // Global reference frame vectors. Returns boolean stating
97 // whether the constraint been converged to tolerance.
98 virtual bool constrain
100 const sixDoFRigidBodyMotion& motion,
101 const vector& existingConstraintForce,
102 const vector& existingConstraintMoment,
104 vector& constraintPosition,
105 vector& constraintForceIncrement,
106 vector& constraintMomentIncrement
109 //- Update properties from given dictionary
110 virtual bool read(const dictionary& sDoFRBMCCoeff);
113 virtual void write(Ostream&) const;
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace solidBodyMotionFunctions
120 } // End namespace Foam
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 // ************************************************************************* //