Files
OpenFOAM-12/src/fileFormats/coordSet/coordSet.C

151 lines
3.3 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "coordSet.H"
// * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * * //
namespace Foam
{
template<>
const char* Foam::NamedEnum
<
Foam::coordSet::coordFormat,
5
>::names[] =
{
"xyz",
"x",
"y",
"z",
"distance"
};
}
const Foam::NamedEnum<Foam::coordSet::coordFormat, 5>
Foam::coordSet::coordFormatNames_;
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::coordSet::coordSet
(
const word& name,
const word& axis
)
:
pointField(0),
name_(name),
axis_(coordFormatNames_[axis]),
curveDist_(0)
{}
Foam::coordSet::coordSet
(
const word& name,
const word& axis,
const List<point>& points,
const scalarList& curveDist
)
:
pointField(points),
name_(name),
axis_(coordFormatNames_[axis]),
curveDist_(curveDist)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool Foam::coordSet::hasVectorAxis() const
{
return axis_ == XYZ;
}
Foam::scalar Foam::coordSet::scalarCoord
(
const label index
) const
{
const point& p = operator[](index);
if (axis_ == X)
{
return p.x();
}
else if (axis_ == Y)
{
return p.y();
}
else if (axis_ == Z)
{
return p.z();
}
else if (axis_ == DISTANCE)
{
// Use distance to reference point
return curveDist_[index];
}
else
{
FatalErrorInFunction
<< "Illegal axis specification " << axis_
<< " for sampling line " << name_
<< exit(FatalError);
return 0;
}
}
Foam::point Foam::coordSet::vectorCoord(const label index) const
{
const point& p = operator[](index);
return p;
}
Foam::Ostream& Foam::coordSet::write(Ostream& os) const
{
os << "name:" << name_ << " axis:" << axis_
<< endl
<< endl << "\t(coord)"
<< endl;
forAll(*this, sampleI)
{
os << '\t' << operator[](sampleI) << endl;
}
return os;
}
// ************************************************************************* //