sixDoFMotion: Adding restraints and constraints to the motion of objects.
[OpenFOAM-1.6.x.git] / src / postProcessing / functionObjects / forces / pointPatchFields / derived / sixDoFRigidBodyMotion / sixDoFRigidBodyMotionConstraint / sixDoFRigidBodyMotionConstraint / sixDoFRigidBodyMotionConstraint.C
blobade362f3885dfaa5e15935b90dd2d100f08dc2b9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 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 \*---------------------------------------------------------------------------*/
27 #include "sixDoFRigidBodyMotionConstraint.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 defineTypeNameAndDebug(Foam::sixDoFRigidBodyMotionConstraint, 0);
33 defineRunTimeSelectionTable(Foam::sixDoFRigidBodyMotionConstraint, dictionary);
35 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
37 Foam::sixDoFRigidBodyMotionConstraint::sixDoFRigidBodyMotionConstraint
39     const dictionary& sDoFRBMCDict
42     sDoFRBMCCoeffs_
43     (
44         sDoFRBMCDict.subDict
45         (
46             word(sDoFRBMCDict.lookup("sixDoFRigidBodyMotionConstraint"))
47           + "Coeffs"
48         )
49     ),
50     tolerance_(readScalar(sDoFRBMCDict.lookup("tolerance"))),
51     relaxationFactor_
52     (
53         sDoFRBMCDict.lookupOrDefault<scalar>("relaxationFactor", 1)
54     )
58 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
60 Foam::sixDoFRigidBodyMotionConstraint::~sixDoFRigidBodyMotionConstraint()
64 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
66 bool Foam::sixDoFRigidBodyMotionConstraint::read
68     const dictionary& sDoFRBMCDict
71     tolerance_ = (readScalar(sDoFRBMCDict.lookup("tolerance")));
73     relaxationFactor_ = sDoFRBMCDict.lookupOrDefault<scalar>
74     (
75         "relaxationFactor",
76         1
77     );
79     sDoFRBMCCoeffs_ = sDoFRBMCDict.subDict(type() + "Coeffs");
81     return true;
85 void Foam::sixDoFRigidBodyMotionConstraint::write(Ostream& os) const
87     os.writeKeyword("tolerance")
88         << tolerance_ << token::END_STATEMENT << nl;
90     os.writeKeyword("relaxationFactor")
91         << relaxationFactor_ << token::END_STATEMENT << nl;
94 // ************************************************************************* //