222 lines
4.3 KiB
C++
222 lines
4.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2014 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"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
inline Foam::minData::minData()
|
|
:
|
|
data_(labelMax)
|
|
{}
|
|
|
|
|
|
inline Foam::minData::minData(const label data)
|
|
:
|
|
data_(data)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::valid(TrackingData& td) const
|
|
{
|
|
return data_ != labelMax;
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::sameGeometry
|
|
(
|
|
const polyMesh&,
|
|
const minData&,
|
|
const scalar,
|
|
TrackingData&
|
|
) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline void Foam::minData::leaveDomain
|
|
(
|
|
const polyMesh&,
|
|
const polyPatch& patch,
|
|
const label patchFaceI,
|
|
const point& faceCentre,
|
|
TrackingData&
|
|
)
|
|
{}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline void Foam::minData::transform
|
|
(
|
|
const polyMesh&,
|
|
const tensor& rotTensor,
|
|
TrackingData&
|
|
)
|
|
{}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline void Foam::minData::enterDomain
|
|
(
|
|
const polyMesh&,
|
|
const polyPatch& patch,
|
|
const label patchFaceI,
|
|
const point& faceCentre,
|
|
TrackingData&
|
|
)
|
|
{}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::updateCell
|
|
(
|
|
const polyMesh&,
|
|
const label thisCellI,
|
|
const label neighbourFaceI,
|
|
const minData& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData&
|
|
)
|
|
{
|
|
if (neighbourInfo.data_ < data_)
|
|
{
|
|
operator=(neighbourInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::updateFace
|
|
(
|
|
const polyMesh& mesh,
|
|
const label thisFaceI,
|
|
const label neighbourCellI,
|
|
const minData& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData&
|
|
)
|
|
{
|
|
// From cell to its faces.
|
|
|
|
if (neighbourInfo.data_ < data_)
|
|
{
|
|
operator=(neighbourInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::updateFace
|
|
(
|
|
const polyMesh&,
|
|
const label thisFaceI,
|
|
const minData& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData&
|
|
)
|
|
{
|
|
// From face to face (e.g. coupled faces)
|
|
if (neighbourInfo.data_ < data_)
|
|
{
|
|
operator=(neighbourInfo);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
template<class TrackingData>
|
|
inline bool Foam::minData::equal
|
|
(
|
|
const minData& rhs,
|
|
TrackingData& td
|
|
) const
|
|
{
|
|
return operator==(rhs);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
inline bool Foam::minData::operator==
|
|
(
|
|
const Foam::minData& rhs
|
|
) const
|
|
{
|
|
return data() == rhs.data();
|
|
}
|
|
|
|
|
|
inline bool Foam::minData::operator!=
|
|
(
|
|
const Foam::minData& rhs
|
|
) const
|
|
{
|
|
return !(*this == rhs);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
|
|
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Foam::Ostream& os,
|
|
const Foam::minData& wDist
|
|
)
|
|
{
|
|
return os << wDist.data_;
|
|
}
|
|
|
|
|
|
Foam::Istream& Foam::operator>>
|
|
(
|
|
Foam::Istream& is,
|
|
Foam::minData& wDist
|
|
)
|
|
{
|
|
return is >> wDist.data_;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|