xref: /petsc/src/dm/impls/plex/plexcreate.c (revision 276c5506312304d9c58828fa177e3f5c76c17b23)
1552f7358SJed Brown #define PETSCDM_DLL
2af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h>    /*I   "petscdmplex.h"   I*/
3552f7358SJed Brown #include <petscdmda.h>
40c312b8eSJed Brown #include <petscsf.h>
5552f7358SJed Brown 
61df5d5c5SMatthew G. Knepley /*@
71df5d5c5SMatthew G. Knepley   DMPlexCreateDoublet - Creates a mesh of two cells of the specified type, optionally with later refinement.
81df5d5c5SMatthew G. Knepley 
91df5d5c5SMatthew G. Knepley   Collective on MPI_Comm
101df5d5c5SMatthew G. Knepley 
111df5d5c5SMatthew G. Knepley   Input Parameters:
121df5d5c5SMatthew G. Knepley + comm - The communicator for the DM object
131df5d5c5SMatthew G. Knepley . dim - The spatial dimension
141df5d5c5SMatthew G. Knepley . simplex - Flag for simplicial cells, otherwise they are tensor product cells
151df5d5c5SMatthew G. Knepley . interpolate - Flag to create intermediate mesh pieces (edges, faces)
161df5d5c5SMatthew G. Knepley . refinementUniform - Flag for uniform parallel refinement
171df5d5c5SMatthew G. Knepley - refinementLimit - A nonzero number indicates the largest admissible volume for a refined cell
181df5d5c5SMatthew G. Knepley 
191df5d5c5SMatthew G. Knepley   Output Parameter:
201df5d5c5SMatthew G. Knepley . dm - The DM object
211df5d5c5SMatthew G. Knepley 
221df5d5c5SMatthew G. Knepley   Level: beginner
231df5d5c5SMatthew G. Knepley 
241df5d5c5SMatthew G. Knepley .keywords: DM, create
251df5d5c5SMatthew G. Knepley .seealso: DMSetType(), DMCreate()
261df5d5c5SMatthew G. Knepley @*/
271df5d5c5SMatthew G. Knepley PetscErrorCode DMPlexCreateDoublet(MPI_Comm comm, PetscInt dim, PetscBool simplex, PetscBool interpolate, PetscBool refinementUniform, PetscReal refinementLimit, DM *newdm)
281df5d5c5SMatthew G. Knepley {
291df5d5c5SMatthew G. Knepley   DM             dm;
301df5d5c5SMatthew G. Knepley   PetscInt       p;
311df5d5c5SMatthew G. Knepley   PetscMPIInt    rank;
321df5d5c5SMatthew G. Knepley   PetscErrorCode ierr;
331df5d5c5SMatthew G. Knepley 
341df5d5c5SMatthew G. Knepley   PetscFunctionBegin;
351df5d5c5SMatthew G. Knepley   ierr = DMCreate(comm, &dm);CHKERRQ(ierr);
361df5d5c5SMatthew G. Knepley   ierr = DMSetType(dm, DMPLEX);CHKERRQ(ierr);
37c73cfb54SMatthew G. Knepley   ierr = DMSetDimension(dm, dim);CHKERRQ(ierr);
381df5d5c5SMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
39ce78fa2fSMatthew G. Knepley   switch (dim) {
40ce78fa2fSMatthew G. Knepley   case 2:
41ce78fa2fSMatthew G. Knepley     if (simplex) {ierr = PetscObjectSetName((PetscObject) dm, "triangular");CHKERRQ(ierr);}
42ce78fa2fSMatthew G. Knepley     else         {ierr = PetscObjectSetName((PetscObject) dm, "quadrilateral");CHKERRQ(ierr);}
43ce78fa2fSMatthew G. Knepley     break;
44ce78fa2fSMatthew G. Knepley   case 3:
45ce78fa2fSMatthew G. Knepley     if (simplex) {ierr = PetscObjectSetName((PetscObject) dm, "tetrahedral");CHKERRQ(ierr);}
46ce78fa2fSMatthew G. Knepley     else         {ierr = PetscObjectSetName((PetscObject) dm, "hexahedral");CHKERRQ(ierr);}
47ce78fa2fSMatthew G. Knepley     break;
48ce78fa2fSMatthew G. Knepley   default:
49ce78fa2fSMatthew G. Knepley     SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %d", dim);
50ce78fa2fSMatthew G. Knepley   }
511df5d5c5SMatthew G. Knepley   if (rank) {
521df5d5c5SMatthew G. Knepley     PetscInt numPoints[2] = {0, 0};
531df5d5c5SMatthew G. Knepley     ierr = DMPlexCreateFromDAG(dm, 1, numPoints, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
541df5d5c5SMatthew G. Knepley   } else {
551df5d5c5SMatthew G. Knepley     switch (dim) {
561df5d5c5SMatthew G. Knepley     case 2:
571df5d5c5SMatthew G. Knepley       if (simplex) {
581df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {4, 2};
591df5d5c5SMatthew G. Knepley         PetscInt    coneSize[6]         = {3, 3, 0, 0, 0, 0};
601df5d5c5SMatthew G. Knepley         PetscInt    cones[6]            = {2, 3, 4,  5, 4, 3};
611df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[6] = {0, 0, 0,  0, 0, 0};
621df5d5c5SMatthew G. Knepley         PetscScalar vertexCoords[8]     = {-0.5, 0.5, 0.0, 0.0, 0.0, 1.0, 0.5, 0.5};
631df5d5c5SMatthew G. Knepley         PetscInt    markerPoints[8]     = {2, 1, 3, 1, 4, 1, 5, 1};
641df5d5c5SMatthew G. Knepley 
651df5d5c5SMatthew G. Knepley         ierr = DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
66c58f1c22SToby Isaac         for (p = 0; p < 4; ++p) {ierr = DMSetLabelValue(dm, "marker", markerPoints[p*2], markerPoints[p*2+1]);CHKERRQ(ierr);}
671df5d5c5SMatthew G. Knepley       } else {
681df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {6, 2};
691df5d5c5SMatthew G. Knepley         PetscInt    coneSize[8]         = {4, 4, 0, 0, 0, 0, 0, 0};
701df5d5c5SMatthew G. Knepley         PetscInt    cones[8]            = {2, 3, 4, 5,  3, 6, 7, 4};
711df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[8] = {0, 0, 0, 0,  0, 0, 0, 0};
721df5d5c5SMatthew G. Knepley         PetscScalar vertexCoords[12]    = {-1.0, -0.5,  0.0, -0.5,  0.0, 0.5,  -1.0, 0.5,  1.0, -0.5,  1.0, 0.5};
731df5d5c5SMatthew G. Knepley 
741df5d5c5SMatthew G. Knepley         ierr = DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
751df5d5c5SMatthew G. Knepley       }
761df5d5c5SMatthew G. Knepley       break;
771df5d5c5SMatthew G. Knepley     case 3:
781df5d5c5SMatthew G. Knepley       if (simplex) {
791df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {5, 2};
801df5d5c5SMatthew G. Knepley         PetscInt    coneSize[7]         = {4, 4, 0, 0, 0, 0, 0};
811df5d5c5SMatthew G. Knepley         PetscInt    cones[8]            = {4, 3, 5, 2,  5, 3, 4, 6};
821df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[8] = {0, 0, 0, 0,  0, 0, 0, 0};
831df5d5c5SMatthew G. Knepley         PetscScalar vertexCoords[15]    = {-1.0, 0.0, 0.0,  0.0, -1.0, 0.0,  0.0, 0.0, 1.0,  0.0, 1.0, 0.0,  1.0, 0.0, 0.0};
841df5d5c5SMatthew G. Knepley         PetscInt    markerPoints[10]    = {2, 1, 3, 1, 4, 1, 5, 1, 6, 1};
851df5d5c5SMatthew G. Knepley 
861df5d5c5SMatthew G. Knepley         ierr = DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
87c58f1c22SToby Isaac         for (p = 0; p < 5; ++p) {ierr = DMSetLabelValue(dm, "marker", markerPoints[p*2], markerPoints[p*2+1]);CHKERRQ(ierr);}
881df5d5c5SMatthew G. Knepley       } else {
891df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]         = {12, 2};
901df5d5c5SMatthew G. Knepley         PetscInt    coneSize[14]         = {8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
911df5d5c5SMatthew G. Knepley         PetscInt    cones[16]            = {2, 3, 4, 5, 6, 7, 8, 9,  5, 4, 10, 11, 7, 12, 13, 8};
921df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[16] = {0, 0, 0, 0, 0, 0, 0, 0,  0, 0,  0,  0, 0,  0,  0, 0};
931df5d5c5SMatthew G. Knepley         PetscScalar vertexCoords[36]     = {-1.0, -0.5, -0.5,  -1.0,  0.5, -0.5,  0.0,  0.5, -0.5,   0.0, -0.5, -0.5,
941df5d5c5SMatthew G. Knepley                                             -1.0, -0.5,  0.5,   0.0, -0.5,  0.5,  0.0,  0.5,  0.5,  -1.0,  0.5,  0.5,
951df5d5c5SMatthew G. Knepley                                              1.0,  0.5, -0.5,   1.0, -0.5, -0.5,  1.0, -0.5,  0.5,   1.0,  0.5,  0.5};
961df5d5c5SMatthew G. Knepley 
971df5d5c5SMatthew G. Knepley         ierr = DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
981df5d5c5SMatthew G. Knepley       }
991df5d5c5SMatthew G. Knepley       break;
1001df5d5c5SMatthew G. Knepley     default:
1011df5d5c5SMatthew G. Knepley       SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %d", dim);
1021df5d5c5SMatthew G. Knepley     }
1031df5d5c5SMatthew G. Knepley   }
1041df5d5c5SMatthew G. Knepley   *newdm = dm;
1051df5d5c5SMatthew G. Knepley   if (refinementLimit > 0.0) {
1061df5d5c5SMatthew G. Knepley     DM rdm;
1071df5d5c5SMatthew G. Knepley     const char *name;
1081df5d5c5SMatthew G. Knepley 
1091df5d5c5SMatthew G. Knepley     ierr = DMPlexSetRefinementUniform(*newdm, PETSC_FALSE);CHKERRQ(ierr);
1101df5d5c5SMatthew G. Knepley     ierr = DMPlexSetRefinementLimit(*newdm, refinementLimit);CHKERRQ(ierr);
1111df5d5c5SMatthew G. Knepley     ierr = DMRefine(*newdm, comm, &rdm);CHKERRQ(ierr);
1121df5d5c5SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) *newdm, &name);CHKERRQ(ierr);
1131df5d5c5SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject)    rdm,  name);CHKERRQ(ierr);
1141df5d5c5SMatthew G. Knepley     ierr = DMDestroy(newdm);CHKERRQ(ierr);
1151df5d5c5SMatthew G. Knepley     *newdm = rdm;
1161df5d5c5SMatthew G. Knepley   }
1171df5d5c5SMatthew G. Knepley   if (interpolate) {
118e56d480eSMatthew G. Knepley     DM idm = NULL;
1191df5d5c5SMatthew G. Knepley     const char *name;
1201df5d5c5SMatthew G. Knepley 
1211df5d5c5SMatthew G. Knepley     ierr = DMPlexInterpolate(*newdm, &idm);CHKERRQ(ierr);
1221df5d5c5SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) *newdm, &name);CHKERRQ(ierr);
1231df5d5c5SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject)    idm,  name);CHKERRQ(ierr);
1241df5d5c5SMatthew G. Knepley     ierr = DMPlexCopyCoordinates(*newdm, idm);CHKERRQ(ierr);
125c58f1c22SToby Isaac     ierr = DMCopyLabels(*newdm, idm);CHKERRQ(ierr);
1261df5d5c5SMatthew G. Knepley     ierr = DMDestroy(newdm);CHKERRQ(ierr);
1271df5d5c5SMatthew G. Knepley     *newdm = idm;
1281df5d5c5SMatthew G. Knepley   }
1291df5d5c5SMatthew G. Knepley   {
1301df5d5c5SMatthew G. Knepley     DM refinedMesh     = NULL;
1311df5d5c5SMatthew G. Knepley     DM distributedMesh = NULL;
1321df5d5c5SMatthew G. Knepley 
1331df5d5c5SMatthew G. Knepley     /* Distribute mesh over processes */
13480cf41d5SMatthew G. Knepley     ierr = DMPlexDistribute(*newdm, 0, NULL, &distributedMesh);CHKERRQ(ierr);
1351df5d5c5SMatthew G. Knepley     if (distributedMesh) {
1361df5d5c5SMatthew G. Knepley       ierr = DMDestroy(newdm);CHKERRQ(ierr);
1371df5d5c5SMatthew G. Knepley       *newdm = distributedMesh;
1381df5d5c5SMatthew G. Knepley     }
1391df5d5c5SMatthew G. Knepley     if (refinementUniform) {
1401df5d5c5SMatthew G. Knepley       ierr = DMPlexSetRefinementUniform(*newdm, refinementUniform);CHKERRQ(ierr);
1411df5d5c5SMatthew G. Knepley       ierr = DMRefine(*newdm, comm, &refinedMesh);CHKERRQ(ierr);
1421df5d5c5SMatthew G. Knepley       if (refinedMesh) {
1431df5d5c5SMatthew G. Knepley         ierr = DMDestroy(newdm);CHKERRQ(ierr);
1441df5d5c5SMatthew G. Knepley         *newdm = refinedMesh;
1451df5d5c5SMatthew G. Knepley       }
1461df5d5c5SMatthew G. Knepley     }
1471df5d5c5SMatthew G. Knepley   }
1481df5d5c5SMatthew G. Knepley   PetscFunctionReturn(0);
1491df5d5c5SMatthew G. Knepley }
1501df5d5c5SMatthew G. Knepley 
15126492d91SMatthew G. Knepley /*@
15226492d91SMatthew G. Knepley   DMPlexCreateSquareBoundary - Creates a 1D mesh the is the boundary of a square lattice.
153552f7358SJed Brown 
15426492d91SMatthew G. Knepley   Collective on MPI_Comm
15526492d91SMatthew G. Knepley 
15626492d91SMatthew G. Knepley   Input Parameters:
15726492d91SMatthew G. Knepley + comm  - The communicator for the DM object
15826492d91SMatthew G. Knepley . lower - The lower left corner coordinates
15926492d91SMatthew G. Knepley . upper - The upper right corner coordinates
16026492d91SMatthew G. Knepley - edges - The number of cells in each direction
16126492d91SMatthew G. Knepley 
16226492d91SMatthew G. Knepley   Output Parameter:
16326492d91SMatthew G. Knepley . dm  - The DM object
16426492d91SMatthew G. Knepley 
16526492d91SMatthew G. Knepley   Note: Here is the numbering returned for 2 cells in each direction:
16626492d91SMatthew G. Knepley $ 18--5-17--4--16
16726492d91SMatthew G. Knepley $  |     |     |
16826492d91SMatthew G. Knepley $  6    10     3
16926492d91SMatthew G. Knepley $  |     |     |
17026492d91SMatthew G. Knepley $ 19-11-20--9--15
17126492d91SMatthew G. Knepley $  |     |     |
17226492d91SMatthew G. Knepley $  7     8     2
17326492d91SMatthew G. Knepley $  |     |     |
17426492d91SMatthew G. Knepley $ 12--0-13--1--14
17526492d91SMatthew G. Knepley 
17626492d91SMatthew G. Knepley   Level: beginner
17726492d91SMatthew G. Knepley 
17826492d91SMatthew G. Knepley .keywords: DM, create
17926492d91SMatthew G. Knepley .seealso: DMPlexCreateBoxMesh(), DMPlexCreateCubeBoundary(), DMSetType(), DMCreate()
18026492d91SMatthew G. Knepley @*/
181552f7358SJed Brown PetscErrorCode DMPlexCreateSquareBoundary(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[])
182552f7358SJed Brown {
1831df21d24SMatthew G. Knepley   const PetscInt numVertices    = (edges[0]+1)*(edges[1]+1);
1841df21d24SMatthew G. Knepley   const PetscInt numEdges       = edges[0]*(edges[1]+1) + (edges[0]+1)*edges[1];
185552f7358SJed Brown   PetscInt       markerTop      = 1;
186552f7358SJed Brown   PetscInt       markerBottom   = 1;
187552f7358SJed Brown   PetscInt       markerRight    = 1;
188552f7358SJed Brown   PetscInt       markerLeft     = 1;
189552f7358SJed Brown   PetscBool      markerSeparate = PETSC_FALSE;
190552f7358SJed Brown   Vec            coordinates;
191552f7358SJed Brown   PetscSection   coordSection;
192552f7358SJed Brown   PetscScalar    *coords;
193552f7358SJed Brown   PetscInt       coordSize;
194552f7358SJed Brown   PetscMPIInt    rank;
195552f7358SJed Brown   PetscInt       v, vx, vy;
196552f7358SJed Brown   PetscErrorCode ierr;
197552f7358SJed Brown 
198552f7358SJed Brown   PetscFunctionBegin;
199c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL);CHKERRQ(ierr);
200552f7358SJed Brown   if (markerSeparate) {
2011df21d24SMatthew G. Knepley     markerTop    = 3;
2021df21d24SMatthew G. Knepley     markerBottom = 1;
2031df21d24SMatthew G. Knepley     markerRight  = 2;
2041df21d24SMatthew G. Knepley     markerLeft   = 4;
205552f7358SJed Brown   }
20682f516ccSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr);
207552f7358SJed Brown   if (!rank) {
208552f7358SJed Brown     PetscInt e, ex, ey;
209552f7358SJed Brown 
210552f7358SJed Brown     ierr = DMPlexSetChart(dm, 0, numEdges+numVertices);CHKERRQ(ierr);
211552f7358SJed Brown     for (e = 0; e < numEdges; ++e) {
212552f7358SJed Brown       ierr = DMPlexSetConeSize(dm, e, 2);CHKERRQ(ierr);
213552f7358SJed Brown     }
214552f7358SJed Brown     ierr = DMSetUp(dm);CHKERRQ(ierr); /* Allocate space for cones */
215552f7358SJed Brown     for (vx = 0; vx <= edges[0]; vx++) {
216552f7358SJed Brown       for (ey = 0; ey < edges[1]; ey++) {
217552f7358SJed Brown         PetscInt edge   = vx*edges[1] + ey + edges[0]*(edges[1]+1);
218552f7358SJed Brown         PetscInt vertex = ey*(edges[0]+1) + vx + numEdges;
219da80777bSKarl Rupp         PetscInt cone[2];
220552f7358SJed Brown 
221da80777bSKarl Rupp         cone[0] = vertex; cone[1] = vertex+edges[0]+1;
222552f7358SJed Brown         ierr    = DMPlexSetCone(dm, edge, cone);CHKERRQ(ierr);
223552f7358SJed Brown         if (vx == edges[0]) {
224c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", edge,    markerRight);CHKERRQ(ierr);
225c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", cone[0], markerRight);CHKERRQ(ierr);
226552f7358SJed Brown           if (ey == edges[1]-1) {
227c58f1c22SToby Isaac             ierr = DMSetLabelValue(dm, "marker", cone[1], markerRight);CHKERRQ(ierr);
228c668006fSMatthew G. Knepley             ierr = DMSetLabelValue(dm, "Face Sets", cone[1], markerRight);CHKERRQ(ierr);
229552f7358SJed Brown           }
230552f7358SJed Brown         } else if (vx == 0) {
231c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", edge,    markerLeft);CHKERRQ(ierr);
232c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", cone[0], markerLeft);CHKERRQ(ierr);
233552f7358SJed Brown           if (ey == edges[1]-1) {
234c58f1c22SToby Isaac             ierr = DMSetLabelValue(dm, "marker", cone[1], markerLeft);CHKERRQ(ierr);
235c668006fSMatthew G. Knepley             ierr = DMSetLabelValue(dm, "Face Sets", cone[1], markerLeft);CHKERRQ(ierr);
236552f7358SJed Brown           }
237552f7358SJed Brown         }
238552f7358SJed Brown       }
239552f7358SJed Brown     }
240552f7358SJed Brown     for (vy = 0; vy <= edges[1]; vy++) {
241552f7358SJed Brown       for (ex = 0; ex < edges[0]; ex++) {
242552f7358SJed Brown         PetscInt edge   = vy*edges[0]     + ex;
243552f7358SJed Brown         PetscInt vertex = vy*(edges[0]+1) + ex + numEdges;
244da80777bSKarl Rupp         PetscInt cone[2];
245552f7358SJed Brown 
246da80777bSKarl Rupp         cone[0] = vertex; cone[1] = vertex+1;
247552f7358SJed Brown         ierr    = DMPlexSetCone(dm, edge, cone);CHKERRQ(ierr);
248552f7358SJed Brown         if (vy == edges[1]) {
249c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", edge,    markerTop);CHKERRQ(ierr);
250c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", cone[0], markerTop);CHKERRQ(ierr);
251552f7358SJed Brown           if (ex == edges[0]-1) {
252c58f1c22SToby Isaac             ierr = DMSetLabelValue(dm, "marker", cone[1], markerTop);CHKERRQ(ierr);
253c668006fSMatthew G. Knepley             ierr = DMSetLabelValue(dm, "Face Sets", cone[1], markerTop);CHKERRQ(ierr);
254552f7358SJed Brown           }
255552f7358SJed Brown         } else if (vy == 0) {
256c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", edge,    markerBottom);CHKERRQ(ierr);
257c58f1c22SToby Isaac           ierr = DMSetLabelValue(dm, "marker", cone[0], markerBottom);CHKERRQ(ierr);
258552f7358SJed Brown           if (ex == edges[0]-1) {
259c58f1c22SToby Isaac             ierr = DMSetLabelValue(dm, "marker", cone[1], markerBottom);CHKERRQ(ierr);
260c668006fSMatthew G. Knepley             ierr = DMSetLabelValue(dm, "Face Sets", cone[1], markerBottom);CHKERRQ(ierr);
261552f7358SJed Brown           }
262552f7358SJed Brown         }
263552f7358SJed Brown       }
264552f7358SJed Brown     }
265552f7358SJed Brown   }
266552f7358SJed Brown   ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
267552f7358SJed Brown   ierr = DMPlexStratify(dm);CHKERRQ(ierr);
268552f7358SJed Brown   /* Build coordinates */
2699596c6baSMatthew G. Knepley   ierr = DMSetCoordinateDim(dm, 2);CHKERRQ(ierr);
270c2166f76SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
271972bc18aSToby Isaac   ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
272552f7358SJed Brown   ierr = PetscSectionSetChart(coordSection, numEdges, numEdges + numVertices);CHKERRQ(ierr);
273972bc18aSToby Isaac   ierr = PetscSectionSetFieldComponents(coordSection, 0, 2);CHKERRQ(ierr);
274552f7358SJed Brown   for (v = numEdges; v < numEdges+numVertices; ++v) {
275552f7358SJed Brown     ierr = PetscSectionSetDof(coordSection, v, 2);CHKERRQ(ierr);
276972bc18aSToby Isaac     ierr = PetscSectionSetFieldDof(coordSection, v, 0, 2);CHKERRQ(ierr);
277552f7358SJed Brown   }
278552f7358SJed Brown   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
279552f7358SJed Brown   ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
2808b9ced59SLisandro Dalcin   ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
281da16285aSMichael Lange   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
282552f7358SJed Brown   ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
2838b9ced59SLisandro Dalcin   ierr = VecSetBlockSize(coordinates, 2);CHKERRQ(ierr);
2842eb5907fSJed Brown   ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
285552f7358SJed Brown   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
286552f7358SJed Brown   for (vy = 0; vy <= edges[1]; ++vy) {
287552f7358SJed Brown     for (vx = 0; vx <= edges[0]; ++vx) {
288552f7358SJed Brown       coords[(vy*(edges[0]+1)+vx)*2+0] = lower[0] + ((upper[0] - lower[0])/edges[0])*vx;
289552f7358SJed Brown       coords[(vy*(edges[0]+1)+vx)*2+1] = lower[1] + ((upper[1] - lower[1])/edges[1])*vy;
290552f7358SJed Brown     }
291552f7358SJed Brown   }
292552f7358SJed Brown   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
293552f7358SJed Brown   ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
294552f7358SJed Brown   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
295552f7358SJed Brown   PetscFunctionReturn(0);
296552f7358SJed Brown }
297552f7358SJed Brown 
29826492d91SMatthew G. Knepley /*@
299eaf898f9SPatrick Sanan   DMPlexCreateCubeBoundary - Creates a 2D mesh that is the boundary of a cubic lattice.
300552f7358SJed Brown 
30126492d91SMatthew G. Knepley   Collective on MPI_Comm
30226492d91SMatthew G. Knepley 
30326492d91SMatthew G. Knepley   Input Parameters:
30426492d91SMatthew G. Knepley + comm  - The communicator for the DM object
30526492d91SMatthew G. Knepley . lower - The lower left front corner coordinates
30626492d91SMatthew G. Knepley . upper - The upper right back corner coordinates
30726492d91SMatthew G. Knepley - edges - The number of cells in each direction
30826492d91SMatthew G. Knepley 
30926492d91SMatthew G. Knepley   Output Parameter:
31026492d91SMatthew G. Knepley . dm  - The DM object
31126492d91SMatthew G. Knepley 
31226492d91SMatthew G. Knepley   Level: beginner
31326492d91SMatthew G. Knepley 
31426492d91SMatthew G. Knepley .keywords: DM, create
31526492d91SMatthew G. Knepley .seealso: DMPlexCreateBoxMesh(), DMPlexCreateSquareBoundary(), DMSetType(), DMCreate()
31626492d91SMatthew G. Knepley @*/
317552f7358SJed Brown PetscErrorCode DMPlexCreateCubeBoundary(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt faces[])
318552f7358SJed Brown {
3199e8abbc3SMichael Lange   PetscInt       vertices[3], numVertices;
3207b59f5a9SMichael Lange   PetscInt       numFaces    = 2*faces[0]*faces[1] + 2*faces[1]*faces[2] + 2*faces[0]*faces[2];
321552f7358SJed Brown   Vec            coordinates;
322552f7358SJed Brown   PetscSection   coordSection;
323552f7358SJed Brown   PetscScalar    *coords;
324552f7358SJed Brown   PetscInt       coordSize;
325552f7358SJed Brown   PetscMPIInt    rank;
326552f7358SJed Brown   PetscInt       v, vx, vy, vz;
3277b59f5a9SMichael Lange   PetscInt       voffset, iface=0, cone[4];
328552f7358SJed Brown   PetscErrorCode ierr;
329552f7358SJed Brown 
330552f7358SJed Brown   PetscFunctionBegin;
33182f516ccSBarry Smith   if ((faces[0] < 1) || (faces[1] < 1) || (faces[2] < 1)) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Must have at least 1 face per side");
33282f516ccSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr);
3339e8abbc3SMichael Lange   vertices[0] = faces[0]+1; vertices[1] = faces[1]+1; vertices[2] = faces[2]+1;
3349e8abbc3SMichael Lange   numVertices = vertices[0]*vertices[1]*vertices[2];
335552f7358SJed Brown   if (!rank) {
336552f7358SJed Brown     PetscInt f;
337552f7358SJed Brown 
338552f7358SJed Brown     ierr = DMPlexSetChart(dm, 0, numFaces+numVertices);CHKERRQ(ierr);
339552f7358SJed Brown     for (f = 0; f < numFaces; ++f) {
340552f7358SJed Brown       ierr = DMPlexSetConeSize(dm, f, 4);CHKERRQ(ierr);
341552f7358SJed Brown     }
342552f7358SJed Brown     ierr = DMSetUp(dm);CHKERRQ(ierr); /* Allocate space for cones */
343552f7358SJed Brown     for (v = 0; v < numFaces+numVertices; ++v) {
344c58f1c22SToby Isaac       ierr = DMSetLabelValue(dm, "marker", v, 1);CHKERRQ(ierr);
345552f7358SJed Brown     }
3467b59f5a9SMichael Lange 
3477b59f5a9SMichael Lange     /* Side 0 (Top) */
3487b59f5a9SMichael Lange     for (vy = 0; vy < faces[1]; vy++) {
3497b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
3507b59f5a9SMichael Lange         voffset = numFaces + vertices[0]*vertices[1]*(vertices[2]-1) + vy*vertices[0] + vx;
3517b59f5a9SMichael Lange         cone[0] = voffset; cone[1] = voffset+1; cone[2] = voffset+vertices[0]+1; cone[3] = voffset+vertices[0];
3527b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
3537b59f5a9SMichael Lange         iface++;
354552f7358SJed Brown       }
355552f7358SJed Brown     }
3567b59f5a9SMichael Lange 
3577b59f5a9SMichael Lange     /* Side 1 (Bottom) */
3587b59f5a9SMichael Lange     for (vy = 0; vy < faces[1]; vy++) {
3597b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
3607b59f5a9SMichael Lange         voffset = numFaces + vy*(faces[0]+1) + vx;
3617b59f5a9SMichael Lange         cone[0] = voffset+1; cone[1] = voffset; cone[2] = voffset+vertices[0]; cone[3] = voffset+vertices[0]+1;
3627b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
3637b59f5a9SMichael Lange         iface++;
364552f7358SJed Brown       }
365552f7358SJed Brown     }
3667b59f5a9SMichael Lange 
3677b59f5a9SMichael Lange     /* Side 2 (Front) */
3687b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
3697b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
3707b59f5a9SMichael Lange         voffset = numFaces + vz*vertices[0]*vertices[1] + vx;
3717b59f5a9SMichael Lange         cone[0] = voffset; cone[1] = voffset+1; cone[2] = voffset+vertices[0]*vertices[1]+1; cone[3] = voffset+vertices[0]*vertices[1];
3727b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
3737b59f5a9SMichael Lange         iface++;
374552f7358SJed Brown       }
3757b59f5a9SMichael Lange     }
3767b59f5a9SMichael Lange 
3777b59f5a9SMichael Lange     /* Side 3 (Back) */
3787b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
3797b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
3807b59f5a9SMichael Lange         voffset = numFaces + vz*vertices[0]*vertices[1] + vertices[0]*(vertices[1]-1) + vx;
3817b59f5a9SMichael Lange         cone[0] = voffset+vertices[0]*vertices[1]; cone[1] = voffset+vertices[0]*vertices[1]+1;
3827b59f5a9SMichael Lange         cone[2] = voffset+1; cone[3] = voffset;
3837b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
3847b59f5a9SMichael Lange         iface++;
3857b59f5a9SMichael Lange       }
3867b59f5a9SMichael Lange     }
3877b59f5a9SMichael Lange 
3887b59f5a9SMichael Lange     /* Side 4 (Left) */
3897b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
3907b59f5a9SMichael Lange       for (vy = 0; vy < faces[1]; vy++) {
3917b59f5a9SMichael Lange         voffset = numFaces + vz*vertices[0]*vertices[1] + vy*vertices[0];
3927b59f5a9SMichael Lange         cone[0] = voffset; cone[1] = voffset+vertices[0]*vertices[1];
3937b59f5a9SMichael Lange         cone[2] = voffset+vertices[0]*vertices[1]+vertices[0]; cone[3] = voffset+vertices[0];
3947b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
3957b59f5a9SMichael Lange         iface++;
3967b59f5a9SMichael Lange       }
3977b59f5a9SMichael Lange     }
3987b59f5a9SMichael Lange 
3997b59f5a9SMichael Lange     /* Side 5 (Right) */
4007b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
4017b59f5a9SMichael Lange       for (vy = 0; vy < faces[1]; vy++) {
402aab5bcd8SJed Brown         voffset = numFaces + vz*vertices[0]*vertices[1] + vy*vertices[0] + faces[0];
4037b59f5a9SMichael Lange         cone[0] = voffset+vertices[0]*vertices[1]; cone[1] = voffset;
4047b59f5a9SMichael Lange         cone[2] = voffset+vertices[0]; cone[3] = voffset+vertices[0]*vertices[1]+vertices[0];
4057b59f5a9SMichael Lange         ierr    = DMPlexSetCone(dm, iface, cone);CHKERRQ(ierr);
4067b59f5a9SMichael Lange         iface++;
4077b59f5a9SMichael Lange       }
408552f7358SJed Brown     }
409552f7358SJed Brown   }
410552f7358SJed Brown   ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
411552f7358SJed Brown   ierr = DMPlexStratify(dm);CHKERRQ(ierr);
412552f7358SJed Brown   /* Build coordinates */
4139596c6baSMatthew G. Knepley   ierr = DMSetCoordinateDim(dm, 3);CHKERRQ(ierr);
414c2166f76SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
415552f7358SJed Brown   ierr = PetscSectionSetChart(coordSection, numFaces, numFaces + numVertices);CHKERRQ(ierr);
416552f7358SJed Brown   for (v = numFaces; v < numFaces+numVertices; ++v) {
417552f7358SJed Brown     ierr = PetscSectionSetDof(coordSection, v, 3);CHKERRQ(ierr);
418552f7358SJed Brown   }
419552f7358SJed Brown   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
420552f7358SJed Brown   ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
4218b9ced59SLisandro Dalcin   ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
422552f7358SJed Brown   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
423552f7358SJed Brown   ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
4248b9ced59SLisandro Dalcin   ierr = VecSetBlockSize(coordinates, 3);CHKERRQ(ierr);
4252eb5907fSJed Brown   ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
426552f7358SJed Brown   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
427552f7358SJed Brown   for (vz = 0; vz <= faces[2]; ++vz) {
428552f7358SJed Brown     for (vy = 0; vy <= faces[1]; ++vy) {
429552f7358SJed Brown       for (vx = 0; vx <= faces[0]; ++vx) {
430552f7358SJed Brown         coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+0] = lower[0] + ((upper[0] - lower[0])/faces[0])*vx;
431552f7358SJed Brown         coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+1] = lower[1] + ((upper[1] - lower[1])/faces[1])*vy;
432552f7358SJed Brown         coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+2] = lower[2] + ((upper[2] - lower[2])/faces[2])*vz;
433552f7358SJed Brown       }
434552f7358SJed Brown     }
435552f7358SJed Brown   }
436552f7358SJed Brown   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
437552f7358SJed Brown   ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
438552f7358SJed Brown   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
439552f7358SJed Brown   PetscFunctionReturn(0);
440552f7358SJed Brown }
441552f7358SJed Brown 
442fdbf62faSLisandro Dalcin static PetscErrorCode DMPlexCreateLineMesh_Internal(MPI_Comm comm,PetscInt segments,PetscReal lower,PetscReal upper,DMBoundaryType bd,DM *dm)
443fdbf62faSLisandro Dalcin {
444fdbf62faSLisandro Dalcin   PetscInt       i,fStart,fEnd,numCells = 0,numVerts = 0;
445fdbf62faSLisandro Dalcin   PetscInt       numPoints[2],*coneSize,*cones,*coneOrientations;
446fdbf62faSLisandro Dalcin   PetscScalar    *vertexCoords;
447fdbf62faSLisandro Dalcin   PetscReal      L,maxCell;
448fdbf62faSLisandro Dalcin   PetscBool      markerSeparate = PETSC_FALSE;
449fdbf62faSLisandro Dalcin   PetscInt       markerLeft  = 1, faceMarkerLeft  = 1;
450fdbf62faSLisandro Dalcin   PetscInt       markerRight = 1, faceMarkerRight = 2;
451fdbf62faSLisandro Dalcin   PetscBool      wrap = (bd == DM_BOUNDARY_PERIODIC || bd == DM_BOUNDARY_TWIST) ? PETSC_TRUE : PETSC_FALSE;
452fdbf62faSLisandro Dalcin   PetscMPIInt    rank;
453fdbf62faSLisandro Dalcin   PetscErrorCode ierr;
454fdbf62faSLisandro Dalcin 
455fdbf62faSLisandro Dalcin   PetscFunctionBegin;
456fdbf62faSLisandro Dalcin   PetscValidPointer(dm,4);
457fdbf62faSLisandro Dalcin 
458fdbf62faSLisandro Dalcin   ierr = DMCreate(comm,dm);CHKERRQ(ierr);
459fdbf62faSLisandro Dalcin   ierr = DMSetType(*dm,DMPLEX);CHKERRQ(ierr);
460fdbf62faSLisandro Dalcin   ierr = DMSetDimension(*dm,1);CHKERRQ(ierr);
461fdbf62faSLisandro Dalcin   ierr = DMCreateLabel(*dm,"marker");CHKERRQ(ierr);
462fdbf62faSLisandro Dalcin   ierr = DMCreateLabel(*dm,"Face Sets");CHKERRQ(ierr);
463fdbf62faSLisandro Dalcin 
464fdbf62faSLisandro Dalcin   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
465fdbf62faSLisandro Dalcin   if (!rank) numCells = segments;
466fdbf62faSLisandro Dalcin   if (!rank) numVerts = segments + (wrap ? 0 : 1);
467fdbf62faSLisandro Dalcin 
468fdbf62faSLisandro Dalcin   numPoints[0] = numVerts ; numPoints[1] = numCells;
469fdbf62faSLisandro Dalcin   ierr = PetscMalloc4(numCells+numVerts,&coneSize,numCells*2,&cones,numCells+numVerts,&coneOrientations,numVerts,&vertexCoords);CHKERRQ(ierr);
470fdbf62faSLisandro Dalcin   ierr = PetscMemzero(coneOrientations,(numCells+numVerts)*sizeof(PetscInt));CHKERRQ(ierr);
471fdbf62faSLisandro Dalcin   for (i = 0; i < numCells; ++i) { coneSize[i] = 2; }
472fdbf62faSLisandro Dalcin   for (i = 0; i < numVerts; ++i) { coneSize[numCells+i] = 0; }
473fdbf62faSLisandro Dalcin   for (i = 0; i < numCells; ++i) { cones[2*i] = numCells + i%numVerts; cones[2*i+1] = numCells + (i+1)%numVerts; }
474fdbf62faSLisandro Dalcin   for (i = 0; i < numVerts; ++i) { vertexCoords[i] = lower + (upper-lower)*((PetscReal)i/(PetscReal)numCells); }
475fdbf62faSLisandro Dalcin   ierr = DMPlexCreateFromDAG(*dm,1,numPoints,coneSize,cones,coneOrientations,vertexCoords);CHKERRQ(ierr);
476fdbf62faSLisandro Dalcin   ierr = PetscFree4(coneSize,cones,coneOrientations,vertexCoords);CHKERRQ(ierr);
477fdbf62faSLisandro Dalcin 
478fdbf62faSLisandro Dalcin   ierr = PetscOptionsGetBool(((PetscObject)*dm)->options,((PetscObject)*dm)->prefix,"-dm_plex_separate_marker",&markerSeparate,NULL);CHKERRQ(ierr);
479fdbf62faSLisandro Dalcin   if (markerSeparate) { markerLeft = faceMarkerLeft; markerRight = faceMarkerRight;}
480fdbf62faSLisandro Dalcin   if (!wrap && !rank) {
481fdbf62faSLisandro Dalcin     ierr = DMPlexGetHeightStratum(*dm,1,&fStart,&fEnd);CHKERRQ(ierr);
482fdbf62faSLisandro Dalcin     ierr = DMSetLabelValue(*dm,"marker",fStart,markerLeft);CHKERRQ(ierr);
483fdbf62faSLisandro Dalcin     ierr = DMSetLabelValue(*dm,"marker",fEnd-1,markerRight);CHKERRQ(ierr);
484fdbf62faSLisandro Dalcin     ierr = DMSetLabelValue(*dm,"Face Sets",fStart,faceMarkerLeft);CHKERRQ(ierr);
485fdbf62faSLisandro Dalcin     ierr = DMSetLabelValue(*dm,"Face Sets",fEnd-1,faceMarkerRight);CHKERRQ(ierr);
486fdbf62faSLisandro Dalcin   }
487fdbf62faSLisandro Dalcin   if (wrap) {
488fdbf62faSLisandro Dalcin     L       = upper - lower;
489fdbf62faSLisandro Dalcin     maxCell = (PetscReal)1.1*(L/(PetscReal)PetscMax(1,segments));
490fdbf62faSLisandro Dalcin     ierr = DMSetPeriodicity(*dm,PETSC_TRUE,&maxCell,&L,&bd);CHKERRQ(ierr);
491fdbf62faSLisandro Dalcin   }
492fdbf62faSLisandro Dalcin   PetscFunctionReturn(0);
493fdbf62faSLisandro Dalcin }
494fdbf62faSLisandro Dalcin 
495768d5fceSMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxMesh_Simplex_Internal(MPI_Comm comm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate, DM *dm)
496d6218766SMatthew G. Knepley {
497d6218766SMatthew G. Knepley   DM             boundary;
498768d5fceSMatthew G. Knepley   PetscInt       i;
499d6218766SMatthew G. Knepley   PetscErrorCode ierr;
500d6218766SMatthew G. Knepley 
501d6218766SMatthew G. Knepley   PetscFunctionBegin;
502d6218766SMatthew G. Knepley   PetscValidPointer(dm, 4);
503768d5fceSMatthew G. Knepley   for (i = 0; i < dim; ++i) if (periodicity[i] != DM_BOUNDARY_NONE) SETERRQ(comm, PETSC_ERR_SUP, "Periodicity is not supported for simplex meshes");
504d6218766SMatthew G. Knepley   ierr = DMCreate(comm, &boundary);CHKERRQ(ierr);
505d6218766SMatthew G. Knepley   PetscValidLogicalCollectiveInt(boundary,dim,2);
506d6218766SMatthew G. Knepley   ierr = DMSetType(boundary, DMPLEX);CHKERRQ(ierr);
507d6218766SMatthew G. Knepley   ierr = DMSetDimension(boundary, dim-1);CHKERRQ(ierr);
508d6218766SMatthew G. Knepley   ierr = DMSetCoordinateDim(boundary, dim);CHKERRQ(ierr);
509d6218766SMatthew G. Knepley   switch (dim) {
510768d5fceSMatthew G. Knepley   case 2: ierr = DMPlexCreateSquareBoundary(boundary, lower, upper, faces);CHKERRQ(ierr);break;
511768d5fceSMatthew G. Knepley   case 3: ierr = DMPlexCreateCubeBoundary(boundary, lower, upper, faces);CHKERRQ(ierr);break;
51242c1443fSMatthew G. Knepley   default: SETERRQ1(comm, PETSC_ERR_SUP, "Dimension not supported: %d", dim);
513d6218766SMatthew G. Knepley   }
514d6218766SMatthew G. Knepley   ierr = DMPlexGenerate(boundary, NULL, interpolate, dm);CHKERRQ(ierr);
515d6218766SMatthew G. Knepley   ierr = DMDestroy(&boundary);CHKERRQ(ierr);
516d6218766SMatthew G. Knepley   PetscFunctionReturn(0);
517d6218766SMatthew G. Knepley }
518d6218766SMatthew G. Knepley 
5193dfda0b1SToby Isaac static PetscErrorCode DMPlexCreateCubeMesh_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[], DMBoundaryType bdX, DMBoundaryType bdY, DMBoundaryType bdZ)
5203dfda0b1SToby Isaac {
521ed0e4b50SMatthew G. Knepley   DMLabel        cutLabel = NULL;
522f4eb4c5dSMatthew G. Knepley   PetscInt       markerTop      = 1, faceMarkerTop      = 1;
523f4eb4c5dSMatthew G. Knepley   PetscInt       markerBottom   = 1, faceMarkerBottom   = 1;
524f4eb4c5dSMatthew G. Knepley   PetscInt       markerFront    = 1, faceMarkerFront    = 1;
525f4eb4c5dSMatthew G. Knepley   PetscInt       markerBack     = 1, faceMarkerBack     = 1;
526f4eb4c5dSMatthew G. Knepley   PetscInt       markerRight    = 1, faceMarkerRight    = 1;
527f4eb4c5dSMatthew G. Knepley   PetscInt       markerLeft     = 1, faceMarkerLeft     = 1;
5283dfda0b1SToby Isaac   PetscInt       dim;
529d8211ee3SMatthew G. Knepley   PetscBool      markerSeparate = PETSC_FALSE, cutMarker = PETSC_FALSE;
5303dfda0b1SToby Isaac   PetscMPIInt    rank;
5313dfda0b1SToby Isaac   PetscErrorCode ierr;
5323dfda0b1SToby Isaac 
5333dfda0b1SToby Isaac   PetscFunctionBegin;
534f0226e14SMatthew G. Knepley   ierr = DMGetDimension(dm,&dim);CHKERRQ(ierr);
5353dfda0b1SToby Isaac   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr);
53650ae33c3SToby Isaac   ierr = DMCreateLabel(dm,"marker");CHKERRQ(ierr);
53750ae33c3SToby Isaac   ierr = DMCreateLabel(dm,"Face Sets");CHKERRQ(ierr);
5384c67ea77SStefano Zampini   ierr = PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_periodic_cut", &cutMarker, NULL);CHKERRQ(ierr);
539d8211ee3SMatthew G. Knepley   if (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST ||
540d8211ee3SMatthew G. Knepley       bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST ||
541d8211ee3SMatthew G. Knepley       bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST) {
5424c67ea77SStefano Zampini 
543d1c88043SMatthew G. Knepley     if (cutMarker) {ierr = DMCreateLabel(dm, "periodic_cut");CHKERRQ(ierr); ierr = DMGetLabel(dm, "periodic_cut", &cutLabel);CHKERRQ(ierr);}
544d8211ee3SMatthew G. Knepley   }
5453dfda0b1SToby Isaac   switch (dim) {
5463dfda0b1SToby Isaac   case 2:
547f4eb4c5dSMatthew G. Knepley     faceMarkerTop    = 3;
548f4eb4c5dSMatthew G. Knepley     faceMarkerBottom = 1;
549f4eb4c5dSMatthew G. Knepley     faceMarkerRight  = 2;
550f4eb4c5dSMatthew G. Knepley     faceMarkerLeft   = 4;
5513dfda0b1SToby Isaac     break;
5523dfda0b1SToby Isaac   case 3:
553f4eb4c5dSMatthew G. Knepley     faceMarkerBottom = 1;
554f4eb4c5dSMatthew G. Knepley     faceMarkerTop    = 2;
555f4eb4c5dSMatthew G. Knepley     faceMarkerFront  = 3;
556f4eb4c5dSMatthew G. Knepley     faceMarkerBack   = 4;
557f4eb4c5dSMatthew G. Knepley     faceMarkerRight  = 5;
558f4eb4c5dSMatthew G. Knepley     faceMarkerLeft   = 6;
5593dfda0b1SToby Isaac     break;
5603dfda0b1SToby Isaac   default:
5613dfda0b1SToby Isaac     SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Dimension %d not supported",dim);
5623dfda0b1SToby Isaac     break;
5633dfda0b1SToby Isaac   }
564c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL);CHKERRQ(ierr);
565f4eb4c5dSMatthew G. Knepley   if (markerSeparate) {
566f4eb4c5dSMatthew G. Knepley     markerBottom = faceMarkerBottom;
567f4eb4c5dSMatthew G. Knepley     markerTop    = faceMarkerTop;
568f4eb4c5dSMatthew G. Knepley     markerFront  = faceMarkerFront;
569f4eb4c5dSMatthew G. Knepley     markerBack   = faceMarkerBack;
570f4eb4c5dSMatthew G. Knepley     markerRight  = faceMarkerRight;
571f4eb4c5dSMatthew G. Knepley     markerLeft   = faceMarkerLeft;
5723dfda0b1SToby Isaac   }
5733dfda0b1SToby Isaac   {
5743dfda0b1SToby Isaac     const PetscInt numXEdges    = !rank ? edges[0] : 0;
5753dfda0b1SToby Isaac     const PetscInt numYEdges    = !rank ? edges[1] : 0;
5763dfda0b1SToby Isaac     const PetscInt numZEdges    = !rank ? edges[2] : 0;
5773dfda0b1SToby Isaac     const PetscInt numXVertices = !rank ? (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST ? edges[0] : edges[0]+1) : 0;
5783dfda0b1SToby Isaac     const PetscInt numYVertices = !rank ? (bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST ? edges[1] : edges[1]+1) : 0;
57942206facSLisandro Dalcin     const PetscInt numZVertices = !rank ? (bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST ? edges[2] : edges[2]+1) : 0;
5803dfda0b1SToby Isaac     const PetscInt numCells     = numXEdges*numYEdges*numZEdges;
5813dfda0b1SToby Isaac     const PetscInt numXFaces    = numYEdges*numZEdges;
5823dfda0b1SToby Isaac     const PetscInt numYFaces    = numXEdges*numZEdges;
5833dfda0b1SToby Isaac     const PetscInt numZFaces    = numXEdges*numYEdges;
5843dfda0b1SToby Isaac     const PetscInt numTotXFaces = numXVertices*numXFaces;
5853dfda0b1SToby Isaac     const PetscInt numTotYFaces = numYVertices*numYFaces;
5863dfda0b1SToby Isaac     const PetscInt numTotZFaces = numZVertices*numZFaces;
5873dfda0b1SToby Isaac     const PetscInt numFaces     = numTotXFaces + numTotYFaces + numTotZFaces;
5883dfda0b1SToby Isaac     const PetscInt numTotXEdges = numXEdges*numYVertices*numZVertices;
5893dfda0b1SToby Isaac     const PetscInt numTotYEdges = numYEdges*numXVertices*numZVertices;
5903dfda0b1SToby Isaac     const PetscInt numTotZEdges = numZEdges*numXVertices*numYVertices;
5913dfda0b1SToby Isaac     const PetscInt numVertices  = numXVertices*numYVertices*numZVertices;
5923dfda0b1SToby Isaac     const PetscInt numEdges     = numTotXEdges + numTotYEdges + numTotZEdges;
5933dfda0b1SToby Isaac     const PetscInt firstVertex  = (dim == 2) ? numFaces : numCells;
5943dfda0b1SToby Isaac     const PetscInt firstXFace   = (dim == 2) ? 0 : numCells + numVertices;
5953dfda0b1SToby Isaac     const PetscInt firstYFace   = firstXFace + numTotXFaces;
5963dfda0b1SToby Isaac     const PetscInt firstZFace   = firstYFace + numTotYFaces;
5973dfda0b1SToby Isaac     const PetscInt firstXEdge   = numCells + numFaces + numVertices;
5983dfda0b1SToby Isaac     const PetscInt firstYEdge   = firstXEdge + numTotXEdges;
5993dfda0b1SToby Isaac     const PetscInt firstZEdge   = firstYEdge + numTotYEdges;
6003dfda0b1SToby Isaac     Vec            coordinates;
6013dfda0b1SToby Isaac     PetscSection   coordSection;
6023dfda0b1SToby Isaac     PetscScalar   *coords;
6033dfda0b1SToby Isaac     PetscInt       coordSize;
6043dfda0b1SToby Isaac     PetscInt       v, vx, vy, vz;
6053dfda0b1SToby Isaac     PetscInt       c, f, fx, fy, fz, e, ex, ey, ez;
6063dfda0b1SToby Isaac 
6073dfda0b1SToby Isaac     ierr = DMPlexSetChart(dm, 0, numCells+numFaces+numEdges+numVertices);CHKERRQ(ierr);
6083dfda0b1SToby Isaac     for (c = 0; c < numCells; c++) {
6093dfda0b1SToby Isaac       ierr = DMPlexSetConeSize(dm, c, 6);CHKERRQ(ierr);
6103dfda0b1SToby Isaac     }
6113dfda0b1SToby Isaac     for (f = firstXFace; f < firstXFace+numFaces; ++f) {
6123dfda0b1SToby Isaac       ierr = DMPlexSetConeSize(dm, f, 4);CHKERRQ(ierr);
6133dfda0b1SToby Isaac     }
6143dfda0b1SToby Isaac     for (e = firstXEdge; e < firstXEdge+numEdges; ++e) {
6153dfda0b1SToby Isaac       ierr = DMPlexSetConeSize(dm, e, 2);CHKERRQ(ierr);
6163dfda0b1SToby Isaac     }
6173dfda0b1SToby Isaac     ierr = DMSetUp(dm);CHKERRQ(ierr); /* Allocate space for cones */
6183dfda0b1SToby Isaac     /* Build cells */
6193dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
6203dfda0b1SToby Isaac       for (fy = 0; fy < numYEdges; ++fy) {
6213dfda0b1SToby Isaac         for (fx = 0; fx < numXEdges; ++fx) {
6223dfda0b1SToby Isaac           PetscInt cell    = (fz*numYEdges + fy)*numXEdges + fx;
6233dfda0b1SToby Isaac           PetscInt faceB   = firstZFace + (fy*numXEdges+fx)*numZVertices +   fz;
6243dfda0b1SToby Isaac           PetscInt faceT   = firstZFace + (fy*numXEdges+fx)*numZVertices + ((fz+1)%numZVertices);
6253dfda0b1SToby Isaac           PetscInt faceF   = firstYFace + (fz*numXEdges+fx)*numYVertices +   fy;
6263dfda0b1SToby Isaac           PetscInt faceK   = firstYFace + (fz*numXEdges+fx)*numYVertices + ((fy+1)%numYVertices);
6273dfda0b1SToby Isaac           PetscInt faceL   = firstXFace + (fz*numYEdges+fy)*numXVertices +   fx;
6283dfda0b1SToby Isaac           PetscInt faceR   = firstXFace + (fz*numYEdges+fy)*numXVertices + ((fx+1)%numXVertices);
6293dfda0b1SToby Isaac                             /* B,  T,  F,  K,  R,  L */
63042206facSLisandro Dalcin           PetscInt ornt[6] = {-4,  0,  0, -1,  0, -4}; /* ??? */
63142206facSLisandro Dalcin           PetscInt cone[6];
6323dfda0b1SToby Isaac 
6333dfda0b1SToby Isaac           /* no boundary twisting in 3D */
6343dfda0b1SToby Isaac           cone[0] = faceB; cone[1] = faceT; cone[2] = faceF; cone[3] = faceK; cone[4] = faceR; cone[5] = faceL;
6353dfda0b1SToby Isaac           ierr    = DMPlexSetCone(dm, cell, cone);CHKERRQ(ierr);
6363dfda0b1SToby Isaac           ierr    = DMPlexSetConeOrientation(dm, cell, ornt);CHKERRQ(ierr);
6378a5b437dSMatthew G. Knepley           if (bdX != DM_BOUNDARY_NONE && fx == numXEdges-1 && cutLabel) {ierr = DMLabelSetValue(cutLabel, cell, 2);CHKERRQ(ierr);}
6388a5b437dSMatthew G. Knepley           if (bdY != DM_BOUNDARY_NONE && fy == numYEdges-1 && cutLabel) {ierr = DMLabelSetValue(cutLabel, cell, 2);CHKERRQ(ierr);}
6398a5b437dSMatthew G. Knepley           if (bdZ != DM_BOUNDARY_NONE && fz == numZEdges-1 && cutLabel) {ierr = DMLabelSetValue(cutLabel, cell, 2);CHKERRQ(ierr);}
6403dfda0b1SToby Isaac         }
6413dfda0b1SToby Isaac       }
6423dfda0b1SToby Isaac     }
6433dfda0b1SToby Isaac     /* Build x faces */
6443dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
6453dfda0b1SToby Isaac       for (fy = 0; fy < numYEdges; ++fy) {
6463dfda0b1SToby Isaac         for (fx = 0; fx < numXVertices; ++fx) {
6473dfda0b1SToby Isaac           PetscInt face    = firstXFace + (fz*numYEdges+fy)*numXVertices + fx;
6483dfda0b1SToby Isaac           PetscInt edgeL   = firstZEdge + (  fy*                 numXVertices+fx)*numZEdges + fz;
6493dfda0b1SToby Isaac           PetscInt edgeR   = firstZEdge + (((fy+1)%numYVertices)*numXVertices+fx)*numZEdges + fz;
6503dfda0b1SToby Isaac           PetscInt edgeB   = firstYEdge + (  fz*                 numXVertices+fx)*numYEdges + fy;
6513dfda0b1SToby Isaac           PetscInt edgeT   = firstYEdge + (((fz+1)%numZVertices)*numXVertices+fx)*numYEdges + fy;
6523dfda0b1SToby Isaac           PetscInt ornt[4] = {0, 0, -2, -2};
6533dfda0b1SToby Isaac           PetscInt cone[4];
6543dfda0b1SToby Isaac 
6553dfda0b1SToby Isaac           if (dim == 3) {
6563dfda0b1SToby Isaac             /* markers */
6573dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
6583dfda0b1SToby Isaac               if (fx == numXVertices-1) {
659c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerRight);CHKERRQ(ierr);
660c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerRight);CHKERRQ(ierr);
6613dfda0b1SToby Isaac               }
6623dfda0b1SToby Isaac               else if (fx == 0) {
663c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerLeft);CHKERRQ(ierr);
664c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerLeft);CHKERRQ(ierr);
6653dfda0b1SToby Isaac               }
6663dfda0b1SToby Isaac             }
6673dfda0b1SToby Isaac           }
6683dfda0b1SToby Isaac           cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL;
6693dfda0b1SToby Isaac           ierr    = DMPlexSetCone(dm, face, cone);CHKERRQ(ierr);
6703dfda0b1SToby Isaac           ierr    = DMPlexSetConeOrientation(dm, face, ornt);CHKERRQ(ierr);
6713dfda0b1SToby Isaac         }
6723dfda0b1SToby Isaac       }
6733dfda0b1SToby Isaac     }
6743dfda0b1SToby Isaac     /* Build y faces */
6753dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
67642206facSLisandro Dalcin       for (fx = 0; fx < numXEdges; ++fx) {
6773dfda0b1SToby Isaac         for (fy = 0; fy < numYVertices; ++fy) {
6783dfda0b1SToby Isaac           PetscInt face    = firstYFace + (fz*numXEdges+fx)*numYVertices + fy;
6793dfda0b1SToby Isaac           PetscInt edgeL   = firstZEdge + (fy*numXVertices+  fx                 )*numZEdges + fz;
6803dfda0b1SToby Isaac           PetscInt edgeR   = firstZEdge + (fy*numXVertices+((fx+1)%numXVertices))*numZEdges + fz;
6813dfda0b1SToby Isaac           PetscInt edgeB   = firstXEdge + (  fz                 *numYVertices+fy)*numXEdges + fx;
6823dfda0b1SToby Isaac           PetscInt edgeT   = firstXEdge + (((fz+1)%numZVertices)*numYVertices+fy)*numXEdges + fx;
6833dfda0b1SToby Isaac           PetscInt ornt[4] = {0, 0, -2, -2};
6843dfda0b1SToby Isaac           PetscInt cone[4];
6853dfda0b1SToby Isaac 
6863dfda0b1SToby Isaac           if (dim == 3) {
6873dfda0b1SToby Isaac             /* markers */
6883dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
6893dfda0b1SToby Isaac               if (fy == numYVertices-1) {
690c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerBack);CHKERRQ(ierr);
691c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerBack);CHKERRQ(ierr);
6923dfda0b1SToby Isaac               }
6933dfda0b1SToby Isaac               else if (fy == 0) {
694c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerFront);CHKERRQ(ierr);
695c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerFront);CHKERRQ(ierr);
6963dfda0b1SToby Isaac               }
6973dfda0b1SToby Isaac             }
6983dfda0b1SToby Isaac           }
6993dfda0b1SToby Isaac           cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL;
7003dfda0b1SToby Isaac           ierr    = DMPlexSetCone(dm, face, cone);CHKERRQ(ierr);
7013dfda0b1SToby Isaac           ierr    = DMPlexSetConeOrientation(dm, face, ornt);CHKERRQ(ierr);
7023dfda0b1SToby Isaac         }
7033dfda0b1SToby Isaac       }
7043dfda0b1SToby Isaac     }
7053dfda0b1SToby Isaac     /* Build z faces */
7063dfda0b1SToby Isaac     for (fy = 0; fy < numYEdges; ++fy) {
7073dfda0b1SToby Isaac       for (fx = 0; fx < numXEdges; ++fx) {
7083dfda0b1SToby Isaac         for (fz = 0; fz < numZVertices; fz++) {
7093dfda0b1SToby Isaac           PetscInt face    = firstZFace + (fy*numXEdges+fx)*numZVertices + fz;
7103dfda0b1SToby Isaac           PetscInt edgeL   = firstYEdge + (fz*numXVertices+  fx                 )*numYEdges + fy;
7113dfda0b1SToby Isaac           PetscInt edgeR   = firstYEdge + (fz*numXVertices+((fx+1)%numXVertices))*numYEdges + fy;
7123dfda0b1SToby Isaac           PetscInt edgeB   = firstXEdge + (fz*numYVertices+  fy                 )*numXEdges + fx;
7133dfda0b1SToby Isaac           PetscInt edgeT   = firstXEdge + (fz*numYVertices+((fy+1)%numYVertices))*numXEdges + fx;
7143dfda0b1SToby Isaac           PetscInt ornt[4] = {0, 0, -2, -2};
7153dfda0b1SToby Isaac           PetscInt cone[4];
7163dfda0b1SToby Isaac 
7173dfda0b1SToby Isaac           if (dim == 2) {
7183dfda0b1SToby Isaac             if (bdX == DM_BOUNDARY_TWIST && fx == numXEdges-1) {edgeR += numYEdges-1-2*fy; ornt[1] = -2;}
7193dfda0b1SToby Isaac             if (bdY == DM_BOUNDARY_TWIST && fy == numYEdges-1) {edgeT += numXEdges-1-2*fx; ornt[2] =  0;}
7208a5b437dSMatthew G. Knepley             if (bdX != DM_BOUNDARY_NONE && fx == numXEdges-1 && cutLabel) {ierr = DMLabelSetValue(cutLabel, face, 2);CHKERRQ(ierr);}
7218a5b437dSMatthew G. Knepley             if (bdY != DM_BOUNDARY_NONE && fy == numYEdges-1 && cutLabel) {ierr = DMLabelSetValue(cutLabel, face, 2);CHKERRQ(ierr);}
722d1c88043SMatthew G. Knepley           } else {
7233dfda0b1SToby Isaac             /* markers */
7243dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
7253dfda0b1SToby Isaac               if (fz == numZVertices-1) {
726c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerTop);CHKERRQ(ierr);
727c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerTop);CHKERRQ(ierr);
7283dfda0b1SToby Isaac               }
7293dfda0b1SToby Isaac               else if (fz == 0) {
730c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", face, faceMarkerBottom);CHKERRQ(ierr);
731c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", face, markerBottom);CHKERRQ(ierr);
7323dfda0b1SToby Isaac               }
7333dfda0b1SToby Isaac             }
7343dfda0b1SToby Isaac           }
7353dfda0b1SToby Isaac           cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL;
7363dfda0b1SToby Isaac           ierr    = DMPlexSetCone(dm, face, cone);CHKERRQ(ierr);
7373dfda0b1SToby Isaac           ierr    = DMPlexSetConeOrientation(dm, face, ornt);CHKERRQ(ierr);
7383dfda0b1SToby Isaac         }
7393dfda0b1SToby Isaac       }
7403dfda0b1SToby Isaac     }
7413dfda0b1SToby Isaac     /* Build Z edges*/
7423dfda0b1SToby Isaac     for (vy = 0; vy < numYVertices; vy++) {
7433dfda0b1SToby Isaac       for (vx = 0; vx < numXVertices; vx++) {
7443dfda0b1SToby Isaac         for (ez = 0; ez < numZEdges; ez++) {
7453dfda0b1SToby Isaac           const PetscInt edge    = firstZEdge  + (vy*numXVertices+vx)*numZEdges + ez;
7463dfda0b1SToby Isaac           const PetscInt vertexB = firstVertex + (  ez                 *numYVertices+vy)*numXVertices + vx;
7473dfda0b1SToby Isaac           const PetscInt vertexT = firstVertex + (((ez+1)%numZVertices)*numYVertices+vy)*numXVertices + vx;
7483dfda0b1SToby Isaac           PetscInt       cone[2];
7493dfda0b1SToby Isaac 
7503dfda0b1SToby Isaac           if (dim == 3) {
7513dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
7523dfda0b1SToby Isaac               if (vx == numXVertices-1) {
753c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerRight);CHKERRQ(ierr);
7543dfda0b1SToby Isaac               }
7553dfda0b1SToby Isaac               else if (vx == 0) {
756c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerLeft);CHKERRQ(ierr);
7573dfda0b1SToby Isaac               }
7583dfda0b1SToby Isaac             }
7593dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
7603dfda0b1SToby Isaac               if (vy == numYVertices-1) {
761c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerBack);CHKERRQ(ierr);
7623dfda0b1SToby Isaac               }
7633dfda0b1SToby Isaac               else if (vy == 0) {
764c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerFront);CHKERRQ(ierr);
7653dfda0b1SToby Isaac               }
7663dfda0b1SToby Isaac             }
7673dfda0b1SToby Isaac           }
7683dfda0b1SToby Isaac           cone[0] = vertexB; cone[1] = vertexT;
7693dfda0b1SToby Isaac           ierr = DMPlexSetCone(dm, edge, cone);CHKERRQ(ierr);
7703dfda0b1SToby Isaac         }
7713dfda0b1SToby Isaac       }
7723dfda0b1SToby Isaac     }
7733dfda0b1SToby Isaac     /* Build Y edges*/
7743dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; vz++) {
7753dfda0b1SToby Isaac       for (vx = 0; vx < numXVertices; vx++) {
7763dfda0b1SToby Isaac         for (ey = 0; ey < numYEdges; ey++) {
7773dfda0b1SToby Isaac           const PetscInt nextv   = (dim == 2 && bdY == DM_BOUNDARY_TWIST && ey == numYEdges-1) ? (numXVertices-vx-1) : (vz*numYVertices+((ey+1)%numYVertices))*numXVertices + vx;
7783dfda0b1SToby Isaac           const PetscInt edge    = firstYEdge  + (vz*numXVertices+vx)*numYEdges + ey;
7793dfda0b1SToby Isaac           const PetscInt vertexF = firstVertex + (vz*numYVertices+ey)*numXVertices + vx;
7803dfda0b1SToby Isaac           const PetscInt vertexK = firstVertex + nextv;
7813dfda0b1SToby Isaac           PetscInt       cone[2];
7823dfda0b1SToby Isaac 
7833dfda0b1SToby Isaac           cone[0] = vertexF; cone[1] = vertexK;
7843dfda0b1SToby Isaac           ierr = DMPlexSetCone(dm, edge, cone);CHKERRQ(ierr);
7853dfda0b1SToby Isaac           if (dim == 2) {
7863dfda0b1SToby Isaac             if ((bdX != DM_BOUNDARY_PERIODIC) && (bdX != DM_BOUNDARY_TWIST)) {
7873dfda0b1SToby Isaac               if (vx == numXVertices-1) {
788c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", edge, faceMarkerRight);CHKERRQ(ierr);
789c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge,    markerRight);CHKERRQ(ierr);
790c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", cone[0], markerRight);CHKERRQ(ierr);
7913dfda0b1SToby Isaac                 if (ey == numYEdges-1) {
792c58f1c22SToby Isaac                   ierr = DMSetLabelValue(dm, "marker", cone[1], markerRight);CHKERRQ(ierr);
7933dfda0b1SToby Isaac                 }
794d8211ee3SMatthew G. Knepley               } else if (vx == 0) {
795c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", edge, faceMarkerLeft);CHKERRQ(ierr);
796c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge,    markerLeft);CHKERRQ(ierr);
797c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", cone[0], markerLeft);CHKERRQ(ierr);
7983dfda0b1SToby Isaac                 if (ey == numYEdges-1) {
799c58f1c22SToby Isaac                   ierr = DMSetLabelValue(dm, "marker", cone[1], markerLeft);CHKERRQ(ierr);
8003dfda0b1SToby Isaac                 }
8013dfda0b1SToby Isaac               }
802d8211ee3SMatthew G. Knepley             } else {
8034c67ea77SStefano Zampini               if (vx == 0 && cutLabel) {
804d1c88043SMatthew G. Knepley                 ierr = DMLabelSetValue(cutLabel, edge,    1);CHKERRQ(ierr);
805d1c88043SMatthew G. Knepley                 ierr = DMLabelSetValue(cutLabel, cone[0], 1);CHKERRQ(ierr);
806d8211ee3SMatthew G. Knepley                 if (ey == numYEdges-1) {
807d1c88043SMatthew G. Knepley                   ierr = DMLabelSetValue(cutLabel, cone[1], 1);CHKERRQ(ierr);
8083dfda0b1SToby Isaac                 }
8093dfda0b1SToby Isaac               }
810d8211ee3SMatthew G. Knepley             }
811d8211ee3SMatthew G. Knepley           } else {
8123dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
8133dfda0b1SToby Isaac               if (vx == numXVertices-1) {
814c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerRight);CHKERRQ(ierr);
815d8211ee3SMatthew G. Knepley               } else if (vx == 0) {
816c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerLeft);CHKERRQ(ierr);
8173dfda0b1SToby Isaac               }
8183dfda0b1SToby Isaac             }
8193dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
8203dfda0b1SToby Isaac               if (vz == numZVertices-1) {
821c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerTop);CHKERRQ(ierr);
822d8211ee3SMatthew G. Knepley               } else if (vz == 0) {
823c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerBottom);CHKERRQ(ierr);
8243dfda0b1SToby Isaac               }
8253dfda0b1SToby Isaac             }
8263dfda0b1SToby Isaac           }
8273dfda0b1SToby Isaac         }
8283dfda0b1SToby Isaac       }
8293dfda0b1SToby Isaac     }
8303dfda0b1SToby Isaac     /* Build X edges*/
8313dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; vz++) {
8323dfda0b1SToby Isaac       for (vy = 0; vy < numYVertices; vy++) {
8333dfda0b1SToby Isaac         for (ex = 0; ex < numXEdges; ex++) {
8343dfda0b1SToby Isaac           const PetscInt nextv   = (dim == 2 && bdX == DM_BOUNDARY_TWIST && ex == numXEdges-1) ? (numYVertices-vy-1)*numXVertices : (vz*numYVertices+vy)*numXVertices + (ex+1)%numXVertices;
8353dfda0b1SToby Isaac           const PetscInt edge    = firstXEdge  + (vz*numYVertices+vy)*numXEdges + ex;
8363dfda0b1SToby Isaac           const PetscInt vertexL = firstVertex + (vz*numYVertices+vy)*numXVertices + ex;
8373dfda0b1SToby Isaac           const PetscInt vertexR = firstVertex + nextv;
8383dfda0b1SToby Isaac           PetscInt       cone[2];
8393dfda0b1SToby Isaac 
8403dfda0b1SToby Isaac           cone[0] = vertexL; cone[1] = vertexR;
8413dfda0b1SToby Isaac           ierr = DMPlexSetCone(dm, edge, cone);CHKERRQ(ierr);
8423dfda0b1SToby Isaac           if (dim == 2) {
8433dfda0b1SToby Isaac             if ((bdY != DM_BOUNDARY_PERIODIC) && (bdY != DM_BOUNDARY_TWIST)) {
8443dfda0b1SToby Isaac               if (vy == numYVertices-1) {
845c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", edge, faceMarkerTop);CHKERRQ(ierr);
846c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge,    markerTop);CHKERRQ(ierr);
847c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", cone[0], markerTop);CHKERRQ(ierr);
8483dfda0b1SToby Isaac                 if (ex == numXEdges-1) {
849c58f1c22SToby Isaac                   ierr = DMSetLabelValue(dm, "marker", cone[1], markerTop);CHKERRQ(ierr);
8503dfda0b1SToby Isaac                 }
851d8211ee3SMatthew G. Knepley               } else if (vy == 0) {
852c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "Face Sets", edge, faceMarkerBottom);CHKERRQ(ierr);
853c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge,    markerBottom);CHKERRQ(ierr);
854c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", cone[0], markerBottom);CHKERRQ(ierr);
8553dfda0b1SToby Isaac                 if (ex == numXEdges-1) {
856c58f1c22SToby Isaac                   ierr = DMSetLabelValue(dm, "marker", cone[1], markerBottom);CHKERRQ(ierr);
8573dfda0b1SToby Isaac                 }
8583dfda0b1SToby Isaac               }
859d8211ee3SMatthew G. Knepley             } else {
8604c67ea77SStefano Zampini               if (vy == 0 && cutLabel) {
861d1c88043SMatthew G. Knepley                 ierr = DMLabelSetValue(cutLabel, edge,    1);CHKERRQ(ierr);
862d1c88043SMatthew G. Knepley                 ierr = DMLabelSetValue(cutLabel, cone[0], 1);CHKERRQ(ierr);
863d8211ee3SMatthew G. Knepley                 if (ex == numXEdges-1) {
864d1c88043SMatthew G. Knepley                   ierr = DMLabelSetValue(cutLabel, cone[1], 1);CHKERRQ(ierr);
8653dfda0b1SToby Isaac                 }
8663dfda0b1SToby Isaac               }
867d8211ee3SMatthew G. Knepley             }
868d8211ee3SMatthew G. Knepley           } else {
8693dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
8703dfda0b1SToby Isaac               if (vy == numYVertices-1) {
871c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerBack);CHKERRQ(ierr);
8723dfda0b1SToby Isaac               }
8733dfda0b1SToby Isaac               else if (vy == 0) {
874c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerFront);CHKERRQ(ierr);
8753dfda0b1SToby Isaac               }
8763dfda0b1SToby Isaac             }
8773dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
8783dfda0b1SToby Isaac               if (vz == numZVertices-1) {
879c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerTop);CHKERRQ(ierr);
8803dfda0b1SToby Isaac               }
8813dfda0b1SToby Isaac               else if (vz == 0) {
882c58f1c22SToby Isaac                 ierr = DMSetLabelValue(dm, "marker", edge, markerBottom);CHKERRQ(ierr);
8833dfda0b1SToby Isaac               }
8843dfda0b1SToby Isaac             }
8853dfda0b1SToby Isaac           }
8863dfda0b1SToby Isaac         }
8873dfda0b1SToby Isaac       }
8883dfda0b1SToby Isaac     }
8893dfda0b1SToby Isaac     ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
8903dfda0b1SToby Isaac     ierr = DMPlexStratify(dm);CHKERRQ(ierr);
8913dfda0b1SToby Isaac     /* Build coordinates */
8923dfda0b1SToby Isaac     ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
8933dfda0b1SToby Isaac     ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
8943dfda0b1SToby Isaac     ierr = PetscSectionSetFieldComponents(coordSection, 0, dim);CHKERRQ(ierr);
8953dfda0b1SToby Isaac     ierr = PetscSectionSetChart(coordSection, firstVertex, firstVertex+numVertices);CHKERRQ(ierr);
8963dfda0b1SToby Isaac     for (v = firstVertex; v < firstVertex+numVertices; ++v) {
8973dfda0b1SToby Isaac       ierr = PetscSectionSetDof(coordSection, v, dim);CHKERRQ(ierr);
8983dfda0b1SToby Isaac       ierr = PetscSectionSetFieldDof(coordSection, v, 0, dim);CHKERRQ(ierr);
8993dfda0b1SToby Isaac     }
9003dfda0b1SToby Isaac     ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
9013dfda0b1SToby Isaac     ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
9028b9ced59SLisandro Dalcin     ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
903da16285aSMichael Lange     ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
9043dfda0b1SToby Isaac     ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
9058b9ced59SLisandro Dalcin     ierr = VecSetBlockSize(coordinates, dim);CHKERRQ(ierr);
9063dfda0b1SToby Isaac     ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
9073dfda0b1SToby Isaac     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
9083dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; ++vz) {
9093dfda0b1SToby Isaac       for (vy = 0; vy < numYVertices; ++vy) {
9103dfda0b1SToby Isaac         for (vx = 0; vx < numXVertices; ++vx) {
9113dfda0b1SToby Isaac           coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+0] = lower[0] + ((upper[0] - lower[0])/numXEdges)*vx;
9123dfda0b1SToby Isaac           coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+1] = lower[1] + ((upper[1] - lower[1])/numYEdges)*vy;
9133dfda0b1SToby Isaac           if (dim == 3) {
9143dfda0b1SToby Isaac             coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+2] = lower[2] + ((upper[2] - lower[2])/numZEdges)*vz;
9153dfda0b1SToby Isaac           }
9163dfda0b1SToby Isaac         }
9173dfda0b1SToby Isaac       }
9183dfda0b1SToby Isaac     }
9193dfda0b1SToby Isaac     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
9203dfda0b1SToby Isaac     ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
9213dfda0b1SToby Isaac     ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
9223dfda0b1SToby Isaac   }
9233dfda0b1SToby Isaac   PetscFunctionReturn(0);
9243dfda0b1SToby Isaac }
9253dfda0b1SToby Isaac 
926768d5fceSMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxMesh_Tensor_Internal(MPI_Comm comm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate, DM *dm)
927a6dfd86eSKarl Rupp {
928c8c68bd8SToby Isaac   PetscInt       i;
929552f7358SJed Brown   PetscErrorCode ierr;
930552f7358SJed Brown 
931552f7358SJed Brown   PetscFunctionBegin;
932d67d2e29SLisandro Dalcin   PetscValidPointer(dm, 7);
933552f7358SJed Brown   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
934552f7358SJed Brown   PetscValidLogicalCollectiveInt(*dm,dim,2);
935552f7358SJed Brown   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
936c73cfb54SMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
937552f7358SJed Brown   switch (dim) {
938768d5fceSMatthew G. Knepley   case 2: {ierr = DMPlexCreateCubeMesh_Internal(*dm, lower, upper, faces, periodicity[0], periodicity[1], DM_BOUNDARY_NONE);CHKERRQ(ierr);break;}
939768d5fceSMatthew G. Knepley   case 3: {ierr = DMPlexCreateCubeMesh_Internal(*dm, lower, upper, faces, periodicity[0], periodicity[1], periodicity[2]);CHKERRQ(ierr);break;}
940768d5fceSMatthew G. Knepley   default: SETERRQ1(comm, PETSC_ERR_SUP, "Dimension not supported: %d", dim);
941768d5fceSMatthew G. Knepley   }
942768d5fceSMatthew G. Knepley   if (periodicity[0] == DM_BOUNDARY_PERIODIC || periodicity[0] == DM_BOUNDARY_TWIST ||
943768d5fceSMatthew G. Knepley       periodicity[1] == DM_BOUNDARY_PERIODIC || periodicity[1] == DM_BOUNDARY_TWIST ||
944768d5fceSMatthew G. Knepley       (dim > 2 && (periodicity[2] == DM_BOUNDARY_PERIODIC || periodicity[2] == DM_BOUNDARY_TWIST))) {
945768d5fceSMatthew G. Knepley     PetscReal L[3];
946768d5fceSMatthew G. Knepley     PetscReal maxCell[3];
947552f7358SJed Brown 
948c8c68bd8SToby Isaac     for (i = 0; i < dim; i++) {
949c8c68bd8SToby Isaac       L[i]       = upper[i] - lower[i];
950768d5fceSMatthew G. Knepley       maxCell[i] = 1.1 * (L[i] / PetscMax(1,faces[i]));
951768d5fceSMatthew G. Knepley     }
952768d5fceSMatthew G. Knepley     ierr = DMSetPeriodicity(*dm,PETSC_TRUE,maxCell,L,periodicity);CHKERRQ(ierr);
953768d5fceSMatthew G. Knepley   }
954768d5fceSMatthew G. Knepley   if (!interpolate) {
955768d5fceSMatthew G. Knepley     DM udm;
956768d5fceSMatthew G. Knepley 
957768d5fceSMatthew G. Knepley     ierr = DMPlexUninterpolate(*dm, &udm);CHKERRQ(ierr);
958768d5fceSMatthew G. Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
959768d5fceSMatthew G. Knepley     *dm  = udm;
960768d5fceSMatthew G. Knepley   }
961768d5fceSMatthew G. Knepley   PetscFunctionReturn(0);
962c8c68bd8SToby Isaac }
963c8c68bd8SToby Isaac 
964768d5fceSMatthew G. Knepley /*@C
965768d5fceSMatthew G. Knepley   DMPlexCreateBoxMesh - Creates a mesh on the tensor product of unit intervals (box) using simplices or tensor cells (hexahedra).
966768d5fceSMatthew G. Knepley 
967768d5fceSMatthew G. Knepley   Collective on MPI_Comm
968768d5fceSMatthew G. Knepley 
969768d5fceSMatthew G. Knepley   Input Parameters:
970768d5fceSMatthew G. Knepley + comm        - The communicator for the DM object
971768d5fceSMatthew G. Knepley . dim         - The spatial dimension
972768d5fceSMatthew G. Knepley . simplex     - PETSC_TRUE for simplices, PETSC_FALSE for tensor cells
973fdbf62faSLisandro Dalcin . faces       - Number of faces per dimension, or NULL for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D
974768d5fceSMatthew G. Knepley . lower       - The lower left corner, or NULL for (0, 0, 0)
975768d5fceSMatthew G. Knepley . upper       - The upper right corner, or NULL for (1, 1, 1)
976fdbf62faSLisandro Dalcin . periodicity - The boundary type for the X,Y,Z direction, or NULL for DM_BOUNDARY_NONE
977768d5fceSMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces)
978768d5fceSMatthew G. Knepley 
979768d5fceSMatthew G. Knepley   Output Parameter:
980768d5fceSMatthew G. Knepley . dm  - The DM object
981768d5fceSMatthew G. Knepley 
982768d5fceSMatthew G. Knepley   Note: Here is the numbering returned for 2 faces in each direction for tensor cells:
983768d5fceSMatthew G. Knepley $ 10---17---11---18----12
984768d5fceSMatthew G. Knepley $  |         |         |
985768d5fceSMatthew G. Knepley $  |         |         |
986768d5fceSMatthew G. Knepley $ 20    2   22    3    24
987768d5fceSMatthew G. Knepley $  |         |         |
988768d5fceSMatthew G. Knepley $  |         |         |
989768d5fceSMatthew G. Knepley $  7---15----8---16----9
990768d5fceSMatthew G. Knepley $  |         |         |
991768d5fceSMatthew G. Knepley $  |         |         |
992768d5fceSMatthew G. Knepley $ 19    0   21    1   23
993768d5fceSMatthew G. Knepley $  |         |         |
994768d5fceSMatthew G. Knepley $  |         |         |
995768d5fceSMatthew G. Knepley $  4---13----5---14----6
996768d5fceSMatthew G. Knepley 
997768d5fceSMatthew G. Knepley and for simplicial cells
998768d5fceSMatthew G. Knepley 
999768d5fceSMatthew G. Knepley $ 14----8---15----9----16
1000768d5fceSMatthew G. Knepley $  |\     5  |\      7 |
1001768d5fceSMatthew G. Knepley $  | \       | \       |
1002768d5fceSMatthew G. Knepley $ 13   2    14    3    15
1003768d5fceSMatthew G. Knepley $  | 4   \   | 6   \   |
1004768d5fceSMatthew G. Knepley $  |       \ |       \ |
1005768d5fceSMatthew G. Knepley $ 11----6---12----7----13
1006768d5fceSMatthew G. Knepley $  |\        |\        |
1007768d5fceSMatthew G. Knepley $  | \    1  | \     3 |
1008768d5fceSMatthew G. Knepley $ 10   0    11    1    12
1009768d5fceSMatthew G. Knepley $  | 0   \   | 2   \   |
1010768d5fceSMatthew G. Knepley $  |       \ |       \ |
1011768d5fceSMatthew G. Knepley $  8----4----9----5----10
1012768d5fceSMatthew G. Knepley 
1013768d5fceSMatthew G. Knepley   Level: beginner
1014768d5fceSMatthew G. Knepley 
1015768d5fceSMatthew G. Knepley .keywords: DM, create
1016768d5fceSMatthew G. Knepley .seealso: DMPlexCreateFromFile(), DMPlexCreateHexCylinderMesh(), DMSetType(), DMCreate()
1017768d5fceSMatthew G. Knepley @*/
1018768d5fceSMatthew G. Knepley PetscErrorCode DMPlexCreateBoxMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate, DM *dm)
1019552f7358SJed Brown {
1020fdbf62faSLisandro Dalcin   PetscInt       i;
1021fdbf62faSLisandro Dalcin   PetscInt       fac[3] = {0, 0, 0};
1022fdbf62faSLisandro Dalcin   PetscReal      low[3] = {0, 0, 0};
1023fdbf62faSLisandro Dalcin   PetscReal      upp[3] = {1, 1, 1};
1024fdbf62faSLisandro Dalcin   DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
1025768d5fceSMatthew G. Knepley   PetscErrorCode ierr;
1026552f7358SJed Brown 
1027768d5fceSMatthew G. Knepley   PetscFunctionBegin;
1028fdbf62faSLisandro Dalcin   for (i = 0; i < dim; ++i) fac[i] = faces ? faces[i] : (dim == 1 ? 1 : 4-dim);
1029fdbf62faSLisandro Dalcin   if (lower) for (i = 0; i < dim; ++i) low[i] = lower[i];
1030fdbf62faSLisandro Dalcin   if (upper) for (i = 0; i < dim; ++i) upp[i] = upper[i];
1031fdbf62faSLisandro Dalcin   if (periodicity) for (i = 0; i < dim; ++i) bdt[i] = periodicity[i];
1032fdbf62faSLisandro Dalcin 
1033fdbf62faSLisandro Dalcin   if (dim == 1)      {ierr = DMPlexCreateLineMesh_Internal(comm, fac[0], low[0], upp[0], bdt[0], dm);CHKERRQ(ierr);}
1034fdbf62faSLisandro Dalcin   else if (simplex)  {ierr = DMPlexCreateBoxMesh_Simplex_Internal(comm, dim, fac, low, upp, bdt, interpolate, dm);CHKERRQ(ierr);}
1035768d5fceSMatthew G. Knepley   else               {ierr = DMPlexCreateBoxMesh_Tensor_Internal(comm, dim, fac, low, upp, bdt, interpolate, dm);CHKERRQ(ierr);}
1036552f7358SJed Brown   PetscFunctionReturn(0);
1037552f7358SJed Brown }
1038552f7358SJed Brown 
1039a9074c1eSMatthew G. Knepley /*@C
1040a9074c1eSMatthew G. Knepley   DMPlexSetOptionsPrefix - Sets the prefix used for searching for all DM options in the database.
1041a9074c1eSMatthew G. Knepley 
1042a9074c1eSMatthew G. Knepley   Logically Collective on DM
1043a9074c1eSMatthew G. Knepley 
1044a9074c1eSMatthew G. Knepley   Input Parameters:
1045a9074c1eSMatthew G. Knepley + dm - the DM context
1046a9074c1eSMatthew G. Knepley - prefix - the prefix to prepend to all option names
1047a9074c1eSMatthew G. Knepley 
1048a9074c1eSMatthew G. Knepley   Notes:
1049a9074c1eSMatthew G. Knepley   A hyphen (-) must NOT be given at the beginning of the prefix name.
1050a9074c1eSMatthew G. Knepley   The first character of all runtime options is AUTOMATICALLY the hyphen.
1051a9074c1eSMatthew G. Knepley 
1052a9074c1eSMatthew G. Knepley   Level: advanced
1053a9074c1eSMatthew G. Knepley 
1054a9074c1eSMatthew G. Knepley .seealso: SNESSetFromOptions()
1055a9074c1eSMatthew G. Knepley @*/
1056a9074c1eSMatthew G. Knepley PetscErrorCode DMPlexSetOptionsPrefix(DM dm, const char prefix[])
1057a9074c1eSMatthew G. Knepley {
1058a9074c1eSMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dm->data;
1059a9074c1eSMatthew G. Knepley   PetscErrorCode ierr;
1060a9074c1eSMatthew G. Knepley 
1061a9074c1eSMatthew G. Knepley   PetscFunctionBegin;
1062a9074c1eSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1063a9074c1eSMatthew G. Knepley   ierr = PetscObjectSetOptionsPrefix((PetscObject) dm, prefix);CHKERRQ(ierr);
1064a9074c1eSMatthew G. Knepley   ierr = PetscObjectSetOptionsPrefix((PetscObject) mesh->partitioner, prefix);CHKERRQ(ierr);
1065a9074c1eSMatthew G. Knepley   PetscFunctionReturn(0);
1066a9074c1eSMatthew G. Knepley }
1067a9074c1eSMatthew G. Knepley 
10680510c589SMatthew G. Knepley /*@
10690510c589SMatthew G. Knepley   DMPlexCreateHexCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using hexahedra.
10700510c589SMatthew G. Knepley 
10710510c589SMatthew G. Knepley   Collective on MPI_Comm
10720510c589SMatthew G. Knepley 
10730510c589SMatthew G. Knepley   Input Parameters:
10740510c589SMatthew G. Knepley + comm      - The communicator for the DM object
1075dbc1dc17SMatthew G. Knepley . numRefine - The number of regular refinements to the basic 5 cell structure
10760510c589SMatthew G. Knepley - periodicZ - The boundary type for the Z direction
10770510c589SMatthew G. Knepley 
10780510c589SMatthew G. Knepley   Output Parameter:
10790510c589SMatthew G. Knepley . dm  - The DM object
10800510c589SMatthew G. Knepley 
10810510c589SMatthew G. Knepley   Note: Here is the output numbering looking from the bottom of the cylinder:
10820510c589SMatthew G. Knepley $       17-----14
10830510c589SMatthew G. Knepley $        |     |
10840510c589SMatthew G. Knepley $        |  2  |
10850510c589SMatthew G. Knepley $        |     |
10860510c589SMatthew G. Knepley $ 17-----8-----7-----14
10870510c589SMatthew G. Knepley $  |     |     |     |
10880510c589SMatthew G. Knepley $  |  3  |  0  |  1  |
10890510c589SMatthew G. Knepley $  |     |     |     |
10900510c589SMatthew G. Knepley $ 19-----5-----6-----13
10910510c589SMatthew G. Knepley $        |     |
10920510c589SMatthew G. Knepley $        |  4  |
10930510c589SMatthew G. Knepley $        |     |
10940510c589SMatthew G. Knepley $       19-----13
10950510c589SMatthew G. Knepley $
10960510c589SMatthew G. Knepley $ and up through the top
10970510c589SMatthew G. Knepley $
10980510c589SMatthew G. Knepley $       18-----16
10990510c589SMatthew G. Knepley $        |     |
11000510c589SMatthew G. Knepley $        |  2  |
11010510c589SMatthew G. Knepley $        |     |
11020510c589SMatthew G. Knepley $ 18----10----11-----16
11030510c589SMatthew G. Knepley $  |     |     |     |
11040510c589SMatthew G. Knepley $  |  3  |  0  |  1  |
11050510c589SMatthew G. Knepley $  |     |     |     |
11060510c589SMatthew G. Knepley $ 20-----9----12-----15
11070510c589SMatthew G. Knepley $        |     |
11080510c589SMatthew G. Knepley $        |  4  |
11090510c589SMatthew G. Knepley $        |     |
11100510c589SMatthew G. Knepley $       20-----15
11110510c589SMatthew G. Knepley 
11120510c589SMatthew G. Knepley   Level: beginner
11130510c589SMatthew G. Knepley 
11140510c589SMatthew G. Knepley .keywords: DM, create
1115768d5fceSMatthew G. Knepley .seealso: DMPlexCreateBoxMesh(), DMSetType(), DMCreate()
11160510c589SMatthew G. Knepley @*/
1117dbc1dc17SMatthew G. Knepley PetscErrorCode DMPlexCreateHexCylinderMesh(MPI_Comm comm, PetscInt numRefine, DMBoundaryType periodicZ, DM *dm)
11180510c589SMatthew G. Knepley {
11190510c589SMatthew G. Knepley   const PetscInt dim = 3;
1120006a8963SMatthew G. Knepley   PetscInt       numCells, numVertices, r;
11210510c589SMatthew G. Knepley   PetscErrorCode ierr;
11220510c589SMatthew G. Knepley 
11230510c589SMatthew G. Knepley   PetscFunctionBegin;
11240510c589SMatthew G. Knepley   PetscValidPointer(dm, 4);
1125dbc1dc17SMatthew G. Knepley   if (numRefine < 0) SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Number of refinements %D cannot be negative", numRefine);
11260510c589SMatthew G. Knepley   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
11270510c589SMatthew G. Knepley   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
11280510c589SMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
11290510c589SMatthew G. Knepley   /* Create topology */
11300510c589SMatthew G. Knepley   {
11310510c589SMatthew G. Knepley     PetscInt cone[8], c;
11320510c589SMatthew G. Knepley 
1133006a8963SMatthew G. Knepley     numCells    = 5;
1134006a8963SMatthew G. Knepley     numVertices = 16;
1135006a8963SMatthew G. Knepley     if (periodicZ == DM_BOUNDARY_PERIODIC) {
1136ae8bcbbbSMatthew G. Knepley       numCells   *= 3;
1137ae8bcbbbSMatthew G. Knepley       numVertices = 24;
1138006a8963SMatthew G. Knepley     }
11390510c589SMatthew G. Knepley     ierr = DMPlexSetChart(*dm, 0, numCells+numVertices);CHKERRQ(ierr);
11400510c589SMatthew G. Knepley     for (c = 0; c < numCells; c++) {ierr = DMPlexSetConeSize(*dm, c, 8);CHKERRQ(ierr);}
11410510c589SMatthew G. Knepley     ierr = DMSetUp(*dm);CHKERRQ(ierr);
1142006a8963SMatthew G. Knepley     if (periodicZ == DM_BOUNDARY_PERIODIC) {
1143ae8bcbbbSMatthew G. Knepley       cone[0] = 15; cone[1] = 18; cone[2] = 17; cone[3] = 16;
1144ae8bcbbbSMatthew G. Knepley       cone[4] = 31; cone[5] = 32; cone[6] = 33; cone[7] = 34;
1145006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 0, cone);CHKERRQ(ierr);
1146ae8bcbbbSMatthew G. Knepley       cone[0] = 16; cone[1] = 17; cone[2] = 24; cone[3] = 23;
1147ae8bcbbbSMatthew G. Knepley       cone[4] = 32; cone[5] = 36; cone[6] = 37; cone[7] = 33; /* 22 25 26 21 */
1148006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 1, cone);CHKERRQ(ierr);
1149ae8bcbbbSMatthew G. Knepley       cone[0] = 18; cone[1] = 27; cone[2] = 24; cone[3] = 17;
1150ae8bcbbbSMatthew G. Knepley       cone[4] = 34; cone[5] = 33; cone[6] = 37; cone[7] = 38;
1151006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 2, cone);CHKERRQ(ierr);
1152ae8bcbbbSMatthew G. Knepley       cone[0] = 29; cone[1] = 27; cone[2] = 18; cone[3] = 15;
1153ae8bcbbbSMatthew G. Knepley       cone[4] = 35; cone[5] = 31; cone[6] = 34; cone[7] = 38;
1154006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 3, cone);CHKERRQ(ierr);
1155ae8bcbbbSMatthew G. Knepley       cone[0] = 29; cone[1] = 15; cone[2] = 16; cone[3] = 23;
1156ae8bcbbbSMatthew G. Knepley       cone[4] = 35; cone[5] = 36; cone[6] = 32; cone[7] = 31;
1157006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 4, cone);CHKERRQ(ierr);
1158006a8963SMatthew G. Knepley 
1159ae8bcbbbSMatthew G. Knepley       cone[0] = 31; cone[1] = 34; cone[2] = 33; cone[3] = 32;
1160ae8bcbbbSMatthew G. Knepley       cone[4] = 19; cone[5] = 22; cone[6] = 21; cone[7] = 20;
1161006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 5, cone);CHKERRQ(ierr);
1162ae8bcbbbSMatthew G. Knepley       cone[0] = 32; cone[1] = 33; cone[2] = 37; cone[3] = 36;
1163ae8bcbbbSMatthew G. Knepley       cone[4] = 22; cone[5] = 25; cone[6] = 26; cone[7] = 21;
1164006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 6, cone);CHKERRQ(ierr);
1165ae8bcbbbSMatthew G. Knepley       cone[0] = 34; cone[1] = 38; cone[2] = 37; cone[3] = 33;
1166ae8bcbbbSMatthew G. Knepley       cone[4] = 20; cone[5] = 21; cone[6] = 26; cone[7] = 28;
1167006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 7, cone);CHKERRQ(ierr);
1168ae8bcbbbSMatthew G. Knepley       cone[0] = 35; cone[1] = 38; cone[2] = 34; cone[3] = 31;
1169ae8bcbbbSMatthew G. Knepley       cone[4] = 30; cone[5] = 19; cone[6] = 20; cone[7] = 28;
1170006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 8, cone);CHKERRQ(ierr);
1171ae8bcbbbSMatthew G. Knepley       cone[0] = 35; cone[1] = 31; cone[2] = 32; cone[3] = 36;
1172ae8bcbbbSMatthew G. Knepley       cone[4] = 30; cone[5] = 25; cone[6] = 22; cone[7] = 19;
1173006a8963SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 9, cone);CHKERRQ(ierr);
1174ae8bcbbbSMatthew G. Knepley 
1175ae8bcbbbSMatthew G. Knepley       cone[0] = 19; cone[1] = 20; cone[2] = 21; cone[3] = 22;
1176ae8bcbbbSMatthew G. Knepley       cone[4] = 15; cone[5] = 16; cone[6] = 17; cone[7] = 18;
1177ae8bcbbbSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 10, cone);CHKERRQ(ierr);
1178ae8bcbbbSMatthew G. Knepley       cone[0] = 22; cone[1] = 21; cone[2] = 26; cone[3] = 25;
1179ae8bcbbbSMatthew G. Knepley       cone[4] = 16; cone[5] = 23; cone[6] = 24; cone[7] = 17;
1180ae8bcbbbSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 11, cone);CHKERRQ(ierr);
1181ae8bcbbbSMatthew G. Knepley       cone[0] = 20; cone[1] = 28; cone[2] = 26; cone[3] = 21;
1182ae8bcbbbSMatthew G. Knepley       cone[4] = 18; cone[5] = 17; cone[6] = 24; cone[7] = 27;
1183ae8bcbbbSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 12, cone);CHKERRQ(ierr);
1184ae8bcbbbSMatthew G. Knepley       cone[0] = 30; cone[1] = 28; cone[2] = 20; cone[3] = 19;
1185ae8bcbbbSMatthew G. Knepley       cone[4] = 29; cone[5] = 15; cone[6] = 18; cone[7] = 27;
1186ae8bcbbbSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 13, cone);CHKERRQ(ierr);
1187ae8bcbbbSMatthew G. Knepley       cone[0] = 30; cone[1] = 19; cone[2] = 22; cone[3] = 25;
1188ae8bcbbbSMatthew G. Knepley       cone[4] = 29; cone[5] = 23; cone[6] = 16; cone[7] = 15;
1189ae8bcbbbSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 14, cone);CHKERRQ(ierr);
1190006a8963SMatthew G. Knepley     } else {
119110c6f908SMatthew G. Knepley       cone[0] =  5; cone[1] =  8; cone[2] =  7; cone[3] =  6;
119210c6f908SMatthew G. Knepley       cone[4] =  9; cone[5] = 12; cone[6] = 11; cone[7] = 10;
11930510c589SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 0, cone);CHKERRQ(ierr);
119410c6f908SMatthew G. Knepley       cone[0] =  6; cone[1] =  7; cone[2] = 14; cone[3] = 13;
119510c6f908SMatthew G. Knepley       cone[4] = 12; cone[5] = 15; cone[6] = 16; cone[7] = 11;
11960510c589SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 1, cone);CHKERRQ(ierr);
119710c6f908SMatthew G. Knepley       cone[0] =  8; cone[1] = 17; cone[2] = 14; cone[3] =  7;
119810c6f908SMatthew G. Knepley       cone[4] = 10; cone[5] = 11; cone[6] = 16; cone[7] = 18;
11990510c589SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 2, cone);CHKERRQ(ierr);
120010c6f908SMatthew G. Knepley       cone[0] = 19; cone[1] = 17; cone[2] =  8; cone[3] =  5;
120110c6f908SMatthew G. Knepley       cone[4] = 20; cone[5] =  9; cone[6] = 10; cone[7] = 18;
12020510c589SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 3, cone);CHKERRQ(ierr);
120310c6f908SMatthew G. Knepley       cone[0] = 19; cone[1] =  5; cone[2] =  6; cone[3] = 13;
120410c6f908SMatthew G. Knepley       cone[4] = 20; cone[5] = 15; cone[6] = 12; cone[7] =  9;
12050510c589SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 4, cone);CHKERRQ(ierr);
1206006a8963SMatthew G. Knepley     }
12070510c589SMatthew G. Knepley     ierr = DMPlexSymmetrize(*dm);CHKERRQ(ierr);
12080510c589SMatthew G. Knepley     ierr = DMPlexStratify(*dm);CHKERRQ(ierr);
12090510c589SMatthew G. Knepley   }
12100510c589SMatthew G. Knepley   /* Interpolate */
12110510c589SMatthew G. Knepley   {
12120510c589SMatthew G. Knepley     DM idm = NULL;
12130510c589SMatthew G. Knepley 
12140510c589SMatthew G. Knepley     ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
12150510c589SMatthew G. Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
12160510c589SMatthew G. Knepley     *dm  = idm;
12170510c589SMatthew G. Knepley   }
1218dbc1dc17SMatthew G. Knepley   /* Create cube geometry */
12190510c589SMatthew G. Knepley   {
12200510c589SMatthew G. Knepley     Vec             coordinates;
12210510c589SMatthew G. Knepley     PetscSection    coordSection;
12220510c589SMatthew G. Knepley     PetscScalar    *coords;
12230510c589SMatthew G. Knepley     PetscInt        coordSize, v;
12240510c589SMatthew G. Knepley     const PetscReal dis = 1.0/PetscSqrtReal(2.0);
12250510c589SMatthew G. Knepley     const PetscReal ds2 = dis/2.0;
12260510c589SMatthew G. Knepley 
12270510c589SMatthew G. Knepley     /* Build coordinates */
12280510c589SMatthew G. Knepley     ierr = DMGetCoordinateSection(*dm, &coordSection);CHKERRQ(ierr);
12290510c589SMatthew G. Knepley     ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
12300510c589SMatthew G. Knepley     ierr = PetscSectionSetFieldComponents(coordSection, 0, dim);CHKERRQ(ierr);
12310510c589SMatthew G. Knepley     ierr = PetscSectionSetChart(coordSection, numCells, numCells+numVertices);CHKERRQ(ierr);
12320510c589SMatthew G. Knepley     for (v = numCells; v < numCells+numVertices; ++v) {
12330510c589SMatthew G. Knepley       ierr = PetscSectionSetDof(coordSection, v, dim);CHKERRQ(ierr);
12340510c589SMatthew G. Knepley       ierr = PetscSectionSetFieldDof(coordSection, v, 0, dim);CHKERRQ(ierr);
12350510c589SMatthew G. Knepley     }
12360510c589SMatthew G. Knepley     ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
12370510c589SMatthew G. Knepley     ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
12380510c589SMatthew G. Knepley     ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
12390510c589SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
12400510c589SMatthew G. Knepley     ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
12410510c589SMatthew G. Knepley     ierr = VecSetBlockSize(coordinates, dim);CHKERRQ(ierr);
12420510c589SMatthew G. Knepley     ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
12430510c589SMatthew G. Knepley     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
12440510c589SMatthew G. Knepley     coords[0*dim+0] = -ds2; coords[0*dim+1] = -ds2; coords[0*dim+2] = 0.0;
12450510c589SMatthew G. Knepley     coords[1*dim+0] =  ds2; coords[1*dim+1] = -ds2; coords[1*dim+2] = 0.0;
12460510c589SMatthew G. Knepley     coords[2*dim+0] =  ds2; coords[2*dim+1] =  ds2; coords[2*dim+2] = 0.0;
12470510c589SMatthew G. Knepley     coords[3*dim+0] = -ds2; coords[3*dim+1] =  ds2; coords[3*dim+2] = 0.0;
12480510c589SMatthew G. Knepley     coords[4*dim+0] = -ds2; coords[4*dim+1] = -ds2; coords[4*dim+2] = 1.0;
12490510c589SMatthew G. Knepley     coords[5*dim+0] = -ds2; coords[5*dim+1] =  ds2; coords[5*dim+2] = 1.0;
12500510c589SMatthew G. Knepley     coords[6*dim+0] =  ds2; coords[6*dim+1] =  ds2; coords[6*dim+2] = 1.0;
12510510c589SMatthew G. Knepley     coords[7*dim+0] =  ds2; coords[7*dim+1] = -ds2; coords[7*dim+2] = 1.0;
12520510c589SMatthew G. Knepley     coords[ 8*dim+0] =  dis; coords[ 8*dim+1] = -dis; coords[ 8*dim+2] = 0.0;
12530510c589SMatthew G. Knepley     coords[ 9*dim+0] =  dis; coords[ 9*dim+1] =  dis; coords[ 9*dim+2] = 0.0;
12540510c589SMatthew G. Knepley     coords[10*dim+0] =  dis; coords[10*dim+1] = -dis; coords[10*dim+2] = 1.0;
12550510c589SMatthew G. Knepley     coords[11*dim+0] =  dis; coords[11*dim+1] =  dis; coords[11*dim+2] = 1.0;
12560510c589SMatthew G. Knepley     coords[12*dim+0] = -dis; coords[12*dim+1] =  dis; coords[12*dim+2] = 0.0;
12570510c589SMatthew G. Knepley     coords[13*dim+0] = -dis; coords[13*dim+1] =  dis; coords[13*dim+2] = 1.0;
12580510c589SMatthew G. Knepley     coords[14*dim+0] = -dis; coords[14*dim+1] = -dis; coords[14*dim+2] = 0.0;
12590510c589SMatthew G. Knepley     coords[15*dim+0] = -dis; coords[15*dim+1] = -dis; coords[15*dim+2] = 1.0;
1260ae8bcbbbSMatthew G. Knepley     if (periodicZ == DM_BOUNDARY_PERIODIC) {
1261ae8bcbbbSMatthew G. Knepley       /* 15 31 19 */ coords[16*dim+0] = -ds2; coords[16*dim+1] = -ds2; coords[16*dim+2] = 0.5;
1262ae8bcbbbSMatthew G. Knepley       /* 16 32 22 */ coords[17*dim+0] =  ds2; coords[17*dim+1] = -ds2; coords[17*dim+2] = 0.5;
1263ae8bcbbbSMatthew G. Knepley       /* 17 33 21 */ coords[18*dim+0] =  ds2; coords[18*dim+1] =  ds2; coords[18*dim+2] = 0.5;
1264ae8bcbbbSMatthew G. Knepley       /* 18 34 20 */ coords[19*dim+0] = -ds2; coords[19*dim+1] =  ds2; coords[19*dim+2] = 0.5;
1265ae8bcbbbSMatthew G. Knepley       /* 29 35 30 */ coords[20*dim+0] = -dis; coords[20*dim+1] = -dis; coords[20*dim+2] = 0.5;
1266ae8bcbbbSMatthew G. Knepley       /* 23 36 25 */ coords[21*dim+0] =  dis; coords[21*dim+1] = -dis; coords[21*dim+2] = 0.5;
1267ae8bcbbbSMatthew G. Knepley       /* 24 37 26 */ coords[22*dim+0] =  dis; coords[22*dim+1] =  dis; coords[22*dim+2] = 0.5;
1268ae8bcbbbSMatthew G. Knepley       /* 27 38 28 */ coords[23*dim+0] = -dis; coords[23*dim+1] =  dis; coords[23*dim+2] = 0.5;
1269ae8bcbbbSMatthew G. Knepley     }
12700510c589SMatthew G. Knepley     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
12710510c589SMatthew G. Knepley     ierr = DMSetCoordinatesLocal(*dm, coordinates);CHKERRQ(ierr);
12720510c589SMatthew G. Knepley     ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
12730510c589SMatthew G. Knepley   }
1274006a8963SMatthew G. Knepley   /* Create periodicity */
1275006a8963SMatthew G. Knepley   if (periodicZ == DM_BOUNDARY_PERIODIC || periodicZ == DM_BOUNDARY_TWIST) {
1276006a8963SMatthew G. Knepley     PetscReal      L[3];
1277006a8963SMatthew G. Knepley     PetscReal      maxCell[3];
1278006a8963SMatthew G. Knepley     DMBoundaryType bdType[3];
1279006a8963SMatthew G. Knepley     PetscReal      lower[3] = {0.0, 0.0, 0.0};
1280ae8bcbbbSMatthew G. Knepley     PetscReal      upper[3] = {1.0, 1.0, 1.5};
1281ae8bcbbbSMatthew G. Knepley     PetscInt       i, numZCells = 3;
1282006a8963SMatthew G. Knepley 
1283006a8963SMatthew G. Knepley     bdType[0] = DM_BOUNDARY_NONE;
1284006a8963SMatthew G. Knepley     bdType[1] = DM_BOUNDARY_NONE;
1285006a8963SMatthew G. Knepley     bdType[2] = periodicZ;
1286006a8963SMatthew G. Knepley     for (i = 0; i < dim; i++) {
1287006a8963SMatthew G. Knepley       L[i]       = upper[i] - lower[i];
1288006a8963SMatthew G. Knepley       maxCell[i] = 1.1 * (L[i] / numZCells);
1289006a8963SMatthew G. Knepley     }
1290dd169d64SMatthew G. Knepley     ierr = DMSetPeriodicity(*dm, PETSC_TRUE, maxCell, L, bdType);CHKERRQ(ierr);
1291006a8963SMatthew G. Knepley   }
1292dbc1dc17SMatthew G. Knepley   /* Refine topology */
1293dbc1dc17SMatthew G. Knepley   for (r = 0; r < numRefine; ++r) {
1294dbc1dc17SMatthew G. Knepley     DM rdm = NULL;
1295dbc1dc17SMatthew G. Knepley 
1296dbc1dc17SMatthew G. Knepley     ierr = DMRefine(*dm, comm, &rdm);CHKERRQ(ierr);
1297dbc1dc17SMatthew G. Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
1298dbc1dc17SMatthew G. Knepley     *dm  = rdm;
1299dbc1dc17SMatthew G. Knepley   }
1300dbc1dc17SMatthew G. Knepley   /* Remap geometry to cylinder
1301dbc1dc17SMatthew G. Knepley        Interior square: Linear interpolation is correct
1302dbc1dc17SMatthew G. Knepley        The other cells all have vertices on rays from the origin. We want to uniformly expand the spacing
1303dbc1dc17SMatthew G. Knepley        such that the last vertex is on the unit circle. So the closest and farthest vertices are at distance
1304dbc1dc17SMatthew G. Knepley 
1305dbc1dc17SMatthew G. Knepley          phi     = arctan(y/x)
1306dbc1dc17SMatthew G. Knepley          d_close = sqrt(1/8 + 1/4 sin^2(phi))
1307dbc1dc17SMatthew G. Knepley          d_far   = sqrt(1/2 + sin^2(phi))
1308dbc1dc17SMatthew G. Knepley 
1309dbc1dc17SMatthew G. Knepley        so we remap them using
1310dbc1dc17SMatthew G. Knepley 
1311dbc1dc17SMatthew G. Knepley          x_new = x_close + (x - x_close) (1 - d_close) / (d_far - d_close)
1312dbc1dc17SMatthew G. Knepley          y_new = y_close + (y - y_close) (1 - d_close) / (d_far - d_close)
1313dbc1dc17SMatthew G. Knepley 
1314dbc1dc17SMatthew G. Knepley        If pi/4 < phi < 3pi/4 or -3pi/4 < phi < -pi/4, then we switch x and y.
1315dbc1dc17SMatthew G. Knepley   */
1316dbc1dc17SMatthew G. Knepley   {
1317dbc1dc17SMatthew G. Knepley     Vec           coordinates;
1318dbc1dc17SMatthew G. Knepley     PetscSection  coordSection;
1319dbc1dc17SMatthew G. Knepley     PetscScalar  *coords;
1320dbc1dc17SMatthew G. Knepley     PetscInt      vStart, vEnd, v;
1321dbc1dc17SMatthew G. Knepley     const PetscReal dis = 1.0/PetscSqrtReal(2.0);
1322dbc1dc17SMatthew G. Knepley     const PetscReal ds2 = 0.5*dis;
1323dbc1dc17SMatthew G. Knepley 
1324dbc1dc17SMatthew G. Knepley     ierr = DMPlexGetDepthStratum(*dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
1325dbc1dc17SMatthew G. Knepley     ierr = DMGetCoordinateSection(*dm, &coordSection);CHKERRQ(ierr);
1326dbc1dc17SMatthew G. Knepley     ierr = DMGetCoordinatesLocal(*dm, &coordinates);CHKERRQ(ierr);
1327dbc1dc17SMatthew G. Knepley     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
1328dbc1dc17SMatthew G. Knepley     for (v = vStart; v < vEnd; ++v) {
132971752167SMatthew G. Knepley       PetscReal phi, sinp, cosp, dc, df, x, y, xc, yc;
1330dbc1dc17SMatthew G. Knepley       PetscInt  off;
1331dbc1dc17SMatthew G. Knepley 
1332dbc1dc17SMatthew G. Knepley       ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr);
133371752167SMatthew G. Knepley       if ((PetscAbsScalar(coords[off+0]) <= ds2) && (PetscAbsScalar(coords[off+1]) <= ds2)) continue;
133471752167SMatthew G. Knepley       x    = PetscRealPart(coords[off]);
133571752167SMatthew G. Knepley       y    = PetscRealPart(coords[off+1]);
133671752167SMatthew G. Knepley       phi  = PetscAtan2Real(y, x);
1337dbc1dc17SMatthew G. Knepley       sinp = PetscSinReal(phi);
1338dbc1dc17SMatthew G. Knepley       cosp = PetscCosReal(phi);
1339dbc1dc17SMatthew G. Knepley       if ((PetscAbsReal(phi) > PETSC_PI/4.0) && (PetscAbsReal(phi) < 3.0*PETSC_PI/4.0)) {
134071752167SMatthew G. Knepley         dc = PetscAbsReal(ds2/sinp);
134171752167SMatthew G. Knepley         df = PetscAbsReal(dis/sinp);
13429420fdb6SJose E. Roman         xc = ds2*x/PetscAbsReal(y);
134371752167SMatthew G. Knepley         yc = ds2*PetscSignReal(y);
1344dbc1dc17SMatthew G. Knepley       } else {
134571752167SMatthew G. Knepley         dc = PetscAbsReal(ds2/cosp);
134671752167SMatthew G. Knepley         df = PetscAbsReal(dis/cosp);
134771752167SMatthew G. Knepley         xc = ds2*PetscSignReal(x);
13489420fdb6SJose E. Roman         yc = ds2*y/PetscAbsReal(x);
1349dbc1dc17SMatthew G. Knepley       }
1350dbc1dc17SMatthew G. Knepley       coords[off+0] = xc + (coords[off+0] - xc)*(1.0 - dc)/(df - dc);
1351dbc1dc17SMatthew G. Knepley       coords[off+1] = yc + (coords[off+1] - yc)*(1.0 - dc)/(df - dc);
1352dbc1dc17SMatthew G. Knepley     }
1353dbc1dc17SMatthew G. Knepley     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
13540510c589SMatthew G. Knepley     if (periodicZ == DM_BOUNDARY_PERIODIC || periodicZ == DM_BOUNDARY_TWIST) {
1355006a8963SMatthew G. Knepley       ierr = DMLocalizeCoordinates(*dm);CHKERRQ(ierr);
13560510c589SMatthew G. Knepley     }
13570510c589SMatthew G. Knepley   }
13580510c589SMatthew G. Knepley   PetscFunctionReturn(0);
13590510c589SMatthew G. Knepley }
13600510c589SMatthew G. Knepley 
136124119c2aSMatthew G. Knepley /*@
136224119c2aSMatthew G. Knepley   DMPlexCreateWedgeCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using wedges.
136324119c2aSMatthew G. Knepley 
136424119c2aSMatthew G. Knepley   Collective on MPI_Comm
136524119c2aSMatthew G. Knepley 
136624119c2aSMatthew G. Knepley   Input Parameters:
136724119c2aSMatthew G. Knepley + comm - The communicator for the DM object
136824119c2aSMatthew G. Knepley . n    - The number of wedges around the origin
136924119c2aSMatthew G. Knepley - interpolate - Create edges and faces
137024119c2aSMatthew G. Knepley 
137124119c2aSMatthew G. Knepley   Output Parameter:
137224119c2aSMatthew G. Knepley . dm  - The DM object
137324119c2aSMatthew G. Knepley 
137424119c2aSMatthew G. Knepley   Level: beginner
137524119c2aSMatthew G. Knepley 
137624119c2aSMatthew G. Knepley .keywords: DM, create
1377768d5fceSMatthew G. Knepley .seealso: DMPlexCreateHexCylinderMesh(), DMPlexCreateBoxMesh(), DMSetType(), DMCreate()
137824119c2aSMatthew G. Knepley @*/
137924119c2aSMatthew G. Knepley PetscErrorCode DMPlexCreateWedgeCylinderMesh(MPI_Comm comm, PetscInt n, PetscBool interpolate, DM *dm)
138024119c2aSMatthew G. Knepley {
138124119c2aSMatthew G. Knepley   const PetscInt dim = 3;
138224119c2aSMatthew G. Knepley   PetscInt       numCells, numVertices;
138324119c2aSMatthew G. Knepley   PetscErrorCode ierr;
138424119c2aSMatthew G. Knepley 
138524119c2aSMatthew G. Knepley   PetscFunctionBegin;
138624119c2aSMatthew G. Knepley   PetscValidPointer(dm, 3);
138724119c2aSMatthew G. Knepley   if (n < 0) SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Number of wedges %D cannot be negative", n);
138824119c2aSMatthew G. Knepley   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
138924119c2aSMatthew G. Knepley   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
139024119c2aSMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
139124119c2aSMatthew G. Knepley   /* Create topology */
139224119c2aSMatthew G. Knepley   {
139324119c2aSMatthew G. Knepley     PetscInt cone[6], c;
139424119c2aSMatthew G. Knepley 
139524119c2aSMatthew G. Knepley     numCells    = n;
139624119c2aSMatthew G. Knepley     numVertices = 2*(n+1);
139724119c2aSMatthew G. Knepley     ierr = DMPlexSetChart(*dm, 0, numCells+numVertices);CHKERRQ(ierr);
139824119c2aSMatthew G. Knepley     for (c = 0; c < numCells; c++) {ierr = DMPlexSetConeSize(*dm, c, 6);CHKERRQ(ierr);}
139924119c2aSMatthew G. Knepley     ierr = DMSetUp(*dm);CHKERRQ(ierr);
140024119c2aSMatthew G. Knepley     for (c = 0; c < numCells; c++) {
140124119c2aSMatthew G. Knepley       cone[0] =  c+n*1; cone[1] = (c+1)%n+n*1; cone[2] = 0+3*n;
140224119c2aSMatthew G. Knepley       cone[3] =  c+n*2; cone[4] = (c+1)%n+n*2; cone[5] = 1+3*n;
140324119c2aSMatthew G. Knepley       ierr = DMPlexSetCone(*dm, c, cone);CHKERRQ(ierr);
140424119c2aSMatthew G. Knepley     }
140524119c2aSMatthew G. Knepley     ierr = DMPlexSymmetrize(*dm);CHKERRQ(ierr);
140624119c2aSMatthew G. Knepley     ierr = DMPlexStratify(*dm);CHKERRQ(ierr);
140724119c2aSMatthew G. Knepley   }
140824119c2aSMatthew G. Knepley   /* Interpolate */
140924119c2aSMatthew G. Knepley   if (interpolate) {
141024119c2aSMatthew G. Knepley     DM idm = NULL;
141124119c2aSMatthew G. Knepley 
141224119c2aSMatthew G. Knepley     ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
141324119c2aSMatthew G. Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
141424119c2aSMatthew G. Knepley     *dm  = idm;
141524119c2aSMatthew G. Knepley   }
141624119c2aSMatthew G. Knepley   /* Create cylinder geometry */
141724119c2aSMatthew G. Knepley   {
141824119c2aSMatthew G. Knepley     Vec          coordinates;
141924119c2aSMatthew G. Knepley     PetscSection coordSection;
142024119c2aSMatthew G. Knepley     PetscScalar *coords;
142124119c2aSMatthew G. Knepley     PetscInt     coordSize, v, c;
142224119c2aSMatthew G. Knepley 
142324119c2aSMatthew G. Knepley     /* Build coordinates */
142424119c2aSMatthew G. Knepley     ierr = DMGetCoordinateSection(*dm, &coordSection);CHKERRQ(ierr);
142524119c2aSMatthew G. Knepley     ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
142624119c2aSMatthew G. Knepley     ierr = PetscSectionSetFieldComponents(coordSection, 0, dim);CHKERRQ(ierr);
142724119c2aSMatthew G. Knepley     ierr = PetscSectionSetChart(coordSection, numCells, numCells+numVertices);CHKERRQ(ierr);
142824119c2aSMatthew G. Knepley     for (v = numCells; v < numCells+numVertices; ++v) {
142924119c2aSMatthew G. Knepley       ierr = PetscSectionSetDof(coordSection, v, dim);CHKERRQ(ierr);
143024119c2aSMatthew G. Knepley       ierr = PetscSectionSetFieldDof(coordSection, v, 0, dim);CHKERRQ(ierr);
143124119c2aSMatthew G. Knepley     }
143224119c2aSMatthew G. Knepley     ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
143324119c2aSMatthew G. Knepley     ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
143424119c2aSMatthew G. Knepley     ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
143524119c2aSMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
143624119c2aSMatthew G. Knepley     ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
143724119c2aSMatthew G. Knepley     ierr = VecSetBlockSize(coordinates, dim);CHKERRQ(ierr);
143824119c2aSMatthew G. Knepley     ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
143924119c2aSMatthew G. Knepley     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
144024119c2aSMatthew G. Knepley     for (c = 0; c < numCells; c++) {
144124119c2aSMatthew G. Knepley       coords[(c+0*n)*dim+0] = PetscCosReal(2.0*c*PETSC_PI/n); coords[(c+0*n)*dim+1] = PetscSinReal(2.0*c*PETSC_PI/n); coords[(c+0*n)*dim+2] = 1.0;
144224119c2aSMatthew G. Knepley       coords[(c+1*n)*dim+0] = PetscCosReal(2.0*c*PETSC_PI/n); coords[(c+1*n)*dim+1] = PetscSinReal(2.0*c*PETSC_PI/n); coords[(c+1*n)*dim+2] = 0.0;
144324119c2aSMatthew G. Knepley     }
144424119c2aSMatthew G. Knepley     coords[(2*n+0)*dim+0] = 0.0; coords[(2*n+0)*dim+1] = 0.0; coords[(2*n+0)*dim+2] = 1.0;
144524119c2aSMatthew G. Knepley     coords[(2*n+1)*dim+0] = 0.0; coords[(2*n+1)*dim+1] = 0.0; coords[(2*n+1)*dim+2] = 0.0;
144624119c2aSMatthew G. Knepley     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
144724119c2aSMatthew G. Knepley     ierr = DMSetCoordinatesLocal(*dm, coordinates);CHKERRQ(ierr);
144824119c2aSMatthew G. Knepley     ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
144924119c2aSMatthew G. Knepley   }
145024119c2aSMatthew G. Knepley   PetscFunctionReturn(0);
145124119c2aSMatthew G. Knepley }
145224119c2aSMatthew G. Knepley 
145365a81367SMatthew G. Knepley PETSC_STATIC_INLINE PetscReal DiffNormReal(PetscInt dim, const PetscReal x[], const PetscReal y[])
145465a81367SMatthew G. Knepley {
145565a81367SMatthew G. Knepley   PetscReal prod = 0.0;
145665a81367SMatthew G. Knepley   PetscInt  i;
145765a81367SMatthew G. Knepley   for (i = 0; i < dim; ++i) prod += PetscSqr(x[i] - y[i]);
145865a81367SMatthew G. Knepley   return PetscSqrtReal(prod);
145965a81367SMatthew G. Knepley }
146065a81367SMatthew G. Knepley PETSC_STATIC_INLINE PetscReal DotReal(PetscInt dim, const PetscReal x[], const PetscReal y[])
146165a81367SMatthew G. Knepley {
146265a81367SMatthew G. Knepley   PetscReal prod = 0.0;
146365a81367SMatthew G. Knepley   PetscInt  i;
146465a81367SMatthew G. Knepley   for (i = 0; i < dim; ++i) prod += x[i]*y[i];
146565a81367SMatthew G. Knepley   return prod;
146665a81367SMatthew G. Knepley }
146765a81367SMatthew G. Knepley 
14682829fed8SMatthew G. Knepley /*@
146965a81367SMatthew G. Knepley   DMPlexCreateSphereMesh - Creates a mesh on the d-dimensional sphere, S^d.
14702829fed8SMatthew G. Knepley 
14712829fed8SMatthew G. Knepley   Collective on MPI_Comm
14722829fed8SMatthew G. Knepley 
14732829fed8SMatthew G. Knepley   Input Parameters:
14742829fed8SMatthew G. Knepley . comm  - The communicator for the DM object
147565a81367SMatthew G. Knepley . dim   - The dimension
147665a81367SMatthew G. Knepley - simplex - Use simplices, or tensor product cells
14772829fed8SMatthew G. Knepley 
14782829fed8SMatthew G. Knepley   Output Parameter:
14792829fed8SMatthew G. Knepley . dm  - The DM object
14802829fed8SMatthew G. Knepley 
14812829fed8SMatthew G. Knepley   Level: beginner
14822829fed8SMatthew G. Knepley 
14832829fed8SMatthew G. Knepley .keywords: DM, create
1484768d5fceSMatthew G. Knepley .seealso: DMPlexCreateBoxMesh(), DMSetType(), DMCreate()
14852829fed8SMatthew G. Knepley @*/
148665a81367SMatthew G. Knepley PetscErrorCode DMPlexCreateSphereMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, DM *dm)
14872829fed8SMatthew G. Knepley {
148865a81367SMatthew G. Knepley   const PetscInt  embedDim = dim+1;
148965a81367SMatthew G. Knepley   PetscSection    coordSection;
149065a81367SMatthew G. Knepley   Vec             coordinates;
149165a81367SMatthew G. Knepley   PetscScalar    *coords;
149265a81367SMatthew G. Knepley   PetscReal      *coordsIn;
149365a81367SMatthew G. Knepley   PetscInt        numCells, numEdges, numVerts, firstVertex, v, firstEdge, coordSize, d, c, e;
149465a81367SMatthew G. Knepley   PetscMPIInt     rank;
149565a81367SMatthew G. Knepley   PetscErrorCode  ierr;
149665a81367SMatthew G. Knepley 
149765a81367SMatthew G. Knepley   PetscFunctionBegin;
149865a81367SMatthew G. Knepley   PetscValidPointer(dm, 4);
149965a81367SMatthew G. Knepley   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
150065a81367SMatthew G. Knepley   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
150165a81367SMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
150265a81367SMatthew G. Knepley   ierr = DMSetCoordinateDim(*dm, dim+1);CHKERRQ(ierr);
150365a81367SMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) *dm), &rank);CHKERRQ(ierr);
150465a81367SMatthew G. Knepley   switch (dim) {
150565a81367SMatthew G. Knepley   case 2:
150665a81367SMatthew G. Knepley     if (simplex) {
1507116ded15SMatthew G. Knepley       DM              idm         = NULL;
1508116ded15SMatthew G. Knepley       const PetscReal edgeLen     = 2.0/(1.0 + PETSC_PHI);
1509116ded15SMatthew G. Knepley       const PetscReal vertex[3]   = {0.0, 1.0/(1.0 + PETSC_PHI), PETSC_PHI/(1.0 + PETSC_PHI)};
151065a81367SMatthew G. Knepley       const PetscInt  degree      = 5;
151165a81367SMatthew G. Knepley       PetscInt        s[3]        = {1, 1, 1};
151265a81367SMatthew G. Knepley       PetscInt        cone[3];
151365a81367SMatthew G. Knepley       PetscInt       *graph, p, i, j, k;
151465a81367SMatthew G. Knepley 
151565a81367SMatthew G. Knepley       numCells    = !rank ? 20 : 0;
151665a81367SMatthew G. Knepley       numVerts    = !rank ? 12 : 0;
151765a81367SMatthew G. Knepley       firstVertex = numCells;
151865a81367SMatthew G. Knepley       /* Use icosahedron, which for a unit sphere has coordinates which are all cyclic permutations of
151965a81367SMatthew G. Knepley 
152065a81367SMatthew G. Knepley            (0, \pm 1/\phi+1, \pm \phi/\phi+1)
152165a81367SMatthew G. Knepley 
152265a81367SMatthew G. Knepley          where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge
152365a81367SMatthew G. Knepley          length is then given by 2/\phi = 2 * 2.73606 = 5.47214.
152465a81367SMatthew G. Knepley        */
152565a81367SMatthew G. Knepley       /* Construct vertices */
152665a81367SMatthew G. Knepley       ierr = PetscCalloc1(numVerts * embedDim, &coordsIn);CHKERRQ(ierr);
152765a81367SMatthew G. Knepley       for (p = 0, i = 0; p < embedDim; ++p) {
152865a81367SMatthew G. Knepley         for (s[1] = -1; s[1] < 2; s[1] += 2) {
152965a81367SMatthew G. Knepley           for (s[2] = -1; s[2] < 2; s[2] += 2) {
153065a81367SMatthew G. Knepley             for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[(d+p)%embedDim]*vertex[(d+p)%embedDim];
153165a81367SMatthew G. Knepley             ++i;
153265a81367SMatthew G. Knepley           }
153365a81367SMatthew G. Knepley         }
153465a81367SMatthew G. Knepley       }
153565a81367SMatthew G. Knepley       /* Construct graph */
153665a81367SMatthew G. Knepley       ierr = PetscCalloc1(numVerts * numVerts, &graph);CHKERRQ(ierr);
153765a81367SMatthew G. Knepley       for (i = 0; i < numVerts; ++i) {
153865a81367SMatthew G. Knepley         for (j = 0, k = 0; j < numVerts; ++j) {
153965a81367SMatthew G. Knepley           if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i*embedDim], &coordsIn[j*embedDim]) - edgeLen) < PETSC_SMALL) {graph[i*numVerts+j] = 1; ++k;}
154065a81367SMatthew G. Knepley         }
154165a81367SMatthew G. Knepley         if (k != degree) SETERRQ3(comm, PETSC_ERR_PLIB, "Invalid icosahedron, vertex %D degree %D != %D", i, k, degree);
154265a81367SMatthew G. Knepley       }
154365a81367SMatthew G. Knepley       /* Build Topology */
154465a81367SMatthew G. Knepley       ierr = DMPlexSetChart(*dm, 0, numCells+numVerts);CHKERRQ(ierr);
154565a81367SMatthew G. Knepley       for (c = 0; c < numCells; c++) {
1546116ded15SMatthew G. Knepley         ierr = DMPlexSetConeSize(*dm, c, embedDim);CHKERRQ(ierr);
154765a81367SMatthew G. Knepley       }
154865a81367SMatthew G. Knepley       ierr = DMSetUp(*dm);CHKERRQ(ierr); /* Allocate space for cones */
154965a81367SMatthew G. Knepley       /* Cells */
155065a81367SMatthew G. Knepley       for (i = 0, c = 0; i < numVerts; ++i) {
155165a81367SMatthew G. Knepley         for (j = 0; j < i; ++j) {
155265a81367SMatthew G. Knepley           for (k = 0; k < j; ++k) {
155365a81367SMatthew G. Knepley             if (graph[i*numVerts+j] && graph[j*numVerts+k] && graph[k*numVerts+i]) {
155465a81367SMatthew G. Knepley               cone[0] = firstVertex+i; cone[1] = firstVertex+j; cone[2] = firstVertex+k;
155565a81367SMatthew G. Knepley               /* Check orientation */
155665a81367SMatthew G. Knepley               {
155765a81367SMatthew G. Knepley                 const PetscInt epsilon[3][3][3] = {{{0, 0, 0}, {0, 0, 1}, {0, -1, 0}}, {{0, 0, -1}, {0, 0, 0}, {1, 0, 0}}, {{0, 1, 0}, {-1, 0, 0}, {0, 0, 0}}};
155865a81367SMatthew G. Knepley                 PetscReal normal[3];
155965a81367SMatthew G. Knepley                 PetscInt  e, f;
156065a81367SMatthew G. Knepley 
156165a81367SMatthew G. Knepley                 for (d = 0; d < embedDim; ++d) {
156265a81367SMatthew G. Knepley                   normal[d] = 0.0;
156365a81367SMatthew G. Knepley                   for (e = 0; e < embedDim; ++e) {
156465a81367SMatthew G. Knepley                     for (f = 0; f < embedDim; ++f) {
156565a81367SMatthew G. Knepley                       normal[d] += epsilon[d][e][f]*(coordsIn[j*embedDim+e] - coordsIn[i*embedDim+e])*(coordsIn[k*embedDim+f] - coordsIn[i*embedDim+f]);
156665a81367SMatthew G. Knepley                     }
156765a81367SMatthew G. Knepley                   }
156865a81367SMatthew G. Knepley                 }
156965a81367SMatthew G. Knepley                 if (DotReal(embedDim, normal, &coordsIn[i*embedDim]) < 0) {PetscInt tmp = cone[1]; cone[1] = cone[2]; cone[2] = tmp;}
157065a81367SMatthew G. Knepley               }
157165a81367SMatthew G. Knepley               ierr = DMPlexSetCone(*dm, c++, cone);CHKERRQ(ierr);
157265a81367SMatthew G. Knepley             }
157365a81367SMatthew G. Knepley           }
157465a81367SMatthew G. Knepley         }
157565a81367SMatthew G. Knepley       }
157665a81367SMatthew G. Knepley       ierr = DMPlexSymmetrize(*dm);CHKERRQ(ierr);
157765a81367SMatthew G. Knepley       ierr = DMPlexStratify(*dm);CHKERRQ(ierr);
157865a81367SMatthew G. Knepley       ierr = PetscFree(graph);CHKERRQ(ierr);
157965a81367SMatthew G. Knepley       /* Interpolate mesh */
158065a81367SMatthew G. Knepley       ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
158165a81367SMatthew G. Knepley       ierr = DMDestroy(dm);CHKERRQ(ierr);
158265a81367SMatthew G. Knepley       *dm  = idm;
158365a81367SMatthew G. Knepley     } else {
15842829fed8SMatthew G. Knepley       /*
15852829fed8SMatthew G. Knepley         12-21--13
15862829fed8SMatthew G. Knepley          |     |
15872829fed8SMatthew G. Knepley         25  4  24
15882829fed8SMatthew G. Knepley          |     |
15892829fed8SMatthew G. Knepley   12-25--9-16--8-24--13
15902829fed8SMatthew G. Knepley    |     |     |     |
15912829fed8SMatthew G. Knepley   23  5 17  0 15  3  22
15922829fed8SMatthew G. Knepley    |     |     |     |
15932829fed8SMatthew G. Knepley   10-20--6-14--7-19--11
15942829fed8SMatthew G. Knepley          |     |
15952829fed8SMatthew G. Knepley         20  1  19
15962829fed8SMatthew G. Knepley          |     |
15972829fed8SMatthew G. Knepley         10-18--11
15982829fed8SMatthew G. Knepley          |     |
15992829fed8SMatthew G. Knepley         23  2  22
16002829fed8SMatthew G. Knepley          |     |
16012829fed8SMatthew G. Knepley         12-21--13
16022829fed8SMatthew G. Knepley        */
160365a81367SMatthew G. Knepley       const PetscReal dist = 1.0/PetscSqrtReal(3.0);
16042829fed8SMatthew G. Knepley       PetscInt        cone[4], ornt[4];
16052829fed8SMatthew G. Knepley 
160665a81367SMatthew G. Knepley       numCells    = !rank ?  6 : 0;
160765a81367SMatthew G. Knepley       numEdges    = !rank ? 12 : 0;
160865a81367SMatthew G. Knepley       numVerts    = !rank ?  8 : 0;
160965a81367SMatthew G. Knepley       firstVertex = numCells;
161065a81367SMatthew G. Knepley       firstEdge   = numCells + numVerts;
16112829fed8SMatthew G. Knepley       /* Build Topology */
16122829fed8SMatthew G. Knepley       ierr = DMPlexSetChart(*dm, 0, numCells+numEdges+numVerts);CHKERRQ(ierr);
16132829fed8SMatthew G. Knepley       for (c = 0; c < numCells; c++) {
16142829fed8SMatthew G. Knepley         ierr = DMPlexSetConeSize(*dm, c, 4);CHKERRQ(ierr);
16152829fed8SMatthew G. Knepley       }
16162829fed8SMatthew G. Knepley       for (e = firstEdge; e < firstEdge+numEdges; ++e) {
16172829fed8SMatthew G. Knepley         ierr = DMPlexSetConeSize(*dm, e, 2);CHKERRQ(ierr);
16182829fed8SMatthew G. Knepley       }
16192829fed8SMatthew G. Knepley       ierr = DMSetUp(*dm);CHKERRQ(ierr); /* Allocate space for cones */
16202829fed8SMatthew G. Knepley       /* Cell 0 */
16212829fed8SMatthew G. Knepley       cone[0] = 14; cone[1] = 15; cone[2] = 16; cone[3] = 17;
16222829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 0, cone);CHKERRQ(ierr);
16232829fed8SMatthew G. Knepley       ornt[0] = 0; ornt[1] = 0; ornt[2] = 0; ornt[3] = 0;
16242829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 0, ornt);CHKERRQ(ierr);
16252829fed8SMatthew G. Knepley       /* Cell 1 */
16262829fed8SMatthew G. Knepley       cone[0] = 18; cone[1] = 19; cone[2] = 14; cone[3] = 20;
16272829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 1, cone);CHKERRQ(ierr);
16282829fed8SMatthew G. Knepley       ornt[0] = 0; ornt[1] = 0; ornt[2] = -2; ornt[3] = 0;
16292829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 1, ornt);CHKERRQ(ierr);
16302829fed8SMatthew G. Knepley       /* Cell 2 */
16312829fed8SMatthew G. Knepley       cone[0] = 21; cone[1] = 22; cone[2] = 18; cone[3] = 23;
16322829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 2, cone);CHKERRQ(ierr);
16332829fed8SMatthew G. Knepley       ornt[0] = 0; ornt[1] = 0; ornt[2] = -2; ornt[3] = 0;
16342829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 2, ornt);CHKERRQ(ierr);
16352829fed8SMatthew G. Knepley       /* Cell 3 */
16362829fed8SMatthew G. Knepley       cone[0] = 19; cone[1] = 22; cone[2] = 24; cone[3] = 15;
16372829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 3, cone);CHKERRQ(ierr);
16382829fed8SMatthew G. Knepley       ornt[0] = -2; ornt[1] = -2; ornt[2] = 0; ornt[3] = -2;
16392829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 3, ornt);CHKERRQ(ierr);
16402829fed8SMatthew G. Knepley       /* Cell 4 */
16412829fed8SMatthew G. Knepley       cone[0] = 16; cone[1] = 24; cone[2] = 21; cone[3] = 25;
16422829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 4, cone);CHKERRQ(ierr);
16432829fed8SMatthew G. Knepley       ornt[0] = -2; ornt[1] = -2; ornt[2] = -2; ornt[3] = 0;
16442829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 4, ornt);CHKERRQ(ierr);
16452829fed8SMatthew G. Knepley       /* Cell 5 */
16462829fed8SMatthew G. Knepley       cone[0] = 20; cone[1] = 17; cone[2] = 25; cone[3] = 23;
16472829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 5, cone);CHKERRQ(ierr);
16482829fed8SMatthew G. Knepley       ornt[0] = -2; ornt[1] = -2; ornt[2] = -2; ornt[3] = -2;
16492829fed8SMatthew G. Knepley       ierr = DMPlexSetConeOrientation(*dm, 5, ornt);CHKERRQ(ierr);
16502829fed8SMatthew G. Knepley       /* Edges */
16512829fed8SMatthew G. Knepley       cone[0] =  6; cone[1] =  7;
16522829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 14, cone);CHKERRQ(ierr);
16532829fed8SMatthew G. Knepley       cone[0] =  7; cone[1] =  8;
16542829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 15, cone);CHKERRQ(ierr);
16552829fed8SMatthew G. Knepley       cone[0] =  8; cone[1] =  9;
16562829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 16, cone);CHKERRQ(ierr);
16572829fed8SMatthew G. Knepley       cone[0] =  9; cone[1] =  6;
16582829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 17, cone);CHKERRQ(ierr);
16592829fed8SMatthew G. Knepley       cone[0] = 10; cone[1] = 11;
16602829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 18, cone);CHKERRQ(ierr);
16612829fed8SMatthew G. Knepley       cone[0] = 11; cone[1] =  7;
16622829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 19, cone);CHKERRQ(ierr);
16632829fed8SMatthew G. Knepley       cone[0] =  6; cone[1] = 10;
16642829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 20, cone);CHKERRQ(ierr);
16652829fed8SMatthew G. Knepley       cone[0] = 12; cone[1] = 13;
16662829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 21, cone);CHKERRQ(ierr);
16672829fed8SMatthew G. Knepley       cone[0] = 13; cone[1] = 11;
16682829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 22, cone);CHKERRQ(ierr);
16692829fed8SMatthew G. Knepley       cone[0] = 10; cone[1] = 12;
16702829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 23, cone);CHKERRQ(ierr);
16712829fed8SMatthew G. Knepley       cone[0] = 13; cone[1] =  8;
16722829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 24, cone);CHKERRQ(ierr);
16732829fed8SMatthew G. Knepley       cone[0] = 12; cone[1] =  9;
16742829fed8SMatthew G. Knepley       ierr = DMPlexSetCone(*dm, 25, cone);CHKERRQ(ierr);
16752829fed8SMatthew G. Knepley       ierr = DMPlexSymmetrize(*dm);CHKERRQ(ierr);
16762829fed8SMatthew G. Knepley       ierr = DMPlexStratify(*dm);CHKERRQ(ierr);
16772829fed8SMatthew G. Knepley       /* Build coordinates */
167865a81367SMatthew G. Knepley       ierr = PetscCalloc1(numVerts * embedDim, &coordsIn);CHKERRQ(ierr);
167965a81367SMatthew G. Knepley       coordsIn[0*embedDim+0] = -dist; coordsIn[0*embedDim+1] =  dist; coordsIn[0*embedDim+2] = -dist;
168065a81367SMatthew G. Knepley       coordsIn[1*embedDim+0] =  dist; coordsIn[1*embedDim+1] =  dist; coordsIn[1*embedDim+2] = -dist;
168165a81367SMatthew G. Knepley       coordsIn[2*embedDim+0] =  dist; coordsIn[2*embedDim+1] = -dist; coordsIn[2*embedDim+2] = -dist;
168265a81367SMatthew G. Knepley       coordsIn[3*embedDim+0] = -dist; coordsIn[3*embedDim+1] = -dist; coordsIn[3*embedDim+2] = -dist;
168365a81367SMatthew G. Knepley       coordsIn[4*embedDim+0] = -dist; coordsIn[4*embedDim+1] =  dist; coordsIn[4*embedDim+2] =  dist;
168465a81367SMatthew G. Knepley       coordsIn[5*embedDim+0] =  dist; coordsIn[5*embedDim+1] =  dist; coordsIn[5*embedDim+2] =  dist;
168565a81367SMatthew G. Knepley       coordsIn[6*embedDim+0] = -dist; coordsIn[6*embedDim+1] = -dist; coordsIn[6*embedDim+2] =  dist;
168665a81367SMatthew G. Knepley       coordsIn[7*embedDim+0] =  dist; coordsIn[7*embedDim+1] = -dist; coordsIn[7*embedDim+2] =  dist;
168765a81367SMatthew G. Knepley     }
168865a81367SMatthew G. Knepley     break;
168965a81367SMatthew G. Knepley   case 3:
1690116ded15SMatthew G. Knepley     if (simplex) {
1691116ded15SMatthew G. Knepley       DM              idm             = NULL;
1692116ded15SMatthew G. Knepley       const PetscReal edgeLen         = 1.0/PETSC_PHI;
1693116ded15SMatthew G. Knepley       const PetscReal vertexA[4]      = {0.5, 0.5, 0.5, 0.5};
1694116ded15SMatthew G. Knepley       const PetscReal vertexB[4]      = {1.0, 0.0, 0.0, 0.0};
1695116ded15SMatthew G. Knepley       const PetscReal vertexC[4]      = {0.5, 0.5*PETSC_PHI, 0.5/PETSC_PHI, 0.0};
1696116ded15SMatthew G. Knepley       const PetscInt  degree          = 12;
1697116ded15SMatthew G. Knepley       PetscInt        s[4]            = {1, 1, 1};
1698116ded15SMatthew G. Knepley       PetscInt        evenPerm[12][4] = {{0, 1, 2, 3}, {0, 2, 3, 1}, {0, 3, 1, 2}, {1, 0, 3, 2}, {1, 2, 0, 3}, {1, 3, 2, 0},
1699116ded15SMatthew G. Knepley                                          {2, 0, 1, 3}, {2, 1, 3, 0}, {2, 3, 0, 1}, {3, 0, 2, 1}, {3, 1, 0, 2}, {3, 2, 1, 0}};
1700116ded15SMatthew G. Knepley       PetscInt        cone[4];
1701116ded15SMatthew G. Knepley       PetscInt       *graph, p, i, j, k, l;
1702116ded15SMatthew G. Knepley 
1703116ded15SMatthew G. Knepley       numCells    = !rank ? 600 : 0;
1704116ded15SMatthew G. Knepley       numVerts    = !rank ? 120 : 0;
1705116ded15SMatthew G. Knepley       firstVertex = numCells;
1706116ded15SMatthew G. Knepley       /* Use the 600-cell, which for a unit sphere has coordinates which are
1707116ded15SMatthew G. Knepley 
1708116ded15SMatthew G. Knepley            1/2 (\pm 1, \pm 1,    \pm 1, \pm 1)                          16
1709116ded15SMatthew G. Knepley                (\pm 1,    0,       0,      0)  all cyclic permutations   8
1710116ded15SMatthew G. Knepley            1/2 (\pm 1, \pm phi, \pm 1/phi, 0)  all even permutations    96
1711116ded15SMatthew G. Knepley 
1712116ded15SMatthew G. Knepley          where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge
1713116ded15SMatthew G. Knepley          length is then given by 1/\phi = 2.73606.
1714116ded15SMatthew G. Knepley 
1715116ded15SMatthew G. Knepley          http://buzzard.pugetsound.edu/sage-practice/ch03s03.html
1716116ded15SMatthew G. Knepley          http://mathworld.wolfram.com/600-Cell.html
1717116ded15SMatthew G. Knepley        */
1718116ded15SMatthew G. Knepley       /* Construct vertices */
1719116ded15SMatthew G. Knepley       ierr = PetscCalloc1(numVerts * embedDim, &coordsIn);CHKERRQ(ierr);
1720116ded15SMatthew G. Knepley       i    = 0;
1721116ded15SMatthew G. Knepley       for (s[0] = -1; s[0] < 2; s[0] += 2) {
1722116ded15SMatthew G. Knepley         for (s[1] = -1; s[1] < 2; s[1] += 2) {
1723116ded15SMatthew G. Knepley           for (s[2] = -1; s[2] < 2; s[2] += 2) {
1724116ded15SMatthew G. Knepley             for (s[3] = -1; s[3] < 2; s[3] += 2) {
1725116ded15SMatthew G. Knepley               for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[d]*vertexA[d];
1726116ded15SMatthew G. Knepley               ++i;
1727116ded15SMatthew G. Knepley             }
1728116ded15SMatthew G. Knepley           }
1729116ded15SMatthew G. Knepley         }
1730116ded15SMatthew G. Knepley       }
1731116ded15SMatthew G. Knepley       for (p = 0; p < embedDim; ++p) {
1732116ded15SMatthew G. Knepley         s[1] = s[2] = s[3] = 1;
1733116ded15SMatthew G. Knepley         for (s[0] = -1; s[0] < 2; s[0] += 2) {
1734116ded15SMatthew G. Knepley           for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[(d+p)%embedDim]*vertexB[(d+p)%embedDim];
1735116ded15SMatthew G. Knepley           ++i;
1736116ded15SMatthew G. Knepley         }
1737116ded15SMatthew G. Knepley       }
1738116ded15SMatthew G. Knepley       for (p = 0; p < 12; ++p) {
1739116ded15SMatthew G. Knepley         s[3] = 1;
1740116ded15SMatthew G. Knepley         for (s[0] = -1; s[0] < 2; s[0] += 2) {
1741116ded15SMatthew G. Knepley           for (s[1] = -1; s[1] < 2; s[1] += 2) {
1742116ded15SMatthew G. Knepley             for (s[2] = -1; s[2] < 2; s[2] += 2) {
1743116ded15SMatthew G. Knepley               for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[evenPerm[p][d]]*vertexC[evenPerm[p][d]];
1744116ded15SMatthew G. Knepley               ++i;
1745116ded15SMatthew G. Knepley             }
1746116ded15SMatthew G. Knepley           }
1747116ded15SMatthew G. Knepley         }
1748116ded15SMatthew G. Knepley       }
1749116ded15SMatthew G. Knepley       if (i != numVerts) SETERRQ2(comm, PETSC_ERR_PLIB, "Invalid 600-cell, vertices %D != %D", i, numVerts);
1750116ded15SMatthew G. Knepley       /* Construct graph */
1751116ded15SMatthew G. Knepley       ierr = PetscCalloc1(numVerts * numVerts, &graph);CHKERRQ(ierr);
1752116ded15SMatthew G. Knepley       for (i = 0; i < numVerts; ++i) {
1753116ded15SMatthew G. Knepley         for (j = 0, k = 0; j < numVerts; ++j) {
1754116ded15SMatthew G. Knepley           if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i*embedDim], &coordsIn[j*embedDim]) - edgeLen) < PETSC_SMALL) {graph[i*numVerts+j] = 1; ++k;}
1755116ded15SMatthew G. Knepley         }
1756116ded15SMatthew G. Knepley         if (k != degree) SETERRQ3(comm, PETSC_ERR_PLIB, "Invalid 600-cell, vertex %D degree %D != %D", i, k, degree);
1757116ded15SMatthew G. Knepley       }
1758116ded15SMatthew G. Knepley       /* Build Topology */
1759116ded15SMatthew G. Knepley       ierr = DMPlexSetChart(*dm, 0, numCells+numVerts);CHKERRQ(ierr);
1760116ded15SMatthew G. Knepley       for (c = 0; c < numCells; c++) {
1761116ded15SMatthew G. Knepley         ierr = DMPlexSetConeSize(*dm, c, embedDim);CHKERRQ(ierr);
1762116ded15SMatthew G. Knepley       }
1763116ded15SMatthew G. Knepley       ierr = DMSetUp(*dm);CHKERRQ(ierr); /* Allocate space for cones */
1764116ded15SMatthew G. Knepley       /* Cells */
1765116ded15SMatthew G. Knepley       for (i = 0, c = 0; i < numVerts; ++i) {
1766116ded15SMatthew G. Knepley         for (j = 0; j < i; ++j) {
1767116ded15SMatthew G. Knepley           for (k = 0; k < j; ++k) {
1768116ded15SMatthew G. Knepley             for (l = 0; l < k; ++l) {
1769116ded15SMatthew G. Knepley               if (graph[i*numVerts+j] && graph[j*numVerts+k] && graph[k*numVerts+i] &&
1770116ded15SMatthew G. Knepley                   graph[l*numVerts+i] && graph[l*numVerts+j] && graph[l*numVerts+k]) {
1771116ded15SMatthew G. Knepley                 cone[0] = firstVertex+i; cone[1] = firstVertex+j; cone[2] = firstVertex+k; cone[3] = firstVertex+l;
1772116ded15SMatthew G. Knepley                 /* Check orientation: https://ef.gy/linear-algebra:normal-vectors-in-higher-dimensional-spaces */
1773116ded15SMatthew G. Knepley                 {
1774116ded15SMatthew G. Knepley                   const PetscInt epsilon[4][4][4][4] = {{{{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}},
1775116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0,  1}, { 0,  0, -1, 0}},
1776116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  0, -1}, { 0,  0, 0,  0}, { 0,  1,  0, 0}},
1777116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  1,  0}, { 0, -1, 0,  0}, { 0,  0,  0, 0}}},
1778116ded15SMatthew G. Knepley 
1779116ded15SMatthew G. Knepley                                                         {{{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0, -1}, { 0,  0,  1, 0}},
1780116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}},
1781116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  1}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, {-1,  0,  0, 0}},
1782116ded15SMatthew G. Knepley                                                          {{0,  0, -1,  0}, { 0, 0,  0,  0}, { 1,  0, 0,  0}, { 0,  0,  0, 0}}},
1783116ded15SMatthew G. Knepley 
1784116ded15SMatthew G. Knepley                                                         {{{0,  0,  0,  0}, { 0, 0,  0,  1}, { 0,  0, 0,  0}, { 0, -1,  0, 0}},
1785116ded15SMatthew G. Knepley                                                          {{0,  0,  0, -1}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, { 1,  0,  0, 0}},
1786116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}},
1787116ded15SMatthew G. Knepley                                                          {{0,  1,  0,  0}, {-1, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}}},
1788116ded15SMatthew G. Knepley 
1789116ded15SMatthew G. Knepley                                                         {{{0,  0,  0,  0}, { 0, 0, -1,  0}, { 0,  1, 0,  0}, { 0,  0,  0, 0}},
1790116ded15SMatthew G. Knepley                                                          {{0,  0,  1,  0}, { 0, 0,  0,  0}, {-1,  0, 0,  0}, { 0,  0,  0, 0}},
1791116ded15SMatthew G. Knepley                                                          {{0, -1,  0,  0}, { 1, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}},
1792116ded15SMatthew G. Knepley                                                          {{0,  0,  0,  0}, { 0, 0,  0,  0}, { 0,  0, 0,  0}, { 0,  0,  0, 0}}}};
1793116ded15SMatthew G. Knepley                   PetscReal normal[4];
1794116ded15SMatthew G. Knepley                   PetscInt  e, f, g;
1795116ded15SMatthew G. Knepley 
1796116ded15SMatthew G. Knepley                   for (d = 0; d < embedDim; ++d) {
1797116ded15SMatthew G. Knepley                     normal[d] = 0.0;
1798116ded15SMatthew G. Knepley                     for (e = 0; e < embedDim; ++e) {
1799116ded15SMatthew G. Knepley                       for (f = 0; f < embedDim; ++f) {
1800116ded15SMatthew G. Knepley                         for (g = 0; g < embedDim; ++g) {
1801116ded15SMatthew G. Knepley                           normal[d] += epsilon[d][e][f][g]*(coordsIn[j*embedDim+e] - coordsIn[i*embedDim+e])*(coordsIn[k*embedDim+f] - coordsIn[i*embedDim+f])*(coordsIn[l*embedDim+f] - coordsIn[i*embedDim+f]);
1802116ded15SMatthew G. Knepley                         }
1803116ded15SMatthew G. Knepley                       }
1804116ded15SMatthew G. Knepley                     }
1805116ded15SMatthew G. Knepley                   }
1806116ded15SMatthew G. Knepley                   if (DotReal(embedDim, normal, &coordsIn[i*embedDim]) < 0) {PetscInt tmp = cone[1]; cone[1] = cone[2]; cone[2] = tmp;}
1807116ded15SMatthew G. Knepley                 }
1808116ded15SMatthew G. Knepley                 ierr = DMPlexSetCone(*dm, c++, cone);CHKERRQ(ierr);
1809116ded15SMatthew G. Knepley               }
1810116ded15SMatthew G. Knepley             }
1811116ded15SMatthew G. Knepley           }
1812116ded15SMatthew G. Knepley         }
1813116ded15SMatthew G. Knepley       }
1814116ded15SMatthew G. Knepley       ierr = DMPlexSymmetrize(*dm);CHKERRQ(ierr);
1815116ded15SMatthew G. Knepley       ierr = DMPlexStratify(*dm);CHKERRQ(ierr);
1816116ded15SMatthew G. Knepley       ierr = PetscFree(graph);CHKERRQ(ierr);
1817116ded15SMatthew G. Knepley       /* Interpolate mesh */
1818116ded15SMatthew G. Knepley       ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
1819116ded15SMatthew G. Knepley       ierr = DMDestroy(dm);CHKERRQ(ierr);
1820116ded15SMatthew G. Knepley       *dm  = idm;
1821116ded15SMatthew G. Knepley       break;
1822116ded15SMatthew G. Knepley     }
182365a81367SMatthew G. Knepley   default: SETERRQ1(comm, PETSC_ERR_SUP, "Unsupported dimension for sphere: %D", dim);
182465a81367SMatthew G. Knepley   }
182565a81367SMatthew G. Knepley   /* Create coordinates */
18262829fed8SMatthew G. Knepley   ierr = DMGetCoordinateSection(*dm, &coordSection);CHKERRQ(ierr);
18272829fed8SMatthew G. Knepley   ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
18282829fed8SMatthew G. Knepley   ierr = PetscSectionSetFieldComponents(coordSection, 0, embedDim);CHKERRQ(ierr);
18292829fed8SMatthew G. Knepley   ierr = PetscSectionSetChart(coordSection, firstVertex, firstVertex+numVerts);CHKERRQ(ierr);
18302829fed8SMatthew G. Knepley   for (v = firstVertex; v < firstVertex+numVerts; ++v) {
18312829fed8SMatthew G. Knepley     ierr = PetscSectionSetDof(coordSection, v, embedDim);CHKERRQ(ierr);
18322829fed8SMatthew G. Knepley     ierr = PetscSectionSetFieldDof(coordSection, v, 0, embedDim);CHKERRQ(ierr);
18332829fed8SMatthew G. Knepley   }
18342829fed8SMatthew G. Knepley   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
18352829fed8SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
18362829fed8SMatthew G. Knepley   ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
18372829fed8SMatthew G. Knepley   ierr = VecSetBlockSize(coordinates, embedDim);CHKERRQ(ierr);
18382829fed8SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
18392829fed8SMatthew G. Knepley   ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
18402829fed8SMatthew G. Knepley   ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
18412829fed8SMatthew G. Knepley   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
184265a81367SMatthew G. Knepley   for (v = 0; v < numVerts; ++v) for (d = 0; d < embedDim; ++d) {coords[v*embedDim+d] = coordsIn[v*embedDim+d];}
18432829fed8SMatthew G. Knepley   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
18442829fed8SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(*dm, coordinates);CHKERRQ(ierr);
18452829fed8SMatthew G. Knepley   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
184665a81367SMatthew G. Knepley   ierr = PetscFree(coordsIn);CHKERRQ(ierr);
18472829fed8SMatthew G. Knepley   PetscFunctionReturn(0);
18482829fed8SMatthew G. Knepley }
18492829fed8SMatthew G. Knepley 
1850552f7358SJed Brown /* External function declarations here */
1851552f7358SJed Brown extern PetscErrorCode DMCreateInterpolation_Plex(DM dmCoarse, DM dmFine, Mat *interpolation, Vec *scaling);
18526dbf9973SLawrence Mitchell extern PetscErrorCode DMCreateInjection_Plex(DM dmCoarse, DM dmFine, Mat *mat);
1853bd041c0cSMatthew G. Knepley extern PetscErrorCode DMCreateMassMatrix_Plex(DM dmCoarse, DM dmFine, Mat *mat);
1854fd59a867SMatthew G. Knepley extern PetscErrorCode DMCreateDefaultSection_Plex(DM dm);
185566ad2231SToby Isaac extern PetscErrorCode DMCreateDefaultConstraints_Plex(DM dm);
1856b412c318SBarry Smith extern PetscErrorCode DMCreateMatrix_Plex(DM dm,  Mat *J);
1857552f7358SJed Brown extern PetscErrorCode DMCreateCoordinateDM_Plex(DM dm, DM *cdm);
1858d9879d6bSMatthew G. Knepley PETSC_INTERN PetscErrorCode DMClone_Plex(DM dm, DM *newdm);
1859552f7358SJed Brown extern PetscErrorCode DMSetUp_Plex(DM dm);
1860552f7358SJed Brown extern PetscErrorCode DMDestroy_Plex(DM dm);
1861552f7358SJed Brown extern PetscErrorCode DMView_Plex(DM dm, PetscViewer viewer);
18622c40f234SMatthew G. Knepley extern PetscErrorCode DMLoad_Plex(DM dm, PetscViewer viewer);
1863*276c5506SMatthew G. Knepley extern PetscErrorCode DMCreateSubDM_Plex(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm);
186429c8bc5fSMatthew G. Knepley static PetscErrorCode DMInitialize_Plex(DM dm);
1865552f7358SJed Brown 
18660a6ba040SMatthew G. Knepley /* Replace dm with the contents of dmNew
18670a6ba040SMatthew G. Knepley    - Share the DM_Plex structure
18680a6ba040SMatthew G. Knepley    - Share the coordinates
1869d7973521SMatthew G. Knepley    - Share the SF
18700a6ba040SMatthew G. Knepley */
18710a6ba040SMatthew G. Knepley static PetscErrorCode DMPlexReplace_Static(DM dm, DM dmNew)
18720a6ba040SMatthew G. Knepley {
1873d7973521SMatthew G. Knepley   PetscSF               sf;
1874acdc6f61SToby Isaac   DM                    coordDM, coarseDM;
18750a6ba040SMatthew G. Knepley   Vec                   coords;
187690b157c4SStefano Zampini   PetscBool             isper;
187755fbe3e3SMatthew G. Knepley   const PetscReal      *maxCell, *L;
18785dc8c3f7SMatthew G. Knepley   const DMBoundaryType *bd;
18790a6ba040SMatthew G. Knepley   PetscErrorCode        ierr;
18800a6ba040SMatthew G. Knepley 
18810a6ba040SMatthew G. Knepley   PetscFunctionBegin;
1882d7973521SMatthew G. Knepley   ierr = DMGetPointSF(dmNew, &sf);CHKERRQ(ierr);
1883d7973521SMatthew G. Knepley   ierr = DMSetPointSF(dm, sf);CHKERRQ(ierr);
188455fbe3e3SMatthew G. Knepley   ierr = DMGetCoordinateDM(dmNew, &coordDM);CHKERRQ(ierr);
18850a6ba040SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dmNew, &coords);CHKERRQ(ierr);
188655fbe3e3SMatthew G. Knepley   ierr = DMSetCoordinateDM(dm, coordDM);CHKERRQ(ierr);
18870a6ba040SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dm, coords);CHKERRQ(ierr);
188890b157c4SStefano Zampini   ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr);
188990b157c4SStefano Zampini   ierr = DMSetPeriodicity(dmNew, isper, maxCell, L, bd);CHKERRQ(ierr);
18900a6ba040SMatthew G. Knepley   ierr = DMDestroy_Plex(dm);CHKERRQ(ierr);
189129c8bc5fSMatthew G. Knepley   ierr = DMInitialize_Plex(dm);CHKERRQ(ierr);
18920a6ba040SMatthew G. Knepley   dm->data = dmNew->data;
18930a6ba040SMatthew G. Knepley   ((DM_Plex *) dmNew->data)->refct++;
1894c58f1c22SToby Isaac   dmNew->labels->refct++;
1895c58f1c22SToby Isaac   if (!--(dm->labels->refct)) {
1896c58f1c22SToby Isaac     DMLabelLink next = dm->labels->next;
1897c58f1c22SToby Isaac 
1898c58f1c22SToby Isaac     /* destroy the labels */
1899c58f1c22SToby Isaac     while (next) {
1900c58f1c22SToby Isaac       DMLabelLink tmp = next->next;
1901c58f1c22SToby Isaac 
1902c58f1c22SToby Isaac       ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr);
1903c58f1c22SToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
1904c58f1c22SToby Isaac       next = tmp;
1905c58f1c22SToby Isaac     }
1906c58f1c22SToby Isaac     ierr = PetscFree(dm->labels);CHKERRQ(ierr);
1907c58f1c22SToby Isaac   }
1908c58f1c22SToby Isaac   dm->labels = dmNew->labels;
1909c58f1c22SToby Isaac   dm->depthLabel = dmNew->depthLabel;
1910acdc6f61SToby Isaac   ierr = DMGetCoarseDM(dmNew,&coarseDM);CHKERRQ(ierr);
1911acdc6f61SToby Isaac   ierr = DMSetCoarseDM(dm,coarseDM);CHKERRQ(ierr);
19120a6ba040SMatthew G. Knepley   PetscFunctionReturn(0);
19130a6ba040SMatthew G. Knepley }
19140a6ba040SMatthew G. Knepley 
19150a6ba040SMatthew G. Knepley /* Swap dm with the contents of dmNew
19160a6ba040SMatthew G. Knepley    - Swap the DM_Plex structure
19170a6ba040SMatthew G. Knepley    - Swap the coordinates
191879a015ccSMatthew G. Knepley    - Swap the point PetscSF
19190a6ba040SMatthew G. Knepley */
19200a6ba040SMatthew G. Knepley static PetscErrorCode DMPlexSwap_Static(DM dmA, DM dmB)
19210a6ba040SMatthew G. Knepley {
19220a6ba040SMatthew G. Knepley   DM              coordDMA, coordDMB;
19230a6ba040SMatthew G. Knepley   Vec             coordsA,  coordsB;
192479a015ccSMatthew G. Knepley   PetscSF         sfA,      sfB;
19250a6ba040SMatthew G. Knepley   void            *tmp;
1926c58f1c22SToby Isaac   DMLabelLinkList listTmp;
1927c58f1c22SToby Isaac   DMLabel         depthTmp;
19280a6ba040SMatthew G. Knepley   PetscErrorCode  ierr;
19290a6ba040SMatthew G. Knepley 
19300a6ba040SMatthew G. Knepley   PetscFunctionBegin;
193179a015ccSMatthew G. Knepley   ierr = DMGetPointSF(dmA, &sfA);CHKERRQ(ierr);
193279a015ccSMatthew G. Knepley   ierr = DMGetPointSF(dmB, &sfB);CHKERRQ(ierr);
193379a015ccSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) sfA);CHKERRQ(ierr);
193479a015ccSMatthew G. Knepley   ierr = DMSetPointSF(dmA, sfB);CHKERRQ(ierr);
193579a015ccSMatthew G. Knepley   ierr = DMSetPointSF(dmB, sfA);CHKERRQ(ierr);
193679a015ccSMatthew G. Knepley   ierr = PetscObjectDereference((PetscObject) sfA);CHKERRQ(ierr);
193779a015ccSMatthew G. Knepley 
19380a6ba040SMatthew G. Knepley   ierr = DMGetCoordinateDM(dmA, &coordDMA);CHKERRQ(ierr);
19390a6ba040SMatthew G. Knepley   ierr = DMGetCoordinateDM(dmB, &coordDMB);CHKERRQ(ierr);
19400a6ba040SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) coordDMA);CHKERRQ(ierr);
19410a6ba040SMatthew G. Knepley   ierr = DMSetCoordinateDM(dmA, coordDMB);CHKERRQ(ierr);
19420a6ba040SMatthew G. Knepley   ierr = DMSetCoordinateDM(dmB, coordDMA);CHKERRQ(ierr);
19430a6ba040SMatthew G. Knepley   ierr = PetscObjectDereference((PetscObject) coordDMA);CHKERRQ(ierr);
19440a6ba040SMatthew G. Knepley 
19450a6ba040SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dmA, &coordsA);CHKERRQ(ierr);
19460a6ba040SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dmB, &coordsB);CHKERRQ(ierr);
19470a6ba040SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) coordsA);CHKERRQ(ierr);
19480a6ba040SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dmA, coordsB);CHKERRQ(ierr);
19490a6ba040SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dmB, coordsA);CHKERRQ(ierr);
19500a6ba040SMatthew G. Knepley   ierr = PetscObjectDereference((PetscObject) coordsA);CHKERRQ(ierr);
1951acdc6f61SToby Isaac 
19520a6ba040SMatthew G. Knepley   tmp       = dmA->data;
19530a6ba040SMatthew G. Knepley   dmA->data = dmB->data;
19540a6ba040SMatthew G. Knepley   dmB->data = tmp;
1955c58f1c22SToby Isaac   listTmp   = dmA->labels;
1956c58f1c22SToby Isaac   dmA->labels = dmB->labels;
1957c58f1c22SToby Isaac   dmB->labels = listTmp;
1958c58f1c22SToby Isaac   depthTmp  = dmA->depthLabel;
1959c58f1c22SToby Isaac   dmA->depthLabel = dmB->depthLabel;
1960c58f1c22SToby Isaac   dmB->depthLabel = depthTmp;
19610a6ba040SMatthew G. Knepley   PetscFunctionReturn(0);
19620a6ba040SMatthew G. Knepley }
19630a6ba040SMatthew G. Knepley 
196447920aaeSMatthew G. Knepley PetscErrorCode DMSetFromOptions_NonRefinement_Plex(PetscOptionItems *PetscOptionsObject,DM dm)
19650a6ba040SMatthew G. Knepley {
19660a6ba040SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
19670a6ba040SMatthew G. Knepley   PetscErrorCode ierr;
19680a6ba040SMatthew G. Knepley 
19690a6ba040SMatthew G. Knepley   PetscFunctionBegin;
19700a6ba040SMatthew G. Knepley   /* Handle viewing */
19710a6ba040SMatthew G. Knepley   ierr = PetscOptionsBool("-dm_plex_print_set_values", "Output all set values info", "DMView", PETSC_FALSE, &mesh->printSetValues, NULL);CHKERRQ(ierr);
19720a6ba040SMatthew G. Knepley   ierr = PetscOptionsInt("-dm_plex_print_fem", "Debug output level all fem computations", "DMView", 0, &mesh->printFEM, NULL);CHKERRQ(ierr);
197394ae4db5SBarry Smith   ierr = PetscOptionsReal("-dm_plex_print_tol", "Tolerance for FEM output", "DMView", mesh->printTol, &mesh->printTol, NULL);CHKERRQ(ierr);
1974953fc75cSMatthew G. Knepley   /* Point Location */
1975953fc75cSMatthew G. Knepley   ierr = PetscOptionsBool("-dm_plex_hash_location", "Use grid hashing for point location", "DMView", PETSC_FALSE, &mesh->useHashLocation, NULL);CHKERRQ(ierr);
19762e62ab5aSMatthew G. Knepley   /* Generation and remeshing */
19772e62ab5aSMatthew G. Knepley   ierr = PetscOptionsBool("-dm_plex_remesh_bd", "Allow changes to the boundary on remeshing", "DMView", PETSC_FALSE, &mesh->remeshBd, NULL);CHKERRQ(ierr);
1978b29cfa1cSToby Isaac   /* Projection behavior */
1979b29cfa1cSToby Isaac   ierr = PetscOptionsInt("-dm_plex_max_projection_height", "Maxmimum mesh point height used to project locally", "DMPlexSetMaxProjectionHeight", 0, &mesh->maxProjectionHeight, NULL);CHKERRQ(ierr);
198064141f95SMatthew G. Knepley   ierr = PetscOptionsBool("-dm_plex_regular_refinement", "Use special nested projection algorithm for regular refinement", "DMPlexSetRegularRefinement", mesh->regularRefinement, &mesh->regularRefinement, NULL);CHKERRQ(ierr);
19814f3833eaSMatthew G. Knepley 
19824f3833eaSMatthew G. Knepley   ierr = PetscPartitionerSetFromOptions(mesh->partitioner);CHKERRQ(ierr);
198368d4fef7SMatthew G. Knepley   PetscFunctionReturn(0);
198468d4fef7SMatthew G. Knepley }
198568d4fef7SMatthew G. Knepley 
198646fa42a0SMatthew G. Knepley static PetscErrorCode DMSetFromOptions_Plex(PetscOptionItems *PetscOptionsObject,DM dm)
198768d4fef7SMatthew G. Knepley {
1988b653a561SMatthew G. Knepley   PetscInt       refine = 0, coarsen = 0, r;
1989b653a561SMatthew G. Knepley   PetscBool      isHierarchy;
199068d4fef7SMatthew G. Knepley   PetscErrorCode ierr;
199168d4fef7SMatthew G. Knepley 
199268d4fef7SMatthew G. Knepley   PetscFunctionBegin;
199368d4fef7SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
19941a1499c8SBarry Smith   ierr = PetscOptionsHead(PetscOptionsObject,"DMPlex Options");CHKERRQ(ierr);
199568d4fef7SMatthew G. Knepley   /* Handle DMPlex refinement */
199668d4fef7SMatthew G. Knepley   ierr = PetscOptionsInt("-dm_refine", "The number of uniform refinements", "DMCreate", refine, &refine, NULL);CHKERRQ(ierr);
199768d4fef7SMatthew G. Knepley   ierr = PetscOptionsInt("-dm_refine_hierarchy", "The number of uniform refinements", "DMCreate", refine, &refine, &isHierarchy);CHKERRQ(ierr);
1998b6a0289aSMatthew G. Knepley   if (refine) {ierr = DMPlexSetRefinementUniform(dm, PETSC_TRUE);CHKERRQ(ierr);}
199968d4fef7SMatthew G. Knepley   if (refine && isHierarchy) {
2000acdc6f61SToby Isaac     DM *dms, coarseDM;
200168d4fef7SMatthew G. Knepley 
2002acdc6f61SToby Isaac     ierr = DMGetCoarseDM(dm, &coarseDM);CHKERRQ(ierr);
2003acdc6f61SToby Isaac     ierr = PetscObjectReference((PetscObject)coarseDM);CHKERRQ(ierr);
200468d4fef7SMatthew G. Knepley     ierr = PetscMalloc1(refine,&dms);CHKERRQ(ierr);
200568d4fef7SMatthew G. Knepley     ierr = DMRefineHierarchy(dm, refine, dms);CHKERRQ(ierr);
200668d4fef7SMatthew G. Knepley     /* Total hack since we do not pass in a pointer */
200768d4fef7SMatthew G. Knepley     ierr = DMPlexSwap_Static(dm, dms[refine-1]);CHKERRQ(ierr);
200868d4fef7SMatthew G. Knepley     if (refine == 1) {
2009a8fb8f29SToby Isaac       ierr = DMSetCoarseDM(dm, dms[0]);CHKERRQ(ierr);
20100aef6b92SMatthew G. Knepley       ierr = DMPlexSetRegularRefinement(dm, PETSC_TRUE);CHKERRQ(ierr);
201168d4fef7SMatthew G. Knepley     } else {
2012a8fb8f29SToby Isaac       ierr = DMSetCoarseDM(dm, dms[refine-2]);CHKERRQ(ierr);
20130aef6b92SMatthew G. Knepley       ierr = DMPlexSetRegularRefinement(dm, PETSC_TRUE);CHKERRQ(ierr);
2014a8fb8f29SToby Isaac       ierr = DMSetCoarseDM(dms[0], dms[refine-1]);CHKERRQ(ierr);
20150aef6b92SMatthew G. Knepley       ierr = DMPlexSetRegularRefinement(dms[0], PETSC_TRUE);CHKERRQ(ierr);
201668d4fef7SMatthew G. Knepley     }
2017acdc6f61SToby Isaac     ierr = DMSetCoarseDM(dms[refine-1], coarseDM);CHKERRQ(ierr);
2018acdc6f61SToby Isaac     ierr = PetscObjectDereference((PetscObject)coarseDM);CHKERRQ(ierr);
201968d4fef7SMatthew G. Knepley     /* Free DMs */
202068d4fef7SMatthew G. Knepley     for (r = 0; r < refine; ++r) {
2021547f7119SMatthew G. Knepley       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dms[r]);CHKERRQ(ierr);
202268d4fef7SMatthew G. Knepley       ierr = DMDestroy(&dms[r]);CHKERRQ(ierr);
202368d4fef7SMatthew G. Knepley     }
202468d4fef7SMatthew G. Knepley     ierr = PetscFree(dms);CHKERRQ(ierr);
202568d4fef7SMatthew G. Knepley   } else {
202668d4fef7SMatthew G. Knepley     for (r = 0; r < refine; ++r) {
202768d4fef7SMatthew G. Knepley       DM refinedMesh;
202868d4fef7SMatthew G. Knepley 
20291a1499c8SBarry Smith       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm);CHKERRQ(ierr);
203068d4fef7SMatthew G. Knepley       ierr = DMRefine(dm, PetscObjectComm((PetscObject) dm), &refinedMesh);CHKERRQ(ierr);
203168d4fef7SMatthew G. Knepley       /* Total hack since we do not pass in a pointer */
203268d4fef7SMatthew G. Knepley       ierr = DMPlexReplace_Static(dm, refinedMesh);CHKERRQ(ierr);
2033547f7119SMatthew G. Knepley       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm);CHKERRQ(ierr);
203468d4fef7SMatthew G. Knepley       ierr = DMDestroy(&refinedMesh);CHKERRQ(ierr);
203568d4fef7SMatthew G. Knepley     }
203668d4fef7SMatthew G. Knepley   }
20373cf6fe12SMatthew G. Knepley   /* Handle DMPlex coarsening */
2038b653a561SMatthew G. Knepley   ierr = PetscOptionsInt("-dm_coarsen", "Coarsen the mesh", "DMCreate", coarsen, &coarsen, NULL);CHKERRQ(ierr);
2039b653a561SMatthew G. Knepley   ierr = PetscOptionsInt("-dm_coarsen_hierarchy", "The number of coarsenings", "DMCreate", coarsen, &coarsen, &isHierarchy);CHKERRQ(ierr);
2040b653a561SMatthew G. Knepley   if (coarsen && isHierarchy) {
2041b653a561SMatthew G. Knepley     DM *dms;
2042b653a561SMatthew G. Knepley 
2043b653a561SMatthew G. Knepley     ierr = PetscMalloc1(coarsen, &dms);CHKERRQ(ierr);
2044b653a561SMatthew G. Knepley     ierr = DMCoarsenHierarchy(dm, coarsen, dms);CHKERRQ(ierr);
2045b653a561SMatthew G. Knepley     /* Free DMs */
2046b653a561SMatthew G. Knepley     for (r = 0; r < coarsen; ++r) {
2047547f7119SMatthew G. Knepley       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dms[r]);CHKERRQ(ierr);
2048b653a561SMatthew G. Knepley       ierr = DMDestroy(&dms[r]);CHKERRQ(ierr);
2049b653a561SMatthew G. Knepley     }
2050b653a561SMatthew G. Knepley     ierr = PetscFree(dms);CHKERRQ(ierr);
2051b653a561SMatthew G. Knepley   } else {
2052b653a561SMatthew G. Knepley     for (r = 0; r < coarsen; ++r) {
20533cf6fe12SMatthew G. Knepley       DM coarseMesh;
20543cf6fe12SMatthew G. Knepley 
20553cf6fe12SMatthew G. Knepley       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm);CHKERRQ(ierr);
20563cf6fe12SMatthew G. Knepley       ierr = DMCoarsen(dm, PetscObjectComm((PetscObject) dm), &coarseMesh);CHKERRQ(ierr);
20573cf6fe12SMatthew G. Knepley       /* Total hack since we do not pass in a pointer */
20583cf6fe12SMatthew G. Knepley       ierr = DMPlexReplace_Static(dm, coarseMesh);CHKERRQ(ierr);
2059547f7119SMatthew G. Knepley       ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm);CHKERRQ(ierr);
20603cf6fe12SMatthew G. Knepley       ierr = DMDestroy(&coarseMesh);CHKERRQ(ierr);
20613cf6fe12SMatthew G. Knepley     }
2062b653a561SMatthew G. Knepley   }
20633cf6fe12SMatthew G. Knepley   /* Handle */
20641a1499c8SBarry Smith   ierr = DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm);CHKERRQ(ierr);
20650a6ba040SMatthew G. Knepley   ierr = PetscOptionsTail();CHKERRQ(ierr);
20660a6ba040SMatthew G. Knepley   PetscFunctionReturn(0);
20670a6ba040SMatthew G. Knepley }
20680a6ba040SMatthew G. Knepley 
2069552f7358SJed Brown static PetscErrorCode DMCreateGlobalVector_Plex(DM dm,Vec *vec)
2070552f7358SJed Brown {
2071552f7358SJed Brown   PetscErrorCode ierr;
2072552f7358SJed Brown 
2073552f7358SJed Brown   PetscFunctionBegin;
2074552f7358SJed Brown   ierr = DMCreateGlobalVector_Section_Private(dm,vec);CHKERRQ(ierr);
2075552f7358SJed Brown   /* ierr = VecSetOperation(*vec, VECOP_DUPLICATE, (void(*)(void)) VecDuplicate_MPI_DM);CHKERRQ(ierr); */
2076552f7358SJed Brown   ierr = VecSetOperation(*vec, VECOP_VIEW, (void (*)(void)) VecView_Plex);CHKERRQ(ierr);
2077d930f514SMatthew G. Knepley   ierr = VecSetOperation(*vec, VECOP_VIEWNATIVE, (void (*)(void)) VecView_Plex_Native);CHKERRQ(ierr);
20782c40f234SMatthew G. Knepley   ierr = VecSetOperation(*vec, VECOP_LOAD, (void (*)(void)) VecLoad_Plex);CHKERRQ(ierr);
2079d930f514SMatthew G. Knepley   ierr = VecSetOperation(*vec, VECOP_LOADNATIVE, (void (*)(void)) VecLoad_Plex_Native);CHKERRQ(ierr);
2080552f7358SJed Brown   PetscFunctionReturn(0);
2081552f7358SJed Brown }
2082552f7358SJed Brown 
2083552f7358SJed Brown static PetscErrorCode DMCreateLocalVector_Plex(DM dm,Vec *vec)
2084552f7358SJed Brown {
2085552f7358SJed Brown   PetscErrorCode ierr;
2086552f7358SJed Brown 
2087552f7358SJed Brown   PetscFunctionBegin;
2088552f7358SJed Brown   ierr = DMCreateLocalVector_Section_Private(dm,vec);CHKERRQ(ierr);
2089552f7358SJed Brown   ierr = VecSetOperation(*vec, VECOP_VIEW, (void (*)(void)) VecView_Plex_Local);CHKERRQ(ierr);
20902c40f234SMatthew G. Knepley   ierr = VecSetOperation(*vec, VECOP_LOAD, (void (*)(void)) VecLoad_Plex_Local);CHKERRQ(ierr);
2091552f7358SJed Brown   PetscFunctionReturn(0);
2092552f7358SJed Brown }
2093552f7358SJed Brown 
2094793f3fe5SMatthew G. Knepley static PetscErrorCode DMGetDimPoints_Plex(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd)
2095793f3fe5SMatthew G. Knepley {
2096793f3fe5SMatthew G. Knepley   PetscInt       depth, d;
2097793f3fe5SMatthew G. Knepley   PetscErrorCode ierr;
2098793f3fe5SMatthew G. Knepley 
2099793f3fe5SMatthew G. Knepley   PetscFunctionBegin;
2100793f3fe5SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
2101793f3fe5SMatthew G. Knepley   if (depth == 1) {
2102793f3fe5SMatthew G. Knepley     ierr = DMGetDimension(dm, &d);CHKERRQ(ierr);
2103793f3fe5SMatthew G. Knepley     if (dim == 0)      {ierr = DMPlexGetDepthStratum(dm, dim, pStart, pEnd);CHKERRQ(ierr);}
2104793f3fe5SMatthew G. Knepley     else if (dim == d) {ierr = DMPlexGetDepthStratum(dm, 1, pStart, pEnd);CHKERRQ(ierr);}
2105793f3fe5SMatthew G. Knepley     else               {*pStart = 0; *pEnd = 0;}
2106793f3fe5SMatthew G. Knepley   } else {
2107793f3fe5SMatthew G. Knepley     ierr = DMPlexGetDepthStratum(dm, dim, pStart, pEnd);CHKERRQ(ierr);
2108793f3fe5SMatthew G. Knepley   }
2109793f3fe5SMatthew G. Knepley   PetscFunctionReturn(0);
2110793f3fe5SMatthew G. Knepley }
2111793f3fe5SMatthew G. Knepley 
21122f356facSMatthew G. Knepley static PetscErrorCode DMGetNeighors_Plex(DM dm, PetscInt *nranks, const PetscMPIInt *ranks[])
2113502a2867SDave May {
2114502a2867SDave May   PetscSF        sf;
21152f356facSMatthew G. Knepley   PetscErrorCode ierr;
2116502a2867SDave May 
21172f356facSMatthew G. Knepley   PetscFunctionBegin;
2118502a2867SDave May   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
2119502a2867SDave May   ierr = PetscSFGetRanks(sf, nranks, ranks, NULL, NULL, NULL);CHKERRQ(ierr);
2120502a2867SDave May   PetscFunctionReturn(0);
2121502a2867SDave May }
2122502a2867SDave May 
212346fa42a0SMatthew G. Knepley static PetscErrorCode DMInitialize_Plex(DM dm)
2124552f7358SJed Brown {
2125713918a9SToby Isaac   PetscErrorCode ierr;
2126713918a9SToby Isaac 
2127552f7358SJed Brown   PetscFunctionBegin;
2128552f7358SJed Brown   dm->ops->view                            = DMView_Plex;
21292c40f234SMatthew G. Knepley   dm->ops->load                            = DMLoad_Plex;
2130552f7358SJed Brown   dm->ops->setfromoptions                  = DMSetFromOptions_Plex;
213138221697SMatthew G. Knepley   dm->ops->clone                           = DMClone_Plex;
2132552f7358SJed Brown   dm->ops->setup                           = DMSetUp_Plex;
2133fd59a867SMatthew G. Knepley   dm->ops->createdefaultsection            = DMCreateDefaultSection_Plex;
213466ad2231SToby Isaac   dm->ops->createdefaultconstraints        = DMCreateDefaultConstraints_Plex;
2135552f7358SJed Brown   dm->ops->createglobalvector              = DMCreateGlobalVector_Plex;
2136552f7358SJed Brown   dm->ops->createlocalvector               = DMCreateLocalVector_Plex;
2137184d77edSJed Brown   dm->ops->getlocaltoglobalmapping         = NULL;
21380298fd71SBarry Smith   dm->ops->createfieldis                   = NULL;
2139552f7358SJed Brown   dm->ops->createcoordinatedm              = DMCreateCoordinateDM_Plex;
21400a6ba040SMatthew G. Knepley   dm->ops->getcoloring                     = NULL;
2141552f7358SJed Brown   dm->ops->creatematrix                    = DMCreateMatrix_Plex;
2142bceba477SMatthew G. Knepley   dm->ops->createinterpolation             = DMCreateInterpolation_Plex;
2143bd041c0cSMatthew G. Knepley   dm->ops->createmassmatrix                = DMCreateMassMatrix_Plex;
2144bceba477SMatthew G. Knepley   dm->ops->getaggregates                   = NULL;
2145bceba477SMatthew G. Knepley   dm->ops->getinjection                    = DMCreateInjection_Plex;
2146552f7358SJed Brown   dm->ops->refine                          = DMRefine_Plex;
21470a6ba040SMatthew G. Knepley   dm->ops->coarsen                         = DMCoarsen_Plex;
21480a6ba040SMatthew G. Knepley   dm->ops->refinehierarchy                 = DMRefineHierarchy_Plex;
2149b653a561SMatthew G. Knepley   dm->ops->coarsenhierarchy                = DMCoarsenHierarchy_Plex;
21500d1cd5e0SMatthew G. Knepley   dm->ops->adaptlabel                      = DMAdaptLabel_Plex;
21510d1cd5e0SMatthew G. Knepley   dm->ops->adaptmetric                     = DMAdaptMetric_Plex;
21520298fd71SBarry Smith   dm->ops->globaltolocalbegin              = NULL;
21530298fd71SBarry Smith   dm->ops->globaltolocalend                = NULL;
21540298fd71SBarry Smith   dm->ops->localtoglobalbegin              = NULL;
21550298fd71SBarry Smith   dm->ops->localtoglobalend                = NULL;
2156552f7358SJed Brown   dm->ops->destroy                         = DMDestroy_Plex;
2157552f7358SJed Brown   dm->ops->createsubdm                     = DMCreateSubDM_Plex;
2158793f3fe5SMatthew G. Knepley   dm->ops->getdimpoints                    = DMGetDimPoints_Plex;
2159552f7358SJed Brown   dm->ops->locatepoints                    = DMLocatePoints_Plex;
21600709b2feSToby Isaac   dm->ops->projectfunctionlocal            = DMProjectFunctionLocal_Plex;
21610709b2feSToby Isaac   dm->ops->projectfunctionlabellocal       = DMProjectFunctionLabelLocal_Plex;
2162bfc4295aSToby Isaac   dm->ops->projectfieldlocal               = DMProjectFieldLocal_Plex;
21638c6c5593SMatthew G. Knepley   dm->ops->projectfieldlabellocal          = DMProjectFieldLabelLocal_Plex;
21640709b2feSToby Isaac   dm->ops->computel2diff                   = DMComputeL2Diff_Plex;
2165b698f381SToby Isaac   dm->ops->computel2gradientdiff           = DMComputeL2GradientDiff_Plex;
21662a16baeaSToby Isaac   dm->ops->computel2fielddiff              = DMComputeL2FieldDiff_Plex;
2167502a2867SDave May   dm->ops->getneighbors                    = DMGetNeighors_Plex;
2168f1d73a7aSMatthew G. Knepley   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertBoundaryValues_C",DMPlexInsertBoundaryValues_Plex);CHKERRQ(ierr);
21698135c375SStefano Zampini   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMSetUpGLVisViewer_C",DMSetUpGLVisViewer_Plex);CHKERRQ(ierr);
2170552f7358SJed Brown   PetscFunctionReturn(0);
2171552f7358SJed Brown }
2172552f7358SJed Brown 
217346fa42a0SMatthew G. Knepley PETSC_INTERN PetscErrorCode DMClone_Plex(DM dm, DM *newdm)
217463a16f15SMatthew G. Knepley {
217563a16f15SMatthew G. Knepley   DM_Plex        *mesh = (DM_Plex *) dm->data;
217663a16f15SMatthew G. Knepley   PetscErrorCode ierr;
217763a16f15SMatthew G. Knepley 
217863a16f15SMatthew G. Knepley   PetscFunctionBegin;
217963a16f15SMatthew G. Knepley   mesh->refct++;
218063a16f15SMatthew G. Knepley   (*newdm)->data = mesh;
218163a16f15SMatthew G. Knepley   ierr = PetscObjectChangeTypeName((PetscObject) *newdm, DMPLEX);CHKERRQ(ierr);
218263a16f15SMatthew G. Knepley   ierr = DMInitialize_Plex(*newdm);CHKERRQ(ierr);
218363a16f15SMatthew G. Knepley   PetscFunctionReturn(0);
218463a16f15SMatthew G. Knepley }
218563a16f15SMatthew G. Knepley 
21868818961aSMatthew G Knepley /*MC
21878818961aSMatthew G Knepley   DMPLEX = "plex" - A DM object that encapsulates an unstructured mesh, or CW Complex, which can be expressed using a Hasse Diagram.
21888818961aSMatthew G Knepley                     In the local representation, Vecs contain all unknowns in the interior and shared boundary. This is
21898818961aSMatthew G Knepley                     specified by a PetscSection object. Ownership in the global representation is determined by
21908818961aSMatthew G Knepley                     ownership of the underlying DMPlex points. This is specified by another PetscSection object.
21918818961aSMatthew G Knepley 
21928818961aSMatthew G Knepley   Level: intermediate
21938818961aSMatthew G Knepley 
21948818961aSMatthew G Knepley .seealso: DMType, DMPlexCreate(), DMCreate(), DMSetType()
21958818961aSMatthew G Knepley M*/
21968818961aSMatthew G Knepley 
21978cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Plex(DM dm)
2198552f7358SJed Brown {
2199552f7358SJed Brown   DM_Plex        *mesh;
2200770b213bSMatthew G Knepley   PetscInt       unit, d;
2201552f7358SJed Brown   PetscErrorCode ierr;
2202552f7358SJed Brown 
2203552f7358SJed Brown   PetscFunctionBegin;
2204552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2205b00a9115SJed Brown   ierr     = PetscNewLog(dm,&mesh);CHKERRQ(ierr);
2206c73cfb54SMatthew G. Knepley   dm->dim  = 0;
2207552f7358SJed Brown   dm->data = mesh;
2208552f7358SJed Brown 
2209552f7358SJed Brown   mesh->refct             = 1;
221082f516ccSBarry Smith   ierr                    = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->coneSection);CHKERRQ(ierr);
2211552f7358SJed Brown   mesh->maxConeSize       = 0;
22120298fd71SBarry Smith   mesh->cones             = NULL;
22130298fd71SBarry Smith   mesh->coneOrientations  = NULL;
221482f516ccSBarry Smith   ierr                    = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->supportSection);CHKERRQ(ierr);
2215552f7358SJed Brown   mesh->maxSupportSize    = 0;
22160298fd71SBarry Smith   mesh->supports          = NULL;
2217552f7358SJed Brown   mesh->refinementUniform = PETSC_TRUE;
2218552f7358SJed Brown   mesh->refinementLimit   = -1.0;
2219552f7358SJed Brown 
22200298fd71SBarry Smith   mesh->facesTmp = NULL;
2221552f7358SJed Brown 
2222d9deefdfSMatthew G. Knepley   mesh->tetgenOpts   = NULL;
2223d9deefdfSMatthew G. Knepley   mesh->triangleOpts = NULL;
222477623264SMatthew G. Knepley   ierr = PetscPartitionerCreate(PetscObjectComm((PetscObject)dm), &mesh->partitioner);CHKERRQ(ierr);
22252e62ab5aSMatthew G. Knepley   mesh->remeshBd     = PETSC_FALSE;
2226d9deefdfSMatthew G. Knepley 
22270298fd71SBarry Smith   mesh->subpointMap = NULL;
2228552f7358SJed Brown 
22298865f1eaSKarl Rupp   for (unit = 0; unit < NUM_PETSC_UNITS; ++unit) mesh->scale[unit] = 1.0;
2230552f7358SJed Brown 
22310aef6b92SMatthew G. Knepley   mesh->regularRefinement   = PETSC_FALSE;
2232df0420ecSMatthew G. Knepley   mesh->depthState          = -1;
22330298fd71SBarry Smith   mesh->globalVertexNumbers = NULL;
22340298fd71SBarry Smith   mesh->globalCellNumbers   = NULL;
2235a68b90caSToby Isaac   mesh->anchorSection       = NULL;
2236a68b90caSToby Isaac   mesh->anchorIS            = NULL;
223741e6d900SToby Isaac   mesh->createanchors       = NULL;
2238fa73a4e1SToby Isaac   mesh->computeanchormatrix = NULL;
2239d961a43aSToby Isaac   mesh->parentSection       = NULL;
2240d961a43aSToby Isaac   mesh->parents             = NULL;
2241d961a43aSToby Isaac   mesh->childIDs            = NULL;
2242d961a43aSToby Isaac   mesh->childSection        = NULL;
2243d961a43aSToby Isaac   mesh->children            = NULL;
2244d6a7ad0dSToby Isaac   mesh->referenceTree       = NULL;
2245dcbd3bf7SToby Isaac   mesh->getchildsymmetry    = NULL;
22468865f1eaSKarl Rupp   for (d = 0; d < 8; ++d) mesh->hybridPointMax[d] = PETSC_DETERMINE;
2247552f7358SJed Brown   mesh->vtkCellHeight       = 0;
224870034214SMatthew G. Knepley   mesh->useCone             = PETSC_FALSE;
224970034214SMatthew G. Knepley   mesh->useClosure          = PETSC_TRUE;
2250e228b242SToby Isaac   mesh->useAnchors          = PETSC_FALSE;
2251552f7358SJed Brown 
2252b29cfa1cSToby Isaac   mesh->maxProjectionHeight = 0;
2253b29cfa1cSToby Isaac 
2254552f7358SJed Brown   mesh->printSetValues = PETSC_FALSE;
2255552f7358SJed Brown   mesh->printFEM       = 0;
22566113b454SMatthew G. Knepley   mesh->printTol       = 1.0e-10;
2257552f7358SJed Brown 
2258552f7358SJed Brown   ierr = DMInitialize_Plex(dm);CHKERRQ(ierr);
2259552f7358SJed Brown   PetscFunctionReturn(0);
2260552f7358SJed Brown }
2261552f7358SJed Brown 
2262552f7358SJed Brown /*@
2263552f7358SJed Brown   DMPlexCreate - Creates a DMPlex object, which encapsulates an unstructured mesh, or CW complex, which can be expressed using a Hasse Diagram.
2264552f7358SJed Brown 
2265552f7358SJed Brown   Collective on MPI_Comm
2266552f7358SJed Brown 
2267552f7358SJed Brown   Input Parameter:
2268552f7358SJed Brown . comm - The communicator for the DMPlex object
2269552f7358SJed Brown 
2270552f7358SJed Brown   Output Parameter:
2271552f7358SJed Brown . mesh  - The DMPlex object
2272552f7358SJed Brown 
2273552f7358SJed Brown   Level: beginner
2274552f7358SJed Brown 
2275552f7358SJed Brown .keywords: DMPlex, create
2276552f7358SJed Brown @*/
2277552f7358SJed Brown PetscErrorCode DMPlexCreate(MPI_Comm comm, DM *mesh)
2278552f7358SJed Brown {
2279552f7358SJed Brown   PetscErrorCode ierr;
2280552f7358SJed Brown 
2281552f7358SJed Brown   PetscFunctionBegin;
2282552f7358SJed Brown   PetscValidPointer(mesh,2);
2283552f7358SJed Brown   ierr = DMCreate(comm, mesh);CHKERRQ(ierr);
2284552f7358SJed Brown   ierr = DMSetType(*mesh, DMPLEX);CHKERRQ(ierr);
2285552f7358SJed Brown   PetscFunctionReturn(0);
2286552f7358SJed Brown }
2287552f7358SJed Brown 
2288a47d0d45SMatthew G. Knepley /*
2289a47d0d45SMatthew G. Knepley   This takes as input the common mesh generator output, a list of the vertices for each cell, but vertex numbers are global and an SF is built for them
2290a47d0d45SMatthew G. Knepley */
2291a47d0d45SMatthew G. Knepley static PetscErrorCode DMPlexBuildFromCellList_Parallel_Private(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, const int cells[], PetscSF *sfVert)
2292a47d0d45SMatthew G. Knepley {
2293a47d0d45SMatthew G. Knepley   PetscSF         sfPoint;
2294a47d0d45SMatthew G. Knepley   PetscLayout     vLayout;
2295a47d0d45SMatthew G. Knepley   PetscHashI      vhash;
2296a47d0d45SMatthew G. Knepley   PetscSFNode    *remoteVerticesAdj, *vertexLocal, *vertexOwner, *remoteVertex;
2297a47d0d45SMatthew G. Knepley   const PetscInt *vrange;
2298a47d0d45SMatthew G. Knepley   PetscInt        numVerticesAdj, off, *verticesAdj, numVerticesGhost = 0, *localVertex, *cone, c, p, v, g;
2299a47d0d45SMatthew G. Knepley   PETSC_UNUSED PetscHashIIter ret, iter;
23009852e123SBarry Smith   PetscMPIInt     rank, size;
2301a47d0d45SMatthew G. Knepley   PetscErrorCode  ierr;
2302a47d0d45SMatthew G. Knepley 
2303a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
2304a47d0d45SMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr);
23059852e123SBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm), &size);CHKERRQ(ierr);
2306a47d0d45SMatthew G. Knepley   /* Partition vertices */
2307a47d0d45SMatthew G. Knepley   ierr = PetscLayoutCreate(PetscObjectComm((PetscObject) dm), &vLayout);CHKERRQ(ierr);
2308a47d0d45SMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(vLayout, numVertices);CHKERRQ(ierr);
2309a47d0d45SMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(vLayout, 1);CHKERRQ(ierr);
2310a47d0d45SMatthew G. Knepley   ierr = PetscLayoutSetUp(vLayout);CHKERRQ(ierr);
2311a47d0d45SMatthew G. Knepley   ierr = PetscLayoutGetRanges(vLayout, &vrange);CHKERRQ(ierr);
2312a47d0d45SMatthew G. Knepley   /* Count vertices and map them to procs */
2313a47d0d45SMatthew G. Knepley   PetscHashICreate(vhash);
2314a47d0d45SMatthew G. Knepley   for (c = 0; c < numCells; ++c) {
2315a47d0d45SMatthew G. Knepley     for (p = 0; p < numCorners; ++p) {
2316a47d0d45SMatthew G. Knepley       PetscHashIPut(vhash, cells[c*numCorners+p], ret, iter);
2317a47d0d45SMatthew G. Knepley     }
2318a47d0d45SMatthew G. Knepley   }
2319a47d0d45SMatthew G. Knepley   PetscHashISize(vhash, numVerticesAdj);
2320a47d0d45SMatthew G. Knepley   ierr = PetscMalloc1(numVerticesAdj, &verticesAdj);CHKERRQ(ierr);
2321324a3438SMichael Lange   off = 0; ierr = PetscHashIGetKeys(vhash, &off, verticesAdj);CHKERRQ(ierr);
2322a47d0d45SMatthew G. Knepley   if (off != numVerticesAdj) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid number of local vertices %D should be %D", off, numVerticesAdj);
23238cd1fd5cSMatthew G. Knepley   ierr = PetscSortInt(numVerticesAdj, verticesAdj);CHKERRQ(ierr);
2324a47d0d45SMatthew G. Knepley   ierr = PetscMalloc1(numVerticesAdj, &remoteVerticesAdj);CHKERRQ(ierr);
2325a47d0d45SMatthew G. Knepley   for (v = 0; v < numVerticesAdj; ++v) {
2326a47d0d45SMatthew G. Knepley     const PetscInt gv = verticesAdj[v];
2327a47d0d45SMatthew G. Knepley     PetscInt       vrank;
2328a47d0d45SMatthew G. Knepley 
23299852e123SBarry Smith     ierr = PetscFindInt(gv, size+1, vrange, &vrank);CHKERRQ(ierr);
2330a47d0d45SMatthew G. Knepley     vrank = vrank < 0 ? -(vrank+2) : vrank;
2331a47d0d45SMatthew G. Knepley     remoteVerticesAdj[v].index = gv - vrange[vrank];
2332a47d0d45SMatthew G. Knepley     remoteVerticesAdj[v].rank  = vrank;
2333a47d0d45SMatthew G. Knepley   }
2334a47d0d45SMatthew G. Knepley   /* Create cones */
2335a47d0d45SMatthew G. Knepley   ierr = DMPlexSetChart(dm, 0, numCells+numVerticesAdj);CHKERRQ(ierr);
2336a47d0d45SMatthew G. Knepley   for (c = 0; c < numCells; ++c) {ierr = DMPlexSetConeSize(dm, c, numCorners);CHKERRQ(ierr);}
2337a47d0d45SMatthew G. Knepley   ierr = DMSetUp(dm);CHKERRQ(ierr);
233869291d52SBarry Smith   ierr = DMGetWorkArray(dm, numCorners, MPIU_INT, &cone);CHKERRQ(ierr);
2339a47d0d45SMatthew G. Knepley   for (c = 0; c < numCells; ++c) {
2340a47d0d45SMatthew G. Knepley     for (p = 0; p < numCorners; ++p) {
2341a47d0d45SMatthew G. Knepley       const PetscInt gv = cells[c*numCorners+p];
2342a47d0d45SMatthew G. Knepley       PetscInt       lv;
2343a47d0d45SMatthew G. Knepley 
2344a47d0d45SMatthew G. Knepley       ierr = PetscFindInt(gv, numVerticesAdj, verticesAdj, &lv);CHKERRQ(ierr);
2345a47d0d45SMatthew G. Knepley       if (lv < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Could not find global vertex %D in local connectivity", gv);
2346a47d0d45SMatthew G. Knepley       cone[p] = lv+numCells;
2347a47d0d45SMatthew G. Knepley     }
2348a47d0d45SMatthew G. Knepley     ierr = DMPlexSetCone(dm, c, cone);CHKERRQ(ierr);
2349a47d0d45SMatthew G. Knepley   }
235069291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numCorners, MPIU_INT, &cone);CHKERRQ(ierr);
2351a47d0d45SMatthew G. Knepley   /* Create SF for vertices */
2352a47d0d45SMatthew G. Knepley   ierr = PetscSFCreate(PetscObjectComm((PetscObject)dm), sfVert);CHKERRQ(ierr);
2353a47d0d45SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *sfVert, "Vertex Ownership SF");CHKERRQ(ierr);
2354a47d0d45SMatthew G. Knepley   ierr = PetscSFSetFromOptions(*sfVert);CHKERRQ(ierr);
2355a47d0d45SMatthew G. Knepley   ierr = PetscSFSetGraph(*sfVert, numVertices, numVerticesAdj, NULL, PETSC_OWN_POINTER, remoteVerticesAdj, PETSC_OWN_POINTER);CHKERRQ(ierr);
2356a47d0d45SMatthew G. Knepley   ierr = PetscFree(verticesAdj);CHKERRQ(ierr);
2357a47d0d45SMatthew G. Knepley   /* Build pointSF */
2358a47d0d45SMatthew G. Knepley   ierr = PetscMalloc2(numVerticesAdj, &vertexLocal, numVertices, &vertexOwner);CHKERRQ(ierr);
2359a47d0d45SMatthew G. Knepley   for (v = 0; v < numVerticesAdj; ++v) {vertexLocal[v].index = v+numCells; vertexLocal[v].rank = rank;}
2360a47d0d45SMatthew G. Knepley   for (v = 0; v < numVertices;    ++v) {vertexOwner[v].index = -1;         vertexOwner[v].rank = -1;}
23615119f1e2SToby Isaac   ierr = PetscSFReduceBegin(*sfVert, MPIU_2INT, vertexLocal, vertexOwner, MPI_MAXLOC);CHKERRQ(ierr);
23625119f1e2SToby Isaac   ierr = PetscSFReduceEnd(*sfVert, MPIU_2INT, vertexLocal, vertexOwner, MPI_MAXLOC);CHKERRQ(ierr);
2363a47d0d45SMatthew G. Knepley   for (v = 0; v < numVertices;    ++v) if (vertexOwner[v].rank < 0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Global vertex %d on rank %d was unclaimed", v + vrange[rank], rank);
23645119f1e2SToby Isaac   ierr = PetscSFBcastBegin(*sfVert, MPIU_2INT, vertexOwner, vertexLocal);CHKERRQ(ierr);
23655119f1e2SToby Isaac   ierr = PetscSFBcastEnd(*sfVert, MPIU_2INT, vertexOwner, vertexLocal);CHKERRQ(ierr);
2366a47d0d45SMatthew G. Knepley   for (v = 0; v < numVerticesAdj; ++v) if (vertexLocal[v].rank != rank) ++numVerticesGhost;
2367a47d0d45SMatthew G. Knepley   ierr = PetscMalloc1(numVerticesGhost, &localVertex);CHKERRQ(ierr);
2368a47d0d45SMatthew G. Knepley   ierr = PetscMalloc1(numVerticesGhost, &remoteVertex);CHKERRQ(ierr);
2369a47d0d45SMatthew G. Knepley   for (v = 0, g = 0; v < numVerticesAdj; ++v) {
2370a47d0d45SMatthew G. Knepley     if (vertexLocal[v].rank != rank) {
2371a47d0d45SMatthew G. Knepley       localVertex[g]        = v+numCells;
2372a47d0d45SMatthew G. Knepley       remoteVertex[g].index = vertexLocal[v].index;
2373a47d0d45SMatthew G. Knepley       remoteVertex[g].rank  = vertexLocal[v].rank;
2374a47d0d45SMatthew G. Knepley       ++g;
2375a47d0d45SMatthew G. Knepley     }
2376a47d0d45SMatthew G. Knepley   }
2377a47d0d45SMatthew G. Knepley   ierr = PetscFree2(vertexLocal, vertexOwner);CHKERRQ(ierr);
2378a47d0d45SMatthew G. Knepley   if (g != numVerticesGhost) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid number of vertex ghosts %D should be %D", g, numVerticesGhost);
2379a47d0d45SMatthew G. Knepley   ierr = DMGetPointSF(dm, &sfPoint);CHKERRQ(ierr);
2380a47d0d45SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) sfPoint, "point SF");CHKERRQ(ierr);
2381a47d0d45SMatthew G. Knepley   ierr = PetscSFSetGraph(sfPoint, numCells+numVerticesAdj, numVerticesGhost, localVertex, PETSC_OWN_POINTER, remoteVertex, PETSC_OWN_POINTER);CHKERRQ(ierr);
2382a47d0d45SMatthew G. Knepley   ierr = PetscLayoutDestroy(&vLayout);CHKERRQ(ierr);
2383a47d0d45SMatthew G. Knepley   PetscHashIDestroy(vhash);
2384a47d0d45SMatthew G. Knepley   /* Fill in the rest of the topology structure */
2385a47d0d45SMatthew G. Knepley   ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
2386a47d0d45SMatthew G. Knepley   ierr = DMPlexStratify(dm);CHKERRQ(ierr);
2387a47d0d45SMatthew G. Knepley   PetscFunctionReturn(0);
2388a47d0d45SMatthew G. Knepley }
2389a47d0d45SMatthew G. Knepley 
2390a47d0d45SMatthew G. Knepley /*
2391a47d0d45SMatthew G. Knepley   This takes as input the coordinates for each owned vertex
2392a47d0d45SMatthew G. Knepley */
239321016a8bSBarry Smith static PetscErrorCode DMPlexBuildCoordinates_Parallel_Private(DM dm, PetscInt spaceDim, PetscInt numCells, PetscInt numV, PetscSF sfVert, const PetscReal vertexCoords[])
2394a47d0d45SMatthew G. Knepley {
2395a47d0d45SMatthew G. Knepley   PetscSection   coordSection;
2396a47d0d45SMatthew G. Knepley   Vec            coordinates;
2397a47d0d45SMatthew G. Knepley   PetscScalar   *coords;
2398c5e08f72SMatthew G. Knepley   PetscInt       numVertices, numVerticesAdj, coordSize, v;
2399a47d0d45SMatthew G. Knepley   PetscErrorCode ierr;
2400a47d0d45SMatthew G. Knepley 
2401a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
24029596c6baSMatthew G. Knepley   ierr = DMSetCoordinateDim(dm, spaceDim);CHKERRQ(ierr);
2403a47d0d45SMatthew G. Knepley   ierr = PetscSFGetGraph(sfVert, &numVertices, &numVerticesAdj, NULL, NULL);CHKERRQ(ierr);
2404a47d0d45SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
2405a47d0d45SMatthew G. Knepley   ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
2406a47d0d45SMatthew G. Knepley   ierr = PetscSectionSetFieldComponents(coordSection, 0, spaceDim);CHKERRQ(ierr);
2407a47d0d45SMatthew G. Knepley   ierr = PetscSectionSetChart(coordSection, numCells, numCells + numVerticesAdj);CHKERRQ(ierr);
2408a47d0d45SMatthew G. Knepley   for (v = numCells; v < numCells+numVerticesAdj; ++v) {
2409a47d0d45SMatthew G. Knepley     ierr = PetscSectionSetDof(coordSection, v, spaceDim);CHKERRQ(ierr);
2410a47d0d45SMatthew G. Knepley     ierr = PetscSectionSetFieldDof(coordSection, v, 0, spaceDim);CHKERRQ(ierr);
2411a47d0d45SMatthew G. Knepley   }
2412a47d0d45SMatthew G. Knepley   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
2413a47d0d45SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
2414a47d0d45SMatthew G. Knepley   ierr = VecCreate(PetscObjectComm((PetscObject)dm), &coordinates);CHKERRQ(ierr);
2415a47d0d45SMatthew G. Knepley   ierr = VecSetBlockSize(coordinates, spaceDim);CHKERRQ(ierr);
2416a47d0d45SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
2417a47d0d45SMatthew G. Knepley   ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
2418a47d0d45SMatthew G. Knepley   ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
2419a47d0d45SMatthew G. Knepley   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
2420a47d0d45SMatthew G. Knepley   {
2421a47d0d45SMatthew G. Knepley     MPI_Datatype coordtype;
2422a47d0d45SMatthew G. Knepley 
2423a47d0d45SMatthew G. Knepley     /* Need a temp buffer for coords if we have complex/single */
242421016a8bSBarry Smith     ierr = MPI_Type_contiguous(spaceDim, MPIU_SCALAR, &coordtype);CHKERRQ(ierr);
2425a47d0d45SMatthew G. Knepley     ierr = MPI_Type_commit(&coordtype);CHKERRQ(ierr);
242621016a8bSBarry Smith #if defined(PETSC_USE_COMPLEX)
242721016a8bSBarry Smith     {
242821016a8bSBarry Smith     PetscScalar *svertexCoords;
242921016a8bSBarry Smith     PetscInt    i;
243021016a8bSBarry Smith     ierr = PetscMalloc1(numV*spaceDim,&svertexCoords);CHKERRQ(ierr);
243121016a8bSBarry Smith     for (i=0; i<numV*spaceDim; i++) svertexCoords[i] = vertexCoords[i];
243221016a8bSBarry Smith     ierr = PetscSFBcastBegin(sfVert, coordtype, svertexCoords, coords);CHKERRQ(ierr);
243321016a8bSBarry Smith     ierr = PetscSFBcastEnd(sfVert, coordtype, svertexCoords, coords);CHKERRQ(ierr);
243421016a8bSBarry Smith     ierr = PetscFree(svertexCoords);CHKERRQ(ierr);
243521016a8bSBarry Smith     }
243621016a8bSBarry Smith #else
2437a47d0d45SMatthew G. Knepley     ierr = PetscSFBcastBegin(sfVert, coordtype, vertexCoords, coords);CHKERRQ(ierr);
2438a47d0d45SMatthew G. Knepley     ierr = PetscSFBcastEnd(sfVert, coordtype, vertexCoords, coords);CHKERRQ(ierr);
243921016a8bSBarry Smith #endif
2440a47d0d45SMatthew G. Knepley     ierr = MPI_Type_free(&coordtype);CHKERRQ(ierr);
2441a47d0d45SMatthew G. Knepley   }
2442a47d0d45SMatthew G. Knepley   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
2443a47d0d45SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
2444a47d0d45SMatthew G. Knepley   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
2445a47d0d45SMatthew G. Knepley   PetscFunctionReturn(0);
2446a47d0d45SMatthew G. Knepley }
2447a47d0d45SMatthew G. Knepley 
2448a47d0d45SMatthew G. Knepley /*@C
2449a47d0d45SMatthew G. Knepley   DMPlexCreateFromCellListParallel - This takes as input common mesh generator output, a list of the vertices for each cell, and produces a DM
2450a47d0d45SMatthew G. Knepley 
2451a47d0d45SMatthew G. Knepley   Input Parameters:
2452a47d0d45SMatthew G. Knepley + comm - The communicator
2453a47d0d45SMatthew G. Knepley . dim - The topological dimension of the mesh
2454a47d0d45SMatthew G. Knepley . numCells - The number of cells owned by this process
2455a47d0d45SMatthew G. Knepley . numVertices - The number of vertices owned by this process
2456a47d0d45SMatthew G. Knepley . numCorners - The number of vertices for each cell
2457a47d0d45SMatthew G. Knepley . interpolate - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically
2458a47d0d45SMatthew G. Knepley . cells - An array of numCells*numCorners numbers, the global vertex numbers for each cell
2459a47d0d45SMatthew G. Knepley . spaceDim - The spatial dimension used for coordinates
2460a47d0d45SMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
2461a47d0d45SMatthew G. Knepley 
2462a47d0d45SMatthew G. Knepley   Output Parameter:
246318d54ad4SMichael Lange + dm - The DM
246418d54ad4SMichael Lange - vertexSF - Optional, SF describing complete vertex ownership
2465a47d0d45SMatthew G. Knepley 
2466a47d0d45SMatthew G. Knepley   Note: Two triangles sharing a face
2467a47d0d45SMatthew G. Knepley $
2468a47d0d45SMatthew G. Knepley $        2
2469a47d0d45SMatthew G. Knepley $      / | \
2470a47d0d45SMatthew G. Knepley $     /  |  \
2471a47d0d45SMatthew G. Knepley $    /   |   \
2472a47d0d45SMatthew G. Knepley $   0  0 | 1  3
2473a47d0d45SMatthew G. Knepley $    \   |   /
2474a47d0d45SMatthew G. Knepley $     \  |  /
2475a47d0d45SMatthew G. Knepley $      \ | /
2476a47d0d45SMatthew G. Knepley $        1
2477a47d0d45SMatthew G. Knepley would have input
2478a47d0d45SMatthew G. Knepley $  numCells = 2, numVertices = 4
2479a47d0d45SMatthew G. Knepley $  cells = [0 1 2  1 3 2]
2480a47d0d45SMatthew G. Knepley $
2481a47d0d45SMatthew G. Knepley which would result in the DMPlex
2482a47d0d45SMatthew G. Knepley $
2483a47d0d45SMatthew G. Knepley $        4
2484a47d0d45SMatthew G. Knepley $      / | \
2485a47d0d45SMatthew G. Knepley $     /  |  \
2486a47d0d45SMatthew G. Knepley $    /   |   \
2487a47d0d45SMatthew G. Knepley $   2  0 | 1  5
2488a47d0d45SMatthew G. Knepley $    \   |   /
2489a47d0d45SMatthew G. Knepley $     \  |  /
2490a47d0d45SMatthew G. Knepley $      \ | /
2491a47d0d45SMatthew G. Knepley $        3
2492a47d0d45SMatthew G. Knepley 
2493a47d0d45SMatthew G. Knepley   Level: beginner
2494a47d0d45SMatthew G. Knepley 
2495a47d0d45SMatthew G. Knepley .seealso: DMPlexCreateFromCellList(), DMPlexCreateFromDAG(), DMPlexCreate()
2496a47d0d45SMatthew G. Knepley @*/
2497fba955ccSBarry Smith PetscErrorCode DMPlexCreateFromCellListParallel(MPI_Comm comm, PetscInt dim, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, PetscBool interpolate, const int cells[], PetscInt spaceDim, const PetscReal vertexCoords[], PetscSF *vertexSF, DM *dm)
2498a47d0d45SMatthew G. Knepley {
2499a47d0d45SMatthew G. Knepley   PetscSF        sfVert;
2500a47d0d45SMatthew G. Knepley   PetscErrorCode ierr;
2501a47d0d45SMatthew G. Knepley 
2502a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
2503a47d0d45SMatthew G. Knepley   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
2504a47d0d45SMatthew G. Knepley   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
2505a47d0d45SMatthew G. Knepley   PetscValidLogicalCollectiveInt(*dm, dim, 2);
2506a47d0d45SMatthew G. Knepley   PetscValidLogicalCollectiveInt(*dm, spaceDim, 8);
2507a47d0d45SMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
2508a47d0d45SMatthew G. Knepley   ierr = DMPlexBuildFromCellList_Parallel_Private(*dm, numCells, numVertices, numCorners, cells, &sfVert);CHKERRQ(ierr);
2509a47d0d45SMatthew G. Knepley   if (interpolate) {
2510a47d0d45SMatthew G. Knepley     DM idm = NULL;
2511a47d0d45SMatthew G. Knepley 
2512a47d0d45SMatthew G. Knepley     ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
2513a47d0d45SMatthew G. Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
2514a47d0d45SMatthew G. Knepley     *dm  = idm;
2515a47d0d45SMatthew G. Knepley   }
251621016a8bSBarry Smith   ierr = DMPlexBuildCoordinates_Parallel_Private(*dm, spaceDim, numCells, numVertices,sfVert, vertexCoords);CHKERRQ(ierr);
251718d54ad4SMichael Lange   if (vertexSF) *vertexSF = sfVert;
2518fba955ccSBarry Smith   else {ierr = PetscSFDestroy(&sfVert);CHKERRQ(ierr);}
2519a47d0d45SMatthew G. Knepley   PetscFunctionReturn(0);
2520a47d0d45SMatthew G. Knepley }
2521a47d0d45SMatthew G. Knepley 
25229298eaa6SMatthew G Knepley /*
25239298eaa6SMatthew G Knepley   This takes as input the common mesh generator output, a list of the vertices for each cell
25249298eaa6SMatthew G Knepley */
25258f767406SMatthew G. Knepley static PetscErrorCode DMPlexBuildFromCellList_Private(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, const int cells[])
25269298eaa6SMatthew G Knepley {
25279298eaa6SMatthew G Knepley   PetscInt      *cone, c, p;
25289298eaa6SMatthew G Knepley   PetscErrorCode ierr;
25299298eaa6SMatthew G Knepley 
25309298eaa6SMatthew G Knepley   PetscFunctionBegin;
25319298eaa6SMatthew G Knepley   ierr = DMPlexSetChart(dm, 0, numCells+numVertices);CHKERRQ(ierr);
25329298eaa6SMatthew G Knepley   for (c = 0; c < numCells; ++c) {
25339298eaa6SMatthew G Knepley     ierr = DMPlexSetConeSize(dm, c, numCorners);CHKERRQ(ierr);
25349298eaa6SMatthew G Knepley   }
25359298eaa6SMatthew G Knepley   ierr = DMSetUp(dm);CHKERRQ(ierr);
253669291d52SBarry Smith   ierr = DMGetWorkArray(dm, numCorners, MPIU_INT, &cone);CHKERRQ(ierr);
25379298eaa6SMatthew G Knepley   for (c = 0; c < numCells; ++c) {
25389298eaa6SMatthew G Knepley     for (p = 0; p < numCorners; ++p) {
25399298eaa6SMatthew G Knepley       cone[p] = cells[c*numCorners+p]+numCells;
25409298eaa6SMatthew G Knepley     }
25419298eaa6SMatthew G Knepley     ierr = DMPlexSetCone(dm, c, cone);CHKERRQ(ierr);
25429298eaa6SMatthew G Knepley   }
254369291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numCorners, MPIU_INT, &cone);CHKERRQ(ierr);
25449298eaa6SMatthew G Knepley   ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
25459298eaa6SMatthew G Knepley   ierr = DMPlexStratify(dm);CHKERRQ(ierr);
25469298eaa6SMatthew G Knepley   PetscFunctionReturn(0);
25479298eaa6SMatthew G Knepley }
25489298eaa6SMatthew G Knepley 
25499298eaa6SMatthew G Knepley /*
25509298eaa6SMatthew G Knepley   This takes as input the coordinates for each vertex
25519298eaa6SMatthew G Knepley */
25528f767406SMatthew G. Knepley static PetscErrorCode DMPlexBuildCoordinates_Private(DM dm, PetscInt spaceDim, PetscInt numCells, PetscInt numVertices, const double vertexCoords[])
25539298eaa6SMatthew G Knepley {
25549298eaa6SMatthew G Knepley   PetscSection   coordSection;
25559298eaa6SMatthew G Knepley   Vec            coordinates;
25568b9ced59SLisandro Dalcin   DM             cdm;
25579298eaa6SMatthew G Knepley   PetscScalar   *coords;
25588b9ced59SLisandro Dalcin   PetscInt       v, d;
25599298eaa6SMatthew G Knepley   PetscErrorCode ierr;
25609298eaa6SMatthew G Knepley 
25619298eaa6SMatthew G Knepley   PetscFunctionBegin;
25629596c6baSMatthew G. Knepley   ierr = DMSetCoordinateDim(dm, spaceDim);CHKERRQ(ierr);
2563c2166f76SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
25649298eaa6SMatthew G Knepley   ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
25659298eaa6SMatthew G Knepley   ierr = PetscSectionSetFieldComponents(coordSection, 0, spaceDim);CHKERRQ(ierr);
25669298eaa6SMatthew G Knepley   ierr = PetscSectionSetChart(coordSection, numCells, numCells + numVertices);CHKERRQ(ierr);
25679298eaa6SMatthew G Knepley   for (v = numCells; v < numCells+numVertices; ++v) {
25689298eaa6SMatthew G Knepley     ierr = PetscSectionSetDof(coordSection, v, spaceDim);CHKERRQ(ierr);
25699298eaa6SMatthew G Knepley     ierr = PetscSectionSetFieldDof(coordSection, v, 0, spaceDim);CHKERRQ(ierr);
25709298eaa6SMatthew G Knepley   }
25719298eaa6SMatthew G Knepley   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
25728b9ced59SLisandro Dalcin 
25738b9ced59SLisandro Dalcin   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
25748b9ced59SLisandro Dalcin   ierr = DMCreateLocalVector(cdm, &coordinates);CHKERRQ(ierr);
25754b66c01dSMatthew G. Knepley   ierr = VecSetBlockSize(coordinates, spaceDim);CHKERRQ(ierr);
25769298eaa6SMatthew G Knepley   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
25779298eaa6SMatthew G Knepley   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
25789298eaa6SMatthew G Knepley   for (v = 0; v < numVertices; ++v) {
25799298eaa6SMatthew G Knepley     for (d = 0; d < spaceDim; ++d) {
25809298eaa6SMatthew G Knepley       coords[v*spaceDim+d] = vertexCoords[v*spaceDim+d];
25819298eaa6SMatthew G Knepley     }
25829298eaa6SMatthew G Knepley   }
25839298eaa6SMatthew G Knepley   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
25849298eaa6SMatthew G Knepley   ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
25859298eaa6SMatthew G Knepley   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
25869298eaa6SMatthew G Knepley   PetscFunctionReturn(0);
25879298eaa6SMatthew G Knepley }
25889298eaa6SMatthew G Knepley 
25899298eaa6SMatthew G Knepley /*@C
25909298eaa6SMatthew G Knepley   DMPlexCreateFromCellList - This takes as input common mesh generator output, a list of the vertices for each cell, and produces a DM
25919298eaa6SMatthew G Knepley 
25929298eaa6SMatthew G Knepley   Input Parameters:
25939298eaa6SMatthew G Knepley + comm - The communicator
25949298eaa6SMatthew G Knepley . dim - The topological dimension of the mesh
25959298eaa6SMatthew G Knepley . numCells - The number of cells
25969298eaa6SMatthew G Knepley . numVertices - The number of vertices
25979298eaa6SMatthew G Knepley . numCorners - The number of vertices for each cell
25989298eaa6SMatthew G Knepley . interpolate - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically
25999298eaa6SMatthew G Knepley . cells - An array of numCells*numCorners numbers, the vertices for each cell
26009298eaa6SMatthew G Knepley . spaceDim - The spatial dimension used for coordinates
26019298eaa6SMatthew G Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
26029298eaa6SMatthew G Knepley 
26039298eaa6SMatthew G Knepley   Output Parameter:
26049298eaa6SMatthew G Knepley . dm - The DM
26059298eaa6SMatthew G Knepley 
26069298eaa6SMatthew G Knepley   Note: Two triangles sharing a face
26079298eaa6SMatthew G Knepley $
26089298eaa6SMatthew G Knepley $        2
26099298eaa6SMatthew G Knepley $      / | \
26109298eaa6SMatthew G Knepley $     /  |  \
26119298eaa6SMatthew G Knepley $    /   |   \
26129298eaa6SMatthew G Knepley $   0  0 | 1  3
26139298eaa6SMatthew G Knepley $    \   |   /
26149298eaa6SMatthew G Knepley $     \  |  /
26159298eaa6SMatthew G Knepley $      \ | /
26169298eaa6SMatthew G Knepley $        1
26179298eaa6SMatthew G Knepley would have input
26189298eaa6SMatthew G Knepley $  numCells = 2, numVertices = 4
26199298eaa6SMatthew G Knepley $  cells = [0 1 2  1 3 2]
26209298eaa6SMatthew G Knepley $
26219298eaa6SMatthew G Knepley which would result in the DMPlex
26229298eaa6SMatthew G Knepley $
26239298eaa6SMatthew G Knepley $        4
26249298eaa6SMatthew G Knepley $      / | \
26259298eaa6SMatthew G Knepley $     /  |  \
26269298eaa6SMatthew G Knepley $    /   |   \
26279298eaa6SMatthew G Knepley $   2  0 | 1  5
26289298eaa6SMatthew G Knepley $    \   |   /
26299298eaa6SMatthew G Knepley $     \  |  /
26309298eaa6SMatthew G Knepley $      \ | /
26319298eaa6SMatthew G Knepley $        3
26329298eaa6SMatthew G Knepley 
26339298eaa6SMatthew G Knepley   Level: beginner
26349298eaa6SMatthew G Knepley 
2635939f6067SMatthew G. Knepley .seealso: DMPlexCreateFromDAG(), DMPlexCreate()
26369298eaa6SMatthew G Knepley @*/
26379298eaa6SMatthew G Knepley PetscErrorCode DMPlexCreateFromCellList(MPI_Comm comm, PetscInt dim, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, PetscBool interpolate, const int cells[], PetscInt spaceDim, const double vertexCoords[], DM *dm)
26389298eaa6SMatthew G Knepley {
26399298eaa6SMatthew G Knepley   PetscErrorCode ierr;
26409298eaa6SMatthew G Knepley 
26419298eaa6SMatthew G Knepley   PetscFunctionBegin;
26429298eaa6SMatthew G Knepley   ierr = DMCreate(comm, dm);CHKERRQ(ierr);
26439298eaa6SMatthew G Knepley   ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
2644c73cfb54SMatthew G. Knepley   ierr = DMSetDimension(*dm, dim);CHKERRQ(ierr);
26459298eaa6SMatthew G Knepley   ierr = DMPlexBuildFromCellList_Private(*dm, numCells, numVertices, numCorners, cells);CHKERRQ(ierr);
26469298eaa6SMatthew G Knepley   if (interpolate) {
2647e56d480eSMatthew G. Knepley     DM idm = NULL;
26489298eaa6SMatthew G Knepley 
26499298eaa6SMatthew G Knepley     ierr = DMPlexInterpolate(*dm, &idm);CHKERRQ(ierr);
26509298eaa6SMatthew G Knepley     ierr = DMDestroy(dm);CHKERRQ(ierr);
26519298eaa6SMatthew G Knepley     *dm  = idm;
26529298eaa6SMatthew G Knepley   }
26539298eaa6SMatthew G Knepley   ierr = DMPlexBuildCoordinates_Private(*dm, spaceDim, numCells, numVertices, vertexCoords);CHKERRQ(ierr);
26549298eaa6SMatthew G Knepley   PetscFunctionReturn(0);
26559298eaa6SMatthew G Knepley }
26569298eaa6SMatthew G Knepley 
2657939f6067SMatthew G. Knepley /*@
2658939f6067SMatthew G. Knepley   DMPlexCreateFromDAG - This takes as input the adjacency-list representation of the Directed Acyclic Graph (Hasse Diagram) encoding a mesh, and produces a DM
2659939f6067SMatthew G. Knepley 
2660939f6067SMatthew G. Knepley   Input Parameters:
2661c73cfb54SMatthew G. Knepley + dm - The empty DM object, usually from DMCreate() and DMSetDimension()
2662939f6067SMatthew G. Knepley . depth - The depth of the DAG
2663939f6067SMatthew G. Knepley . numPoints - The number of points at each depth
2664939f6067SMatthew G. Knepley . coneSize - The cone size of each point
2665939f6067SMatthew G. Knepley . cones - The concatenation of the cone points for each point, the cone list must be oriented correctly for each point
2666939f6067SMatthew G. Knepley . coneOrientations - The orientation of each cone point
2667939f6067SMatthew G. Knepley - vertexCoords - An array of numVertices*dim numbers, the coordinates of each vertex
2668939f6067SMatthew G. Knepley 
2669939f6067SMatthew G. Knepley   Output Parameter:
2670939f6067SMatthew G. Knepley . dm - The DM
2671939f6067SMatthew G. Knepley 
2672939f6067SMatthew G. Knepley   Note: Two triangles sharing a face would have input
2673939f6067SMatthew G. Knepley $  depth = 1, numPoints = [4 2], coneSize = [3 3 0 0 0 0]
2674939f6067SMatthew G. Knepley $  cones = [2 3 4  3 5 4], coneOrientations = [0 0 0  0 0 0]
2675939f6067SMatthew G. Knepley $ vertexCoords = [-1.0 0.0  0.0 -1.0  0.0 1.0  1.0 0.0]
2676939f6067SMatthew G. Knepley $
2677939f6067SMatthew G. Knepley which would result in the DMPlex
2678939f6067SMatthew G. Knepley $
2679939f6067SMatthew G. Knepley $        4
2680939f6067SMatthew G. Knepley $      / | \
2681939f6067SMatthew G. Knepley $     /  |  \
2682939f6067SMatthew G. Knepley $    /   |   \
2683939f6067SMatthew G. Knepley $   2  0 | 1  5
2684939f6067SMatthew G. Knepley $    \   |   /
2685939f6067SMatthew G. Knepley $     \  |  /
2686939f6067SMatthew G. Knepley $      \ | /
2687939f6067SMatthew G. Knepley $        3
2688939f6067SMatthew G. Knepley $
2689939f6067SMatthew G. Knepley $ Notice that all points are numbered consecutively, unlikely DMPlexCreateFromCellList()
2690939f6067SMatthew G. Knepley 
2691939f6067SMatthew G. Knepley   Level: advanced
2692939f6067SMatthew G. Knepley 
2693939f6067SMatthew G. Knepley .seealso: DMPlexCreateFromCellList(), DMPlexCreate()
2694939f6067SMatthew G. Knepley @*/
26959298eaa6SMatthew G Knepley PetscErrorCode DMPlexCreateFromDAG(DM dm, PetscInt depth, const PetscInt numPoints[], const PetscInt coneSize[], const PetscInt cones[], const PetscInt coneOrientations[], const PetscScalar vertexCoords[])
26969298eaa6SMatthew G Knepley {
26979298eaa6SMatthew G Knepley   Vec            coordinates;
26989298eaa6SMatthew G Knepley   PetscSection   coordSection;
26999298eaa6SMatthew G Knepley   PetscScalar    *coords;
2700811e8653SToby Isaac   PetscInt       coordSize, firstVertex = -1, pStart = 0, pEnd = 0, p, v, dim, dimEmbed, d, off;
27019298eaa6SMatthew G Knepley   PetscErrorCode ierr;
27029298eaa6SMatthew G Knepley 
27039298eaa6SMatthew G Knepley   PetscFunctionBegin;
2704c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
2705811e8653SToby Isaac   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
2706811e8653SToby Isaac   if (dimEmbed < dim) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Embedding dimension %d cannot be less than intrinsic dimension %d",dimEmbed,dim);
27079298eaa6SMatthew G Knepley   for (d = 0; d <= depth; ++d) pEnd += numPoints[d];
27089298eaa6SMatthew G Knepley   ierr = DMPlexSetChart(dm, pStart, pEnd);CHKERRQ(ierr);
27099298eaa6SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
27109298eaa6SMatthew G Knepley     ierr = DMPlexSetConeSize(dm, p, coneSize[p-pStart]);CHKERRQ(ierr);
271197e052ccSToby Isaac     if (firstVertex < 0 && !coneSize[p - pStart]) {
271297e052ccSToby Isaac       firstVertex = p - pStart;
27139298eaa6SMatthew G Knepley     }
271497e052ccSToby Isaac   }
271597e052ccSToby Isaac   if (firstVertex < 0 && numPoints[0]) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Expected %d vertices but could not find any", numPoints[0]);
27169298eaa6SMatthew G Knepley   ierr = DMSetUp(dm);CHKERRQ(ierr); /* Allocate space for cones */
27179298eaa6SMatthew G Knepley   for (p = pStart, off = 0; p < pEnd; off += coneSize[p-pStart], ++p) {
27189298eaa6SMatthew G Knepley     ierr = DMPlexSetCone(dm, p, &cones[off]);CHKERRQ(ierr);
27199298eaa6SMatthew G Knepley     ierr = DMPlexSetConeOrientation(dm, p, &coneOrientations[off]);CHKERRQ(ierr);
27209298eaa6SMatthew G Knepley   }
27219298eaa6SMatthew G Knepley   ierr = DMPlexSymmetrize(dm);CHKERRQ(ierr);
27229298eaa6SMatthew G Knepley   ierr = DMPlexStratify(dm);CHKERRQ(ierr);
27239298eaa6SMatthew G Knepley   /* Build coordinates */
2724c2166f76SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
27259298eaa6SMatthew G Knepley   ierr = PetscSectionSetNumFields(coordSection, 1);CHKERRQ(ierr);
2726811e8653SToby Isaac   ierr = PetscSectionSetFieldComponents(coordSection, 0, dimEmbed);CHKERRQ(ierr);
27279298eaa6SMatthew G Knepley   ierr = PetscSectionSetChart(coordSection, firstVertex, firstVertex+numPoints[0]);CHKERRQ(ierr);
27289298eaa6SMatthew G Knepley   for (v = firstVertex; v < firstVertex+numPoints[0]; ++v) {
2729811e8653SToby Isaac     ierr = PetscSectionSetDof(coordSection, v, dimEmbed);CHKERRQ(ierr);
2730811e8653SToby Isaac     ierr = PetscSectionSetFieldDof(coordSection, v, 0, dimEmbed);CHKERRQ(ierr);
27319298eaa6SMatthew G Knepley   }
27329298eaa6SMatthew G Knepley   ierr = PetscSectionSetUp(coordSection);CHKERRQ(ierr);
27339298eaa6SMatthew G Knepley   ierr = PetscSectionGetStorageSize(coordSection, &coordSize);CHKERRQ(ierr);
27348b9ced59SLisandro Dalcin   ierr = VecCreate(PETSC_COMM_SELF, &coordinates);CHKERRQ(ierr);
27356f8cbbeeSMatthew G Knepley   ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr);
27369298eaa6SMatthew G Knepley   ierr = VecSetSizes(coordinates, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
27378b9ced59SLisandro Dalcin   ierr = VecSetBlockSize(coordinates, dimEmbed);CHKERRQ(ierr);
27382eb5907fSJed Brown   ierr = VecSetType(coordinates,VECSTANDARD);CHKERRQ(ierr);
27399298eaa6SMatthew G Knepley   ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
27409298eaa6SMatthew G Knepley   for (v = 0; v < numPoints[0]; ++v) {
27419298eaa6SMatthew G Knepley     PetscInt off;
27429298eaa6SMatthew G Knepley 
27439298eaa6SMatthew G Knepley     ierr = PetscSectionGetOffset(coordSection, v+firstVertex, &off);CHKERRQ(ierr);
2744811e8653SToby Isaac     for (d = 0; d < dimEmbed; ++d) {
2745811e8653SToby Isaac       coords[off+d] = vertexCoords[v*dimEmbed+d];
27469298eaa6SMatthew G Knepley     }
27479298eaa6SMatthew G Knepley   }
27489298eaa6SMatthew G Knepley   ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
27499298eaa6SMatthew G Knepley   ierr = DMSetCoordinatesLocal(dm, coordinates);CHKERRQ(ierr);
27509298eaa6SMatthew G Knepley   ierr = VecDestroy(&coordinates);CHKERRQ(ierr);
27519298eaa6SMatthew G Knepley   PetscFunctionReturn(0);
27529298eaa6SMatthew G Knepley }
27538415267dSToby Isaac 
2754ca522641SMatthew G. Knepley /*@C
2755ca522641SMatthew G. Knepley   DMPlexCreateFromFile - This takes a filename and produces a DM
2756ca522641SMatthew G. Knepley 
2757ca522641SMatthew G. Knepley   Input Parameters:
2758ca522641SMatthew G. Knepley + comm - The communicator
2759ca522641SMatthew G. Knepley . filename - A file name
2760ca522641SMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces)
2761ca522641SMatthew G. Knepley 
2762ca522641SMatthew G. Knepley   Output Parameter:
2763ca522641SMatthew G. Knepley . dm - The DM
2764ca522641SMatthew G. Knepley 
2765ca522641SMatthew G. Knepley   Level: beginner
2766ca522641SMatthew G. Knepley 
2767ca522641SMatthew G. Knepley .seealso: DMPlexCreateFromDAG(), DMPlexCreateFromCellList(), DMPlexCreate()
2768ca522641SMatthew G. Knepley @*/
2769ca522641SMatthew G. Knepley PetscErrorCode DMPlexCreateFromFile(MPI_Comm comm, const char filename[], PetscBool interpolate, DM *dm)
2770ca522641SMatthew G. Knepley {
2771ca522641SMatthew G. Knepley   const char    *extGmsh    = ".msh";
2772ca522641SMatthew G. Knepley   const char    *extCGNS    = ".cgns";
2773ca522641SMatthew G. Knepley   const char    *extExodus  = ".exo";
277490c68965SMatthew G. Knepley   const char    *extGenesis = ".gen";
27752f0bd6dcSMichael Lange   const char    *extFluent  = ".cas";
2776cc2f8f65SMatthew G. Knepley   const char    *extHDF5    = ".h5";
2777707dd687SMichael Lange   const char    *extMed     = ".med";
2778f2801cd6SMatthew G. Knepley   const char    *extPLY     = ".ply";
2779ca522641SMatthew G. Knepley   size_t         len;
278090c68965SMatthew G. Knepley   PetscBool      isGmsh, isCGNS, isExodus, isGenesis, isFluent, isHDF5, isMed, isPLY;
2781ca522641SMatthew G. Knepley   PetscMPIInt    rank;
2782ca522641SMatthew G. Knepley   PetscErrorCode ierr;
2783ca522641SMatthew G. Knepley 
2784ca522641SMatthew G. Knepley   PetscFunctionBegin;
2785ca522641SMatthew G. Knepley   PetscValidPointer(filename, 2);
2786ca522641SMatthew G. Knepley   PetscValidPointer(dm, 4);
2787ca522641SMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
2788ca522641SMatthew G. Knepley   ierr = PetscStrlen(filename, &len);CHKERRQ(ierr);
2789ca522641SMatthew G. Knepley   if (!len) SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Filename must be a valid path");
2790ca522641SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extGmsh,    4, &isGmsh);CHKERRQ(ierr);
2791ca522641SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-5)], extCGNS,    5, &isCGNS);CHKERRQ(ierr);
2792ca522641SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extExodus,  4, &isExodus);CHKERRQ(ierr);
279390c68965SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extGenesis, 4, &isGenesis);CHKERRQ(ierr);
27942f0bd6dcSMichael Lange   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extFluent,  4, &isFluent);CHKERRQ(ierr);
2795cc2f8f65SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-3)], extHDF5,    3, &isHDF5);CHKERRQ(ierr);
2796707dd687SMichael Lange   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extMed,     4, &isMed);CHKERRQ(ierr);
2797f2801cd6SMatthew G. Knepley   ierr = PetscStrncmp(&filename[PetscMax(0,len-4)], extPLY,     4, &isPLY);CHKERRQ(ierr);
2798ca522641SMatthew G. Knepley   if (isGmsh) {
27997d282ae0SMichael Lange     ierr = DMPlexCreateGmshFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
2800ca522641SMatthew G. Knepley   } else if (isCGNS) {
2801ca522641SMatthew G. Knepley     ierr = DMPlexCreateCGNSFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
280290c68965SMatthew G. Knepley   } else if (isExodus || isGenesis) {
2803ca522641SMatthew G. Knepley     ierr = DMPlexCreateExodusFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
28042f0bd6dcSMichael Lange   } else if (isFluent) {
28052f0bd6dcSMichael Lange     ierr = DMPlexCreateFluentFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
2806cc2f8f65SMatthew G. Knepley   } else if (isHDF5) {
2807cc2f8f65SMatthew G. Knepley     PetscViewer viewer;
2808cc2f8f65SMatthew G. Knepley 
2809cc2f8f65SMatthew G. Knepley     ierr = PetscViewerCreate(comm, &viewer);CHKERRQ(ierr);
2810cc2f8f65SMatthew G. Knepley     ierr = PetscViewerSetType(viewer, PETSCVIEWERHDF5);CHKERRQ(ierr);
2811cc2f8f65SMatthew G. Knepley     ierr = PetscViewerFileSetMode(viewer, FILE_MODE_READ);CHKERRQ(ierr);
2812cc2f8f65SMatthew G. Knepley     ierr = PetscViewerFileSetName(viewer, filename);CHKERRQ(ierr);
2813cc2f8f65SMatthew G. Knepley     ierr = DMCreate(comm, dm);CHKERRQ(ierr);
2814cc2f8f65SMatthew G. Knepley     ierr = DMSetType(*dm, DMPLEX);CHKERRQ(ierr);
2815cc2f8f65SMatthew G. Knepley     ierr = DMLoad(*dm, viewer);CHKERRQ(ierr);
2816cc2f8f65SMatthew G. Knepley     ierr = PetscViewerDestroy(&viewer);CHKERRQ(ierr);
2817707dd687SMichael Lange   } else if (isMed) {
2818707dd687SMichael Lange     ierr = DMPlexCreateMedFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
2819f2801cd6SMatthew G. Knepley   } else if (isPLY) {
2820f2801cd6SMatthew G. Knepley     ierr = DMPlexCreatePLYFromFile(comm, filename, interpolate, dm);CHKERRQ(ierr);
2821ca522641SMatthew G. Knepley   } else SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot load file %s: unrecognized extension", filename);
2822ca522641SMatthew G. Knepley   PetscFunctionReturn(0);
2823ca522641SMatthew G. Knepley }
2824ca522641SMatthew G. Knepley 
28258415267dSToby Isaac /*@
28268415267dSToby Isaac   DMPlexCreateReferenceCell - Create a DMPLEX with the appropriate FEM reference cell
28278415267dSToby Isaac 
28288415267dSToby Isaac   Collective on comm
28298415267dSToby Isaac 
28308415267dSToby Isaac   Input Parameters:
28318415267dSToby Isaac + comm    - The communicator
28328415267dSToby Isaac . dim     - The spatial dimension
28338415267dSToby Isaac - simplex - Flag for simplex, otherwise use a tensor-product cell
28348415267dSToby Isaac 
28358415267dSToby Isaac   Output Parameter:
28368415267dSToby Isaac . refdm - The reference cell
28378415267dSToby Isaac 
28388415267dSToby Isaac   Level: intermediate
28398415267dSToby Isaac 
28408415267dSToby Isaac .keywords: reference cell
28418415267dSToby Isaac .seealso:
28428415267dSToby Isaac @*/
28438415267dSToby Isaac PetscErrorCode DMPlexCreateReferenceCell(MPI_Comm comm, PetscInt dim, PetscBool simplex, DM *refdm)
28448415267dSToby Isaac {
28458415267dSToby Isaac   DM             rdm;
2846cdf740e0SMatthew G. Knepley   Vec            coords;
28478415267dSToby Isaac   PetscErrorCode ierr;
28488415267dSToby Isaac 
28498415267dSToby Isaac   PetscFunctionBeginUser;
28508415267dSToby Isaac   ierr = DMCreate(comm, &rdm);CHKERRQ(ierr);
28518415267dSToby Isaac   ierr = DMSetType(rdm, DMPLEX);CHKERRQ(ierr);
28528415267dSToby Isaac   ierr = DMSetDimension(rdm, dim);CHKERRQ(ierr);
28538415267dSToby Isaac   switch (dim) {
28548415267dSToby Isaac   case 0:
28558415267dSToby Isaac   {
28568415267dSToby Isaac     PetscInt    numPoints[1]        = {1};
28578415267dSToby Isaac     PetscInt    coneSize[1]         = {0};
28588415267dSToby Isaac     PetscInt    cones[1]            = {0};
28598415267dSToby Isaac     PetscInt    coneOrientations[1] = {0};
28608415267dSToby Isaac     PetscScalar vertexCoords[1]     = {0.0};
28618415267dSToby Isaac 
28628415267dSToby Isaac     ierr = DMPlexCreateFromDAG(rdm, 0, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
28638415267dSToby Isaac   }
28648415267dSToby Isaac   break;
28658415267dSToby Isaac   case 1:
28668415267dSToby Isaac   {
28678415267dSToby Isaac     PetscInt    numPoints[2]        = {2, 1};
28688415267dSToby Isaac     PetscInt    coneSize[3]         = {2, 0, 0};
28698415267dSToby Isaac     PetscInt    cones[2]            = {1, 2};
28708415267dSToby Isaac     PetscInt    coneOrientations[2] = {0, 0};
28718415267dSToby Isaac     PetscScalar vertexCoords[2]     = {-1.0,  1.0};
28728415267dSToby Isaac 
28738415267dSToby Isaac     ierr = DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
28748415267dSToby Isaac   }
28758415267dSToby Isaac   break;
28768415267dSToby Isaac   case 2:
28778415267dSToby Isaac     if (simplex) {
28788415267dSToby Isaac       PetscInt    numPoints[2]        = {3, 1};
28798415267dSToby Isaac       PetscInt    coneSize[4]         = {3, 0, 0, 0};
28808415267dSToby Isaac       PetscInt    cones[3]            = {1, 2, 3};
28818415267dSToby Isaac       PetscInt    coneOrientations[3] = {0, 0, 0};
28828415267dSToby Isaac       PetscScalar vertexCoords[6]     = {-1.0, -1.0,  1.0, -1.0,  -1.0, 1.0};
28838415267dSToby Isaac 
28848415267dSToby Isaac       ierr = DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
28858415267dSToby Isaac     } else {
28868415267dSToby Isaac       PetscInt    numPoints[2]        = {4, 1};
28878415267dSToby Isaac       PetscInt    coneSize[5]         = {4, 0, 0, 0, 0};
28888415267dSToby Isaac       PetscInt    cones[4]            = {1, 2, 3, 4};
28898415267dSToby Isaac       PetscInt    coneOrientations[4] = {0, 0, 0, 0};
28908415267dSToby Isaac       PetscScalar vertexCoords[8]     = {-1.0, -1.0,  1.0, -1.0,  1.0, 1.0,  -1.0, 1.0};
28918415267dSToby Isaac 
28928415267dSToby Isaac       ierr = DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
28938415267dSToby Isaac     }
28948415267dSToby Isaac   break;
28958415267dSToby Isaac   case 3:
28968415267dSToby Isaac     if (simplex) {
28978415267dSToby Isaac       PetscInt    numPoints[2]        = {4, 1};
28988415267dSToby Isaac       PetscInt    coneSize[5]         = {4, 0, 0, 0, 0};
28998415267dSToby Isaac       PetscInt    cones[4]            = {1, 3, 2, 4};
29008415267dSToby Isaac       PetscInt    coneOrientations[4] = {0, 0, 0, 0};
29018415267dSToby Isaac       PetscScalar vertexCoords[12]    = {-1.0, -1.0, -1.0,  1.0, -1.0, -1.0,  -1.0, 1.0, -1.0,  -1.0, -1.0, 1.0};
29028415267dSToby Isaac 
29038415267dSToby Isaac       ierr = DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
29048415267dSToby Isaac     } else {
29058415267dSToby Isaac       PetscInt    numPoints[2]        = {8, 1};
29068415267dSToby Isaac       PetscInt    coneSize[9]         = {8, 0, 0, 0, 0, 0, 0, 0, 0};
29078415267dSToby Isaac       PetscInt    cones[8]            = {1, 4, 3, 2, 5, 6, 7, 8};
29088415267dSToby Isaac       PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
29098415267dSToby Isaac       PetscScalar vertexCoords[24]    = {-1.0, -1.0, -1.0,  1.0, -1.0, -1.0,  1.0, 1.0, -1.0,  -1.0, 1.0, -1.0,
29108415267dSToby Isaac                                          -1.0, -1.0,  1.0,  1.0, -1.0,  1.0,  1.0, 1.0,  1.0,  -1.0, 1.0,  1.0};
29118415267dSToby Isaac 
29128415267dSToby Isaac       ierr = DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords);CHKERRQ(ierr);
29138415267dSToby Isaac     }
29148415267dSToby Isaac   break;
29158415267dSToby Isaac   default:
29168415267dSToby Isaac     SETERRQ1(comm, PETSC_ERR_ARG_WRONG, "Cannot create reference cell for dimension %d", dim);
29178415267dSToby Isaac   }
29188415267dSToby Isaac   *refdm = NULL;
29198415267dSToby Isaac   ierr = DMPlexInterpolate(rdm, refdm);CHKERRQ(ierr);
2920cdf740e0SMatthew G. Knepley   if (rdm->coordinateDM) {
2921cdf740e0SMatthew G. Knepley     DM           ncdm;
2922cdf740e0SMatthew G. Knepley     PetscSection cs;
2923cdf740e0SMatthew G. Knepley     PetscInt     pEnd = -1;
2924cdf740e0SMatthew G. Knepley 
2925cdf740e0SMatthew G. Knepley     ierr = DMGetDefaultSection(rdm->coordinateDM, &cs);CHKERRQ(ierr);
2926cdf740e0SMatthew G. Knepley     if (cs) {ierr = PetscSectionGetChart(cs, NULL, &pEnd);CHKERRQ(ierr);}
2927cdf740e0SMatthew G. Knepley     if (pEnd >= 0) {
2928cdf740e0SMatthew G. Knepley       ierr = DMClone(rdm->coordinateDM, &ncdm);CHKERRQ(ierr);
2929cdf740e0SMatthew G. Knepley       ierr = DMSetDefaultSection(ncdm, cs);CHKERRQ(ierr);
2930a61e840bSMatthew G. Knepley       ierr = DMSetCoordinateDM(*refdm, ncdm);CHKERRQ(ierr);
2931cdf740e0SMatthew G. Knepley       ierr = DMDestroy(&ncdm);CHKERRQ(ierr);
2932cdf740e0SMatthew G. Knepley     }
2933cdf740e0SMatthew G. Knepley   }
2934cdf740e0SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(rdm, &coords);CHKERRQ(ierr);
2935cdf740e0SMatthew G. Knepley   if (coords) {
2936cdf740e0SMatthew G. Knepley     ierr = DMSetCoordinatesLocal(*refdm, coords);CHKERRQ(ierr);
2937cdf740e0SMatthew G. Knepley   } else {
2938cdf740e0SMatthew G. Knepley     ierr = DMGetCoordinates(rdm, &coords);CHKERRQ(ierr);
2939cdf740e0SMatthew G. Knepley     if (coords) {ierr = DMSetCoordinates(*refdm, coords);CHKERRQ(ierr);}
2940cdf740e0SMatthew G. Knepley   }
29418415267dSToby Isaac   ierr = DMDestroy(&rdm);CHKERRQ(ierr);
29428415267dSToby Isaac   PetscFunctionReturn(0);
29438415267dSToby Isaac }
2944