linearMotion.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 | Copyright (C) 2011-2015 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "linearMotion.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace solidBodyMotionFunctions
34 {
35  defineTypeNameAndDebug(linearMotion, 0);
37  (
38  solidBodyMotionFunction,
39  linearMotion,
40  dictionary
41  );
42 }
43 }
44 
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
49 (
50  const dictionary& SBMFCoeffs,
51  const Time& runTime
52 )
53 :
54  solidBodyMotionFunction(SBMFCoeffs, runTime)
55 {
56  read(SBMFCoeffs);
57 }
58 
59 
60 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
61 
63 {}
64 
65 
66 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
67 
70 {
71  scalar t = time_.value();
72 
73  // Translation of centre of gravity with constant velocity
74  const vector displacement = velocity_*t;
75 
76  quaternion R(0, 0, 0);
77  septernion TR(septernion(displacement)*R);
78 
79  Info<< "solidBodyMotionFunctions::linearMotion::transformation(): "
80  << "Time = " << t << " transformation: " << TR << endl;
81 
82  return TR;
83 }
84 
85 
87 (
88  const dictionary& SBMFCoeffs
89 )
90 {
92 
93  SBMFCoeffs_.lookup("velocity") >> velocity_;
94 
95  return true;
96 }
97 
98 // ************************************************************************* //
linearMotion.H
Foam::Time
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
Foam::septernion
Septernion class used to perform translations and rotations in 3D space.
Definition: septernion.H:64
Foam::solidBodyMotionFunctions::addToRunTimeSelectionTable
addToRunTimeSelectionTable(solidBodyMotionFunction, axisRotationMotion, dictionary)
Foam::read
bool read(const char *, int32_t &)
Definition: int32IO.C:87
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Foam::solidBodyMotionFunctions::linearMotion::~linearMotion
virtual ~linearMotion()
Destructor.
Definition: linearMotion.C:62
Foam::quaternion
Quaternion class used to perform rotations in 3D space.
Definition: quaternion.H:60
R
#define R(A, B, C, D, E, F, K, M)
Foam::Info
messageStream Info
Foam::solidBodyMotionFunctions::linearMotion::read
virtual bool read(const dictionary &SBMFCoeffs)
Update properties from given dictionary.
Definition: linearMotion.C:87
Foam::solidBodyMotionFunction
Base class for defining solid-body motions.
Definition: solidBodyMotionFunction.H:60
Foam::solidBodyMotionFunctions::defineTypeNameAndDebug
defineTypeNameAndDebug(axisRotationMotion, 0)
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::solidBodyMotionFunction::read
virtual bool read(const dictionary &SBMFCoeffs)=0
Update properties from given dictionary.
Definition: solidBodyMotionFunction.C:65
Foam::solidBodyMotionFunctions::linearMotion::transformation
virtual septernion transformation() const
Return the solid-body motion transformation septernion.
Definition: linearMotion.C:69
Foam::Vector< scalar >
Foam::solidBodyMotionFunctions::linearMotion::linearMotion
linearMotion(const linearMotion &)
Disallow copy construct.