Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / foam / primitives / Vector / VectorTemplateI.H
blob44c357a0b86df16ee8b85942f3763c5c973ebc9e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
28 namespace Foam
31 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
33 // Construct null
34 template <class Cmpt>
35 inline Vector<Cmpt>::Vector()
39 // Construct given VectorSpace
40 template <class Cmpt>
41 inline Vector<Cmpt>::Vector(const VectorSpace<Vector<Cmpt>, Cmpt, 3>& vs)
43     VectorSpace<Vector<Cmpt>, Cmpt, 3>(vs)
47 // Construct given three Cmpts
48 template <class Cmpt>
49 inline Vector<Cmpt>::Vector(const Cmpt& vx, const Cmpt& vy, const Cmpt& vz)
51     this->v_[X] = vx;
52     this->v_[Y] = vy;
53     this->v_[Z] = vz;
57 // Construct from Istream
58 template <class Cmpt>
59 inline Vector<Cmpt>::Vector(Istream& is)
61     VectorSpace<Vector<Cmpt>, Cmpt, 3>(is)
65 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
67 template <class Cmpt>
68 inline const Cmpt& Vector<Cmpt>::x() const
70     return this->v_[X];
73 template <class Cmpt>
74 inline const Cmpt& Vector<Cmpt>::y() const
76     return this->v_[Y];
79 template <class Cmpt>
80 inline const Cmpt& Vector<Cmpt>::z() const
82     return this->v_[Z];
86 template <class Cmpt>
87 inline Cmpt& Vector<Cmpt>::x()
89     return this->v_[X];
92 template <class Cmpt>
93 inline Cmpt& Vector<Cmpt>::y()
95     return this->v_[Y];
98 template <class Cmpt>
99 inline Cmpt& Vector<Cmpt>::z()
101     return this->v_[Z];
105 template <class Cmpt>
106 inline const Cmpt& Vector<Cmpt>::operator()
108     const direction i
109 ) const
111     return this->operator[](i);
115 template <class Cmpt>
116 inline Cmpt& Vector<Cmpt>::operator()
118     const direction i
121     return this->operator[](i);
125 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
127 template <class Cmpt>
128 inline const Vector<Cmpt>& Vector<Cmpt>::centre
130     const Foam::List<Vector<Cmpt> >&
131 )const
133     return *this;
137 // * * * * * * * * * * * * * * * Global Operators  * * * * * * * * * * * * * //
139 template <class Cmpt>
140 inline typename innerProduct<Vector<Cmpt>, Vector<Cmpt> >::type
141 operator&(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
143     return Cmpt(v1.x()*v2.x() + v1.y()*v2.y() + v1.z()*v2.z());
147 template <class Cmpt>
148 inline Vector<Cmpt> operator^(const Vector<Cmpt>& v1, const Vector<Cmpt>& v2)
150     return Vector<Cmpt>
151     (
152         (v1.y()*v2.z() - v1.z()*v2.y()),
153         (v1.z()*v2.x() - v1.x()*v2.z()),
154         (v1.x()*v2.y() - v1.y()*v2.x())
155     );
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 } // End namespace Foam
163 // ************************************************************************* //