2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
|
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
|
|
\\ / O peration |
|
|
|
|
\\ / A nd | Copyright held by original author
|
|
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "error.H"
|
|
|
|
#include "BSpline.H"
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
Foam::BSpline::BSpline
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2010-08-25 21:42:57 +00:00
|
|
|
const pointField& knots,
|
|
|
|
const bool closed
|
2010-05-12 13:27:55 +00:00
|
|
|
)
|
2010-08-25 21:42:57 +00:00
|
|
|
:
|
|
|
|
polyLine(knots, closed)
|
|
|
|
{}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
Foam::point Foam::BSpline::position(const scalar mu) const
|
|
|
|
{
|
|
|
|
// endpoints
|
|
|
|
if (mu < SMALL)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
return points_[0];
|
|
|
|
}
|
|
|
|
else if (mu > 1 - SMALL)
|
|
|
|
{
|
|
|
|
return points_[points_.size()-1];
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
scalar lambda = mu;
|
|
|
|
label segment = localParameter(lambda);
|
|
|
|
return position(segment, lambda);
|
|
|
|
}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
Foam::point Foam::BSpline::position
|
|
|
|
(
|
|
|
|
const label segment,
|
|
|
|
const scalar mu
|
|
|
|
) const
|
|
|
|
{
|
|
|
|
// out-of-bounds
|
|
|
|
if (segment < 0)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
return points_[0];
|
|
|
|
}
|
|
|
|
else if (segment > nSegments())
|
|
|
|
{
|
|
|
|
return points_[points_.size()-1];
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
const point& p0 = points()[segment];
|
|
|
|
const point& p1 = points()[segment+1];
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
// special cases - no calculation needed
|
|
|
|
if (mu <= 0.0)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
return p0;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
2010-08-25 21:42:57 +00:00
|
|
|
else if (mu >= 1.0)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
return p1;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
// determine the end points
|
|
|
|
point e0;
|
|
|
|
point e1;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
if (segment == 0)
|
|
|
|
{
|
|
|
|
// end: simple reflection
|
|
|
|
e0 = 2*p0 - p1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
e0 = points()[segment-1];
|
|
|
|
}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
if (segment+1 == nSegments())
|
|
|
|
{
|
|
|
|
// end: simple reflection
|
|
|
|
e1 = 2*p1 - p0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
e1 = points()[segment+2];
|
|
|
|
}
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
return 1.0/6.0 *
|
|
|
|
(
|
|
|
|
( e0 + 4*p0 + p1 )
|
|
|
|
+ mu *
|
|
|
|
(
|
|
|
|
( -3*e0 + 3*p1 )
|
|
|
|
+ mu *
|
|
|
|
(
|
|
|
|
( 3*e0 - 6*p0 + 3*p1 )
|
|
|
|
+ mu *
|
|
|
|
( -e0 + 3*p0 - 3*p1 + e1 )
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
Foam::scalar Foam::BSpline::length() const
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
notImplemented("BSpline::length() const");
|
|
|
|
return 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|