sixDoFMotion: Adding restraints and constraints to the motion of objects.
[OpenFOAM-1.6.x.git] / src / postProcessing / functionObjects / forces / pointPatchFields / derived / sixDoFRigidBodyMotion / sixDoFRigidBodyMotionState.C
blobefdb0c5c223784804db90737afa894c9db85f070
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2009-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 "sixDoFRigidBodyMotionState.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::sixDoFRigidBodyMotionState::sixDoFRigidBodyMotionState()
33     centreOfMass_(vector::zero),
34     Q_(I),
35     v_(vector::zero),
36     a_(vector::zero),
37     pi_(vector::zero),
38     tau_(vector::zero)
42 Foam::sixDoFRigidBodyMotionState::sixDoFRigidBodyMotionState
44     const point& centreOfMass,
45     const tensor& Q,
46     const vector& v,
47     const vector& a,
48     const vector& pi,
49     const vector& tau
52     centreOfMass_(centreOfMass),
53     Q_(Q),
54     v_(v),
55     a_(a),
56     pi_(pi),
57     tau_(tau)
61 Foam::sixDoFRigidBodyMotionState::sixDoFRigidBodyMotionState
63     const dictionary& dict
66     centreOfMass_(dict.lookup("centreOfMass")),
67     Q_(dict.lookupOrDefault("orientation", tensor(I))),
68     v_(dict.lookupOrDefault("velocity", vector::zero)),
69     a_(dict.lookupOrDefault("acceleration", vector::zero)),
70     pi_(dict.lookupOrDefault("angularMomentum", vector::zero)),
71     tau_(dict.lookupOrDefault("torque", vector::zero))
75 Foam::sixDoFRigidBodyMotionState::sixDoFRigidBodyMotionState
77     const sixDoFRigidBodyMotionState& sDoFRBMS
80     centreOfMass_(sDoFRBMS.centreOfMass()),
81     Q_(sDoFRBMS.Q()),
82     v_(sDoFRBMS.v()),
83     a_(sDoFRBMS.a()),
84     pi_(sDoFRBMS.pi()),
85     tau_(sDoFRBMS.tau())
89 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
91 Foam::sixDoFRigidBodyMotionState::~sixDoFRigidBodyMotionState()
95 // ************************************************************************* //