Files
openfoam/src/dynamicMesh/slidingInterface/slidingInterface.H
Hrvoje Jasak 7827177575 Polyhedral AMR
2024-02-12 16:16:46 +00:00

398 lines
12 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2020 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::slidingInterface
Description
Sliding interface mesh modifier. Given two face zones, couple the
master and slave side using a cutting procedure.
The coupled faces are collected into the "coupled" zone and can become
either internal or placed into a master and slave coupled zone. The
remaining faces (uncovered master or slave) are placed into the master
and slave patch.
The definition of the sliding interface can be either integral or partial.
Integral interface implies that the slave side completely covers
the master (i.e. no faces are uncovered); partial interface
implies that the uncovered part of master/slave face zone should
become boundary faces.
SourceFiles
slidingInterface.C
coupleSlidingInterface.C
decoupleSlidingInterface.C
slidingInterfaceProjectPoints.C
slidingInterfaceAttachedAddressing.C
slidingInterfaceClearCouple.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_slidingInterface_H
#define Foam_slidingInterface_H
#include "polyMeshModifier.H"
#include "primitivePatch.H"
#include "polyPatchID.H"
#include "ZoneIDs.H"
#include "intersection.H"
#include "Pair.H"
#include "objectHit.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class slidingInterface Declaration
\*---------------------------------------------------------------------------*/
class slidingInterface
:
public polyMeshModifier
{
public:
// Public Enumerations
//- Type of match
enum typeOfMatch
{
INTEGRAL,
PARTIAL
};
//- Names for the types of matches
static const Enum<typeOfMatch> typeOfMatchNames;
private:
// Private Data
//- Master face zone ID
faceZoneID masterFaceZoneID_;
//- Slave face zone ID
faceZoneID slaveFaceZoneID_;
//- Cut point zone ID
pointZoneID cutPointZoneID_;
//- Cut face zone ID
faceZoneID cutFaceZoneID_;
//- Master patch ID
polyPatchID masterPatchID_;
//- Slave patch ID
polyPatchID slavePatchID_;
//- Type of match
const typeOfMatch matchType_;
//- Couple-decouple operation.
// If the interface is coupled, decouple it and vice versa.
// Used in conjunction with automatic mesh motion
mutable Switch coupleDecouple_;
//- State of the modifier
mutable Switch attached_;
//- Point projection algorithm
intersection::algorithm projectionAlgo_;
//- Trigger topological change
mutable bool trigger_;
// Tolerances. Initialised to static ones below.
//- Point merge tolerance
scalar pointMergeTol_;
//- Edge merge tolerance
scalar edgeMergeTol_;
//- Estimated number of faces an edge goes through
label nFacesPerSlaveEdge_;
//- Edge-face interaction escape limit
label edgeFaceEscapeLimit_;
//- Integral match point adjustment tolerance
scalar integralAdjTol_;
//- Edge intersection master catch fraction
scalar edgeMasterCatchFraction_;
//- Edge intersection co-planar tolerance
scalar edgeCoPlanarTol_;
//- Edge end cut-off tolerance
scalar edgeEndCutoffTol_;
// Private addressing data.
//- Cut face master face. Gives the index of face in master patch
// the cut face has been created from. For a slave-only face
// this will be -1
mutable std::unique_ptr<labelList> cutFaceMasterPtr_;
//- Cut face slave face. Gives the index of face in slave patch
// the cut face has been created from. For a master-only face
// this will be -1
mutable std::unique_ptr<labelList> cutFaceSlavePtr_;
//- Master zone faceCells
mutable std::unique_ptr<labelList> masterFaceCellsPtr_;
//- Slave zone faceCells
mutable std::unique_ptr<labelList> slaveFaceCellsPtr_;
//- Master stick-out faces
mutable std::unique_ptr<labelList> masterStickOutFacesPtr_;
//- Slave stick-out faces
mutable std::unique_ptr<labelList> slaveStickOutFacesPtr_;
//- Retired point mapping.
// For every retired slave side point, gives the label of the
// master point that replaces it
mutable std::unique_ptr<Map<label>> retiredPointMapPtr_;
//- Cut edge pairs
// For cut points created by intersection two edges,
// store the master-slave edge pair used in creation
mutable std::unique_ptr<Map<Pair<edge>>> cutPointEdgePairMapPtr_;
//- Slave point hit. The index of master point hit by the
// slave point in projection. For no point hit, set to -1
mutable std::unique_ptr<labelList> slavePointPointHitsPtr_;
//- Slave edge hit. The index of master edge hit by the
// slave point in projection. For point or no edge hit, set to -1
mutable std::unique_ptr<labelList> slavePointEdgeHitsPtr_;
//- Slave face hit. The index of master face hit by the
// slave point in projection.
mutable std::unique_ptr<List<objectHit>> slavePointFaceHitsPtr_;
//- Master point edge hit. The index of slave edge hit by
// a master point. For no hit set to -1
mutable std::unique_ptr<labelList> masterPointEdgeHitsPtr_;
//- Projected slave points
mutable std::unique_ptr<pointField> projectedSlavePointsPtr_;
// Private Member Functions
//- No copy construct
slidingInterface(const slidingInterface&) = delete;
//- No copy assignment
void operator=(const slidingInterface&) = delete;
//- Clear out
void clearOut() const;
//- Check validity of construction data
void checkDefinition();
//- Calculate attached addressing
void calcAttachedAddressing() const;
//- Calculate decoupled zone face-cell addressing
void renumberAttachedAddressing(const mapPolyMesh&) const;
//- Clear attached addressing
void clearAttachedAddressing() const;
// Topological changes
//- Master faceCells
const labelList& masterFaceCells() const;
//- Slave faceCells
const labelList& slaveFaceCells() const;
//- Master stick-out faces
const labelList& masterStickOutFaces() const;
//- Slave stick-out faces
const labelList& slaveStickOutFaces() const;
//- Retired point map
const Map<label>& retiredPointMap() const;
//- Cut point edge pair map
const Map<Pair<edge>>& cutPointEdgePairMap() const;
//- Clear addressing
void clearAddressing() const;
//- Project slave points and compare with the current projection.
// If the projection has changed, the sliding interface
// changes topologically
bool projectPoints() const;
//- Couple sliding interface
void coupleInterface(batchPolyTopoChange& ref) const;
//- Clear projection
void clearPointProjection() const;
//- Clear old couple
void clearCouple(batchPolyTopoChange& ref) const;
//- Decouple interface (returns it to decoupled state)
// Note: this should not be used in normal operation of the
// sliding mesh, but only to return the mesh to its
// original state
void decoupleInterface(batchPolyTopoChange& ref) const;
// Static data members
//- Point merge tolerance
static const scalar pointMergeTolDefault_;
//- Edge merge tolerance
static const scalar edgeMergeTolDefault_;
//- Estimated number of faces an edge goes through
static const label nFacesPerSlaveEdgeDefault_;
//- Edge-face interaction escape limit
static const label edgeFaceEscapeLimitDefault_;
//- Integral match point adjustment tolerance
static const scalar integralAdjTolDefault_;
//- Edge intersection master catch fraction
static const scalar edgeMasterCatchFractionDefault_;
//- Edge intersection co-planar tolerance
static const scalar edgeCoPlanarTolDefault_;
//- Edge end cut-off tolerance
static const scalar edgeEndCutoffTolDefault_;
public:
//- Runtime type information
TypeName("slidingInterface");
// Constructors
//- Construct from components
slidingInterface
(
const word& name,
const label index,
const polyTopoChanger& mme,
const word& masterFaceZoneName,
const word& slaveFaceZoneName,
const word& cutPointZoneName,
const word& cutFaceZoneName,
const word& masterPatchName,
const word& slavePatchName,
const typeOfMatch tom,
const bool coupleDecouple = false,
const intersection::algorithm algo = intersection::VISIBLE
);
//- Construct from dictionary
slidingInterface
(
const word& name,
const dictionary& dict,
const label index,
const polyTopoChanger& mme
);
//- Destructor
virtual ~slidingInterface() = default;
// Member Functions
//- Return master face zone ID
const faceZoneID& masterFaceZoneID() const;
//- Return slave face zone ID
const faceZoneID& slaveFaceZoneID() const;
//- Return true if attached
bool attached() const
{
return attached_;
}
//- Check for topology change
virtual bool changeTopology() const;
//- Insert the layer addition/removal instructions
// into the topological change
virtual void setRefinement(batchPolyTopoChange&) const;
//- Modify motion points to comply with the topological change
virtual void modifyMotionPoints(pointField& motionPoints) const;
//- Force recalculation of locally stored data on topological change
virtual void updateMesh(const mapPolyMesh&);
//- Return projected points for a slave patch
const pointField& pointProjection() const;
//- Set the tolerances from the values in a dictionary
void setTolerances(const dictionary&, bool report=false);
//- Write
virtual void write(Ostream&) const;
//- Write dictionary
virtual void writeDict(Ostream&) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //