multiMotion.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-2016 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 "multiMotion.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33 namespace solidBodyMotionFunctions
34 {
35  defineTypeNameAndDebug(multiMotion, 0);
37  (
38  solidBodyMotionFunction,
39  multiMotion,
40  dictionary
41  );
42 }
43 }
44 
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
48 Foam::solidBodyMotionFunctions::multiMotion::multiMotion
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  septernion TR = SBMFs_[0].transformation();
74 
75  for (label i = 1; i < SBMFs_.size(); i++)
76  {
77  TR *= SBMFs_[i].transformation();
78  }
79 
80  DebugInFunction << "Time = " << t << " transformation: " << TR << endl;
81 
82  return TR;
83 }
84 
85 
87 (
88  const dictionary& SBMFCoeffs
89 )
90 {
92 
93  label i = 0;
94  SBMFs_.setSize(SBMFCoeffs_.size());
95 
96  forAllConstIter(IDLList<entry>, SBMFCoeffs_, iter)
97  {
98  if (iter().isDict())
99  {
100  SBMFs_.set
101  (
102  i,
103  solidBodyMotionFunction::New(iter().dict(), time_)
104  );
105 
106  Info<< "Constructed SBMF " << i << " : "
107  << iter().keyword() << " of type "
108  << SBMFs_[i].type() << endl;
109 
110  i++;
111  }
112  }
113  SBMFs_.setSize(i);
114 
115  return true;
116 }
117 
118 
119 // ************************************************************************* //
Template class for intrusive linked lists.
Definition: ILList.H:50
dictionary dict
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
Septernion class used to perform translations and rotations in 3D space.
Definition: septernion.H:65
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:68
Macros for easy insertion into run-time selection tables.
defineTypeNameAndDebug(axisRotationMotion, 0)
virtual septernion transformation() const
Return the solid-body motion transformation septernion.
Definition: multiMotion.C:69
bool read(const char *, int32_t &)
Definition: int32IO.C:85
Base class for defining solid-body motions.
#define DebugInFunction
Report an information message using Foam::Info.
static autoPtr< solidBodyMotionFunction > New(const dictionary &SBMFCoeffs, const Time &runTime)
Select constructed from the SBMFCoeffs dictionary and Time.
virtual bool read(const dictionary &SBMFCoeffs)=0
Update properties from given dictionary.
virtual bool read(const dictionary &SBMFCoeffs)
Update properties from given dictionary.
Definition: multiMotion.C:87
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
Definition: pEqn.H:29
messageStream Info
addToRunTimeSelectionTable(solidBodyMotionFunction, axisRotationMotion, dictionary)
Namespace for OpenFOAM.