/src/OpenFOAM/primitives/quaternion/quaternion.C
https://gitlab.com/johnvarv/OpenFOAM-3.0.x · C · 154 lines · 83 code · 39 blank · 32 comment · 11 complexity · 9875b3676d2d2f9ef5ec994ec8ca181f MD5 · raw file
- /*---------------------------------------------------------------------------*\
- ========= |
- \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
- \\ / O peration |
- \\ / A nd | Copyright (C) 2011-2013 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 "quaternion.H"
- #include "IOstreams.H"
- #include "OStringStream.H"
- // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
- const char* const Foam::quaternion::typeName = "quaternion";
- const Foam::quaternion Foam::quaternion::zero(0, vector(0, 0, 0));
- const Foam::quaternion Foam::quaternion::I(1, vector(0, 0, 0));
- // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
- Foam::quaternion::quaternion(Istream& is)
- {
- is >> *this;
- }
- // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
- Foam::word Foam::name(const quaternion& q)
- {
- OStringStream buf;
- buf << '(' << q.w() << ',' << q.v() << ')';
- return buf.str();
- }
- Foam::quaternion Foam::slerp
- (
- const quaternion& qa,
- const quaternion& qb,
- const scalar t
- )
- {
- label sign = 1;
- if ((qa & qb) < 0)
- {
- sign = -1;
- }
- return qa*pow((inv(qa)*sign*qb), t);
- }
- Foam::quaternion Foam::exp(const quaternion& q)
- {
- const scalar magV = mag(q.v());
- if (magV == 0)
- {
- return quaternion(1, vector::zero);
- }
- const scalar expW = exp(q.w());
- return quaternion
- (
- expW*cos(magV),
- expW*sin(magV)*q.v()/magV
- );
- }
- Foam::quaternion Foam::pow(const quaternion& q, const label power)
- {
- const scalar magQ = mag(q);
- const scalar magV = mag(q.v());
- quaternion powq(q.v());
- if (magV != 0 && magQ != 0)
- {
- powq /= magV;
- powq *= power*acos(q.w()/magQ);
- }
- return pow(magQ, power)*exp(powq);
- }
- Foam::quaternion Foam::pow(const quaternion& q, const scalar power)
- {
- const scalar magQ = mag(q);
- const scalar magV = mag(q.v());
- quaternion powq(q.v());
- if (magV != 0 && magQ != 0)
- {
- powq /= magV;
- powq *= power*acos(q.w()/magQ);
- }
- return pow(magQ, power)*exp(powq);
- }
- // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
- Foam::Istream& Foam::operator>>(Istream& is, quaternion& q)
- {
- // Read beginning of quaternion
- is.readBegin("quaternion");
- is >> q.w() >> q.v();
- // Read end of quaternion
- is.readEnd("quaternion");
- // Check state of Istream
- is.check("operator>>(Istream&, quaternion&)");
- return is;
- }
- Foam::Ostream& Foam::operator<<(Ostream& os, const quaternion& q)
- {
- os << token::BEGIN_LIST
- << q.w() << token::SPACE << q.v()
- << token::END_LIST;
- return os;
- }
- // ************************************************************************* //