Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / complex / complexI.H
blob60d156662ae13cc9156a4204c35c96d26e293ced
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
28 namespace Foam
31 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
33 inline complex::complex()
37 inline complex::complex(const scalar Re, const scalar Im)
39     re(Re),
40     im(Im)
44 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
46 inline scalar complex::Re() const
48     return re;
52 inline scalar complex::Im() const
54     return im;
58 inline scalar& complex::Re()
60     return re;
64 inline scalar& complex::Im()
66     return im;
70 inline complex complex::conjugate() const
72     return complex(re, -im);
76 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
78 inline const complex& complex::operator=(const complex& c)
80     re = c.re;
81     im = c.im;
82     return *this;
86 inline void complex::operator+=(const complex& c)
88     re += c.re;
89     im += c.im;
93 inline void complex::operator-=(const complex& c)
95     re -= c.re;
96     im -= c.im;
100 inline void complex::operator*=(const complex& c)
102     *this = (*this)*c;
106 inline void complex::operator/=(const complex& c)
108     *this = *this/c;
112 inline const complex& complex::operator=(const scalar s)
114     re = s;
115     im = 0.0;
116     return *this;
120 inline void complex::operator+=(const scalar s)
122     re += s;
126 inline void complex::operator-=(const scalar s)
128     re -= s;
132 inline void complex::operator*=(const scalar s)
134     re *= s;
135     im *= s;
139 inline void complex::operator/=(const scalar s)
141     re /= s;
142     im /= s;
146 inline complex complex::operator!() const
148     return conjugate();
152 inline bool complex::operator==(const complex& c) const
154     return (equal(re, c.re) && equal(im, c.im));
158 inline bool complex::operator!=(const complex& c) const
160     return !operator==(c);
164 // * * * * * * * * * * * * * * * Friend Functions  * * * * * * * * * * * * * //
167 inline scalar magSqr(const complex& c)
169     return (c.re*c.re + c.im*c.im);
173 inline complex sqr(const complex& c)
175     return c * c;
179 inline scalar mag(const complex& c)
181     return sqrt(magSqr(c));
185 inline const complex& max(const complex& c1, const complex& c2)
187     if (mag(c1) > mag(c2))
188     {
189         return c1;
190     }
191     else
192     {
193         return c2;
194     }
198 inline const complex& min(const complex& c1, const complex& c2)
200     if (mag(c1) < mag(c2))
201     {
202         return c1;
203     }
204     else
205     {
206         return c2;
207     }
211 inline complex limit(const complex& c1, const complex& c2)
213     return complex(limit(c1.re, c2.re), limit(c1.im, c2.im));
217 inline const complex& sum(const complex& c)
219     return c;
223 template<class Cmpt>
224 class Tensor;
226 inline complex transform(const Tensor<scalar>&, const complex c)
228     return c;
232 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
234 inline complex operator+(const complex& c1, const complex& c2)
236     return complex
237     (
238         c1.re + c2.re,
239         c1.im + c2.im
240     );
244 inline complex operator-(const complex& c)
246     return complex
247     (
248         -c.re,
249         -c.im
250     );
254 inline complex operator-(const complex& c1, const complex& c2)
256     return complex
257     (
258         c1.re - c2.re,
259         c1.im - c2.im
260     );
264 inline complex operator*(const complex& c1, const complex& c2)
266     return complex
267     (
268         c1.re*c2.re - c1.im*c2.im,
269         c1.im*c2.re + c1.re*c2.im
270     );
274 inline complex operator/(const complex& c1, const complex& c2)
276     scalar sqrC2 = magSqr(c2);
278     return complex
279     (
280         (c1.re*c2.re + c1.im*c2.im)/sqrC2,
281         (c1.im*c2.re - c1.re*c2.im)/sqrC2
282     );
286 inline complex operator*(const scalar s, const complex& c)
288     return complex(s*c.re, s*c.im);
292 inline complex operator*(const complex& c, const scalar s)
294     return complex(s*c.re, s*c.im);
298 inline complex operator/(const complex& c, const scalar s)
300     return complex(c.re/s, c.im/s);
304 inline complex operator/(const scalar s, const complex& c)
306     return complex(s/c.re, s/c.im);
310 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
312 } // End namespace Foam
314 // ************************************************************************* //