Loading...
Searching...
No Matches
symplectic.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2016 OpenFOAM Foundation
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
28#include "symplectic.H"
30
31// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33namespace Foam
34{
35namespace RBD
36{
37namespace rigidBodySolvers
38{
42}
43}
44
45
46// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47
49(
50 rigidBodyMotion& body,
51 const dictionary& dict
52)
54 rigidBodySolver(body)
55{}
56
57
58// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
61{}
62
63
64// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
65
67(
68 const scalarField& tau,
69 const Field<spatialVector>& fx
70)
71{
72 // First simplectic step:
73 // Half-step for linear and angular velocities
74 // Update position and orientation
75 qDot() = qDot0() + 0.5*deltaT0()*qDdot();
76 q() = q0() + deltaT()*qDot();
77
78 // Update joints from new locations (q, q0)
79 correctQuaternionJoints();
80
81 // Update the body-state prior to the evaluation of the restraints
82 model_.forwardDynamicsCorrection(state());
83
84 // Accumulate the restraint forces
85 scalarField rtau(tau);
87 model_.applyRestraints(rtau, rfx, state());
88
89 // Calculate the body acceleration for the given state
90 // and restraint forces
91 model_.forwardDynamics(state(), rtau, rfx);
92
93 // Second simplectic step:
94 // Complete update of linear and angular velocities
95 qDot() += 0.5*deltaT()*qDdot();
96}
97
98
99// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
Generic templated field type that is much like a Foam::List except that it is expected to hold numeri...
Definition Field.H:172
Six degree of freedom motion for a rigid body.
void correctQuaternionJoints()
Correct the quaternion joints based on the current change in q.
rigidBodyMotion & model_
The rigid-body model.
scalarField & qDot()
Return the current joint quaternion.
const scalarField & qDot0() const
Return the current joint quaternion.
scalar deltaT0() const
Return the previous time-step.
rigidBodyModelState & state()
Return the motion state.
scalar deltaT() const
Return the current time-step.
rigidBodySolver(rigidBodyMotion &body)
const scalarField & q0() const
Return the current joint position and orientation.
scalarField & q()
Return the current joint position and orientation.
scalarField & qDdot()
Return the current joint acceleration.
Symplectic 2nd-order explicit time-integrator for rigid-body motion.
Definition symplectic.H:77
virtual void solve(const scalarField &tau, const Field< spatialVector > &fx)
Integrate the rigid-body motion for one time-step.
Definition symplectic.C:60
symplectic(rigidBodyMotion &body, const dictionary &dict)
Construct for the given body from dictionary.
Definition symplectic.C:42
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
Namespace for OpenFOAM.
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
dictionary dict