mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- now warn about the following: * the bounding box does not overlap wih the global mesh * plane does not intersect the (valid) bounding box * plane does not intersect the global mesh - add bounding to the "plane" variant of a sampled plane.
201 lines
5.3 KiB
C++
201 lines
5.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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::cuttingPlane
|
|
|
|
Description
|
|
Constructs plane through mesh.
|
|
|
|
No attempt at resolving degenerate cases. Since the cut faces are
|
|
usually quite ugly, they will always be triangulated.
|
|
|
|
Note
|
|
When the cutting plane coincides with a mesh face, the cell edge on the
|
|
positive side of the plane is taken.
|
|
|
|
SourceFiles
|
|
cuttingPlane.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef cuttingPlane_H
|
|
#define cuttingPlane_H
|
|
|
|
#include "plane.H"
|
|
#include "pointField.H"
|
|
#include "faceList.H"
|
|
#include "MeshedSurface.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class primitiveMesh;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class cuttingPlane Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class cuttingPlane
|
|
:
|
|
public plane,
|
|
public MeshedSurface<face>
|
|
{
|
|
//- Private typedef for convenience
|
|
typedef MeshedSurface<face> MeshStorage;
|
|
|
|
|
|
// Private data
|
|
|
|
//- List of cells cut by the plane
|
|
labelList meshCells_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Determine cut cells, possibly restricted to a list of cells
|
|
void calcCutCells
|
|
(
|
|
const primitiveMesh&,
|
|
const scalarField& dotProducts,
|
|
const labelUList& cellIdLabels = labelUList::null()
|
|
);
|
|
|
|
//- Determine intersection points (cutPoints).
|
|
void intersectEdges
|
|
(
|
|
const primitiveMesh&,
|
|
const scalarField& dotProducts,
|
|
List<label>& edgePoint
|
|
);
|
|
|
|
//- Walk circumference of cell, starting from startEdgeI crossing
|
|
// only cut edges. Record cutPoint labels in faceVerts.
|
|
static bool walkCell
|
|
(
|
|
const primitiveMesh&,
|
|
const labelUList& edgePoint,
|
|
const label celli,
|
|
const label startEdgeI,
|
|
DynamicList<label>& faceVerts
|
|
);
|
|
|
|
//- Determine cuts for all cut cells.
|
|
void walkCellCuts
|
|
(
|
|
const primitiveMesh& mesh,
|
|
const bool triangulate,
|
|
const labelUList& edgePoint
|
|
);
|
|
|
|
|
|
protected:
|
|
|
|
// Constructors
|
|
|
|
//- Construct plane description without cutting
|
|
cuttingPlane(const plane& pln);
|
|
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Recut mesh with existing plane, restricted to a list of cells
|
|
void reCut
|
|
(
|
|
const primitiveMesh&,
|
|
const bool triangulate,
|
|
const labelUList& cellIdLabels = labelUList::null()
|
|
);
|
|
|
|
//- Remap action on triangulation or cleanup
|
|
virtual void remapFaces(const labelUList& faceMap);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from plane and mesh reference,
|
|
// possibly restricted to a list of cells
|
|
cuttingPlane
|
|
(
|
|
const plane& pln,
|
|
const primitiveMesh& mesh,
|
|
const bool triangulate,
|
|
const labelUList& cellIdLabels = labelUList::null()
|
|
);
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Return plane used
|
|
const plane& planeDesc() const
|
|
{
|
|
return static_cast<const plane&>(*this);
|
|
}
|
|
|
|
//- Return List of cells cut by the plane
|
|
const labelList& meshCells() const
|
|
{
|
|
return meshCells_;
|
|
}
|
|
|
|
//- Return true or false to question: have any cells been cut?
|
|
bool cut() const
|
|
{
|
|
return meshCells_.size();
|
|
}
|
|
|
|
//- Sample the cell field
|
|
template<class Type>
|
|
tmp<Field<Type>> sample(const Field<Type>&) const;
|
|
|
|
template<class Type>
|
|
tmp<Field<Type>> sample(const tmp<Field<Type>>&) const;
|
|
|
|
|
|
// Member Operators
|
|
|
|
//- Copy assignment
|
|
void operator=(const cuttingPlane& rhs);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
#include "cuttingPlaneTemplates.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|