petsc-3.8.4 2018-03-24
Report Typos and Errors

DMPlexCreateNeighborCSR

Create a mesh graph (cell-cell adjacency) in parallel CSR format.

Synopsis

#include "petscdmplex.h"   
PetscErrorCode DMPlexCreateNeighborCSR(DM dm, PetscInt cellHeight, PetscInt *numVertices, PetscInt **offsets, PetscInt **adjacency)
Collective

Input Arguments

dm - The DMPlex
cellHeight - The height of mesh points to treat as cells (default should be 0)

Output Arguments

numVertices - The number of local vertices in the graph, or cells in the mesh.
offsets - The offset to the adjacency list for each cell
adjacency - The adjacency list for all cells

Note: This is suitable for input to a mesh partitioner like ParMetis.

See Also

DMPlexCreate()

Level:advanced
Location:
src/dm/impls/plex/plexpartition.c
Index of all DMPLEX routines
Table of Contents for all manual pages
Index of all manual pages

Examples

src/ts/examples/tutorials/ex11.c.html