named regIOobject for dictionary
[OpenFOAM-1.6.x.git] / src / meshTools / coordinateSystems / coordinateRotation / EulerCoordinateRotation.C
blob963d5084dbf3addb27b6f00a4d41155709bdda1b
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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 "EulerCoordinateRotation.H"
29 #include "Switch.H"
30 #include "mathematicalConstants.H"
31 #include "addToRunTimeSelectionTable.H"
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35 namespace Foam
37     defineTypeNameAndDebug(EulerCoordinateRotation, 0);
38     addToRunTimeSelectionTable
39     (
40         coordinateRotation,
41         EulerCoordinateRotation,
42         dictionary
43     );
46 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
48 void Foam::EulerCoordinateRotation::calcTransform
50     const scalar phiAngle,
51     const scalar thetaAngle,
52     const scalar psiAngle,
53     const bool inDegrees
56     scalar phi   = phiAngle;
57     scalar theta = thetaAngle;
58     scalar psi   = psiAngle;
60     if (inDegrees)
61     {
62         phi   *= mathematicalConstant::pi/180.0;
63         theta *= mathematicalConstant::pi/180.0;
64         psi   *= mathematicalConstant::pi/180.0;
65     }
67     tensor::operator=
68     (
69         tensor
70         (
71             cos(phi)*cos(psi) - sin(phi)*sin(psi)*cos(theta),
72             -sin(phi)*cos(psi)*cos(theta) - cos(phi)*sin(psi),
73             sin(phi)*sin(theta),
75             cos(phi)*sin(psi)*cos(theta) + sin(phi)*cos(psi),
76             cos(phi)*cos(psi)*cos(theta) - sin(phi)*sin(psi),
77             -cos(phi)*sin(theta),
79             sin(psi)*sin(theta),
80             cos(psi)*sin(theta),
81             cos(theta)
82         )
83     );
87 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
89 Foam::EulerCoordinateRotation::EulerCoordinateRotation()
91     coordinateRotation()
95 Foam::EulerCoordinateRotation::EulerCoordinateRotation
97     const vector& phiThetaPsi,
98     const bool inDegrees
101     coordinateRotation()
103     calcTransform
104     (
105         phiThetaPsi.component(vector::X),
106         phiThetaPsi.component(vector::Y),
107         phiThetaPsi.component(vector::Z),
108         inDegrees
109     );
113 Foam::EulerCoordinateRotation::EulerCoordinateRotation
115     const scalar phiAngle,
116     const scalar thetaAngle,
117     const scalar psiAngle,
118     const bool inDegrees
121     coordinateRotation()
123     calcTransform(phiAngle, thetaAngle, psiAngle, inDegrees);
127 Foam::EulerCoordinateRotation::EulerCoordinateRotation
129     const dictionary& dict
132     coordinateRotation()
134     vector rotation(dict.lookup("rotation"));
136     calcTransform
137     (
138         rotation.component(vector::X),
139         rotation.component(vector::Y),
140         rotation.component(vector::Z),
141         dict.lookupOrDefault<Switch>("degrees", true)
142     );
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //