mapDistributePolyMesh Class Reference

Class containing mesh-to-mesh mapping information after a mesh distribution where we send parts of meshes (using subsetting) to other processors and receive and reconstruct mesh. More...

Inheritance diagram for mapDistributePolyMesh:
[legend]

Public Member Functions

 mapDistributePolyMesh ()
 Construct null. More...
 
 mapDistributePolyMesh (mapDistributePolyMesh &&map)
 Move construct. More...
 
 mapDistributePolyMesh (const polyMesh &mesh, const label nOldPoints, const label nOldFaces, const label nOldCells, labelList &&oldPatchStarts, labelList &&oldPatchNMeshPoints, labelListList &&subPointMap, labelListList &&subFaceMap, labelListList &&subCellMap, labelListList &&subPatchMap, labelListList &&constructPointMap, labelListList &&constructFaceMap, labelListList &&constructCellMap, labelListList &&constructPatchMap, const bool subFaceHasFlip=false, const bool constructFaceHasFlip=false)
 Construct from components. Note that mesh has to be changed already. More...
 
 mapDistributePolyMesh (const label nOldPoints, const label nOldFaces, const label nOldCells, labelList &&oldPatchStarts, labelList &&oldPatchNMeshPoints, mapDistribute &&pointMap, mapDistribute &&faceMap, mapDistribute &&cellMap, mapDistribute &&patchMap)
 Move construct from components. More...
 
 mapDistributePolyMesh (Istream &is)
 Construct from Istream. More...
 
label nOldPoints () const
 Number of points in mesh before distribution. More...
 
label nOldFaces () const
 Number of faces in mesh before distribution. More...
 
label nOldCells () const
 Number of cells in mesh before distribution. More...
 
const labelListoldPatchSizes () const
 List of the old patch sizes. More...
 
const labelListoldPatchStarts () const
 List of the old patch start labels. More...
 
const labelListoldPatchNMeshPoints () const
 List of numbers of mesh points per old patch. More...
 
const mapDistributepointMap () const
 Point distribute map. More...
 
const mapDistributefaceMap () const
 Face distribute map. More...
 
const mapDistributecellMap () const
 Cell distribute map. More...
 
const mapDistributepatchMap () const
 Patch distribute map. More...
 
void transfer (mapDistributePolyMesh &map)
 Transfer the contents of the argument and annul the argument. More...
 
template<class T >
void distributePointData (List< T > &lst) const
 Distribute list of point data. More...
 
template<class T >
void distributeFaceData (List< T > &lst) const
 Distribute list of face data. More...
 
template<class T >
void distributeCellData (List< T > &lst) const
 Distribute list of cell data. More...
 
template<class T >
void distributePatchData (List< T > &lst) const
 Distribute list of patch data. More...
 
void distributePointIndices (labelList &pointIDs) const
 Distribute list of point/face/cell/patch indices. More...
 
void distributeFaceIndices (labelList &faceIDs) const
 
void distributeCellIndices (labelList &cellIDs) const
 
void distributePatchIndices (labelList &patchIDs) const
 
void updateMesh (const mapPolyMesh &)
 Correct for topo change. More...
 
void operator= (const mapDistributePolyMesh &map)
 Copy assignment. More...
 
void operator= (mapDistributePolyMesh &&map)
 Move assignment. More...
 

Friends

Istreamoperator>> (Istream &, mapDistributePolyMesh &)
 Read dictionary from Istream. More...
 
Ostreamoperator<< (Ostream &, const mapDistributePolyMesh &)
 Write dictionary to Ostream. More...
 

Detailed Description

Class containing mesh-to-mesh mapping information after a mesh distribution where we send parts of meshes (using subsetting) to other processors and receive and reconstruct mesh.

We store mapping from the bits-to-send to the complete starting mesh (subXXXMap) and from the received bits to their location in the new mesh (constructXXXMap).

Source files

Definition at line 66 of file mapDistributePolyMesh.H.

Constructor & Destructor Documentation

◆ mapDistributePolyMesh() [1/5]

Construct null.

Definition at line 64 of file mapDistributePolyMesh.C.

◆ mapDistributePolyMesh() [2/5]

Move construct.

Definition at line 80 of file mapDistributePolyMesh.C.

◆ mapDistributePolyMesh() [3/5]

mapDistributePolyMesh ( const polyMesh mesh,
const label  nOldPoints,
const label  nOldFaces,
const label  nOldCells,
labelList &&  oldPatchStarts,
labelList &&  oldPatchNMeshPoints,
labelListList &&  subPointMap,
labelListList &&  subFaceMap,
labelListList &&  subCellMap,
labelListList &&  subPatchMap,
labelListList &&  constructPointMap,
labelListList &&  constructFaceMap,
labelListList &&  constructCellMap,
labelListList &&  constructPatchMap,
const bool  subFaceHasFlip = false,
const bool  constructFaceHasFlip = false 
)

Construct from components. Note that mesh has to be changed already.

since uses mesh.nPoints etc as the new size.

Definition at line 91 of file mapDistributePolyMesh.C.

◆ mapDistributePolyMesh() [4/5]

mapDistributePolyMesh ( const label  nOldPoints,
const label  nOldFaces,
const label  nOldCells,
labelList &&  oldPatchStarts,
labelList &&  oldPatchNMeshPoints,
mapDistribute &&  pointMap,
mapDistribute &&  faceMap,
mapDistribute &&  cellMap,
mapDistribute &&  patchMap 
)

Move construct from components.

Definition at line 155 of file mapDistributePolyMesh.C.

◆ mapDistributePolyMesh() [5/5]

Construct from Istream.

Definition at line 185 of file mapDistributePolyMesh.C.

Member Function Documentation

◆ nOldPoints()

label nOldPoints ( ) const
inline

Number of points in mesh before distribution.

Definition at line 175 of file mapDistributePolyMesh.H.

Referenced by pointSet::distribute().

Here is the caller graph for this function:

◆ nOldFaces()

label nOldFaces ( ) const
inline

Number of faces in mesh before distribution.

Definition at line 181 of file mapDistributePolyMesh.H.

Referenced by faceSet::distribute().

Here is the caller graph for this function:

◆ nOldCells()

label nOldCells ( ) const
inline

Number of cells in mesh before distribution.

Definition at line 187 of file mapDistributePolyMesh.H.

Referenced by cellSet::distribute().

Here is the caller graph for this function:

◆ oldPatchSizes()

const labelList& oldPatchSizes ( ) const
inline

List of the old patch sizes.

Definition at line 193 of file mapDistributePolyMesh.H.

◆ oldPatchStarts()

const labelList& oldPatchStarts ( ) const
inline

List of the old patch start labels.

Definition at line 199 of file mapDistributePolyMesh.H.

◆ oldPatchNMeshPoints()

const labelList& oldPatchNMeshPoints ( ) const
inline

List of numbers of mesh points per old patch.

Definition at line 205 of file mapDistributePolyMesh.H.

◆ pointMap()

const mapDistribute& pointMap ( ) const
inline

Point distribute map.

Definition at line 211 of file mapDistributePolyMesh.H.

Referenced by hexRef8Data::distribute().

Here is the caller graph for this function:

◆ faceMap()

const mapDistribute& faceMap ( ) const
inline

Face distribute map.

Definition at line 217 of file mapDistributePolyMesh.H.

◆ cellMap()

const mapDistribute& cellMap ( ) const
inline

Cell distribute map.

Definition at line 223 of file mapDistributePolyMesh.H.

Referenced by hexRef8Data::distribute(), and refinementHistory::distribute().

Here is the caller graph for this function:

◆ patchMap()

const mapDistribute& patchMap ( ) const
inline

Patch distribute map.

Definition at line 229 of file mapDistributePolyMesh.H.

◆ transfer()

void transfer ( mapDistributePolyMesh map)

Transfer the contents of the argument and annul the argument.

Definition at line 193 of file mapDistributePolyMesh.C.

Referenced by IOmapDistributePolyMesh::IOmapDistributePolyMesh().

Here is the caller graph for this function:

◆ distributePointData()

void distributePointData ( List< T > &  lst) const
inline

Distribute list of point data.

Definition at line 242 of file mapDistributePolyMesh.H.

References mapDistribute::distribute().

Referenced by pointBitSet::distribute(), pointSet::distribute(), and hexRef8::distribute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ distributeFaceData()

void distributeFaceData ( List< T > &  lst) const
inline

Distribute list of face data.

Definition at line 249 of file mapDistributePolyMesh.H.

References mapDistribute::distribute().

Referenced by faceBitSet::distribute(), faceBoolSet::distribute(), faceSet::distribute(), and meshRefinement::distribute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ distributeCellData()

void distributeCellData ( List< T > &  lst) const
inline

Distribute list of cell data.

Definition at line 256 of file mapDistributePolyMesh.H.

References mapDistribute::distribute().

Referenced by cellSet::distribute(), and hexRef8::distribute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ distributePatchData()

void distributePatchData ( List< T > &  lst) const
inline

Distribute list of patch data.

Definition at line 263 of file mapDistributePolyMesh.H.

References mapDistribute::distribute().

Here is the call graph for this function:

◆ distributePointIndices()

void distributePointIndices ( labelList pointIDs) const

Distribute list of point/face/cell/patch indices.

(Converts to boolList, distributes boolList and reconstructs)

Definition at line 212 of file mapDistributePolyMesh.C.

References Foam::findIndices().

Here is the call graph for this function:

◆ distributeFaceIndices()

void distributeFaceIndices ( labelList faceIDs) const

Definition at line 228 of file mapDistributePolyMesh.C.

References Foam::findIndices().

Here is the call graph for this function:

◆ distributeCellIndices()

void distributeCellIndices ( labelList cellIDs) const

Definition at line 244 of file mapDistributePolyMesh.C.

References Foam::findIndices().

Here is the call graph for this function:

◆ distributePatchIndices()

void distributePatchIndices ( labelList patchIDs) const

Definition at line 260 of file mapDistributePolyMesh.C.

References Foam::findIndices().

Here is the call graph for this function:

◆ updateMesh()

void updateMesh ( const mapPolyMesh )
inline

Correct for topo change.

Definition at line 279 of file mapDistributePolyMesh.H.

References NotImplemented.

◆ operator=() [1/2]

void operator= ( const mapDistributePolyMesh map)

Copy assignment.

Definition at line 284 of file mapDistributePolyMesh.C.

Referenced by IOmapDistributePolyMesh::IOmapDistributePolyMesh().

Here is the caller graph for this function:

◆ operator=() [2/2]

void operator= ( mapDistributePolyMesh &&  map)

Move assignment.

Definition at line 299 of file mapDistributePolyMesh.C.

Friends And Related Function Documentation

◆ operator>>

Istream& operator>> ( Istream ,
mapDistributePolyMesh  
)
friend

Read dictionary from Istream.

◆ operator<<

Ostream& operator<< ( Ostream ,
const mapDistributePolyMesh  
)
friend

Write dictionary to Ostream.


The documentation for this class was generated from the following files: