mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
The particular rotation sequence is specified via the enumeration:
//- Euler-angle rotation sequence
enum rotationSequence
{
ZYX, ZYZ, ZXY, ZXZ, YXZ, YXY, YZX, YZY, XYZ, XYX, XZY, XZX
};
and provided as an argument to the constructor from Euler-angles
//- Construct a quaternion given the three Euler angles:
inline quaternion
(
const rotationSequence rs,
const vector& angles
);
and conversion to Euler-angles:
//- Return a vector of euler angles corresponding to the
// specified rotation sequence
inline vector eulerAngles(const rotationSequence rs) const;
100 lines
2.8 KiB
C
100 lines
2.8 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "oscillatingLinearMotion.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace solidBodyMotionFunctions
|
|
{
|
|
defineTypeNameAndDebug(oscillatingLinearMotion, 0);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
solidBodyMotionFunction,
|
|
oscillatingLinearMotion,
|
|
dictionary
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::solidBodyMotionFunctions::oscillatingLinearMotion::oscillatingLinearMotion
|
|
(
|
|
const dictionary& SBMFCoeffs,
|
|
const Time& runTime
|
|
)
|
|
:
|
|
solidBodyMotionFunction(SBMFCoeffs, runTime)
|
|
{
|
|
read(SBMFCoeffs);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::solidBodyMotionFunctions::oscillatingLinearMotion::
|
|
~oscillatingLinearMotion()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
|
|
|
Foam::septernion
|
|
Foam::solidBodyMotionFunctions::oscillatingLinearMotion::transformation() const
|
|
{
|
|
scalar t = time_.value();
|
|
|
|
const vector displacement = amplitude_*sin(omega_*t);
|
|
|
|
quaternion R(1);
|
|
septernion TR(septernion(displacement)*R);
|
|
|
|
InfoInFunction << "Time = " << t << " transformation: " << TR << endl;
|
|
|
|
return TR;
|
|
}
|
|
|
|
|
|
bool Foam::solidBodyMotionFunctions::oscillatingLinearMotion::read
|
|
(
|
|
const dictionary& SBMFCoeffs
|
|
)
|
|
{
|
|
solidBodyMotionFunction::read(SBMFCoeffs);
|
|
|
|
SBMFCoeffs_.lookup("amplitude") >> amplitude_;
|
|
SBMFCoeffs_.lookup("omega") >> omega_;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|