Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / sampling / sampledSet / coordSet / coordSet.C
blob4aaf9de8300badeb4c4f40d8c8b2f52585c124c9
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 #include "coordSet.H"
28 // * * * * * * * * * * * * * Static Member Data  * * * * * * * * * * * * * * //
30 namespace Foam
32     template<>
33     const char* Foam::NamedEnum
34     <
35         Foam::coordSet::coordFormat,
36         5
37     >::names[] =
38     {
39         "xyz",
40         "x",
41         "y",
42         "z",
43         "distance"
44     };
48 const Foam::NamedEnum<Foam::coordSet::coordFormat, 5>
49     Foam::coordSet::coordFormatNames_;
52 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
54 //- Construct from components
55 Foam::coordSet::coordSet
57     const word& name,
58     const word& axis
61     pointField(0),
62     name_(name),
63     axis_(coordFormatNames_[axis]),
64     curveDist_(0)
68 //- Construct from components
69 Foam::coordSet::coordSet
71     const word& name,
72     const word& axis,
73     const List<point>& points,
74     const scalarList& curveDist
77     pointField(points),
78     name_(name),
79     axis_(coordFormatNames_[axis]),
80     curveDist_(curveDist)
84 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
86 bool Foam::coordSet::hasVectorAxis() const
88     return axis_ == XYZ;
92 Foam::scalar Foam::coordSet::scalarCoord
94     const label index
95 )   const
97     const point& p = operator[](index);
99     if (axis_ == X)
100     {
101         return p.x();
102     }
103     else if (axis_ == Y)
104     {
105         return p.y();
106     }
107     else if (axis_ == Z)
108     {
109         return p.z();
110     }
111     else if (axis_ == DISTANCE)
112     {
113         // Use distance to reference point
114         return curveDist_[index];
115     }
116     else
117     {
118         FatalErrorIn
119         (
120             "coordSet::scalarCoord(const label)"
121         )   << "Illegal axis specification " << axis_
122             << " for sampling line " << name_
123             << exit(FatalError);
125         return 0;
126     }
130 Foam::point Foam::coordSet::vectorCoord(const label index) const
132     const point& p = operator[](index);
134     return p;
138 Foam::Ostream& Foam::coordSet::write(Ostream& os) const
140     os  << "name:" << name_ << " axis:" << axis_
141         << endl
142         << endl << "\t(coord)"
143         << endl;
145     forAll(*this, sampleI)
146     {
147         os  << '\t' << operator[](sampleI) << endl;
148     }
150     return os;
154 // ************************************************************************* //