initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / primitives / complexVector / complexVectorI.H
blob67060490cd51c95b473a42ec1658ce160bb1eba9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 Description
26     complexVector specific part of 3D complexVector obtained from
27     generic Vector.
29 \*---------------------------------------------------------------------------*/
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 namespace Foam
36 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
38 inline complexVector operator*(const complex& v1, const complexVector& v2)
40     return complexVector
41     (
42         v1*v2.x(),
43         v1*v2.y(),
44         v1*v2.z()
45     );
49 inline complexVector operator*(const complexVector& v2, const complex& v1)
51     return complexVector
52     (
53         v1*v2.x(),
54         v1*v2.y(),
55         v1*v2.z()
56     );
60 inline complexVector operator/(const complexVector& v1, const complex& v2)
62     return complexVector
63     (
64         v1.x()/v2,
65         v1.y()/v2,
66         v1.z()/v2
67     );
71 inline complexVector operator/(const complex& v1, const complexVector& v2)
73     return complexVector
74     (
75         v1/v2.x(),
76         v1/v2.y(),
77         v1/v2.z()
78     );
82 // complexVector dot product
84 inline complex operator&(const complexVector& v1, const complexVector& v2)
86     return complex
87     (
88         v1.x()*v2.x().conjugate()
89       + v1.y()*v2.y().conjugate()
90       + v1.z()*v2.z().conjugate()
91     );
95 // complexVector cross product
97 inline complexVector operator^(const complexVector& v1, const complexVector& v2)
99     return complexVector
100     (
101         (v1.y()*v2.z() - v1.z()*v2.y()),
102         (v1.z()*v2.x() - v1.x()*v2.z()),
103         (v1.x()*v2.y() - v1.y()*v2.x())
104     );
108 // complexVector cross product
110 inline complexVector operator^(const vector& v1, const complexVector& v2)
112     return complexVector
113     (
114         (v1.y()*v2.z() - v1.z()*v2.y()),
115         (v1.z()*v2.x() - v1.x()*v2.z()),
116         (v1.x()*v2.y() - v1.y()*v2.x())
117     );
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace Foam
125 // ************************************************************************* //