Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / Vector / Vector.H
blobf95aa1f7514b1ac6c062b90394a83bc59f887fde
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 Class
25     Foam::Vector
27 Description
28     Templated 3D Vector derived from VectorSpace adding construction from
29     3 components, element access using x(), y() and z() member functions and
30     the inner-product (dot-product) and cross product operators.
32     A centre() member function which returns the Vector for which it is called
33     is defined so that point which is a typedef to Vector\<scalar\> behaves as
34     other shapes in the shape hierachy.
36 SourceFiles
37     VectorI.H
39 \*---------------------------------------------------------------------------*/
41 #ifndef Vector_H
42 #define Vector_H
44 #include "VectorSpace.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 template<class T> class List;
53 /*---------------------------------------------------------------------------*\
54                            Class Vector Declaration
55 \*---------------------------------------------------------------------------*/
57 template <class Cmpt>
58 class Vector
60     public VectorSpace<Vector<Cmpt>, Cmpt, 3>
63 public:
65     //- Equivalent type of labels used for valid component indexing
66     typedef Vector<label> labelType;
69     // Member constants
71         enum
72         {
73             rank = 1 // Rank of Vector is 1
74         };
77     // Static data members
79         static const char* const typeName;
80         static const char* componentNames[];
81         static const Vector zero;
82         static const Vector one;
83         static const Vector max;
84         static const Vector min;
87     //- Component labeling enumeration
88     enum components { X, Y, Z };
91     // Constructors
93         //- Construct null
94         inline Vector();
96         //- Construct given VectorSpace
97         inline Vector(const VectorSpace<Vector<Cmpt>, Cmpt, 3>&);
99         //- Construct given three components
100         inline Vector(const Cmpt& vx, const Cmpt& vy, const Cmpt& vz);
102         //- Construct from Istream
103         inline Vector(Istream&);
106     // Member Functions
108         // Access
110             inline const Cmpt& x() const;
111             inline const Cmpt& y() const;
112             inline const Cmpt& z() const;
114             inline Cmpt& x();
115             inline Cmpt& y();
116             inline Cmpt& z();
118         //- Return *this (used for point which is a typedef to Vector<scalar>.
119         inline const Vector<Cmpt>& centre
120         (
121             const Foam::List<Vector<Cmpt> >&
122         ) const;
126 template<class Cmpt>
127 class typeOfRank<Cmpt, 1>
129 public:
131     typedef Vector<Cmpt> type;
135 template<class Cmpt>
136 class symmTypeOfRank<Cmpt, 1>
138 public:
140     typedef Vector<Cmpt> type;
144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
146 } // End namespace Foam
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
150 #include "VectorI.H"
152 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
154 #endif
156 // ************************************************************************* //