oscillatingRotatingMotion.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 
28 #include "mathematicalConstants.H"
29 
30 using namespace Foam::constant::mathematical;
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 namespace solidBodyMotionFunctions
37 {
38  defineTypeNameAndDebug(oscillatingRotatingMotion, 0);
40  (
41  solidBodyMotionFunction,
42  oscillatingRotatingMotion,
43  dictionary
44  );
45 }
46 }
47 
48 
49 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
50 
53 (
54  const dictionary& SBMFCoeffs,
55  const Time& runTime
56 )
57 :
58  solidBodyMotionFunction(SBMFCoeffs, runTime)
59 {
60  read(SBMFCoeffs);
61 }
62 
63 
64 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
65 
68 {}
69 
70 
71 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
72 
76 {
77  scalar t = time_.value();
78 
79  vector eulerAngles = amplitude_*sin(omega_*t);
80 
81  // Convert the rotational motion from deg to rad
82  eulerAngles *= pi/180.0;
83 
84  quaternion R(eulerAngles.x(), eulerAngles.y(), eulerAngles.z());
85  septernion TR(septernion(origin_)*R*septernion(-origin_));
86 
87  Info<< "solidBodyMotionFunctions::oscillatingRotatingMotion::"
88  << "transformation(): "
89  << "Time = " << t << " transformation: " << TR << endl;
90 
91  return TR;
92 }
93 
94 
96 (
97  const dictionary& SBMFCoeffs
98 )
99 {
100  solidBodyMotionFunction::read(SBMFCoeffs);
101 
102  SBMFCoeffs_.lookup("origin") >> origin_;
103  SBMFCoeffs_.lookup("amplitude") >> amplitude_;
104  SBMFCoeffs_.lookup("omega") >> omega_;
105 
106  return true;
107 }
108 
109 // ************************************************************************* //
mathematicalConstants.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::addToRunTimeSelectionTable
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
Foam::sin
dimensionedScalar sin(const dimensionedScalar &ds)
Definition: dimensionedScalar.C:255
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::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::oscillatingRotatingMotion::read
virtual bool read(const dictionary &SBMFCoeffs)
Update properties from given dictionary.
Definition: oscillatingRotatingMotion.C:96
Foam::solidBodyMotionFunction
Base class for defining solid-body motions.
Definition: solidBodyMotionFunction.H:60
Foam::Vector::x
const Cmpt & x() const
Definition: VectorI.H:65
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::Vector::z
const Cmpt & z() const
Definition: VectorI.H:77
oscillatingRotatingMotion.H
Foam::solidBodyMotionFunction::read
virtual bool read(const dictionary &SBMFCoeffs)=0
Update properties from given dictionary.
Definition: solidBodyMotionFunction.C:65
Foam::solidBodyMotionFunctions::oscillatingRotatingMotion::~oscillatingRotatingMotion
virtual ~oscillatingRotatingMotion()
Destructor.
Definition: oscillatingRotatingMotion.C:67
Foam::constant::mathematical
mathematical constants.
Foam::Vector< scalar >
Foam::constant::mathematical::pi
const scalar pi(M_PI)
Foam::Vector::y
const Cmpt & y() const
Definition: VectorI.H:71
Foam::solidBodyMotionFunctions::oscillatingRotatingMotion::transformation
virtual septernion transformation() const
Return the solid-body motion transformation septernion.
Definition: oscillatingRotatingMotion.C:75
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)
Foam::solidBodyMotionFunctions::oscillatingRotatingMotion::oscillatingRotatingMotion
oscillatingRotatingMotion(const oscillatingRotatingMotion &)
Disallow copy construct.