fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / OpenFOAM / coordinateSystems / coordinateRotation / axisCoordinateRotation.C
blob01ed4bdcbe82ae6ae501a2b0ed8dfe0fb7c53cf5
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
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 "axisCoordinateRotation.H"
29 #include "Switch.H"
30 #include "mathematicalConstants.H"
31 #include "dictionary.H"
32 #include "addToRunTimeSelectionTable.H"
34 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 namespace Foam
38     defineTypeNameAndDebug(axisCoordinateRotation, 0);
39     addToRunTimeSelectionTable
40     (
41         coordinateRotation,
42         axisCoordinateRotation,
43         dictionary
44     );
47 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
49 void Foam::axisCoordinateRotation::calcTransform
51     const scalar phiAngle,
52     const scalar thetaAngle,
53     const scalar psiAngle,
54     const bool inDegrees
57     scalar phi   = phiAngle;
58     scalar theta = thetaAngle;
59     scalar psi   = psiAngle;
61     if (inDegrees)
62     {
63         phi *= mathematicalConstant::pi/180.0;
64         theta *= mathematicalConstant::pi/180.0;
65         psi *= mathematicalConstant::pi/180.0;
66     }
68     tensor::operator=
69     (
70         tensor
71         (
72             cos(theta)*cos(psi),
73             sin(phi)*sin(theta)*cos(psi) - cos(phi)*sin(psi),
74             cos(phi)*sin(theta)*cos(psi) + sin(phi)*sin(psi),
76             cos(theta)*sin(psi),
77             sin(phi)*sin(theta)*sin(psi) + cos(phi)*cos(psi),
78             cos(phi)*sin(theta)*sin(psi) - sin(phi)*cos(psi),
80             -sin(theta),
81             sin(phi)*cos(theta),
82             cos(phi)*cos(theta)
83         )
84     );
88 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
90 Foam::axisCoordinateRotation::axisCoordinateRotation
92     const scalar phiAngle,
93     const scalar thetaAngle,
94     const scalar psiAngle,
95     const bool inDegrees
98     coordinateRotation()
100     calcTransform(phiAngle, thetaAngle, psiAngle, inDegrees);
104 Foam::axisCoordinateRotation::axisCoordinateRotation
106     const dictionary& dict
109     coordinateRotation()
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"))
117     {
118         inDegrees = Switch(dict.lookup("degrees"));
119     }
121     calcTransform
122     (
123         phi,
124         theta,
125         psi,
126         dict.lookupOrDefault<Switch>("degrees", true)
127     );
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //