Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / src / sampling / sampledSet / coordSet / coordSet.H
bloba08baad057f24b57498ff1718db49d5c2a10a6c4
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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 Class
26     Foam::coordSet
28 Description
29     Holds list of sampling positions
31 SourceFiles
32     coordSet.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef coordSet_H
37 #define coordSet_H
39 #include <OpenFOAM/pointField.H>
40 #include <OpenFOAM/word.H>
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class coordSet Declaration
49 \*---------------------------------------------------------------------------*/
51 class coordSet
53     public pointField
56 protected:
58         //- Name
59         const word name_;
61         //- Axis write type
62         const word axis_;
64         //- Reference point for "distance" write specifier.
65         point refPoint_;
67 public:
69     // Constructors
71         //- Construct from components
72         coordSet
73         (
74             const word& name,
75             const word& axis
76         );
79         //- Construct from components
80         coordSet
81         (
82             const word& name,
83             const word& axis,
84             const List<point>& points,
85             const point& refPoint = point::zero
86         );
88         //- Construct from components
89         coordSet
90         (
91             const word& name,
92             const word& axis,
93             const scalarField& points,
94             const scalar refPoint = 0.0
95         );
98     // Member functions
100         const word& name() const
101         {
102             return name_;
103         }
105         const word& axis() const
106         {
107             return axis_;
108         }
110         const point& refPoint() const
111         {
112             return refPoint_;
113         }
115         //- Is axis specification a vector
116         bool hasVectorAxis() const;
118         //- Get coordinate of point according to axis specification.
119         //  If axis="distance" can be: -distance to starting point (e.g.
120         //  uniformSet) or -distance to first sampling point
121         //  (e.g. cloudSet)
122         scalar scalarCoord
123         (
124             const label index
125         ) const;
127         //- Get point according to axis="full" specification
128         vector vectorCoord
129         (
130             const label index
131         ) const;
133         Ostream& write(Ostream& os) const;
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 } // End namespace Foam
141 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
143 #endif
145 // ************************ vim: set sw=4 sts=4 et: ************************ //