mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Add support for constructing VectorSpaces from forms with lower component type, e.g. Vector<scalar> from Vector<label>
234 lines
5.0 KiB
C++
234 lines
5.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013 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 "polyMesh.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
// Null constructor
|
|
inline Foam::pointTopoDistanceData::pointTopoDistanceData()
|
|
:
|
|
data_(-1),
|
|
distance_(-1)
|
|
{}
|
|
|
|
|
|
// Construct from components
|
|
inline Foam::pointTopoDistanceData::pointTopoDistanceData
|
|
(
|
|
const label data,
|
|
const label distance
|
|
)
|
|
:
|
|
data_(data),
|
|
distance_(distance)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::valid(TrackingData& td) const
|
|
{
|
|
return distance_ != -1;
|
|
}
|
|
|
|
|
|
// No geometric data so never any problem on cyclics
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::sameGeometry
|
|
(
|
|
const pointTopoDistanceData&,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
// No geometric data.
|
|
template<class TrackingData>
|
|
inline void Foam::pointTopoDistanceData::leaveDomain
|
|
(
|
|
const polyPatch& patch,
|
|
const label patchPointI,
|
|
const point& coord,
|
|
TrackingData& td
|
|
)
|
|
{}
|
|
|
|
|
|
// No geometric data.
|
|
template<class TrackingData>
|
|
inline void Foam::pointTopoDistanceData::transform
|
|
(
|
|
const tensor& rotTensor,
|
|
TrackingData& td
|
|
)
|
|
{}
|
|
|
|
|
|
// No geometric data.
|
|
template<class TrackingData>
|
|
inline void Foam::pointTopoDistanceData::enterDomain
|
|
(
|
|
const polyPatch& patch,
|
|
const label patchPointI,
|
|
const point& coord,
|
|
TrackingData& td
|
|
)
|
|
{}
|
|
|
|
|
|
// Update this with information from connected edge
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::updatePoint
|
|
(
|
|
const polyMesh& mesh,
|
|
const label pointI,
|
|
const label edgeI,
|
|
const pointTopoDistanceData& edgeInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
)
|
|
{
|
|
if (distance_ == -1)
|
|
{
|
|
data_ = edgeInfo.data_;
|
|
distance_ = edgeInfo.distance_ + 1;
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// Update this with new information on same point
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::updatePoint
|
|
(
|
|
const polyMesh& mesh,
|
|
const label pointI,
|
|
const pointTopoDistanceData& newPointInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
)
|
|
{
|
|
if (distance_ == -1)
|
|
{
|
|
operator=(newPointInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// Update this with new information on same point. No extra information.
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::updatePoint
|
|
(
|
|
const pointTopoDistanceData& newPointInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
)
|
|
{
|
|
if (distance_ == -1)
|
|
{
|
|
operator=(newPointInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// Update this with information from connected point
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::updateEdge
|
|
(
|
|
const polyMesh& mesh,
|
|
const label edgeI,
|
|
const label pointI,
|
|
const pointTopoDistanceData& pointInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
)
|
|
{
|
|
if (distance_ == -1)
|
|
{
|
|
operator=(pointInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::pointTopoDistanceData::equal
|
|
(
|
|
const pointTopoDistanceData& rhs,
|
|
TrackingData& td
|
|
) const
|
|
{
|
|
return operator==(rhs);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
inline bool Foam::pointTopoDistanceData::operator==
|
|
(
|
|
const Foam::pointTopoDistanceData& rhs
|
|
) const
|
|
{
|
|
return data() == rhs.data() && distance() == rhs.distance();
|
|
}
|
|
|
|
|
|
inline bool Foam::pointTopoDistanceData::operator!=
|
|
(
|
|
const Foam::pointTopoDistanceData& rhs
|
|
) const
|
|
{
|
|
return !(*this == rhs);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|