1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
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 the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
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
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "axisCoordinateRotation.H"
30 #include "mathematicalConstants.H"
31 #include "dictionary.H"
32 #include "addToRunTimeSelectionTable.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
38 defineTypeNameAndDebug(axisCoordinateRotation, 0);
39 addToRunTimeSelectionTable
42 axisCoordinateRotation,
47 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
49 void Foam::axisCoordinateRotation::calcTransform
51 const scalar phiAngle,
52 const scalar thetaAngle,
53 const scalar psiAngle,
57 scalar phi = phiAngle;
58 scalar theta = thetaAngle;
59 scalar psi = psiAngle;
63 phi *= mathematicalConstant::pi/180.0;
64 theta *= mathematicalConstant::pi/180.0;
65 psi *= mathematicalConstant::pi/180.0;
73 sin(phi)*sin(theta)*cos(psi) - cos(phi)*sin(psi),
74 cos(phi)*sin(theta)*cos(psi) + sin(phi)*sin(psi),
77 sin(phi)*sin(theta)*sin(psi) + cos(phi)*cos(psi),
78 cos(phi)*sin(theta)*sin(psi) - sin(phi)*cos(psi),
88 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
90 Foam::axisCoordinateRotation::axisCoordinateRotation
92 const scalar phiAngle,
93 const scalar thetaAngle,
94 const scalar psiAngle,
100 calcTransform(phiAngle, thetaAngle, psiAngle, inDegrees);
104 Foam::axisCoordinateRotation::axisCoordinateRotation
106 const dictionary& dict
111 scalar phi = readScalar(dict.lookup("phi"));
112 scalar theta = readScalar(dict.lookup("theta"));
113 scalar psi = readScalar(dict.lookup("psi"));
115 bool inDegrees = true;
116 if (dict.found("degrees"))
118 inDegrees = Switch(dict.lookup("degrees"));
126 dict.lookupOrDefault<Switch>("degrees", true)
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //