1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation, either version 3 of the License, or (at your
14 option) any later version.
16 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "axisCoordinateRotation.H"
29 #include "mathematicalConstants.H"
30 #include "dictionary.H"
31 #include "addToRunTimeSelectionTable.H"
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
37 defineTypeNameAndDebug(axisCoordinateRotation, 0);
38 addToRunTimeSelectionTable
41 axisCoordinateRotation,
46 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
48 void Foam::axisCoordinateRotation::calcTransform
50 const scalar phiAngle,
51 const scalar thetaAngle,
52 const scalar psiAngle,
56 scalar phi = phiAngle;
57 scalar theta = thetaAngle;
58 scalar psi = psiAngle;
62 phi *= mathematicalConstant::pi/180.0;
63 theta *= mathematicalConstant::pi/180.0;
64 psi *= mathematicalConstant::pi/180.0;
72 sin(phi)*sin(theta)*cos(psi) - cos(phi)*sin(psi),
73 cos(phi)*sin(theta)*cos(psi) + sin(phi)*sin(psi),
76 sin(phi)*sin(theta)*sin(psi) + cos(phi)*cos(psi),
77 cos(phi)*sin(theta)*sin(psi) - sin(phi)*cos(psi),
87 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
89 Foam::axisCoordinateRotation::axisCoordinateRotation
91 const scalar phiAngle,
92 const scalar thetaAngle,
93 const scalar psiAngle,
99 calcTransform(phiAngle, thetaAngle, psiAngle, inDegrees);
103 Foam::axisCoordinateRotation::axisCoordinateRotation
105 const dictionary& dict
110 scalar phi = readScalar(dict.lookup("phi"));
111 scalar theta = readScalar(dict.lookup("theta"));
112 scalar psi = readScalar(dict.lookup("psi"));
119 dict.lookupOrDefault<Switch>("degrees", true)
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //