rotatingMotion.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) 2011-2016 OpenFOAM Foundation
9  Copyright (C) 2020-2021 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "rotatingMotion.H"
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 namespace solidBodyMotionFunctions
37 {
38  defineTypeNameAndDebug(rotatingMotion, 0);
40  (
41  solidBodyMotionFunction,
42  rotatingMotion,
43  dictionary
44  );
45 }
46 }
47 
48 
49 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
50 
51 Foam::solidBodyMotionFunctions::rotatingMotion::rotatingMotion
52 (
53  const dictionary& SBMFCoeffs,
54  const Time& runTime
55 )
56 :
57  solidBodyMotionFunction(SBMFCoeffs, runTime),
58  origin_(SBMFCoeffs_.get<vector>("origin")),
59  axis_(SBMFCoeffs_.get<vector>("axis")),
60  omega_(Function1<scalar>::New("omega", SBMFCoeffs_, &runTime))
61 {}
62 
63 
64 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
65 
68 {
69  scalar t = time_.value();
70 
71  // Rotation around axis
72  scalar angle = omega_->integrate(0, t);
73 
74  quaternion R(axis_, angle);
75  septernion TR(septernion(-origin_)*R*septernion(origin_));
76 
77  DebugInFunction << "Time = " << t << " transformation: " << TR << endl;
78 
79  return TR;
80 }
81 
82 
84 (
85  const dictionary& SBMFCoeffs
86 )
87 {
89 
90  omega_.reset
91  (
92  Function1<scalar>::New("omega", SBMFCoeffs_, &time_)
93  );
94 
95  return true;
96 }
97 
98 
99 // ************************************************************************* //
runTime
engineTime & runTime
Definition: createEngineTime.H:13
Foam::Time
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:73
Foam::septernion
Septernion class used to perform translations and rotations in 3D space.
Definition: septernion.H:66
Foam::solidBodyMotionFunctions::addToRunTimeSelectionTable
addToRunTimeSelectionTable(solidBodyMotionFunction, axisRotationMotion, dictionary)
Foam::solidBodyMotionFunctions::rotatingMotion::transformation
virtual septernion transformation() const
Return the solid-body motion transformation septernion.
Definition: rotatingMotion.C:67
rotatingMotion.H
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:369
Foam::dimensioned::value
const Type & value() const
Return const reference to value.
Definition: dimensionedType.C:434
Foam::Function1
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
Definition: propellerInfo.H:291
Foam::quaternion
Quaternion class used to perform rotations in 3D space.
Definition: quaternion.H:56
R
#define R(A, B, C, D, E, F, K, M)
DebugInFunction
#define DebugInFunction
Report an information message using Foam::Info.
Definition: messageStream.H:388
Foam::solidBodyMotionFunction
Base class for defining solid-body motions.
Definition: solidBodyMotionFunction.H:63
Foam::solidBodyMotionFunctions::defineTypeNameAndDebug
defineTypeNameAndDebug(axisRotationMotion, 0)
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:123
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::solidBodyMotionFunction::read
virtual bool read(const dictionary &SBMFCoeffs)=0
Update properties from given dictionary.
Definition: solidBodyMotionFunction.C:60
Foam::solidBodyMotionFunctions::rotatingMotion::read
virtual bool read(const dictionary &SBMFCoeffs)
Update properties from given dictionary.
Definition: rotatingMotion.C:84
Foam::Vector< scalar >
Foam::solidBodyMotionFunction::time_
const Time & time_
Definition: solidBodyMotionFunction.H:71