This new mapping structure is designed to support run-time mesh-to-mesh mapping to allow arbitrary changes to the mesh structure, for example during extreme motion requiring significant topology change including region disconnection etc.
225 lines
6.0 KiB
C++
225 lines
6.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2022 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/>.
|
|
|
|
Class
|
|
Foam::wallPoint
|
|
|
|
Description
|
|
Holds information regarding nearest wall point. Used in wall distance
|
|
calculation.
|
|
|
|
SourceFiles
|
|
wallPointI.H
|
|
wallPoint.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef wallPoint_H
|
|
#define wallPoint_H
|
|
|
|
#include "point.H"
|
|
#include "label.H"
|
|
#include "scalar.H"
|
|
#include "tensor.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward declaration of classes
|
|
class polyPatch;
|
|
class polyMesh;
|
|
class transformer;
|
|
|
|
|
|
// Forward declaration of friend functions and operators
|
|
|
|
class wallPoint;
|
|
|
|
Ostream& operator<<(Ostream&, const wallPoint&);
|
|
Istream& operator>>(Istream&, wallPoint&);
|
|
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class wallPoint Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class wallPoint
|
|
{
|
|
// Private Data
|
|
|
|
//- Position of nearest wall center
|
|
point origin_;
|
|
|
|
//- Normal distance (squared) from cellcenter to origin
|
|
scalar distSqr_;
|
|
|
|
|
|
protected:
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Evaluate distance to point. Update distSqr, origin from whomever
|
|
// is nearer pt. Return true if w2 is closer to point,
|
|
// false otherwise.
|
|
template<class TrackingData>
|
|
inline bool update
|
|
(
|
|
const point&,
|
|
const wallPoint& w2,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct null
|
|
inline wallPoint();
|
|
|
|
//- Construct from origin, distance
|
|
inline wallPoint(const point& origin, const scalar distSqr);
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Access
|
|
|
|
inline const point& origin() const;
|
|
|
|
inline point& origin();
|
|
|
|
inline scalar distSqr() const;
|
|
|
|
inline scalar& distSqr();
|
|
|
|
template<class TrackingData>
|
|
inline scalar dist(TrackingData& td) const;
|
|
|
|
|
|
// Needed by FaceCellWave
|
|
|
|
//- Check whether origin has been changed at all or
|
|
// still contains original (invalid) value.
|
|
template<class TrackingData>
|
|
inline bool valid(TrackingData& td) const;
|
|
|
|
//- Check for identical geometrical data. Used for cyclics checking.
|
|
template<class TrackingData>
|
|
inline bool sameGeometry
|
|
(
|
|
const polyMesh&,
|
|
const wallPoint&,
|
|
const scalar,
|
|
TrackingData& td
|
|
) const;
|
|
|
|
//- Transform across an interface
|
|
template<class TrackingData>
|
|
inline void transform
|
|
(
|
|
const polyPatch& patch,
|
|
const label patchFacei,
|
|
const transformer& transform,
|
|
TrackingData& td
|
|
);
|
|
|
|
//- Influence of neighbouring face.
|
|
template<class TrackingData>
|
|
inline bool updateCell
|
|
(
|
|
const polyMesh&,
|
|
const label thisCelli,
|
|
const label neighbourFacei,
|
|
const wallPoint& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
);
|
|
|
|
//- Influence of neighbouring cell.
|
|
template<class TrackingData>
|
|
inline bool updateFace
|
|
(
|
|
const polyMesh&,
|
|
const label thisFacei,
|
|
const label neighbourCelli,
|
|
const wallPoint& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
);
|
|
|
|
//- Influence of different value on same face.
|
|
template<class TrackingData>
|
|
inline bool updateFace
|
|
(
|
|
const polyMesh&,
|
|
const label thisFacei,
|
|
const wallPoint& neighbourInfo,
|
|
const scalar tol,
|
|
TrackingData& td
|
|
);
|
|
|
|
//- Same (like operator==)
|
|
template<class TrackingData>
|
|
inline bool equal(const wallPoint&, TrackingData& td) const;
|
|
|
|
|
|
// Member Operators
|
|
|
|
// Needed for List IO
|
|
inline bool operator==(const wallPoint&) const;
|
|
inline bool operator!=(const wallPoint&) const;
|
|
|
|
|
|
// IOstream Operators
|
|
|
|
friend Ostream& operator<<(Ostream&, const wallPoint&);
|
|
friend Istream& operator>>(Istream&, wallPoint&);
|
|
};
|
|
|
|
|
|
//- Data associated with wallPoint type are contiguous
|
|
template<>
|
|
inline bool contiguous<wallPoint>()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "wallPointI.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|