xref: /petsc/src/dm/impls/plex/plexcreate.c (revision 129f447c07c71e2a6d7edbcc2f499dff84b7b05f)
1552f7358SJed Brown #define PETSCDM_DLL
2af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h> /*I   "petscdmplex.h"   I*/
3cc4c1da9SBarry Smith #include <petsc/private/hashseti.h>
40c312b8eSJed Brown #include <petscsf.h>
5cc4c1da9SBarry Smith #include <petscdmplextransform.h> /*I   "petscdmplextransform.h"   I*/
69f6c5813SMatthew G. Knepley #include <petscdmlabelephemeral.h>
7b7f5c055SJed Brown #include <petsc/private/kernels/blockmatmult.h>
8b7f5c055SJed Brown #include <petsc/private/kernels/blockinvert.h>
9552f7358SJed Brown 
10d0812dedSMatthew G. Knepley #ifdef PETSC_HAVE_UNISTD_H
11d0812dedSMatthew G. Knepley   #include <unistd.h>
12d0812dedSMatthew G. Knepley #endif
13d0812dedSMatthew G. Knepley #include <errno.h>
14d0812dedSMatthew G. Knepley 
15708be2fdSJed Brown PetscLogEvent DMPLEX_CreateFromFile, DMPLEX_CreateFromOptions, DMPLEX_BuildFromCellList, DMPLEX_BuildCoordinatesFromCellList;
1658cd63d5SVaclav Hapla 
179318fe57SMatthew G. Knepley /* External function declarations here */
189318fe57SMatthew G. Knepley static PetscErrorCode DMInitialize_Plex(DM dm);
199318fe57SMatthew G. Knepley 
20e600fa54SMatthew G. Knepley /* This copies internal things in the Plex structure that we generally want when making a new, related Plex */
21d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCopy_Internal(DM dmin, PetscBool copyPeriodicity, PetscBool copyOverlap, DM dmout)
22d71ae5a4SJacob Faibussowitsch {
234fb89dddSMatthew G. Knepley   const PetscReal     *maxCell, *Lstart, *L;
2412a88998SMatthew G. Knepley   VecType              vecType;
2512a88998SMatthew G. Knepley   MatType              matType;
26*129f447cSJames Wright   PetscBool            dist, useCeed, balance_partition;
27adc21957SMatthew G. Knepley   DMReorderDefaultFlag reorder;
28e600fa54SMatthew G. Knepley 
29e600fa54SMatthew G. Knepley   PetscFunctionBegin;
30835f2295SStefano Zampini   if (dmin == dmout) PetscFunctionReturn(PETSC_SUCCESS);
3112a88998SMatthew G. Knepley   PetscCall(DMGetVecType(dmin, &vecType));
3212a88998SMatthew G. Knepley   PetscCall(DMSetVecType(dmout, vecType));
3312a88998SMatthew G. Knepley   PetscCall(DMGetMatType(dmin, &matType));
3412a88998SMatthew G. Knepley   PetscCall(DMSetMatType(dmout, matType));
35e600fa54SMatthew G. Knepley   if (copyPeriodicity) {
364fb89dddSMatthew G. Knepley     PetscCall(DMGetPeriodicity(dmin, &maxCell, &Lstart, &L));
374fb89dddSMatthew G. Knepley     PetscCall(DMSetPeriodicity(dmout, maxCell, Lstart, L));
383d0e8ed9SDavid Salac     PetscCall(DMLocalizeCoordinates(dmout));
39e600fa54SMatthew G. Knepley   }
409566063dSJacob Faibussowitsch   PetscCall(DMPlexDistributeGetDefault(dmin, &dist));
419566063dSJacob Faibussowitsch   PetscCall(DMPlexDistributeSetDefault(dmout, dist));
426bc1bd01Sksagiyam   PetscCall(DMPlexReorderGetDefault(dmin, &reorder));
436bc1bd01Sksagiyam   PetscCall(DMPlexReorderSetDefault(dmout, reorder));
445962854dSMatthew G. Knepley   PetscCall(DMPlexGetUseCeed(dmin, &useCeed));
455962854dSMatthew G. Knepley   PetscCall(DMPlexSetUseCeed(dmout, useCeed));
46*129f447cSJames Wright   PetscCall(DMPlexGetPartitionBalance(dmin, &balance_partition));
47*129f447cSJames Wright   PetscCall(DMPlexSetPartitionBalance(dmout, balance_partition));
48e600fa54SMatthew G. Knepley   ((DM_Plex *)dmout->data)->useHashLocation = ((DM_Plex *)dmin->data)->useHashLocation;
495962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printSetValues  = ((DM_Plex *)dmin->data)->printSetValues;
505962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printFEM        = ((DM_Plex *)dmin->data)->printFEM;
515962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printFVM        = ((DM_Plex *)dmin->data)->printFVM;
525962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printL2         = ((DM_Plex *)dmin->data)->printL2;
535962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printLocate     = ((DM_Plex *)dmin->data)->printLocate;
54a77a5016SMatthew G. Knepley   ((DM_Plex *)dmout->data)->printProject    = ((DM_Plex *)dmin->data)->printProject;
555962854dSMatthew G. Knepley   ((DM_Plex *)dmout->data)->printTol        = ((DM_Plex *)dmin->data)->printTol;
561baa6e33SBarry Smith   if (copyOverlap) PetscCall(DMPlexSetOverlap_Plex(dmout, dmin, 0));
573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
58e600fa54SMatthew G. Knepley }
59e600fa54SMatthew G. Knepley 
609318fe57SMatthew G. Knepley /* Replace dm with the contents of ndm, and then destroy ndm
619318fe57SMatthew G. Knepley    - Share the DM_Plex structure
629318fe57SMatthew G. Knepley    - Share the coordinates
639318fe57SMatthew G. Knepley    - Share the SF
649318fe57SMatthew G. Knepley */
65d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexReplace_Internal(DM dm, DM *ndm)
66d71ae5a4SJacob Faibussowitsch {
679318fe57SMatthew G. Knepley   PetscSF          sf;
689318fe57SMatthew G. Knepley   DM               dmNew = *ndm, coordDM, coarseDM;
699318fe57SMatthew G. Knepley   Vec              coords;
704fb89dddSMatthew G. Knepley   const PetscReal *maxCell, *Lstart, *L;
719318fe57SMatthew G. Knepley   PetscInt         dim, cdim;
72e535cce4SJames Wright   PetscBool        use_natural;
739318fe57SMatthew G. Knepley 
749318fe57SMatthew G. Knepley   PetscFunctionBegin;
759318fe57SMatthew G. Knepley   if (dm == dmNew) {
769566063dSJacob Faibussowitsch     PetscCall(DMDestroy(ndm));
773ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
789318fe57SMatthew G. Knepley   }
799318fe57SMatthew G. Knepley   dm->setupcalled = dmNew->setupcalled;
80d0812dedSMatthew G. Knepley   if (!dm->hdr.name) {
81d0812dedSMatthew G. Knepley     const char *name;
82d0812dedSMatthew G. Knepley 
83d0812dedSMatthew G. Knepley     PetscCall(PetscObjectGetName((PetscObject)*ndm, &name));
84d0812dedSMatthew G. Knepley     PetscCall(PetscObjectSetName((PetscObject)dm, name));
85d0812dedSMatthew G. Knepley   }
869566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dmNew, &dim));
879566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
889566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dmNew, &cdim));
899566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, cdim));
909566063dSJacob Faibussowitsch   PetscCall(DMGetPointSF(dmNew, &sf));
919566063dSJacob Faibussowitsch   PetscCall(DMSetPointSF(dm, sf));
929566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDM(dmNew, &coordDM));
939566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinatesLocal(dmNew, &coords));
949566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDM(dm, coordDM));
959566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coords));
966858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinateDM(dmNew, &coordDM));
976858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinatesLocal(dmNew, &coords));
986858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinateDM(dm, coordDM));
996858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinatesLocal(dm, coords));
1009318fe57SMatthew G. Knepley   /* Do not want to create the coordinate field if it does not already exist, so do not call DMGetCoordinateField() */
1016858538eSMatthew G. Knepley   PetscCall(DMFieldDestroy(&dm->coordinates[0].field));
1026858538eSMatthew G. Knepley   dm->coordinates[0].field            = dmNew->coordinates[0].field;
10361a622f3SMatthew G. Knepley   ((DM_Plex *)dmNew->data)->coordFunc = ((DM_Plex *)dm->data)->coordFunc;
1044fb89dddSMatthew G. Knepley   PetscCall(DMGetPeriodicity(dmNew, &maxCell, &Lstart, &L));
1054fb89dddSMatthew G. Knepley   PetscCall(DMSetPeriodicity(dm, maxCell, Lstart, L));
106e535cce4SJames Wright   PetscCall(DMGetNaturalSF(dmNew, &sf));
107e535cce4SJames Wright   PetscCall(DMSetNaturalSF(dm, sf));
108e535cce4SJames Wright   PetscCall(DMGetUseNatural(dmNew, &use_natural));
109e535cce4SJames Wright   PetscCall(DMSetUseNatural(dm, use_natural));
1109566063dSJacob Faibussowitsch   PetscCall(DMDestroy_Plex(dm));
1119566063dSJacob Faibussowitsch   PetscCall(DMInitialize_Plex(dm));
1129318fe57SMatthew G. Knepley   dm->data = dmNew->data;
1139318fe57SMatthew G. Knepley   ((DM_Plex *)dmNew->data)->refct++;
1141fca310dSJames Wright   {
1151fca310dSJames Wright     PetscInt       num_face_sfs;
1161fca310dSJames Wright     const PetscSF *sfs;
1171fca310dSJames Wright     PetscCall(DMPlexGetIsoperiodicFaceSF(dm, &num_face_sfs, &sfs));
1181fca310dSJames Wright     PetscCall(DMPlexSetIsoperiodicFaceSF(dm, num_face_sfs, (PetscSF *)sfs)); // for the compose function effect on dm
1191fca310dSJames Wright   }
1209566063dSJacob Faibussowitsch   PetscCall(DMDestroyLabelLinkList_Internal(dm));
1219566063dSJacob Faibussowitsch   PetscCall(DMCopyLabels(dmNew, dm, PETSC_OWN_POINTER, PETSC_TRUE, DM_COPY_LABELS_FAIL));
1229566063dSJacob Faibussowitsch   PetscCall(DMGetCoarseDM(dmNew, &coarseDM));
1239566063dSJacob Faibussowitsch   PetscCall(DMSetCoarseDM(dm, coarseDM));
1249566063dSJacob Faibussowitsch   PetscCall(DMDestroy(ndm));
1253ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1269318fe57SMatthew G. Knepley }
1279318fe57SMatthew G. Knepley 
1289318fe57SMatthew G. Knepley /* Swap dm with the contents of dmNew
1299318fe57SMatthew G. Knepley    - Swap the DM_Plex structure
1309318fe57SMatthew G. Knepley    - Swap the coordinates
1319318fe57SMatthew G. Knepley    - Swap the point PetscSF
1329318fe57SMatthew G. Knepley */
133d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexSwap_Static(DM dmA, DM dmB)
134d71ae5a4SJacob Faibussowitsch {
1359318fe57SMatthew G. Knepley   DM          coordDMA, coordDMB;
1369318fe57SMatthew G. Knepley   Vec         coordsA, coordsB;
1379318fe57SMatthew G. Knepley   PetscSF     sfA, sfB;
1389318fe57SMatthew G. Knepley   DMField     fieldTmp;
1399318fe57SMatthew G. Knepley   void       *tmp;
1409318fe57SMatthew G. Knepley   DMLabelLink listTmp;
1419318fe57SMatthew G. Knepley   DMLabel     depthTmp;
1429318fe57SMatthew G. Knepley   PetscInt    tmpI;
1439318fe57SMatthew G. Knepley 
1449318fe57SMatthew G. Knepley   PetscFunctionBegin;
1453ba16761SJacob Faibussowitsch   if (dmA == dmB) PetscFunctionReturn(PETSC_SUCCESS);
1469566063dSJacob Faibussowitsch   PetscCall(DMGetPointSF(dmA, &sfA));
1479566063dSJacob Faibussowitsch   PetscCall(DMGetPointSF(dmB, &sfB));
1489566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)sfA));
1499566063dSJacob Faibussowitsch   PetscCall(DMSetPointSF(dmA, sfB));
1509566063dSJacob Faibussowitsch   PetscCall(DMSetPointSF(dmB, sfA));
1519566063dSJacob Faibussowitsch   PetscCall(PetscObjectDereference((PetscObject)sfA));
1529318fe57SMatthew G. Knepley 
1539566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDM(dmA, &coordDMA));
1549566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDM(dmB, &coordDMB));
1559566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)coordDMA));
1569566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDM(dmA, coordDMB));
1579566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDM(dmB, coordDMA));
1589566063dSJacob Faibussowitsch   PetscCall(PetscObjectDereference((PetscObject)coordDMA));
1599318fe57SMatthew G. Knepley 
1609566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinatesLocal(dmA, &coordsA));
1619566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinatesLocal(dmB, &coordsB));
1629566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)coordsA));
1639566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dmA, coordsB));
1649566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dmB, coordsA));
1659566063dSJacob Faibussowitsch   PetscCall(PetscObjectDereference((PetscObject)coordsA));
1669318fe57SMatthew G. Knepley 
1676858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinateDM(dmA, &coordDMA));
1686858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinateDM(dmB, &coordDMB));
1696858538eSMatthew G. Knepley   PetscCall(PetscObjectReference((PetscObject)coordDMA));
1706858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinateDM(dmA, coordDMB));
1716858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinateDM(dmB, coordDMA));
1726858538eSMatthew G. Knepley   PetscCall(PetscObjectDereference((PetscObject)coordDMA));
1736858538eSMatthew G. Knepley 
1746858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinatesLocal(dmA, &coordsA));
1756858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinatesLocal(dmB, &coordsB));
1766858538eSMatthew G. Knepley   PetscCall(PetscObjectReference((PetscObject)coordsA));
1776858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinatesLocal(dmA, coordsB));
1786858538eSMatthew G. Knepley   PetscCall(DMSetCellCoordinatesLocal(dmB, coordsA));
1796858538eSMatthew G. Knepley   PetscCall(PetscObjectDereference((PetscObject)coordsA));
1806858538eSMatthew G. Knepley 
1816858538eSMatthew G. Knepley   fieldTmp                  = dmA->coordinates[0].field;
1826858538eSMatthew G. Knepley   dmA->coordinates[0].field = dmB->coordinates[0].field;
1836858538eSMatthew G. Knepley   dmB->coordinates[0].field = fieldTmp;
1846858538eSMatthew G. Knepley   fieldTmp                  = dmA->coordinates[1].field;
1856858538eSMatthew G. Knepley   dmA->coordinates[1].field = dmB->coordinates[1].field;
1866858538eSMatthew G. Knepley   dmB->coordinates[1].field = fieldTmp;
1879318fe57SMatthew G. Knepley   tmp                       = dmA->data;
1889318fe57SMatthew G. Knepley   dmA->data                 = dmB->data;
1899318fe57SMatthew G. Knepley   dmB->data                 = tmp;
1909318fe57SMatthew G. Knepley   listTmp                   = dmA->labels;
1919318fe57SMatthew G. Knepley   dmA->labels               = dmB->labels;
1929318fe57SMatthew G. Knepley   dmB->labels               = listTmp;
1939318fe57SMatthew G. Knepley   depthTmp                  = dmA->depthLabel;
1949318fe57SMatthew G. Knepley   dmA->depthLabel           = dmB->depthLabel;
1959318fe57SMatthew G. Knepley   dmB->depthLabel           = depthTmp;
1969318fe57SMatthew G. Knepley   depthTmp                  = dmA->celltypeLabel;
1979318fe57SMatthew G. Knepley   dmA->celltypeLabel        = dmB->celltypeLabel;
1989318fe57SMatthew G. Knepley   dmB->celltypeLabel        = depthTmp;
1999318fe57SMatthew G. Knepley   tmpI                      = dmA->levelup;
2009318fe57SMatthew G. Knepley   dmA->levelup              = dmB->levelup;
2019318fe57SMatthew G. Knepley   dmB->levelup              = tmpI;
2023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2039318fe57SMatthew G. Knepley }
2049318fe57SMatthew G. Knepley 
2053431e603SJed Brown PetscErrorCode DMPlexInterpolateInPlace_Internal(DM dm)
206d71ae5a4SJacob Faibussowitsch {
2079318fe57SMatthew G. Knepley   DM idm;
2089318fe57SMatthew G. Knepley 
2099318fe57SMatthew G. Knepley   PetscFunctionBegin;
2109566063dSJacob Faibussowitsch   PetscCall(DMPlexInterpolate(dm, &idm));
2119566063dSJacob Faibussowitsch   PetscCall(DMPlexCopyCoordinates(dm, idm));
21269d8a87bSksagiyam   PetscCall(DMPlexReplace_Internal(dm, &idm));
2133ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2149318fe57SMatthew G. Knepley }
2159318fe57SMatthew G. Knepley 
2169318fe57SMatthew G. Knepley /*@C
2179318fe57SMatthew G. Knepley   DMPlexCreateCoordinateSpace - Creates a finite element space for the coordinates
2189318fe57SMatthew G. Knepley 
21920f4b53cSBarry Smith   Collective
2209318fe57SMatthew G. Knepley 
2219318fe57SMatthew G. Knepley   Input Parameters:
22260225df5SJacob Faibussowitsch + dm        - The `DMPLEX`
22320f4b53cSBarry Smith . degree    - The degree of the finite element or `PETSC_DECIDE`
224e44f6aebSMatthew G. Knepley . project   - Flag to project current coordinates into the space
2259318fe57SMatthew G. Knepley - coordFunc - An optional function to map new points from refinement to the surface
2269318fe57SMatthew G. Knepley 
2279318fe57SMatthew G. Knepley   Level: advanced
2289318fe57SMatthew G. Knepley 
2291cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `PetscPointFunc`, `PetscFECreateLagrange()`, `DMGetCoordinateDM()`
2309318fe57SMatthew G. Knepley @*/
231e44f6aebSMatthew G. Knepley PetscErrorCode DMPlexCreateCoordinateSpace(DM dm, PetscInt degree, PetscBool project, PetscPointFunc coordFunc)
232d71ae5a4SJacob Faibussowitsch {
2339318fe57SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *)dm->data;
234e44f6aebSMatthew G. Knepley   PetscFE  fe   = NULL;
2359318fe57SMatthew G. Knepley   DM       cdm;
2361df12153SMatthew G. Knepley   PetscInt dim, dE, qorder, height;
2379318fe57SMatthew G. Knepley 
238e44f6aebSMatthew G. Knepley   PetscFunctionBegin;
2399566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
2409566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dm, &dE));
2419318fe57SMatthew G. Knepley   qorder = degree;
242e44f6aebSMatthew G. Knepley   PetscCall(DMGetCoordinateDM(dm, &cdm));
243d0609cedSBarry Smith   PetscObjectOptionsBegin((PetscObject)cdm);
244dc431b0cSMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-default_quadrature_order", "Quadrature order is one less than quadrature points per edge", "DMPlexCreateCoordinateSpace", qorder, &qorder, NULL, 0));
245d0609cedSBarry Smith   PetscOptionsEnd();
2461df12153SMatthew G. Knepley   PetscCall(DMPlexGetVTKCellHeight(dm, &height));
247e44f6aebSMatthew G. Knepley   if (degree >= 0) {
248e44f6aebSMatthew G. Knepley     DMPolytopeType ct = DM_POLYTOPE_UNKNOWN;
249e44f6aebSMatthew G. Knepley     PetscInt       cStart, cEnd, gct;
250dc431b0cSMatthew G. Knepley 
2511df12153SMatthew G. Knepley     PetscCall(DMPlexGetHeightStratum(dm, height, &cStart, &cEnd));
252dc431b0cSMatthew G. Knepley     if (cEnd > cStart) PetscCall(DMPlexGetCellType(dm, cStart, &ct));
253e44f6aebSMatthew G. Knepley     gct = (PetscInt)ct;
254462c564dSBarry Smith     PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &gct, 1, MPIU_INT, MPI_MIN, PetscObjectComm((PetscObject)dm)));
255e44f6aebSMatthew G. Knepley     ct = (DMPolytopeType)gct;
256e44f6aebSMatthew G. Knepley     // Work around current bug in PetscDualSpaceSetUp_Lagrange()
257e44f6aebSMatthew G. Knepley     //   Can be seen in plex_tutorials-ex10_1
258e44f6aebSMatthew G. Knepley     if (ct != DM_POLYTOPE_SEG_PRISM_TENSOR && ct != DM_POLYTOPE_TRI_PRISM_TENSOR && ct != DM_POLYTOPE_QUAD_PRISM_TENSOR) PetscCall(PetscFECreateLagrangeByCell(PETSC_COMM_SELF, dim, dE, ct, degree, qorder, &fe));
2594f9ab2b4SJed Brown   }
260e44f6aebSMatthew G. Knepley   PetscCall(DMSetCoordinateDisc(dm, fe, project));
2619566063dSJacob Faibussowitsch   PetscCall(PetscFEDestroy(&fe));
2629318fe57SMatthew G. Knepley   mesh->coordFunc = coordFunc;
2633ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2649318fe57SMatthew G. Knepley }
2659318fe57SMatthew G. Knepley 
2661df5d5c5SMatthew G. Knepley /*@
2671df5d5c5SMatthew G. Knepley   DMPlexCreateDoublet - Creates a mesh of two cells of the specified type, optionally with later refinement.
2681df5d5c5SMatthew G. Knepley 
269d083f849SBarry Smith   Collective
2701df5d5c5SMatthew G. Knepley 
2711df5d5c5SMatthew G. Knepley   Input Parameters:
272a1cb98faSBarry Smith + comm            - The communicator for the `DM` object
2731df5d5c5SMatthew G. Knepley . dim             - The spatial dimension
2741df5d5c5SMatthew G. Knepley . simplex         - Flag for simplicial cells, otherwise they are tensor product cells
2751df5d5c5SMatthew G. Knepley . interpolate     - Flag to create intermediate mesh pieces (edges, faces)
2761df5d5c5SMatthew G. Knepley - refinementLimit - A nonzero number indicates the largest admissible volume for a refined cell
2771df5d5c5SMatthew G. Knepley 
2781df5d5c5SMatthew G. Knepley   Output Parameter:
27960225df5SJacob Faibussowitsch . newdm - The `DM` object
2801df5d5c5SMatthew G. Knepley 
2811df5d5c5SMatthew G. Knepley   Level: beginner
2821df5d5c5SMatthew G. Knepley 
2831cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMSetType()`, `DMCreate()`
2841df5d5c5SMatthew G. Knepley @*/
285d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateDoublet(MPI_Comm comm, PetscInt dim, PetscBool simplex, PetscBool interpolate, PetscReal refinementLimit, DM *newdm)
286d71ae5a4SJacob Faibussowitsch {
2871df5d5c5SMatthew G. Knepley   DM          dm;
2881df5d5c5SMatthew G. Knepley   PetscMPIInt rank;
2891df5d5c5SMatthew G. Knepley 
2901df5d5c5SMatthew G. Knepley   PetscFunctionBegin;
2919566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, &dm));
2929566063dSJacob Faibussowitsch   PetscCall(DMSetType(dm, DMPLEX));
2939566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
29446139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
2959566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
296ce78fa2fSMatthew G. Knepley   switch (dim) {
297ce78fa2fSMatthew G. Knepley   case 2:
2989566063dSJacob Faibussowitsch     if (simplex) PetscCall(PetscObjectSetName((PetscObject)dm, "triangular"));
2999566063dSJacob Faibussowitsch     else PetscCall(PetscObjectSetName((PetscObject)dm, "quadrilateral"));
300ce78fa2fSMatthew G. Knepley     break;
301ce78fa2fSMatthew G. Knepley   case 3:
3029566063dSJacob Faibussowitsch     if (simplex) PetscCall(PetscObjectSetName((PetscObject)dm, "tetrahedral"));
3039566063dSJacob Faibussowitsch     else PetscCall(PetscObjectSetName((PetscObject)dm, "hexahedral"));
304ce78fa2fSMatthew G. Knepley     break;
305d71ae5a4SJacob Faibussowitsch   default:
306d71ae5a4SJacob Faibussowitsch     SETERRQ(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %" PetscInt_FMT, dim);
307ce78fa2fSMatthew G. Knepley   }
3081df5d5c5SMatthew G. Knepley   if (rank) {
3091df5d5c5SMatthew G. Knepley     PetscInt numPoints[2] = {0, 0};
3109566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, NULL, NULL, NULL, NULL));
3111df5d5c5SMatthew G. Knepley   } else {
3121df5d5c5SMatthew G. Knepley     switch (dim) {
3131df5d5c5SMatthew G. Knepley     case 2:
3141df5d5c5SMatthew G. Knepley       if (simplex) {
3151df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {4, 2};
3161df5d5c5SMatthew G. Knepley         PetscInt    coneSize[6]         = {3, 3, 0, 0, 0, 0};
3171df5d5c5SMatthew G. Knepley         PetscInt    cones[6]            = {2, 3, 4, 5, 4, 3};
3181df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[6] = {0, 0, 0, 0, 0, 0};
3191df5d5c5SMatthew G. Knepley         PetscScalar vertexCoords[8]     = {-0.5, 0.5, 0.0, 0.0, 0.0, 1.0, 0.5, 0.5};
3201df5d5c5SMatthew G. Knepley 
3219566063dSJacob Faibussowitsch         PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
3221df5d5c5SMatthew G. Knepley       } else {
3231df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {6, 2};
3241df5d5c5SMatthew G. Knepley         PetscInt    coneSize[8]         = {4, 4, 0, 0, 0, 0, 0, 0};
3251df5d5c5SMatthew G. Knepley         PetscInt    cones[8]            = {2, 3, 4, 5, 3, 6, 7, 4};
3261df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
3271df5d5c5SMatthew 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};
3281df5d5c5SMatthew G. Knepley 
3299566063dSJacob Faibussowitsch         PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
3301df5d5c5SMatthew G. Knepley       }
3311df5d5c5SMatthew G. Knepley       break;
3321df5d5c5SMatthew G. Knepley     case 3:
3331df5d5c5SMatthew G. Knepley       if (simplex) {
3341df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]        = {5, 2};
3351df5d5c5SMatthew G. Knepley         PetscInt    coneSize[7]         = {4, 4, 0, 0, 0, 0, 0};
3361df5d5c5SMatthew G. Knepley         PetscInt    cones[8]            = {4, 3, 5, 2, 5, 3, 4, 6};
3371df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
3381df5d5c5SMatthew 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};
3391df5d5c5SMatthew G. Knepley 
3409566063dSJacob Faibussowitsch         PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
3411df5d5c5SMatthew G. Knepley       } else {
3421df5d5c5SMatthew G. Knepley         PetscInt    numPoints[2]         = {12, 2};
3431df5d5c5SMatthew G. Knepley         PetscInt    coneSize[14]         = {8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
3441df5d5c5SMatthew G. Knepley         PetscInt    cones[16]            = {2, 3, 4, 5, 6, 7, 8, 9, 5, 4, 10, 11, 7, 12, 13, 8};
3451df5d5c5SMatthew G. Knepley         PetscInt    coneOrientations[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
3469371c9d4SSatish Balay         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, -1.0, -0.5, 0.5, 0.0, -0.5, 0.5, 0.0, 0.5, 0.5, -1.0, 0.5, 0.5, 1.0, 0.5, -0.5, 1.0, -0.5, -0.5, 1.0, -0.5, 0.5, 1.0, 0.5, 0.5};
3471df5d5c5SMatthew G. Knepley 
3489566063dSJacob Faibussowitsch         PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
3491df5d5c5SMatthew G. Knepley       }
3501df5d5c5SMatthew G. Knepley       break;
351d71ae5a4SJacob Faibussowitsch     default:
352d71ae5a4SJacob Faibussowitsch       SETERRQ(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %" PetscInt_FMT, dim);
3531df5d5c5SMatthew G. Knepley     }
3541df5d5c5SMatthew G. Knepley   }
35546139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
3561df5d5c5SMatthew G. Knepley   *newdm = dm;
3571df5d5c5SMatthew G. Knepley   if (refinementLimit > 0.0) {
3581df5d5c5SMatthew G. Knepley     DM          rdm;
3591df5d5c5SMatthew G. Knepley     const char *name;
3601df5d5c5SMatthew G. Knepley 
3619566063dSJacob Faibussowitsch     PetscCall(DMPlexSetRefinementUniform(*newdm, PETSC_FALSE));
3629566063dSJacob Faibussowitsch     PetscCall(DMPlexSetRefinementLimit(*newdm, refinementLimit));
3639566063dSJacob Faibussowitsch     PetscCall(DMRefine(*newdm, comm, &rdm));
3649566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)*newdm, &name));
3659566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)rdm, name));
3669566063dSJacob Faibussowitsch     PetscCall(DMDestroy(newdm));
3671df5d5c5SMatthew G. Knepley     *newdm = rdm;
3681df5d5c5SMatthew G. Knepley   }
3691df5d5c5SMatthew G. Knepley   if (interpolate) {
3705fd9971aSMatthew G. Knepley     DM idm;
3711df5d5c5SMatthew G. Knepley 
3729566063dSJacob Faibussowitsch     PetscCall(DMPlexInterpolate(*newdm, &idm));
3739566063dSJacob Faibussowitsch     PetscCall(DMDestroy(newdm));
3741df5d5c5SMatthew G. Knepley     *newdm = idm;
3751df5d5c5SMatthew G. Knepley   }
3763ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3771df5d5c5SMatthew G. Knepley }
3781df5d5c5SMatthew G. Knepley 
379d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_1D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[])
380d71ae5a4SJacob Faibussowitsch {
3819318fe57SMatthew G. Knepley   const PetscInt numVertices    = 2;
3829318fe57SMatthew G. Knepley   PetscInt       markerRight    = 1;
3839318fe57SMatthew G. Knepley   PetscInt       markerLeft     = 1;
3849318fe57SMatthew G. Knepley   PetscBool      markerSeparate = PETSC_FALSE;
3859318fe57SMatthew G. Knepley   Vec            coordinates;
3869318fe57SMatthew G. Knepley   PetscSection   coordSection;
3879318fe57SMatthew G. Knepley   PetscScalar   *coords;
3889318fe57SMatthew G. Knepley   PetscInt       coordSize;
3899318fe57SMatthew G. Knepley   PetscMPIInt    rank;
3909318fe57SMatthew G. Knepley   PetscInt       cdim = 1, v;
391552f7358SJed Brown 
3929318fe57SMatthew G. Knepley   PetscFunctionBegin;
3939566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL));
3949318fe57SMatthew G. Knepley   if (markerSeparate) {
3959318fe57SMatthew G. Knepley     markerRight = 2;
3969318fe57SMatthew G. Knepley     markerLeft  = 1;
3979318fe57SMatthew G. Knepley   }
3989566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
399c5853193SPierre Jolivet   if (rank == 0) {
4009566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numVertices));
4019566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm)); /* Allocate space for cones */
4029566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "marker", 0, markerLeft));
4039566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "marker", 1, markerRight));
4049318fe57SMatthew G. Knepley   }
4059566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
4069566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
4079318fe57SMatthew G. Knepley   /* Build coordinates */
4089566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, cdim));
4099566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
4109566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
4119566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, 0, numVertices));
4129566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, cdim));
4139318fe57SMatthew G. Knepley   for (v = 0; v < numVertices; ++v) {
4149566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, cdim));
4159566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, cdim));
4169318fe57SMatthew G. Knepley   }
4179566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
4189566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
4199566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
4209566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
4219566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
4229566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, cdim));
4239566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
4249566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
4259318fe57SMatthew G. Knepley   coords[0] = lower[0];
4269318fe57SMatthew G. Knepley   coords[1] = upper[0];
4279566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
4289566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
4299566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
4303ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4319318fe57SMatthew G. Knepley }
43226492d91SMatthew G. Knepley 
433d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_2D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[])
434d71ae5a4SJacob Faibussowitsch {
4351df21d24SMatthew G. Knepley   const PetscInt numVertices    = (edges[0] + 1) * (edges[1] + 1);
4361df21d24SMatthew G. Knepley   const PetscInt numEdges       = edges[0] * (edges[1] + 1) + (edges[0] + 1) * edges[1];
437552f7358SJed Brown   PetscInt       markerTop      = 1;
438552f7358SJed Brown   PetscInt       markerBottom   = 1;
439552f7358SJed Brown   PetscInt       markerRight    = 1;
440552f7358SJed Brown   PetscInt       markerLeft     = 1;
441552f7358SJed Brown   PetscBool      markerSeparate = PETSC_FALSE;
442552f7358SJed Brown   Vec            coordinates;
443552f7358SJed Brown   PetscSection   coordSection;
444552f7358SJed Brown   PetscScalar   *coords;
445552f7358SJed Brown   PetscInt       coordSize;
446552f7358SJed Brown   PetscMPIInt    rank;
447552f7358SJed Brown   PetscInt       v, vx, vy;
448552f7358SJed Brown 
449552f7358SJed Brown   PetscFunctionBegin;
4509566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL));
451552f7358SJed Brown   if (markerSeparate) {
4521df21d24SMatthew G. Knepley     markerTop    = 3;
4531df21d24SMatthew G. Knepley     markerBottom = 1;
4541df21d24SMatthew G. Knepley     markerRight  = 2;
4551df21d24SMatthew G. Knepley     markerLeft   = 4;
456552f7358SJed Brown   }
4579566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
458dd400576SPatrick Sanan   if (rank == 0) {
459552f7358SJed Brown     PetscInt e, ex, ey;
460552f7358SJed Brown 
4619566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numEdges + numVertices));
46248a46eb9SPierre Jolivet     for (e = 0; e < numEdges; ++e) PetscCall(DMPlexSetConeSize(dm, e, 2));
4639566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm)); /* Allocate space for cones */
464552f7358SJed Brown     for (vx = 0; vx <= edges[0]; vx++) {
465552f7358SJed Brown       for (ey = 0; ey < edges[1]; ey++) {
466552f7358SJed Brown         PetscInt edge   = vx * edges[1] + ey + edges[0] * (edges[1] + 1);
467552f7358SJed Brown         PetscInt vertex = ey * (edges[0] + 1) + vx + numEdges;
468da80777bSKarl Rupp         PetscInt cone[2];
469552f7358SJed Brown 
4709371c9d4SSatish Balay         cone[0] = vertex;
4719371c9d4SSatish Balay         cone[1] = vertex + edges[0] + 1;
4729566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, edge, cone));
473552f7358SJed Brown         if (vx == edges[0]) {
4749566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight));
4759566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight));
476552f7358SJed Brown           if (ey == edges[1] - 1) {
4779566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight));
4789566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerRight));
479552f7358SJed Brown           }
480552f7358SJed Brown         } else if (vx == 0) {
4819566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft));
4829566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft));
483552f7358SJed Brown           if (ey == edges[1] - 1) {
4849566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft));
4859566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerLeft));
486552f7358SJed Brown           }
487552f7358SJed Brown         }
488552f7358SJed Brown       }
489552f7358SJed Brown     }
490552f7358SJed Brown     for (vy = 0; vy <= edges[1]; vy++) {
491552f7358SJed Brown       for (ex = 0; ex < edges[0]; ex++) {
492552f7358SJed Brown         PetscInt edge   = vy * edges[0] + ex;
493552f7358SJed Brown         PetscInt vertex = vy * (edges[0] + 1) + ex + numEdges;
494da80777bSKarl Rupp         PetscInt cone[2];
495552f7358SJed Brown 
4969371c9d4SSatish Balay         cone[0] = vertex;
4979371c9d4SSatish Balay         cone[1] = vertex + 1;
4989566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, edge, cone));
499552f7358SJed Brown         if (vy == edges[1]) {
5009566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop));
5019566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop));
502552f7358SJed Brown           if (ex == edges[0] - 1) {
5039566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop));
5049566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerTop));
505552f7358SJed Brown           }
506552f7358SJed Brown         } else if (vy == 0) {
5079566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom));
5089566063dSJacob Faibussowitsch           PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom));
509552f7358SJed Brown           if (ex == edges[0] - 1) {
5109566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom));
5119566063dSJacob Faibussowitsch             PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerBottom));
512552f7358SJed Brown           }
513552f7358SJed Brown         }
514552f7358SJed Brown       }
515552f7358SJed Brown     }
516552f7358SJed Brown   }
5179566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
5189566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
519552f7358SJed Brown   /* Build coordinates */
5209566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, 2));
5219566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
5229566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
5239566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, numEdges, numEdges + numVertices));
5249566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, 2));
525552f7358SJed Brown   for (v = numEdges; v < numEdges + numVertices; ++v) {
5269566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, 2));
5279566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, 2));
528552f7358SJed Brown   }
5299566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
5309566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
5319566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
5329566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
5339566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
5349566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, 2));
5359566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
5369566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
537552f7358SJed Brown   for (vy = 0; vy <= edges[1]; ++vy) {
538552f7358SJed Brown     for (vx = 0; vx <= edges[0]; ++vx) {
539552f7358SJed Brown       coords[(vy * (edges[0] + 1) + vx) * 2 + 0] = lower[0] + ((upper[0] - lower[0]) / edges[0]) * vx;
540552f7358SJed Brown       coords[(vy * (edges[0] + 1) + vx) * 2 + 1] = lower[1] + ((upper[1] - lower[1]) / edges[1]) * vy;
541552f7358SJed Brown     }
542552f7358SJed Brown   }
5439566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
5449566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
5459566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
5463ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
547552f7358SJed Brown }
548552f7358SJed Brown 
549d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_3D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt faces[])
550d71ae5a4SJacob Faibussowitsch {
5519e8abbc3SMichael Lange   PetscInt     vertices[3], numVertices;
5527b59f5a9SMichael Lange   PetscInt     numFaces       = 2 * faces[0] * faces[1] + 2 * faces[1] * faces[2] + 2 * faces[0] * faces[2];
553c2df9bbfSMatthew G. Knepley   PetscInt     markerTop      = 1;
554c2df9bbfSMatthew G. Knepley   PetscInt     markerBottom   = 1;
555c2df9bbfSMatthew G. Knepley   PetscInt     markerFront    = 1;
556c2df9bbfSMatthew G. Knepley   PetscInt     markerBack     = 1;
557c2df9bbfSMatthew G. Knepley   PetscInt     markerRight    = 1;
558c2df9bbfSMatthew G. Knepley   PetscInt     markerLeft     = 1;
559c2df9bbfSMatthew G. Knepley   PetscBool    markerSeparate = PETSC_FALSE;
560552f7358SJed Brown   Vec          coordinates;
561552f7358SJed Brown   PetscSection coordSection;
562552f7358SJed Brown   PetscScalar *coords;
563552f7358SJed Brown   PetscInt     coordSize;
564552f7358SJed Brown   PetscMPIInt  rank;
565552f7358SJed Brown   PetscInt     v, vx, vy, vz;
5667b59f5a9SMichael Lange   PetscInt     voffset, iface = 0, cone[4];
567552f7358SJed Brown 
568552f7358SJed Brown   PetscFunctionBegin;
5691dca8a05SBarry Smith   PetscCheck(faces[0] >= 1 && faces[1] >= 1 && faces[2] >= 1, PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Must have at least 1 face per side");
5709566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
571c2df9bbfSMatthew G. Knepley   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL));
572c2df9bbfSMatthew G. Knepley   if (markerSeparate) {
573c2df9bbfSMatthew G. Knepley     markerBottom = 1;
574c2df9bbfSMatthew G. Knepley     markerTop    = 2;
575c2df9bbfSMatthew G. Knepley     markerFront  = 3;
576c2df9bbfSMatthew G. Knepley     markerBack   = 4;
577c2df9bbfSMatthew G. Knepley     markerRight  = 5;
578c2df9bbfSMatthew G. Knepley     markerLeft   = 6;
579c2df9bbfSMatthew G. Knepley   }
5809371c9d4SSatish Balay   vertices[0] = faces[0] + 1;
5819371c9d4SSatish Balay   vertices[1] = faces[1] + 1;
5829371c9d4SSatish Balay   vertices[2] = faces[2] + 1;
5839e8abbc3SMichael Lange   numVertices = vertices[0] * vertices[1] * vertices[2];
584dd400576SPatrick Sanan   if (rank == 0) {
585552f7358SJed Brown     PetscInt f;
586552f7358SJed Brown 
5879566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numFaces + numVertices));
58848a46eb9SPierre Jolivet     for (f = 0; f < numFaces; ++f) PetscCall(DMPlexSetConeSize(dm, f, 4));
5899566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm)); /* Allocate space for cones */
5907b59f5a9SMichael Lange 
5917b59f5a9SMichael Lange     /* Side 0 (Top) */
5927b59f5a9SMichael Lange     for (vy = 0; vy < faces[1]; vy++) {
5937b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
5947b59f5a9SMichael Lange         voffset = numFaces + vertices[0] * vertices[1] * (vertices[2] - 1) + vy * vertices[0] + vx;
5959371c9d4SSatish Balay         cone[0] = voffset;
5969371c9d4SSatish Balay         cone[1] = voffset + 1;
5979371c9d4SSatish Balay         cone[2] = voffset + vertices[0] + 1;
5989371c9d4SSatish Balay         cone[3] = voffset + vertices[0];
5999566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
600c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerTop));
601c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerTop));
602c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 1, markerTop));
603c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 0, markerTop));
604c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 1, markerTop));
6057b59f5a9SMichael Lange         iface++;
606552f7358SJed Brown       }
607552f7358SJed Brown     }
6087b59f5a9SMichael Lange 
6097b59f5a9SMichael Lange     /* Side 1 (Bottom) */
6107b59f5a9SMichael Lange     for (vy = 0; vy < faces[1]; vy++) {
6117b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
6127b59f5a9SMichael Lange         voffset = numFaces + vy * (faces[0] + 1) + vx;
6139371c9d4SSatish Balay         cone[0] = voffset + 1;
6149371c9d4SSatish Balay         cone[1] = voffset;
6159371c9d4SSatish Balay         cone[2] = voffset + vertices[0];
6169371c9d4SSatish Balay         cone[3] = voffset + vertices[0] + 1;
6179566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
618c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerBottom));
619c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerBottom));
620c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 1, markerBottom));
621c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 0, markerBottom));
622c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 1, markerBottom));
6237b59f5a9SMichael Lange         iface++;
624552f7358SJed Brown       }
625552f7358SJed Brown     }
6267b59f5a9SMichael Lange 
6277b59f5a9SMichael Lange     /* Side 2 (Front) */
6287b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
6297b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
6307b59f5a9SMichael Lange         voffset = numFaces + vz * vertices[0] * vertices[1] + vx;
6319371c9d4SSatish Balay         cone[0] = voffset;
6329371c9d4SSatish Balay         cone[1] = voffset + 1;
6339371c9d4SSatish Balay         cone[2] = voffset + vertices[0] * vertices[1] + 1;
6349371c9d4SSatish Balay         cone[3] = voffset + vertices[0] * vertices[1];
6359566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
636c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerFront));
637c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerFront));
638c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 1, markerFront));
639c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + 0, markerFront));
640c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + 1, markerFront));
6417b59f5a9SMichael Lange         iface++;
642552f7358SJed Brown       }
6437b59f5a9SMichael Lange     }
6447b59f5a9SMichael Lange 
6457b59f5a9SMichael Lange     /* Side 3 (Back) */
6467b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
6477b59f5a9SMichael Lange       for (vx = 0; vx < faces[0]; vx++) {
6487b59f5a9SMichael Lange         voffset = numFaces + vz * vertices[0] * vertices[1] + vertices[0] * (vertices[1] - 1) + vx;
6499371c9d4SSatish Balay         cone[0] = voffset + vertices[0] * vertices[1];
6509371c9d4SSatish Balay         cone[1] = voffset + vertices[0] * vertices[1] + 1;
6519371c9d4SSatish Balay         cone[2] = voffset + 1;
6529371c9d4SSatish Balay         cone[3] = voffset;
6539566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
654c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerBack));
655c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerBack));
656c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 1, markerBack));
657c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + 0, markerBack));
658c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + 1, markerBack));
6597b59f5a9SMichael Lange         iface++;
6607b59f5a9SMichael Lange       }
6617b59f5a9SMichael Lange     }
6627b59f5a9SMichael Lange 
6637b59f5a9SMichael Lange     /* Side 4 (Left) */
6647b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
6657b59f5a9SMichael Lange       for (vy = 0; vy < faces[1]; vy++) {
6667b59f5a9SMichael Lange         voffset = numFaces + vz * vertices[0] * vertices[1] + vy * vertices[0];
6679371c9d4SSatish Balay         cone[0] = voffset;
6689371c9d4SSatish Balay         cone[1] = voffset + vertices[0] * vertices[1];
6699371c9d4SSatish Balay         cone[2] = voffset + vertices[0] * vertices[1] + vertices[0];
6709371c9d4SSatish Balay         cone[3] = voffset + vertices[0];
6719566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
672c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerLeft));
673c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerLeft));
674c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 0, markerLeft));
675c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[1] + 0, markerLeft));
676c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + vertices[0], markerLeft));
6777b59f5a9SMichael Lange         iface++;
6787b59f5a9SMichael Lange       }
6797b59f5a9SMichael Lange     }
6807b59f5a9SMichael Lange 
6817b59f5a9SMichael Lange     /* Side 5 (Right) */
6827b59f5a9SMichael Lange     for (vz = 0; vz < faces[2]; vz++) {
6837b59f5a9SMichael Lange       for (vy = 0; vy < faces[1]; vy++) {
684aab5bcd8SJed Brown         voffset = numFaces + vz * vertices[0] * vertices[1] + vy * vertices[0] + faces[0];
6859371c9d4SSatish Balay         cone[0] = voffset + vertices[0] * vertices[1];
6869371c9d4SSatish Balay         cone[1] = voffset;
6879371c9d4SSatish Balay         cone[2] = voffset + vertices[0];
6889371c9d4SSatish Balay         cone[3] = voffset + vertices[0] * vertices[1] + vertices[0];
6899566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, iface, cone));
690c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", iface, markerRight));
691c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + 0, markerRight));
692c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] + 0, markerRight));
693c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + 0, markerRight));
694c2df9bbfSMatthew G. Knepley         PetscCall(DMSetLabelValue(dm, "marker", voffset + vertices[0] * vertices[1] + vertices[0], markerRight));
6957b59f5a9SMichael Lange         iface++;
6967b59f5a9SMichael Lange       }
697552f7358SJed Brown     }
698552f7358SJed Brown   }
6999566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
7009566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
701552f7358SJed Brown   /* Build coordinates */
7029566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, 3));
7039566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
7049566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
7059566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, numFaces, numFaces + numVertices));
7069566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, 3));
707552f7358SJed Brown   for (v = numFaces; v < numFaces + numVertices; ++v) {
7089566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, 3));
7099566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, 3));
710552f7358SJed Brown   }
7119566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
7129566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
7139566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
7149566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
7159566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
7169566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, 3));
7179566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
7189566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
719552f7358SJed Brown   for (vz = 0; vz <= faces[2]; ++vz) {
720552f7358SJed Brown     for (vy = 0; vy <= faces[1]; ++vy) {
721552f7358SJed Brown       for (vx = 0; vx <= faces[0]; ++vx) {
722552f7358SJed Brown         coords[((vz * (faces[1] + 1) + vy) * (faces[0] + 1) + vx) * 3 + 0] = lower[0] + ((upper[0] - lower[0]) / faces[0]) * vx;
723552f7358SJed Brown         coords[((vz * (faces[1] + 1) + vy) * (faces[0] + 1) + vx) * 3 + 1] = lower[1] + ((upper[1] - lower[1]) / faces[1]) * vy;
724552f7358SJed Brown         coords[((vz * (faces[1] + 1) + vy) * (faces[0] + 1) + vx) * 3 + 2] = lower[2] + ((upper[2] - lower[2]) / faces[2]) * vz;
725552f7358SJed Brown       }
726552f7358SJed Brown     }
727552f7358SJed Brown   }
7289566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
7299566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
7309566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
7313ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
732552f7358SJed Brown }
733552f7358SJed Brown 
734d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], PetscBool interpolate)
735d71ae5a4SJacob Faibussowitsch {
7369318fe57SMatthew G. Knepley   PetscFunctionBegin;
7379318fe57SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, dim, 2);
73846139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
7399566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim - 1));
7409566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, dim));
7419318fe57SMatthew G. Knepley   switch (dim) {
742d71ae5a4SJacob Faibussowitsch   case 1:
743d71ae5a4SJacob Faibussowitsch     PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_1D_Internal(dm, lower, upper, faces));
744d71ae5a4SJacob Faibussowitsch     break;
745d71ae5a4SJacob Faibussowitsch   case 2:
746d71ae5a4SJacob Faibussowitsch     PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_2D_Internal(dm, lower, upper, faces));
747d71ae5a4SJacob Faibussowitsch     break;
748d71ae5a4SJacob Faibussowitsch   case 3:
749d71ae5a4SJacob Faibussowitsch     PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_3D_Internal(dm, lower, upper, faces));
750d71ae5a4SJacob Faibussowitsch     break;
751d71ae5a4SJacob Faibussowitsch   default:
752d71ae5a4SJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Dimension not supported: %" PetscInt_FMT, dim);
7539318fe57SMatthew G. Knepley   }
75446139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
7559566063dSJacob Faibussowitsch   if (interpolate) PetscCall(DMPlexInterpolateInPlace_Internal(dm));
7563ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7579318fe57SMatthew G. Knepley }
7589318fe57SMatthew G. Knepley 
7599318fe57SMatthew G. Knepley /*@C
7609318fe57SMatthew G. Knepley   DMPlexCreateBoxSurfaceMesh - Creates a mesh on the surface of the tensor product of unit intervals (box) using tensor cells (hexahedra).
7619318fe57SMatthew G. Knepley 
7629318fe57SMatthew G. Knepley   Collective
7639318fe57SMatthew G. Knepley 
7649318fe57SMatthew G. Knepley   Input Parameters:
765a1cb98faSBarry Smith + comm        - The communicator for the `DM` object
76620f4b53cSBarry Smith . dim         - The spatial dimension of the box, so the resulting mesh is has dimension `dim`-1
76720f4b53cSBarry Smith . faces       - Number of faces per dimension, or `NULL` for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D
76820f4b53cSBarry Smith . lower       - The lower left corner, or `NULL` for (0, 0, 0)
76920f4b53cSBarry Smith . upper       - The upper right corner, or `NULL` for (1, 1, 1)
7709318fe57SMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces)
7719318fe57SMatthew G. Knepley 
7729318fe57SMatthew G. Knepley   Output Parameter:
773a1cb98faSBarry Smith . dm - The `DM` object
7749318fe57SMatthew G. Knepley 
7759318fe57SMatthew G. Knepley   Level: beginner
7769318fe57SMatthew G. Knepley 
7771cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMSetFromOptions()`, `DMPlexCreateBoxMesh()`, `DMPlexCreateFromFile()`, `DMSetType()`, `DMCreate()`
7789318fe57SMatthew G. Knepley @*/
779d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateBoxSurfaceMesh(MPI_Comm comm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], PetscBool interpolate, DM *dm)
780d71ae5a4SJacob Faibussowitsch {
7819318fe57SMatthew G. Knepley   PetscInt  fac[3] = {1, 1, 1};
7829318fe57SMatthew G. Knepley   PetscReal low[3] = {0, 0, 0};
7839318fe57SMatthew G. Knepley   PetscReal upp[3] = {1, 1, 1};
7849318fe57SMatthew G. Knepley 
7859318fe57SMatthew G. Knepley   PetscFunctionBegin;
7869566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
7879566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
7889566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(*dm, dim, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, interpolate));
7893ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7909318fe57SMatthew G. Knepley }
7919318fe57SMatthew G. Knepley 
792d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateLineMesh_Internal(DM dm, PetscInt segments, PetscReal lower, PetscReal upper, DMBoundaryType bd)
793d71ae5a4SJacob Faibussowitsch {
794fdbf62faSLisandro Dalcin   PetscInt     i, fStart, fEnd, numCells = 0, numVerts = 0;
795fdbf62faSLisandro Dalcin   PetscInt     numPoints[2], *coneSize, *cones, *coneOrientations;
796fdbf62faSLisandro Dalcin   PetscScalar *vertexCoords;
797fdbf62faSLisandro Dalcin   PetscReal    L, maxCell;
798fdbf62faSLisandro Dalcin   PetscBool    markerSeparate = PETSC_FALSE;
799fdbf62faSLisandro Dalcin   PetscInt     markerLeft = 1, faceMarkerLeft = 1;
800fdbf62faSLisandro Dalcin   PetscInt     markerRight = 1, faceMarkerRight = 2;
801fdbf62faSLisandro Dalcin   PetscBool    wrap = (bd == DM_BOUNDARY_PERIODIC || bd == DM_BOUNDARY_TWIST) ? PETSC_TRUE : PETSC_FALSE;
802fdbf62faSLisandro Dalcin   PetscMPIInt  rank;
803fdbf62faSLisandro Dalcin 
804fdbf62faSLisandro Dalcin   PetscFunctionBegin;
8054f572ea9SToby Isaac   PetscAssertPointer(dm, 1);
806fdbf62faSLisandro Dalcin 
8079566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, 1));
8089566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "marker"));
8099566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "Face Sets"));
810fdbf62faSLisandro Dalcin 
8119566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
812dd400576SPatrick Sanan   if (rank == 0) numCells = segments;
813dd400576SPatrick Sanan   if (rank == 0) numVerts = segments + (wrap ? 0 : 1);
814fdbf62faSLisandro Dalcin 
8159371c9d4SSatish Balay   numPoints[0] = numVerts;
8169371c9d4SSatish Balay   numPoints[1] = numCells;
8179566063dSJacob Faibussowitsch   PetscCall(PetscMalloc4(numCells + numVerts, &coneSize, numCells * 2, &cones, numCells + numVerts, &coneOrientations, numVerts, &vertexCoords));
8189566063dSJacob Faibussowitsch   PetscCall(PetscArrayzero(coneOrientations, numCells + numVerts));
819ad540459SPierre Jolivet   for (i = 0; i < numCells; ++i) coneSize[i] = 2;
820ad540459SPierre Jolivet   for (i = 0; i < numVerts; ++i) coneSize[numCells + i] = 0;
8219371c9d4SSatish Balay   for (i = 0; i < numCells; ++i) {
8229371c9d4SSatish Balay     cones[2 * i]     = numCells + i % numVerts;
8239371c9d4SSatish Balay     cones[2 * i + 1] = numCells + (i + 1) % numVerts;
8249371c9d4SSatish Balay   }
825ad540459SPierre Jolivet   for (i = 0; i < numVerts; ++i) vertexCoords[i] = lower + (upper - lower) * ((PetscReal)i / (PetscReal)numCells);
8269566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
8279566063dSJacob Faibussowitsch   PetscCall(PetscFree4(coneSize, cones, coneOrientations, vertexCoords));
828fdbf62faSLisandro Dalcin 
8299566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL));
8309371c9d4SSatish Balay   if (markerSeparate) {
8319371c9d4SSatish Balay     markerLeft  = faceMarkerLeft;
8329371c9d4SSatish Balay     markerRight = faceMarkerRight;
8339371c9d4SSatish Balay   }
834dd400576SPatrick Sanan   if (!wrap && rank == 0) {
8359566063dSJacob Faibussowitsch     PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd));
8369566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "marker", fStart, markerLeft));
8379566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "marker", fEnd - 1, markerRight));
8389566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "Face Sets", fStart, faceMarkerLeft));
8399566063dSJacob Faibussowitsch     PetscCall(DMSetLabelValue(dm, "Face Sets", fEnd - 1, faceMarkerRight));
840fdbf62faSLisandro Dalcin   }
841fdbf62faSLisandro Dalcin   if (wrap) {
842fdbf62faSLisandro Dalcin     L       = upper - lower;
843fdbf62faSLisandro Dalcin     maxCell = (PetscReal)1.1 * (L / (PetscReal)PetscMax(1, segments));
8444fb89dddSMatthew G. Knepley     PetscCall(DMSetPeriodicity(dm, &maxCell, &lower, &L));
845fdbf62faSLisandro Dalcin   }
8469566063dSJacob Faibussowitsch   PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE));
8473ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
848fdbf62faSLisandro Dalcin }
849fdbf62faSLisandro Dalcin 
8504054ae39SJames Wright // Creates "Face Sets" label based on the standard box labeling conventions
851d7d2d1d2SJames Wright static PetscErrorCode DMPlexSetBoxLabel_Internal(DM dm, const DMBoundaryType periodicity[])
8524054ae39SJames Wright {
8536ff49feeSJames Wright   DM              cdm;
8546ff49feeSJames Wright   PetscSection    csection;
8556ff49feeSJames Wright   Vec             coordinates;
8564054ae39SJames Wright   DMLabel         label;
8576ff49feeSJames Wright   IS              faces_is;
8582b4f33d9SJames Wright   PetscInt        dim, num_face = 0;
8594054ae39SJames Wright   const PetscInt *faces;
8604054ae39SJames Wright   PetscInt        faceMarkerBottom, faceMarkerTop, faceMarkerFront, faceMarkerBack, faceMarkerRight, faceMarkerLeft;
8614054ae39SJames Wright 
8624054ae39SJames Wright   PetscFunctionBeginUser;
8634054ae39SJames Wright   PetscCall(DMGetDimension(dm, &dim));
864d7c1f440SPierre Jolivet   PetscCheck((dim == 2) || (dim == 3), PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "DMPlex box labeling only supports 2D and 3D meshes, received DM of dimension %" PetscInt_FMT, dim);
8654054ae39SJames Wright   // Get Face Sets label
8664054ae39SJames Wright   PetscCall(DMGetLabel(dm, "Face Sets", &label));
8674054ae39SJames Wright   if (label) {
8684054ae39SJames Wright     PetscCall(DMLabelReset(label));
8694054ae39SJames Wright   } else {
8704054ae39SJames Wright     PetscCall(DMCreateLabel(dm, "Face Sets"));
8714054ae39SJames Wright     PetscCall(DMGetLabel(dm, "Face Sets", &label));
8724054ae39SJames Wright   }
8734054ae39SJames Wright   PetscCall(DMPlexMarkBoundaryFaces(dm, 1, label));
8746ff49feeSJames Wright   PetscCall(DMGetStratumIS(dm, "Face Sets", 1, &faces_is));
8754054ae39SJames Wright 
8764054ae39SJames Wright   switch (dim) {
8774054ae39SJames Wright   case 2:
8784054ae39SJames Wright     faceMarkerTop    = 3;
8794054ae39SJames Wright     faceMarkerBottom = 1;
8804054ae39SJames Wright     faceMarkerRight  = 2;
8814054ae39SJames Wright     faceMarkerLeft   = 4;
8824054ae39SJames Wright     break;
8834054ae39SJames Wright   case 3:
8844054ae39SJames Wright     faceMarkerBottom = 1;
8854054ae39SJames Wright     faceMarkerTop    = 2;
8864054ae39SJames Wright     faceMarkerFront  = 3;
8874054ae39SJames Wright     faceMarkerBack   = 4;
8884054ae39SJames Wright     faceMarkerRight  = 5;
8894054ae39SJames Wright     faceMarkerLeft   = 6;
8904054ae39SJames Wright     break;
8914054ae39SJames Wright   default:
8924054ae39SJames Wright     SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Dimension %" PetscInt_FMT " not supported", dim);
8934054ae39SJames Wright   }
8944054ae39SJames Wright 
8952b4f33d9SJames Wright   if (faces_is) PetscCall(ISGetLocalSize(faces_is, &num_face));
8962b4f33d9SJames Wright   if (faces_is) PetscCall(ISGetIndices(faces_is, &faces));
8976ff49feeSJames Wright   PetscCall(DMGetCoordinatesLocal(dm, &coordinates));
8986ff49feeSJames Wright   PetscCall(DMGetCoordinateDM(dm, &cdm));
8996ff49feeSJames Wright   PetscCall(DMGetLocalSection(cdm, &csection));
9004054ae39SJames Wright   for (PetscInt f = 0; f < num_face; ++f) {
9016ff49feeSJames Wright     PetscScalar *coords = NULL;
9026ff49feeSJames Wright     PetscInt     face = faces[f], flip = 1, label_value = -1, coords_size;
9034054ae39SJames Wright 
9044054ae39SJames Wright     { // Determine if orientation of face is flipped
9054054ae39SJames Wright       PetscInt        num_cells_support, num_faces, start = -1;
9064054ae39SJames Wright       const PetscInt *orients, *cell_faces, *cells;
9074054ae39SJames Wright 
9084054ae39SJames Wright       PetscCall(DMPlexGetSupport(dm, face, &cells));
9094054ae39SJames Wright       PetscCall(DMPlexGetSupportSize(dm, face, &num_cells_support));
9104054ae39SJames Wright       PetscCheck(num_cells_support == 1, PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "Expected one cell in support of exterior face, but got %" PetscInt_FMT " cells", num_cells_support);
9114054ae39SJames Wright       PetscCall(DMPlexGetCone(dm, cells[0], &cell_faces));
9124054ae39SJames Wright       PetscCall(DMPlexGetConeSize(dm, cells[0], &num_faces));
9134054ae39SJames Wright       for (PetscInt i = 0; i < num_faces; i++) {
9144054ae39SJames Wright         if (cell_faces[i] == face) start = i;
9154054ae39SJames Wright       }
9164054ae39SJames Wright       PetscCheck(start >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_CORRUPT, "Could not find face %" PetscInt_FMT " in cone of its support", face);
9174054ae39SJames Wright       PetscCall(DMPlexGetConeOrientation(dm, cells[0], &orients));
9184054ae39SJames Wright       if (orients[start] < 0) flip = -1;
9194054ae39SJames Wright     }
9204054ae39SJames Wright 
9216ff49feeSJames Wright     // Cannot use DMPlexComputeCellGeometryFVM() for high-order geometry, so must calculate normal vectors manually
9226ff49feeSJames Wright     // Use the vertices (depth 0) of coordinate DM to calculate normal vector
9236ff49feeSJames Wright     PetscCall(DMPlexVecGetClosureAtDepth_Internal(cdm, csection, coordinates, face, 0, &coords_size, &coords));
9244054ae39SJames Wright     switch (dim) {
9254054ae39SJames Wright     case 2: {
9266ff49feeSJames Wright       PetscScalar vec[2];
9276ff49feeSJames Wright 
9286ff49feeSJames Wright       for (PetscInt d = 0; d < dim; ++d) vec[d] = flip * (PetscRealPart(coords[1 * dim + d]) - PetscRealPart(coords[0 * dim + d]));
9296ff49feeSJames Wright       PetscScalar normal[] = {vec[1], -vec[0]};
9306ff49feeSJames Wright       if (PetscAbsScalar(normal[0]) > PetscAbsScalar(normal[1])) {
9316ff49feeSJames Wright         label_value = PetscRealPart(normal[0]) > 0 ? faceMarkerRight : faceMarkerLeft;
9324054ae39SJames Wright       } else {
9336ff49feeSJames Wright         label_value = PetscRealPart(normal[1]) > 0 ? faceMarkerTop : faceMarkerBottom;
9344054ae39SJames Wright       }
9354054ae39SJames Wright     } break;
9364054ae39SJames Wright     case 3: {
9376ff49feeSJames Wright       PetscScalar vec1[3], vec2[3], normal[3];
9386ff49feeSJames Wright 
9396ff49feeSJames Wright       for (PetscInt d = 0; d < dim; ++d) {
9406ff49feeSJames Wright         vec1[d] = PetscRealPart(coords[1 * dim + d]) - PetscRealPart(coords[0 * dim + d]);
9416ff49feeSJames Wright         vec2[d] = PetscRealPart(coords[2 * dim + d]) - PetscRealPart(coords[1 * dim + d]);
9426ff49feeSJames Wright       }
9436ff49feeSJames Wright 
9446ff49feeSJames Wright       // Calculate normal vector via cross-product
9456ff49feeSJames Wright       normal[0] = flip * ((vec1[1] * vec2[2]) - (vec1[2] * vec2[1]));
9466ff49feeSJames Wright       normal[1] = flip * ((vec1[2] * vec2[0]) - (vec1[0] * vec2[2]));
9476ff49feeSJames Wright       normal[2] = flip * ((vec1[0] * vec2[1]) - (vec1[1] * vec2[0]));
9486ff49feeSJames Wright 
9496ff49feeSJames Wright       if (PetscAbsScalar(normal[0]) > PetscAbsScalar(normal[1])) {
9506ff49feeSJames Wright         if (PetscAbsScalar(normal[0]) > PetscAbsScalar(normal[2])) {
9516ff49feeSJames Wright           label_value = PetscRealPart(normal[0]) > 0 ? faceMarkerRight : faceMarkerLeft;
9524054ae39SJames Wright         } else {
9536ff49feeSJames Wright           label_value = PetscRealPart(normal[2]) > 0 ? faceMarkerTop : faceMarkerBottom;
9544054ae39SJames Wright         }
9554054ae39SJames Wright       } else {
9566ff49feeSJames Wright         if (PetscAbsScalar(normal[1]) > PetscAbsScalar(normal[2])) {
9576ff49feeSJames Wright           label_value = PetscRealPart(normal[1]) > 0 ? faceMarkerBack : faceMarkerFront;
9584054ae39SJames Wright         } else {
9596ff49feeSJames Wright           label_value = PetscRealPart(normal[2]) > 0 ? faceMarkerTop : faceMarkerBottom;
9604054ae39SJames Wright         }
9614054ae39SJames Wright       }
9624054ae39SJames Wright     } break;
9634054ae39SJames Wright     }
9644054ae39SJames Wright 
9654054ae39SJames Wright     PetscInt previous_label_value; // always 1 due to DMPlexMarkBoundaryFaces call above
9664054ae39SJames Wright     PetscCall(DMGetLabelValue(dm, "Face Sets", face, &previous_label_value));
9674054ae39SJames Wright     PetscCall(DMClearLabelValue(dm, "Face Sets", face, previous_label_value));
9684054ae39SJames Wright     PetscCall(DMSetLabelValue(dm, "Face Sets", face, label_value));
9696ff49feeSJames Wright     PetscCall(DMPlexVecRestoreClosure(cdm, csection, coordinates, face, &coords_size, &coords));
9704054ae39SJames Wright   }
9712b4f33d9SJames Wright   if (faces_is) PetscCall(ISRestoreIndices(faces_is, &faces));
9726ff49feeSJames Wright   PetscCall(ISDestroy(&faces_is));
973d7d2d1d2SJames Wright 
974d7d2d1d2SJames Wright   // Create Isoperiodic SF from newly-created face labels
975d7d2d1d2SJames Wright   PetscSF     periodicsfs[3];
976d7d2d1d2SJames Wright   PetscInt    periodic_sf_index  = 0;
977d7d2d1d2SJames Wright   PetscScalar transform[3][4][4] = {{{0.}}};
978d7d2d1d2SJames Wright   for (PetscInt d = 0; d < dim; d++) {
979d7d2d1d2SJames Wright     IS              donor_is, periodic_is;
980d7d2d1d2SJames Wright     const PetscInt *donor_faces = NULL, *periodic_faces = NULL;
981d7d2d1d2SJames Wright     PetscInt        num_donor = 0, num_periodic = 0;
982d7d2d1d2SJames Wright     PetscSF         centroidsf;
983d7d2d1d2SJames Wright     PetscReal       donor_to_periodic_distance;
984d7d2d1d2SJames Wright     const PetscInt  face_pairings[2][3][2] = {
985d7d2d1d2SJames Wright       // 2D face pairings, {donor, periodic}
986d7d2d1d2SJames Wright       {{4, 2}, {1, 3}},
987d7d2d1d2SJames Wright       // 3D face pairings
988d7d2d1d2SJames Wright       {{5, 6}, {3, 4}, {1, 2}}
989d7d2d1d2SJames Wright     };
990d7d2d1d2SJames Wright 
991d7d2d1d2SJames Wright     if (periodicity[d] != DM_BOUNDARY_PERIODIC) continue;
992d7d2d1d2SJames Wright     {
993d7d2d1d2SJames Wright       // Compute centroidsf, which is the mapping from donor faces to periodic faces
994d7d2d1d2SJames Wright       // Matches the centroid of the faces together, ignoring the periodic direction component (which should not match between donor and periodic face)
995d7d2d1d2SJames Wright       PetscInt     coords_size, centroid_comps = dim - 1;
996d7d2d1d2SJames Wright       PetscScalar *coords = NULL;
997d7d2d1d2SJames Wright       PetscReal   *donor_centroids, *periodic_centroids;
998d7d2d1d2SJames Wright       PetscReal    loc_periodic[2] = {PETSC_MIN_REAL, PETSC_MIN_REAL}, loc_periodic_global[2]; // Location of donor (0) and periodic (1) faces in periodic direction
999d7d2d1d2SJames Wright 
1000d7d2d1d2SJames Wright       PetscCall(DMGetStratumIS(dm, "Face Sets", face_pairings[dim - 2][d][0], &donor_is));
1001d7d2d1d2SJames Wright       PetscCall(DMGetStratumIS(dm, "Face Sets", face_pairings[dim - 2][d][1], &periodic_is));
1002d7d2d1d2SJames Wright       if (donor_is) {
1003d7d2d1d2SJames Wright         PetscCall(ISGetLocalSize(donor_is, &num_donor));
1004d7d2d1d2SJames Wright         PetscCall(ISGetIndices(donor_is, &donor_faces));
1005d7d2d1d2SJames Wright       }
1006d7d2d1d2SJames Wright       if (periodic_is) {
1007d7d2d1d2SJames Wright         PetscCall(ISGetLocalSize(periodic_is, &num_periodic));
1008d7d2d1d2SJames Wright         PetscCall(ISGetIndices(periodic_is, &periodic_faces));
1009d7d2d1d2SJames Wright       }
1010d7d2d1d2SJames Wright       PetscCall(PetscCalloc2(num_donor * centroid_comps, &donor_centroids, num_periodic * centroid_comps, &periodic_centroids));
1011d7d2d1d2SJames Wright       for (PetscInt f = 0; f < num_donor; f++) {
1012d7d2d1d2SJames Wright         PetscInt face = donor_faces[f], num_coords;
1013d7d2d1d2SJames Wright         PetscCall(DMPlexVecGetClosureAtDepth_Internal(cdm, csection, coordinates, face, 0, &coords_size, &coords));
1014d7d2d1d2SJames Wright         num_coords = coords_size / dim;
1015d7d2d1d2SJames Wright         for (PetscInt c = 0; c < num_coords; c++) {
1016d7d2d1d2SJames Wright           PetscInt comp_index = 0;
1017d7d2d1d2SJames Wright           loc_periodic[0]     = PetscRealPart(coords[c * dim + d]);
1018d7d2d1d2SJames Wright           for (PetscInt i = 0; i < dim; i++) {
1019d7d2d1d2SJames Wright             if (i == d) continue; // Periodic direction not used for centroid calculation
1020d7d2d1d2SJames Wright             donor_centroids[f * centroid_comps + comp_index] += PetscRealPart(coords[c * dim + i]) / num_coords;
1021d7d2d1d2SJames Wright             comp_index++;
1022d7d2d1d2SJames Wright           }
1023d7d2d1d2SJames Wright         }
1024d7d2d1d2SJames Wright         PetscCall(DMPlexVecRestoreClosure(cdm, csection, coordinates, face, &coords_size, &coords));
1025d7d2d1d2SJames Wright       }
1026d7d2d1d2SJames Wright 
1027d7d2d1d2SJames Wright       for (PetscInt f = 0; f < num_periodic; f++) {
1028d7d2d1d2SJames Wright         PetscInt face = periodic_faces[f], num_coords;
1029d7d2d1d2SJames Wright         PetscCall(DMPlexVecGetClosureAtDepth_Internal(cdm, csection, coordinates, face, 0, &coords_size, &coords));
1030d7d2d1d2SJames Wright         num_coords = coords_size / dim;
1031d7d2d1d2SJames Wright         for (PetscInt c = 0; c < num_coords; c++) {
1032d7d2d1d2SJames Wright           PetscInt comp_index = 0;
1033d7d2d1d2SJames Wright           loc_periodic[1]     = PetscRealPart(coords[c * dim + d]);
1034d7d2d1d2SJames Wright           for (PetscInt i = 0; i < dim; i++) {
1035d7d2d1d2SJames Wright             if (i == d) continue; // Periodic direction not used for centroid calculation
1036d7d2d1d2SJames Wright             periodic_centroids[f * centroid_comps + comp_index] += PetscRealPart(coords[c * dim + i]) / num_coords;
1037d7d2d1d2SJames Wright             comp_index++;
1038d7d2d1d2SJames Wright           }
1039d7d2d1d2SJames Wright         }
1040d7d2d1d2SJames Wright         PetscCall(DMPlexVecRestoreClosure(cdm, csection, coordinates, face, &coords_size, &coords));
1041d7d2d1d2SJames Wright       }
1042d7d2d1d2SJames Wright       PetscCallMPI(MPIU_Allreduce(loc_periodic, loc_periodic_global, 2, MPIU_REAL, MPIU_MAX, PetscObjectComm((PetscObject)dm)));
1043d7d2d1d2SJames Wright       donor_to_periodic_distance = loc_periodic_global[1] - loc_periodic_global[0];
1044d7d2d1d2SJames Wright 
1045d7d2d1d2SJames Wright       PetscCall(PetscSFCreate(PetscObjectComm((PetscObject)dm), &centroidsf));
1046d7d2d1d2SJames Wright       PetscCall(PetscSFSetGraphFromCoordinates(centroidsf, num_donor, num_periodic, centroid_comps, 1e-10, donor_centroids, periodic_centroids));
1047d7d2d1d2SJames Wright       PetscCall(PetscSFViewFromOptions(centroidsf, NULL, "-dm_plex_box_label_centroid_sf_view"));
1048d7d2d1d2SJames Wright       PetscCall(PetscFree2(donor_centroids, periodic_centroids));
1049d7d2d1d2SJames Wright     }
1050d7d2d1d2SJames Wright 
1051d7d2d1d2SJames Wright     { // Create Isoperiodic SF using centroidsSF
1052d7d2d1d2SJames Wright       PetscInt           pStart, pEnd;
1053d7d2d1d2SJames Wright       PetscInt          *leaf_faces;
1054d7d2d1d2SJames Wright       const PetscSFNode *firemote;
1055d7d2d1d2SJames Wright       PetscSFNode       *isoperiodic_leaves;
1056d7d2d1d2SJames Wright 
1057d7d2d1d2SJames Wright       PetscCall(PetscMalloc1(num_periodic, &leaf_faces));
1058d7d2d1d2SJames Wright       PetscCall(PetscSFBcastBegin(centroidsf, MPIU_INT, donor_faces, leaf_faces, MPI_REPLACE));
1059d7d2d1d2SJames Wright       PetscCall(PetscSFBcastEnd(centroidsf, MPIU_INT, donor_faces, leaf_faces, MPI_REPLACE));
1060d7d2d1d2SJames Wright 
1061d7d2d1d2SJames Wright       PetscCall(PetscMalloc1(num_periodic, &isoperiodic_leaves));
1062d7d2d1d2SJames Wright       PetscCall(PetscSFGetGraph(centroidsf, NULL, NULL, NULL, &firemote));
1063d7d2d1d2SJames Wright       for (PetscInt l = 0; l < num_periodic; ++l) {
1064d7d2d1d2SJames Wright         isoperiodic_leaves[l].index = leaf_faces[l];
1065d7d2d1d2SJames Wright         isoperiodic_leaves[l].rank  = firemote[l].rank;
1066d7d2d1d2SJames Wright       }
1067d7d2d1d2SJames Wright 
1068d7d2d1d2SJames Wright       PetscCall(DMPlexGetChart(dm, &pStart, &pEnd));
1069d7d2d1d2SJames Wright       PetscCall(PetscSFCreate(PetscObjectComm((PetscObject)dm), &periodicsfs[periodic_sf_index]));
1070d7d2d1d2SJames Wright       PetscCall(PetscSFSetGraph(periodicsfs[periodic_sf_index], pEnd - pStart, num_periodic, (PetscInt *)periodic_faces, PETSC_COPY_VALUES, isoperiodic_leaves, PETSC_OWN_POINTER));
1071d7d2d1d2SJames Wright       PetscCall(PetscSFViewFromOptions(periodicsfs[periodic_sf_index], NULL, "-dm_plex_box_label_periodic_sf_view"));
1072d7d2d1d2SJames Wright       PetscCall(PetscFree(leaf_faces));
1073d7d2d1d2SJames Wright     }
1074d7d2d1d2SJames Wright 
1075d7d2d1d2SJames Wright     transform[periodic_sf_index][0][0] = 1;
1076d7d2d1d2SJames Wright     transform[periodic_sf_index][1][1] = 1;
1077d7d2d1d2SJames Wright     transform[periodic_sf_index][2][2] = 1;
1078d7d2d1d2SJames Wright     transform[periodic_sf_index][3][3] = 1;
1079d7d2d1d2SJames Wright     transform[periodic_sf_index][d][3] = donor_to_periodic_distance;
1080d7d2d1d2SJames Wright 
1081d7d2d1d2SJames Wright     periodic_sf_index++;
1082d7d2d1d2SJames Wright     PetscCall(PetscSFDestroy(&centroidsf));
1083d7d2d1d2SJames Wright     if (donor_is) {
1084d7d2d1d2SJames Wright       PetscCall(ISRestoreIndices(donor_is, &donor_faces));
1085d7d2d1d2SJames Wright       PetscCall(ISDestroy(&donor_is));
1086d7d2d1d2SJames Wright     }
1087d7d2d1d2SJames Wright     if (periodic_is) {
1088d7d2d1d2SJames Wright       PetscCall(ISRestoreIndices(periodic_is, &periodic_faces));
1089d7d2d1d2SJames Wright       PetscCall(ISDestroy(&periodic_is));
1090d7d2d1d2SJames Wright     }
1091d7d2d1d2SJames Wright     PetscCall(DMClearLabelStratum(dm, "Face Sets", face_pairings[dim - 2][d][0]));
1092d7d2d1d2SJames Wright     PetscCall(DMClearLabelStratum(dm, "Face Sets", face_pairings[dim - 2][d][1]));
1093d7d2d1d2SJames Wright   }
1094d7d2d1d2SJames Wright   PetscCall(DMPlexSetIsoperiodicFaceSF(dm, periodic_sf_index, periodicsfs));
1095d7d2d1d2SJames Wright   PetscCall(DMPlexSetIsoperiodicFaceTransform(dm, periodic_sf_index, (const PetscScalar *)transform));
1096d7d2d1d2SJames Wright   for (PetscInt p = 0; p < periodic_sf_index; p++) PetscCall(PetscSFDestroy(&periodicsfs[p]));
1097d7d2d1d2SJames Wright 
1098d7d2d1d2SJames Wright   { // Update coordinate DM with new Face Sets label
1099d7d2d1d2SJames Wright     DM      cdm;
1100d7d2d1d2SJames Wright     DMLabel oldFaceSets, newFaceSets;
1101d7d2d1d2SJames Wright     PetscCall(DMGetCoordinateDM(dm, &cdm));
1102d7d2d1d2SJames Wright     PetscCall(DMGetLabel(cdm, "Face Sets", &oldFaceSets));
1103d7d2d1d2SJames Wright     if (oldFaceSets) PetscCall(DMRemoveLabelBySelf(cdm, &oldFaceSets, PETSC_FALSE));
1104d7d2d1d2SJames Wright     PetscCall(DMLabelDuplicate(label, &newFaceSets));
1105d7d2d1d2SJames Wright     PetscCall(DMAddLabel(cdm, newFaceSets));
1106d7d2d1d2SJames Wright     PetscCall(DMLabelDestroy(&newFaceSets));
1107d7d2d1d2SJames Wright   }
11084054ae39SJames Wright   PetscFunctionReturn(PETSC_SUCCESS);
11094054ae39SJames Wright }
11104054ae39SJames Wright 
1111d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxMesh_Simplex_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate)
1112d71ae5a4SJacob Faibussowitsch {
11139318fe57SMatthew G. Knepley   DM      boundary, vol;
1114c22d3578SMatthew G. Knepley   DMLabel bdlabel;
1115d6218766SMatthew G. Knepley 
1116d6218766SMatthew G. Knepley   PetscFunctionBegin;
11174f572ea9SToby Isaac   PetscAssertPointer(dm, 1);
1118c22d3578SMatthew G. Knepley   for (PetscInt i = 0; i < dim; ++i) PetscCheck(periodicity[i] == DM_BOUNDARY_NONE, PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Periodicity is not supported for simplex meshes");
11199566063dSJacob Faibussowitsch   PetscCall(DMCreate(PetscObjectComm((PetscObject)dm), &boundary));
11209566063dSJacob Faibussowitsch   PetscCall(DMSetType(boundary, DMPLEX));
11219566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(boundary, dim, faces, lower, upper, PETSC_FALSE));
11229566063dSJacob Faibussowitsch   PetscCall(DMPlexGenerate(boundary, NULL, interpolate, &vol));
1123c22d3578SMatthew G. Knepley   PetscCall(DMGetLabel(vol, "marker", &bdlabel));
1124c22d3578SMatthew G. Knepley   if (bdlabel) PetscCall(DMPlexLabelComplete(vol, bdlabel));
11255de52c6dSVaclav Hapla   PetscCall(DMPlexCopy_Internal(dm, PETSC_TRUE, PETSC_FALSE, vol));
112669d8a87bSksagiyam   PetscCall(DMPlexReplace_Internal(dm, &vol));
11274054ae39SJames Wright   if (interpolate) {
11284054ae39SJames Wright     PetscCall(DMPlexInterpolateInPlace_Internal(dm));
1129d7d2d1d2SJames Wright     PetscCall(DMPlexSetBoxLabel_Internal(dm, periodicity));
11304054ae39SJames Wright   }
11319566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&boundary));
11323ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1133d6218766SMatthew G. Knepley }
1134d6218766SMatthew G. Knepley 
1135d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateCubeMesh_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[], DMBoundaryType bdX, DMBoundaryType bdY, DMBoundaryType bdZ)
1136d71ae5a4SJacob Faibussowitsch {
1137ed0e4b50SMatthew G. Knepley   DMLabel     cutLabel  = NULL;
1138f4eb4c5dSMatthew G. Knepley   PetscInt    markerTop = 1, faceMarkerTop = 1;
1139f4eb4c5dSMatthew G. Knepley   PetscInt    markerBottom = 1, faceMarkerBottom = 1;
1140f4eb4c5dSMatthew G. Knepley   PetscInt    markerFront = 1, faceMarkerFront = 1;
1141f4eb4c5dSMatthew G. Knepley   PetscInt    markerBack = 1, faceMarkerBack = 1;
1142f4eb4c5dSMatthew G. Knepley   PetscInt    markerRight = 1, faceMarkerRight = 1;
1143f4eb4c5dSMatthew G. Knepley   PetscInt    markerLeft = 1, faceMarkerLeft = 1;
11443dfda0b1SToby Isaac   PetscInt    dim;
1145d8211ee3SMatthew G. Knepley   PetscBool   markerSeparate = PETSC_FALSE, cutMarker = PETSC_FALSE;
11463dfda0b1SToby Isaac   PetscMPIInt rank;
11473dfda0b1SToby Isaac 
11483dfda0b1SToby Isaac   PetscFunctionBegin;
11499566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
11509566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
11519566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "marker"));
11529566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "Face Sets"));
11539566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_periodic_cut", &cutMarker, NULL));
11549371c9d4SSatish Balay   if (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST || bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST || bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST) {
11559371c9d4SSatish Balay     if (cutMarker) {
11569371c9d4SSatish Balay       PetscCall(DMCreateLabel(dm, "periodic_cut"));
11579371c9d4SSatish Balay       PetscCall(DMGetLabel(dm, "periodic_cut", &cutLabel));
11589371c9d4SSatish Balay     }
1159d8211ee3SMatthew G. Knepley   }
11603dfda0b1SToby Isaac   switch (dim) {
11613dfda0b1SToby Isaac   case 2:
1162f4eb4c5dSMatthew G. Knepley     faceMarkerTop    = 3;
1163f4eb4c5dSMatthew G. Knepley     faceMarkerBottom = 1;
1164f4eb4c5dSMatthew G. Knepley     faceMarkerRight  = 2;
1165f4eb4c5dSMatthew G. Knepley     faceMarkerLeft   = 4;
11663dfda0b1SToby Isaac     break;
11673dfda0b1SToby Isaac   case 3:
1168f4eb4c5dSMatthew G. Knepley     faceMarkerBottom = 1;
1169f4eb4c5dSMatthew G. Knepley     faceMarkerTop    = 2;
1170f4eb4c5dSMatthew G. Knepley     faceMarkerFront  = 3;
1171f4eb4c5dSMatthew G. Knepley     faceMarkerBack   = 4;
1172f4eb4c5dSMatthew G. Knepley     faceMarkerRight  = 5;
1173f4eb4c5dSMatthew G. Knepley     faceMarkerLeft   = 6;
11743dfda0b1SToby Isaac     break;
1175d71ae5a4SJacob Faibussowitsch   default:
1176d71ae5a4SJacob Faibussowitsch     SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Dimension %" PetscInt_FMT " not supported", dim);
11773dfda0b1SToby Isaac   }
11789566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL));
1179f4eb4c5dSMatthew G. Knepley   if (markerSeparate) {
1180f4eb4c5dSMatthew G. Knepley     markerBottom = faceMarkerBottom;
1181f4eb4c5dSMatthew G. Knepley     markerTop    = faceMarkerTop;
1182f4eb4c5dSMatthew G. Knepley     markerFront  = faceMarkerFront;
1183f4eb4c5dSMatthew G. Knepley     markerBack   = faceMarkerBack;
1184f4eb4c5dSMatthew G. Knepley     markerRight  = faceMarkerRight;
1185f4eb4c5dSMatthew G. Knepley     markerLeft   = faceMarkerLeft;
11863dfda0b1SToby Isaac   }
11873dfda0b1SToby Isaac   {
1188dd400576SPatrick Sanan     const PetscInt numXEdges    = rank == 0 ? edges[0] : 0;
1189dd400576SPatrick Sanan     const PetscInt numYEdges    = rank == 0 ? edges[1] : 0;
1190dd400576SPatrick Sanan     const PetscInt numZEdges    = rank == 0 ? edges[2] : 0;
1191dd400576SPatrick Sanan     const PetscInt numXVertices = rank == 0 ? (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST ? edges[0] : edges[0] + 1) : 0;
1192dd400576SPatrick Sanan     const PetscInt numYVertices = rank == 0 ? (bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST ? edges[1] : edges[1] + 1) : 0;
1193dd400576SPatrick Sanan     const PetscInt numZVertices = rank == 0 ? (bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST ? edges[2] : edges[2] + 1) : 0;
11943dfda0b1SToby Isaac     const PetscInt numCells     = numXEdges * numYEdges * numZEdges;
11953dfda0b1SToby Isaac     const PetscInt numXFaces    = numYEdges * numZEdges;
11963dfda0b1SToby Isaac     const PetscInt numYFaces    = numXEdges * numZEdges;
11973dfda0b1SToby Isaac     const PetscInt numZFaces    = numXEdges * numYEdges;
11983dfda0b1SToby Isaac     const PetscInt numTotXFaces = numXVertices * numXFaces;
11993dfda0b1SToby Isaac     const PetscInt numTotYFaces = numYVertices * numYFaces;
12003dfda0b1SToby Isaac     const PetscInt numTotZFaces = numZVertices * numZFaces;
12013dfda0b1SToby Isaac     const PetscInt numFaces     = numTotXFaces + numTotYFaces + numTotZFaces;
12023dfda0b1SToby Isaac     const PetscInt numTotXEdges = numXEdges * numYVertices * numZVertices;
12033dfda0b1SToby Isaac     const PetscInt numTotYEdges = numYEdges * numXVertices * numZVertices;
12043dfda0b1SToby Isaac     const PetscInt numTotZEdges = numZEdges * numXVertices * numYVertices;
12053dfda0b1SToby Isaac     const PetscInt numVertices  = numXVertices * numYVertices * numZVertices;
12063dfda0b1SToby Isaac     const PetscInt numEdges     = numTotXEdges + numTotYEdges + numTotZEdges;
12073dfda0b1SToby Isaac     const PetscInt firstVertex  = (dim == 2) ? numFaces : numCells;
12083dfda0b1SToby Isaac     const PetscInt firstXFace   = (dim == 2) ? 0 : numCells + numVertices;
12093dfda0b1SToby Isaac     const PetscInt firstYFace   = firstXFace + numTotXFaces;
12103dfda0b1SToby Isaac     const PetscInt firstZFace   = firstYFace + numTotYFaces;
12113dfda0b1SToby Isaac     const PetscInt firstXEdge   = numCells + numFaces + numVertices;
12123dfda0b1SToby Isaac     const PetscInt firstYEdge   = firstXEdge + numTotXEdges;
12133dfda0b1SToby Isaac     const PetscInt firstZEdge   = firstYEdge + numTotYEdges;
12143dfda0b1SToby Isaac     Vec            coordinates;
12153dfda0b1SToby Isaac     PetscSection   coordSection;
12163dfda0b1SToby Isaac     PetscScalar   *coords;
12173dfda0b1SToby Isaac     PetscInt       coordSize;
12183dfda0b1SToby Isaac     PetscInt       v, vx, vy, vz;
12193dfda0b1SToby Isaac     PetscInt       c, f, fx, fy, fz, e, ex, ey, ez;
12203dfda0b1SToby Isaac 
12219566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numCells + numFaces + numEdges + numVertices));
122248a46eb9SPierre Jolivet     for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 6));
122348a46eb9SPierre Jolivet     for (f = firstXFace; f < firstXFace + numFaces; ++f) PetscCall(DMPlexSetConeSize(dm, f, 4));
122448a46eb9SPierre Jolivet     for (e = firstXEdge; e < firstXEdge + numEdges; ++e) PetscCall(DMPlexSetConeSize(dm, e, 2));
12259566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm)); /* Allocate space for cones */
12263dfda0b1SToby Isaac     /* Build cells */
12273dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
12283dfda0b1SToby Isaac       for (fy = 0; fy < numYEdges; ++fy) {
12293dfda0b1SToby Isaac         for (fx = 0; fx < numXEdges; ++fx) {
12303dfda0b1SToby Isaac           PetscInt cell  = (fz * numYEdges + fy) * numXEdges + fx;
12313dfda0b1SToby Isaac           PetscInt faceB = firstZFace + (fy * numXEdges + fx) * numZVertices + fz;
12323dfda0b1SToby Isaac           PetscInt faceT = firstZFace + (fy * numXEdges + fx) * numZVertices + ((fz + 1) % numZVertices);
12333dfda0b1SToby Isaac           PetscInt faceF = firstYFace + (fz * numXEdges + fx) * numYVertices + fy;
12343dfda0b1SToby Isaac           PetscInt faceK = firstYFace + (fz * numXEdges + fx) * numYVertices + ((fy + 1) % numYVertices);
12353dfda0b1SToby Isaac           PetscInt faceL = firstXFace + (fz * numYEdges + fy) * numXVertices + fx;
12363dfda0b1SToby Isaac           PetscInt faceR = firstXFace + (fz * numYEdges + fy) * numXVertices + ((fx + 1) % numXVertices);
12373dfda0b1SToby Isaac           /* B,  T,  F,  K,  R,  L */
1238b5a892a1SMatthew G. Knepley           PetscInt ornt[6] = {-2, 0, 0, -3, 0, -2}; /* ??? */
123942206facSLisandro Dalcin           PetscInt cone[6];
12403dfda0b1SToby Isaac 
12413dfda0b1SToby Isaac           /* no boundary twisting in 3D */
12429371c9d4SSatish Balay           cone[0] = faceB;
12439371c9d4SSatish Balay           cone[1] = faceT;
12449371c9d4SSatish Balay           cone[2] = faceF;
12459371c9d4SSatish Balay           cone[3] = faceK;
12469371c9d4SSatish Balay           cone[4] = faceR;
12479371c9d4SSatish Balay           cone[5] = faceL;
12489566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, cell, cone));
12499566063dSJacob Faibussowitsch           PetscCall(DMPlexSetConeOrientation(dm, cell, ornt));
12509566063dSJacob Faibussowitsch           if (bdX != DM_BOUNDARY_NONE && fx == numXEdges - 1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2));
12519566063dSJacob Faibussowitsch           if (bdY != DM_BOUNDARY_NONE && fy == numYEdges - 1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2));
12529566063dSJacob Faibussowitsch           if (bdZ != DM_BOUNDARY_NONE && fz == numZEdges - 1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2));
12533dfda0b1SToby Isaac         }
12543dfda0b1SToby Isaac       }
12553dfda0b1SToby Isaac     }
12563dfda0b1SToby Isaac     /* Build x faces */
12573dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
12583dfda0b1SToby Isaac       for (fy = 0; fy < numYEdges; ++fy) {
12593dfda0b1SToby Isaac         for (fx = 0; fx < numXVertices; ++fx) {
12603dfda0b1SToby Isaac           PetscInt face    = firstXFace + (fz * numYEdges + fy) * numXVertices + fx;
12613dfda0b1SToby Isaac           PetscInt edgeL   = firstZEdge + (fy * numXVertices + fx) * numZEdges + fz;
12623dfda0b1SToby Isaac           PetscInt edgeR   = firstZEdge + (((fy + 1) % numYVertices) * numXVertices + fx) * numZEdges + fz;
12633dfda0b1SToby Isaac           PetscInt edgeB   = firstYEdge + (fz * numXVertices + fx) * numYEdges + fy;
12643dfda0b1SToby Isaac           PetscInt edgeT   = firstYEdge + (((fz + 1) % numZVertices) * numXVertices + fx) * numYEdges + fy;
1265b5a892a1SMatthew G. Knepley           PetscInt ornt[4] = {0, 0, -1, -1};
12663dfda0b1SToby Isaac           PetscInt cone[4];
12673dfda0b1SToby Isaac 
12683dfda0b1SToby Isaac           if (dim == 3) {
12693dfda0b1SToby Isaac             /* markers */
12703dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
12713dfda0b1SToby Isaac               if (fx == numXVertices - 1) {
12729566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerRight));
12739566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerRight));
12749371c9d4SSatish Balay               } else if (fx == 0) {
12759566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerLeft));
12769566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerLeft));
12773dfda0b1SToby Isaac               }
12783dfda0b1SToby Isaac             }
12793dfda0b1SToby Isaac           }
12809371c9d4SSatish Balay           cone[0] = edgeB;
12819371c9d4SSatish Balay           cone[1] = edgeR;
12829371c9d4SSatish Balay           cone[2] = edgeT;
12839371c9d4SSatish Balay           cone[3] = edgeL;
12849566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, face, cone));
12859566063dSJacob Faibussowitsch           PetscCall(DMPlexSetConeOrientation(dm, face, ornt));
12863dfda0b1SToby Isaac         }
12873dfda0b1SToby Isaac       }
12883dfda0b1SToby Isaac     }
12893dfda0b1SToby Isaac     /* Build y faces */
12903dfda0b1SToby Isaac     for (fz = 0; fz < numZEdges; ++fz) {
129142206facSLisandro Dalcin       for (fx = 0; fx < numXEdges; ++fx) {
12923dfda0b1SToby Isaac         for (fy = 0; fy < numYVertices; ++fy) {
12933dfda0b1SToby Isaac           PetscInt face    = firstYFace + (fz * numXEdges + fx) * numYVertices + fy;
12943dfda0b1SToby Isaac           PetscInt edgeL   = firstZEdge + (fy * numXVertices + fx) * numZEdges + fz;
12953dfda0b1SToby Isaac           PetscInt edgeR   = firstZEdge + (fy * numXVertices + ((fx + 1) % numXVertices)) * numZEdges + fz;
12963dfda0b1SToby Isaac           PetscInt edgeB   = firstXEdge + (fz * numYVertices + fy) * numXEdges + fx;
12973dfda0b1SToby Isaac           PetscInt edgeT   = firstXEdge + (((fz + 1) % numZVertices) * numYVertices + fy) * numXEdges + fx;
1298b5a892a1SMatthew G. Knepley           PetscInt ornt[4] = {0, 0, -1, -1};
12993dfda0b1SToby Isaac           PetscInt cone[4];
13003dfda0b1SToby Isaac 
13013dfda0b1SToby Isaac           if (dim == 3) {
13023dfda0b1SToby Isaac             /* markers */
13033dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
13043dfda0b1SToby Isaac               if (fy == numYVertices - 1) {
13059566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerBack));
13069566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerBack));
13079371c9d4SSatish Balay               } else if (fy == 0) {
13089566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerFront));
13099566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerFront));
13103dfda0b1SToby Isaac               }
13113dfda0b1SToby Isaac             }
13123dfda0b1SToby Isaac           }
13139371c9d4SSatish Balay           cone[0] = edgeB;
13149371c9d4SSatish Balay           cone[1] = edgeR;
13159371c9d4SSatish Balay           cone[2] = edgeT;
13169371c9d4SSatish Balay           cone[3] = edgeL;
13179566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, face, cone));
13189566063dSJacob Faibussowitsch           PetscCall(DMPlexSetConeOrientation(dm, face, ornt));
13193dfda0b1SToby Isaac         }
13203dfda0b1SToby Isaac       }
13213dfda0b1SToby Isaac     }
13223dfda0b1SToby Isaac     /* Build z faces */
13233dfda0b1SToby Isaac     for (fy = 0; fy < numYEdges; ++fy) {
13243dfda0b1SToby Isaac       for (fx = 0; fx < numXEdges; ++fx) {
13253dfda0b1SToby Isaac         for (fz = 0; fz < numZVertices; fz++) {
13263dfda0b1SToby Isaac           PetscInt face    = firstZFace + (fy * numXEdges + fx) * numZVertices + fz;
13273dfda0b1SToby Isaac           PetscInt edgeL   = firstYEdge + (fz * numXVertices + fx) * numYEdges + fy;
13283dfda0b1SToby Isaac           PetscInt edgeR   = firstYEdge + (fz * numXVertices + ((fx + 1) % numXVertices)) * numYEdges + fy;
13293dfda0b1SToby Isaac           PetscInt edgeB   = firstXEdge + (fz * numYVertices + fy) * numXEdges + fx;
13303dfda0b1SToby Isaac           PetscInt edgeT   = firstXEdge + (fz * numYVertices + ((fy + 1) % numYVertices)) * numXEdges + fx;
1331b5a892a1SMatthew G. Knepley           PetscInt ornt[4] = {0, 0, -1, -1};
13323dfda0b1SToby Isaac           PetscInt cone[4];
13333dfda0b1SToby Isaac 
13343dfda0b1SToby Isaac           if (dim == 2) {
13359371c9d4SSatish Balay             if (bdX == DM_BOUNDARY_TWIST && fx == numXEdges - 1) {
13369371c9d4SSatish Balay               edgeR += numYEdges - 1 - 2 * fy;
13379371c9d4SSatish Balay               ornt[1] = -1;
13389371c9d4SSatish Balay             }
13399371c9d4SSatish Balay             if (bdY == DM_BOUNDARY_TWIST && fy == numYEdges - 1) {
13409371c9d4SSatish Balay               edgeT += numXEdges - 1 - 2 * fx;
13419371c9d4SSatish Balay               ornt[2] = 0;
13429371c9d4SSatish Balay             }
13439566063dSJacob Faibussowitsch             if (bdX != DM_BOUNDARY_NONE && fx == numXEdges - 1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, face, 2));
13449566063dSJacob Faibussowitsch             if (bdY != DM_BOUNDARY_NONE && fy == numYEdges - 1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, face, 2));
1345d1c88043SMatthew G. Knepley           } else {
13463dfda0b1SToby Isaac             /* markers */
13473dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
13483dfda0b1SToby Isaac               if (fz == numZVertices - 1) {
13499566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerTop));
13509566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerTop));
13519371c9d4SSatish Balay               } else if (fz == 0) {
13529566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerBottom));
13539566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", face, markerBottom));
13543dfda0b1SToby Isaac               }
13553dfda0b1SToby Isaac             }
13563dfda0b1SToby Isaac           }
13579371c9d4SSatish Balay           cone[0] = edgeB;
13589371c9d4SSatish Balay           cone[1] = edgeR;
13599371c9d4SSatish Balay           cone[2] = edgeT;
13609371c9d4SSatish Balay           cone[3] = edgeL;
13619566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, face, cone));
13629566063dSJacob Faibussowitsch           PetscCall(DMPlexSetConeOrientation(dm, face, ornt));
13633dfda0b1SToby Isaac         }
13643dfda0b1SToby Isaac       }
13653dfda0b1SToby Isaac     }
13663dfda0b1SToby Isaac     /* Build Z edges*/
13673dfda0b1SToby Isaac     for (vy = 0; vy < numYVertices; vy++) {
13683dfda0b1SToby Isaac       for (vx = 0; vx < numXVertices; vx++) {
13693dfda0b1SToby Isaac         for (ez = 0; ez < numZEdges; ez++) {
13703dfda0b1SToby Isaac           const PetscInt edge    = firstZEdge + (vy * numXVertices + vx) * numZEdges + ez;
13713dfda0b1SToby Isaac           const PetscInt vertexB = firstVertex + (ez * numYVertices + vy) * numXVertices + vx;
13723dfda0b1SToby Isaac           const PetscInt vertexT = firstVertex + (((ez + 1) % numZVertices) * numYVertices + vy) * numXVertices + vx;
13733dfda0b1SToby Isaac           PetscInt       cone[2];
13743dfda0b1SToby Isaac 
13759371c9d4SSatish Balay           cone[0] = vertexB;
13769371c9d4SSatish Balay           cone[1] = vertexT;
1377c2df9bbfSMatthew G. Knepley           PetscCall(DMPlexSetCone(dm, edge, cone));
13783dfda0b1SToby Isaac           if (dim == 3) {
13793dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
13803dfda0b1SToby Isaac               if (vx == numXVertices - 1) {
13819566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight));
1382c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight));
1383c2df9bbfSMatthew G. Knepley                 if (ez == numZEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight));
1384c2df9bbfSMatthew G. Knepley               } else if (vx == 0) {
13859566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft));
1386c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft));
1387c2df9bbfSMatthew G. Knepley                 if (ez == numZEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft));
13883dfda0b1SToby Isaac               }
13893dfda0b1SToby Isaac             }
13903dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
13913dfda0b1SToby Isaac               if (vy == numYVertices - 1) {
13929566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerBack));
1393c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBack));
1394c2df9bbfSMatthew G. Knepley                 if (ez == numZEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBack));
1395c2df9bbfSMatthew G. Knepley               } else if (vy == 0) {
13969566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerFront));
1397c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerFront));
1398c2df9bbfSMatthew G. Knepley                 if (ez == numZEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerFront));
13993dfda0b1SToby Isaac               }
14003dfda0b1SToby Isaac             }
14013dfda0b1SToby Isaac           }
14023dfda0b1SToby Isaac         }
14033dfda0b1SToby Isaac       }
14043dfda0b1SToby Isaac     }
14053dfda0b1SToby Isaac     /* Build Y edges*/
14063dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; vz++) {
14073dfda0b1SToby Isaac       for (vx = 0; vx < numXVertices; vx++) {
14083dfda0b1SToby Isaac         for (ey = 0; ey < numYEdges; ey++) {
14093dfda0b1SToby Isaac           const PetscInt nextv   = (dim == 2 && bdY == DM_BOUNDARY_TWIST && ey == numYEdges - 1) ? (numXVertices - vx - 1) : (vz * numYVertices + ((ey + 1) % numYVertices)) * numXVertices + vx;
14103dfda0b1SToby Isaac           const PetscInt edge    = firstYEdge + (vz * numXVertices + vx) * numYEdges + ey;
14113dfda0b1SToby Isaac           const PetscInt vertexF = firstVertex + (vz * numYVertices + ey) * numXVertices + vx;
14123dfda0b1SToby Isaac           const PetscInt vertexK = firstVertex + nextv;
14133dfda0b1SToby Isaac           PetscInt       cone[2];
14143dfda0b1SToby Isaac 
14159371c9d4SSatish Balay           cone[0] = vertexF;
14169371c9d4SSatish Balay           cone[1] = vertexK;
14179566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, edge, cone));
14183dfda0b1SToby Isaac           if (dim == 2) {
14193dfda0b1SToby Isaac             if ((bdX != DM_BOUNDARY_PERIODIC) && (bdX != DM_BOUNDARY_TWIST)) {
14203dfda0b1SToby Isaac               if (vx == numXVertices - 1) {
14219566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerRight));
14229566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight));
14239566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight));
1424c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight));
1425d8211ee3SMatthew G. Knepley               } else if (vx == 0) {
14269566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerLeft));
14279566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft));
14289566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft));
1429c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft));
14303dfda0b1SToby Isaac               }
1431d8211ee3SMatthew G. Knepley             } else {
14324c67ea77SStefano Zampini               if (vx == 0 && cutLabel) {
14339566063dSJacob Faibussowitsch                 PetscCall(DMLabelSetValue(cutLabel, edge, 1));
14349566063dSJacob Faibussowitsch                 PetscCall(DMLabelSetValue(cutLabel, cone[0], 1));
1435c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMLabelSetValue(cutLabel, cone[1], 1));
14363dfda0b1SToby Isaac               }
1437d8211ee3SMatthew G. Knepley             }
1438d8211ee3SMatthew G. Knepley           } else {
14393dfda0b1SToby Isaac             if (bdX != DM_BOUNDARY_PERIODIC) {
14403dfda0b1SToby Isaac               if (vx == numXVertices - 1) {
14419566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight));
1442c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight));
1443c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight));
1444d8211ee3SMatthew G. Knepley               } else if (vx == 0) {
14459566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft));
1446c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft));
1447c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft));
14483dfda0b1SToby Isaac               }
14493dfda0b1SToby Isaac             }
14503dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
14513dfda0b1SToby Isaac               if (vz == numZVertices - 1) {
14529566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop));
1453c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop));
1454c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop));
1455d8211ee3SMatthew G. Knepley               } else if (vz == 0) {
14569566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom));
1457c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom));
1458c2df9bbfSMatthew G. Knepley                 if (ey == numYEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom));
14593dfda0b1SToby Isaac               }
14603dfda0b1SToby Isaac             }
14613dfda0b1SToby Isaac           }
14623dfda0b1SToby Isaac         }
14633dfda0b1SToby Isaac       }
14643dfda0b1SToby Isaac     }
14653dfda0b1SToby Isaac     /* Build X edges*/
14663dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; vz++) {
14673dfda0b1SToby Isaac       for (vy = 0; vy < numYVertices; vy++) {
14683dfda0b1SToby Isaac         for (ex = 0; ex < numXEdges; ex++) {
14693dfda0b1SToby Isaac           const PetscInt nextv   = (dim == 2 && bdX == DM_BOUNDARY_TWIST && ex == numXEdges - 1) ? (numYVertices - vy - 1) * numXVertices : (vz * numYVertices + vy) * numXVertices + (ex + 1) % numXVertices;
14703dfda0b1SToby Isaac           const PetscInt edge    = firstXEdge + (vz * numYVertices + vy) * numXEdges + ex;
14713dfda0b1SToby Isaac           const PetscInt vertexL = firstVertex + (vz * numYVertices + vy) * numXVertices + ex;
14723dfda0b1SToby Isaac           const PetscInt vertexR = firstVertex + nextv;
14733dfda0b1SToby Isaac           PetscInt       cone[2];
14743dfda0b1SToby Isaac 
14759371c9d4SSatish Balay           cone[0] = vertexL;
14769371c9d4SSatish Balay           cone[1] = vertexR;
14779566063dSJacob Faibussowitsch           PetscCall(DMPlexSetCone(dm, edge, cone));
14783dfda0b1SToby Isaac           if (dim == 2) {
14793dfda0b1SToby Isaac             if ((bdY != DM_BOUNDARY_PERIODIC) && (bdY != DM_BOUNDARY_TWIST)) {
14803dfda0b1SToby Isaac               if (vy == numYVertices - 1) {
14819566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerTop));
14829566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop));
14839566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop));
1484c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop));
1485d8211ee3SMatthew G. Knepley               } else if (vy == 0) {
14869566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerBottom));
14879566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom));
14889566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom));
1489c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom));
14903dfda0b1SToby Isaac               }
1491d8211ee3SMatthew G. Knepley             } else {
14924c67ea77SStefano Zampini               if (vy == 0 && cutLabel) {
14939566063dSJacob Faibussowitsch                 PetscCall(DMLabelSetValue(cutLabel, edge, 1));
14949566063dSJacob Faibussowitsch                 PetscCall(DMLabelSetValue(cutLabel, cone[0], 1));
1495c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMLabelSetValue(cutLabel, cone[1], 1));
14963dfda0b1SToby Isaac               }
1497d8211ee3SMatthew G. Knepley             }
1498d8211ee3SMatthew G. Knepley           } else {
14993dfda0b1SToby Isaac             if (bdY != DM_BOUNDARY_PERIODIC) {
15003dfda0b1SToby Isaac               if (vy == numYVertices - 1) {
15019566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerBack));
1502c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBack));
1503c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBack));
1504c2df9bbfSMatthew G. Knepley               } else if (vy == 0) {
15059566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerFront));
1506c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerFront));
1507c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerFront));
15083dfda0b1SToby Isaac               }
15093dfda0b1SToby Isaac             }
15103dfda0b1SToby Isaac             if (bdZ != DM_BOUNDARY_PERIODIC) {
15113dfda0b1SToby Isaac               if (vz == numZVertices - 1) {
15129566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop));
1513c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop));
1514c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop));
1515c2df9bbfSMatthew G. Knepley               } else if (vz == 0) {
15169566063dSJacob Faibussowitsch                 PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom));
1517c2df9bbfSMatthew G. Knepley                 PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom));
1518c2df9bbfSMatthew G. Knepley                 if (ex == numXEdges - 1) PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom));
15193dfda0b1SToby Isaac               }
15203dfda0b1SToby Isaac             }
15213dfda0b1SToby Isaac           }
15223dfda0b1SToby Isaac         }
15233dfda0b1SToby Isaac       }
15243dfda0b1SToby Isaac     }
15259566063dSJacob Faibussowitsch     PetscCall(DMPlexSymmetrize(dm));
15269566063dSJacob Faibussowitsch     PetscCall(DMPlexStratify(dm));
15273dfda0b1SToby Isaac     /* Build coordinates */
15289566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateSection(dm, &coordSection));
15299566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetNumFields(coordSection, 1));
15309566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim));
15319566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex + numVertices));
15323dfda0b1SToby Isaac     for (v = firstVertex; v < firstVertex + numVertices; ++v) {
15339566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetDof(coordSection, v, dim));
15349566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim));
15353dfda0b1SToby Isaac     }
15369566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetUp(coordSection));
15379566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
15389566063dSJacob Faibussowitsch     PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
15399566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
15409566063dSJacob Faibussowitsch     PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
15419566063dSJacob Faibussowitsch     PetscCall(VecSetBlockSize(coordinates, dim));
15429566063dSJacob Faibussowitsch     PetscCall(VecSetType(coordinates, VECSTANDARD));
15439566063dSJacob Faibussowitsch     PetscCall(VecGetArray(coordinates, &coords));
15443dfda0b1SToby Isaac     for (vz = 0; vz < numZVertices; ++vz) {
15453dfda0b1SToby Isaac       for (vy = 0; vy < numYVertices; ++vy) {
15463dfda0b1SToby Isaac         for (vx = 0; vx < numXVertices; ++vx) {
15473dfda0b1SToby Isaac           coords[((vz * numYVertices + vy) * numXVertices + vx) * dim + 0] = lower[0] + ((upper[0] - lower[0]) / numXEdges) * vx;
15483dfda0b1SToby Isaac           coords[((vz * numYVertices + vy) * numXVertices + vx) * dim + 1] = lower[1] + ((upper[1] - lower[1]) / numYEdges) * vy;
1549ad540459SPierre Jolivet           if (dim == 3) coords[((vz * numYVertices + vy) * numXVertices + vx) * dim + 2] = lower[2] + ((upper[2] - lower[2]) / numZEdges) * vz;
15503dfda0b1SToby Isaac         }
15513dfda0b1SToby Isaac       }
15523dfda0b1SToby Isaac     }
15539566063dSJacob Faibussowitsch     PetscCall(VecRestoreArray(coordinates, &coords));
15549566063dSJacob Faibussowitsch     PetscCall(DMSetCoordinatesLocal(dm, coordinates));
15559566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&coordinates));
15563dfda0b1SToby Isaac   }
15573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
15583dfda0b1SToby Isaac }
15593dfda0b1SToby Isaac 
1560d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoxMesh_Tensor_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[])
1561d71ae5a4SJacob Faibussowitsch {
15629318fe57SMatthew G. Knepley   DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
15639318fe57SMatthew G. Knepley   PetscInt       fac[3] = {0, 0, 0}, d;
1564552f7358SJed Brown 
1565552f7358SJed Brown   PetscFunctionBegin;
15664f572ea9SToby Isaac   PetscAssertPointer(dm, 1);
15679318fe57SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, dim, 2);
15689566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
15699371c9d4SSatish Balay   for (d = 0; d < dim; ++d) {
15709371c9d4SSatish Balay     fac[d] = faces[d];
15719371c9d4SSatish Balay     bdt[d] = periodicity[d];
15729371c9d4SSatish Balay   }
15739566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateCubeMesh_Internal(dm, lower, upper, fac, bdt[0], bdt[1], bdt[2]));
15749371c9d4SSatish Balay   if (periodicity[0] == DM_BOUNDARY_PERIODIC || periodicity[0] == DM_BOUNDARY_TWIST || periodicity[1] == DM_BOUNDARY_PERIODIC || periodicity[1] == DM_BOUNDARY_TWIST || (dim > 2 && (periodicity[2] == DM_BOUNDARY_PERIODIC || periodicity[2] == DM_BOUNDARY_TWIST))) {
15756858538eSMatthew G. Knepley     PetscReal L[3]       = {-1., -1., 0.};
15766858538eSMatthew G. Knepley     PetscReal maxCell[3] = {-1., -1., 0.};
1577552f7358SJed Brown 
15789318fe57SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
15796858538eSMatthew G. Knepley       if (periodicity[d] != DM_BOUNDARY_NONE) {
15809318fe57SMatthew G. Knepley         L[d]       = upper[d] - lower[d];
15819318fe57SMatthew G. Knepley         maxCell[d] = 1.1 * (L[d] / PetscMax(1, faces[d]));
1582768d5fceSMatthew G. Knepley       }
15836858538eSMatthew G. Knepley     }
15844fb89dddSMatthew G. Knepley     PetscCall(DMSetPeriodicity(dm, maxCell, lower, L));
1585768d5fceSMatthew G. Knepley   }
15869566063dSJacob Faibussowitsch   PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE));
15873ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
15889318fe57SMatthew G. Knepley }
15899318fe57SMatthew G. Knepley 
15905dca41c3SJed Brown static PetscErrorCode DMPlexCreateBoxMesh_Internal(DM dm, DMPlexShape shape, PetscInt dim, PetscBool simplex, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate)
1591d71ae5a4SJacob Faibussowitsch {
15929318fe57SMatthew G. Knepley   PetscFunctionBegin;
159346139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
15945dca41c3SJed Brown   if (shape == DM_SHAPE_ZBOX) PetscCall(DMPlexCreateBoxMesh_Tensor_SFC_Internal(dm, dim, faces, lower, upper, periodicity, interpolate));
15956725e60dSJed Brown   else if (dim == 1) PetscCall(DMPlexCreateLineMesh_Internal(dm, faces[0], lower[0], upper[0], periodicity[0]));
15969566063dSJacob Faibussowitsch   else if (simplex) PetscCall(DMPlexCreateBoxMesh_Simplex_Internal(dm, dim, faces, lower, upper, periodicity, interpolate));
15979566063dSJacob Faibussowitsch   else PetscCall(DMPlexCreateBoxMesh_Tensor_Internal(dm, dim, faces, lower, upper, periodicity));
15989318fe57SMatthew G. Knepley   if (!interpolate && dim > 1 && !simplex) {
1599768d5fceSMatthew G. Knepley     DM udm;
1600768d5fceSMatthew G. Knepley 
16019566063dSJacob Faibussowitsch     PetscCall(DMPlexUninterpolate(dm, &udm));
16029566063dSJacob Faibussowitsch     PetscCall(DMPlexCopyCoordinates(dm, udm));
160369d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &udm));
1604768d5fceSMatthew G. Knepley   }
160546139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
16063ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1607c8c68bd8SToby Isaac }
1608c8c68bd8SToby Isaac 
16095d83a8b1SBarry Smith /*@
1610768d5fceSMatthew G. Knepley   DMPlexCreateBoxMesh - Creates a mesh on the tensor product of unit intervals (box) using simplices or tensor cells (hexahedra).
1611768d5fceSMatthew G. Knepley 
1612d083f849SBarry Smith   Collective
1613768d5fceSMatthew G. Knepley 
1614768d5fceSMatthew G. Knepley   Input Parameters:
1615a1cb98faSBarry Smith + comm               - The communicator for the `DM` object
1616768d5fceSMatthew G. Knepley . dim                - The spatial dimension
1617a1cb98faSBarry Smith . simplex            - `PETSC_TRUE` for simplices, `PETSC_FALSE` for tensor cells
161820f4b53cSBarry Smith . faces              - Number of faces per dimension, or `NULL` for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D
161920f4b53cSBarry Smith . lower              - The lower left corner, or `NULL` for (0, 0, 0)
162020f4b53cSBarry Smith . upper              - The upper right corner, or `NULL` for (1, 1, 1)
162120f4b53cSBarry Smith . periodicity        - The boundary type for the X,Y,Z direction, or `NULL` for `DM_BOUNDARY_NONE`
162242108689Sksagiyam . interpolate        - Flag to create intermediate mesh pieces (edges, faces)
162342108689Sksagiyam . localizationHeight - Flag to localize edges and faces in addition to cells; only significant for periodic meshes
162442108689Sksagiyam - sparseLocalize     - Flag to localize coordinates only for cells near the periodic boundary; only significant for periodic meshes
1625768d5fceSMatthew G. Knepley 
1626768d5fceSMatthew G. Knepley   Output Parameter:
1627a1cb98faSBarry Smith . dm - The `DM` object
1628768d5fceSMatthew G. Knepley 
1629768d5fceSMatthew G. Knepley   Level: beginner
1630768d5fceSMatthew G. Knepley 
1631a1cb98faSBarry Smith   Note:
1632a1cb98faSBarry Smith   To customize this mesh using options, use
1633a1cb98faSBarry Smith .vb
1634a1cb98faSBarry Smith   DMCreate(comm, &dm);
1635a1cb98faSBarry Smith   DMSetType(dm, DMPLEX);
1636a1cb98faSBarry Smith   DMSetFromOptions(dm);
1637a1cb98faSBarry Smith .ve
1638a1cb98faSBarry Smith   and use the options in `DMSetFromOptions()`.
1639a1cb98faSBarry Smith 
1640a4e35b19SJacob Faibussowitsch   Here is the numbering returned for 2 faces in each direction for tensor cells\:
1641a1cb98faSBarry Smith .vb
1642a1cb98faSBarry Smith  10---17---11---18----12
1643a1cb98faSBarry Smith   |         |         |
1644a1cb98faSBarry Smith   |         |         |
1645a1cb98faSBarry Smith  20    2   22    3    24
1646a1cb98faSBarry Smith   |         |         |
1647a1cb98faSBarry Smith   |         |         |
1648a1cb98faSBarry Smith   7---15----8---16----9
1649a1cb98faSBarry Smith   |         |         |
1650a1cb98faSBarry Smith   |         |         |
1651a1cb98faSBarry Smith  19    0   21    1   23
1652a1cb98faSBarry Smith   |         |         |
1653a1cb98faSBarry Smith   |         |         |
1654a1cb98faSBarry Smith   4---13----5---14----6
1655a1cb98faSBarry Smith .ve
1656a1cb98faSBarry Smith   and for simplicial cells
1657a1cb98faSBarry Smith .vb
1658a1cb98faSBarry Smith  14----8---15----9----16
1659a1cb98faSBarry Smith   |\     5  |\      7 |
1660a1cb98faSBarry Smith   | \       | \       |
1661a1cb98faSBarry Smith  13   2    14    3    15
1662a1cb98faSBarry Smith   | 4   \   | 6   \   |
1663a1cb98faSBarry Smith   |       \ |       \ |
1664a1cb98faSBarry Smith  11----6---12----7----13
1665a1cb98faSBarry Smith   |\        |\        |
1666a1cb98faSBarry Smith   | \    1  | \     3 |
1667a1cb98faSBarry Smith  10   0    11    1    12
1668a1cb98faSBarry Smith   | 0   \   | 2   \   |
1669a1cb98faSBarry Smith   |       \ |       \ |
1670a1cb98faSBarry Smith   8----4----9----5----10
1671a1cb98faSBarry Smith .ve
1672a1cb98faSBarry Smith 
16731cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMSetFromOptions()`, `DMPlexCreateFromFile()`, `DMPlexCreateHexCylinderMesh()`, `DMSetType()`, `DMCreate()`
1674768d5fceSMatthew G. Knepley @*/
167542108689Sksagiyam PetscErrorCode DMPlexCreateBoxMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate, PetscInt localizationHeight, PetscBool sparseLocalize, DM *dm)
1676d71ae5a4SJacob Faibussowitsch {
16779318fe57SMatthew G. Knepley   PetscInt       fac[3] = {1, 1, 1};
1678fdbf62faSLisandro Dalcin   PetscReal      low[3] = {0, 0, 0};
1679fdbf62faSLisandro Dalcin   PetscReal      upp[3] = {1, 1, 1};
1680fdbf62faSLisandro Dalcin   DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
1681552f7358SJed Brown 
1682768d5fceSMatthew G. Knepley   PetscFunctionBegin;
16839566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
16849566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
16855dca41c3SJed Brown   PetscCall(DMPlexCreateBoxMesh_Internal(*dm, DM_SHAPE_BOX, dim, simplex, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, periodicity ? periodicity : bdt, interpolate));
168642108689Sksagiyam   if (periodicity) {
168742108689Sksagiyam     DM cdm;
168842108689Sksagiyam 
168942108689Sksagiyam     PetscCall(DMGetCoordinateDM(*dm, &cdm));
169042108689Sksagiyam     PetscCall(DMPlexSetMaxProjectionHeight(cdm, localizationHeight));
169142108689Sksagiyam     PetscCall(DMSetSparseLocalize(*dm, sparseLocalize));
169242108689Sksagiyam     PetscCall(DMLocalizeCoordinates(*dm));
169342108689Sksagiyam   }
16943ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
16959318fe57SMatthew G. Knepley }
1696fdbf62faSLisandro Dalcin 
1697d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateWedgeBoxMesh_Internal(DM dm, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[])
1698d71ae5a4SJacob Faibussowitsch {
16999318fe57SMatthew G. Knepley   DM       bdm, vol;
17009318fe57SMatthew G. Knepley   PetscInt i;
17019318fe57SMatthew G. Knepley 
17029318fe57SMatthew G. Knepley   PetscFunctionBegin;
17031fcf445aSMatthew G. Knepley   // TODO Now we can support periodicity
170408401ef6SPierre Jolivet   for (i = 0; i < 3; ++i) PetscCheck(periodicity[i] == DM_BOUNDARY_NONE, PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Periodicity not yet supported");
17059566063dSJacob Faibussowitsch   PetscCall(DMCreate(PetscObjectComm((PetscObject)dm), &bdm));
17069566063dSJacob Faibussowitsch   PetscCall(DMSetType(bdm, DMPLEX));
17079566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(bdm, 2));
170846139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, bdm, 0, 0, 0));
17099566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateBoxMesh_Simplex_Internal(bdm, 2, faces, lower, upper, periodicity, PETSC_TRUE));
17101fcf445aSMatthew G. Knepley   PetscCall(DMPlexExtrude(bdm, faces[2], upper[2] - lower[2], PETSC_TRUE, PETSC_FALSE, PETSC_FALSE, NULL, NULL, &vol));
171146139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, bdm, 0, 0, 0));
17129566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&bdm));
171369d8a87bSksagiyam   PetscCall(DMPlexReplace_Internal(dm, &vol));
17149318fe57SMatthew G. Knepley   if (lower[2] != 0.0) {
17159318fe57SMatthew G. Knepley     Vec          v;
17169318fe57SMatthew G. Knepley     PetscScalar *x;
17179318fe57SMatthew G. Knepley     PetscInt     cDim, n;
17189318fe57SMatthew G. Knepley 
17199566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinatesLocal(dm, &v));
17209566063dSJacob Faibussowitsch     PetscCall(VecGetBlockSize(v, &cDim));
17219566063dSJacob Faibussowitsch     PetscCall(VecGetLocalSize(v, &n));
17229566063dSJacob Faibussowitsch     PetscCall(VecGetArray(v, &x));
17239318fe57SMatthew G. Knepley     x += cDim;
17249318fe57SMatthew G. Knepley     for (i = 0; i < n; i += cDim) x[i] += lower[2];
17259566063dSJacob Faibussowitsch     PetscCall(VecRestoreArray(v, &x));
17269566063dSJacob Faibussowitsch     PetscCall(DMSetCoordinatesLocal(dm, v));
17279318fe57SMatthew G. Knepley   }
17283ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1729552f7358SJed Brown }
1730552f7358SJed Brown 
173100dabe28SStefano Zampini /*@
173239f4f5dbSPierre Jolivet   DMPlexCreateWedgeBoxMesh - Creates a 3-D mesh tessellating the (x,y) plane and extruding in the third direction using wedge cells.
173300dabe28SStefano Zampini 
1734d083f849SBarry Smith   Collective
173500dabe28SStefano Zampini 
173600dabe28SStefano Zampini   Input Parameters:
1737a1cb98faSBarry Smith + comm        - The communicator for the `DM` object
173820f4b53cSBarry Smith . faces       - Number of faces per dimension, or `NULL` for (1, 1, 1)
173920f4b53cSBarry Smith . lower       - The lower left corner, or `NULL` for (0, 0, 0)
174020f4b53cSBarry Smith . upper       - The upper right corner, or `NULL` for (1, 1, 1)
174120f4b53cSBarry Smith . periodicity - The boundary type for the X,Y,Z direction, or `NULL` for `DM_BOUNDARY_NONE`
1742a1cb98faSBarry Smith . orderHeight - If `PETSC_TRUE`, orders the extruded cells in the height first. Otherwise, orders the cell on the layers first
174300dabe28SStefano Zampini - interpolate - Flag to create intermediate mesh pieces (edges, faces)
174400dabe28SStefano Zampini 
174500dabe28SStefano Zampini   Output Parameter:
1746a1cb98faSBarry Smith . dm - The `DM` object
174700dabe28SStefano Zampini 
174800dabe28SStefano Zampini   Level: beginner
174900dabe28SStefano Zampini 
17501cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateHexCylinderMesh()`, `DMPlexCreateWedgeCylinderMesh()`, `DMExtrude()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()`
175100dabe28SStefano Zampini @*/
1752d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateWedgeBoxMesh(MPI_Comm comm, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool orderHeight, PetscBool interpolate, DM *dm)
1753d71ae5a4SJacob Faibussowitsch {
17549318fe57SMatthew G. Knepley   PetscInt       fac[3] = {1, 1, 1};
175500dabe28SStefano Zampini   PetscReal      low[3] = {0, 0, 0};
175600dabe28SStefano Zampini   PetscReal      upp[3] = {1, 1, 1};
175700dabe28SStefano Zampini   DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
175800dabe28SStefano Zampini 
175900dabe28SStefano Zampini   PetscFunctionBegin;
17609566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
17619566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
17629566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateWedgeBoxMesh_Internal(*dm, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, periodicity ? periodicity : bdt));
1763d410b0cfSMatthew G. Knepley   if (!interpolate) {
1764d410b0cfSMatthew G. Knepley     DM udm;
176500dabe28SStefano Zampini 
17669566063dSJacob Faibussowitsch     PetscCall(DMPlexUninterpolate(*dm, &udm));
176769d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(*dm, &udm));
176800dabe28SStefano Zampini   }
17697ff04441SMatthew G. Knepley   if (periodicity) PetscCall(DMLocalizeCoordinates(*dm));
17703ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
177100dabe28SStefano Zampini }
177200dabe28SStefano Zampini 
1773cfb853baSMatthew G. Knepley /*
1774cfb853baSMatthew G. Knepley   DMPlexTensorPointLexicographic_Private - Returns all tuples of size 'len' with nonnegative integers that are all less than or equal to 'max' for that dimension.
1775cfb853baSMatthew G. Knepley 
1776cfb853baSMatthew G. Knepley   Input Parameters:
1777cfb853baSMatthew G. Knepley + len - The length of the tuple
1778cfb853baSMatthew G. Knepley . max - The maximum for each dimension, so values are in [0, max)
1779cfb853baSMatthew G. Knepley - tup - A tuple of length len+1: tup[len] > 0 indicates a stopping condition
1780cfb853baSMatthew G. Knepley 
1781cfb853baSMatthew G. Knepley   Output Parameter:
178220f4b53cSBarry Smith . tup - A tuple of `len` integers whose entries are at most `max`
1783cfb853baSMatthew G. Knepley 
1784cfb853baSMatthew G. Knepley   Level: developer
1785cfb853baSMatthew G. Knepley 
178620f4b53cSBarry Smith   Note:
178720f4b53cSBarry Smith   Ordering is lexicographic with lowest index as least significant in ordering.
178820f4b53cSBarry Smith   e.g. for len == 2 and max == 2, this will return, in order, {0,0}, {1,0}, {2,0}, {0,1}, {1,1}, {2,1}, {0,2}, {1,2}, {2,2}.
178920f4b53cSBarry Smith 
1790cfb853baSMatthew G. Knepley .seealso: PetscDualSpaceTensorPointLexicographic_Internal(), PetscDualSpaceLatticePointLexicographic_Internal()
1791cfb853baSMatthew G. Knepley */
1792cfb853baSMatthew G. Knepley static PetscErrorCode DMPlexTensorPointLexicographic_Private(PetscInt len, const PetscInt max[], PetscInt tup[])
1793cfb853baSMatthew G. Knepley {
1794cfb853baSMatthew G. Knepley   PetscInt i;
1795cfb853baSMatthew G. Knepley 
1796cfb853baSMatthew G. Knepley   PetscFunctionBegin;
1797cfb853baSMatthew G. Knepley   for (i = 0; i < len; ++i) {
1798cfb853baSMatthew G. Knepley     if (tup[i] < max[i] - 1) {
1799cfb853baSMatthew G. Knepley       break;
1800cfb853baSMatthew G. Knepley     } else {
1801cfb853baSMatthew G. Knepley       tup[i] = 0;
1802cfb853baSMatthew G. Knepley     }
1803cfb853baSMatthew G. Knepley   }
1804cfb853baSMatthew G. Knepley   if (i == len) tup[i - 1] = max[i - 1];
1805cfb853baSMatthew G. Knepley   else ++tup[i];
18063ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1807cfb853baSMatthew G. Knepley }
1808cfb853baSMatthew G. Knepley 
1809cfb853baSMatthew G. Knepley static PetscInt TupleToIndex_Private(PetscInt len, const PetscInt max[], const PetscInt tup[])
1810cfb853baSMatthew G. Knepley {
18118d2ec52aSSatish Balay   PetscInt idx = tup[len - 1];
1812cfb853baSMatthew G. Knepley 
18138d2ec52aSSatish Balay   for (PetscInt i = len - 2; i >= 0; --i) {
1814cfb853baSMatthew G. Knepley     idx *= max[i];
1815cfb853baSMatthew G. Knepley     idx += tup[i];
1816cfb853baSMatthew G. Knepley   }
1817cfb853baSMatthew G. Knepley   return idx;
1818cfb853baSMatthew G. Knepley }
1819cfb853baSMatthew G. Knepley 
18208d2ec52aSSatish Balay static void IndexToTuple_Private(PetscInt len, const PetscInt max[], PetscInt idx, PetscInt tup[])
1821cfb853baSMatthew G. Knepley {
18228d2ec52aSSatish Balay   for (PetscInt i = 0; i < len; ++i) {
18238d2ec52aSSatish Balay     tup[i] = idx % max[i];
18248d2ec52aSSatish Balay     idx    = (idx - tup[i]) / max[i];
18258d2ec52aSSatish Balay   }
18268d2ec52aSSatish Balay }
18278d2ec52aSSatish Balay 
18288d2ec52aSSatish Balay static void TupleToRanks_Private(PetscInt len, const PetscInt max[], const PetscInt procs[], const PetscInt tup[], PetscInt ranks[])
18298d2ec52aSSatish Balay {
18308d2ec52aSSatish Balay   for (PetscInt i = 0; i < len; ++i) {
18318d2ec52aSSatish Balay     const PetscInt div = max[i] / procs[i];
18328d2ec52aSSatish Balay     const PetscInt rem = max[i] % procs[i];
18338d2ec52aSSatish Balay     const PetscInt idx = (tup[i] < 0 ? max[i] + tup[i] : tup[i]) % max[i];
18348d2ec52aSSatish Balay 
18358d2ec52aSSatish Balay     if (idx < rem * (div + 1)) ranks[i] = idx / (div + 1);
18368d2ec52aSSatish Balay     else ranks[i] = rem + (idx - rem * (div + 1)) / div;
18378d2ec52aSSatish Balay   }
18388d2ec52aSSatish Balay }
18398d2ec52aSSatish Balay 
18408d2ec52aSSatish Balay static void RanksToSizes_Private(PetscInt len, const PetscInt max[], const PetscInt procs[], const PetscInt ranks[], PetscInt sizes[])
18418d2ec52aSSatish Balay {
18428d2ec52aSSatish Balay   for (PetscInt i = 0; i < len; ++i) {
18438d2ec52aSSatish Balay     const PetscInt div = max[i] / procs[i];
18448d2ec52aSSatish Balay     const PetscInt rem = max[i] % procs[i];
18458d2ec52aSSatish Balay 
18468d2ec52aSSatish Balay     sizes[i] = ranks[i] < rem ? div + 1 : div;
18478d2ec52aSSatish Balay   }
18488d2ec52aSSatish Balay }
18498d2ec52aSSatish Balay 
18508d2ec52aSSatish Balay /*
18518d2ec52aSSatish Balay   In serial, the mesh is completely periodic. In parallel, we will include a layer of ghost vertices around the patch, so our edges will not wrap around in parallel. This will instead be handled by the SF.
18528d2ec52aSSatish Balay 
18538d2ec52aSSatish Balay   The cone for all edges will always be complete. Even in the presence of boundaries, we will keep all support sizes constant. When an edge would not exist in the support, we will create one to wrap back periodically. This allows for uniform stencils, and that edge will not be used for computation.
18548d2ec52aSSatish Balay 
18558d2ec52aSSatish Balay   All point which do not attain the vertex lower or upper bound in any dimension are owned, the rest are leaves owned by another process and present in the SF.
1856dfe9cfe5SMatthew Knepley 
1857dfe9cfe5SMatthew Knepley   Parallel Layout:
1858dfe9cfe5SMatthew Knepley 
1859dfe9cfe5SMatthew Knepley   We create a cubic process grid of dimension P^{1/d} on each side. The IndexToTuple_Private() function maps the global rank to the local rank in each dimension. We divide edges using the PETSc distribution rule in each dimension, and then add overlap. TupleToRanks_Private() returns the local rank in ech dimension for a tuple. RanksToSizes_Private() gives the size in each dimension for the domain with those local ranks.
18608d2ec52aSSatish Balay */
18618d2ec52aSSatish Balay static PetscErrorCode DMPlexCreateHypercubicMesh_Internal(DM dm, PetscInt dim, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[], PetscInt overlap, const DMBoundaryType bd[])
18628d2ec52aSSatish Balay {
18638d2ec52aSSatish Balay   const PetscInt debug = ((DM_Plex *)dm->data)->printAdj;
18648d2ec52aSSatish Balay   PetscSF        sf;
1865cfb853baSMatthew G. Knepley   Vec            coordinates;
1866cfb853baSMatthew G. Knepley   PetscSection   coordSection;
1867cfb853baSMatthew G. Knepley   DMLabel        cutLabel    = NULL;
1868cfb853baSMatthew G. Knepley   PetscBool      cutMarker   = PETSC_FALSE;
1869cfb853baSMatthew G. Knepley   PetscBool      periodic    = PETSC_FALSE;
18708d2ec52aSSatish Balay   PetscInt       numCells    = 1;
18718d2ec52aSSatish Balay   PetscInt       numVertices = 1;
18728d2ec52aSSatish Balay   PetscSFNode   *remotes;
1873cfb853baSMatthew G. Knepley   PetscScalar   *coords;
18748d2ec52aSSatish Balay   PetscInt      *procs;     // The number of processes along each dimension
18758d2ec52aSSatish Balay   PetscInt      *lrank;     // Rank in each dimension, lrank[d] \in [0, procs[d])
18768d2ec52aSSatish Balay   PetscInt      *ledges;    // The number of edges along each dimension for this process
18778d2ec52aSSatish Balay   PetscInt      *vstart;    // The first vertex along each dimension on this processes
18788d2ec52aSSatish Balay   PetscInt      *vertices;  // The number of vertices along each dimension on this process
18798d2ec52aSSatish Balay   PetscInt      *rvert;     // The global (not local) vertex number along each dimension
18808d2ec52aSSatish Balay   PetscInt      *rrank;     // The rank along each dimension for the process owning rvert[]
18818d2ec52aSSatish Balay   PetscInt      *rvertices; // The number of vertices along each dimension for the process rrank[]
18828d2ec52aSSatish Balay   PetscInt      *vert, *vtmp, *supp, cone[2], *leaves;
18838d2ec52aSSatish Balay   PetscInt       cell = 0, coordSize, Nl = 0, Nl2 = 0;
18848d2ec52aSSatish Balay   PetscMPIInt    rank, size;
18858d2ec52aSSatish Balay   MPI_Comm       comm;
1886cfb853baSMatthew G. Knepley 
1887cfb853baSMatthew G. Knepley   PetscFunctionBegin;
18888d2ec52aSSatish Balay   PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
18898d2ec52aSSatish Balay   PetscCallMPI(MPI_Comm_rank(comm, &rank));
18908d2ec52aSSatish Balay   PetscCallMPI(MPI_Comm_size(comm, &size));
1891cfb853baSMatthew G. Knepley   PetscCall(DMSetDimension(dm, dim));
18928d2ec52aSSatish Balay   PetscCall(DMPlexDistributeSetDefault(dm, PETSC_FALSE));
18938d2ec52aSSatish Balay   PetscCall(PetscCalloc4(dim, &procs, dim, &lrank, dim, &rrank, 2 * dim, &supp));
18948d2ec52aSSatish Balay   PetscCall(PetscCalloc7(dim, &ledges, dim, &vertices, dim, &rvertices, dim, &vert, dim, &rvert, dim, &vstart, dim, &vtmp));
1895cfb853baSMatthew G. Knepley   PetscCall(DMCreateLabel(dm, "marker"));
1896cfb853baSMatthew G. Knepley   PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options, ((PetscObject)dm)->prefix, "-dm_plex_periodic_cut", &cutMarker, NULL));
18978d2ec52aSSatish Balay   for (PetscInt d = 0; d < dim; ++d) periodic = (periodic || bd[d] == DM_BOUNDARY_PERIODIC) ? PETSC_TRUE : PETSC_FALSE;
1898cfb853baSMatthew G. Knepley   if (periodic && cutMarker) {
1899cfb853baSMatthew G. Knepley     PetscCall(DMCreateLabel(dm, "periodic_cut"));
1900cfb853baSMatthew G. Knepley     PetscCall(DMGetLabel(dm, "periodic_cut", &cutLabel));
1901cfb853baSMatthew G. Knepley   }
19028d2ec52aSSatish Balay   for (PetscInt d = 0; d < dim; ++d) PetscCheck(bd[d] == DM_BOUNDARY_PERIODIC, comm, PETSC_ERR_SUP, "Hypercubic mesh must be periodic now");
19038d2ec52aSSatish Balay   overlap = overlap == PETSC_DETERMINE ? 1 : overlap;
19048d2ec52aSSatish Balay   PetscCheck(overlap >= 1, comm, PETSC_ERR_SUP, "Overlap %" PetscInt_FMT " must be greater than 0", overlap);
19058d2ec52aSSatish Balay   if (size > 1) {
19068d2ec52aSSatish Balay     PetscInt Npr = 1;
19078d2ec52aSSatish Balay 
19088d2ec52aSSatish Balay     // Make process grid
19098d2ec52aSSatish Balay     if (debug) PetscCall(PetscPrintf(comm, "Process grid:"));
19108d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
19118d2ec52aSSatish Balay       procs[d] = PetscRintReal(PetscPowReal(size, 1. / dim));
19128d2ec52aSSatish Balay       Npr *= procs[d];
19138d2ec52aSSatish Balay       if (debug) PetscCall(PetscPrintf(comm, " %" PetscInt_FMT, procs[d]));
19148d2ec52aSSatish Balay     }
19158d2ec52aSSatish Balay     if (debug) PetscCall(PetscPrintf(comm, "\n"));
19168d2ec52aSSatish Balay     PetscCheck(Npr == size, comm, PETSC_ERR_PLIB, "Process grid size %" PetscInt_FMT " != %d comm size", Npr, size);
19178d2ec52aSSatish Balay     IndexToTuple_Private(dim, procs, rank, lrank);
19188d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
19198d2ec52aSSatish Balay       ledges[d] = edges[d] / procs[d] + (edges[d] % procs[d] > lrank[d] ? 1 : 0);
19208d2ec52aSSatish Balay       vstart[d] = 0;
19218d2ec52aSSatish Balay       for (PetscInt r = 0; r < lrank[d]; ++r) vstart[d] += edges[d] / procs[d] + (edges[d] % procs[d] > r ? 1 : 0);
19228d2ec52aSSatish Balay       vstart[d] -= overlap; // For halo
19238d2ec52aSSatish Balay     }
19248d2ec52aSSatish Balay   } else {
19258d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
19268d2ec52aSSatish Balay       procs[d]  = 1;
19278d2ec52aSSatish Balay       ledges[d] = edges[d];
19288d2ec52aSSatish Balay     }
19298d2ec52aSSatish Balay   }
19308d2ec52aSSatish Balay   // Calculate local patch size
19318d2ec52aSSatish Balay   for (PetscInt d = 0; d < dim; ++d) {
19328d2ec52aSSatish Balay     vertices[d] = ledges[d] + (procs[d] > 1 ? 2 * overlap : 0);
1933cfb853baSMatthew G. Knepley     numVertices *= vertices[d];
1934cfb853baSMatthew G. Knepley   }
1935cfb853baSMatthew G. Knepley   numCells = numVertices * dim;
1936cfb853baSMatthew G. Knepley   PetscCall(DMPlexSetChart(dm, 0, numCells + numVertices));
19378d2ec52aSSatish Balay   for (PetscInt c = 0; c < numCells; ++c) PetscCall(DMPlexSetConeSize(dm, c, 2));
19388d2ec52aSSatish Balay   for (PetscInt v = numCells; v < numCells + numVertices; ++v) PetscCall(DMPlexSetSupportSize(dm, v, 2 * dim));
1939cfb853baSMatthew G. Knepley   PetscCall(DMSetUp(dm)); /* Allocate space for cones and supports */
1940cfb853baSMatthew G. Knepley   /* Build cell cones and vertex supports */
1941cfb853baSMatthew G. Knepley   PetscCall(DMCreateLabel(dm, "celltype"));
19428d2ec52aSSatish Balay   if (debug) PetscCall(PetscSynchronizedPrintf(comm, "Topology for rank %d:\n", rank));
1943cfb853baSMatthew G. Knepley   while (vert[dim - 1] < vertices[dim - 1]) {
1944cfb853baSMatthew G. Knepley     const PetscInt vertex = TupleToIndex_Private(dim, vertices, vert) + numCells;
1945cfb853baSMatthew G. Knepley     PetscInt       s      = 0;
19468d2ec52aSSatish Balay     PetscBool      leaf   = PETSC_FALSE;
1947cfb853baSMatthew G. Knepley 
19488d2ec52aSSatish Balay     if (debug) {
19498d2ec52aSSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "Vertex %" PetscInt_FMT ":", vertex));
19508d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) PetscCall(PetscSynchronizedPrintf(comm, " %" PetscInt_FMT, vert[d]));
19518d2ec52aSSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "\n"));
19528d2ec52aSSatish Balay     }
1953cfb853baSMatthew G. Knepley     PetscCall(DMPlexSetCellType(dm, vertex, DM_POLYTOPE_POINT));
19548d2ec52aSSatish Balay     // Define edge cones
19558d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
19568d2ec52aSSatish Balay       for (PetscInt e = 0; e < dim; ++e) vtmp[e] = vert[e];
1957cfb853baSMatthew G. Knepley       vtmp[d] = (vert[d] + 1) % vertices[d];
1958cfb853baSMatthew G. Knepley       cone[0] = vertex;
1959cfb853baSMatthew G. Knepley       cone[1] = TupleToIndex_Private(dim, vertices, vtmp) + numCells;
19608d2ec52aSSatish Balay       if (debug) {
19618d2ec52aSSatish Balay         PetscCall(PetscSynchronizedPrintf(comm, "  Vertex %" PetscInt_FMT ":", cone[1]));
19628d2ec52aSSatish Balay         for (PetscInt e = 0; e < dim; ++e) PetscCall(PetscSynchronizedPrintf(comm, " %" PetscInt_FMT, vtmp[e]));
19638d2ec52aSSatish Balay         PetscCall(PetscSynchronizedPrintf(comm, "\n"));
19648d2ec52aSSatish Balay       }
1965cfb853baSMatthew G. Knepley       PetscCall(DMPlexSetCone(dm, cell, cone));
1966cfb853baSMatthew G. Knepley       PetscCall(DMPlexSetCellType(dm, cell, DM_POLYTOPE_SEGMENT));
19678d2ec52aSSatish Balay       if (debug) PetscCall(PetscSynchronizedPrintf(comm, "  Edge %" PetscInt_FMT " (%" PetscInt_FMT " %" PetscInt_FMT ")\n", cell, cone[0], cone[1]));
1968cfb853baSMatthew G. Knepley       ++cell;
19698d2ec52aSSatish Balay       // Shared vertices are any in the first or last overlap layers
19708d2ec52aSSatish Balay       if (vert[d] < overlap || vert[d] >= vertices[d] - overlap) leaf = PETSC_TRUE;
1971cfb853baSMatthew G. Knepley     }
19728d2ec52aSSatish Balay     if (size > 1 && leaf) ++Nl;
19738d2ec52aSSatish Balay     // Define vertex supports
19748d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
19758d2ec52aSSatish Balay       for (PetscInt e = 0; e < dim; ++e) vtmp[e] = vert[e];
1976cfb853baSMatthew G. Knepley       vtmp[d]   = (vert[d] + vertices[d] - 1) % vertices[d];
1977cfb853baSMatthew G. Knepley       supp[s++] = TupleToIndex_Private(dim, vertices, vtmp) * dim + d;
1978cfb853baSMatthew G. Knepley       supp[s++] = (vertex - numCells) * dim + d;
1979cfb853baSMatthew G. Knepley       PetscCall(DMPlexSetSupport(dm, vertex, supp));
1980cfb853baSMatthew G. Knepley     }
1981cfb853baSMatthew G. Knepley     PetscCall(DMPlexTensorPointLexicographic_Private(dim, vertices, vert));
1982cfb853baSMatthew G. Knepley   }
19838d2ec52aSSatish Balay   if (debug) PetscCall(PetscSynchronizedFlush(comm, NULL));
1984cfb853baSMatthew G. Knepley   PetscCall(DMPlexStratify(dm));
19858d2ec52aSSatish Balay   // Allocate for SF
19868d2ec52aSSatish Balay   PetscCall(PetscMalloc1(Nl, &leaves));
19878d2ec52aSSatish Balay   PetscCall(PetscMalloc1(Nl, &remotes));
19888d2ec52aSSatish Balay   // Build coordinates
1989cfb853baSMatthew G. Knepley   PetscCall(DMGetCoordinateSection(dm, &coordSection));
1990cfb853baSMatthew G. Knepley   PetscCall(PetscSectionSetNumFields(coordSection, 1));
1991cfb853baSMatthew G. Knepley   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim));
1992cfb853baSMatthew G. Knepley   PetscCall(PetscSectionSetChart(coordSection, numCells, numCells + numVertices));
19938d2ec52aSSatish Balay   for (PetscInt v = numCells; v < numCells + numVertices; ++v) {
1994cfb853baSMatthew G. Knepley     PetscCall(PetscSectionSetDof(coordSection, v, dim));
1995cfb853baSMatthew G. Knepley     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim));
1996cfb853baSMatthew G. Knepley   }
1997cfb853baSMatthew G. Knepley   PetscCall(PetscSectionSetUp(coordSection));
1998cfb853baSMatthew G. Knepley   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
19998d2ec52aSSatish Balay   PetscCall(VecCreate(comm, &coordinates));
2000cfb853baSMatthew G. Knepley   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
2001cfb853baSMatthew G. Knepley   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
2002cfb853baSMatthew G. Knepley   PetscCall(VecSetBlockSize(coordinates, dim));
2003cfb853baSMatthew G. Knepley   PetscCall(VecSetType(coordinates, VECSTANDARD));
2004cfb853baSMatthew G. Knepley   PetscCall(VecGetArray(coordinates, &coords));
20058d2ec52aSSatish Balay   if (debug) PetscCall(PetscSynchronizedPrintf(comm, "Geometry for rank %d:\n", rank));
20068d2ec52aSSatish Balay   for (PetscInt d = 0; d < dim; ++d) vert[d] = 0;
2007cfb853baSMatthew G. Knepley   while (vert[dim - 1] < vertices[dim - 1]) {
2008cfb853baSMatthew G. Knepley     const PetscInt vertex = TupleToIndex_Private(dim, vertices, vert);
20098d2ec52aSSatish Balay     PetscBool      leaf   = PETSC_FALSE;
2010cfb853baSMatthew G. Knepley 
20118d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
20128d2ec52aSSatish Balay       coords[vertex * dim + d] = lower[d] + ((upper[d] - lower[d]) / edges[d]) * (vert[d] + vstart[d]);
20138d2ec52aSSatish Balay       if (vert[d] < overlap || vert[d] >= vertices[d] - overlap) leaf = PETSC_TRUE;
20148d2ec52aSSatish Balay     }
20158d2ec52aSSatish Balay     if (size > 1 && leaf) {
20168d2ec52aSSatish Balay       PetscInt rnumCells = 1;
20178d2ec52aSSatish Balay 
20188d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) rvert[d] = vert[d] + vstart[d];
20198d2ec52aSSatish Balay       TupleToRanks_Private(dim, edges, procs, rvert, rrank);
20208d2ec52aSSatish Balay       leaves[Nl2]       = vertex + numCells;
20218d2ec52aSSatish Balay       remotes[Nl2].rank = TupleToIndex_Private(dim, procs, rrank);
20228d2ec52aSSatish Balay       RanksToSizes_Private(dim, edges, procs, rrank, rvertices);
20238d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) {
20248d2ec52aSSatish Balay         rvertices[d] += 2 * overlap; // Add halo
20258d2ec52aSSatish Balay         rnumCells *= rvertices[d];
20268d2ec52aSSatish Balay       }
20278d2ec52aSSatish Balay       rnumCells *= dim;
20288d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) {
20298d2ec52aSSatish Balay         const PetscInt diff = rrank[d] - lrank[d];
20308d2ec52aSSatish Balay 
20318d2ec52aSSatish Balay         if (!diff) rvert[d] = vert[d];                                     // Vertex is local
20328d2ec52aSSatish Balay         else if (rvert[d] < 0) rvert[d] = rvertices[d] - 1 + rvert[d];     // Wrap around at the bottom
20338d2ec52aSSatish Balay         else if (rvert[d] >= edges[d]) rvert[d] = rvert[d] - edges[d] + 1; // Wrap around at the top
20348d2ec52aSSatish Balay         else if (diff == -1) rvert[d] = rvertices[d] - 1 + (vert[d] - overlap);
20358d2ec52aSSatish Balay         else if (diff == 1) rvert[d] = (vertices[d] - vert[d] - 1) + overlap;
20368d2ec52aSSatish Balay         else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Process distance %" PetscInt_FMT " in direction %" PetscInt_FMT " should not be possible", diff, d);
20378d2ec52aSSatish Balay       }
20388d2ec52aSSatish Balay       remotes[Nl2].index = TupleToIndex_Private(dim, rvertices, rvert) + rnumCells;
20398d2ec52aSSatish Balay       if (debug) PetscCall(PetscSynchronizedPrintf(comm, "Shared Vertex %" PetscInt_FMT " (%" PetscInt_FMT ", %" PetscInt_FMT ")\n", leaves[Nl2], remotes[Nl2].rank, remotes[Nl2].index));
20408d2ec52aSSatish Balay       ++Nl2;
20418d2ec52aSSatish Balay     }
20428d2ec52aSSatish Balay     if (debug) {
20438d2ec52aSSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "Vertex %" PetscInt_FMT ":", vertex));
20448d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) PetscCall(PetscSynchronizedPrintf(comm, " %" PetscInt_FMT, vert[d] + vstart[d]));
20458d2ec52aSSatish Balay       for (PetscInt d = 0; d < dim; ++d) PetscCall(PetscSynchronizedPrintf(comm, " %g", (double)PetscRealPart(coords[vertex * dim + d])));
20468d2ec52aSSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "\n"));
20478d2ec52aSSatish Balay     }
2048cfb853baSMatthew G. Knepley     PetscCall(DMPlexTensorPointLexicographic_Private(dim, vertices, vert));
2049cfb853baSMatthew G. Knepley   }
20508d2ec52aSSatish Balay   if (debug) PetscCall(PetscSynchronizedFlush(comm, NULL));
2051cfb853baSMatthew G. Knepley   PetscCall(VecRestoreArray(coordinates, &coords));
2052cfb853baSMatthew G. Knepley   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
2053cfb853baSMatthew G. Knepley   PetscCall(VecDestroy(&coordinates));
20548d2ec52aSSatish Balay   // Build SF
20558d2ec52aSSatish Balay   PetscCheck(Nl == Nl2, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Initial number of leaves %" PetscInt_FMT " != %" PetscInt_FMT " final number", Nl, Nl2);
20568d2ec52aSSatish Balay   PetscCall(DMGetPointSF(dm, &sf));
20578d2ec52aSSatish Balay   PetscCall(PetscSFSetGraph(sf, numCells + numVertices, Nl, leaves, PETSC_OWN_POINTER, remotes, PETSC_OWN_POINTER));
20588d2ec52aSSatish Balay   if (debug) PetscCall(PetscSFView(sf, PETSC_VIEWER_STDOUT_WORLD));
2059cfb853baSMatthew G. Knepley   //PetscCall(DMSetPeriodicity(dm, NULL, lower, upper));
2060cfb853baSMatthew G. Knepley   // Attach the extent
2061cfb853baSMatthew G. Knepley   {
2062cfb853baSMatthew G. Knepley     PetscContainer c;
20638d2ec52aSSatish Balay     PetscInt      *extent, *lextent;
2064cfb853baSMatthew G. Knepley 
2065cfb853baSMatthew G. Knepley     PetscCall(PetscMalloc1(dim, &extent));
20668d2ec52aSSatish Balay     PetscCall(PetscMalloc1(dim, &lextent));
20678d2ec52aSSatish Balay     for (PetscInt d = 0; d < dim; ++d) {
20688d2ec52aSSatish Balay       extent[d]  = edges[d];
20698d2ec52aSSatish Balay       lextent[d] = ledges[d];
20708d2ec52aSSatish Balay     }
2071cfb853baSMatthew G. Knepley     PetscCall(PetscContainerCreate(PETSC_COMM_SELF, &c));
207249abdd8aSBarry Smith     PetscCall(PetscContainerSetCtxDestroy(c, PetscCtxDestroyDefault));
2073cfb853baSMatthew G. Knepley     PetscCall(PetscContainerSetPointer(c, extent));
2074cfb853baSMatthew G. Knepley     PetscCall(PetscObjectCompose((PetscObject)dm, "_extent", (PetscObject)c));
2075cfb853baSMatthew G. Knepley     PetscCall(PetscContainerDestroy(&c));
20768d2ec52aSSatish Balay     PetscCall(PetscContainerCreate(PETSC_COMM_SELF, &c));
20778d2ec52aSSatish Balay     PetscCall(PetscContainerSetCtxDestroy(c, PetscCtxDestroyDefault));
20788d2ec52aSSatish Balay     PetscCall(PetscContainerSetPointer(c, lextent));
20798d2ec52aSSatish Balay     PetscCall(PetscObjectCompose((PetscObject)dm, "_lextent", (PetscObject)c));
20808d2ec52aSSatish Balay     PetscCall(PetscContainerDestroy(&c));
2081cfb853baSMatthew G. Knepley   }
20828d2ec52aSSatish Balay   PetscCall(PetscFree4(procs, lrank, rrank, supp));
20838d2ec52aSSatish Balay   PetscCall(PetscFree7(ledges, vertices, rvertices, vert, rvert, vstart, vtmp));
20843ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2085cfb853baSMatthew G. Knepley }
2086cfb853baSMatthew G. Knepley 
2087cfb853baSMatthew G. Knepley /*@C
2088aaa8cc7dSPierre Jolivet   DMPlexCreateHypercubicMesh - Creates a periodic mesh on the tensor product of unit intervals using only vertices and edges.
2089cfb853baSMatthew G. Knepley 
2090cfb853baSMatthew G. Knepley   Collective
2091cfb853baSMatthew G. Knepley 
2092cfb853baSMatthew G. Knepley   Input Parameters:
20938d2ec52aSSatish Balay + comm    - The communicator for the `DM` object
2094cfb853baSMatthew G. Knepley . dim     - The spatial dimension
209520f4b53cSBarry Smith . edges   - Number of edges per dimension, or `NULL` for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D
209620f4b53cSBarry Smith . lower   - The lower left corner, or `NULL` for (0, 0, 0)
20978d2ec52aSSatish Balay . upper   - The upper right corner, or `NULL` for (1, 1, 1)
20988d2ec52aSSatish Balay - overlap - The number of vertices in each direction to include in the overlap (default is 1)
2099cfb853baSMatthew G. Knepley 
2100cfb853baSMatthew G. Knepley   Output Parameter:
2101cfb853baSMatthew G. Knepley . dm - The DM object
2102cfb853baSMatthew G. Knepley 
210320f4b53cSBarry Smith   Level: beginner
210420f4b53cSBarry Smith 
210520f4b53cSBarry Smith   Note:
210620f4b53cSBarry Smith   If you want to customize this mesh using options, you just need to
210720f4b53cSBarry Smith .vb
210820f4b53cSBarry Smith   DMCreate(comm, &dm);
210920f4b53cSBarry Smith   DMSetType(dm, DMPLEX);
211020f4b53cSBarry Smith   DMSetFromOptions(dm);
211120f4b53cSBarry Smith .ve
211220f4b53cSBarry Smith   and use the options on the `DMSetFromOptions()` page.
2113cfb853baSMatthew G. Knepley 
2114cfb853baSMatthew G. Knepley   The vertices are numbered is lexicographic order, and the dim edges exiting a vertex in the positive orthant are number consecutively,
211520f4b53cSBarry Smith .vb
211620f4b53cSBarry Smith  18--0-19--2-20--4-18
211720f4b53cSBarry Smith   |     |     |     |
211820f4b53cSBarry Smith  13    15    17    13
211920f4b53cSBarry Smith   |     |     |     |
212020f4b53cSBarry Smith  24-12-25-14-26-16-24
212120f4b53cSBarry Smith   |     |     |     |
212220f4b53cSBarry Smith   7     9    11     7
212320f4b53cSBarry Smith   |     |     |     |
212420f4b53cSBarry Smith  21--6-22--8-23-10-21
212520f4b53cSBarry Smith   |     |     |     |
212620f4b53cSBarry Smith   1     3     5     1
212720f4b53cSBarry Smith   |     |     |     |
212820f4b53cSBarry Smith  18--0-19--2-20--4-18
212920f4b53cSBarry Smith .ve
2130cfb853baSMatthew G. Knepley 
213176fbde31SPierre Jolivet .seealso: `DMSetFromOptions()`, `DMPlexCreateFromFile()`, `DMPlexCreateHexCylinderMesh()`, `DMSetType()`, `DMCreate()`
2132cfb853baSMatthew G. Knepley @*/
21338d2ec52aSSatish Balay PetscErrorCode DMPlexCreateHypercubicMesh(MPI_Comm comm, PetscInt dim, const PetscInt edges[], const PetscReal lower[], const PetscReal upper[], PetscInt overlap, DM *dm)
2134cfb853baSMatthew G. Knepley {
2135cfb853baSMatthew G. Knepley   PetscInt       *edg;
2136cfb853baSMatthew G. Knepley   PetscReal      *low, *upp;
2137cfb853baSMatthew G. Knepley   DMBoundaryType *bdt;
2138cfb853baSMatthew G. Knepley   PetscInt        d;
2139cfb853baSMatthew G. Knepley 
2140cfb853baSMatthew G. Knepley   PetscFunctionBegin;
2141cfb853baSMatthew G. Knepley   PetscCall(DMCreate(comm, dm));
2142cfb853baSMatthew G. Knepley   PetscCall(DMSetType(*dm, DMPLEX));
2143cfb853baSMatthew G. Knepley   PetscCall(PetscMalloc4(dim, &edg, dim, &low, dim, &upp, dim, &bdt));
2144cfb853baSMatthew G. Knepley   for (d = 0; d < dim; ++d) {
2145cfb853baSMatthew G. Knepley     edg[d] = edges ? edges[d] : 1;
2146cfb853baSMatthew G. Knepley     low[d] = lower ? lower[d] : 0.;
2147cfb853baSMatthew G. Knepley     upp[d] = upper ? upper[d] : 1.;
2148cfb853baSMatthew G. Knepley     bdt[d] = DM_BOUNDARY_PERIODIC;
2149cfb853baSMatthew G. Knepley   }
21508d2ec52aSSatish Balay   PetscCall(DMPlexCreateHypercubicMesh_Internal(*dm, dim, low, upp, edg, overlap, bdt));
2151cfb853baSMatthew G. Knepley   PetscCall(PetscFree4(edg, low, upp, bdt));
21523ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2153cfb853baSMatthew G. Knepley }
2154cfb853baSMatthew G. Knepley 
2155cc4c1da9SBarry Smith /*@
2156a1cb98faSBarry Smith   DMPlexSetOptionsPrefix - Sets the prefix used for searching for all `DM` options in the database.
2157a9074c1eSMatthew G. Knepley 
215820f4b53cSBarry Smith   Logically Collective
2159a9074c1eSMatthew G. Knepley 
2160a9074c1eSMatthew G. Knepley   Input Parameters:
216120f4b53cSBarry Smith + dm     - the `DM` context
2162a9074c1eSMatthew G. Knepley - prefix - the prefix to prepend to all option names
2163a9074c1eSMatthew G. Knepley 
2164a1cb98faSBarry Smith   Level: advanced
2165a1cb98faSBarry Smith 
2166a1cb98faSBarry Smith   Note:
2167a9074c1eSMatthew G. Knepley   A hyphen (-) must NOT be given at the beginning of the prefix name.
2168a9074c1eSMatthew G. Knepley   The first character of all runtime options is AUTOMATICALLY the hyphen.
2169a9074c1eSMatthew G. Knepley 
21701cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `SNESSetFromOptions()`
2171a9074c1eSMatthew G. Knepley @*/
2172d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexSetOptionsPrefix(DM dm, const char prefix[])
2173d71ae5a4SJacob Faibussowitsch {
2174a9074c1eSMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *)dm->data;
2175a9074c1eSMatthew G. Knepley 
2176a9074c1eSMatthew G. Knepley   PetscFunctionBegin;
2177a9074c1eSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
21789566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, prefix));
21799566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)mesh->partitioner, prefix));
21803ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2181a9074c1eSMatthew G. Knepley }
2182a9074c1eSMatthew G. Knepley 
21839318fe57SMatthew G. Knepley /* Remap geometry to cylinder
218461a622f3SMatthew G. Knepley    TODO: This only works for a single refinement, then it is broken
218561a622f3SMatthew G. Knepley 
21869318fe57SMatthew G. Knepley      Interior square: Linear interpolation is correct
21879318fe57SMatthew G. Knepley      The other cells all have vertices on rays from the origin. We want to uniformly expand the spacing
21889318fe57SMatthew G. Knepley      such that the last vertex is on the unit circle. So the closest and farthest vertices are at distance
21890510c589SMatthew G. Knepley 
21909318fe57SMatthew G. Knepley        phi     = arctan(y/x)
21919318fe57SMatthew G. Knepley        d_close = sqrt(1/8 + 1/4 sin^2(phi))
21929318fe57SMatthew G. Knepley        d_far   = sqrt(1/2 + sin^2(phi))
21930510c589SMatthew G. Knepley 
21949318fe57SMatthew G. Knepley      so we remap them using
21950510c589SMatthew G. Knepley 
21969318fe57SMatthew G. Knepley        x_new = x_close + (x - x_close) (1 - d_close) / (d_far - d_close)
21979318fe57SMatthew G. Knepley        y_new = y_close + (y - y_close) (1 - d_close) / (d_far - d_close)
21980510c589SMatthew G. Knepley 
21999318fe57SMatthew G. Knepley      If pi/4 < phi < 3pi/4 or -3pi/4 < phi < -pi/4, then we switch x and y.
22009318fe57SMatthew G. Knepley */
2201d71ae5a4SJacob Faibussowitsch static void snapToCylinder(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f0[])
2202d71ae5a4SJacob Faibussowitsch {
22039318fe57SMatthew G. Knepley   const PetscReal dis = 1.0 / PetscSqrtReal(2.0);
22049318fe57SMatthew G. Knepley   const PetscReal ds2 = 0.5 * dis;
220522cc497dSMatthew G. Knepley 
22069318fe57SMatthew G. Knepley   if ((PetscAbsScalar(u[0]) <= ds2) && (PetscAbsScalar(u[1]) <= ds2)) {
22079318fe57SMatthew G. Knepley     f0[0] = u[0];
22089318fe57SMatthew G. Knepley     f0[1] = u[1];
22099318fe57SMatthew G. Knepley   } else {
22109318fe57SMatthew G. Knepley     PetscReal phi, sinp, cosp, dc, df, x, y, xc, yc;
22110510c589SMatthew G. Knepley 
22129318fe57SMatthew G. Knepley     x    = PetscRealPart(u[0]);
22139318fe57SMatthew G. Knepley     y    = PetscRealPart(u[1]);
22149318fe57SMatthew G. Knepley     phi  = PetscAtan2Real(y, x);
22159318fe57SMatthew G. Knepley     sinp = PetscSinReal(phi);
22169318fe57SMatthew G. Knepley     cosp = PetscCosReal(phi);
22179318fe57SMatthew G. Knepley     if ((PetscAbsReal(phi) > PETSC_PI / 4.0) && (PetscAbsReal(phi) < 3.0 * PETSC_PI / 4.0)) {
22189318fe57SMatthew G. Knepley       dc = PetscAbsReal(ds2 / sinp);
22199318fe57SMatthew G. Knepley       df = PetscAbsReal(dis / sinp);
22209318fe57SMatthew G. Knepley       xc = ds2 * x / PetscAbsReal(y);
22219318fe57SMatthew G. Knepley       yc = ds2 * PetscSignReal(y);
22229318fe57SMatthew G. Knepley     } else {
22239318fe57SMatthew G. Knepley       dc = PetscAbsReal(ds2 / cosp);
22249318fe57SMatthew G. Knepley       df = PetscAbsReal(dis / cosp);
22259318fe57SMatthew G. Knepley       xc = ds2 * PetscSignReal(x);
22269318fe57SMatthew G. Knepley       yc = ds2 * y / PetscAbsReal(x);
22279318fe57SMatthew G. Knepley     }
22289318fe57SMatthew G. Knepley     f0[0] = xc + (u[0] - xc) * (1.0 - dc) / (df - dc);
22299318fe57SMatthew G. Knepley     f0[1] = yc + (u[1] - yc) * (1.0 - dc) / (df - dc);
22309318fe57SMatthew G. Knepley   }
22319318fe57SMatthew G. Knepley   f0[2] = u[2];
22329318fe57SMatthew G. Knepley }
22330510c589SMatthew G. Knepley 
223449704ca5SMatthew G. Knepley static PetscErrorCode DMPlexCreateHexCylinderMesh_Internal(DM dm, DMBoundaryType periodicZ, PetscInt Nr)
2235d71ae5a4SJacob Faibussowitsch {
22360510c589SMatthew G. Knepley   const PetscInt dim = 3;
22379318fe57SMatthew G. Knepley   PetscInt       numCells, numVertices;
2238d8c47e87SMatthew G. Knepley   PetscMPIInt    rank;
22390510c589SMatthew G. Knepley 
22400510c589SMatthew G. Knepley   PetscFunctionBegin;
224146139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
22429566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
22439566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
22440510c589SMatthew G. Knepley   /* Create topology */
22450510c589SMatthew G. Knepley   {
22460510c589SMatthew G. Knepley     PetscInt cone[8], c;
22470510c589SMatthew G. Knepley 
2248dd400576SPatrick Sanan     numCells    = rank == 0 ? 5 : 0;
2249dd400576SPatrick Sanan     numVertices = rank == 0 ? 16 : 0;
2250006a8963SMatthew G. Knepley     if (periodicZ == DM_BOUNDARY_PERIODIC) {
2251ae8bcbbbSMatthew G. Knepley       numCells *= 3;
2252dd400576SPatrick Sanan       numVertices = rank == 0 ? 24 : 0;
2253006a8963SMatthew G. Knepley     }
22549566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numCells + numVertices));
22559566063dSJacob Faibussowitsch     for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 8));
22569566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm));
2257dd400576SPatrick Sanan     if (rank == 0) {
2258006a8963SMatthew G. Knepley       if (periodicZ == DM_BOUNDARY_PERIODIC) {
22599371c9d4SSatish Balay         cone[0] = 15;
22609371c9d4SSatish Balay         cone[1] = 18;
22619371c9d4SSatish Balay         cone[2] = 17;
22629371c9d4SSatish Balay         cone[3] = 16;
22639371c9d4SSatish Balay         cone[4] = 31;
22649371c9d4SSatish Balay         cone[5] = 32;
22659371c9d4SSatish Balay         cone[6] = 33;
22669371c9d4SSatish Balay         cone[7] = 34;
22679566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 0, cone));
22689371c9d4SSatish Balay         cone[0] = 16;
22699371c9d4SSatish Balay         cone[1] = 17;
22709371c9d4SSatish Balay         cone[2] = 24;
22719371c9d4SSatish Balay         cone[3] = 23;
22729371c9d4SSatish Balay         cone[4] = 32;
22739371c9d4SSatish Balay         cone[5] = 36;
22749371c9d4SSatish Balay         cone[6] = 37;
22759371c9d4SSatish Balay         cone[7] = 33; /* 22 25 26 21 */
22769566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 1, cone));
22779371c9d4SSatish Balay         cone[0] = 18;
22789371c9d4SSatish Balay         cone[1] = 27;
22799371c9d4SSatish Balay         cone[2] = 24;
22809371c9d4SSatish Balay         cone[3] = 17;
22819371c9d4SSatish Balay         cone[4] = 34;
22829371c9d4SSatish Balay         cone[5] = 33;
22839371c9d4SSatish Balay         cone[6] = 37;
22849371c9d4SSatish Balay         cone[7] = 38;
22859566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 2, cone));
22869371c9d4SSatish Balay         cone[0] = 29;
22879371c9d4SSatish Balay         cone[1] = 27;
22889371c9d4SSatish Balay         cone[2] = 18;
22899371c9d4SSatish Balay         cone[3] = 15;
22909371c9d4SSatish Balay         cone[4] = 35;
22919371c9d4SSatish Balay         cone[5] = 31;
22929371c9d4SSatish Balay         cone[6] = 34;
22939371c9d4SSatish Balay         cone[7] = 38;
22949566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 3, cone));
22959371c9d4SSatish Balay         cone[0] = 29;
22969371c9d4SSatish Balay         cone[1] = 15;
22979371c9d4SSatish Balay         cone[2] = 16;
22989371c9d4SSatish Balay         cone[3] = 23;
22999371c9d4SSatish Balay         cone[4] = 35;
23009371c9d4SSatish Balay         cone[5] = 36;
23019371c9d4SSatish Balay         cone[6] = 32;
23029371c9d4SSatish Balay         cone[7] = 31;
23039566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 4, cone));
2304006a8963SMatthew G. Knepley 
23059371c9d4SSatish Balay         cone[0] = 31;
23069371c9d4SSatish Balay         cone[1] = 34;
23079371c9d4SSatish Balay         cone[2] = 33;
23089371c9d4SSatish Balay         cone[3] = 32;
23099371c9d4SSatish Balay         cone[4] = 19;
23109371c9d4SSatish Balay         cone[5] = 22;
23119371c9d4SSatish Balay         cone[6] = 21;
23129371c9d4SSatish Balay         cone[7] = 20;
23139566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 5, cone));
23149371c9d4SSatish Balay         cone[0] = 32;
23159371c9d4SSatish Balay         cone[1] = 33;
23169371c9d4SSatish Balay         cone[2] = 37;
23179371c9d4SSatish Balay         cone[3] = 36;
23189371c9d4SSatish Balay         cone[4] = 22;
23199371c9d4SSatish Balay         cone[5] = 25;
23209371c9d4SSatish Balay         cone[6] = 26;
23219371c9d4SSatish Balay         cone[7] = 21;
23229566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 6, cone));
23239371c9d4SSatish Balay         cone[0] = 34;
23249371c9d4SSatish Balay         cone[1] = 38;
23259371c9d4SSatish Balay         cone[2] = 37;
23269371c9d4SSatish Balay         cone[3] = 33;
23279371c9d4SSatish Balay         cone[4] = 20;
23289371c9d4SSatish Balay         cone[5] = 21;
23299371c9d4SSatish Balay         cone[6] = 26;
23309371c9d4SSatish Balay         cone[7] = 28;
23319566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 7, cone));
23329371c9d4SSatish Balay         cone[0] = 35;
23339371c9d4SSatish Balay         cone[1] = 38;
23349371c9d4SSatish Balay         cone[2] = 34;
23359371c9d4SSatish Balay         cone[3] = 31;
23369371c9d4SSatish Balay         cone[4] = 30;
23379371c9d4SSatish Balay         cone[5] = 19;
23389371c9d4SSatish Balay         cone[6] = 20;
23399371c9d4SSatish Balay         cone[7] = 28;
23409566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 8, cone));
23419371c9d4SSatish Balay         cone[0] = 35;
23429371c9d4SSatish Balay         cone[1] = 31;
23439371c9d4SSatish Balay         cone[2] = 32;
23449371c9d4SSatish Balay         cone[3] = 36;
23459371c9d4SSatish Balay         cone[4] = 30;
23469371c9d4SSatish Balay         cone[5] = 25;
23479371c9d4SSatish Balay         cone[6] = 22;
23489371c9d4SSatish Balay         cone[7] = 19;
23499566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 9, cone));
2350ae8bcbbbSMatthew G. Knepley 
23519371c9d4SSatish Balay         cone[0] = 19;
23529371c9d4SSatish Balay         cone[1] = 20;
23539371c9d4SSatish Balay         cone[2] = 21;
23549371c9d4SSatish Balay         cone[3] = 22;
23559371c9d4SSatish Balay         cone[4] = 15;
23569371c9d4SSatish Balay         cone[5] = 16;
23579371c9d4SSatish Balay         cone[6] = 17;
23589371c9d4SSatish Balay         cone[7] = 18;
23599566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 10, cone));
23609371c9d4SSatish Balay         cone[0] = 22;
23619371c9d4SSatish Balay         cone[1] = 21;
23629371c9d4SSatish Balay         cone[2] = 26;
23639371c9d4SSatish Balay         cone[3] = 25;
23649371c9d4SSatish Balay         cone[4] = 16;
23659371c9d4SSatish Balay         cone[5] = 23;
23669371c9d4SSatish Balay         cone[6] = 24;
23679371c9d4SSatish Balay         cone[7] = 17;
23689566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 11, cone));
23699371c9d4SSatish Balay         cone[0] = 20;
23709371c9d4SSatish Balay         cone[1] = 28;
23719371c9d4SSatish Balay         cone[2] = 26;
23729371c9d4SSatish Balay         cone[3] = 21;
23739371c9d4SSatish Balay         cone[4] = 18;
23749371c9d4SSatish Balay         cone[5] = 17;
23759371c9d4SSatish Balay         cone[6] = 24;
23769371c9d4SSatish Balay         cone[7] = 27;
23779566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 12, cone));
23789371c9d4SSatish Balay         cone[0] = 30;
23799371c9d4SSatish Balay         cone[1] = 28;
23809371c9d4SSatish Balay         cone[2] = 20;
23819371c9d4SSatish Balay         cone[3] = 19;
23829371c9d4SSatish Balay         cone[4] = 29;
23839371c9d4SSatish Balay         cone[5] = 15;
23849371c9d4SSatish Balay         cone[6] = 18;
23859371c9d4SSatish Balay         cone[7] = 27;
23869566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 13, cone));
23879371c9d4SSatish Balay         cone[0] = 30;
23889371c9d4SSatish Balay         cone[1] = 19;
23899371c9d4SSatish Balay         cone[2] = 22;
23909371c9d4SSatish Balay         cone[3] = 25;
23919371c9d4SSatish Balay         cone[4] = 29;
23929371c9d4SSatish Balay         cone[5] = 23;
23939371c9d4SSatish Balay         cone[6] = 16;
23949371c9d4SSatish Balay         cone[7] = 15;
23959566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 14, cone));
2396006a8963SMatthew G. Knepley       } else {
23979371c9d4SSatish Balay         cone[0] = 5;
23989371c9d4SSatish Balay         cone[1] = 8;
23999371c9d4SSatish Balay         cone[2] = 7;
24009371c9d4SSatish Balay         cone[3] = 6;
24019371c9d4SSatish Balay         cone[4] = 9;
24029371c9d4SSatish Balay         cone[5] = 12;
24039371c9d4SSatish Balay         cone[6] = 11;
24049371c9d4SSatish Balay         cone[7] = 10;
24059566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 0, cone));
24069371c9d4SSatish Balay         cone[0] = 6;
24079371c9d4SSatish Balay         cone[1] = 7;
24089371c9d4SSatish Balay         cone[2] = 14;
24099371c9d4SSatish Balay         cone[3] = 13;
24109371c9d4SSatish Balay         cone[4] = 12;
24119371c9d4SSatish Balay         cone[5] = 15;
24129371c9d4SSatish Balay         cone[6] = 16;
24139371c9d4SSatish Balay         cone[7] = 11;
24149566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 1, cone));
24159371c9d4SSatish Balay         cone[0] = 8;
24169371c9d4SSatish Balay         cone[1] = 17;
24179371c9d4SSatish Balay         cone[2] = 14;
24189371c9d4SSatish Balay         cone[3] = 7;
24199371c9d4SSatish Balay         cone[4] = 10;
24209371c9d4SSatish Balay         cone[5] = 11;
24219371c9d4SSatish Balay         cone[6] = 16;
24229371c9d4SSatish Balay         cone[7] = 18;
24239566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 2, cone));
24249371c9d4SSatish Balay         cone[0] = 19;
24259371c9d4SSatish Balay         cone[1] = 17;
24269371c9d4SSatish Balay         cone[2] = 8;
24279371c9d4SSatish Balay         cone[3] = 5;
24289371c9d4SSatish Balay         cone[4] = 20;
24299371c9d4SSatish Balay         cone[5] = 9;
24309371c9d4SSatish Balay         cone[6] = 10;
24319371c9d4SSatish Balay         cone[7] = 18;
24329566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 3, cone));
24339371c9d4SSatish Balay         cone[0] = 19;
24349371c9d4SSatish Balay         cone[1] = 5;
24359371c9d4SSatish Balay         cone[2] = 6;
24369371c9d4SSatish Balay         cone[3] = 13;
24379371c9d4SSatish Balay         cone[4] = 20;
24389371c9d4SSatish Balay         cone[5] = 15;
24399371c9d4SSatish Balay         cone[6] = 12;
24409371c9d4SSatish Balay         cone[7] = 9;
24419566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 4, cone));
2442006a8963SMatthew G. Knepley       }
2443d8c47e87SMatthew G. Knepley     }
24449566063dSJacob Faibussowitsch     PetscCall(DMPlexSymmetrize(dm));
24459566063dSJacob Faibussowitsch     PetscCall(DMPlexStratify(dm));
24460510c589SMatthew G. Knepley   }
2447dbc1dc17SMatthew G. Knepley   /* Create cube geometry */
24480510c589SMatthew G. Knepley   {
24490510c589SMatthew G. Knepley     Vec             coordinates;
24500510c589SMatthew G. Knepley     PetscSection    coordSection;
24510510c589SMatthew G. Knepley     PetscScalar    *coords;
24520510c589SMatthew G. Knepley     PetscInt        coordSize, v;
24530510c589SMatthew G. Knepley     const PetscReal dis = 1.0 / PetscSqrtReal(2.0);
24540510c589SMatthew G. Knepley     const PetscReal ds2 = dis / 2.0;
24550510c589SMatthew G. Knepley 
24560510c589SMatthew G. Knepley     /* Build coordinates */
24579566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateSection(dm, &coordSection));
24589566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetNumFields(coordSection, 1));
24599566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim));
24609566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetChart(coordSection, numCells, numCells + numVertices));
24610510c589SMatthew G. Knepley     for (v = numCells; v < numCells + numVertices; ++v) {
24629566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetDof(coordSection, v, dim));
24639566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim));
24640510c589SMatthew G. Knepley     }
24659566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetUp(coordSection));
24669566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
24679566063dSJacob Faibussowitsch     PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
24689566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
24699566063dSJacob Faibussowitsch     PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
24709566063dSJacob Faibussowitsch     PetscCall(VecSetBlockSize(coordinates, dim));
24719566063dSJacob Faibussowitsch     PetscCall(VecSetType(coordinates, VECSTANDARD));
24729566063dSJacob Faibussowitsch     PetscCall(VecGetArray(coordinates, &coords));
2473dd400576SPatrick Sanan     if (rank == 0) {
24749371c9d4SSatish Balay       coords[0 * dim + 0]  = -ds2;
24759371c9d4SSatish Balay       coords[0 * dim + 1]  = -ds2;
24769371c9d4SSatish Balay       coords[0 * dim + 2]  = 0.0;
24779371c9d4SSatish Balay       coords[1 * dim + 0]  = ds2;
24789371c9d4SSatish Balay       coords[1 * dim + 1]  = -ds2;
24799371c9d4SSatish Balay       coords[1 * dim + 2]  = 0.0;
24809371c9d4SSatish Balay       coords[2 * dim + 0]  = ds2;
24819371c9d4SSatish Balay       coords[2 * dim + 1]  = ds2;
24829371c9d4SSatish Balay       coords[2 * dim + 2]  = 0.0;
24839371c9d4SSatish Balay       coords[3 * dim + 0]  = -ds2;
24849371c9d4SSatish Balay       coords[3 * dim + 1]  = ds2;
24859371c9d4SSatish Balay       coords[3 * dim + 2]  = 0.0;
24869371c9d4SSatish Balay       coords[4 * dim + 0]  = -ds2;
24879371c9d4SSatish Balay       coords[4 * dim + 1]  = -ds2;
24889371c9d4SSatish Balay       coords[4 * dim + 2]  = 1.0;
24899371c9d4SSatish Balay       coords[5 * dim + 0]  = -ds2;
24909371c9d4SSatish Balay       coords[5 * dim + 1]  = ds2;
24919371c9d4SSatish Balay       coords[5 * dim + 2]  = 1.0;
24929371c9d4SSatish Balay       coords[6 * dim + 0]  = ds2;
24939371c9d4SSatish Balay       coords[6 * dim + 1]  = ds2;
24949371c9d4SSatish Balay       coords[6 * dim + 2]  = 1.0;
24959371c9d4SSatish Balay       coords[7 * dim + 0]  = ds2;
24969371c9d4SSatish Balay       coords[7 * dim + 1]  = -ds2;
24979371c9d4SSatish Balay       coords[7 * dim + 2]  = 1.0;
24989371c9d4SSatish Balay       coords[8 * dim + 0]  = dis;
24999371c9d4SSatish Balay       coords[8 * dim + 1]  = -dis;
25009371c9d4SSatish Balay       coords[8 * dim + 2]  = 0.0;
25019371c9d4SSatish Balay       coords[9 * dim + 0]  = dis;
25029371c9d4SSatish Balay       coords[9 * dim + 1]  = dis;
25039371c9d4SSatish Balay       coords[9 * dim + 2]  = 0.0;
25049371c9d4SSatish Balay       coords[10 * dim + 0] = dis;
25059371c9d4SSatish Balay       coords[10 * dim + 1] = -dis;
25069371c9d4SSatish Balay       coords[10 * dim + 2] = 1.0;
25079371c9d4SSatish Balay       coords[11 * dim + 0] = dis;
25089371c9d4SSatish Balay       coords[11 * dim + 1] = dis;
25099371c9d4SSatish Balay       coords[11 * dim + 2] = 1.0;
25109371c9d4SSatish Balay       coords[12 * dim + 0] = -dis;
25119371c9d4SSatish Balay       coords[12 * dim + 1] = dis;
25129371c9d4SSatish Balay       coords[12 * dim + 2] = 0.0;
25139371c9d4SSatish Balay       coords[13 * dim + 0] = -dis;
25149371c9d4SSatish Balay       coords[13 * dim + 1] = dis;
25159371c9d4SSatish Balay       coords[13 * dim + 2] = 1.0;
25169371c9d4SSatish Balay       coords[14 * dim + 0] = -dis;
25179371c9d4SSatish Balay       coords[14 * dim + 1] = -dis;
25189371c9d4SSatish Balay       coords[14 * dim + 2] = 0.0;
25199371c9d4SSatish Balay       coords[15 * dim + 0] = -dis;
25209371c9d4SSatish Balay       coords[15 * dim + 1] = -dis;
25219371c9d4SSatish Balay       coords[15 * dim + 2] = 1.0;
2522ae8bcbbbSMatthew G. Knepley       if (periodicZ == DM_BOUNDARY_PERIODIC) {
25239371c9d4SSatish Balay         /* 15 31 19 */ coords[16 * dim + 0] = -ds2;
25249371c9d4SSatish Balay         coords[16 * dim + 1]                = -ds2;
25259371c9d4SSatish Balay         coords[16 * dim + 2]                = 0.5;
25269371c9d4SSatish Balay         /* 16 32 22 */ coords[17 * dim + 0] = ds2;
25279371c9d4SSatish Balay         coords[17 * dim + 1]                = -ds2;
25289371c9d4SSatish Balay         coords[17 * dim + 2]                = 0.5;
25299371c9d4SSatish Balay         /* 17 33 21 */ coords[18 * dim + 0] = ds2;
25309371c9d4SSatish Balay         coords[18 * dim + 1]                = ds2;
25319371c9d4SSatish Balay         coords[18 * dim + 2]                = 0.5;
25329371c9d4SSatish Balay         /* 18 34 20 */ coords[19 * dim + 0] = -ds2;
25339371c9d4SSatish Balay         coords[19 * dim + 1]                = ds2;
25349371c9d4SSatish Balay         coords[19 * dim + 2]                = 0.5;
25359371c9d4SSatish Balay         /* 29 35 30 */ coords[20 * dim + 0] = -dis;
25369371c9d4SSatish Balay         coords[20 * dim + 1]                = -dis;
25379371c9d4SSatish Balay         coords[20 * dim + 2]                = 0.5;
25389371c9d4SSatish Balay         /* 23 36 25 */ coords[21 * dim + 0] = dis;
25399371c9d4SSatish Balay         coords[21 * dim + 1]                = -dis;
25409371c9d4SSatish Balay         coords[21 * dim + 2]                = 0.5;
25419371c9d4SSatish Balay         /* 24 37 26 */ coords[22 * dim + 0] = dis;
25429371c9d4SSatish Balay         coords[22 * dim + 1]                = dis;
25439371c9d4SSatish Balay         coords[22 * dim + 2]                = 0.5;
25449371c9d4SSatish Balay         /* 27 38 28 */ coords[23 * dim + 0] = -dis;
25459371c9d4SSatish Balay         coords[23 * dim + 1]                = dis;
25469371c9d4SSatish Balay         coords[23 * dim + 2]                = 0.5;
2547ae8bcbbbSMatthew G. Knepley       }
2548d8c47e87SMatthew G. Knepley     }
25499566063dSJacob Faibussowitsch     PetscCall(VecRestoreArray(coordinates, &coords));
25509566063dSJacob Faibussowitsch     PetscCall(DMSetCoordinatesLocal(dm, coordinates));
25519566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&coordinates));
25520510c589SMatthew G. Knepley   }
2553006a8963SMatthew G. Knepley   /* Create periodicity */
2554006a8963SMatthew G. Knepley   if (periodicZ == DM_BOUNDARY_PERIODIC || periodicZ == DM_BOUNDARY_TWIST) {
25556858538eSMatthew G. Knepley     PetscReal L[3]       = {-1., -1., 0.};
25566858538eSMatthew G. Knepley     PetscReal maxCell[3] = {-1., -1., 0.};
2557006a8963SMatthew G. Knepley     PetscReal lower[3]   = {0.0, 0.0, 0.0};
2558ae8bcbbbSMatthew G. Knepley     PetscReal upper[3]   = {1.0, 1.0, 1.5};
25596858538eSMatthew G. Knepley     PetscInt  numZCells  = 3;
2560006a8963SMatthew G. Knepley 
25616858538eSMatthew G. Knepley     L[2]       = upper[2] - lower[2];
25626858538eSMatthew G. Knepley     maxCell[2] = 1.1 * (L[2] / numZCells);
25634fb89dddSMatthew G. Knepley     PetscCall(DMSetPeriodicity(dm, maxCell, lower, L));
2564006a8963SMatthew G. Knepley   }
2565dbc1dc17SMatthew G. Knepley   {
25669318fe57SMatthew G. Knepley     DM          cdm;
25679318fe57SMatthew G. Knepley     PetscDS     cds;
25689318fe57SMatthew G. Knepley     PetscScalar c[2] = {1.0, 1.0};
2569dbc1dc17SMatthew G. Knepley 
257049704ca5SMatthew G. Knepley     PetscCall(DMPlexCreateCoordinateSpace(dm, 1, PETSC_TRUE, NULL));
25719566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateDM(dm, &cdm));
25729566063dSJacob Faibussowitsch     PetscCall(DMGetDS(cdm, &cds));
25739566063dSJacob Faibussowitsch     PetscCall(PetscDSSetConstants(cds, 2, c));
2574dbc1dc17SMatthew G. Knepley   }
257546139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
257646139095SJed Brown 
25779318fe57SMatthew G. Knepley   /* Wait for coordinate creation before doing in-place modification */
25789566063dSJacob Faibussowitsch   PetscCall(DMPlexInterpolateInPlace_Internal(dm));
257949704ca5SMatthew G. Knepley 
258049704ca5SMatthew G. Knepley   char        oldprefix[PETSC_MAX_PATH_LEN];
258149704ca5SMatthew G. Knepley   const char *prefix;
258249704ca5SMatthew G. Knepley 
258349704ca5SMatthew G. Knepley   PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm, &prefix));
258449704ca5SMatthew G. Knepley   PetscCall(PetscStrncpy(oldprefix, prefix, PETSC_MAX_PATH_LEN));
258549704ca5SMatthew G. Knepley   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, "petsc_cyl_ref_"));
258649704ca5SMatthew G. Knepley   for (PetscInt r = 0; r < PetscMax(0, Nr); ++r) {
258749704ca5SMatthew G. Knepley     DM rdm;
258849704ca5SMatthew G. Knepley 
258949704ca5SMatthew G. Knepley     PetscCall(DMRefine(dm, PetscObjectComm((PetscObject)dm), &rdm));
259049704ca5SMatthew G. Knepley     PetscCall(DMPlexReplace_Internal(dm, &rdm));
259149704ca5SMatthew G. Knepley   }
259249704ca5SMatthew G. Knepley   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, oldprefix));
259349704ca5SMatthew G. Knepley   PetscCall(DMPlexRemapGeometry(dm, 0.0, snapToCylinder));
259449704ca5SMatthew G. Knepley 
259549704ca5SMatthew G. Knepley   DMLabel         bdlabel, edgelabel;
259649704ca5SMatthew G. Knepley   IS              faceIS;
259749704ca5SMatthew G. Knepley   const PetscInt *faces;
259849704ca5SMatthew G. Knepley   PetscInt        Nf;
259949704ca5SMatthew G. Knepley 
260049704ca5SMatthew G. Knepley   PetscCall(DMCreateLabel(dm, "marker"));
260149704ca5SMatthew G. Knepley   PetscCall(DMGetLabel(dm, "marker", &bdlabel));
260249704ca5SMatthew G. Knepley   PetscCall(DMCreateLabel(dm, "generatrix"));
260349704ca5SMatthew G. Knepley   PetscCall(DMGetLabel(dm, "generatrix", &edgelabel));
260449704ca5SMatthew G. Knepley   PetscCall(DMPlexMarkBoundaryFaces(dm, PETSC_DETERMINE, bdlabel));
260549704ca5SMatthew G. Knepley   // Remove faces on top and bottom
260649704ca5SMatthew G. Knepley   PetscCall(DMLabelGetStratumIS(bdlabel, 1, &faceIS));
2607ba1b3593SJeremy L Thompson   if (faceIS) {
260849704ca5SMatthew G. Knepley     PetscCall(ISGetLocalSize(faceIS, &Nf));
260949704ca5SMatthew G. Knepley     PetscCall(ISGetIndices(faceIS, &faces));
261049704ca5SMatthew G. Knepley     for (PetscInt f = 0; f < Nf; ++f) {
261149704ca5SMatthew G. Knepley       PetscReal vol, normal[3];
261249704ca5SMatthew G. Knepley 
261349704ca5SMatthew G. Knepley       PetscCall(DMPlexComputeCellGeometryFVM(dm, faces[f], &vol, NULL, normal));
261449704ca5SMatthew G. Knepley       if (PetscAbsReal(normal[2]) < PETSC_SMALL) PetscCall(DMLabelSetValue(edgelabel, faces[f], 1));
261549704ca5SMatthew G. Knepley     }
261649704ca5SMatthew G. Knepley     PetscCall(ISRestoreIndices(faceIS, &faces));
261749704ca5SMatthew G. Knepley     PetscCall(ISDestroy(&faceIS));
2618ba1b3593SJeremy L Thompson   }
261949704ca5SMatthew G. Knepley   PetscCall(DMPlexLabelComplete(dm, bdlabel));
262049704ca5SMatthew G. Knepley   PetscCall(DMPlexLabelComplete(dm, edgelabel));
26213ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
26220510c589SMatthew G. Knepley }
26230510c589SMatthew G. Knepley 
262424119c2aSMatthew G. Knepley /*@
26259318fe57SMatthew G. Knepley   DMPlexCreateHexCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using hexahedra.
262624119c2aSMatthew G. Knepley 
2627d083f849SBarry Smith   Collective
262824119c2aSMatthew G. Knepley 
262924119c2aSMatthew G. Knepley   Input Parameters:
2630a1cb98faSBarry Smith + comm      - The communicator for the `DM` object
263149704ca5SMatthew G. Knepley . periodicZ - The boundary type for the Z direction
263249704ca5SMatthew G. Knepley - Nr        - The number of refinements to carry out
263324119c2aSMatthew G. Knepley 
263424119c2aSMatthew G. Knepley   Output Parameter:
263520f4b53cSBarry Smith . dm - The `DM` object
263624119c2aSMatthew G. Knepley 
263724119c2aSMatthew G. Knepley   Level: beginner
263824119c2aSMatthew G. Knepley 
2639a1cb98faSBarry Smith   Note:
2640a4e35b19SJacob Faibussowitsch   Here is the output numbering looking from the bottom of the cylinder\:
2641a1cb98faSBarry Smith .vb
2642a1cb98faSBarry Smith        17-----14
2643a1cb98faSBarry Smith         |     |
2644a1cb98faSBarry Smith         |  2  |
2645a1cb98faSBarry Smith         |     |
2646a1cb98faSBarry Smith  17-----8-----7-----14
2647a1cb98faSBarry Smith   |     |     |     |
2648a1cb98faSBarry Smith   |  3  |  0  |  1  |
2649a1cb98faSBarry Smith   |     |     |     |
2650a1cb98faSBarry Smith  19-----5-----6-----13
2651a1cb98faSBarry Smith         |     |
2652a1cb98faSBarry Smith         |  4  |
2653a1cb98faSBarry Smith         |     |
2654a1cb98faSBarry Smith        19-----13
2655a1cb98faSBarry Smith 
2656a1cb98faSBarry Smith  and up through the top
2657a1cb98faSBarry Smith 
2658a1cb98faSBarry Smith        18-----16
2659a1cb98faSBarry Smith         |     |
2660a1cb98faSBarry Smith         |  2  |
2661a1cb98faSBarry Smith         |     |
2662a1cb98faSBarry Smith  18----10----11-----16
2663a1cb98faSBarry Smith   |     |     |     |
2664a1cb98faSBarry Smith   |  3  |  0  |  1  |
2665a1cb98faSBarry Smith   |     |     |     |
2666a1cb98faSBarry Smith  20-----9----12-----15
2667a1cb98faSBarry Smith         |     |
2668a1cb98faSBarry Smith         |  4  |
2669a1cb98faSBarry Smith         |     |
2670a1cb98faSBarry Smith        20-----15
2671a1cb98faSBarry Smith .ve
2672a1cb98faSBarry Smith 
26731cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()`
267424119c2aSMatthew G. Knepley @*/
267549704ca5SMatthew G. Knepley PetscErrorCode DMPlexCreateHexCylinderMesh(MPI_Comm comm, DMBoundaryType periodicZ, PetscInt Nr, DM *dm)
2676d71ae5a4SJacob Faibussowitsch {
26779318fe57SMatthew G. Knepley   PetscFunctionBegin;
267849704ca5SMatthew G. Knepley   PetscAssertPointer(dm, 4);
26799566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
26809566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
268149704ca5SMatthew G. Knepley   PetscCall(DMPlexCreateHexCylinderMesh_Internal(*dm, periodicZ, Nr));
26823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
26839318fe57SMatthew G. Knepley }
26849318fe57SMatthew G. Knepley 
2685d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateWedgeCylinderMesh_Internal(DM dm, PetscInt n, PetscBool interpolate)
2686d71ae5a4SJacob Faibussowitsch {
268724119c2aSMatthew G. Knepley   const PetscInt dim = 3;
2688412e9a14SMatthew G. Knepley   PetscInt       numCells, numVertices, v;
26899fe9f049SMatthew G. Knepley   PetscMPIInt    rank;
269024119c2aSMatthew G. Knepley 
269124119c2aSMatthew G. Knepley   PetscFunctionBegin;
269263a3b9bcSJacob Faibussowitsch   PetscCheck(n >= 0, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of wedges %" PetscInt_FMT " cannot be negative", n);
269346139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
26949566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
26959566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
2696412e9a14SMatthew G. Knepley   /* Must create the celltype label here so that we do not automatically try to compute the types */
26979566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "celltype"));
269824119c2aSMatthew G. Knepley   /* Create topology */
269924119c2aSMatthew G. Knepley   {
270024119c2aSMatthew G. Knepley     PetscInt cone[6], c;
270124119c2aSMatthew G. Knepley 
2702dd400576SPatrick Sanan     numCells    = rank == 0 ? n : 0;
2703dd400576SPatrick Sanan     numVertices = rank == 0 ? 2 * (n + 1) : 0;
27049566063dSJacob Faibussowitsch     PetscCall(DMPlexSetChart(dm, 0, numCells + numVertices));
27059566063dSJacob Faibussowitsch     for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 6));
27069566063dSJacob Faibussowitsch     PetscCall(DMSetUp(dm));
270724119c2aSMatthew G. Knepley     for (c = 0; c < numCells; c++) {
27089371c9d4SSatish Balay       cone[0] = c + n * 1;
27099371c9d4SSatish Balay       cone[1] = (c + 1) % n + n * 1;
27109371c9d4SSatish Balay       cone[2] = 0 + 3 * n;
27119371c9d4SSatish Balay       cone[3] = c + n * 2;
27129371c9d4SSatish Balay       cone[4] = (c + 1) % n + n * 2;
27139371c9d4SSatish Balay       cone[5] = 1 + 3 * n;
27149566063dSJacob Faibussowitsch       PetscCall(DMPlexSetCone(dm, c, cone));
27159566063dSJacob Faibussowitsch       PetscCall(DMPlexSetCellType(dm, c, DM_POLYTOPE_TRI_PRISM_TENSOR));
271624119c2aSMatthew G. Knepley     }
27179566063dSJacob Faibussowitsch     PetscCall(DMPlexSymmetrize(dm));
27189566063dSJacob Faibussowitsch     PetscCall(DMPlexStratify(dm));
271924119c2aSMatthew G. Knepley   }
272048a46eb9SPierre Jolivet   for (v = numCells; v < numCells + numVertices; ++v) PetscCall(DMPlexSetCellType(dm, v, DM_POLYTOPE_POINT));
272124119c2aSMatthew G. Knepley   /* Create cylinder geometry */
272224119c2aSMatthew G. Knepley   {
272324119c2aSMatthew G. Knepley     Vec          coordinates;
272424119c2aSMatthew G. Knepley     PetscSection coordSection;
272524119c2aSMatthew G. Knepley     PetscScalar *coords;
2726412e9a14SMatthew G. Knepley     PetscInt     coordSize, c;
272724119c2aSMatthew G. Knepley 
272824119c2aSMatthew G. Knepley     /* Build coordinates */
27299566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateSection(dm, &coordSection));
27309566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetNumFields(coordSection, 1));
27319566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim));
27329566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetChart(coordSection, numCells, numCells + numVertices));
273324119c2aSMatthew G. Knepley     for (v = numCells; v < numCells + numVertices; ++v) {
27349566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetDof(coordSection, v, dim));
27359566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim));
273624119c2aSMatthew G. Knepley     }
27379566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetUp(coordSection));
27389566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
27399566063dSJacob Faibussowitsch     PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
27409566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
27419566063dSJacob Faibussowitsch     PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
27429566063dSJacob Faibussowitsch     PetscCall(VecSetBlockSize(coordinates, dim));
27439566063dSJacob Faibussowitsch     PetscCall(VecSetType(coordinates, VECSTANDARD));
27449566063dSJacob Faibussowitsch     PetscCall(VecGetArray(coordinates, &coords));
274524119c2aSMatthew G. Knepley     for (c = 0; c < numCells; c++) {
27469371c9d4SSatish Balay       coords[(c + 0 * n) * dim + 0] = PetscCosReal(2.0 * c * PETSC_PI / n);
27479371c9d4SSatish Balay       coords[(c + 0 * n) * dim + 1] = PetscSinReal(2.0 * c * PETSC_PI / n);
27489371c9d4SSatish Balay       coords[(c + 0 * n) * dim + 2] = 1.0;
27499371c9d4SSatish Balay       coords[(c + 1 * n) * dim + 0] = PetscCosReal(2.0 * c * PETSC_PI / n);
27509371c9d4SSatish Balay       coords[(c + 1 * n) * dim + 1] = PetscSinReal(2.0 * c * PETSC_PI / n);
27519371c9d4SSatish Balay       coords[(c + 1 * n) * dim + 2] = 0.0;
275224119c2aSMatthew G. Knepley     }
2753dd400576SPatrick Sanan     if (rank == 0) {
27549371c9d4SSatish Balay       coords[(2 * n + 0) * dim + 0] = 0.0;
27559371c9d4SSatish Balay       coords[(2 * n + 0) * dim + 1] = 0.0;
27569371c9d4SSatish Balay       coords[(2 * n + 0) * dim + 2] = 1.0;
27579371c9d4SSatish Balay       coords[(2 * n + 1) * dim + 0] = 0.0;
27589371c9d4SSatish Balay       coords[(2 * n + 1) * dim + 1] = 0.0;
27599371c9d4SSatish Balay       coords[(2 * n + 1) * dim + 2] = 0.0;
27609fe9f049SMatthew G. Knepley     }
27619566063dSJacob Faibussowitsch     PetscCall(VecRestoreArray(coordinates, &coords));
27629566063dSJacob Faibussowitsch     PetscCall(DMSetCoordinatesLocal(dm, coordinates));
27639566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&coordinates));
276424119c2aSMatthew G. Knepley   }
276546139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
27669318fe57SMatthew G. Knepley   /* Interpolate */
27679566063dSJacob Faibussowitsch   if (interpolate) PetscCall(DMPlexInterpolateInPlace_Internal(dm));
27683ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
27699318fe57SMatthew G. Knepley }
27709318fe57SMatthew G. Knepley 
27719318fe57SMatthew G. Knepley /*@
27729318fe57SMatthew G. Knepley   DMPlexCreateWedgeCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using wedges.
27739318fe57SMatthew G. Knepley 
27749318fe57SMatthew G. Knepley   Collective
27759318fe57SMatthew G. Knepley 
27769318fe57SMatthew G. Knepley   Input Parameters:
2777a1cb98faSBarry Smith + comm        - The communicator for the `DM` object
27789318fe57SMatthew G. Knepley . n           - The number of wedges around the origin
27799318fe57SMatthew G. Knepley - interpolate - Create edges and faces
27809318fe57SMatthew G. Knepley 
27819318fe57SMatthew G. Knepley   Output Parameter:
2782a1cb98faSBarry Smith . dm - The `DM` object
27839318fe57SMatthew G. Knepley 
27849318fe57SMatthew G. Knepley   Level: beginner
27859318fe57SMatthew G. Knepley 
27861cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateHexCylinderMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()`
27879318fe57SMatthew G. Knepley @*/
2788d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateWedgeCylinderMesh(MPI_Comm comm, PetscInt n, PetscBool interpolate, DM *dm)
2789d71ae5a4SJacob Faibussowitsch {
27909318fe57SMatthew G. Knepley   PetscFunctionBegin;
27914f572ea9SToby Isaac   PetscAssertPointer(dm, 4);
27929566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
27939566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
27949566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateWedgeCylinderMesh_Internal(*dm, n, interpolate));
27953ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
279624119c2aSMatthew G. Knepley }
279724119c2aSMatthew G. Knepley 
2798d71ae5a4SJacob Faibussowitsch static inline PetscReal DiffNormReal(PetscInt dim, const PetscReal x[], const PetscReal y[])
2799d71ae5a4SJacob Faibussowitsch {
280065a81367SMatthew G. Knepley   PetscReal prod = 0.0;
280165a81367SMatthew G. Knepley   PetscInt  i;
280265a81367SMatthew G. Knepley   for (i = 0; i < dim; ++i) prod += PetscSqr(x[i] - y[i]);
280365a81367SMatthew G. Knepley   return PetscSqrtReal(prod);
280465a81367SMatthew G. Knepley }
2805dd2b43ebSStefano Zampini 
2806d71ae5a4SJacob Faibussowitsch static inline PetscReal DotReal(PetscInt dim, const PetscReal x[], const PetscReal y[])
2807d71ae5a4SJacob Faibussowitsch {
280865a81367SMatthew G. Knepley   PetscReal prod = 0.0;
280965a81367SMatthew G. Knepley   PetscInt  i;
281065a81367SMatthew G. Knepley   for (i = 0; i < dim; ++i) prod += x[i] * y[i];
281165a81367SMatthew G. Knepley   return prod;
281265a81367SMatthew G. Knepley }
281365a81367SMatthew G. Knepley 
281451a74b61SMatthew G. Knepley /* The first constant is the sphere radius */
2815d71ae5a4SJacob Faibussowitsch static void snapToSphere(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f0[])
2816d71ae5a4SJacob Faibussowitsch {
281751a74b61SMatthew G. Knepley   PetscReal r     = PetscRealPart(constants[0]);
281851a74b61SMatthew G. Knepley   PetscReal norm2 = 0.0, fac;
281951a74b61SMatthew G. Knepley   PetscInt  n     = uOff[1] - uOff[0], d;
282051a74b61SMatthew G. Knepley 
282151a74b61SMatthew G. Knepley   for (d = 0; d < n; ++d) norm2 += PetscSqr(PetscRealPart(u[d]));
282251a74b61SMatthew G. Knepley   fac = r / PetscSqrtReal(norm2);
282351a74b61SMatthew G. Knepley   for (d = 0; d < n; ++d) f0[d] = u[d] * fac;
282451a74b61SMatthew G. Knepley }
282551a74b61SMatthew G. Knepley 
2826d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateSphereMesh_Internal(DM dm, PetscInt dim, PetscBool simplex, PetscReal R)
2827d71ae5a4SJacob Faibussowitsch {
282865a81367SMatthew G. Knepley   const PetscInt embedDim = dim + 1;
282965a81367SMatthew G. Knepley   PetscSection   coordSection;
283065a81367SMatthew G. Knepley   Vec            coordinates;
283165a81367SMatthew G. Knepley   PetscScalar   *coords;
283265a81367SMatthew G. Knepley   PetscReal     *coordsIn;
283307c565c5SJose E. Roman   PetscInt       numCells, numEdges, numVerts = 0, firstVertex = 0, v, firstEdge, coordSize, d, e;
283465a81367SMatthew G. Knepley   PetscMPIInt    rank;
283565a81367SMatthew G. Knepley 
283665a81367SMatthew G. Knepley   PetscFunctionBegin;
28379318fe57SMatthew G. Knepley   PetscValidLogicalCollectiveBool(dm, simplex, 3);
283846139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
28399566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, dim));
28409566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, dim + 1));
28419566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
284265a81367SMatthew G. Knepley   switch (dim) {
28435c344501SMatthew G. Knepley   case 1:
28445c344501SMatthew G. Knepley     numCells = 16;
28455c344501SMatthew G. Knepley     numVerts = numCells;
28465c344501SMatthew G. Knepley 
28475c344501SMatthew G. Knepley     // Build Topology
28485c344501SMatthew G. Knepley     PetscCall(DMPlexSetChart(dm, 0, numCells + numVerts));
28495c344501SMatthew G. Knepley     for (PetscInt c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, embedDim));
28505c344501SMatthew G. Knepley     PetscCall(DMSetUp(dm));
28515c344501SMatthew G. Knepley     for (PetscInt c = 0; c < numCells; ++c) {
28525c344501SMatthew G. Knepley       PetscInt cone[2];
28535c344501SMatthew G. Knepley 
28545c344501SMatthew G. Knepley       cone[0] = c + numCells;
28555c344501SMatthew G. Knepley       cone[1] = (c + 1) % numVerts + numCells;
28565c344501SMatthew G. Knepley       PetscCall(DMPlexSetCone(dm, c, cone));
28575c344501SMatthew G. Knepley     }
28585c344501SMatthew G. Knepley     PetscCall(DMPlexSymmetrize(dm));
28595c344501SMatthew G. Knepley     PetscCall(DMPlexStratify(dm));
28605c344501SMatthew G. Knepley     PetscCall(PetscMalloc1(numVerts * embedDim, &coordsIn));
28615c344501SMatthew G. Knepley     for (PetscInt v = 0; v < numVerts; ++v) {
28625c344501SMatthew G. Knepley       const PetscReal rad = 2. * PETSC_PI * v / numVerts;
28635c344501SMatthew G. Knepley 
28645c344501SMatthew G. Knepley       coordsIn[v * embedDim + 0] = PetscCosReal(rad);
28655c344501SMatthew G. Knepley       coordsIn[v * embedDim + 1] = PetscSinReal(rad);
28665c344501SMatthew G. Knepley     }
28675c344501SMatthew G. Knepley     break;
286865a81367SMatthew G. Knepley   case 2:
286965a81367SMatthew G. Knepley     if (simplex) {
287051a74b61SMatthew G. Knepley       const PetscReal radius    = PetscSqrtReal(1 + PETSC_PHI * PETSC_PHI) / (1.0 + PETSC_PHI);
287151a74b61SMatthew G. Knepley       const PetscReal edgeLen   = 2.0 / (1.0 + PETSC_PHI) * (R / radius);
287265a81367SMatthew G. Knepley       const PetscInt  degree    = 5;
287351a74b61SMatthew G. Knepley       PetscReal       vertex[3] = {0.0, 1.0 / (1.0 + PETSC_PHI), PETSC_PHI / (1.0 + PETSC_PHI)};
287465a81367SMatthew G. Knepley       PetscInt        s[3]      = {1, 1, 1};
287565a81367SMatthew G. Knepley       PetscInt        cone[3];
287607c565c5SJose E. Roman       PetscInt       *graph;
287765a81367SMatthew G. Knepley 
28789371c9d4SSatish Balay       vertex[0] *= R / radius;
28799371c9d4SSatish Balay       vertex[1] *= R / radius;
28809371c9d4SSatish Balay       vertex[2] *= R / radius;
2881dd400576SPatrick Sanan       numCells    = rank == 0 ? 20 : 0;
2882dd400576SPatrick Sanan       numVerts    = rank == 0 ? 12 : 0;
288365a81367SMatthew G. Knepley       firstVertex = numCells;
288451a74b61SMatthew G. Knepley       /* Use icosahedron, which for a R-sphere has coordinates which are all cyclic permutations of
288565a81367SMatthew G. Knepley 
288665a81367SMatthew G. Knepley            (0, \pm 1/\phi+1, \pm \phi/\phi+1)
288765a81367SMatthew G. Knepley 
288865a81367SMatthew G. Knepley          where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge
288951a74b61SMatthew G. Knepley          length is then given by 2/(1+\phi) = 2 * 0.38197 = 0.76393.
289065a81367SMatthew G. Knepley       */
289165a81367SMatthew G. Knepley       /* Construct vertices */
28929566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn));
2893dd400576SPatrick Sanan       if (rank == 0) {
289407c565c5SJose E. Roman         for (PetscInt p = 0, i = 0; p < embedDim; ++p) {
289565a81367SMatthew G. Knepley           for (s[1] = -1; s[1] < 2; s[1] += 2) {
289665a81367SMatthew G. Knepley             for (s[2] = -1; s[2] < 2; s[2] += 2) {
289765a81367SMatthew G. Knepley               for (d = 0; d < embedDim; ++d) coordsIn[i * embedDim + d] = s[(d + p) % embedDim] * vertex[(d + p) % embedDim];
289865a81367SMatthew G. Knepley               ++i;
289965a81367SMatthew G. Knepley             }
290065a81367SMatthew G. Knepley           }
290165a81367SMatthew G. Knepley         }
290245da822fSValeria Barra       }
290365a81367SMatthew G. Knepley       /* Construct graph */
29049566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numVerts * numVerts, &graph));
290507c565c5SJose E. Roman       for (PetscInt i = 0; i < numVerts; ++i) {
290607c565c5SJose E. Roman         PetscInt k = 0;
290707c565c5SJose E. Roman         for (PetscInt j = 0; j < numVerts; ++j) {
29089371c9d4SSatish Balay           if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i * embedDim], &coordsIn[j * embedDim]) - edgeLen) < PETSC_SMALL) {
29099371c9d4SSatish Balay             graph[i * numVerts + j] = 1;
29109371c9d4SSatish Balay             ++k;
29119371c9d4SSatish Balay           }
291265a81367SMatthew G. Knepley         }
291363a3b9bcSJacob Faibussowitsch         PetscCheck(k == degree, PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Invalid icosahedron, vertex %" PetscInt_FMT " degree %" PetscInt_FMT " != %" PetscInt_FMT, i, k, degree);
291465a81367SMatthew G. Knepley       }
291565a81367SMatthew G. Knepley       /* Build Topology */
29169566063dSJacob Faibussowitsch       PetscCall(DMPlexSetChart(dm, 0, numCells + numVerts));
291707c565c5SJose E. Roman       for (PetscInt c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, embedDim));
29189566063dSJacob Faibussowitsch       PetscCall(DMSetUp(dm)); /* Allocate space for cones */
291965a81367SMatthew G. Knepley       /* Cells */
292007c565c5SJose E. Roman       for (PetscInt i = 0, c = 0; i < numVerts; ++i) {
292107c565c5SJose E. Roman         for (PetscInt j = 0; j < i; ++j) {
292207c565c5SJose E. Roman           for (PetscInt k = 0; k < j; ++k) {
292365a81367SMatthew G. Knepley             if (graph[i * numVerts + j] && graph[j * numVerts + k] && graph[k * numVerts + i]) {
29249371c9d4SSatish Balay               cone[0] = firstVertex + i;
29259371c9d4SSatish Balay               cone[1] = firstVertex + j;
29269371c9d4SSatish Balay               cone[2] = firstVertex + k;
292765a81367SMatthew G. Knepley               /* Check orientation */
292865a81367SMatthew G. Knepley               {
29299371c9d4SSatish Balay                 const PetscInt epsilon[3][3][3] = {
29309371c9d4SSatish Balay                   {{0, 0, 0},  {0, 0, 1},  {0, -1, 0}},
29319371c9d4SSatish Balay                   {{0, 0, -1}, {0, 0, 0},  {1, 0, 0} },
29329371c9d4SSatish Balay                   {{0, 1, 0},  {-1, 0, 0}, {0, 0, 0} }
29339371c9d4SSatish Balay                 };
293465a81367SMatthew G. Knepley                 PetscReal normal[3];
293565a81367SMatthew G. Knepley                 PetscInt  e, f;
293665a81367SMatthew G. Knepley 
293765a81367SMatthew G. Knepley                 for (d = 0; d < embedDim; ++d) {
293865a81367SMatthew G. Knepley                   normal[d] = 0.0;
293965a81367SMatthew G. Knepley                   for (e = 0; e < embedDim; ++e) {
2940ad540459SPierre Jolivet                     for (f = 0; f < embedDim; ++f) normal[d] += epsilon[d][e][f] * (coordsIn[j * embedDim + e] - coordsIn[i * embedDim + e]) * (coordsIn[k * embedDim + f] - coordsIn[i * embedDim + f]);
294165a81367SMatthew G. Knepley                   }
294265a81367SMatthew G. Knepley                 }
29439371c9d4SSatish Balay                 if (DotReal(embedDim, normal, &coordsIn[i * embedDim]) < 0) {
29449371c9d4SSatish Balay                   PetscInt tmp = cone[1];
29459371c9d4SSatish Balay                   cone[1]      = cone[2];
29469371c9d4SSatish Balay                   cone[2]      = tmp;
294765a81367SMatthew G. Knepley                 }
294865a81367SMatthew G. Knepley               }
29499566063dSJacob Faibussowitsch               PetscCall(DMPlexSetCone(dm, c++, cone));
295065a81367SMatthew G. Knepley             }
295165a81367SMatthew G. Knepley           }
295265a81367SMatthew G. Knepley         }
295365a81367SMatthew G. Knepley       }
29549566063dSJacob Faibussowitsch       PetscCall(DMPlexSymmetrize(dm));
29559566063dSJacob Faibussowitsch       PetscCall(DMPlexStratify(dm));
29569566063dSJacob Faibussowitsch       PetscCall(PetscFree(graph));
295765a81367SMatthew G. Knepley     } else {
29582829fed8SMatthew G. Knepley       /*
29592829fed8SMatthew G. Knepley         12-21--13
29602829fed8SMatthew G. Knepley          |     |
29612829fed8SMatthew G. Knepley         25  4  24
29622829fed8SMatthew G. Knepley          |     |
29632829fed8SMatthew G. Knepley   12-25--9-16--8-24--13
29642829fed8SMatthew G. Knepley    |     |     |     |
29652829fed8SMatthew G. Knepley   23  5 17  0 15  3  22
29662829fed8SMatthew G. Knepley    |     |     |     |
29672829fed8SMatthew G. Knepley   10-20--6-14--7-19--11
29682829fed8SMatthew G. Knepley          |     |
29692829fed8SMatthew G. Knepley         20  1  19
29702829fed8SMatthew G. Knepley          |     |
29712829fed8SMatthew G. Knepley         10-18--11
29722829fed8SMatthew G. Knepley          |     |
29732829fed8SMatthew G. Knepley         23  2  22
29742829fed8SMatthew G. Knepley          |     |
29752829fed8SMatthew G. Knepley         12-21--13
29762829fed8SMatthew G. Knepley        */
29772829fed8SMatthew G. Knepley       PetscInt cone[4], ornt[4];
29782829fed8SMatthew G. Knepley 
2979dd400576SPatrick Sanan       numCells    = rank == 0 ? 6 : 0;
2980dd400576SPatrick Sanan       numEdges    = rank == 0 ? 12 : 0;
2981dd400576SPatrick Sanan       numVerts    = rank == 0 ? 8 : 0;
298265a81367SMatthew G. Knepley       firstVertex = numCells;
298365a81367SMatthew G. Knepley       firstEdge   = numCells + numVerts;
29842829fed8SMatthew G. Knepley       /* Build Topology */
29859566063dSJacob Faibussowitsch       PetscCall(DMPlexSetChart(dm, 0, numCells + numEdges + numVerts));
298607c565c5SJose E. Roman       for (PetscInt c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 4));
298748a46eb9SPierre Jolivet       for (e = firstEdge; e < firstEdge + numEdges; ++e) PetscCall(DMPlexSetConeSize(dm, e, 2));
29889566063dSJacob Faibussowitsch       PetscCall(DMSetUp(dm)); /* Allocate space for cones */
2989dd400576SPatrick Sanan       if (rank == 0) {
29902829fed8SMatthew G. Knepley         /* Cell 0 */
29919371c9d4SSatish Balay         cone[0] = 14;
29929371c9d4SSatish Balay         cone[1] = 15;
29939371c9d4SSatish Balay         cone[2] = 16;
29949371c9d4SSatish Balay         cone[3] = 17;
29959566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 0, cone));
29969371c9d4SSatish Balay         ornt[0] = 0;
29979371c9d4SSatish Balay         ornt[1] = 0;
29989371c9d4SSatish Balay         ornt[2] = 0;
29999371c9d4SSatish Balay         ornt[3] = 0;
30009566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 0, ornt));
30012829fed8SMatthew G. Knepley         /* Cell 1 */
30029371c9d4SSatish Balay         cone[0] = 18;
30039371c9d4SSatish Balay         cone[1] = 19;
30049371c9d4SSatish Balay         cone[2] = 14;
30059371c9d4SSatish Balay         cone[3] = 20;
30069566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 1, cone));
30079371c9d4SSatish Balay         ornt[0] = 0;
30089371c9d4SSatish Balay         ornt[1] = 0;
30099371c9d4SSatish Balay         ornt[2] = -1;
30109371c9d4SSatish Balay         ornt[3] = 0;
30119566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 1, ornt));
30122829fed8SMatthew G. Knepley         /* Cell 2 */
30139371c9d4SSatish Balay         cone[0] = 21;
30149371c9d4SSatish Balay         cone[1] = 22;
30159371c9d4SSatish Balay         cone[2] = 18;
30169371c9d4SSatish Balay         cone[3] = 23;
30179566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 2, cone));
30189371c9d4SSatish Balay         ornt[0] = 0;
30199371c9d4SSatish Balay         ornt[1] = 0;
30209371c9d4SSatish Balay         ornt[2] = -1;
30219371c9d4SSatish Balay         ornt[3] = 0;
30229566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 2, ornt));
30232829fed8SMatthew G. Knepley         /* Cell 3 */
30249371c9d4SSatish Balay         cone[0] = 19;
30259371c9d4SSatish Balay         cone[1] = 22;
30269371c9d4SSatish Balay         cone[2] = 24;
30279371c9d4SSatish Balay         cone[3] = 15;
30289566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 3, cone));
30299371c9d4SSatish Balay         ornt[0] = -1;
30309371c9d4SSatish Balay         ornt[1] = -1;
30319371c9d4SSatish Balay         ornt[2] = 0;
30329371c9d4SSatish Balay         ornt[3] = -1;
30339566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 3, ornt));
30342829fed8SMatthew G. Knepley         /* Cell 4 */
30359371c9d4SSatish Balay         cone[0] = 16;
30369371c9d4SSatish Balay         cone[1] = 24;
30379371c9d4SSatish Balay         cone[2] = 21;
30389371c9d4SSatish Balay         cone[3] = 25;
30399566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 4, cone));
30409371c9d4SSatish Balay         ornt[0] = -1;
30419371c9d4SSatish Balay         ornt[1] = -1;
30429371c9d4SSatish Balay         ornt[2] = -1;
30439371c9d4SSatish Balay         ornt[3] = 0;
30449566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 4, ornt));
30452829fed8SMatthew G. Knepley         /* Cell 5 */
30469371c9d4SSatish Balay         cone[0] = 20;
30479371c9d4SSatish Balay         cone[1] = 17;
30489371c9d4SSatish Balay         cone[2] = 25;
30499371c9d4SSatish Balay         cone[3] = 23;
30509566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 5, cone));
30519371c9d4SSatish Balay         ornt[0] = -1;
30529371c9d4SSatish Balay         ornt[1] = -1;
30539371c9d4SSatish Balay         ornt[2] = -1;
30549371c9d4SSatish Balay         ornt[3] = -1;
30559566063dSJacob Faibussowitsch         PetscCall(DMPlexSetConeOrientation(dm, 5, ornt));
30562829fed8SMatthew G. Knepley         /* Edges */
30579371c9d4SSatish Balay         cone[0] = 6;
30589371c9d4SSatish Balay         cone[1] = 7;
30599566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 14, cone));
30609371c9d4SSatish Balay         cone[0] = 7;
30619371c9d4SSatish Balay         cone[1] = 8;
30629566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 15, cone));
30639371c9d4SSatish Balay         cone[0] = 8;
30649371c9d4SSatish Balay         cone[1] = 9;
30659566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 16, cone));
30669371c9d4SSatish Balay         cone[0] = 9;
30679371c9d4SSatish Balay         cone[1] = 6;
30689566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 17, cone));
30699371c9d4SSatish Balay         cone[0] = 10;
30709371c9d4SSatish Balay         cone[1] = 11;
30719566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 18, cone));
30729371c9d4SSatish Balay         cone[0] = 11;
30739371c9d4SSatish Balay         cone[1] = 7;
30749566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 19, cone));
30759371c9d4SSatish Balay         cone[0] = 6;
30769371c9d4SSatish Balay         cone[1] = 10;
30779566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 20, cone));
30789371c9d4SSatish Balay         cone[0] = 12;
30799371c9d4SSatish Balay         cone[1] = 13;
30809566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 21, cone));
30819371c9d4SSatish Balay         cone[0] = 13;
30829371c9d4SSatish Balay         cone[1] = 11;
30839566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 22, cone));
30849371c9d4SSatish Balay         cone[0] = 10;
30859371c9d4SSatish Balay         cone[1] = 12;
30869566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 23, cone));
30879371c9d4SSatish Balay         cone[0] = 13;
30889371c9d4SSatish Balay         cone[1] = 8;
30899566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 24, cone));
30909371c9d4SSatish Balay         cone[0] = 12;
30919371c9d4SSatish Balay         cone[1] = 9;
30929566063dSJacob Faibussowitsch         PetscCall(DMPlexSetCone(dm, 25, cone));
309345da822fSValeria Barra       }
30949566063dSJacob Faibussowitsch       PetscCall(DMPlexSymmetrize(dm));
30959566063dSJacob Faibussowitsch       PetscCall(DMPlexStratify(dm));
30962829fed8SMatthew G. Knepley       /* Build coordinates */
30979566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn));
3098dd400576SPatrick Sanan       if (rank == 0) {
30999371c9d4SSatish Balay         coordsIn[0 * embedDim + 0] = -R;
31009371c9d4SSatish Balay         coordsIn[0 * embedDim + 1] = R;
31019371c9d4SSatish Balay         coordsIn[0 * embedDim + 2] = -R;
31029371c9d4SSatish Balay         coordsIn[1 * embedDim + 0] = R;
31039371c9d4SSatish Balay         coordsIn[1 * embedDim + 1] = R;
31049371c9d4SSatish Balay         coordsIn[1 * embedDim + 2] = -R;
31059371c9d4SSatish Balay         coordsIn[2 * embedDim + 0] = R;
31069371c9d4SSatish Balay         coordsIn[2 * embedDim + 1] = -R;
31079371c9d4SSatish Balay         coordsIn[2 * embedDim + 2] = -R;
31089371c9d4SSatish Balay         coordsIn[3 * embedDim + 0] = -R;
31099371c9d4SSatish Balay         coordsIn[3 * embedDim + 1] = -R;
31109371c9d4SSatish Balay         coordsIn[3 * embedDim + 2] = -R;
31119371c9d4SSatish Balay         coordsIn[4 * embedDim + 0] = -R;
31129371c9d4SSatish Balay         coordsIn[4 * embedDim + 1] = R;
31139371c9d4SSatish Balay         coordsIn[4 * embedDim + 2] = R;
31149371c9d4SSatish Balay         coordsIn[5 * embedDim + 0] = R;
31159371c9d4SSatish Balay         coordsIn[5 * embedDim + 1] = R;
31169371c9d4SSatish Balay         coordsIn[5 * embedDim + 2] = R;
31179371c9d4SSatish Balay         coordsIn[6 * embedDim + 0] = -R;
31189371c9d4SSatish Balay         coordsIn[6 * embedDim + 1] = -R;
31199371c9d4SSatish Balay         coordsIn[6 * embedDim + 2] = R;
31209371c9d4SSatish Balay         coordsIn[7 * embedDim + 0] = R;
31219371c9d4SSatish Balay         coordsIn[7 * embedDim + 1] = -R;
31229371c9d4SSatish Balay         coordsIn[7 * embedDim + 2] = R;
312365a81367SMatthew G. Knepley       }
312445da822fSValeria Barra     }
312565a81367SMatthew G. Knepley     break;
312665a81367SMatthew G. Knepley   case 3:
3127116ded15SMatthew G. Knepley     if (simplex) {
3128116ded15SMatthew G. Knepley       const PetscReal edgeLen         = 1.0 / PETSC_PHI;
312951a74b61SMatthew G. Knepley       PetscReal       vertexA[4]      = {0.5, 0.5, 0.5, 0.5};
313051a74b61SMatthew G. Knepley       PetscReal       vertexB[4]      = {1.0, 0.0, 0.0, 0.0};
313151a74b61SMatthew G. Knepley       PetscReal       vertexC[4]      = {0.5, 0.5 * PETSC_PHI, 0.5 / PETSC_PHI, 0.0};
3132116ded15SMatthew G. Knepley       const PetscInt  degree          = 12;
3133116ded15SMatthew G. Knepley       PetscInt        s[4]            = {1, 1, 1};
31349371c9d4SSatish Balay       PetscInt        evenPerm[12][4] = {
31359371c9d4SSatish Balay         {0, 1, 2, 3},
31369371c9d4SSatish Balay         {0, 2, 3, 1},
31379371c9d4SSatish Balay         {0, 3, 1, 2},
31389371c9d4SSatish Balay         {1, 0, 3, 2},
31399371c9d4SSatish Balay         {1, 2, 0, 3},
31409371c9d4SSatish Balay         {1, 3, 2, 0},
31419371c9d4SSatish Balay         {2, 0, 1, 3},
31429371c9d4SSatish Balay         {2, 1, 3, 0},
31439371c9d4SSatish Balay         {2, 3, 0, 1},
31449371c9d4SSatish Balay         {3, 0, 2, 1},
31459371c9d4SSatish Balay         {3, 1, 0, 2},
31469371c9d4SSatish Balay         {3, 2, 1, 0}
31479371c9d4SSatish Balay       };
3148116ded15SMatthew G. Knepley       PetscInt  cone[4];
3149116ded15SMatthew G. Knepley       PetscInt *graph, p, i, j, k, l;
3150116ded15SMatthew G. Knepley 
31519371c9d4SSatish Balay       vertexA[0] *= R;
31529371c9d4SSatish Balay       vertexA[1] *= R;
31539371c9d4SSatish Balay       vertexA[2] *= R;
31549371c9d4SSatish Balay       vertexA[3] *= R;
31559371c9d4SSatish Balay       vertexB[0] *= R;
31569371c9d4SSatish Balay       vertexB[1] *= R;
31579371c9d4SSatish Balay       vertexB[2] *= R;
31589371c9d4SSatish Balay       vertexB[3] *= R;
31599371c9d4SSatish Balay       vertexC[0] *= R;
31609371c9d4SSatish Balay       vertexC[1] *= R;
31619371c9d4SSatish Balay       vertexC[2] *= R;
31629371c9d4SSatish Balay       vertexC[3] *= R;
3163dd400576SPatrick Sanan       numCells    = rank == 0 ? 600 : 0;
3164dd400576SPatrick Sanan       numVerts    = rank == 0 ? 120 : 0;
3165116ded15SMatthew G. Knepley       firstVertex = numCells;
3166116ded15SMatthew G. Knepley       /* Use the 600-cell, which for a unit sphere has coordinates which are
3167116ded15SMatthew G. Knepley 
3168116ded15SMatthew G. Knepley            1/2 (\pm 1, \pm 1,    \pm 1, \pm 1)                          16
3169116ded15SMatthew G. Knepley                (\pm 1,    0,       0,      0)  all cyclic permutations   8
3170116ded15SMatthew G. Knepley            1/2 (\pm 1, \pm phi, \pm 1/phi, 0)  all even permutations    96
3171116ded15SMatthew G. Knepley 
3172116ded15SMatthew G. Knepley          where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge
31736333ae4fSvaleriabarra          length is then given by 1/\phi = 0.61803.
3174116ded15SMatthew G. Knepley 
3175116ded15SMatthew G. Knepley          http://buzzard.pugetsound.edu/sage-practice/ch03s03.html
3176116ded15SMatthew G. Knepley          http://mathworld.wolfram.com/600-Cell.html
3177116ded15SMatthew G. Knepley       */
3178116ded15SMatthew G. Knepley       /* Construct vertices */
31799566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn));
3180116ded15SMatthew G. Knepley       i = 0;
3181dd400576SPatrick Sanan       if (rank == 0) {
3182116ded15SMatthew G. Knepley         for (s[0] = -1; s[0] < 2; s[0] += 2) {
3183116ded15SMatthew G. Knepley           for (s[1] = -1; s[1] < 2; s[1] += 2) {
3184116ded15SMatthew G. Knepley             for (s[2] = -1; s[2] < 2; s[2] += 2) {
3185116ded15SMatthew G. Knepley               for (s[3] = -1; s[3] < 2; s[3] += 2) {
3186116ded15SMatthew G. Knepley                 for (d = 0; d < embedDim; ++d) coordsIn[i * embedDim + d] = s[d] * vertexA[d];
3187116ded15SMatthew G. Knepley                 ++i;
3188116ded15SMatthew G. Knepley               }
3189116ded15SMatthew G. Knepley             }
3190116ded15SMatthew G. Knepley           }
3191116ded15SMatthew G. Knepley         }
3192116ded15SMatthew G. Knepley         for (p = 0; p < embedDim; ++p) {
3193116ded15SMatthew G. Knepley           s[1] = s[2] = s[3] = 1;
3194116ded15SMatthew G. Knepley           for (s[0] = -1; s[0] < 2; s[0] += 2) {
3195116ded15SMatthew G. Knepley             for (d = 0; d < embedDim; ++d) coordsIn[i * embedDim + d] = s[(d + p) % embedDim] * vertexB[(d + p) % embedDim];
3196116ded15SMatthew G. Knepley             ++i;
3197116ded15SMatthew G. Knepley           }
3198116ded15SMatthew G. Knepley         }
3199116ded15SMatthew G. Knepley         for (p = 0; p < 12; ++p) {
3200116ded15SMatthew G. Knepley           s[3] = 1;
3201116ded15SMatthew G. Knepley           for (s[0] = -1; s[0] < 2; s[0] += 2) {
3202116ded15SMatthew G. Knepley             for (s[1] = -1; s[1] < 2; s[1] += 2) {
3203116ded15SMatthew G. Knepley               for (s[2] = -1; s[2] < 2; s[2] += 2) {
3204116ded15SMatthew G. Knepley                 for (d = 0; d < embedDim; ++d) coordsIn[i * embedDim + d] = s[evenPerm[p][d]] * vertexC[evenPerm[p][d]];
3205116ded15SMatthew G. Knepley                 ++i;
3206116ded15SMatthew G. Knepley               }
3207116ded15SMatthew G. Knepley             }
3208116ded15SMatthew G. Knepley           }
3209116ded15SMatthew G. Knepley         }
321045da822fSValeria Barra       }
321163a3b9bcSJacob Faibussowitsch       PetscCheck(i == numVerts, PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Invalid 600-cell, vertices %" PetscInt_FMT " != %" PetscInt_FMT, i, numVerts);
3212116ded15SMatthew G. Knepley       /* Construct graph */
32139566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numVerts * numVerts, &graph));
3214116ded15SMatthew G. Knepley       for (i = 0; i < numVerts; ++i) {
3215116ded15SMatthew G. Knepley         for (j = 0, k = 0; j < numVerts; ++j) {
32169371c9d4SSatish Balay           if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i * embedDim], &coordsIn[j * embedDim]) - edgeLen) < PETSC_SMALL) {
32179371c9d4SSatish Balay             graph[i * numVerts + j] = 1;
32189371c9d4SSatish Balay             ++k;
32199371c9d4SSatish Balay           }
3220116ded15SMatthew G. Knepley         }
322163a3b9bcSJacob Faibussowitsch         PetscCheck(k == degree, PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Invalid 600-cell, vertex %" PetscInt_FMT " degree %" PetscInt_FMT " != %" PetscInt_FMT, i, k, degree);
3222116ded15SMatthew G. Knepley       }
3223116ded15SMatthew G. Knepley       /* Build Topology */
32249566063dSJacob Faibussowitsch       PetscCall(DMPlexSetChart(dm, 0, numCells + numVerts));
322507c565c5SJose E. Roman       for (PetscInt c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, embedDim));
32269566063dSJacob Faibussowitsch       PetscCall(DMSetUp(dm)); /* Allocate space for cones */
3227116ded15SMatthew G. Knepley       /* Cells */
3228dd400576SPatrick Sanan       if (rank == 0) {
322907c565c5SJose E. Roman         for (PetscInt i = 0, c = 0; i < numVerts; ++i) {
3230116ded15SMatthew G. Knepley           for (j = 0; j < i; ++j) {
3231116ded15SMatthew G. Knepley             for (k = 0; k < j; ++k) {
3232116ded15SMatthew G. Knepley               for (l = 0; l < k; ++l) {
32339371c9d4SSatish Balay                 if (graph[i * numVerts + j] && graph[j * numVerts + k] && graph[k * numVerts + i] && graph[l * numVerts + i] && graph[l * numVerts + j] && graph[l * numVerts + k]) {
32349371c9d4SSatish Balay                   cone[0] = firstVertex + i;
32359371c9d4SSatish Balay                   cone[1] = firstVertex + j;
32369371c9d4SSatish Balay                   cone[2] = firstVertex + k;
32379371c9d4SSatish Balay                   cone[3] = firstVertex + l;
3238116ded15SMatthew G. Knepley                   /* Check orientation: https://ef.gy/linear-algebra:normal-vectors-in-higher-dimensional-spaces */
3239116ded15SMatthew G. Knepley                   {
32409371c9d4SSatish Balay                     const PetscInt epsilon[4][4][4][4] = {
32419371c9d4SSatish Balay                       {{{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}},  {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 1}, {0, 0, -1, 0}}, {{0, 0, 0, 0}, {0, 0, 0, -1}, {0, 0, 0, 0}, {0, 1, 0, 0}}, {{0, 0, 0, 0}, {0, 0, 1, 0}, {0, -1, 0, 0}, {0, 0, 0, 0}}},
3242116ded15SMatthew G. Knepley 
32439371c9d4SSatish Balay                       {{{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, -1}, {0, 0, 1, 0}}, {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}},  {{0, 0, 0, 1}, {0, 0, 0, 0}, {0, 0, 0, 0}, {-1, 0, 0, 0}}, {{0, 0, -1, 0}, {0, 0, 0, 0}, {1, 0, 0, 0}, {0, 0, 0, 0}}},
3244116ded15SMatthew G. Knepley 
32459371c9d4SSatish Balay                       {{{0, 0, 0, 0}, {0, 0, 0, 1}, {0, 0, 0, 0}, {0, -1, 0, 0}}, {{0, 0, 0, -1}, {0, 0, 0, 0}, {0, 0, 0, 0}, {1, 0, 0, 0}}, {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}},  {{0, 1, 0, 0}, {-1, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}},
3246116ded15SMatthew G. Knepley 
32479371c9d4SSatish Balay                       {{{0, 0, 0, 0}, {0, 0, -1, 0}, {0, 1, 0, 0}, {0, 0, 0, 0}}, {{0, 0, 1, 0}, {0, 0, 0, 0}, {-1, 0, 0, 0}, {0, 0, 0, 0}}, {{0, -1, 0, 0}, {1, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}} }
32489371c9d4SSatish Balay                     };
3249116ded15SMatthew G. Knepley                     PetscReal normal[4];
3250116ded15SMatthew G. Knepley                     PetscInt  e, f, g;
3251116ded15SMatthew G. Knepley 
3252116ded15SMatthew G. Knepley                     for (d = 0; d < embedDim; ++d) {
3253116ded15SMatthew G. Knepley                       normal[d] = 0.0;
3254116ded15SMatthew G. Knepley                       for (e = 0; e < embedDim; ++e) {
3255116ded15SMatthew G. Knepley                         for (f = 0; f < embedDim; ++f) {
3256116ded15SMatthew G. Knepley                           for (g = 0; g < embedDim; ++g) {
3257116ded15SMatthew 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]);
3258116ded15SMatthew G. Knepley                           }
3259116ded15SMatthew G. Knepley                         }
3260116ded15SMatthew G. Knepley                       }
3261116ded15SMatthew G. Knepley                     }
32629371c9d4SSatish Balay                     if (DotReal(embedDim, normal, &coordsIn[i * embedDim]) < 0) {
32639371c9d4SSatish Balay                       PetscInt tmp = cone[1];
32649371c9d4SSatish Balay                       cone[1]      = cone[2];
32659371c9d4SSatish Balay                       cone[2]      = tmp;
32669371c9d4SSatish Balay                     }
3267116ded15SMatthew G. Knepley                   }
32689566063dSJacob Faibussowitsch                   PetscCall(DMPlexSetCone(dm, c++, cone));
3269116ded15SMatthew G. Knepley                 }
3270116ded15SMatthew G. Knepley               }
3271116ded15SMatthew G. Knepley             }
3272116ded15SMatthew G. Knepley           }
3273116ded15SMatthew G. Knepley         }
327445da822fSValeria Barra       }
32759566063dSJacob Faibussowitsch       PetscCall(DMPlexSymmetrize(dm));
32769566063dSJacob Faibussowitsch       PetscCall(DMPlexStratify(dm));
32779566063dSJacob Faibussowitsch       PetscCall(PetscFree(graph));
3278116ded15SMatthew G. Knepley     }
3279f4d061e9SPierre Jolivet     break;
3280d71ae5a4SJacob Faibussowitsch   default:
3281d71ae5a4SJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Unsupported dimension for sphere: %" PetscInt_FMT, dim);
328265a81367SMatthew G. Knepley   }
328365a81367SMatthew G. Knepley   /* Create coordinates */
32849566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
32859566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
32869566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, embedDim));
32879566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex + numVerts));
32882829fed8SMatthew G. Knepley   for (v = firstVertex; v < firstVertex + numVerts; ++v) {
32899566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, embedDim));
32909566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, embedDim));
32912829fed8SMatthew G. Knepley   }
32929566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
32939566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
32949566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
32959566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, embedDim));
32969566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
32979566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
32989566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
32999566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
33009371c9d4SSatish Balay   for (v = 0; v < numVerts; ++v)
3301ad540459SPierre Jolivet     for (d = 0; d < embedDim; ++d) coords[v * embedDim + d] = coordsIn[v * embedDim + d];
33029566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
33039566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
33049566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
33059566063dSJacob Faibussowitsch   PetscCall(PetscFree(coordsIn));
330651a74b61SMatthew G. Knepley   {
330751a74b61SMatthew G. Knepley     DM          cdm;
330851a74b61SMatthew G. Knepley     PetscDS     cds;
33099318fe57SMatthew G. Knepley     PetscScalar c = R;
331051a74b61SMatthew G. Knepley 
3311e44f6aebSMatthew G. Knepley     PetscCall(DMPlexCreateCoordinateSpace(dm, 1, PETSC_TRUE, snapToSphere));
33129566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateDM(dm, &cdm));
33139566063dSJacob Faibussowitsch     PetscCall(DMGetDS(cdm, &cds));
33149566063dSJacob Faibussowitsch     PetscCall(PetscDSSetConstants(cds, 1, &c));
331551a74b61SMatthew G. Knepley   }
331646139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
33179318fe57SMatthew G. Knepley   /* Wait for coordinate creation before doing in-place modification */
33189566063dSJacob Faibussowitsch   if (simplex) PetscCall(DMPlexInterpolateInPlace_Internal(dm));
33193ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
33209318fe57SMatthew G. Knepley }
33219318fe57SMatthew G. Knepley 
3322b7f5c055SJed Brown typedef void (*TPSEvaluateFunc)(const PetscReal[], PetscReal *, PetscReal[], PetscReal (*)[3]);
3323b7f5c055SJed Brown 
3324b7f5c055SJed Brown /*
3325b7f5c055SJed Brown  The Schwarz P implicit surface is
3326b7f5c055SJed Brown 
3327b7f5c055SJed Brown      f(x) = cos(x0) + cos(x1) + cos(x2) = 0
3328b7f5c055SJed Brown */
3329d71ae5a4SJacob Faibussowitsch static void TPSEvaluate_SchwarzP(const PetscReal y[3], PetscReal *f, PetscReal grad[], PetscReal (*hess)[3])
3330d71ae5a4SJacob Faibussowitsch {
3331b7f5c055SJed Brown   PetscReal c[3] = {PetscCosReal(y[0] * PETSC_PI), PetscCosReal(y[1] * PETSC_PI), PetscCosReal(y[2] * PETSC_PI)};
3332b7f5c055SJed Brown   PetscReal g[3] = {-PetscSinReal(y[0] * PETSC_PI), -PetscSinReal(y[1] * PETSC_PI), -PetscSinReal(y[2] * PETSC_PI)};
3333b7f5c055SJed Brown   f[0]           = c[0] + c[1] + c[2];
3334b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) {
3335b7f5c055SJed Brown     grad[i] = PETSC_PI * g[i];
3336ad540459SPierre Jolivet     for (PetscInt j = 0; j < 3; j++) hess[i][j] = (i == j) ? -PetscSqr(PETSC_PI) * c[i] : 0.;
3337b7f5c055SJed Brown   }
3338b7f5c055SJed Brown }
3339b7f5c055SJed Brown 
33404663dae6SJed Brown // u[] is a tentative normal on input. Replace with the implicit function gradient in the same direction
3341d71ae5a4SJacob Faibussowitsch static PetscErrorCode TPSExtrudeNormalFunc_SchwarzP(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt r, PetscScalar u[], void *ctx)
3342d71ae5a4SJacob Faibussowitsch {
3343ad540459SPierre Jolivet   for (PetscInt i = 0; i < 3; i++) u[i] = -PETSC_PI * PetscSinReal(x[i] * PETSC_PI);
33443ba16761SJacob Faibussowitsch   return PETSC_SUCCESS;
33454663dae6SJed Brown }
33464663dae6SJed Brown 
3347b7f5c055SJed Brown /*
3348b7f5c055SJed Brown  The Gyroid implicit surface is
3349b7f5c055SJed Brown 
3350b7f5c055SJed Brown  f(x,y,z) = sin(pi * x) * cos (pi * (y + 1/2))  + sin(pi * (y + 1/2)) * cos(pi * (z + 1/4)) + sin(pi * (z + 1/4)) * cos(pi * x)
3351b7f5c055SJed Brown 
3352b7f5c055SJed Brown */
3353d71ae5a4SJacob Faibussowitsch static void TPSEvaluate_Gyroid(const PetscReal y[3], PetscReal *f, PetscReal grad[], PetscReal (*hess)[3])
3354d71ae5a4SJacob Faibussowitsch {
3355b7f5c055SJed Brown   PetscReal s[3] = {PetscSinReal(PETSC_PI * y[0]), PetscSinReal(PETSC_PI * (y[1] + .5)), PetscSinReal(PETSC_PI * (y[2] + .25))};
3356b7f5c055SJed Brown   PetscReal c[3] = {PetscCosReal(PETSC_PI * y[0]), PetscCosReal(PETSC_PI * (y[1] + .5)), PetscCosReal(PETSC_PI * (y[2] + .25))};
3357b7f5c055SJed Brown   f[0]           = s[0] * c[1] + s[1] * c[2] + s[2] * c[0];
3358b7f5c055SJed Brown   grad[0]        = PETSC_PI * (c[0] * c[1] - s[2] * s[0]);
3359b7f5c055SJed Brown   grad[1]        = PETSC_PI * (c[1] * c[2] - s[0] * s[1]);
3360b7f5c055SJed Brown   grad[2]        = PETSC_PI * (c[2] * c[0] - s[1] * s[2]);
3361b7f5c055SJed Brown   hess[0][0]     = -PetscSqr(PETSC_PI) * (s[0] * c[1] + s[2] * c[0]);
3362b7f5c055SJed Brown   hess[0][1]     = -PetscSqr(PETSC_PI) * (c[0] * s[1]);
3363b7f5c055SJed Brown   hess[0][2]     = -PetscSqr(PETSC_PI) * (c[2] * s[0]);
3364b7f5c055SJed Brown   hess[1][0]     = -PetscSqr(PETSC_PI) * (s[1] * c[2] + s[0] * c[1]);
3365b7f5c055SJed Brown   hess[1][1]     = -PetscSqr(PETSC_PI) * (c[1] * s[2]);
3366b7f5c055SJed Brown   hess[2][2]     = -PetscSqr(PETSC_PI) * (c[0] * s[1]);
3367b7f5c055SJed Brown   hess[2][0]     = -PetscSqr(PETSC_PI) * (s[2] * c[0] + s[1] * c[2]);
3368b7f5c055SJed Brown   hess[2][1]     = -PetscSqr(PETSC_PI) * (c[2] * s[0]);
3369b7f5c055SJed Brown   hess[2][2]     = -PetscSqr(PETSC_PI) * (c[1] * s[2]);
3370b7f5c055SJed Brown }
3371b7f5c055SJed Brown 
33724663dae6SJed Brown // u[] is a tentative normal on input. Replace with the implicit function gradient in the same direction
3373d71ae5a4SJacob Faibussowitsch static PetscErrorCode TPSExtrudeNormalFunc_Gyroid(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt r, PetscScalar u[], void *ctx)
3374d71ae5a4SJacob Faibussowitsch {
33754663dae6SJed Brown   PetscReal s[3] = {PetscSinReal(PETSC_PI * x[0]), PetscSinReal(PETSC_PI * (x[1] + .5)), PetscSinReal(PETSC_PI * (x[2] + .25))};
33764663dae6SJed Brown   PetscReal c[3] = {PetscCosReal(PETSC_PI * x[0]), PetscCosReal(PETSC_PI * (x[1] + .5)), PetscCosReal(PETSC_PI * (x[2] + .25))};
33774663dae6SJed Brown   u[0]           = PETSC_PI * (c[0] * c[1] - s[2] * s[0]);
33784663dae6SJed Brown   u[1]           = PETSC_PI * (c[1] * c[2] - s[0] * s[1]);
33794663dae6SJed Brown   u[2]           = PETSC_PI * (c[2] * c[0] - s[1] * s[2]);
33803ba16761SJacob Faibussowitsch   return PETSC_SUCCESS;
33814663dae6SJed Brown }
33824663dae6SJed Brown 
3383b7f5c055SJed Brown /*
3384b7f5c055SJed Brown    We wish to solve
3385b7f5c055SJed Brown 
3386b7f5c055SJed Brown          min_y || y - x ||^2  subject to f(y) = 0
3387b7f5c055SJed Brown 
3388b7f5c055SJed Brown    Let g(y) = grad(f).  The minimization problem is equivalent to asking to satisfy
3389b7f5c055SJed Brown    f(y) = 0 and (y-x) is parallel to g(y).  We do this by using Householder QR to obtain a basis for the
3390b7f5c055SJed Brown    tangent space and ask for both components in the tangent space to be zero.
3391b7f5c055SJed Brown 
3392b7f5c055SJed Brown    Take g to be a column vector and compute the "full QR" factorization Q R = g,
3393b7f5c055SJed Brown    where Q = I - 2 n n^T is a symmetric orthogonal matrix.
3394b7f5c055SJed Brown    The first column of Q is parallel to g so the remaining two columns span the null space.
3395b7f5c055SJed Brown    Let Qn = Q[:,1:] be those remaining columns.  Then Qn Qn^T is an orthogonal projector into the tangent space.
3396da81f932SPierre Jolivet    Since Q is symmetric, this is equivalent to multiplying by Q and taking the last two entries.
3397b7f5c055SJed Brown    In total, we have a system of 3 equations in 3 unknowns:
3398b7f5c055SJed Brown 
3399b7f5c055SJed Brown      f(y) = 0                       1 equation
3400b7f5c055SJed Brown      Qn^T (y - x) = 0               2 equations
3401b7f5c055SJed Brown 
3402b7f5c055SJed Brown    Here, we compute the residual and Jacobian of this system.
3403b7f5c055SJed Brown */
3404d71ae5a4SJacob Faibussowitsch static void TPSNearestPointResJac(TPSEvaluateFunc feval, const PetscScalar x[], const PetscScalar y[], PetscScalar res[], PetscScalar J[])
3405d71ae5a4SJacob Faibussowitsch {
3406b7f5c055SJed Brown   PetscReal yreal[3] = {PetscRealPart(y[0]), PetscRealPart(y[1]), PetscRealPart(y[2])};
3407b7f5c055SJed Brown   PetscReal d[3]     = {PetscRealPart(y[0] - x[0]), PetscRealPart(y[1] - x[1]), PetscRealPart(y[2] - x[2])};
34082f0490c0SSatish Balay   PetscReal f, grad[3], n[3], norm, norm_y[3], nd, nd_y[3], sign;
34099371c9d4SSatish Balay   PetscReal n_y[3][3] = {
34109371c9d4SSatish Balay     {0, 0, 0},
34119371c9d4SSatish Balay     {0, 0, 0},
34129371c9d4SSatish Balay     {0, 0, 0}
34139371c9d4SSatish Balay   };
3414b7f5c055SJed Brown 
3415b7f5c055SJed Brown   feval(yreal, &f, grad, n_y);
3416b7f5c055SJed Brown 
3417b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) n[i] = grad[i];
3418b7f5c055SJed Brown   norm = PetscSqrtReal(PetscSqr(n[0]) + PetscSqr(n[1]) + PetscSqr(n[2]));
3419ad540459SPierre Jolivet   for (PetscInt i = 0; i < 3; i++) norm_y[i] = 1. / norm * n[i] * n_y[i][i];
3420b7f5c055SJed Brown 
3421b7f5c055SJed Brown   // Define the Householder reflector
3422b7f5c055SJed Brown   sign = n[0] >= 0 ? 1. : -1.;
3423b7f5c055SJed Brown   n[0] += norm * sign;
3424b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) n_y[0][i] += norm_y[i] * sign;
3425b7f5c055SJed Brown 
3426b7f5c055SJed Brown   norm      = PetscSqrtReal(PetscSqr(n[0]) + PetscSqr(n[1]) + PetscSqr(n[2]));
3427b7f5c055SJed Brown   norm_y[0] = 1. / norm * (n[0] * n_y[0][0]);
3428b7f5c055SJed Brown   norm_y[1] = 1. / norm * (n[0] * n_y[0][1] + n[1] * n_y[1][1]);
3429b7f5c055SJed Brown   norm_y[2] = 1. / norm * (n[0] * n_y[0][2] + n[2] * n_y[2][2]);
3430b7f5c055SJed Brown 
3431b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) {
3432b7f5c055SJed Brown     n[i] /= norm;
3433b7f5c055SJed Brown     for (PetscInt j = 0; j < 3; j++) {
3434b7f5c055SJed Brown       // note that n[i] is n_old[i]/norm when executing the code below
3435b7f5c055SJed Brown       n_y[i][j] = n_y[i][j] / norm - n[i] / norm * norm_y[j];
3436b7f5c055SJed Brown     }
3437b7f5c055SJed Brown   }
3438b7f5c055SJed Brown 
3439b7f5c055SJed Brown   nd = n[0] * d[0] + n[1] * d[1] + n[2] * d[2];
3440b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) nd_y[i] = n[i] + n_y[0][i] * d[0] + n_y[1][i] * d[1] + n_y[2][i] * d[2];
3441b7f5c055SJed Brown 
3442b7f5c055SJed Brown   res[0] = f;
3443b7f5c055SJed Brown   res[1] = d[1] - 2 * n[1] * nd;
3444b7f5c055SJed Brown   res[2] = d[2] - 2 * n[2] * nd;
3445b7f5c055SJed Brown   // J[j][i] is J_{ij} (column major)
3446b7f5c055SJed Brown   for (PetscInt j = 0; j < 3; j++) {
3447b7f5c055SJed Brown     J[0 + j * 3] = grad[j];
3448b7f5c055SJed Brown     J[1 + j * 3] = (j == 1) * 1. - 2 * (n_y[1][j] * nd + n[1] * nd_y[j]);
3449b7f5c055SJed Brown     J[2 + j * 3] = (j == 2) * 1. - 2 * (n_y[2][j] * nd + n[2] * nd_y[j]);
3450b7f5c055SJed Brown   }
3451b7f5c055SJed Brown }
3452b7f5c055SJed Brown 
3453b7f5c055SJed Brown /*
3454b7f5c055SJed Brown    Project x to the nearest point on the implicit surface using Newton's method.
3455b7f5c055SJed Brown */
3456d71ae5a4SJacob Faibussowitsch static PetscErrorCode TPSNearestPoint(TPSEvaluateFunc feval, PetscScalar x[])
3457d71ae5a4SJacob Faibussowitsch {
3458b7f5c055SJed Brown   PetscScalar y[3] = {x[0], x[1], x[2]}; // Initial guess
3459b7f5c055SJed Brown 
3460b7f5c055SJed Brown   PetscFunctionBegin;
3461b7f5c055SJed Brown   for (PetscInt iter = 0; iter < 10; iter++) {
3462b7f5c055SJed Brown     PetscScalar res[3], J[9];
3463b7f5c055SJed Brown     PetscReal   resnorm;
3464b7f5c055SJed Brown     TPSNearestPointResJac(feval, x, y, res, J);
3465b7f5c055SJed Brown     resnorm = PetscSqrtReal(PetscSqr(PetscRealPart(res[0])) + PetscSqr(PetscRealPart(res[1])) + PetscSqr(PetscRealPart(res[2])));
3466b7f5c055SJed Brown     if (0) { // Turn on this monitor if you need to confirm quadratic convergence
346763a3b9bcSJacob Faibussowitsch       PetscCall(PetscPrintf(PETSC_COMM_SELF, "[%" PetscInt_FMT "] res [%g %g %g]\n", iter, (double)PetscRealPart(res[0]), (double)PetscRealPart(res[1]), (double)PetscRealPart(res[2])));
3468b7f5c055SJed Brown     }
3469b7f5c055SJed Brown     if (resnorm < PETSC_SMALL) break;
3470b7f5c055SJed Brown 
3471b7f5c055SJed Brown     // Take the Newton step
34729566063dSJacob Faibussowitsch     PetscCall(PetscKernel_A_gets_inverse_A_3(J, 0., PETSC_FALSE, NULL));
3473b7f5c055SJed Brown     PetscKernel_v_gets_v_minus_A_times_w_3(y, J, res);
3474b7f5c055SJed Brown   }
3475b7f5c055SJed Brown   for (PetscInt i = 0; i < 3; i++) x[i] = y[i];
34763ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3477b7f5c055SJed Brown }
3478b7f5c055SJed Brown 
3479b7f5c055SJed Brown const char *const DMPlexTPSTypes[] = {"SCHWARZ_P", "GYROID", "DMPlexTPSType", "DMPLEX_TPS_", NULL};
3480b7f5c055SJed Brown 
3481d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateTPSMesh_Internal(DM dm, DMPlexTPSType tpstype, const PetscInt extent[], const DMBoundaryType periodic[], PetscBool tps_distribute, PetscInt refinements, PetscInt layers, PetscReal thickness)
3482d71ae5a4SJacob Faibussowitsch {
3483b7f5c055SJed Brown   PetscMPIInt rank;
3484b7f5c055SJed Brown   PetscInt    topoDim = 2, spaceDim = 3, numFaces = 0, numVertices = 0, numEdges = 0;
3485b7f5c055SJed Brown   PetscInt(*edges)[2] = NULL, *edgeSets = NULL;
3486b7f5c055SJed Brown   PetscInt           *cells_flat = NULL;
3487b7f5c055SJed Brown   PetscReal          *vtxCoords  = NULL;
3488b7f5c055SJed Brown   TPSEvaluateFunc     evalFunc   = NULL;
34898434afd1SBarry Smith   PetscSimplePointFn *normalFunc = NULL;
3490b7f5c055SJed Brown   DMLabel             label;
3491b7f5c055SJed Brown 
3492b7f5c055SJed Brown   PetscFunctionBegin;
349346139095SJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_Generate, dm, 0, 0, 0));
34949566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank));
349563a3b9bcSJacob Faibussowitsch   PetscCheck((layers != 0) ^ (thickness == 0.), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_INCOMP, "Layers %" PetscInt_FMT " must be nonzero iff thickness %g is nonzero", layers, (double)thickness);
3496b7f5c055SJed Brown   switch (tpstype) {
3497b7f5c055SJed Brown   case DMPLEX_TPS_SCHWARZ_P:
3498b7f5c055SJed Brown     PetscCheck(!periodic || (periodic[0] == DM_BOUNDARY_NONE && periodic[1] == DM_BOUNDARY_NONE && periodic[2] == DM_BOUNDARY_NONE), PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Schwarz P does not support periodic meshes");
3499c5853193SPierre Jolivet     if (rank == 0) {
3500b7f5c055SJed Brown       PetscInt(*cells)[6][4][4] = NULL; // [junction, junction-face, cell, conn]
3501b7f5c055SJed Brown       PetscInt  Njunctions = 0, Ncuts = 0, Npipes[3], vcount;
3502b7f5c055SJed Brown       PetscReal L = 1;
3503b7f5c055SJed Brown 
3504b7f5c055SJed Brown       Npipes[0]   = (extent[0] + 1) * extent[1] * extent[2];
3505b7f5c055SJed Brown       Npipes[1]   = extent[0] * (extent[1] + 1) * extent[2];
3506b7f5c055SJed Brown       Npipes[2]   = extent[0] * extent[1] * (extent[2] + 1);
3507b7f5c055SJed Brown       Njunctions  = extent[0] * extent[1] * extent[2];
3508b7f5c055SJed Brown       Ncuts       = 2 * (extent[0] * extent[1] + extent[1] * extent[2] + extent[2] * extent[0]);
3509b7f5c055SJed Brown       numVertices = 4 * (Npipes[0] + Npipes[1] + Npipes[2]) + 8 * Njunctions;
35109566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(3 * numVertices, &vtxCoords));
35119566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(Njunctions, &cells));
35129566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(Ncuts * 4, &edges));
35139566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(Ncuts * 4, &edgeSets));
3514b7f5c055SJed Brown       // x-normal pipes
3515b7f5c055SJed Brown       vcount = 0;
3516b7f5c055SJed Brown       for (PetscInt i = 0; i < extent[0] + 1; i++) {
3517b7f5c055SJed Brown         for (PetscInt j = 0; j < extent[1]; j++) {
3518b7f5c055SJed Brown           for (PetscInt k = 0; k < extent[2]; k++) {
3519b7f5c055SJed Brown             for (PetscInt l = 0; l < 4; l++) {
3520b7f5c055SJed Brown               vtxCoords[vcount++] = (2 * i - 1) * L;
3521b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * j * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3522b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * k * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3523b7f5c055SJed Brown             }
3524b7f5c055SJed Brown           }
3525b7f5c055SJed Brown         }
3526b7f5c055SJed Brown       }
3527b7f5c055SJed Brown       // y-normal pipes
3528b7f5c055SJed Brown       for (PetscInt i = 0; i < extent[0]; i++) {
3529b7f5c055SJed Brown         for (PetscInt j = 0; j < extent[1] + 1; j++) {
3530b7f5c055SJed Brown           for (PetscInt k = 0; k < extent[2]; k++) {
3531b7f5c055SJed Brown             for (PetscInt l = 0; l < 4; l++) {
3532b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * i * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3533b7f5c055SJed Brown               vtxCoords[vcount++] = (2 * j - 1) * L;
3534b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * k * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3535b7f5c055SJed Brown             }
3536b7f5c055SJed Brown           }
3537b7f5c055SJed Brown         }
3538b7f5c055SJed Brown       }
3539b7f5c055SJed Brown       // z-normal pipes
3540b7f5c055SJed Brown       for (PetscInt i = 0; i < extent[0]; i++) {
3541b7f5c055SJed Brown         for (PetscInt j = 0; j < extent[1]; j++) {
3542b7f5c055SJed Brown           for (PetscInt k = 0; k < extent[2] + 1; k++) {
3543b7f5c055SJed Brown             for (PetscInt l = 0; l < 4; l++) {
3544b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * i * L + PetscCosReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3545b7f5c055SJed Brown               vtxCoords[vcount++] = 2 * j * L + PetscSinReal((2 * l + 1) * PETSC_PI / 4) * L / 2;
3546b7f5c055SJed Brown               vtxCoords[vcount++] = (2 * k - 1) * L;
3547b7f5c055SJed Brown             }
3548b7f5c055SJed Brown           }
3549b7f5c055SJed Brown         }
3550b7f5c055SJed Brown       }
3551b7f5c055SJed Brown       // junctions
3552b7f5c055SJed Brown       for (PetscInt i = 0; i < extent[0]; i++) {
3553b7f5c055SJed Brown         for (PetscInt j = 0; j < extent[1]; j++) {
3554b7f5c055SJed Brown           for (PetscInt k = 0; k < extent[2]; k++) {
3555b7f5c055SJed Brown             const PetscInt J = (i * extent[1] + j) * extent[2] + k, Jvoff = (Npipes[0] + Npipes[1] + Npipes[2]) * 4 + J * 8;
3556b7f5c055SJed Brown             PetscCheck(vcount / 3 == Jvoff, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Unexpected vertex count");
3557b7f5c055SJed Brown             for (PetscInt ii = 0; ii < 2; ii++) {
3558b7f5c055SJed Brown               for (PetscInt jj = 0; jj < 2; jj++) {
3559b7f5c055SJed Brown                 for (PetscInt kk = 0; kk < 2; kk++) {
3560b7f5c055SJed Brown                   double Ls           = (1 - sqrt(2) / 4) * L;
3561b7f5c055SJed Brown                   vtxCoords[vcount++] = 2 * i * L + (2 * ii - 1) * Ls;
3562b7f5c055SJed Brown                   vtxCoords[vcount++] = 2 * j * L + (2 * jj - 1) * Ls;
3563b7f5c055SJed Brown                   vtxCoords[vcount++] = 2 * k * L + (2 * kk - 1) * Ls;
3564b7f5c055SJed Brown                 }
3565b7f5c055SJed Brown               }
3566b7f5c055SJed Brown             }
3567b7f5c055SJed Brown             const PetscInt jfaces[3][2][4] = {
3568b7f5c055SJed Brown               {{3, 1, 0, 2}, {7, 5, 4, 6}}, // x-aligned
3569b7f5c055SJed Brown               {{5, 4, 0, 1}, {7, 6, 2, 3}}, // y-aligned
3570b7f5c055SJed Brown               {{6, 2, 0, 4}, {7, 3, 1, 5}}  // z-aligned
3571b7f5c055SJed Brown             };
3572b7f5c055SJed Brown             const PetscInt pipe_lo[3] = {// vertex numbers of pipes
35739371c9d4SSatish Balay                                          ((i * extent[1] + j) * extent[2] + k) * 4, ((i * (extent[1] + 1) + j) * extent[2] + k + Npipes[0]) * 4, ((i * extent[1] + j) * (extent[2] + 1) + k + Npipes[0] + Npipes[1]) * 4};
3574b7f5c055SJed Brown             const PetscInt pipe_hi[3] = {// vertex numbers of pipes
35759371c9d4SSatish Balay                                          (((i + 1) * extent[1] + j) * extent[2] + k) * 4, ((i * (extent[1] + 1) + j + 1) * extent[2] + k + Npipes[0]) * 4, ((i * extent[1] + j) * (extent[2] + 1) + k + 1 + Npipes[0] + Npipes[1]) * 4};
3576b7f5c055SJed Brown             for (PetscInt dir = 0; dir < 3; dir++) { // x,y,z
3577b7f5c055SJed Brown               const PetscInt ijk[3] = {i, j, k};
3578b7f5c055SJed Brown               for (PetscInt l = 0; l < 4; l++) { // rotations
3579b7f5c055SJed Brown                 cells[J][dir * 2 + 0][l][0] = pipe_lo[dir] + l;
3580b7f5c055SJed Brown                 cells[J][dir * 2 + 0][l][1] = Jvoff + jfaces[dir][0][l];
3581b7f5c055SJed Brown                 cells[J][dir * 2 + 0][l][2] = Jvoff + jfaces[dir][0][(l - 1 + 4) % 4];
3582b7f5c055SJed Brown                 cells[J][dir * 2 + 0][l][3] = pipe_lo[dir] + (l - 1 + 4) % 4;
3583b7f5c055SJed Brown                 cells[J][dir * 2 + 1][l][0] = Jvoff + jfaces[dir][1][l];
3584b7f5c055SJed Brown                 cells[J][dir * 2 + 1][l][1] = pipe_hi[dir] + l;
3585b7f5c055SJed Brown                 cells[J][dir * 2 + 1][l][2] = pipe_hi[dir] + (l - 1 + 4) % 4;
3586b7f5c055SJed Brown                 cells[J][dir * 2 + 1][l][3] = Jvoff + jfaces[dir][1][(l - 1 + 4) % 4];
3587b7f5c055SJed Brown                 if (ijk[dir] == 0) {
3588b7f5c055SJed Brown                   edges[numEdges][0] = pipe_lo[dir] + l;
3589b7f5c055SJed Brown                   edges[numEdges][1] = pipe_lo[dir] + (l + 1) % 4;
3590b7f5c055SJed Brown                   edgeSets[numEdges] = dir * 2 + 1;
3591b7f5c055SJed Brown                   numEdges++;
3592b7f5c055SJed Brown                 }
3593b7f5c055SJed Brown                 if (ijk[dir] + 1 == extent[dir]) {
3594b7f5c055SJed Brown                   edges[numEdges][0] = pipe_hi[dir] + l;
3595b7f5c055SJed Brown                   edges[numEdges][1] = pipe_hi[dir] + (l + 1) % 4;
3596b7f5c055SJed Brown                   edgeSets[numEdges] = dir * 2 + 2;
3597b7f5c055SJed Brown                   numEdges++;
3598b7f5c055SJed Brown                 }
3599b7f5c055SJed Brown               }
3600b7f5c055SJed Brown             }
3601b7f5c055SJed Brown           }
3602b7f5c055SJed Brown         }
3603b7f5c055SJed Brown       }
360463a3b9bcSJacob Faibussowitsch       PetscCheck(numEdges == Ncuts * 4, PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Edge count %" PetscInt_FMT " incompatible with number of cuts %" PetscInt_FMT, numEdges, Ncuts);
3605b7f5c055SJed Brown       numFaces   = 24 * Njunctions;
3606b7f5c055SJed Brown       cells_flat = cells[0][0][0];
3607b7f5c055SJed Brown     }
3608b7f5c055SJed Brown     evalFunc   = TPSEvaluate_SchwarzP;
36094663dae6SJed Brown     normalFunc = TPSExtrudeNormalFunc_SchwarzP;
3610b7f5c055SJed Brown     break;
3611b7f5c055SJed Brown   case DMPLEX_TPS_GYROID:
3612c5853193SPierre Jolivet     if (rank == 0) {
3613b7f5c055SJed Brown       // This is a coarse mesh approximation of the gyroid shifted to being the zero of the level set
3614b7f5c055SJed Brown       //
3615b7f5c055SJed Brown       //     sin(pi*x)*cos(pi*(y+1/2)) + sin(pi*(y+1/2))*cos(pi*(z+1/4)) + sin(pi*(z+1/4))*cos(x)
3616b7f5c055SJed Brown       //
3617b7f5c055SJed Brown       // on the cell [0,2]^3.
3618b7f5c055SJed Brown       //
3619b7f5c055SJed Brown       // Think about dividing that cell into four columns, and focus on the column [0,1]x[0,1]x[0,2].
3620b7f5c055SJed Brown       // If you looked at the gyroid in that column at different slices of z you would see that it kind of spins
3621b7f5c055SJed Brown       // like a boomerang:
3622b7f5c055SJed Brown       //
3623b7f5c055SJed Brown       //     z = 0          z = 1/4        z = 1/2        z = 3/4     //
3624b7f5c055SJed Brown       //     -----          -------        -------        -------     //
3625b7f5c055SJed Brown       //                                                              //
3626b7f5c055SJed Brown       //     +       +      +       +      +       +      +   \   +   //
3627b7f5c055SJed Brown       //      \                                   /            \      //
3628b7f5c055SJed Brown       //       \            `-_   _-'            /              }     //
3629b7f5c055SJed Brown       //        *-_            `-'            _-'              /      //
3630b7f5c055SJed Brown       //     +     `-+      +       +      +-'     +      +   /   +   //
3631b7f5c055SJed Brown       //                                                              //
3632b7f5c055SJed Brown       //                                                              //
3633b7f5c055SJed Brown       //     z = 1          z = 5/4        z = 3/2        z = 7/4     //
3634b7f5c055SJed Brown       //     -----          -------        -------        -------     //
3635b7f5c055SJed Brown       //                                                              //
3636b7f5c055SJed Brown       //     +-_     +      +       +      +     _-+      +   /   +   //
3637b7f5c055SJed Brown       //        `-_            _-_            _-`            /        //
3638b7f5c055SJed Brown       //           \        _-'   `-_        /              {         //
3639b7f5c055SJed Brown       //            \                       /                \        //
3640b7f5c055SJed Brown       //     +       +      +       +      +       +      +   \   +   //
3641b7f5c055SJed Brown       //
3642b7f5c055SJed Brown       //
3643b7f5c055SJed Brown       // This course mesh approximates each of these slices by two line segments,
3644b7f5c055SJed Brown       // and then connects the segments in consecutive layers with quadrilateral faces.
3645b7f5c055SJed Brown       // All of the end points of the segments are multiples of 1/4 except for the
3646b7f5c055SJed Brown       // point * in the picture for z = 0 above and the similar points in other layers.
3647b7f5c055SJed Brown       // That point is at (gamma, gamma, 0), where gamma is calculated below.
3648b7f5c055SJed Brown       //
3649b7f5c055SJed Brown       // The column  [1,2]x[1,2]x[0,2] looks the same as this column;
3650b7f5c055SJed Brown       // The columns [1,2]x[0,1]x[0,2] and [0,1]x[1,2]x[0,2] are mirror images.
3651b7f5c055SJed Brown       //
3652b7f5c055SJed Brown       // As for how this method turned into the names given to the vertices:
3653b7f5c055SJed Brown       // that was not systematic, it was just the way it worked out in my handwritten notes.
3654b7f5c055SJed Brown 
3655b7f5c055SJed Brown       PetscInt facesPerBlock = 64;
3656b7f5c055SJed Brown       PetscInt vertsPerBlock = 56;
3657b7f5c055SJed Brown       PetscInt extentPlus[3];
3658b7f5c055SJed Brown       PetscInt numBlocks, numBlocksPlus;
36599371c9d4SSatish Balay       const PetscInt A = 0, B = 1, C = 2, D = 3, E = 4, F = 5, G = 6, H = 7, II = 8, J = 9, K = 10, L = 11, M = 12, N = 13, O = 14, P = 15, Q = 16, R = 17, S = 18, T = 19, U = 20, V = 21, W = 22, X = 23, Y = 24, Z = 25, Ap = 26, Bp = 27, Cp = 28, Dp = 29, Ep = 30, Fp = 31, Gp = 32, Hp = 33, Ip = 34, Jp = 35, Kp = 36, Lp = 37, Mp = 38, Np = 39, Op = 40, Pp = 41, Qp = 42, Rp = 43, Sp = 44, Tp = 45, Up = 46, Vp = 47, Wp = 48, Xp = 49, Yp = 50, Zp = 51, Aq = 52, Bq = 53, Cq = 54, Dq = 55;
36609371c9d4SSatish Balay       const PetscInt pattern[64][4] = {
36619371c9d4SSatish Balay         /* face to vertex within the coarse discretization of a single gyroid block */
3662b7f5c055SJed Brown         /* layer 0 */
36639371c9d4SSatish Balay         {A,           C,           K,           G          },
36649371c9d4SSatish Balay         {C,           B,           II,          K          },
36659371c9d4SSatish Balay         {D,           A,           H,           L          },
36669371c9d4SSatish Balay         {B + 56 * 1,  D,           L,           J          },
36679371c9d4SSatish Balay         {E,           B + 56 * 1,  J,           N          },
36689371c9d4SSatish Balay         {A + 56 * 2,  E,           N,           H + 56 * 2 },
36699371c9d4SSatish Balay         {F,           A + 56 * 2,  G + 56 * 2,  M          },
36709371c9d4SSatish Balay         {B,           F,           M,           II         },
3671b7f5c055SJed Brown         /* layer 1 */
36729371c9d4SSatish Balay         {G,           K,           Q,           O          },
36739371c9d4SSatish Balay         {K,           II,          P,           Q          },
36749371c9d4SSatish Balay         {L,           H,           O + 56 * 1,  R          },
36759371c9d4SSatish Balay         {J,           L,           R,           P          },
36769371c9d4SSatish Balay         {N,           J,           P,           S          },
36779371c9d4SSatish Balay         {H + 56 * 2,  N,           S,           O + 56 * 3 },
36789371c9d4SSatish Balay         {M,           G + 56 * 2,  O + 56 * 2,  T          },
36799371c9d4SSatish Balay         {II,          M,           T,           P          },
3680b7f5c055SJed Brown         /* layer 2 */
36819371c9d4SSatish Balay         {O,           Q,           Y,           U          },
36829371c9d4SSatish Balay         {Q,           P,           W,           Y          },
36839371c9d4SSatish Balay         {R,           O + 56 * 1,  U + 56 * 1,  Ap         },
36849371c9d4SSatish Balay         {P,           R,           Ap,          W          },
36859371c9d4SSatish Balay         {S,           P,           X,           Bp         },
36869371c9d4SSatish Balay         {O + 56 * 3,  S,           Bp,          V + 56 * 1 },
36879371c9d4SSatish Balay         {T,           O + 56 * 2,  V,           Z          },
36889371c9d4SSatish Balay         {P,           T,           Z,           X          },
3689b7f5c055SJed Brown         /* layer 3 */
36909371c9d4SSatish Balay         {U,           Y,           Ep,          Dp         },
36919371c9d4SSatish Balay         {Y,           W,           Cp,          Ep         },
36929371c9d4SSatish Balay         {Ap,          U + 56 * 1,  Dp + 56 * 1, Gp         },
36939371c9d4SSatish Balay         {W,           Ap,          Gp,          Cp         },
36949371c9d4SSatish Balay         {Bp,          X,           Cp + 56 * 2, Fp         },
36959371c9d4SSatish Balay         {V + 56 * 1,  Bp,          Fp,          Dp + 56 * 1},
36969371c9d4SSatish Balay         {Z,           V,           Dp,          Hp         },
36979371c9d4SSatish Balay         {X,           Z,           Hp,          Cp + 56 * 2},
3698b7f5c055SJed Brown         /* layer 4 */
36999371c9d4SSatish Balay         {Dp,          Ep,          Mp,          Kp         },
37009371c9d4SSatish Balay         {Ep,          Cp,          Ip,          Mp         },
37019371c9d4SSatish Balay         {Gp,          Dp + 56 * 1, Lp,          Np         },
37029371c9d4SSatish Balay         {Cp,          Gp,          Np,          Jp         },
37039371c9d4SSatish Balay         {Fp,          Cp + 56 * 2, Jp + 56 * 2, Pp         },
37049371c9d4SSatish Balay         {Dp + 56 * 1, Fp,          Pp,          Lp         },
37059371c9d4SSatish Balay         {Hp,          Dp,          Kp,          Op         },
37069371c9d4SSatish Balay         {Cp + 56 * 2, Hp,          Op,          Ip + 56 * 2},
3707b7f5c055SJed Brown         /* layer 5 */
37089371c9d4SSatish Balay         {Kp,          Mp,          Sp,          Rp         },
37099371c9d4SSatish Balay         {Mp,          Ip,          Qp,          Sp         },
37109371c9d4SSatish Balay         {Np,          Lp,          Rp,          Tp         },
37119371c9d4SSatish Balay         {Jp,          Np,          Tp,          Qp + 56 * 1},
37129371c9d4SSatish Balay         {Pp,          Jp + 56 * 2, Qp + 56 * 3, Up         },
37139371c9d4SSatish Balay         {Lp,          Pp,          Up,          Rp         },
37149371c9d4SSatish Balay         {Op,          Kp,          Rp,          Vp         },
37159371c9d4SSatish Balay         {Ip + 56 * 2, Op,          Vp,          Qp + 56 * 2},
3716b7f5c055SJed Brown         /* layer 6 */
37179371c9d4SSatish Balay         {Rp,          Sp,          Aq,          Yp         },
37189371c9d4SSatish Balay         {Sp,          Qp,          Wp,          Aq         },
37199371c9d4SSatish Balay         {Tp,          Rp,          Yp,          Cq         },
37209371c9d4SSatish Balay         {Qp + 56 * 1, Tp,          Cq,          Wp + 56 * 1},
37219371c9d4SSatish Balay         {Up,          Qp + 56 * 3, Xp + 56 * 1, Dq         },
37229371c9d4SSatish Balay         {Rp,          Up,          Dq,          Zp         },
37239371c9d4SSatish Balay         {Vp,          Rp,          Zp,          Bq         },
37249371c9d4SSatish Balay         {Qp + 56 * 2, Vp,          Bq,          Xp         },
3725b7f5c055SJed Brown         /* layer 7 (the top is the periodic image of the bottom of layer 0) */
37269371c9d4SSatish Balay         {Yp,          Aq,          C + 56 * 4,  A + 56 * 4 },
37279371c9d4SSatish Balay         {Aq,          Wp,          B + 56 * 4,  C + 56 * 4 },
37289371c9d4SSatish Balay         {Cq,          Yp,          A + 56 * 4,  D + 56 * 4 },
37299371c9d4SSatish Balay         {Wp + 56 * 1, Cq,          D + 56 * 4,  B + 56 * 5 },
37309371c9d4SSatish Balay         {Dq,          Xp + 56 * 1, B + 56 * 5,  E + 56 * 4 },
37319371c9d4SSatish Balay         {Zp,          Dq,          E + 56 * 4,  A + 56 * 6 },
37329371c9d4SSatish Balay         {Bq,          Zp,          A + 56 * 6,  F + 56 * 4 },
37339371c9d4SSatish Balay         {Xp,          Bq,          F + 56 * 4,  B + 56 * 4 }
3734b7f5c055SJed Brown       };
3735b7f5c055SJed Brown       const PetscReal gamma                = PetscAcosReal((PetscSqrtReal(3.) - 1.) / PetscSqrtReal(2.)) / PETSC_PI;
37369371c9d4SSatish Balay       const PetscReal patternCoords[56][3] = {
3737bee3fc89SBarry Smith         {1.,        0.,        0.  }, /* A  */
3738bee3fc89SBarry Smith         {0.,        1.,        0.  }, /* B  */
3739bee3fc89SBarry Smith         {gamma,     gamma,     0.  }, /* C  */
3740bee3fc89SBarry Smith         {1 + gamma, 1 - gamma, 0.  }, /* D  */
3741bee3fc89SBarry Smith         {2 - gamma, 2 - gamma, 0.  }, /* E  */
3742bee3fc89SBarry Smith         {1 - gamma, 1 + gamma, 0.  }, /* F  */
3743b7f5c055SJed Brown 
3744bee3fc89SBarry Smith         {.5,        0,         .25 }, /* G  */
3745bee3fc89SBarry Smith         {1.5,       0.,        .25 }, /* H  */
3746bee3fc89SBarry Smith         {.5,        1.,        .25 }, /* II */
3747bee3fc89SBarry Smith         {1.5,       1.,        .25 }, /* J  */
3748bee3fc89SBarry Smith         {.25,       .5,        .25 }, /* K  */
3749bee3fc89SBarry Smith         {1.25,      .5,        .25 }, /* L  */
3750bee3fc89SBarry Smith         {.75,       1.5,       .25 }, /* M  */
3751bee3fc89SBarry Smith         {1.75,      1.5,       .25 }, /* N  */
3752b7f5c055SJed Brown 
3753bee3fc89SBarry Smith         {0.,        0.,        .5  }, /* O  */
3754bee3fc89SBarry Smith         {1.,        1.,        .5  }, /* P  */
3755bee3fc89SBarry Smith         {gamma,     1 - gamma, .5  }, /* Q  */
3756bee3fc89SBarry Smith         {1 + gamma, gamma,     .5  }, /* R  */
3757bee3fc89SBarry Smith         {2 - gamma, 1 + gamma, .5  }, /* S  */
3758bee3fc89SBarry Smith         {1 - gamma, 2 - gamma, .5  }, /* T  */
3759b7f5c055SJed Brown 
3760bee3fc89SBarry Smith         {0.,        .5,        .75 }, /* U  */
3761bee3fc89SBarry Smith         {0.,        1.5,       .75 }, /* V  */
3762bee3fc89SBarry Smith         {1.,        .5,        .75 }, /* W  */
3763bee3fc89SBarry Smith         {1.,        1.5,       .75 }, /* X  */
3764bee3fc89SBarry Smith         {.5,        .75,       .75 }, /* Y  */
3765bee3fc89SBarry Smith         {.5,        1.75,      .75 }, /* Z  */
3766bee3fc89SBarry Smith         {1.5,       .25,       .75 }, /* Ap */
3767bee3fc89SBarry Smith         {1.5,       1.25,      .75 }, /* Bp */
3768b7f5c055SJed Brown 
3769bee3fc89SBarry Smith         {1.,        0.,        1.  }, /* Cp */
3770bee3fc89SBarry Smith         {0.,        1.,        1.  }, /* Dp */
3771bee3fc89SBarry Smith         {1 - gamma, 1 - gamma, 1.  }, /* Ep */
3772bee3fc89SBarry Smith         {1 + gamma, 1 + gamma, 1.  }, /* Fp */
3773bee3fc89SBarry Smith         {2 - gamma, gamma,     1.  }, /* Gp */
3774bee3fc89SBarry Smith         {gamma,     2 - gamma, 1.  }, /* Hp */
3775b7f5c055SJed Brown 
3776bee3fc89SBarry Smith         {.5,        0.,        1.25}, /* Ip */
3777bee3fc89SBarry Smith         {1.5,       0.,        1.25}, /* Jp */
3778bee3fc89SBarry Smith         {.5,        1.,        1.25}, /* Kp */
3779bee3fc89SBarry Smith         {1.5,       1.,        1.25}, /* Lp */
3780bee3fc89SBarry Smith         {.75,       .5,        1.25}, /* Mp */
3781bee3fc89SBarry Smith         {1.75,      .5,        1.25}, /* Np */
3782bee3fc89SBarry Smith         {.25,       1.5,       1.25}, /* Op */
3783bee3fc89SBarry Smith         {1.25,      1.5,       1.25}, /* Pp */
3784b7f5c055SJed Brown 
3785bee3fc89SBarry Smith         {0.,        0.,        1.5 }, /* Qp */
3786bee3fc89SBarry Smith         {1.,        1.,        1.5 }, /* Rp */
3787bee3fc89SBarry Smith         {1 - gamma, gamma,     1.5 }, /* Sp */
3788bee3fc89SBarry Smith         {2 - gamma, 1 - gamma, 1.5 }, /* Tp */
3789bee3fc89SBarry Smith         {1 + gamma, 2 - gamma, 1.5 }, /* Up */
3790bee3fc89SBarry Smith         {gamma,     1 + gamma, 1.5 }, /* Vp */
3791b7f5c055SJed Brown 
3792bee3fc89SBarry Smith         {0.,        .5,        1.75}, /* Wp */
3793bee3fc89SBarry Smith         {0.,        1.5,       1.75}, /* Xp */
3794bee3fc89SBarry Smith         {1.,        .5,        1.75}, /* Yp */
3795bee3fc89SBarry Smith         {1.,        1.5,       1.75}, /* Zp */
3796bee3fc89SBarry Smith         {.5,        .25,       1.75}, /* Aq */
3797bee3fc89SBarry Smith         {.5,        1.25,      1.75}, /* Bq */
3798bee3fc89SBarry Smith         {1.5,       .75,       1.75}, /* Cq */
3799bee3fc89SBarry Smith         {1.5,       1.75,      1.75}, /* Dq */
3800b7f5c055SJed Brown       };
3801b7f5c055SJed Brown       PetscInt(*cells)[64][4] = NULL;
3802b7f5c055SJed Brown       PetscBool *seen;
3803b7f5c055SJed Brown       PetscInt  *vertToTrueVert;
3804b7f5c055SJed Brown       PetscInt   count;
3805b7f5c055SJed Brown 
3806b7f5c055SJed Brown       for (PetscInt i = 0; i < 3; i++) extentPlus[i] = extent[i] + 1;
3807b7f5c055SJed Brown       numBlocks = 1;
3808b7f5c055SJed Brown       for (PetscInt i = 0; i < 3; i++) numBlocks *= extent[i];
3809b7f5c055SJed Brown       numBlocksPlus = 1;
3810b7f5c055SJed Brown       for (PetscInt i = 0; i < 3; i++) numBlocksPlus *= extentPlus[i];
3811b7f5c055SJed Brown       numFaces = numBlocks * facesPerBlock;
38129566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numBlocks, &cells));
38139566063dSJacob Faibussowitsch       PetscCall(PetscCalloc1(numBlocksPlus * vertsPerBlock, &seen));
3814b7f5c055SJed Brown       for (PetscInt k = 0; k < extent[2]; k++) {
3815b7f5c055SJed Brown         for (PetscInt j = 0; j < extent[1]; j++) {
3816b7f5c055SJed Brown           for (PetscInt i = 0; i < extent[0]; i++) {
3817b7f5c055SJed Brown             for (PetscInt f = 0; f < facesPerBlock; f++) {
3818b7f5c055SJed Brown               for (PetscInt v = 0; v < 4; v++) {
3819b7f5c055SJed Brown                 PetscInt vertRaw     = pattern[f][v];
3820b7f5c055SJed Brown                 PetscInt blockidx    = vertRaw / 56;
3821b7f5c055SJed Brown                 PetscInt patternvert = vertRaw % 56;
3822b7f5c055SJed Brown                 PetscInt xplus       = (blockidx & 1);
3823b7f5c055SJed Brown                 PetscInt yplus       = (blockidx & 2) >> 1;
3824b7f5c055SJed Brown                 PetscInt zplus       = (blockidx & 4) >> 2;
3825b7f5c055SJed Brown                 PetscInt zcoord      = (periodic && periodic[2] == DM_BOUNDARY_PERIODIC) ? ((k + zplus) % extent[2]) : (k + zplus);
3826b7f5c055SJed Brown                 PetscInt ycoord      = (periodic && periodic[1] == DM_BOUNDARY_PERIODIC) ? ((j + yplus) % extent[1]) : (j + yplus);
3827b7f5c055SJed Brown                 PetscInt xcoord      = (periodic && periodic[0] == DM_BOUNDARY_PERIODIC) ? ((i + xplus) % extent[0]) : (i + xplus);
3828b7f5c055SJed Brown                 PetscInt vert        = ((zcoord * extentPlus[1] + ycoord) * extentPlus[0] + xcoord) * 56 + patternvert;
3829b7f5c055SJed Brown 
3830b7f5c055SJed Brown                 cells[(k * extent[1] + j) * extent[0] + i][f][v] = vert;
3831b7f5c055SJed Brown                 seen[vert]                                       = PETSC_TRUE;
3832b7f5c055SJed Brown               }
3833b7f5c055SJed Brown             }
3834b7f5c055SJed Brown           }
3835b7f5c055SJed Brown         }
3836b7f5c055SJed Brown       }
38379371c9d4SSatish Balay       for (PetscInt i = 0; i < numBlocksPlus * vertsPerBlock; i++)
38389371c9d4SSatish Balay         if (seen[i]) numVertices++;
3839b7f5c055SJed Brown       count = 0;
38409566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numBlocksPlus * vertsPerBlock, &vertToTrueVert));
38419566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numVertices * 3, &vtxCoords));
3842b7f5c055SJed Brown       for (PetscInt i = 0; i < numBlocksPlus * vertsPerBlock; i++) vertToTrueVert[i] = -1;
3843b7f5c055SJed Brown       for (PetscInt k = 0; k < extentPlus[2]; k++) {
3844b7f5c055SJed Brown         for (PetscInt j = 0; j < extentPlus[1]; j++) {
3845b7f5c055SJed Brown           for (PetscInt i = 0; i < extentPlus[0]; i++) {
3846b7f5c055SJed Brown             for (PetscInt v = 0; v < vertsPerBlock; v++) {
3847b7f5c055SJed Brown               PetscInt vIdx = ((k * extentPlus[1] + j) * extentPlus[0] + i) * vertsPerBlock + v;
3848b7f5c055SJed Brown 
3849b7f5c055SJed Brown               if (seen[vIdx]) {
3850b7f5c055SJed Brown                 PetscInt thisVert;
3851b7f5c055SJed Brown 
3852b7f5c055SJed Brown                 vertToTrueVert[vIdx] = thisVert = count++;
3853b7f5c055SJed Brown 
3854b7f5c055SJed Brown                 for (PetscInt d = 0; d < 3; d++) vtxCoords[3 * thisVert + d] = patternCoords[v][d];
3855b7f5c055SJed Brown                 vtxCoords[3 * thisVert + 0] += i * 2;
3856b7f5c055SJed Brown                 vtxCoords[3 * thisVert + 1] += j * 2;
3857b7f5c055SJed Brown                 vtxCoords[3 * thisVert + 2] += k * 2;
3858b7f5c055SJed Brown               }
3859b7f5c055SJed Brown             }
3860b7f5c055SJed Brown           }
3861b7f5c055SJed Brown         }
3862b7f5c055SJed Brown       }
3863b7f5c055SJed Brown       for (PetscInt i = 0; i < numBlocks; i++) {
3864b7f5c055SJed Brown         for (PetscInt f = 0; f < facesPerBlock; f++) {
3865ad540459SPierre Jolivet           for (PetscInt v = 0; v < 4; v++) cells[i][f][v] = vertToTrueVert[cells[i][f][v]];
3866b7f5c055SJed Brown         }
3867b7f5c055SJed Brown       }
38689566063dSJacob Faibussowitsch       PetscCall(PetscFree(vertToTrueVert));
38699566063dSJacob Faibussowitsch       PetscCall(PetscFree(seen));
3870b7f5c055SJed Brown       cells_flat = cells[0][0];
3871b7f5c055SJed Brown       numEdges   = 0;
3872b7f5c055SJed Brown       for (PetscInt i = 0; i < numFaces; i++) {
3873b7f5c055SJed Brown         for (PetscInt e = 0; e < 4; e++) {
3874b7f5c055SJed Brown           PetscInt         ev[]       = {cells_flat[i * 4 + e], cells_flat[i * 4 + ((e + 1) % 4)]};
3875b7f5c055SJed Brown           const PetscReal *evCoords[] = {&vtxCoords[3 * ev[0]], &vtxCoords[3 * ev[1]]};
3876b7f5c055SJed Brown 
3877b7f5c055SJed Brown           for (PetscInt d = 0; d < 3; d++) {
3878b7f5c055SJed Brown             if (!periodic || periodic[0] != DM_BOUNDARY_PERIODIC) {
3879b7f5c055SJed Brown               if (evCoords[0][d] == 0. && evCoords[1][d] == 0.) numEdges++;
3880b7f5c055SJed Brown               if (evCoords[0][d] == 2. * extent[d] && evCoords[1][d] == 2. * extent[d]) numEdges++;
3881b7f5c055SJed Brown             }
3882b7f5c055SJed Brown           }
3883b7f5c055SJed Brown         }
3884b7f5c055SJed Brown       }
38859566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numEdges, &edges));
38869566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numEdges, &edgeSets));
3887b7f5c055SJed Brown       for (PetscInt edge = 0, i = 0; i < numFaces; i++) {
3888b7f5c055SJed Brown         for (PetscInt e = 0; e < 4; e++) {
3889b7f5c055SJed Brown           PetscInt         ev[]       = {cells_flat[i * 4 + e], cells_flat[i * 4 + ((e + 1) % 4)]};
3890b7f5c055SJed Brown           const PetscReal *evCoords[] = {&vtxCoords[3 * ev[0]], &vtxCoords[3 * ev[1]]};
3891b7f5c055SJed Brown 
3892b7f5c055SJed Brown           for (PetscInt d = 0; d < 3; d++) {
3893b7f5c055SJed Brown             if (!periodic || periodic[d] != DM_BOUNDARY_PERIODIC) {
3894b7f5c055SJed Brown               if (evCoords[0][d] == 0. && evCoords[1][d] == 0.) {
3895b7f5c055SJed Brown                 edges[edge][0]   = ev[0];
3896b7f5c055SJed Brown                 edges[edge][1]   = ev[1];
3897b7f5c055SJed Brown                 edgeSets[edge++] = 2 * d;
3898b7f5c055SJed Brown               }
3899b7f5c055SJed Brown               if (evCoords[0][d] == 2. * extent[d] && evCoords[1][d] == 2. * extent[d]) {
3900b7f5c055SJed Brown                 edges[edge][0]   = ev[0];
3901b7f5c055SJed Brown                 edges[edge][1]   = ev[1];
3902b7f5c055SJed Brown                 edgeSets[edge++] = 2 * d + 1;
3903b7f5c055SJed Brown               }
3904b7f5c055SJed Brown             }
3905b7f5c055SJed Brown           }
3906b7f5c055SJed Brown         }
3907b7f5c055SJed Brown       }
3908b7f5c055SJed Brown     }
3909b7f5c055SJed Brown     evalFunc   = TPSEvaluate_Gyroid;
39104663dae6SJed Brown     normalFunc = TPSExtrudeNormalFunc_Gyroid;
3911b7f5c055SJed Brown     break;
3912b7f5c055SJed Brown   }
3913b7f5c055SJed Brown 
39149566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(dm, topoDim));
3915c5853193SPierre Jolivet   if (rank == 0) PetscCall(DMPlexBuildFromCellList(dm, numFaces, numVertices, 4, cells_flat));
39169566063dSJacob Faibussowitsch   else PetscCall(DMPlexBuildFromCellList(dm, 0, 0, 0, NULL));
39179566063dSJacob Faibussowitsch   PetscCall(PetscFree(cells_flat));
3918b7f5c055SJed Brown   {
3919b7f5c055SJed Brown     DM idm;
39209566063dSJacob Faibussowitsch     PetscCall(DMPlexInterpolate(dm, &idm));
392169d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &idm));
3922b7f5c055SJed Brown   }
3923c5853193SPierre Jolivet   if (rank == 0) PetscCall(DMPlexBuildCoordinatesFromCellList(dm, spaceDim, vtxCoords));
39249566063dSJacob Faibussowitsch   else PetscCall(DMPlexBuildCoordinatesFromCellList(dm, spaceDim, NULL));
39259566063dSJacob Faibussowitsch   PetscCall(PetscFree(vtxCoords));
3926b7f5c055SJed Brown 
39279566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "Face Sets"));
39289566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, "Face Sets", &label));
3929b7f5c055SJed Brown   for (PetscInt e = 0; e < numEdges; e++) {
3930b7f5c055SJed Brown     PetscInt        njoin;
3931b7f5c055SJed Brown     const PetscInt *join, verts[] = {numFaces + edges[e][0], numFaces + edges[e][1]};
39329566063dSJacob Faibussowitsch     PetscCall(DMPlexGetJoin(dm, 2, verts, &njoin, &join));
393363a3b9bcSJacob Faibussowitsch     PetscCheck(njoin == 1, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Expected unique join of vertices %" PetscInt_FMT " and %" PetscInt_FMT, edges[e][0], edges[e][1]);
39349566063dSJacob Faibussowitsch     PetscCall(DMLabelSetValue(label, join[0], edgeSets[e]));
39359566063dSJacob Faibussowitsch     PetscCall(DMPlexRestoreJoin(dm, 2, verts, &njoin, &join));
3936b7f5c055SJed Brown   }
39379566063dSJacob Faibussowitsch   PetscCall(PetscFree(edges));
39389566063dSJacob Faibussowitsch   PetscCall(PetscFree(edgeSets));
39391436d7faSJed Brown   if (tps_distribute) {
39401436d7faSJed Brown     DM               pdm = NULL;
39411436d7faSJed Brown     PetscPartitioner part;
39421436d7faSJed Brown 
39439566063dSJacob Faibussowitsch     PetscCall(DMPlexGetPartitioner(dm, &part));
39449566063dSJacob Faibussowitsch     PetscCall(PetscPartitionerSetFromOptions(part));
39459566063dSJacob Faibussowitsch     PetscCall(DMPlexDistribute(dm, 0, NULL, &pdm));
394648a46eb9SPierre Jolivet     if (pdm) PetscCall(DMPlexReplace_Internal(dm, &pdm));
39471436d7faSJed Brown     // Do not auto-distribute again
39489566063dSJacob Faibussowitsch     PetscCall(DMPlexDistributeSetDefault(dm, PETSC_FALSE));
39491436d7faSJed Brown   }
3950b7f5c055SJed Brown 
39519566063dSJacob Faibussowitsch   PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE));
3952b7f5c055SJed Brown   for (PetscInt refine = 0; refine < refinements; refine++) {
3953b7f5c055SJed Brown     PetscInt     m;
3954b7f5c055SJed Brown     DM           dmf;
3955b7f5c055SJed Brown     Vec          X;
3956b7f5c055SJed Brown     PetscScalar *x;
39579566063dSJacob Faibussowitsch     PetscCall(DMRefine(dm, MPI_COMM_NULL, &dmf));
395869d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &dmf));
3959b7f5c055SJed Brown 
39609566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinatesLocal(dm, &X));
39619566063dSJacob Faibussowitsch     PetscCall(VecGetLocalSize(X, &m));
39629566063dSJacob Faibussowitsch     PetscCall(VecGetArray(X, &x));
396348a46eb9SPierre Jolivet     for (PetscInt i = 0; i < m; i += 3) PetscCall(TPSNearestPoint(evalFunc, &x[i]));
39649566063dSJacob Faibussowitsch     PetscCall(VecRestoreArray(X, &x));
3965b7f5c055SJed Brown   }
3966b7f5c055SJed Brown 
3967b7f5c055SJed Brown   // Face Sets has already been propagated to new vertices during refinement; this propagates to the initial vertices.
39689566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, "Face Sets", &label));
39699566063dSJacob Faibussowitsch   PetscCall(DMPlexLabelComplete(dm, label));
3970b7f5c055SJed Brown 
397146139095SJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_Generate, dm, 0, 0, 0));
397246139095SJed Brown 
3973b7f5c055SJed Brown   if (thickness > 0) {
39744663dae6SJed Brown     DM              edm, cdm, ecdm;
39754663dae6SJed Brown     DMPlexTransform tr;
39764663dae6SJed Brown     const char     *prefix;
39774663dae6SJed Brown     PetscOptions    options;
39784663dae6SJed Brown     // Code from DMPlexExtrude
39794663dae6SJed Brown     PetscCall(DMPlexTransformCreate(PetscObjectComm((PetscObject)dm), &tr));
39804663dae6SJed Brown     PetscCall(DMPlexTransformSetDM(tr, dm));
39814663dae6SJed Brown     PetscCall(DMPlexTransformSetType(tr, DMPLEXEXTRUDE));
39824663dae6SJed Brown     PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm, &prefix));
39834663dae6SJed Brown     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)tr, prefix));
39844663dae6SJed Brown     PetscCall(PetscObjectGetOptions((PetscObject)dm, &options));
39854663dae6SJed Brown     PetscCall(PetscObjectSetOptions((PetscObject)tr, options));
39864663dae6SJed Brown     PetscCall(DMPlexTransformExtrudeSetLayers(tr, layers));
39874663dae6SJed Brown     PetscCall(DMPlexTransformExtrudeSetThickness(tr, thickness));
39884663dae6SJed Brown     PetscCall(DMPlexTransformExtrudeSetTensor(tr, PETSC_FALSE));
39894663dae6SJed Brown     PetscCall(DMPlexTransformExtrudeSetSymmetric(tr, PETSC_TRUE));
39904663dae6SJed Brown     PetscCall(DMPlexTransformExtrudeSetNormalFunction(tr, normalFunc));
39914663dae6SJed Brown     PetscCall(DMPlexTransformSetFromOptions(tr));
39924663dae6SJed Brown     PetscCall(PetscObjectSetOptions((PetscObject)tr, NULL));
39934663dae6SJed Brown     PetscCall(DMPlexTransformSetUp(tr));
39944663dae6SJed Brown     PetscCall(PetscObjectViewFromOptions((PetscObject)tr, NULL, "-dm_plex_tps_transform_view"));
39954663dae6SJed Brown     PetscCall(DMPlexTransformApply(tr, dm, &edm));
39964663dae6SJed Brown     PetscCall(DMCopyDisc(dm, edm));
39974663dae6SJed Brown     PetscCall(DMGetCoordinateDM(dm, &cdm));
39984663dae6SJed Brown     PetscCall(DMGetCoordinateDM(edm, &ecdm));
39994663dae6SJed Brown     PetscCall(DMCopyDisc(cdm, ecdm));
40004663dae6SJed Brown     PetscCall(DMPlexTransformCreateDiscLabels(tr, edm));
40014663dae6SJed Brown     PetscCall(DMPlexTransformDestroy(&tr));
4002a77a5016SMatthew G. Knepley     PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, edm));
400369d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &edm));
4004b7f5c055SJed Brown   }
40053ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4006b7f5c055SJed Brown }
4007b7f5c055SJed Brown 
4008b7f5c055SJed Brown /*@
4009b7f5c055SJed Brown   DMPlexCreateTPSMesh - Create a distributed, interpolated mesh of a triply-periodic surface
4010b7f5c055SJed Brown 
4011b7f5c055SJed Brown   Collective
4012b7f5c055SJed Brown 
4013b7f5c055SJed Brown   Input Parameters:
4014a1cb98faSBarry Smith + comm           - The communicator for the `DM` object
4015b7f5c055SJed Brown . tpstype        - Type of triply-periodic surface
4016b7f5c055SJed Brown . extent         - Array of length 3 containing number of periods in each direction
401720f4b53cSBarry Smith . periodic       - array of length 3 with periodicity, or `NULL` for non-periodic
40181436d7faSJed Brown . tps_distribute - Distribute 2D manifold mesh prior to refinement and extrusion (more scalable)
4019817da375SSatish Balay . refinements    - Number of factor-of-2 refinements of 2D manifold mesh
40201436d7faSJed Brown . layers         - Number of cell layers extruded in normal direction
4021817da375SSatish Balay - thickness      - Thickness in normal direction
4022b7f5c055SJed Brown 
4023b7f5c055SJed Brown   Output Parameter:
4024a1cb98faSBarry Smith . dm - The `DM` object
4025a1cb98faSBarry Smith 
4026a1cb98faSBarry Smith   Level: beginner
4027b7f5c055SJed Brown 
4028b7f5c055SJed Brown   Notes:
402915229ffcSPierre Jolivet   This meshes the surface of the Schwarz P or Gyroid surfaces.  Schwarz P is the simplest member of the triply-periodic minimal surfaces.
40301d27aa22SBarry Smith   <https://en.wikipedia.org/wiki/Schwarz_minimal_surface#Schwarz_P_(%22Primitive%22)> and can be cut with "clean" boundaries.
40311d27aa22SBarry Smith   The Gyroid <https://en.wikipedia.org/wiki/Gyroid> is another triply-periodic minimal surface with applications in additive manufacturing; it is much more difficult to "cut" since there are no planes of symmetry.
4032b7f5c055SJed Brown   Our implementation creates a very coarse mesh of the surface and refines (by 4-way splitting) as many times as requested.
4033b7f5c055SJed Brown   On each refinement, all vertices are projected to their nearest point on the surface.
4034b7f5c055SJed Brown   This projection could readily be extended to related surfaces.
4035b7f5c055SJed Brown 
40361d27aa22SBarry Smith   See {cite}`maskery2018insights`
40371d27aa22SBarry Smith 
40381d27aa22SBarry Smith   The face (edge) sets for the Schwarz P surface are numbered $1(-x), 2(+x), 3(-y), 4(+y), 5(-z), 6(+z)$.
40391d27aa22SBarry Smith   When the mesh is refined, "Face Sets" contain the new vertices (created during refinement).
40401d27aa22SBarry Smith   Use `DMPlexLabelComplete()` to propagate to coarse-level vertices.
4041b7f5c055SJed Brown 
404260225df5SJacob Faibussowitsch   Developer Notes:
4043b7f5c055SJed Brown   The Gyroid mesh does not currently mark boundary sets.
4044b7f5c055SJed Brown 
40451cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateSphereMesh()`, `DMSetType()`, `DMCreate()`
4046b7f5c055SJed Brown @*/
4047d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateTPSMesh(MPI_Comm comm, DMPlexTPSType tpstype, const PetscInt extent[], const DMBoundaryType periodic[], PetscBool tps_distribute, PetscInt refinements, PetscInt layers, PetscReal thickness, DM *dm)
4048d71ae5a4SJacob Faibussowitsch {
4049b7f5c055SJed Brown   PetscFunctionBegin;
40509566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
40519566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
40529566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateTPSMesh_Internal(*dm, tpstype, extent, periodic, tps_distribute, refinements, layers, thickness));
40533ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4054b7f5c055SJed Brown }
4055b7f5c055SJed Brown 
40569318fe57SMatthew G. Knepley /*@
40579318fe57SMatthew G. Knepley   DMPlexCreateSphereMesh - Creates a mesh on the d-dimensional sphere, S^d.
40589318fe57SMatthew G. Knepley 
40599318fe57SMatthew G. Knepley   Collective
40609318fe57SMatthew G. Knepley 
40619318fe57SMatthew G. Knepley   Input Parameters:
4062a1cb98faSBarry Smith + comm    - The communicator for the `DM` object
40639318fe57SMatthew G. Knepley . dim     - The dimension
40649318fe57SMatthew G. Knepley . simplex - Use simplices, or tensor product cells
40659318fe57SMatthew G. Knepley - R       - The radius
40669318fe57SMatthew G. Knepley 
40679318fe57SMatthew G. Knepley   Output Parameter:
4068a1cb98faSBarry Smith . dm - The `DM` object
40699318fe57SMatthew G. Knepley 
40709318fe57SMatthew G. Knepley   Level: beginner
40719318fe57SMatthew G. Knepley 
40721cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateBallMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()`
40739318fe57SMatthew G. Knepley @*/
4074d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateSphereMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, PetscReal R, DM *dm)
4075d71ae5a4SJacob Faibussowitsch {
40769318fe57SMatthew G. Knepley   PetscFunctionBegin;
40774f572ea9SToby Isaac   PetscAssertPointer(dm, 5);
40789566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
40799566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
40809566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateSphereMesh_Internal(*dm, dim, simplex, R));
40813ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
40829318fe57SMatthew G. Knepley }
40839318fe57SMatthew G. Knepley 
4084d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBallMesh_Internal(DM dm, PetscInt dim, PetscReal R)
4085d71ae5a4SJacob Faibussowitsch {
40869318fe57SMatthew G. Knepley   DM          sdm, vol;
40879318fe57SMatthew G. Knepley   DMLabel     bdlabel;
4088dd2b43ebSStefano Zampini   const char *prefix;
40899318fe57SMatthew G. Knepley 
40909318fe57SMatthew G. Knepley   PetscFunctionBegin;
40919566063dSJacob Faibussowitsch   PetscCall(DMCreate(PetscObjectComm((PetscObject)dm), &sdm));
40929566063dSJacob Faibussowitsch   PetscCall(DMSetType(sdm, DMPLEX));
4093dd2b43ebSStefano Zampini   PetscCall(DMGetOptionsPrefix(dm, &prefix));
4094dd2b43ebSStefano Zampini   PetscCall(DMSetOptionsPrefix(sdm, prefix));
4095dd2b43ebSStefano Zampini   PetscCall(DMAppendOptionsPrefix(sdm, "bd_"));
4096dd2b43ebSStefano Zampini   PetscCall(DMPlexDistributeSetDefault(sdm, PETSC_FALSE));
40979566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateSphereMesh_Internal(sdm, dim - 1, PETSC_TRUE, R));
40989566063dSJacob Faibussowitsch   PetscCall(DMSetFromOptions(sdm));
40999566063dSJacob Faibussowitsch   PetscCall(DMViewFromOptions(sdm, NULL, "-dm_view"));
41009566063dSJacob Faibussowitsch   PetscCall(DMPlexGenerate(sdm, NULL, PETSC_TRUE, &vol));
41019566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&sdm));
410269d8a87bSksagiyam   PetscCall(DMPlexReplace_Internal(dm, &vol));
41039566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, "marker"));
41049566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, "marker", &bdlabel));
41059566063dSJacob Faibussowitsch   PetscCall(DMPlexMarkBoundaryFaces(dm, PETSC_DETERMINE, bdlabel));
41069566063dSJacob Faibussowitsch   PetscCall(DMPlexLabelComplete(dm, bdlabel));
41073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
410851a74b61SMatthew G. Knepley }
410951a74b61SMatthew G. Knepley 
411051a74b61SMatthew G. Knepley /*@
411151a74b61SMatthew G. Knepley   DMPlexCreateBallMesh - Creates a simplex mesh on the d-dimensional ball, B^d.
411251a74b61SMatthew G. Knepley 
411351a74b61SMatthew G. Knepley   Collective
411451a74b61SMatthew G. Knepley 
411551a74b61SMatthew G. Knepley   Input Parameters:
4116a1cb98faSBarry Smith + comm - The communicator for the `DM` object
411751a74b61SMatthew G. Knepley . dim  - The dimension
411851a74b61SMatthew G. Knepley - R    - The radius
411951a74b61SMatthew G. Knepley 
412051a74b61SMatthew G. Knepley   Output Parameter:
4121a1cb98faSBarry Smith . dm - The `DM` object
412251a74b61SMatthew G. Knepley 
4123a1cb98faSBarry Smith   Options Database Key:
412460225df5SJacob Faibussowitsch . bd_dm_refine - This will refine the surface mesh preserving the sphere geometry
412551a74b61SMatthew G. Knepley 
412651a74b61SMatthew G. Knepley   Level: beginner
412751a74b61SMatthew G. Knepley 
41281cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateSphereMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()`
412951a74b61SMatthew G. Knepley @*/
4130d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateBallMesh(MPI_Comm comm, PetscInt dim, PetscReal R, DM *dm)
4131d71ae5a4SJacob Faibussowitsch {
413251a74b61SMatthew G. Knepley   PetscFunctionBegin;
41339566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
41349566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
41359566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateBallMesh_Internal(*dm, dim, R));
41363ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
41372829fed8SMatthew G. Knepley }
41382829fed8SMatthew G. Knepley 
4139d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateReferenceCell_Internal(DM rdm, DMPolytopeType ct)
4140d71ae5a4SJacob Faibussowitsch {
41410a6ba040SMatthew G. Knepley   PetscFunctionBegin;
41429318fe57SMatthew G. Knepley   switch (ct) {
41439371c9d4SSatish Balay   case DM_POLYTOPE_POINT: {
41449318fe57SMatthew G. Knepley     PetscInt    numPoints[1]        = {1};
41459318fe57SMatthew G. Knepley     PetscInt    coneSize[1]         = {0};
41469318fe57SMatthew G. Knepley     PetscInt    cones[1]            = {0};
41479318fe57SMatthew G. Knepley     PetscInt    coneOrientations[1] = {0};
41489318fe57SMatthew G. Knepley     PetscScalar vertexCoords[1]     = {0.0};
41499318fe57SMatthew G. Knepley 
41509566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 0));
41519566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 0, numPoints, coneSize, cones, coneOrientations, vertexCoords));
41529371c9d4SSatish Balay   } break;
41539371c9d4SSatish Balay   case DM_POLYTOPE_SEGMENT: {
41549318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {2, 1};
41559318fe57SMatthew G. Knepley     PetscInt    coneSize[3]         = {2, 0, 0};
41569318fe57SMatthew G. Knepley     PetscInt    cones[2]            = {1, 2};
41579318fe57SMatthew G. Knepley     PetscInt    coneOrientations[2] = {0, 0};
41589318fe57SMatthew G. Knepley     PetscScalar vertexCoords[2]     = {-1.0, 1.0};
41599318fe57SMatthew G. Knepley 
41609566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 1));
41619566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
41629371c9d4SSatish Balay   } break;
41639371c9d4SSatish Balay   case DM_POLYTOPE_POINT_PRISM_TENSOR: {
4164b5a892a1SMatthew G. Knepley     PetscInt    numPoints[2]        = {2, 1};
4165b5a892a1SMatthew G. Knepley     PetscInt    coneSize[3]         = {2, 0, 0};
4166b5a892a1SMatthew G. Knepley     PetscInt    cones[2]            = {1, 2};
4167b5a892a1SMatthew G. Knepley     PetscInt    coneOrientations[2] = {0, 0};
4168b5a892a1SMatthew G. Knepley     PetscScalar vertexCoords[2]     = {-1.0, 1.0};
4169b5a892a1SMatthew G. Knepley 
41709566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 1));
41719566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
41729371c9d4SSatish Balay   } break;
41739371c9d4SSatish Balay   case DM_POLYTOPE_TRIANGLE: {
41749318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {3, 1};
41759318fe57SMatthew G. Knepley     PetscInt    coneSize[4]         = {3, 0, 0, 0};
41769318fe57SMatthew G. Knepley     PetscInt    cones[3]            = {1, 2, 3};
41779318fe57SMatthew G. Knepley     PetscInt    coneOrientations[3] = {0, 0, 0};
41789318fe57SMatthew G. Knepley     PetscScalar vertexCoords[6]     = {-1.0, -1.0, 1.0, -1.0, -1.0, 1.0};
41799318fe57SMatthew G. Knepley 
41809566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 2));
41819566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
41829371c9d4SSatish Balay   } break;
41839371c9d4SSatish Balay   case DM_POLYTOPE_QUADRILATERAL: {
41849318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {4, 1};
41859318fe57SMatthew G. Knepley     PetscInt    coneSize[5]         = {4, 0, 0, 0, 0};
41869318fe57SMatthew G. Knepley     PetscInt    cones[4]            = {1, 2, 3, 4};
41879318fe57SMatthew G. Knepley     PetscInt    coneOrientations[4] = {0, 0, 0, 0};
41889318fe57SMatthew G. Knepley     PetscScalar vertexCoords[8]     = {-1.0, -1.0, 1.0, -1.0, 1.0, 1.0, -1.0, 1.0};
41899318fe57SMatthew G. Knepley 
41909566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 2));
41919566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
41929371c9d4SSatish Balay   } break;
41939371c9d4SSatish Balay   case DM_POLYTOPE_SEG_PRISM_TENSOR: {
41949318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {4, 1};
41959318fe57SMatthew G. Knepley     PetscInt    coneSize[5]         = {4, 0, 0, 0, 0};
41969318fe57SMatthew G. Knepley     PetscInt    cones[4]            = {1, 2, 3, 4};
41979318fe57SMatthew G. Knepley     PetscInt    coneOrientations[4] = {0, 0, 0, 0};
41989318fe57SMatthew G. Knepley     PetscScalar vertexCoords[8]     = {-1.0, -1.0, 1.0, -1.0, -1.0, 1.0, 1.0, 1.0};
41999318fe57SMatthew G. Knepley 
42009566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 2));
42019566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42029371c9d4SSatish Balay   } break;
42039371c9d4SSatish Balay   case DM_POLYTOPE_TETRAHEDRON: {
42049318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {4, 1};
42059318fe57SMatthew G. Knepley     PetscInt    coneSize[5]         = {4, 0, 0, 0, 0};
4206f0edb160SMatthew G. Knepley     PetscInt    cones[4]            = {1, 2, 3, 4};
42079318fe57SMatthew G. Knepley     PetscInt    coneOrientations[4] = {0, 0, 0, 0};
4208f0edb160SMatthew G. Knepley     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};
42099318fe57SMatthew G. Knepley 
42109566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42119566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42129371c9d4SSatish Balay   } break;
42139371c9d4SSatish Balay   case DM_POLYTOPE_HEXAHEDRON: {
42149318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {8, 1};
42159318fe57SMatthew G. Knepley     PetscInt    coneSize[9]         = {8, 0, 0, 0, 0, 0, 0, 0, 0};
4216f0edb160SMatthew G. Knepley     PetscInt    cones[8]            = {1, 2, 3, 4, 5, 6, 7, 8};
42179318fe57SMatthew G. Knepley     PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
42189371c9d4SSatish Balay     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, -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 1.0, 1.0, -1.0, 1.0, 1.0};
42199318fe57SMatthew G. Knepley 
42209566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42219566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42229371c9d4SSatish Balay   } break;
42239371c9d4SSatish Balay   case DM_POLYTOPE_TRI_PRISM: {
42249318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {6, 1};
42259318fe57SMatthew G. Knepley     PetscInt    coneSize[7]         = {6, 0, 0, 0, 0, 0, 0};
4226f0edb160SMatthew G. Knepley     PetscInt    cones[6]            = {1, 2, 3, 4, 5, 6};
42279318fe57SMatthew G. Knepley     PetscInt    coneOrientations[6] = {0, 0, 0, 0, 0, 0};
42289371c9d4SSatish Balay     PetscScalar vertexCoords[18]    = {-1.0, -1.0, -1.0, -1.0, 1.0, -1.0, 1.0, -1.0, -1.0, -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, 1.0};
42299318fe57SMatthew G. Knepley 
42309566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42319566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42329371c9d4SSatish Balay   } break;
42339371c9d4SSatish Balay   case DM_POLYTOPE_TRI_PRISM_TENSOR: {
42349318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {6, 1};
42359318fe57SMatthew G. Knepley     PetscInt    coneSize[7]         = {6, 0, 0, 0, 0, 0, 0};
42369318fe57SMatthew G. Knepley     PetscInt    cones[6]            = {1, 2, 3, 4, 5, 6};
42379318fe57SMatthew G. Knepley     PetscInt    coneOrientations[6] = {0, 0, 0, 0, 0, 0};
42389371c9d4SSatish Balay     PetscScalar vertexCoords[18]    = {-1.0, -1.0, -1.0, 1.0, -1.0, -1.0, -1.0, 1.0, -1.0, -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, 1.0};
42399318fe57SMatthew G. Knepley 
42409566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42419566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42429371c9d4SSatish Balay   } break;
42439371c9d4SSatish Balay   case DM_POLYTOPE_QUAD_PRISM_TENSOR: {
42449318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {8, 1};
42459318fe57SMatthew G. Knepley     PetscInt    coneSize[9]         = {8, 0, 0, 0, 0, 0, 0, 0, 0};
42469318fe57SMatthew G. Knepley     PetscInt    cones[8]            = {1, 2, 3, 4, 5, 6, 7, 8};
42479318fe57SMatthew G. Knepley     PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
42489371c9d4SSatish Balay     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, -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 1.0, 1.0, -1.0, 1.0, 1.0};
42499318fe57SMatthew G. Knepley 
42509566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42519566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42529371c9d4SSatish Balay   } break;
42539371c9d4SSatish Balay   case DM_POLYTOPE_PYRAMID: {
42549318fe57SMatthew G. Knepley     PetscInt    numPoints[2]        = {5, 1};
42559318fe57SMatthew G. Knepley     PetscInt    coneSize[6]         = {5, 0, 0, 0, 0, 0};
4256f0edb160SMatthew G. Knepley     PetscInt    cones[5]            = {1, 2, 3, 4, 5};
42579318fe57SMatthew G. Knepley     PetscInt    coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0};
42589371c9d4SSatish Balay     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, 0.0, 0.0, 1.0};
42599318fe57SMatthew G. Knepley 
42609566063dSJacob Faibussowitsch     PetscCall(DMSetDimension(rdm, 3));
42619566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords));
42629371c9d4SSatish Balay   } break;
4263d71ae5a4SJacob Faibussowitsch   default:
4264d71ae5a4SJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)rdm), PETSC_ERR_ARG_WRONG, "Cannot create reference cell for cell type %s", DMPolytopeTypes[ct]);
42659318fe57SMatthew G. Knepley   }
42669318fe57SMatthew G. Knepley   {
42679318fe57SMatthew G. Knepley     PetscInt Nv, v;
42689318fe57SMatthew G. Knepley 
42699318fe57SMatthew G. Knepley     /* Must create the celltype label here so that we do not automatically try to compute the types */
42709566063dSJacob Faibussowitsch     PetscCall(DMCreateLabel(rdm, "celltype"));
42719566063dSJacob Faibussowitsch     PetscCall(DMPlexSetCellType(rdm, 0, ct));
42729566063dSJacob Faibussowitsch     PetscCall(DMPlexGetChart(rdm, NULL, &Nv));
42739566063dSJacob Faibussowitsch     for (v = 1; v < Nv; ++v) PetscCall(DMPlexSetCellType(rdm, v, DM_POLYTOPE_POINT));
42749318fe57SMatthew G. Knepley   }
42759566063dSJacob Faibussowitsch   PetscCall(DMPlexInterpolateInPlace_Internal(rdm));
42769566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)rdm, DMPolytopeTypes[ct]));
42773ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
42780a6ba040SMatthew G. Knepley }
42790a6ba040SMatthew G. Knepley 
42809318fe57SMatthew G. Knepley /*@
4281a1cb98faSBarry Smith   DMPlexCreateReferenceCell - Create a `DMPLEX` with the appropriate FEM reference cell
42829318fe57SMatthew G. Knepley 
42839318fe57SMatthew G. Knepley   Collective
42849318fe57SMatthew G. Knepley 
42859318fe57SMatthew G. Knepley   Input Parameters:
42869318fe57SMatthew G. Knepley + comm - The communicator
42879318fe57SMatthew G. Knepley - ct   - The cell type of the reference cell
42889318fe57SMatthew G. Knepley 
42899318fe57SMatthew G. Knepley   Output Parameter:
42909318fe57SMatthew G. Knepley . refdm - The reference cell
42919318fe57SMatthew G. Knepley 
42929318fe57SMatthew G. Knepley   Level: intermediate
42939318fe57SMatthew G. Knepley 
429442747ad1SJacob Faibussowitsch .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateBoxMesh()`
42959318fe57SMatthew G. Knepley @*/
4296d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateReferenceCell(MPI_Comm comm, DMPolytopeType ct, DM *refdm)
4297d71ae5a4SJacob Faibussowitsch {
42980a6ba040SMatthew G. Knepley   PetscFunctionBegin;
42999566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, refdm));
43009566063dSJacob Faibussowitsch   PetscCall(DMSetType(*refdm, DMPLEX));
43019566063dSJacob Faibussowitsch   PetscCall(DMPlexCreateReferenceCell_Internal(*refdm, ct));
43023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
43039318fe57SMatthew G. Knepley }
430479a015ccSMatthew G. Knepley 
4305d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateBoundaryLabel_Private(DM dm, const char name[])
4306d71ae5a4SJacob Faibussowitsch {
43079318fe57SMatthew G. Knepley   DM        plex;
43089318fe57SMatthew G. Knepley   DMLabel   label;
43099318fe57SMatthew G. Knepley   PetscBool hasLabel;
43100a6ba040SMatthew G. Knepley 
4311c22d3578SMatthew G. Knepley   PetscFunctionBegin;
43129566063dSJacob Faibussowitsch   PetscCall(DMHasLabel(dm, name, &hasLabel));
43133ba16761SJacob Faibussowitsch   if (hasLabel) PetscFunctionReturn(PETSC_SUCCESS);
43149566063dSJacob Faibussowitsch   PetscCall(DMCreateLabel(dm, name));
43159566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
43169566063dSJacob Faibussowitsch   PetscCall(DMConvert(dm, DMPLEX, &plex));
43179566063dSJacob Faibussowitsch   PetscCall(DMPlexMarkBoundaryFaces(plex, 1, label));
43181c8afea9SMatthew G. Knepley   PetscCall(DMPlexLabelComplete(plex, label));
43199566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&plex));
43203ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
43219318fe57SMatthew G. Knepley }
4322acdc6f61SToby Isaac 
4323669647acSMatthew G. Knepley /*
4324669647acSMatthew G. Knepley   We use the last coordinate as the radius, the inner radius is lower[dim-1] and the outer radius is upper[dim-1]. Then we map the first coordinate around the circle.
4325669647acSMatthew G. Knepley 
4326669647acSMatthew G. Knepley     (x, y) -> (r, theta) = (x[1], (x[0] - lower[0]) * 2\pi/(upper[0] - lower[0]))
4327669647acSMatthew G. Knepley */
4328d71ae5a4SJacob Faibussowitsch static void boxToAnnulus(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f0[])
4329d71ae5a4SJacob Faibussowitsch {
4330669647acSMatthew G. Knepley   const PetscReal low = PetscRealPart(constants[0]);
4331669647acSMatthew G. Knepley   const PetscReal upp = PetscRealPart(constants[1]);
4332669647acSMatthew G. Knepley   const PetscReal r   = PetscRealPart(u[1]);
4333669647acSMatthew G. Knepley   const PetscReal th  = 2. * PETSC_PI * (PetscRealPart(u[0]) - low) / (upp - low);
4334669647acSMatthew G. Knepley 
4335669647acSMatthew G. Knepley   f0[0] = r * PetscCosReal(th);
4336669647acSMatthew G. Knepley   f0[1] = r * PetscSinReal(th);
4337669647acSMatthew G. Knepley }
4338669647acSMatthew G. Knepley 
43395390be7dSMatthew G. Knepley // Insert vertices and their joins, marked by depth
43405390be7dSMatthew G. Knepley static PetscErrorCode ProcessCohesiveLabel_Vertices(DM dm, DMLabel label, DMLabel vlabel, PetscInt val, PetscInt n, const PetscInt vertices[])
43415390be7dSMatthew G. Knepley {
43425390be7dSMatthew G. Knepley   PetscFunctionBegin;
43435390be7dSMatthew G. Knepley   PetscCall(DMPlexMarkSubmesh_Interpolated(dm, vlabel, val, PETSC_FALSE, PETSC_FALSE, label, NULL));
43445390be7dSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
43455390be7dSMatthew G. Knepley }
43465390be7dSMatthew G. Knepley 
43475390be7dSMatthew G. Knepley // Insert faces and their closures, marked by depth
43485390be7dSMatthew G. Knepley static PetscErrorCode ProcessCohesiveLabel_Faces(DM dm, DMLabel label, PetscInt n, const PetscInt faces[])
43495390be7dSMatthew G. Knepley {
43505390be7dSMatthew G. Knepley   PetscFunctionBegin;
43515390be7dSMatthew G. Knepley   for (PetscInt p = 0; p < n; ++p) {
43525390be7dSMatthew G. Knepley     const PetscInt point   = faces[p];
43535390be7dSMatthew G. Knepley     PetscInt      *closure = NULL;
43545390be7dSMatthew G. Knepley     PetscInt       clSize, pdepth;
43555390be7dSMatthew G. Knepley 
43565390be7dSMatthew G. Knepley     PetscCall(DMPlexGetPointDepth(dm, point, &pdepth));
43575390be7dSMatthew G. Knepley     PetscCall(DMLabelSetValue(label, point, pdepth));
43585390be7dSMatthew G. Knepley     PetscCall(DMPlexGetTransitiveClosure(dm, point, PETSC_TRUE, &clSize, &closure));
43595390be7dSMatthew G. Knepley     for (PetscInt cl = 0; cl < clSize * 2; cl += 2) {
43605390be7dSMatthew G. Knepley       PetscCall(DMPlexGetPointDepth(dm, closure[cl], &pdepth));
43615390be7dSMatthew G. Knepley       PetscCall(DMLabelSetValue(label, closure[cl], pdepth));
43625390be7dSMatthew G. Knepley     }
43635390be7dSMatthew G. Knepley     PetscCall(DMPlexRestoreTransitiveClosure(dm, point, PETSC_TRUE, &clSize, &closure));
43645390be7dSMatthew G. Knepley   }
43655390be7dSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
43665390be7dSMatthew G. Knepley }
43675390be7dSMatthew G. Knepley 
43684e22dd4cSMatthew G. Knepley PETSC_EXTERN PetscErrorCode PetscOptionsFindPairPrefix_Private(PetscOptions, const char pre[], const char name[], const char *option[], const char *value[], PetscBool *flg);
43694e22dd4cSMatthew G. Knepley 
43705dca41c3SJed Brown const char *const DMPlexShapes[] = {"box", "box_surface", "ball", "sphere", "cylinder", "schwarz_p", "gyroid", "doublet", "annulus", "hypercubic", "zbox", "unknown", "DMPlexShape", "DM_SHAPE_", NULL};
43719318fe57SMatthew G. Knepley 
4372d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPlexCreateFromOptions_Internal(PetscOptionItems *PetscOptionsObject, PetscBool *useCoordSpace, DM dm)
4373d71ae5a4SJacob Faibussowitsch {
43749318fe57SMatthew G. Knepley   DMPlexShape    shape   = DM_SHAPE_BOX;
43759318fe57SMatthew G. Knepley   DMPolytopeType cell    = DM_POLYTOPE_TRIANGLE;
43769318fe57SMatthew G. Knepley   PetscInt       dim     = 2;
4377b9da1bb3SMatthew G. Knepley   PetscBool      simplex = PETSC_TRUE, interpolate = PETSC_TRUE, orient = PETSC_FALSE, adjCone = PETSC_FALSE, adjClosure = PETSC_TRUE, refDomain = PETSC_FALSE;
4378d0812dedSMatthew G. Knepley   PetscBool      flg, flg2, fflg, strflg, bdfflg, nameflg;
43799318fe57SMatthew G. Knepley   MPI_Comm       comm;
4380ed5e4e85SVaclav Hapla   char           filename[PETSC_MAX_PATH_LEN]   = "<unspecified>";
4381ed5e4e85SVaclav Hapla   char           bdFilename[PETSC_MAX_PATH_LEN] = "<unspecified>";
4382ed5e4e85SVaclav Hapla   char           plexname[PETSC_MAX_PATH_LEN]   = "";
43834e22dd4cSMatthew G. Knepley   const char    *option;
43849318fe57SMatthew G. Knepley 
43859318fe57SMatthew G. Knepley   PetscFunctionBegin;
4386708be2fdSJed Brown   PetscCall(PetscLogEventBegin(DMPLEX_CreateFromOptions, dm, 0, 0, 0));
43879566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
43889318fe57SMatthew G. Knepley   /* TODO Turn this into a registration interface */
43899566063dSJacob Faibussowitsch   PetscCall(PetscOptionsString("-dm_plex_filename", "File containing a mesh", "DMPlexCreateFromFile", filename, filename, sizeof(filename), &fflg));
4390d0812dedSMatthew G. Knepley   PetscCall(PetscOptionsString("-dm_plex_file_contents", "Contents of a file format in a string", "DMPlexCreateFromFile", filename, filename, sizeof(filename), &strflg));
43919566063dSJacob Faibussowitsch   PetscCall(PetscOptionsString("-dm_plex_boundary_filename", "File containing a mesh boundary", "DMPlexCreateFromFile", bdFilename, bdFilename, sizeof(bdFilename), &bdfflg));
43929566063dSJacob Faibussowitsch   PetscCall(PetscOptionsString("-dm_plex_name", "Name of the mesh in the file", "DMPlexCreateFromFile", plexname, plexname, sizeof(plexname), &nameflg));
43939566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEnum("-dm_plex_cell", "Cell shape", "", DMPolytopeTypes, (PetscEnum)cell, (PetscEnum *)&cell, NULL));
43949566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_reference_cell_domain", "Use a reference cell domain", "", refDomain, &refDomain, NULL));
43959566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEnum("-dm_plex_shape", "Shape for built-in mesh", "", DMPlexShapes, (PetscEnum)shape, (PetscEnum *)&shape, &flg));
43969566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_plex_dim", "Topological dimension of the mesh", "DMGetDimension", dim, &dim, &flg, 0));
43979566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_simplex", "Mesh cell shape", "", simplex, &simplex, &flg));
43989566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_interpolate", "Flag to create edges and faces automatically", "", interpolate, &interpolate, &flg));
4399b9da1bb3SMatthew G. Knepley   PetscCall(PetscOptionsBool("-dm_plex_orient", "Orient the constructed mesh", "DMPlexOrient", orient, &orient, &flg));
44009566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_adj_cone", "Set adjacency direction", "DMSetBasicAdjacency", adjCone, &adjCone, &flg));
44019566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_adj_closure", "Set adjacency size", "DMSetBasicAdjacency", adjClosure, &adjClosure, &flg2));
44029566063dSJacob Faibussowitsch   if (flg || flg2) PetscCall(DMSetBasicAdjacency(dm, adjCone, adjClosure));
44033f3e541fSMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_adj", "Debug output level all adjacency computations", "", 0, &((DM_Plex *)dm->data)->printAdj, NULL, 0));
44049318fe57SMatthew G. Knepley 
440561a622f3SMatthew G. Knepley   switch (cell) {
440661a622f3SMatthew G. Knepley   case DM_POLYTOPE_POINT:
440761a622f3SMatthew G. Knepley   case DM_POLYTOPE_SEGMENT:
440861a622f3SMatthew G. Knepley   case DM_POLYTOPE_POINT_PRISM_TENSOR:
440961a622f3SMatthew G. Knepley   case DM_POLYTOPE_TRIANGLE:
441061a622f3SMatthew G. Knepley   case DM_POLYTOPE_QUADRILATERAL:
441161a622f3SMatthew G. Knepley   case DM_POLYTOPE_TETRAHEDRON:
4412d71ae5a4SJacob Faibussowitsch   case DM_POLYTOPE_HEXAHEDRON:
4413d71ae5a4SJacob Faibussowitsch     *useCoordSpace = PETSC_TRUE;
4414d71ae5a4SJacob Faibussowitsch     break;
4415d71ae5a4SJacob Faibussowitsch   default:
4416d71ae5a4SJacob Faibussowitsch     *useCoordSpace = PETSC_FALSE;
4417d71ae5a4SJacob Faibussowitsch     break;
441861a622f3SMatthew G. Knepley   }
441961a622f3SMatthew G. Knepley 
44209318fe57SMatthew G. Knepley   if (fflg) {
44219318fe57SMatthew G. Knepley     DM          dmnew;
44221e4a82c4SMatthew G. Knepley     const char *name;
44239318fe57SMatthew G. Knepley 
44241e4a82c4SMatthew G. Knepley     PetscCall(PetscObjectGetName((PetscObject)dm, &name));
44251e4a82c4SMatthew G. Knepley     PetscCall(DMPlexCreateFromFile(PetscObjectComm((PetscObject)dm), filename, nameflg ? plexname : name, interpolate, &dmnew));
44265de52c6dSVaclav Hapla     PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew));
442769d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &dmnew));
44289318fe57SMatthew G. Knepley   } else if (refDomain) {
44299566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateReferenceCell_Internal(dm, cell));
44309318fe57SMatthew G. Knepley   } else if (bdfflg) {
44319318fe57SMatthew G. Knepley     DM          bdm, dmnew;
44321e4a82c4SMatthew G. Knepley     const char *name;
44339318fe57SMatthew G. Knepley 
44341e4a82c4SMatthew G. Knepley     PetscCall(PetscObjectGetName((PetscObject)dm, &name));
44351e4a82c4SMatthew G. Knepley     PetscCall(DMPlexCreateFromFile(PetscObjectComm((PetscObject)dm), bdFilename, nameflg ? plexname : name, interpolate, &bdm));
44369566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)bdm, "bd_"));
44379566063dSJacob Faibussowitsch     PetscCall(DMSetFromOptions(bdm));
44389566063dSJacob Faibussowitsch     PetscCall(DMPlexGenerate(bdm, NULL, interpolate, &dmnew));
44399566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&bdm));
44405de52c6dSVaclav Hapla     PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew));
444169d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &dmnew));
4442d0812dedSMatthew G. Knepley   } else if (strflg) {
4443d0812dedSMatthew G. Knepley     DM          dmnew;
4444d0812dedSMatthew G. Knepley     PetscViewer viewer;
4445d0812dedSMatthew G. Knepley     const char *contents;
4446d0812dedSMatthew G. Knepley     char       *strname;
4447d0812dedSMatthew G. Knepley     char        tmpdir[PETSC_MAX_PATH_LEN];
4448d0812dedSMatthew G. Knepley     char        tmpfilename[PETSC_MAX_PATH_LEN];
4449d0812dedSMatthew G. Knepley     char        name[PETSC_MAX_PATH_LEN];
4450d0812dedSMatthew G. Knepley     MPI_Comm    comm;
4451d0812dedSMatthew G. Knepley     PetscMPIInt rank;
4452d0812dedSMatthew G. Knepley 
4453d0812dedSMatthew G. Knepley     PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
4454d0812dedSMatthew G. Knepley     PetscCallMPI(MPI_Comm_rank(comm, &rank));
4455d0812dedSMatthew G. Knepley     PetscCall(PetscStrchr(filename, ':', &strname));
4456d0812dedSMatthew G. Knepley     PetscCheck(strname, comm, PETSC_ERR_ARG_WRONG, "File contents must have the form \"ext:string_name\", not %s", filename);
4457d0812dedSMatthew G. Knepley     strname[0] = '\0';
4458d0812dedSMatthew G. Knepley     ++strname;
4459d0812dedSMatthew G. Knepley     PetscCall(PetscDLSym(NULL, strname, (void **)&contents));
4460d0812dedSMatthew G. Knepley     PetscCheck(contents, comm, PETSC_ERR_ARG_WRONG, "Could not locate mesh string %s", strname);
4461d0812dedSMatthew G. Knepley     PetscCall(PetscGetTmp(comm, tmpdir, PETSC_MAX_PATH_LEN));
4462ed32af8cSMatthew G. Knepley     PetscCall(PetscStrlcat(tmpdir, "/meshXXXXXX", PETSC_MAX_PATH_LEN));
4463ed32af8cSMatthew G. Knepley     PetscCall(PetscMkdtemp(tmpdir));
4464ed32af8cSMatthew G. Knepley     PetscCall(PetscSNPrintf(tmpfilename, PETSC_MAX_PATH_LEN, "%s/mesh.%s", tmpdir, filename));
4465d0812dedSMatthew G. Knepley     PetscCall(PetscViewerASCIIOpen(comm, tmpfilename, &viewer));
4466d0812dedSMatthew G. Knepley     PetscCall(PetscViewerASCIIPrintf(viewer, "%s\n", contents));
4467d0812dedSMatthew G. Knepley     PetscCall(PetscViewerDestroy(&viewer));
4468d0812dedSMatthew G. Knepley     PetscCall(DMPlexCreateFromFile(PetscObjectComm((PetscObject)dm), tmpfilename, plexname, interpolate, &dmnew));
4469ed32af8cSMatthew G. Knepley     PetscCall(PetscRMTree(tmpdir));
4470d0812dedSMatthew G. Knepley     PetscCall(PetscSNPrintf(name, PETSC_MAX_PATH_LEN, "%s Mesh", strname));
4471d0812dedSMatthew G. Knepley     PetscCall(PetscObjectSetName((PetscObject)dm, name));
4472d0812dedSMatthew G. Knepley     PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew));
4473d0812dedSMatthew G. Knepley     PetscCall(DMPlexReplace_Internal(dm, &dmnew));
44749318fe57SMatthew G. Knepley   } else {
44759566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)dm, DMPlexShapes[shape]));
44769318fe57SMatthew G. Knepley     switch (shape) {
4477669647acSMatthew G. Knepley     case DM_SHAPE_BOX:
44785dca41c3SJed Brown     case DM_SHAPE_ZBOX:
4479669647acSMatthew G. Knepley     case DM_SHAPE_ANNULUS: {
44809318fe57SMatthew G. Knepley       PetscInt       faces[3]  = {0, 0, 0};
44819318fe57SMatthew G. Knepley       PetscReal      lower[3]  = {0, 0, 0};
44829318fe57SMatthew G. Knepley       PetscReal      upper[3]  = {1, 1, 1};
44839318fe57SMatthew G. Knepley       DMBoundaryType bdt[3]    = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
4484669647acSMatthew G. Knepley       PetscBool      isAnnular = shape == DM_SHAPE_ANNULUS ? PETSC_TRUE : PETSC_FALSE;
44859318fe57SMatthew G. Knepley       PetscInt       i, n;
44869318fe57SMatthew G. Knepley 
44879318fe57SMatthew G. Knepley       n = dim;
44889318fe57SMatthew G. Knepley       for (i = 0; i < dim; ++i) faces[i] = (dim == 1 ? 1 : 4 - dim);
44899566063dSJacob Faibussowitsch       PetscCall(PetscOptionsIntArray("-dm_plex_box_faces", "Number of faces along each dimension", "", faces, &n, &flg));
44909318fe57SMatthew G. Knepley       n = 3;
44919566063dSJacob Faibussowitsch       PetscCall(PetscOptionsRealArray("-dm_plex_box_lower", "Lower left corner of box", "", lower, &n, &flg));
449263a3b9bcSJacob Faibussowitsch       PetscCheck(!flg || !(n != dim), comm, PETSC_ERR_ARG_SIZ, "Lower box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
44939318fe57SMatthew G. Knepley       n = 3;
44949566063dSJacob Faibussowitsch       PetscCall(PetscOptionsRealArray("-dm_plex_box_upper", "Upper right corner of box", "", upper, &n, &flg));
449563a3b9bcSJacob Faibussowitsch       PetscCheck(!flg || !(n != dim), comm, PETSC_ERR_ARG_SIZ, "Upper box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
44969318fe57SMatthew G. Knepley       n = 3;
44979566063dSJacob Faibussowitsch       PetscCall(PetscOptionsEnumArray("-dm_plex_box_bd", "Boundary type for each dimension", "", DMBoundaryTypes, (PetscEnum *)bdt, &n, &flg));
449863a3b9bcSJacob Faibussowitsch       PetscCheck(!flg || !(n != dim), comm, PETSC_ERR_ARG_SIZ, "Box boundary types had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
4499669647acSMatthew G. Knepley 
4500669647acSMatthew G. Knepley       PetscCheck(!isAnnular || dim == 2, comm, PETSC_ERR_ARG_OUTOFRANGE, "Only two dimensional annuli have been implemented");
4501669647acSMatthew G. Knepley       if (isAnnular)
4502669647acSMatthew G. Knepley         for (i = 0; i < dim - 1; ++i) bdt[i] = DM_BOUNDARY_PERIODIC;
4503669647acSMatthew G. Knepley 
45049318fe57SMatthew G. Knepley       switch (cell) {
450561a622f3SMatthew G. Knepley       case DM_POLYTOPE_TRI_PRISM_TENSOR:
45069566063dSJacob Faibussowitsch         PetscCall(DMPlexCreateWedgeBoxMesh_Internal(dm, faces, lower, upper, bdt));
4507d410b0cfSMatthew G. Knepley         if (!interpolate) {
4508d410b0cfSMatthew G. Knepley           DM udm;
4509d410b0cfSMatthew G. Knepley 
45109566063dSJacob Faibussowitsch           PetscCall(DMPlexUninterpolate(dm, &udm));
451169d8a87bSksagiyam           PetscCall(DMPlexReplace_Internal(dm, &udm));
4512d410b0cfSMatthew G. Knepley         }
45139318fe57SMatthew G. Knepley         break;
4514d71ae5a4SJacob Faibussowitsch       default:
45155dca41c3SJed Brown         PetscCall(DMPlexCreateBoxMesh_Internal(dm, shape, dim, simplex, faces, lower, upper, bdt, interpolate));
4516d71ae5a4SJacob Faibussowitsch         break;
45179318fe57SMatthew G. Knepley       }
4518669647acSMatthew G. Knepley       if (isAnnular) {
4519669647acSMatthew G. Knepley         DM          cdm;
4520669647acSMatthew G. Knepley         PetscDS     cds;
4521669647acSMatthew G. Knepley         PetscScalar bounds[2] = {lower[0], upper[0]};
4522669647acSMatthew G. Knepley 
4523669647acSMatthew G. Knepley         // Fix coordinates for annular region
4524669647acSMatthew G. Knepley         PetscCall(DMSetPeriodicity(dm, NULL, NULL, NULL));
4525669647acSMatthew G. Knepley         PetscCall(DMSetCellCoordinatesLocal(dm, NULL));
4526669647acSMatthew G. Knepley         PetscCall(DMSetCellCoordinates(dm, NULL));
4527e44f6aebSMatthew G. Knepley         PetscCall(DMPlexCreateCoordinateSpace(dm, 1, PETSC_TRUE, NULL));
4528669647acSMatthew G. Knepley         PetscCall(DMGetCoordinateDM(dm, &cdm));
4529669647acSMatthew G. Knepley         PetscCall(DMGetDS(cdm, &cds));
4530669647acSMatthew G. Knepley         PetscCall(PetscDSSetConstants(cds, 2, bounds));
4531669647acSMatthew G. Knepley         PetscCall(DMPlexRemapGeometry(dm, 0.0, boxToAnnulus));
4532669647acSMatthew G. Knepley       }
45339371c9d4SSatish Balay     } break;
45349371c9d4SSatish Balay     case DM_SHAPE_BOX_SURFACE: {
45359318fe57SMatthew G. Knepley       PetscInt  faces[3] = {0, 0, 0};
45369318fe57SMatthew G. Knepley       PetscReal lower[3] = {0, 0, 0};
45379318fe57SMatthew G. Knepley       PetscReal upper[3] = {1, 1, 1};
45389318fe57SMatthew G. Knepley       PetscInt  i, n;
45399318fe57SMatthew G. Knepley 
45409318fe57SMatthew G. Knepley       n = dim + 1;
45419318fe57SMatthew G. Knepley       for (i = 0; i < dim + 1; ++i) faces[i] = (dim + 1 == 1 ? 1 : 4 - (dim + 1));
45429566063dSJacob Faibussowitsch       PetscCall(PetscOptionsIntArray("-dm_plex_box_faces", "Number of faces along each dimension", "", faces, &n, &flg));
45439318fe57SMatthew G. Knepley       n = 3;
45449566063dSJacob Faibussowitsch       PetscCall(PetscOptionsRealArray("-dm_plex_box_lower", "Lower left corner of box", "", lower, &n, &flg));
454563a3b9bcSJacob Faibussowitsch       PetscCheck(!flg || !(n != dim + 1), comm, PETSC_ERR_ARG_SIZ, "Lower box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim + 1);
45469318fe57SMatthew G. Knepley       n = 3;
45479566063dSJacob Faibussowitsch       PetscCall(PetscOptionsRealArray("-dm_plex_box_upper", "Upper right corner of box", "", upper, &n, &flg));
454863a3b9bcSJacob Faibussowitsch       PetscCheck(!flg || !(n != dim + 1), comm, PETSC_ERR_ARG_SIZ, "Upper box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim + 1);
45499566063dSJacob Faibussowitsch       PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(dm, dim + 1, faces, lower, upper, interpolate));
45509371c9d4SSatish Balay     } break;
45519371c9d4SSatish Balay     case DM_SHAPE_SPHERE: {
45529318fe57SMatthew G. Knepley       PetscReal R = 1.0;
45539318fe57SMatthew G. Knepley 
45549566063dSJacob Faibussowitsch       PetscCall(PetscOptionsReal("-dm_plex_sphere_radius", "Radius of the sphere", "", R, &R, &flg));
45559566063dSJacob Faibussowitsch       PetscCall(DMPlexCreateSphereMesh_Internal(dm, dim, simplex, R));
45569371c9d4SSatish Balay     } break;
45579371c9d4SSatish Balay     case DM_SHAPE_BALL: {
45589318fe57SMatthew G. Knepley       PetscReal R = 1.0;
45599318fe57SMatthew G. Knepley 
45609566063dSJacob Faibussowitsch       PetscCall(PetscOptionsReal("-dm_plex_ball_radius", "Radius of the ball", "", R, &R, &flg));
45619566063dSJacob Faibussowitsch       PetscCall(DMPlexCreateBallMesh_Internal(dm, dim, R));
45629371c9d4SSatish Balay     } break;
45639371c9d4SSatish Balay     case DM_SHAPE_CYLINDER: {
45649318fe57SMatthew G. Knepley       DMBoundaryType bdt = DM_BOUNDARY_NONE;
45659318fe57SMatthew G. Knepley       PetscInt       Nw  = 6;
456649704ca5SMatthew G. Knepley       PetscInt       Nr  = 0;
45679318fe57SMatthew G. Knepley 
45689566063dSJacob Faibussowitsch       PetscCall(PetscOptionsEnum("-dm_plex_cylinder_bd", "Boundary type in the z direction", "", DMBoundaryTypes, (PetscEnum)bdt, (PetscEnum *)&bdt, NULL));
45699566063dSJacob Faibussowitsch       PetscCall(PetscOptionsInt("-dm_plex_cylinder_num_wedges", "Number of wedges around the cylinder", "", Nw, &Nw, NULL));
457049704ca5SMatthew G. Knepley       PetscCall(PetscOptionsInt("-dm_plex_cylinder_num_refine", "Number of refinements before projection", "", Nr, &Nr, NULL));
45719318fe57SMatthew G. Knepley       switch (cell) {
4572d71ae5a4SJacob Faibussowitsch       case DM_POLYTOPE_TRI_PRISM_TENSOR:
4573d71ae5a4SJacob Faibussowitsch         PetscCall(DMPlexCreateWedgeCylinderMesh_Internal(dm, Nw, interpolate));
4574d71ae5a4SJacob Faibussowitsch         break;
4575d71ae5a4SJacob Faibussowitsch       default:
457649704ca5SMatthew G. Knepley         PetscCall(DMPlexCreateHexCylinderMesh_Internal(dm, bdt, Nr));
4577d71ae5a4SJacob Faibussowitsch         break;
45789318fe57SMatthew G. Knepley       }
45799371c9d4SSatish Balay     } break;
4580b7f5c055SJed Brown     case DM_SHAPE_SCHWARZ_P: // fallthrough
45819371c9d4SSatish Balay     case DM_SHAPE_GYROID: {
4582b7f5c055SJed Brown       PetscInt       extent[3] = {1, 1, 1}, refine = 0, layers = 0, three;
4583b7f5c055SJed Brown       PetscReal      thickness   = 0.;
4584b7f5c055SJed Brown       DMBoundaryType periodic[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
4585b7f5c055SJed Brown       DMPlexTPSType  tps_type    = shape == DM_SHAPE_SCHWARZ_P ? DMPLEX_TPS_SCHWARZ_P : DMPLEX_TPS_GYROID;
45861436d7faSJed Brown       PetscBool      tps_distribute;
45879566063dSJacob Faibussowitsch       PetscCall(PetscOptionsIntArray("-dm_plex_tps_extent", "Number of replicas for each of three dimensions", NULL, extent, (three = 3, &three), NULL));
45889566063dSJacob Faibussowitsch       PetscCall(PetscOptionsInt("-dm_plex_tps_refine", "Number of refinements", NULL, refine, &refine, NULL));
45899566063dSJacob Faibussowitsch       PetscCall(PetscOptionsEnumArray("-dm_plex_tps_periodic", "Periodicity in each of three dimensions", NULL, DMBoundaryTypes, (PetscEnum *)periodic, (three = 3, &three), NULL));
45909566063dSJacob Faibussowitsch       PetscCall(PetscOptionsInt("-dm_plex_tps_layers", "Number of layers in volumetric extrusion (or zero to not extrude)", NULL, layers, &layers, NULL));
45919566063dSJacob Faibussowitsch       PetscCall(PetscOptionsReal("-dm_plex_tps_thickness", "Thickness of volumetric extrusion", NULL, thickness, &thickness, NULL));
45929566063dSJacob Faibussowitsch       PetscCall(DMPlexDistributeGetDefault(dm, &tps_distribute));
45939566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_tps_distribute", "Distribute the 2D mesh prior to refinement and extrusion", NULL, tps_distribute, &tps_distribute, NULL));
45949566063dSJacob Faibussowitsch       PetscCall(DMPlexCreateTPSMesh_Internal(dm, tps_type, extent, periodic, tps_distribute, refine, layers, thickness));
45959371c9d4SSatish Balay     } break;
45969371c9d4SSatish Balay     case DM_SHAPE_DOUBLET: {
459705bd46c0SStefano Zampini       DM        dmnew;
459805bd46c0SStefano Zampini       PetscReal rl = 0.0;
459905bd46c0SStefano Zampini 
460005bd46c0SStefano Zampini       PetscCall(PetscOptionsReal("-dm_plex_doublet_refinementlimit", "Refinement limit", NULL, rl, &rl, NULL));
460105bd46c0SStefano Zampini       PetscCall(DMPlexCreateDoublet(PetscObjectComm((PetscObject)dm), dim, simplex, interpolate, rl, &dmnew));
46025de52c6dSVaclav Hapla       PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew));
460369d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &dmnew));
46049371c9d4SSatish Balay     } break;
4605cfb853baSMatthew G. Knepley     case DM_SHAPE_HYPERCUBIC: {
46068d2ec52aSSatish Balay       PetscInt       *edges, overlap = 1;
4607cfb853baSMatthew G. Knepley       PetscReal      *lower, *upper;
4608cfb853baSMatthew G. Knepley       DMBoundaryType *bdt;
4609cfb853baSMatthew G. Knepley       PetscInt        n, d;
4610cfb853baSMatthew G. Knepley 
4611cfb853baSMatthew G. Knepley       *useCoordSpace = PETSC_FALSE;
4612cfb853baSMatthew G. Knepley       PetscCall(PetscMalloc4(dim, &edges, dim, &lower, dim, &upper, dim, &bdt));
4613cfb853baSMatthew G. Knepley       for (d = 0; d < dim; ++d) {
4614cfb853baSMatthew G. Knepley         edges[d] = 1;
4615cfb853baSMatthew G. Knepley         lower[d] = 0.;
4616cfb853baSMatthew G. Knepley         upper[d] = 1.;
4617cfb853baSMatthew G. Knepley         bdt[d]   = DM_BOUNDARY_PERIODIC;
4618cfb853baSMatthew G. Knepley       }
4619cfb853baSMatthew G. Knepley       n = dim;
4620cfb853baSMatthew G. Knepley       PetscCall(PetscOptionsIntArray("-dm_plex_box_faces", "Number of faces along each dimension", "", edges, &n, &flg));
4621cfb853baSMatthew G. Knepley       n = dim;
4622cfb853baSMatthew G. Knepley       PetscCall(PetscOptionsRealArray("-dm_plex_box_lower", "Lower left corner of box", "", lower, &n, &flg));
4623cfb853baSMatthew G. Knepley       PetscCheck(!flg || n == dim, comm, PETSC_ERR_ARG_SIZ, "Lower box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
4624cfb853baSMatthew G. Knepley       n = dim;
4625cfb853baSMatthew G. Knepley       PetscCall(PetscOptionsRealArray("-dm_plex_box_upper", "Upper right corner of box", "", upper, &n, &flg));
4626cfb853baSMatthew G. Knepley       PetscCheck(!flg || n == dim, comm, PETSC_ERR_ARG_SIZ, "Upper box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
4627cfb853baSMatthew G. Knepley       n = dim;
4628cfb853baSMatthew G. Knepley       PetscCall(PetscOptionsEnumArray("-dm_plex_box_bd", "Boundary type for each dimension", "", DMBoundaryTypes, (PetscEnum *)bdt, &n, &flg));
4629cfb853baSMatthew G. Knepley       PetscCheck(!flg || n == dim, comm, PETSC_ERR_ARG_SIZ, "Box boundary types had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
46308d2ec52aSSatish Balay       PetscCall(PetscOptionsBoundedInt("-dm_distribute_overlap", "The size of the overlap halo", "DMPlexDistribute", overlap, &overlap, NULL, 0));
46318d2ec52aSSatish Balay       PetscCall(DMPlexCreateHypercubicMesh_Internal(dm, dim, lower, upper, edges, overlap, bdt));
4632cfb853baSMatthew G. Knepley       PetscCall(PetscFree4(edges, lower, upper, bdt));
4633cfb853baSMatthew G. Knepley     } break;
4634d71ae5a4SJacob Faibussowitsch     default:
4635d71ae5a4SJacob Faibussowitsch       SETERRQ(comm, PETSC_ERR_SUP, "Domain shape %s is unsupported", DMPlexShapes[shape]);
46369318fe57SMatthew G. Knepley     }
46379318fe57SMatthew G. Knepley   }
46389566063dSJacob Faibussowitsch   PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE));
463948a46eb9SPierre Jolivet   if (!((PetscObject)dm)->name && nameflg) PetscCall(PetscObjectSetName((PetscObject)dm, plexname));
4640b9da1bb3SMatthew G. Knepley   if (orient) PetscCall(DMPlexOrient(dm));
46414e22dd4cSMatthew G. Knepley   // Allow label creation
46424e22dd4cSMatthew G. Knepley   PetscCall(PetscOptionsFindPairPrefix_Private(NULL, ((PetscObject)dm)->prefix, "-dm_plex_label_", &option, NULL, &flg));
46434e22dd4cSMatthew G. Knepley   if (flg) {
46444e22dd4cSMatthew G. Knepley     DMLabel     label;
46454e22dd4cSMatthew G. Knepley     PetscInt    points[1024], n = 1024;
46464e22dd4cSMatthew G. Knepley     char        fulloption[PETSC_MAX_PATH_LEN];
46474e22dd4cSMatthew G. Knepley     const char *name = &option[14];
46484e22dd4cSMatthew G. Knepley 
46494e22dd4cSMatthew G. Knepley     PetscCall(DMCreateLabel(dm, name));
46504e22dd4cSMatthew G. Knepley     PetscCall(DMGetLabel(dm, name, &label));
46514e22dd4cSMatthew G. Knepley     fulloption[0] = '-';
46524e22dd4cSMatthew G. Knepley     fulloption[1] = 0;
46534e22dd4cSMatthew G. Knepley     PetscCall(PetscStrlcat(fulloption, option, PETSC_MAX_PATH_LEN));
46544e22dd4cSMatthew G. Knepley     PetscCall(PetscOptionsGetIntArray(NULL, ((PetscObject)dm)->prefix, fulloption, points, &n, NULL));
46554e22dd4cSMatthew G. Knepley     for (PetscInt p = 0; p < n; ++p) PetscCall(DMLabelSetValue(label, points[p], 1));
46564e22dd4cSMatthew G. Knepley   }
4657dd0eeac9SMatthew G. Knepley   // Allow cohesive label creation
4658dd0eeac9SMatthew G. Knepley   //   Faces are input, completed, and all points are marked with their depth
4659dd0eeac9SMatthew G. Knepley   PetscCall(PetscOptionsFindPairPrefix_Private(NULL, ((PetscObject)dm)->prefix, "-dm_plex_cohesive_label_", &option, NULL, &flg));
4660dd0eeac9SMatthew G. Knepley   if (flg) {
4661dd0eeac9SMatthew G. Knepley     DMLabel   label;
4662dd0eeac9SMatthew G. Knepley     PetscInt  points[1024], n, pStart, pEnd, Nl = 1;
46635390be7dSMatthew G. Knepley     PetscBool noCreate = PETSC_FALSE;
4664dd0eeac9SMatthew G. Knepley     char      fulloption[PETSC_MAX_PATH_LEN];
4665dd0eeac9SMatthew G. Knepley     char      name[PETSC_MAX_PATH_LEN];
4666dd0eeac9SMatthew G. Knepley     size_t    len;
4667dd0eeac9SMatthew G. Knepley 
4668dd0eeac9SMatthew G. Knepley     PetscCall(DMPlexGetChart(dm, &pStart, &pEnd));
4669dd0eeac9SMatthew G. Knepley     PetscCall(PetscStrncpy(name, &option[23], PETSC_MAX_PATH_LEN));
4670dd0eeac9SMatthew G. Knepley     PetscCall(PetscStrlen(name, &len));
4671dd0eeac9SMatthew G. Knepley     if (name[len - 1] == '0') Nl = 10;
4672dd0eeac9SMatthew G. Knepley     for (PetscInt l = 0; l < Nl; ++l) {
46736497c311SBarry Smith       if (l > 0) name[len - 1] = (char)('0' + l);
4674dd0eeac9SMatthew G. Knepley       fulloption[0] = 0;
4675dd0eeac9SMatthew G. Knepley       PetscCall(PetscStrlcat(fulloption, "-dm_plex_cohesive_label_", 32));
4676dd0eeac9SMatthew G. Knepley       PetscCall(PetscStrlcat(fulloption, name, PETSC_MAX_PATH_LEN - 32));
4677dd0eeac9SMatthew G. Knepley       n = 1024;
4678dd0eeac9SMatthew G. Knepley       PetscCall(PetscOptionsGetIntArray(NULL, ((PetscObject)dm)->prefix, fulloption, points, &n, &flg));
4679dd0eeac9SMatthew G. Knepley       if (!flg) break;
46805390be7dSMatthew G. Knepley       PetscCall(DMHasLabel(dm, name, &noCreate));
46815390be7dSMatthew G. Knepley       if (noCreate) {
46825390be7dSMatthew G. Knepley         DMLabel         inlabel;
46835390be7dSMatthew G. Knepley         IS              pointIS;
46845390be7dSMatthew G. Knepley         const PetscInt *lpoints;
46855390be7dSMatthew G. Knepley         PetscInt        pdep, ln, inval = points[0];
46865390be7dSMatthew G. Knepley         char            newname[PETSC_MAX_PATH_LEN];
46875390be7dSMatthew G. Knepley 
46885390be7dSMatthew G. Knepley         PetscCheck(n == 1, comm, PETSC_ERR_ARG_WRONG, "Must specify a label value with this option");
46895390be7dSMatthew G. Knepley         PetscCall(DMGetLabel(dm, name, &inlabel));
46905390be7dSMatthew G. Knepley         PetscCall(DMLabelGetStratumIS(inlabel, inval, &pointIS));
46915390be7dSMatthew G. Knepley         PetscCall(ISGetLocalSize(pointIS, &ln));
46925390be7dSMatthew G. Knepley         PetscCall(ISGetIndices(pointIS, &lpoints));
46935390be7dSMatthew G. Knepley         PetscCall(DMPlexGetPointDepth(dm, lpoints[0], &pdep));
46945390be7dSMatthew G. Knepley         PetscCall(PetscSNPrintf(newname, PETSC_MAX_PATH_LEN, "%s%" PetscInt_FMT, name, points[0]));
46955390be7dSMatthew G. Knepley         PetscCall(DMCreateLabel(dm, newname));
46965390be7dSMatthew G. Knepley         PetscCall(DMGetLabel(dm, newname, &label));
46975390be7dSMatthew G. Knepley         if (!pdep) PetscCall(ProcessCohesiveLabel_Vertices(dm, label, inlabel, inval, ln, lpoints));
46985390be7dSMatthew G. Knepley         else PetscCall(ProcessCohesiveLabel_Faces(dm, label, ln, lpoints));
46995390be7dSMatthew G. Knepley         PetscCall(ISRestoreIndices(pointIS, &lpoints));
47005390be7dSMatthew G. Knepley         PetscCall(ISDestroy(&pointIS));
47015390be7dSMatthew G. Knepley       } else {
4702dd0eeac9SMatthew G. Knepley         PetscCall(DMCreateLabel(dm, name));
4703dd0eeac9SMatthew G. Knepley         PetscCall(DMGetLabel(dm, name, &label));
4704dd0eeac9SMatthew G. Knepley         if (pStart >= pEnd) n = 0;
47055390be7dSMatthew G. Knepley         PetscCall(ProcessCohesiveLabel_Faces(dm, label, n, points));
4706dd0eeac9SMatthew G. Knepley       }
4707dd0eeac9SMatthew G. Knepley       PetscCall(DMPlexOrientLabel(dm, label));
47080542aa8cSMatthew G. Knepley       PetscCall(DMPlexLabelCohesiveComplete(dm, label, NULL, 1, PETSC_FALSE, PETSC_FALSE, NULL));
4709dd0eeac9SMatthew G. Knepley     }
4710dd0eeac9SMatthew G. Knepley   }
47115390be7dSMatthew G. Knepley   PetscCall(DMViewFromOptions(dm, NULL, "-created_dm_view"));
4712708be2fdSJed Brown   PetscCall(PetscLogEventEnd(DMPLEX_CreateFromOptions, dm, 0, 0, 0));
47133ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
47140a6ba040SMatthew G. Knepley }
47150a6ba040SMatthew G. Knepley 
4716d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetFromOptions_NonRefinement_Plex(DM dm, PetscOptionItems *PetscOptionsObject)
4717d71ae5a4SJacob Faibussowitsch {
47180a6ba040SMatthew G. Knepley   DM_Plex  *mesh = (DM_Plex *)dm->data;
47197f9d8d6cSVaclav Hapla   PetscBool flg, flg2;
47209318fe57SMatthew G. Knepley   char      bdLabel[PETSC_MAX_PATH_LEN];
4721adc21957SMatthew G. Knepley   char      method[PETSC_MAX_PATH_LEN];
47220a6ba040SMatthew G. Knepley 
47230a6ba040SMatthew G. Knepley   PetscFunctionBegin;
47240a6ba040SMatthew G. Knepley   /* Handle viewing */
47259566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_print_set_values", "Output all set values info", "DMPlexMatSetClosure", PETSC_FALSE, &mesh->printSetValues, NULL));
47265962854dSMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_fem", "Debug output level for all fem computations", "DMPlexSNESComputeResidualFEM", 0, &mesh->printFEM, NULL, 0));
47275962854dSMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_fvm", "Debug output level for all fvm computations", "DMPlexSNESComputeResidualFVM", 0, &mesh->printFVM, NULL, 0));
47283f3e541fSMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_adj", "Debug output level all adjacency computations", "DMPlexSNESComputeResidualFEM", 0, &mesh->printAdj, NULL, 0));
47299566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-dm_plex_print_tol", "Tolerance for FEM output", "DMPlexSNESComputeResidualFEM", mesh->printTol, &mesh->printTol, NULL));
47309566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_l2", "Debug output level all L2 diff computations", "DMComputeL2Diff", 0, &mesh->printL2, NULL, 0));
4731f5867de0SMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_locate", "Debug output level all point location computations", "DMLocatePoints", 0, &mesh->printLocate, NULL, 0));
4732a77a5016SMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_plex_print_project", "Debug output level all projection computations", "DMPlexProject", 0, &mesh->printProject, NULL, 0));
47339566063dSJacob Faibussowitsch   PetscCall(DMMonitorSetFromOptions(dm, "-dm_plex_monitor_throughput", "Monitor the simulation throughput", "DMPlexMonitorThroughput", DMPlexMonitorThroughput, NULL, &flg));
47349566063dSJacob Faibussowitsch   if (flg) PetscCall(PetscLogDefaultBegin());
47359318fe57SMatthew G. Knepley   /* Labeling */
47369566063dSJacob Faibussowitsch   PetscCall(PetscOptionsString("-dm_plex_boundary_label", "Label to mark the mesh boundary", "", bdLabel, bdLabel, sizeof(bdLabel), &flg));
47379566063dSJacob Faibussowitsch   if (flg) PetscCall(DMPlexCreateBoundaryLabel_Private(dm, bdLabel));
4738953fc75cSMatthew G. Knepley   /* Point Location */
47399566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_hash_location", "Use grid hashing for point location", "DMInterpolate", PETSC_FALSE, &mesh->useHashLocation, NULL));
47400848f4b5SMatthew G. Knepley   /* Partitioning and distribution */
47419566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_partition_balance", "Attempt to evenly divide points on partition boundary between processes", "DMPlexSetPartitionBalance", PETSC_FALSE, &mesh->partitionBalance, NULL));
4742d02c7345SMatthew G. Knepley   /* Reordering */
4743adc21957SMatthew G. Knepley   PetscCall(PetscOptionsBool("-dm_reorder_section", "Compute point permutation for local section", "DMReorderSectionSetDefault", PETSC_FALSE, &flg2, &flg));
4744adc21957SMatthew G. Knepley   if (flg) PetscCall(DMReorderSectionSetDefault(dm, flg2 ? DM_REORDER_DEFAULT_TRUE : DM_REORDER_DEFAULT_FALSE));
4745adc21957SMatthew G. Knepley   PetscCall(PetscOptionsString("-dm_reorder_section_type", "Reordering method for local section", "DMReorderSectionSetType", method, method, PETSC_MAX_PATH_LEN, &flg));
4746adc21957SMatthew G. Knepley   if (flg) PetscCall(DMReorderSectionSetType(dm, method));
47472e62ab5aSMatthew G. Knepley   /* Generation and remeshing */
47489566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_remesh_bd", "Allow changes to the boundary on remeshing", "DMAdapt", PETSC_FALSE, &mesh->remeshBd, NULL));
4749b29cfa1cSToby Isaac   /* Projection behavior */
4750d5b43468SJose E. Roman   PetscCall(PetscOptionsBoundedInt("-dm_plex_max_projection_height", "Maximum mesh point height used to project locally", "DMPlexSetMaxProjectionHeight", 0, &mesh->maxProjectionHeight, NULL, 0));
47519566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_regular_refinement", "Use special nested projection algorithm for regular refinement", "DMPlexSetRegularRefinement", mesh->regularRefinement, &mesh->regularRefinement, NULL));
4752f12cf164SMatthew G. Knepley   /* Checking structure */
4753f12cf164SMatthew G. Knepley   {
47547f9d8d6cSVaclav Hapla     PetscBool all = PETSC_FALSE;
4755f12cf164SMatthew G. Knepley 
47567f9d8d6cSVaclav Hapla     PetscCall(PetscOptionsBool("-dm_plex_check_all", "Perform all basic checks", "DMPlexCheck", PETSC_FALSE, &all, NULL));
47577f9d8d6cSVaclav Hapla     if (all) {
47587f9d8d6cSVaclav Hapla       PetscCall(DMPlexCheck(dm));
47597f9d8d6cSVaclav Hapla     } else {
47609566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_symmetry", "Check that the adjacency information in the mesh is symmetric", "DMPlexCheckSymmetry", PETSC_FALSE, &flg, &flg2));
47617f9d8d6cSVaclav Hapla       if (flg && flg2) PetscCall(DMPlexCheckSymmetry(dm));
47629566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_skeleton", "Check that each cell has the correct number of vertices (only for homogeneous simplex or tensor meshes)", "DMPlexCheckSkeleton", PETSC_FALSE, &flg, &flg2));
47637f9d8d6cSVaclav Hapla       if (flg && flg2) PetscCall(DMPlexCheckSkeleton(dm, 0));
47649566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_faces", "Check that the faces of each cell give a vertex order this is consistent with what we expect from the cell type", "DMPlexCheckFaces", PETSC_FALSE, &flg, &flg2));
47657f9d8d6cSVaclav Hapla       if (flg && flg2) PetscCall(DMPlexCheckFaces(dm, 0));
47669566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_geometry", "Check that cells have positive volume", "DMPlexCheckGeometry", PETSC_FALSE, &flg, &flg2));
47677f9d8d6cSVaclav Hapla       if (flg && flg2) PetscCall(DMPlexCheckGeometry(dm));
47689566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_pointsf", "Check some necessary conditions for PointSF", "DMPlexCheckPointSF", PETSC_FALSE, &flg, &flg2));
4769d7d32a9aSMatthew G. Knepley       if (flg && flg2) PetscCall(DMPlexCheckPointSF(dm, NULL, PETSC_FALSE));
47709566063dSJacob Faibussowitsch       PetscCall(PetscOptionsBool("-dm_plex_check_interface_cones", "Check points on inter-partition interfaces have conforming order of cone points", "DMPlexCheckInterfaceCones", PETSC_FALSE, &flg, &flg2));
47717f9d8d6cSVaclav Hapla       if (flg && flg2) PetscCall(DMPlexCheckInterfaceCones(dm));
47727f9d8d6cSVaclav Hapla     }
47739566063dSJacob Faibussowitsch     PetscCall(PetscOptionsBool("-dm_plex_check_cell_shape", "Check cell shape", "DMPlexCheckCellShape", PETSC_FALSE, &flg, &flg2));
47749566063dSJacob Faibussowitsch     if (flg && flg2) PetscCall(DMPlexCheckCellShape(dm, PETSC_TRUE, PETSC_DETERMINE));
4775f12cf164SMatthew G. Knepley   }
47769318fe57SMatthew G. Knepley   {
47779318fe57SMatthew G. Knepley     PetscReal scale = 1.0;
47784f3833eaSMatthew G. Knepley 
47799566063dSJacob Faibussowitsch     PetscCall(PetscOptionsReal("-dm_plex_scale", "Scale factor for mesh coordinates", "DMPlexScale", scale, &scale, &flg));
47809318fe57SMatthew G. Knepley     if (flg) {
47819318fe57SMatthew G. Knepley       Vec coordinates, coordinatesLocal;
47829318fe57SMatthew G. Knepley 
47839566063dSJacob Faibussowitsch       PetscCall(DMGetCoordinates(dm, &coordinates));
47849566063dSJacob Faibussowitsch       PetscCall(DMGetCoordinatesLocal(dm, &coordinatesLocal));
47859566063dSJacob Faibussowitsch       PetscCall(VecScale(coordinates, scale));
47869566063dSJacob Faibussowitsch       PetscCall(VecScale(coordinatesLocal, scale));
47879318fe57SMatthew G. Knepley     }
47889318fe57SMatthew G. Knepley   }
47899566063dSJacob Faibussowitsch   PetscCall(PetscPartitionerSetFromOptions(mesh->partitioner));
47903ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
479168d4fef7SMatthew G. Knepley }
479268d4fef7SMatthew G. Knepley 
4793d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetFromOptions_Overlap_Plex(DM dm, PetscOptionItems *PetscOptionsObject, PetscInt *overlap)
4794d71ae5a4SJacob Faibussowitsch {
4795c506a872SMatthew G. Knepley   PetscInt  numOvLabels = 16, numOvExLabels = 16;
4796c506a872SMatthew G. Knepley   char     *ovLabelNames[16], *ovExLabelNames[16];
4797c506a872SMatthew G. Knepley   PetscInt  numOvValues = 16, numOvExValues = 16, l;
4798c506a872SMatthew G. Knepley   PetscBool flg;
4799c506a872SMatthew G. Knepley 
4800c506a872SMatthew G. Knepley   PetscFunctionBegin;
4801c506a872SMatthew G. Knepley   PetscCall(PetscOptionsBoundedInt("-dm_distribute_overlap", "The size of the overlap halo", "DMPlexDistribute", *overlap, overlap, NULL, 0));
4802c506a872SMatthew G. Knepley   PetscCall(PetscOptionsStringArray("-dm_distribute_overlap_labels", "List of overlap label names", "DMPlexDistribute", ovLabelNames, &numOvLabels, &flg));
4803c506a872SMatthew G. Knepley   if (!flg) numOvLabels = 0;
4804c506a872SMatthew G. Knepley   if (numOvLabels) {
4805c506a872SMatthew G. Knepley     ((DM_Plex *)dm->data)->numOvLabels = numOvLabels;
4806c506a872SMatthew G. Knepley     for (l = 0; l < numOvLabels; ++l) {
4807c506a872SMatthew G. Knepley       PetscCall(DMGetLabel(dm, ovLabelNames[l], &((DM_Plex *)dm->data)->ovLabels[l]));
4808c506a872SMatthew G. Knepley       PetscCheck(((DM_Plex *)dm->data)->ovLabels[l], PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid label name %s", ovLabelNames[l]);
4809c506a872SMatthew G. Knepley       PetscCall(PetscFree(ovLabelNames[l]));
4810c506a872SMatthew G. Knepley     }
4811c506a872SMatthew G. Knepley     PetscCall(PetscOptionsIntArray("-dm_distribute_overlap_values", "List of overlap label values", "DMPlexDistribute", ((DM_Plex *)dm->data)->ovValues, &numOvValues, &flg));
4812c506a872SMatthew G. Knepley     if (!flg) numOvValues = 0;
4813c506a872SMatthew G. Knepley     PetscCheck(numOvLabels == numOvValues, PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "The number of labels %" PetscInt_FMT " must match the number of values %" PetscInt_FMT, numOvLabels, numOvValues);
4814c506a872SMatthew G. Knepley 
4815c506a872SMatthew G. Knepley     PetscCall(PetscOptionsStringArray("-dm_distribute_overlap_exclude_labels", "List of overlap exclude label names", "DMPlexDistribute", ovExLabelNames, &numOvExLabels, &flg));
4816c506a872SMatthew G. Knepley     if (!flg) numOvExLabels = 0;
4817c506a872SMatthew G. Knepley     ((DM_Plex *)dm->data)->numOvExLabels = numOvExLabels;
4818c506a872SMatthew G. Knepley     for (l = 0; l < numOvExLabels; ++l) {
4819c506a872SMatthew G. Knepley       PetscCall(DMGetLabel(dm, ovExLabelNames[l], &((DM_Plex *)dm->data)->ovExLabels[l]));
4820c506a872SMatthew G. Knepley       PetscCheck(((DM_Plex *)dm->data)->ovExLabels[l], PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid label name %s", ovExLabelNames[l]);
4821c506a872SMatthew G. Knepley       PetscCall(PetscFree(ovExLabelNames[l]));
4822c506a872SMatthew G. Knepley     }
4823c506a872SMatthew G. Knepley     PetscCall(PetscOptionsIntArray("-dm_distribute_overlap_exclude_values", "List of overlap exclude label values", "DMPlexDistribute", ((DM_Plex *)dm->data)->ovExValues, &numOvExValues, &flg));
4824c506a872SMatthew G. Knepley     if (!flg) numOvExValues = 0;
4825c506a872SMatthew G. Knepley     PetscCheck(numOvExLabels == numOvExValues, PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "The number of exclude labels %" PetscInt_FMT " must match the number of values %" PetscInt_FMT, numOvExLabels, numOvExValues);
4826c506a872SMatthew G. Knepley   }
48273ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4828c506a872SMatthew G. Knepley }
4829c506a872SMatthew G. Knepley 
4830d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMSetFromOptions_Plex(DM dm, PetscOptionItems *PetscOptionsObject)
4831d71ae5a4SJacob Faibussowitsch {
4832bdf63967SMatthew G. Knepley   PetscFunctionList    ordlist;
4833bdf63967SMatthew G. Knepley   char                 oname[256];
48344e22dd4cSMatthew G. Knepley   char                 sublabelname[PETSC_MAX_PATH_LEN] = "";
4835adc21957SMatthew G. Knepley   DMReorderDefaultFlag reorder;
4836d410b0cfSMatthew G. Knepley   PetscReal            volume    = -1.0;
48379318fe57SMatthew G. Knepley   PetscInt             prerefine = 0, refine = 0, r, coarsen = 0, overlap = 0, extLayers = 0, dim;
48381b742f01SMatthew G. Knepley   PetscBool            uniformOrig = PETSC_FALSE, created = PETSC_FALSE, uniform = PETSC_TRUE, distribute, saveSF = PETSC_FALSE, interpolate = PETSC_TRUE, coordSpace = PETSC_TRUE, remap = PETSC_TRUE, ghostCells = PETSC_FALSE, isHierarchy, flg;
483968d4fef7SMatthew G. Knepley 
484068d4fef7SMatthew G. Knepley   PetscFunctionBegin;
4841d0609cedSBarry Smith   PetscOptionsHeadBegin(PetscOptionsObject, "DMPlex Options");
4842dd4c3f67SMatthew G. Knepley   if (dm->cloneOpts) goto non_refine;
48439318fe57SMatthew G. Knepley   /* Handle automatic creation */
48449566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
48456bc1bd01Sksagiyam   if (dim < 0) {
48466bc1bd01Sksagiyam     PetscCall(DMPlexCreateFromOptions_Internal(PetscOptionsObject, &coordSpace, dm));
48476bc1bd01Sksagiyam     created = PETSC_TRUE;
48486bc1bd01Sksagiyam   }
48496bc1bd01Sksagiyam   PetscCall(DMGetDimension(dm, &dim));
4850d89e6e46SMatthew G. Knepley   /* Handle interpolation before distribution */
48519566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_interpolate_pre", "Flag to interpolate mesh before distribution", "", interpolate, &interpolate, &flg));
4852d89e6e46SMatthew G. Knepley   if (flg) {
4853d89e6e46SMatthew G. Knepley     DMPlexInterpolatedFlag interpolated;
4854d89e6e46SMatthew G. Knepley 
48559566063dSJacob Faibussowitsch     PetscCall(DMPlexIsInterpolated(dm, &interpolated));
4856d89e6e46SMatthew G. Knepley     if (interpolated == DMPLEX_INTERPOLATED_FULL && !interpolate) {
4857d89e6e46SMatthew G. Knepley       DM udm;
4858d89e6e46SMatthew G. Knepley 
48599566063dSJacob Faibussowitsch       PetscCall(DMPlexUninterpolate(dm, &udm));
486069d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &udm));
4861d89e6e46SMatthew G. Knepley     } else if (interpolated != DMPLEX_INTERPOLATED_FULL && interpolate) {
4862d89e6e46SMatthew G. Knepley       DM idm;
4863d89e6e46SMatthew G. Knepley 
48649566063dSJacob Faibussowitsch       PetscCall(DMPlexInterpolate(dm, &idm));
486569d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &idm));
4866d89e6e46SMatthew G. Knepley     }
4867d89e6e46SMatthew G. Knepley   }
48684e22dd4cSMatthew G. Knepley   // Handle submesh selection before distribution
48694e22dd4cSMatthew G. Knepley   PetscCall(PetscOptionsString("-dm_plex_submesh", "Label to use for submesh selection", "", sublabelname, sublabelname, PETSC_MAX_PATH_LEN, &flg));
48704e22dd4cSMatthew G. Knepley   if (flg) {
48714e22dd4cSMatthew G. Knepley     DM              subdm;
48724e22dd4cSMatthew G. Knepley     DMLabel         label;
48734e22dd4cSMatthew G. Knepley     IS              valueIS, pointIS;
48744e22dd4cSMatthew G. Knepley     const PetscInt *values, *points;
48754e22dd4cSMatthew G. Knepley     PetscBool       markedFaces = PETSC_FALSE;
48764e22dd4cSMatthew G. Knepley     PetscInt        Nv, value, Np;
48774e22dd4cSMatthew G. Knepley 
48784e22dd4cSMatthew G. Knepley     PetscCall(DMGetLabel(dm, sublabelname, &label));
48794e22dd4cSMatthew G. Knepley     PetscCall(DMLabelGetNumValues(label, &Nv));
48804e22dd4cSMatthew G. Knepley     PetscCheck(Nv == 1, PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Only a single label value is currently supported for submesh selection, not %" PetscInt_FMT, Nv);
48814e22dd4cSMatthew G. Knepley     PetscCall(DMLabelGetValueIS(label, &valueIS));
48824e22dd4cSMatthew G. Knepley     PetscCall(ISGetIndices(valueIS, &values));
48834e22dd4cSMatthew G. Knepley     value = values[0];
48844e22dd4cSMatthew G. Knepley     PetscCall(ISRestoreIndices(valueIS, &values));
48854e22dd4cSMatthew G. Knepley     PetscCall(ISDestroy(&valueIS));
48864e22dd4cSMatthew G. Knepley     PetscCall(DMLabelGetStratumSize(label, value, &Np));
48874e22dd4cSMatthew G. Knepley     PetscCall(DMLabelGetStratumIS(label, value, &pointIS));
48884e22dd4cSMatthew G. Knepley     PetscCall(ISGetIndices(pointIS, &points));
48894e22dd4cSMatthew G. Knepley     for (PetscInt p = 0; p < Np; ++p) {
48904e22dd4cSMatthew G. Knepley       PetscInt pdepth;
48914e22dd4cSMatthew G. Knepley 
48924e22dd4cSMatthew G. Knepley       PetscCall(DMPlexGetPointDepth(dm, points[p], &pdepth));
48934e22dd4cSMatthew G. Knepley       if (pdepth) {
48944e22dd4cSMatthew G. Knepley         markedFaces = PETSC_TRUE;
48954e22dd4cSMatthew G. Knepley         break;
48964e22dd4cSMatthew G. Knepley       }
48974e22dd4cSMatthew G. Knepley     }
48984e22dd4cSMatthew G. Knepley     PetscCall(ISRestoreIndices(pointIS, &points));
48994e22dd4cSMatthew G. Knepley     PetscCall(ISDestroy(&pointIS));
49004e22dd4cSMatthew G. Knepley     PetscCall(DMPlexCreateSubmesh(dm, label, value, markedFaces, &subdm));
49014e22dd4cSMatthew G. Knepley     PetscCall(DMPlexReplace_Internal(dm, &subdm));
49024e22dd4cSMatthew G. Knepley     PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
49034e22dd4cSMatthew G. Knepley   }
49049b44eab4SMatthew G. Knepley   /* Handle DMPlex refinement before distribution */
49059566063dSJacob Faibussowitsch   PetscCall(DMPlexGetRefinementUniform(dm, &uniformOrig));
49069566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_refine_pre", "The number of refinements before distribution", "DMCreate", prerefine, &prerefine, NULL, 0));
49079566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_refine_remap_pre", "Flag to control coordinate remapping", "DMCreate", remap, &remap, NULL));
49089566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_refine_uniform_pre", "Flag for uniform refinement before distribution", "DMCreate", uniform, &uniform, &flg));
49099566063dSJacob Faibussowitsch   if (flg) PetscCall(DMPlexSetRefinementUniform(dm, uniform));
49109566063dSJacob Faibussowitsch   PetscCall(PetscOptionsReal("-dm_refine_volume_limit_pre", "The maximum cell volume after refinement before distribution", "DMCreate", volume, &volume, &flg));
49119318fe57SMatthew G. Knepley   if (flg) {
49129566063dSJacob Faibussowitsch     PetscCall(DMPlexSetRefinementUniform(dm, PETSC_FALSE));
49139566063dSJacob Faibussowitsch     PetscCall(DMPlexSetRefinementLimit(dm, volume));
49149318fe57SMatthew G. Knepley     prerefine = PetscMax(prerefine, 1);
49159318fe57SMatthew G. Knepley   }
4916b23db253SStefano Zampini   if (prerefine) PetscCall(DMLocalizeCoordinates(dm));
49179b44eab4SMatthew G. Knepley   for (r = 0; r < prerefine; ++r) {
49189b44eab4SMatthew G. Knepley     DM             rdm;
49199b44eab4SMatthew G. Knepley     PetscPointFunc coordFunc = ((DM_Plex *)dm->data)->coordFunc;
49209b44eab4SMatthew G. Knepley 
4921dbbe0bcdSBarry Smith     PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
49229566063dSJacob Faibussowitsch     PetscCall(DMRefine(dm, PetscObjectComm((PetscObject)dm), &rdm));
492369d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &rdm));
4924dbbe0bcdSBarry Smith     PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
492561a622f3SMatthew G. Knepley     if (coordFunc && remap) {
49269566063dSJacob Faibussowitsch       PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc));
49279b44eab4SMatthew G. Knepley       ((DM_Plex *)dm->data)->coordFunc = coordFunc;
49289b44eab4SMatthew G. Knepley     }
49299b44eab4SMatthew G. Knepley   }
49309566063dSJacob Faibussowitsch   PetscCall(DMPlexSetRefinementUniform(dm, uniformOrig));
49319318fe57SMatthew G. Knepley   /* Handle DMPlex extrusion before distribution */
49329566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_extrude", "The number of layers to extrude", "", extLayers, &extLayers, NULL, 0));
49339318fe57SMatthew G. Knepley   if (extLayers) {
49349318fe57SMatthew G. Knepley     DM edm;
49359318fe57SMatthew G. Knepley 
49369566063dSJacob Faibussowitsch     PetscCall(DMExtrude(dm, extLayers, &edm));
493769d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &edm));
493848d16a33SMatthew G. Knepley     ((DM_Plex *)dm->data)->coordFunc = NULL;
4939dbbe0bcdSBarry Smith     PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
4940d410b0cfSMatthew G. Knepley     extLayers = 0;
49415e17fc22SAidan Hamilton     PetscCall(DMGetDimension(dm, &dim));
49429318fe57SMatthew G. Knepley   }
4943bdf63967SMatthew G. Knepley   /* Handle DMPlex reordering before distribution */
49446bc1bd01Sksagiyam   PetscCall(DMPlexReorderGetDefault(dm, &reorder));
49459566063dSJacob Faibussowitsch   PetscCall(MatGetOrderingList(&ordlist));
49466bc1bd01Sksagiyam   PetscCall(PetscStrncpy(oname, MATORDERINGNATURAL, sizeof(oname)));
49479566063dSJacob Faibussowitsch   PetscCall(PetscOptionsFList("-dm_plex_reorder", "Set mesh reordering type", "DMPlexGetOrdering", ordlist, MATORDERINGNATURAL, oname, sizeof(oname), &flg));
4948adc21957SMatthew G. Knepley   if (reorder == DM_REORDER_DEFAULT_TRUE || flg) {
4949bdf63967SMatthew G. Knepley     DM pdm;
4950bdf63967SMatthew G. Knepley     IS perm;
4951bdf63967SMatthew G. Knepley 
49529566063dSJacob Faibussowitsch     PetscCall(DMPlexGetOrdering(dm, oname, NULL, &perm));
49539566063dSJacob Faibussowitsch     PetscCall(DMPlexPermute(dm, perm, &pdm));
49549566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&perm));
495569d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &pdm));
4956dbbe0bcdSBarry Smith     PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
4957bdf63967SMatthew G. Knepley   }
49589b44eab4SMatthew G. Knepley   /* Handle DMPlex distribution */
49599566063dSJacob Faibussowitsch   PetscCall(DMPlexDistributeGetDefault(dm, &distribute));
4960c506a872SMatthew G. Knepley   PetscCall(PetscOptionsBool("-dm_distribute", "Flag to redistribute a mesh among processes", "DMPlexDistribute", distribute, &distribute, NULL));
4961a286e215SMatthew G. Knepley   PetscCall(PetscOptionsBool("-dm_distribute_save_sf", "Flag to save the migration SF", "DMPlexSetMigrationSF", saveSF, &saveSF, NULL));
4962dbbe0bcdSBarry Smith   PetscCall(DMSetFromOptions_Overlap_Plex(dm, PetscOptionsObject, &overlap));
49639b44eab4SMatthew G. Knepley   if (distribute) {
49649b44eab4SMatthew G. Knepley     DM               pdm = NULL;
49659b44eab4SMatthew G. Knepley     PetscPartitioner part;
4966a286e215SMatthew G. Knepley     PetscSF          sfMigration;
49679b44eab4SMatthew G. Knepley 
49689566063dSJacob Faibussowitsch     PetscCall(DMPlexGetPartitioner(dm, &part));
49699566063dSJacob Faibussowitsch     PetscCall(PetscPartitionerSetFromOptions(part));
4970a286e215SMatthew G. Knepley     PetscCall(DMPlexDistribute(dm, overlap, &sfMigration, &pdm));
49715d2873a6SJames Wright     if (pdm) {
49725d2873a6SJames Wright       // Delete the local section to force the existing one to be rebuilt with the distributed DM
49735d2873a6SJames Wright       PetscCall(DMSetLocalSection(dm, pdm->localSection));
49745d2873a6SJames Wright       PetscCall(DMPlexReplace_Internal(dm, &pdm));
49755d2873a6SJames Wright     }
4976a286e215SMatthew G. Knepley     if (saveSF) PetscCall(DMPlexSetMigrationSF(dm, sfMigration));
4977a286e215SMatthew G. Knepley     PetscCall(PetscSFDestroy(&sfMigration));
49789b44eab4SMatthew G. Knepley   }
49794054ae39SJames Wright 
49804054ae39SJames Wright   {
49814054ae39SJames Wright     PetscBool useBoxLabel = PETSC_FALSE;
49824054ae39SJames Wright     PetscCall(PetscOptionsBool("-dm_plex_box_label", "Create 'Face Sets' assuming boundary faces align with cartesian directions", "DMCreate", useBoxLabel, &useBoxLabel, NULL));
4983d7d2d1d2SJames Wright     if (useBoxLabel) {
4984d7d2d1d2SJames Wright       PetscInt       n      = 3;
4985d7d2d1d2SJames Wright       DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE};
4986d7d2d1d2SJames Wright 
4987d7d2d1d2SJames Wright       PetscCall(PetscOptionsEnumArray("-dm_plex_box_label_bd", "Boundary type for each dimension when using -dm_plex_box_label", "", DMBoundaryTypes, (PetscEnum *)bdt, &n, &flg));
4988d7d2d1d2SJames Wright       PetscCheck(!flg || !(n != dim), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_SIZ, "Box boundary types had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim);
4989d7d2d1d2SJames Wright       PetscCall(DMPlexSetBoxLabel_Internal(dm, bdt));
4990d7d2d1d2SJames Wright     }
49914054ae39SJames Wright   }
4992d2b2dc1eSMatthew G. Knepley   /* Must check CEED options before creating function space for coordinates */
4993d2b2dc1eSMatthew G. Knepley   {
4994d2b2dc1eSMatthew G. Knepley     PetscBool useCeed = PETSC_FALSE, flg;
4995d2b2dc1eSMatthew G. Knepley 
4996d2b2dc1eSMatthew G. Knepley     PetscCall(PetscOptionsBool("-dm_plex_use_ceed", "Use LibCEED as the FEM backend", "DMPlexSetUseCeed", useCeed, &useCeed, &flg));
4997d2b2dc1eSMatthew G. Knepley     if (flg) PetscCall(DMPlexSetUseCeed(dm, useCeed));
4998d2b2dc1eSMatthew G. Knepley   }
49999318fe57SMatthew G. Knepley   /* Create coordinate space */
50009318fe57SMatthew G. Knepley   if (created) {
500161a622f3SMatthew G. Knepley     DM_Plex  *mesh   = (DM_Plex *)dm->data;
5002e44f6aebSMatthew G. Knepley     PetscInt  degree = 1, deg;
50035515ebd3SMatthew G. Knepley     PetscInt  height = 0;
50045515ebd3SMatthew G. Knepley     DM        cdm;
5005c3db174cSMatthew G. Knepley     PetscBool flg, localize = PETSC_TRUE, sparseLocalize = PETSC_TRUE;
50069318fe57SMatthew G. Knepley 
50079566063dSJacob Faibussowitsch     PetscCall(PetscOptionsBool("-dm_coord_space", "Use an FEM space for coordinates", "", coordSpace, &coordSpace, &flg));
50089566063dSJacob Faibussowitsch     PetscCall(PetscOptionsInt("-dm_coord_petscspace_degree", "FEM degree for coordinate space", "", degree, &degree, NULL));
5009e44f6aebSMatthew G. Knepley     PetscCall(DMGetCoordinateDegree_Internal(dm, &deg));
5010e44f6aebSMatthew G. Knepley     if (coordSpace && deg <= 1) PetscCall(DMPlexCreateCoordinateSpace(dm, degree, PETSC_TRUE, mesh->coordFunc));
50115515ebd3SMatthew G. Knepley     PetscCall(DMGetCoordinateDM(dm, &cdm));
501261a622f3SMatthew G. Knepley     if (flg && !coordSpace) {
501361a622f3SMatthew G. Knepley       PetscDS      cds;
501461a622f3SMatthew G. Knepley       PetscObject  obj;
501561a622f3SMatthew G. Knepley       PetscClassId id;
501661a622f3SMatthew G. Knepley 
50179566063dSJacob Faibussowitsch       PetscCall(DMGetDS(cdm, &cds));
50189566063dSJacob Faibussowitsch       PetscCall(PetscDSGetDiscretization(cds, 0, &obj));
50199566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetClassId(obj, &id));
502061a622f3SMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
502161a622f3SMatthew G. Knepley         PetscContainer dummy;
502261a622f3SMatthew G. Knepley 
50239566063dSJacob Faibussowitsch         PetscCall(PetscContainerCreate(PETSC_COMM_SELF, &dummy));
50249566063dSJacob Faibussowitsch         PetscCall(PetscObjectSetName((PetscObject)dummy, "coordinates"));
50259566063dSJacob Faibussowitsch         PetscCall(DMSetField(cdm, 0, NULL, (PetscObject)dummy));
50269566063dSJacob Faibussowitsch         PetscCall(PetscContainerDestroy(&dummy));
50279566063dSJacob Faibussowitsch         PetscCall(DMClearDS(cdm));
502861a622f3SMatthew G. Knepley       }
502961a622f3SMatthew G. Knepley       mesh->coordFunc = NULL;
503061a622f3SMatthew G. Knepley     }
5031c3db174cSMatthew G. Knepley     PetscCall(PetscOptionsBool("-dm_localize", "Localize mesh coordinates", "", localize, &localize, NULL));
5032c3db174cSMatthew G. Knepley     PetscCall(PetscOptionsBool("-dm_sparse_localize", "Localize only necessary cells", "DMSetSparseLocalize", sparseLocalize, &sparseLocalize, &flg));
5033c3db174cSMatthew G. Knepley     if (flg) PetscCall(DMSetSparseLocalize(dm, sparseLocalize));
50345515ebd3SMatthew G. Knepley     PetscCall(PetscOptionsInt("-dm_localize_height", "Localize edges and faces in addition to cells", "", height, &height, &flg));
50355515ebd3SMatthew G. Knepley     if (flg) PetscCall(DMPlexSetMaxProjectionHeight(cdm, height));
5036c3db174cSMatthew G. Knepley     if (localize) PetscCall(DMLocalizeCoordinates(dm));
50379318fe57SMatthew G. Knepley   }
503868d4fef7SMatthew G. Knepley   /* Handle DMPlex refinement */
503961a622f3SMatthew G. Knepley   remap = PETSC_TRUE;
50409566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_refine", "The number of uniform refinements", "DMCreate", refine, &refine, NULL, 0));
50419566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_refine_remap", "Flag to control coordinate remapping", "DMCreate", remap, &remap, NULL));
50429566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_refine_hierarchy", "The number of uniform refinements", "DMCreate", refine, &refine, &isHierarchy, 0));
50439566063dSJacob Faibussowitsch   if (refine) PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE));
504468d4fef7SMatthew G. Knepley   if (refine && isHierarchy) {
5045acdc6f61SToby Isaac     DM *dms, coarseDM;
504668d4fef7SMatthew G. Knepley 
50479566063dSJacob Faibussowitsch     PetscCall(DMGetCoarseDM(dm, &coarseDM));
50489566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)coarseDM));
50499566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(refine, &dms));
50509566063dSJacob Faibussowitsch     PetscCall(DMRefineHierarchy(dm, refine, dms));
505168d4fef7SMatthew G. Knepley     /* Total hack since we do not pass in a pointer */
50529566063dSJacob Faibussowitsch     PetscCall(DMPlexSwap_Static(dm, dms[refine - 1]));
505368d4fef7SMatthew G. Knepley     if (refine == 1) {
50549566063dSJacob Faibussowitsch       PetscCall(DMSetCoarseDM(dm, dms[0]));
50559566063dSJacob Faibussowitsch       PetscCall(DMPlexSetRegularRefinement(dm, PETSC_TRUE));
505668d4fef7SMatthew G. Knepley     } else {
50579566063dSJacob Faibussowitsch       PetscCall(DMSetCoarseDM(dm, dms[refine - 2]));
50589566063dSJacob Faibussowitsch       PetscCall(DMPlexSetRegularRefinement(dm, PETSC_TRUE));
50599566063dSJacob Faibussowitsch       PetscCall(DMSetCoarseDM(dms[0], dms[refine - 1]));
50609566063dSJacob Faibussowitsch       PetscCall(DMPlexSetRegularRefinement(dms[0], PETSC_TRUE));
506168d4fef7SMatthew G. Knepley     }
50629566063dSJacob Faibussowitsch     PetscCall(DMSetCoarseDM(dms[refine - 1], coarseDM));
50639566063dSJacob Faibussowitsch     PetscCall(PetscObjectDereference((PetscObject)coarseDM));
506468d4fef7SMatthew G. Knepley     /* Free DMs */
506568d4fef7SMatthew G. Knepley     for (r = 0; r < refine; ++r) {
5066dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dms[r], PetscOptionsObject));
50679566063dSJacob Faibussowitsch       PetscCall(DMDestroy(&dms[r]));
506868d4fef7SMatthew G. Knepley     }
50699566063dSJacob Faibussowitsch     PetscCall(PetscFree(dms));
507068d4fef7SMatthew G. Knepley   } else {
507168d4fef7SMatthew G. Knepley     for (r = 0; r < refine; ++r) {
50729318fe57SMatthew G. Knepley       DM             rdm;
507351a74b61SMatthew G. Knepley       PetscPointFunc coordFunc = ((DM_Plex *)dm->data)->coordFunc;
507468d4fef7SMatthew G. Knepley 
5075dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
50769566063dSJacob Faibussowitsch       PetscCall(DMRefine(dm, PetscObjectComm((PetscObject)dm), &rdm));
507768d4fef7SMatthew G. Knepley       /* Total hack since we do not pass in a pointer */
507869d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &rdm));
5079dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
508061a622f3SMatthew G. Knepley       if (coordFunc && remap) {
50819566063dSJacob Faibussowitsch         PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc));
508251a74b61SMatthew G. Knepley         ((DM_Plex *)dm->data)->coordFunc = coordFunc;
508351a74b61SMatthew G. Knepley       }
508468d4fef7SMatthew G. Knepley     }
508568d4fef7SMatthew G. Knepley   }
50863cf6fe12SMatthew G. Knepley   /* Handle DMPlex coarsening */
50879566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_coarsen", "Coarsen the mesh", "DMCreate", coarsen, &coarsen, NULL, 0));
50889566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBoundedInt("-dm_coarsen_hierarchy", "The number of coarsenings", "DMCreate", coarsen, &coarsen, &isHierarchy, 0));
5089b653a561SMatthew G. Knepley   if (coarsen && isHierarchy) {
5090b653a561SMatthew G. Knepley     DM *dms;
5091b653a561SMatthew G. Knepley 
50929566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(coarsen, &dms));
50939566063dSJacob Faibussowitsch     PetscCall(DMCoarsenHierarchy(dm, coarsen, dms));
5094b653a561SMatthew G. Knepley     /* Free DMs */
5095b653a561SMatthew G. Knepley     for (r = 0; r < coarsen; ++r) {
5096dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dms[r], PetscOptionsObject));
50979566063dSJacob Faibussowitsch       PetscCall(DMDestroy(&dms[r]));
5098b653a561SMatthew G. Knepley     }
50999566063dSJacob Faibussowitsch     PetscCall(PetscFree(dms));
5100b653a561SMatthew G. Knepley   } else {
5101b653a561SMatthew G. Knepley     for (r = 0; r < coarsen; ++r) {
51029318fe57SMatthew G. Knepley       DM             cdm;
51039318fe57SMatthew G. Knepley       PetscPointFunc coordFunc = ((DM_Plex *)dm->data)->coordFunc;
51043cf6fe12SMatthew G. Knepley 
5105dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
51069566063dSJacob Faibussowitsch       PetscCall(DMCoarsen(dm, PetscObjectComm((PetscObject)dm), &cdm));
51073cf6fe12SMatthew G. Knepley       /* Total hack since we do not pass in a pointer */
510869d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &cdm));
5109dbbe0bcdSBarry Smith       PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
51109318fe57SMatthew G. Knepley       if (coordFunc) {
51119566063dSJacob Faibussowitsch         PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc));
51129318fe57SMatthew G. Knepley         ((DM_Plex *)dm->data)->coordFunc = coordFunc;
51139318fe57SMatthew G. Knepley       }
51143cf6fe12SMatthew G. Knepley     }
5115b653a561SMatthew G. Knepley   }
5116be664eb1SMatthew G. Knepley   // Handle coordinate remapping
5117be664eb1SMatthew G. Knepley   remap = PETSC_FALSE;
5118be664eb1SMatthew G. Knepley   PetscCall(PetscOptionsBool("-dm_coord_remap", "Flag to control coordinate remapping", "", remap, &remap, NULL));
5119be664eb1SMatthew G. Knepley   if (remap) {
5120be664eb1SMatthew G. Knepley     DMPlexCoordMap map     = DM_COORD_MAP_NONE;
5121be664eb1SMatthew G. Knepley     PetscPointFunc mapFunc = NULL;
5122be664eb1SMatthew G. Knepley     PetscScalar    params[16];
5123f45b553cSPierre Jolivet     PetscInt       Np = PETSC_STATIC_ARRAY_LENGTH(params), cdim;
5124be664eb1SMatthew G. Knepley     MPI_Comm       comm;
5125be664eb1SMatthew G. Knepley 
5126be664eb1SMatthew G. Knepley     PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
5127be664eb1SMatthew G. Knepley     PetscCall(DMGetCoordinateDim(dm, &cdim));
5128be664eb1SMatthew G. Knepley     PetscCall(PetscOptionsScalarArray("-dm_coord_map_params", "Parameters for the coordinate remapping", "", params, &Np, &flg));
5129be664eb1SMatthew G. Knepley     if (!flg) Np = 0;
5130be664eb1SMatthew G. Knepley     // TODO Allow user to pass a map function by name
5131be664eb1SMatthew G. Knepley     PetscCall(PetscOptionsEnum("-dm_coord_map", "Coordinate mapping for built-in mesh", "", DMPlexCoordMaps, (PetscEnum)map, (PetscEnum *)&map, &flg));
5132be664eb1SMatthew G. Knepley     if (flg) {
5133be664eb1SMatthew G. Knepley       switch (map) {
5134be664eb1SMatthew G. Knepley       case DM_COORD_MAP_NONE:
5135be664eb1SMatthew G. Knepley         mapFunc = coordMap_identity;
5136be664eb1SMatthew G. Knepley         break;
5137be664eb1SMatthew G. Knepley       case DM_COORD_MAP_SHEAR:
5138be664eb1SMatthew G. Knepley         mapFunc = coordMap_shear;
5139be664eb1SMatthew G. Knepley         if (!Np) {
5140be664eb1SMatthew G. Knepley           Np        = cdim + 1;
5141be664eb1SMatthew G. Knepley           params[0] = 0;
5142be664eb1SMatthew G. Knepley           for (PetscInt d = 1; d <= cdim; ++d) params[d] = 1.0;
5143be664eb1SMatthew G. Knepley         }
5144be664eb1SMatthew G. Knepley         PetscCheck(Np == cdim + 1, comm, PETSC_ERR_ARG_WRONG, "The shear coordinate map must have cdim + 1 = %" PetscInt_FMT " parameters, not %" PetscInt_FMT, cdim + 1, Np);
5145be664eb1SMatthew G. Knepley         break;
5146be664eb1SMatthew G. Knepley       case DM_COORD_MAP_FLARE:
5147be664eb1SMatthew G. Knepley         mapFunc = coordMap_flare;
5148be664eb1SMatthew G. Knepley         if (!Np) {
5149be664eb1SMatthew G. Knepley           Np        = cdim + 1;
5150be664eb1SMatthew G. Knepley           params[0] = 0;
5151be664eb1SMatthew G. Knepley           for (PetscInt d = 1; d <= cdim; ++d) params[d] = 1.0;
5152be664eb1SMatthew G. Knepley         }
5153be664eb1SMatthew G. Knepley         PetscCheck(Np == cdim + 1, comm, PETSC_ERR_ARG_WRONG, "The flare coordinate map must have cdim + 1 = %" PetscInt_FMT " parameters, not %" PetscInt_FMT, cdim + 1, Np);
5154be664eb1SMatthew G. Knepley         break;
5155be664eb1SMatthew G. Knepley       case DM_COORD_MAP_ANNULUS:
5156be664eb1SMatthew G. Knepley         mapFunc = coordMap_annulus;
5157be664eb1SMatthew G. Knepley         if (!Np) {
5158be664eb1SMatthew G. Knepley           Np        = 2;
5159be664eb1SMatthew G. Knepley           params[0] = 1.;
5160be664eb1SMatthew G. Knepley           params[1] = 2.;
5161be664eb1SMatthew G. Knepley         }
5162be664eb1SMatthew G. Knepley         PetscCheck(Np == 2, comm, PETSC_ERR_ARG_WRONG, "The annulus coordinate map must have 2 parameters, not %" PetscInt_FMT, Np);
5163be664eb1SMatthew G. Knepley         break;
5164be664eb1SMatthew G. Knepley       case DM_COORD_MAP_SHELL:
5165be664eb1SMatthew G. Knepley         mapFunc = coordMap_shell;
5166be664eb1SMatthew G. Knepley         if (!Np) {
5167be664eb1SMatthew G. Knepley           Np        = 2;
5168be664eb1SMatthew G. Knepley           params[0] = 1.;
5169be664eb1SMatthew G. Knepley           params[1] = 2.;
5170be664eb1SMatthew G. Knepley         }
5171be664eb1SMatthew G. Knepley         PetscCheck(Np == 2, comm, PETSC_ERR_ARG_WRONG, "The spherical shell coordinate map must have 2 parameters, not %" PetscInt_FMT, Np);
5172be664eb1SMatthew G. Knepley         break;
5173be664eb1SMatthew G. Knepley       default:
5174be664eb1SMatthew G. Knepley         mapFunc = coordMap_identity;
5175be664eb1SMatthew G. Knepley       }
5176be664eb1SMatthew G. Knepley     }
5177be664eb1SMatthew G. Knepley     if (Np) {
5178be664eb1SMatthew G. Knepley       DM      cdm;
5179be664eb1SMatthew G. Knepley       PetscDS cds;
5180be664eb1SMatthew G. Knepley 
5181be664eb1SMatthew G. Knepley       PetscCall(DMGetCoordinateDM(dm, &cdm));
5182be664eb1SMatthew G. Knepley       PetscCall(DMGetDS(cdm, &cds));
5183be664eb1SMatthew G. Knepley       PetscCall(PetscDSSetConstants(cds, Np, params));
5184be664eb1SMatthew G. Knepley     }
5185be664eb1SMatthew G. Knepley     PetscCall(DMPlexRemapGeometry(dm, 0.0, mapFunc));
5186be664eb1SMatthew G. Knepley   }
5187909dfd52SMatthew G. Knepley   /* Handle ghost cells */
51889566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_plex_create_fv_ghost_cells", "Flag to create finite volume ghost cells on the boundary", "DMCreate", ghostCells, &ghostCells, NULL));
5189909dfd52SMatthew G. Knepley   if (ghostCells) {
5190909dfd52SMatthew G. Knepley     DM   gdm;
5191909dfd52SMatthew G. Knepley     char lname[PETSC_MAX_PATH_LEN];
5192909dfd52SMatthew G. Knepley 
5193909dfd52SMatthew G. Knepley     lname[0] = '\0';
51949566063dSJacob Faibussowitsch     PetscCall(PetscOptionsString("-dm_plex_fv_ghost_cells_label", "Label name for ghost cells boundary", "DMCreate", lname, lname, sizeof(lname), &flg));
51959566063dSJacob Faibussowitsch     PetscCall(DMPlexConstructGhostCells(dm, flg ? lname : NULL, NULL, &gdm));
519669d8a87bSksagiyam     PetscCall(DMPlexReplace_Internal(dm, &gdm));
5197909dfd52SMatthew G. Knepley   }
51986913077dSMatthew G. Knepley   /* Handle 1D order */
5199adc21957SMatthew G. Knepley   if (reorder != DM_REORDER_DEFAULT_FALSE && dim == 1) {
52006913077dSMatthew G. Knepley     DM           cdm, rdm;
52016913077dSMatthew G. Knepley     PetscDS      cds;
52026913077dSMatthew G. Knepley     PetscObject  obj;
52036913077dSMatthew G. Knepley     PetscClassId id = PETSC_OBJECT_CLASSID;
52046913077dSMatthew G. Knepley     IS           perm;
52056bc1bd01Sksagiyam     PetscInt     Nf;
52066913077dSMatthew G. Knepley     PetscBool    distributed;
52076913077dSMatthew G. Knepley 
52089566063dSJacob Faibussowitsch     PetscCall(DMPlexIsDistributed(dm, &distributed));
52099566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinateDM(dm, &cdm));
52109566063dSJacob Faibussowitsch     PetscCall(DMGetDS(cdm, &cds));
52119566063dSJacob Faibussowitsch     PetscCall(PetscDSGetNumFields(cds, &Nf));
52126913077dSMatthew G. Knepley     if (Nf) {
52139566063dSJacob Faibussowitsch       PetscCall(PetscDSGetDiscretization(cds, 0, &obj));
52149566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetClassId(obj, &id));
52156913077dSMatthew G. Knepley     }
52166bc1bd01Sksagiyam     if (!distributed && id != PETSCFE_CLASSID) {
52179566063dSJacob Faibussowitsch       PetscCall(DMPlexGetOrdering1D(dm, &perm));
52189566063dSJacob Faibussowitsch       PetscCall(DMPlexPermute(dm, perm, &rdm));
521969d8a87bSksagiyam       PetscCall(DMPlexReplace_Internal(dm, &rdm));
52209566063dSJacob Faibussowitsch       PetscCall(ISDestroy(&perm));
52216913077dSMatthew G. Knepley     }
52226913077dSMatthew G. Knepley   }
52233cf6fe12SMatthew G. Knepley /* Handle */
5224dd4c3f67SMatthew G. Knepley non_refine:
5225dbbe0bcdSBarry Smith   PetscCall(DMSetFromOptions_NonRefinement_Plex(dm, PetscOptionsObject));
522622d6dc08SStefano Zampini   char    *phases[16];
522722d6dc08SStefano Zampini   PetscInt Nphases = 16;
522822d6dc08SStefano Zampini   PetscCall(PetscOptionsStringArray("-dm_plex_option_phases", "Option phase prefixes", "DMSetFromOptions", phases, &Nphases, &flg));
5229d0609cedSBarry Smith   PetscOptionsHeadEnd();
523022d6dc08SStefano Zampini 
523122d6dc08SStefano Zampini   // Phases
523222d6dc08SStefano Zampini   if (flg) {
523322d6dc08SStefano Zampini     const char *oldPrefix;
523422d6dc08SStefano Zampini 
523522d6dc08SStefano Zampini     PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm, &oldPrefix));
523622d6dc08SStefano Zampini     for (PetscInt ph = 0; ph < Nphases; ++ph) {
523722d6dc08SStefano Zampini       PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)dm, phases[ph]));
523822d6dc08SStefano Zampini       PetscCall(PetscInfo(dm, "Options phase %s for DM %s\n", phases[ph], dm->hdr.name));
523922d6dc08SStefano Zampini       PetscCall(DMSetFromOptions(dm));
524022d6dc08SStefano Zampini       PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, oldPrefix));
524122d6dc08SStefano Zampini       PetscCall(PetscFree(phases[ph]));
524222d6dc08SStefano Zampini     }
524322d6dc08SStefano Zampini   }
52443ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
52450a6ba040SMatthew G. Knepley }
52460a6ba040SMatthew G. Knepley 
5247d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMCreateGlobalVector_Plex(DM dm, Vec *vec)
5248d71ae5a4SJacob Faibussowitsch {
5249552f7358SJed Brown   PetscFunctionBegin;
52509566063dSJacob Faibussowitsch   PetscCall(DMCreateGlobalVector_Section_Private(dm, vec));
52519566063dSJacob Faibussowitsch   /* PetscCall(VecSetOperation(*vec, VECOP_DUPLICATE, (void(*)(void)) VecDuplicate_MPI_DM)); */
52529566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_VIEW, (void (*)(void))VecView_Plex));
52539566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_VIEWNATIVE, (void (*)(void))VecView_Plex_Native));
52549566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_LOAD, (void (*)(void))VecLoad_Plex));
52559566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_LOADNATIVE, (void (*)(void))VecLoad_Plex_Native));
52563ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5257552f7358SJed Brown }
5258552f7358SJed Brown 
5259d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMCreateLocalVector_Plex(DM dm, Vec *vec)
5260d71ae5a4SJacob Faibussowitsch {
5261552f7358SJed Brown   PetscFunctionBegin;
52629566063dSJacob Faibussowitsch   PetscCall(DMCreateLocalVector_Section_Private(dm, vec));
52639566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_VIEW, (void (*)(void))VecView_Plex_Local));
52649566063dSJacob Faibussowitsch   PetscCall(VecSetOperation(*vec, VECOP_LOAD, (void (*)(void))VecLoad_Plex_Local));
52653ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5266552f7358SJed Brown }
5267552f7358SJed Brown 
5268d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMGetDimPoints_Plex(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd)
5269d71ae5a4SJacob Faibussowitsch {
5270793f3fe5SMatthew G. Knepley   PetscInt depth, d;
5271793f3fe5SMatthew G. Knepley 
5272793f3fe5SMatthew G. Knepley   PetscFunctionBegin;
52739566063dSJacob Faibussowitsch   PetscCall(DMPlexGetDepth(dm, &depth));
5274793f3fe5SMatthew G. Knepley   if (depth == 1) {
52759566063dSJacob Faibussowitsch     PetscCall(DMGetDimension(dm, &d));
52769566063dSJacob Faibussowitsch     if (dim == 0) PetscCall(DMPlexGetDepthStratum(dm, dim, pStart, pEnd));
52779566063dSJacob Faibussowitsch     else if (dim == d) PetscCall(DMPlexGetDepthStratum(dm, 1, pStart, pEnd));
52789371c9d4SSatish Balay     else {
52799371c9d4SSatish Balay       *pStart = 0;
52809371c9d4SSatish Balay       *pEnd   = 0;
52819371c9d4SSatish Balay     }
5282793f3fe5SMatthew G. Knepley   } else {
52839566063dSJacob Faibussowitsch     PetscCall(DMPlexGetDepthStratum(dm, dim, pStart, pEnd));
5284793f3fe5SMatthew G. Knepley   }
52853ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5286793f3fe5SMatthew G. Knepley }
5287793f3fe5SMatthew G. Knepley 
5288d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMGetNeighbors_Plex(DM dm, PetscInt *nranks, const PetscMPIInt *ranks[])
5289d71ae5a4SJacob Faibussowitsch {
5290502a2867SDave May   PetscSF            sf;
52916497c311SBarry Smith   PetscMPIInt        niranks, njranks;
52926497c311SBarry Smith   PetscInt           n;
52930a19bb7dSprj-   const PetscMPIInt *iranks, *jranks;
52940a19bb7dSprj-   DM_Plex           *data = (DM_Plex *)dm->data;
5295502a2867SDave May 
52962f356facSMatthew G. Knepley   PetscFunctionBegin;
52979566063dSJacob Faibussowitsch   PetscCall(DMGetPointSF(dm, &sf));
52980a19bb7dSprj-   if (!data->neighbors) {
52999566063dSJacob Faibussowitsch     PetscCall(PetscSFSetUp(sf));
53009566063dSJacob Faibussowitsch     PetscCall(PetscSFGetRootRanks(sf, &njranks, &jranks, NULL, NULL, NULL));
53019566063dSJacob Faibussowitsch     PetscCall(PetscSFGetLeafRanks(sf, &niranks, &iranks, NULL, NULL));
53029566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(njranks + niranks + 1, &data->neighbors));
53039566063dSJacob Faibussowitsch     PetscCall(PetscArraycpy(data->neighbors + 1, jranks, njranks));
53049566063dSJacob Faibussowitsch     PetscCall(PetscArraycpy(data->neighbors + njranks + 1, iranks, niranks));
53050a19bb7dSprj-     n = njranks + niranks;
53069566063dSJacob Faibussowitsch     PetscCall(PetscSortRemoveDupsMPIInt(&n, data->neighbors + 1));
53070a19bb7dSprj-     /* The following cast should never fail: can't have more neighbors than PETSC_MPI_INT_MAX */
53089566063dSJacob Faibussowitsch     PetscCall(PetscMPIIntCast(n, data->neighbors));
53090a19bb7dSprj-   }
53100a19bb7dSprj-   if (nranks) *nranks = data->neighbors[0];
53110a19bb7dSprj-   if (ranks) {
53120a19bb7dSprj-     if (data->neighbors[0]) *ranks = data->neighbors + 1;
53130a19bb7dSprj-     else *ranks = NULL;
53140a19bb7dSprj-   }
53153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5316502a2867SDave May }
5317502a2867SDave May 
53181eb70e55SToby Isaac PETSC_INTERN PetscErrorCode DMInterpolateSolution_Plex(DM, DM, Mat, Vec, Vec);
53191eb70e55SToby Isaac 
5320d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMInitialize_Plex(DM dm)
5321d71ae5a4SJacob Faibussowitsch {
5322552f7358SJed Brown   PetscFunctionBegin;
5323552f7358SJed Brown   dm->ops->view                      = DMView_Plex;
53242c40f234SMatthew G. Knepley   dm->ops->load                      = DMLoad_Plex;
5325552f7358SJed Brown   dm->ops->setfromoptions            = DMSetFromOptions_Plex;
532638221697SMatthew G. Knepley   dm->ops->clone                     = DMClone_Plex;
5327552f7358SJed Brown   dm->ops->setup                     = DMSetUp_Plex;
53281bb6d2a8SBarry Smith   dm->ops->createlocalsection        = DMCreateLocalSection_Plex;
5329adc21957SMatthew G. Knepley   dm->ops->createsectionpermutation  = DMCreateSectionPermutation_Plex;
533066ad2231SToby Isaac   dm->ops->createdefaultconstraints  = DMCreateDefaultConstraints_Plex;
5331552f7358SJed Brown   dm->ops->createglobalvector        = DMCreateGlobalVector_Plex;
5332552f7358SJed Brown   dm->ops->createlocalvector         = DMCreateLocalVector_Plex;
5333184d77edSJed Brown   dm->ops->getlocaltoglobalmapping   = NULL;
53340298fd71SBarry Smith   dm->ops->createfieldis             = NULL;
5335552f7358SJed Brown   dm->ops->createcoordinatedm        = DMCreateCoordinateDM_Plex;
5336f19dbd58SToby Isaac   dm->ops->createcoordinatefield     = DMCreateCoordinateField_Plex;
53370a6ba040SMatthew G. Knepley   dm->ops->getcoloring               = NULL;
5338552f7358SJed Brown   dm->ops->creatematrix              = DMCreateMatrix_Plex;
5339bceba477SMatthew G. Knepley   dm->ops->createinterpolation       = DMCreateInterpolation_Plex;
5340bd041c0cSMatthew G. Knepley   dm->ops->createmassmatrix          = DMCreateMassMatrix_Plex;
5341b4937a87SMatthew G. Knepley   dm->ops->createmassmatrixlumped    = DMCreateMassMatrixLumped_Plex;
53425a84ad33SLisandro Dalcin   dm->ops->createinjection           = DMCreateInjection_Plex;
5343552f7358SJed Brown   dm->ops->refine                    = DMRefine_Plex;
53440a6ba040SMatthew G. Knepley   dm->ops->coarsen                   = DMCoarsen_Plex;
53450a6ba040SMatthew G. Knepley   dm->ops->refinehierarchy           = DMRefineHierarchy_Plex;
5346b653a561SMatthew G. Knepley   dm->ops->coarsenhierarchy          = DMCoarsenHierarchy_Plex;
5347d410b0cfSMatthew G. Knepley   dm->ops->extrude                   = DMExtrude_Plex;
53480298fd71SBarry Smith   dm->ops->globaltolocalbegin        = NULL;
53490298fd71SBarry Smith   dm->ops->globaltolocalend          = NULL;
53500298fd71SBarry Smith   dm->ops->localtoglobalbegin        = NULL;
53510298fd71SBarry Smith   dm->ops->localtoglobalend          = NULL;
5352552f7358SJed Brown   dm->ops->destroy                   = DMDestroy_Plex;
5353552f7358SJed Brown   dm->ops->createsubdm               = DMCreateSubDM_Plex;
53542adcc780SMatthew G. Knepley   dm->ops->createsuperdm             = DMCreateSuperDM_Plex;
5355793f3fe5SMatthew G. Knepley   dm->ops->getdimpoints              = DMGetDimPoints_Plex;
5356552f7358SJed Brown   dm->ops->locatepoints              = DMLocatePoints_Plex;
53570709b2feSToby Isaac   dm->ops->projectfunctionlocal      = DMProjectFunctionLocal_Plex;
53580709b2feSToby Isaac   dm->ops->projectfunctionlabellocal = DMProjectFunctionLabelLocal_Plex;
5359bfc4295aSToby Isaac   dm->ops->projectfieldlocal         = DMProjectFieldLocal_Plex;
53608c6c5593SMatthew G. Knepley   dm->ops->projectfieldlabellocal    = DMProjectFieldLabelLocal_Plex;
5361ece3a9fcSMatthew G. Knepley   dm->ops->projectbdfieldlabellocal  = DMProjectBdFieldLabelLocal_Plex;
53620709b2feSToby Isaac   dm->ops->computel2diff             = DMComputeL2Diff_Plex;
5363b698f381SToby Isaac   dm->ops->computel2gradientdiff     = DMComputeL2GradientDiff_Plex;
53642a16baeaSToby Isaac   dm->ops->computel2fielddiff        = DMComputeL2FieldDiff_Plex;
536528d58a37SPierre Jolivet   dm->ops->getneighbors              = DMGetNeighbors_Plex;
53666c6a6b79SMatthew G. Knepley   dm->ops->getlocalboundingbox       = DMGetLocalBoundingBox_Coordinates;
5367907a3e9cSStefano Zampini   dm->ops->createdomaindecomposition = DMCreateDomainDecomposition_Plex;
5368907a3e9cSStefano Zampini   dm->ops->createddscatters          = DMCreateDomainDecompositionScatters_Plex;
53699566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexInsertBoundaryValues_C", DMPlexInsertBoundaryValues_Plex));
53706c51210dSStefano Zampini   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexInsertTimeDerivativeBoundaryValues_C", DMPlexInsertTimeDerivativeBoundaryValues_Plex));
53719566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMSetUpGLVisViewer_C", DMSetUpGLVisViewer_Plex));
53729566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMCreateNeumannOverlap_C", DMCreateNeumannOverlap_Plex));
53739566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexDistributeGetDefault_C", DMPlexDistributeGetDefault_Plex));
53749566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexDistributeSetDefault_C", DMPlexDistributeSetDefault_Plex));
53756bc1bd01Sksagiyam   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexReorderGetDefault_C", DMPlexReorderGetDefault_Plex));
53766bc1bd01Sksagiyam   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexReorderSetDefault_C", DMPlexReorderSetDefault_Plex));
5377adc21957SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMReorderSectionGetDefault_C", DMReorderSectionGetDefault_Plex));
5378adc21957SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMReorderSectionSetDefault_C", DMReorderSectionSetDefault_Plex));
5379adc21957SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMReorderSectionGetType_C", DMReorderSectionGetType_Plex));
5380adc21957SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMReorderSectionSetType_C", DMReorderSectionSetType_Plex));
53819566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMInterpolateSolution_C", DMInterpolateSolution_Plex));
5382c506a872SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexGetOverlap_C", DMPlexGetOverlap_Plex));
5383c506a872SMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexSetOverlap_C", DMPlexSetOverlap_Plex));
5384d2b2dc1eSMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexGetUseCeed_C", DMPlexGetUseCeed_Plex));
5385d2b2dc1eSMatthew G. Knepley   PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexSetUseCeed_C", DMPlexSetUseCeed_Plex));
53863ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5387552f7358SJed Brown }
5388552f7358SJed Brown 
5389d71ae5a4SJacob Faibussowitsch PETSC_INTERN PetscErrorCode DMClone_Plex(DM dm, DM *newdm)
5390d71ae5a4SJacob Faibussowitsch {
539163a16f15SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *)dm->data;
53921fca310dSJames Wright   const PetscSF *face_sfs;
53931fca310dSJames Wright   PetscInt       num_face_sfs;
539463a16f15SMatthew G. Knepley 
539563a16f15SMatthew G. Knepley   PetscFunctionBegin;
539663a16f15SMatthew G. Knepley   mesh->refct++;
539763a16f15SMatthew G. Knepley   (*newdm)->data = mesh;
53981fca310dSJames Wright   PetscCall(DMPlexGetIsoperiodicFaceSF(dm, &num_face_sfs, &face_sfs));
53991fca310dSJames Wright   PetscCall(DMPlexSetIsoperiodicFaceSF(*newdm, num_face_sfs, (PetscSF *)face_sfs));
54009566063dSJacob Faibussowitsch   PetscCall(PetscObjectChangeTypeName((PetscObject)*newdm, DMPLEX));
54019566063dSJacob Faibussowitsch   PetscCall(DMInitialize_Plex(*newdm));
54023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
540363a16f15SMatthew G. Knepley }
540463a16f15SMatthew G. Knepley 
54058818961aSMatthew G Knepley /*MC
5406a1cb98faSBarry Smith   DMPLEX = "plex" - A `DM` object that encapsulates an unstructured mesh, or CW Complex, which can be expressed using a Hasse Diagram.
540720f4b53cSBarry Smith                     In the local representation, `Vec`s contain all unknowns in the interior and shared boundary. This is
54088818961aSMatthew G Knepley                     specified by a PetscSection object. Ownership in the global representation is determined by
5409a1cb98faSBarry Smith                     ownership of the underlying `DMPLEX` points. This is specified by another `PetscSection` object.
54108818961aSMatthew G Knepley 
5411e5893cccSMatthew G. Knepley   Options Database Keys:
5412250712c9SMatthew G. Knepley + -dm_refine_pre                     - Refine mesh before distribution
5413250712c9SMatthew G. Knepley + -dm_refine_uniform_pre             - Choose uniform or generator-based refinement
5414250712c9SMatthew G. Knepley + -dm_refine_volume_limit_pre        - Cell volume limit after pre-refinement using generator
5415250712c9SMatthew G. Knepley . -dm_distribute                     - Distribute mesh across processes
5416250712c9SMatthew G. Knepley . -dm_distribute_overlap             - Number of cells to overlap for distribution
5417250712c9SMatthew G. Knepley . -dm_refine                         - Refine mesh after distribution
5418c3db174cSMatthew G. Knepley . -dm_localize <bool>                - Whether to localize coordinates for periodic meshes
5419c3db174cSMatthew G. Knepley . -dm_sparse_localize <bool>         - Whether to only localize cells on the periodic boundary
5420250712c9SMatthew G. Knepley . -dm_plex_hash_location             - Use grid hashing for point location
5421ddce0771SMatthew G. Knepley . -dm_plex_hash_box_faces <n,m,p>    - The number of divisions in each direction of the grid hash
5422f12cf164SMatthew G. Knepley . -dm_plex_partition_balance         - Attempt to evenly divide points on partition boundary between processes
5423f12cf164SMatthew G. Knepley . -dm_plex_remesh_bd                 - Allow changes to the boundary on remeshing
5424d5b43468SJose E. Roman . -dm_plex_max_projection_height     - Maximum mesh point height used to project locally
5425f12cf164SMatthew G. Knepley . -dm_plex_regular_refinement        - Use special nested projection algorithm for regular refinement
5426d02c7345SMatthew G. Knepley . -dm_plex_reorder_section           - Use specialized blocking if available
5427aaa8cc7dSPierre Jolivet . -dm_plex_check_all                 - Perform all checks below
5428f12cf164SMatthew G. Knepley . -dm_plex_check_symmetry            - Check that the adjacency information in the mesh is symmetric
5429f12cf164SMatthew G. Knepley . -dm_plex_check_skeleton <celltype> - Check that each cell has the correct number of vertices
5430f12cf164SMatthew G. Knepley . -dm_plex_check_faces <celltype>    - Check that the faces of each cell give a vertex order this is consistent with what we expect from the cell type
5431f12cf164SMatthew G. Knepley . -dm_plex_check_geometry            - Check that cells have positive volume
5432f12cf164SMatthew G. Knepley . -dm_view :mesh.tex:ascii_latex     - View the mesh in LaTeX/TikZ
5433e5893cccSMatthew G. Knepley . -dm_plex_view_scale <num>          - Scale the TikZ
54345962854dSMatthew G. Knepley . -dm_plex_print_fem <num>           - View FEM assembly information, such as element vectors and matrices
54355962854dSMatthew G. Knepley - -dm_plex_print_fvm <num>           - View FVM assembly information, such as flux updates
5436e5893cccSMatthew G. Knepley 
54378818961aSMatthew G Knepley   Level: intermediate
54388818961aSMatthew G Knepley 
54391cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMType`, `DMPlexCreate()`, `DMCreate()`, `DMSetType()`, `PetscSection`
54408818961aSMatthew G Knepley M*/
54418818961aSMatthew G Knepley 
5442d71ae5a4SJacob Faibussowitsch PETSC_EXTERN PetscErrorCode DMCreate_Plex(DM dm)
5443d71ae5a4SJacob Faibussowitsch {
5444552f7358SJed Brown   DM_Plex *mesh;
5445412e9a14SMatthew G. Knepley   PetscInt unit;
5446552f7358SJed Brown 
5447552f7358SJed Brown   PetscFunctionBegin;
5448f39ec787SMatthew G. Knepley   PetscCall(PetscCitationsRegister(PlexCitation, &Plexcite));
5449552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
54504dfa11a4SJacob Faibussowitsch   PetscCall(PetscNew(&mesh));
5451adc21957SMatthew G. Knepley   dm->reorderSection = DM_REORDER_DEFAULT_NOTSET;
5452552f7358SJed Brown   dm->data           = mesh;
5453552f7358SJed Brown 
5454552f7358SJed Brown   mesh->refct = 1;
54559566063dSJacob Faibussowitsch   PetscCall(PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->coneSection));
54569566063dSJacob Faibussowitsch   PetscCall(PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->supportSection));
5457552f7358SJed Brown   mesh->refinementUniform      = PETSC_TRUE;
5458552f7358SJed Brown   mesh->refinementLimit        = -1.0;
5459e600fa54SMatthew G. Knepley   mesh->distDefault            = PETSC_TRUE;
5460adc21957SMatthew G. Knepley   mesh->reorderDefault         = DM_REORDER_DEFAULT_NOTSET;
54611d1f2f2aSksagiyam   mesh->distributionName       = NULL;
54627d0f5628SVaclav Hapla   mesh->interpolated           = DMPLEX_INTERPOLATED_INVALID;
54637d0f5628SVaclav Hapla   mesh->interpolatedCollective = DMPLEX_INTERPOLATED_INVALID;
5464552f7358SJed Brown 
54659566063dSJacob Faibussowitsch   PetscCall(PetscPartitionerCreate(PetscObjectComm((PetscObject)dm), &mesh->partitioner));
54662e62ab5aSMatthew G. Knepley   mesh->remeshBd = PETSC_FALSE;
5467d9deefdfSMatthew G. Knepley 
54688865f1eaSKarl Rupp   for (unit = 0; unit < NUM_PETSC_UNITS; ++unit) mesh->scale[unit] = 1.0;
5469552f7358SJed Brown 
5470df0420ecSMatthew G. Knepley   mesh->depthState    = -1;
5471ba2698f1SMatthew G. Knepley   mesh->celltypeState = -1;
54726113b454SMatthew G. Knepley   mesh->printTol      = 1.0e-10;
5473c29ce622SStefano Zampini   mesh->nonempty_comm = MPI_COMM_SELF;
5474552f7358SJed Brown 
54759566063dSJacob Faibussowitsch   PetscCall(DMInitialize_Plex(dm));
54763ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5477552f7358SJed Brown }
5478552f7358SJed Brown 
5479552f7358SJed Brown /*@
5480a1cb98faSBarry Smith   DMPlexCreate - Creates a `DMPLEX` object, which encapsulates an unstructured mesh, or CW complex, which can be expressed using a Hasse Diagram.
5481552f7358SJed Brown 
5482d083f849SBarry Smith   Collective
5483552f7358SJed Brown 
5484552f7358SJed Brown   Input Parameter:
5485a1cb98faSBarry Smith . comm - The communicator for the `DMPLEX` object
5486552f7358SJed Brown 
5487552f7358SJed Brown   Output Parameter:
5488a1cb98faSBarry Smith . mesh - The `DMPLEX` object
5489552f7358SJed Brown 
5490552f7358SJed Brown   Level: beginner
5491552f7358SJed Brown 
549242747ad1SJacob Faibussowitsch .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMType`, `DMCreate()`, `DMSetType()`
5493552f7358SJed Brown @*/
5494d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreate(MPI_Comm comm, DM *mesh)
5495d71ae5a4SJacob Faibussowitsch {
5496552f7358SJed Brown   PetscFunctionBegin;
54974f572ea9SToby Isaac   PetscAssertPointer(mesh, 2);
54989566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, mesh));
54999566063dSJacob Faibussowitsch   PetscCall(DMSetType(*mesh, DMPLEX));
55003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5501552f7358SJed Brown }
5502552f7358SJed Brown 
5503b09969d6SVaclav Hapla /*@C
5504b0fe842aSMatthew G. Knepley   DMPlexBuildFromCellListParallel - Build distributed `DMPLEX` topology from a list of vertices for each cell (common mesh generator output) where all cells have the same celltype
5505a1cb98faSBarry Smith 
550620f4b53cSBarry Smith   Collective; No Fortran Support
5507b09969d6SVaclav Hapla 
5508b09969d6SVaclav Hapla   Input Parameters:
5509a1cb98faSBarry Smith + dm          - The `DM`
5510b09969d6SVaclav Hapla . numCells    - The number of cells owned by this process
5511a1cb98faSBarry Smith . numVertices - The number of vertices to be owned by this process, or `PETSC_DECIDE`
5512a1cb98faSBarry Smith . NVertices   - The global number of vertices, or `PETSC_DETERMINE`
5513b09969d6SVaclav Hapla . numCorners  - The number of vertices for each cell
55145e488331SVaclav Hapla - cells       - An array of numCells*numCorners numbers, the global vertex numbers for each cell
5515b09969d6SVaclav Hapla 
5516be8c289dSNicolas Barral   Output Parameters:
5517a1cb98faSBarry Smith + vertexSF         - (Optional) `PetscSF` describing complete vertex ownership
5518be8c289dSNicolas Barral - verticesAdjSaved - (Optional) vertex adjacency array
5519b09969d6SVaclav Hapla 
5520b09969d6SVaclav Hapla   Level: advanced
5521b09969d6SVaclav Hapla 
5522a1cb98faSBarry Smith   Notes:
5523a1cb98faSBarry Smith   Two triangles sharing a face
5524a1cb98faSBarry Smith .vb
5525a1cb98faSBarry Smith 
5526a1cb98faSBarry Smith         2
5527a1cb98faSBarry Smith       / | \
5528a1cb98faSBarry Smith      /  |  \
5529a1cb98faSBarry Smith     /   |   \
5530a1cb98faSBarry Smith    0  0 | 1  3
5531a1cb98faSBarry Smith     \   |   /
5532a1cb98faSBarry Smith      \  |  /
5533a1cb98faSBarry Smith       \ | /
5534a1cb98faSBarry Smith         1
5535a1cb98faSBarry Smith .ve
5536a1cb98faSBarry Smith   would have input
5537a1cb98faSBarry Smith .vb
5538a1cb98faSBarry Smith   numCells = 2, numVertices = 4
5539a1cb98faSBarry Smith   cells = [0 1 2  1 3 2]
5540a1cb98faSBarry Smith .ve
5541a1cb98faSBarry Smith   which would result in the `DMPLEX`
5542a1cb98faSBarry Smith .vb
5543a1cb98faSBarry Smith 
5544a1cb98faSBarry Smith         4
5545a1cb98faSBarry Smith       / | \
5546a1cb98faSBarry Smith      /  |  \
5547a1cb98faSBarry Smith     /   |   \
5548a1cb98faSBarry Smith    2  0 | 1  5
5549a1cb98faSBarry Smith     \   |   /
5550a1cb98faSBarry Smith      \  |  /
5551a1cb98faSBarry Smith       \ | /
5552a1cb98faSBarry Smith         3
5553a1cb98faSBarry Smith .ve
5554a1cb98faSBarry Smith 
5555a1cb98faSBarry Smith   Vertices are implicitly numbered consecutively 0,...,NVertices.
5556a1cb98faSBarry Smith   Each rank owns a chunk of numVertices consecutive vertices.
5557a1cb98faSBarry Smith   If numVertices is `PETSC_DECIDE`, PETSc will distribute them as evenly as possible using PetscLayout.
5558a1cb98faSBarry Smith   If NVertices is `PETSC_DETERMINE` and numVertices is PETSC_DECIDE, NVertices is computed by PETSc as the maximum vertex index in cells + 1.
5559a1cb98faSBarry Smith   If only NVertices is `PETSC_DETERMINE`, it is computed as the sum of numVertices over all ranks.
5560a1cb98faSBarry Smith 
5561a1cb98faSBarry Smith   The cell distribution is arbitrary non-overlapping, independent of the vertex distribution.
5562a1cb98faSBarry Smith 
55631cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexBuildFromCellList()`, `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildCoordinatesFromCellListParallel()`,
5564a1cb98faSBarry Smith           `PetscSF`
5565b09969d6SVaclav Hapla @*/
5566d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexBuildFromCellListParallel(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt NVertices, PetscInt numCorners, const PetscInt cells[], PetscSF *vertexSF, PetscInt **verticesAdjSaved)
5567d71ae5a4SJacob Faibussowitsch {
55682464107aSksagiyam   PetscSF     sfPoint;
55692464107aSksagiyam   PetscLayout layout;
557082fb893eSVaclav Hapla   PetscInt    numVerticesAdj, *verticesAdj, *cones, c, p;
5571a47d0d45SMatthew G. Knepley 
5572a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
557325b6865aSVaclav Hapla   PetscValidLogicalCollectiveInt(dm, NVertices, 4);
55749566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
557525b6865aSVaclav Hapla   /* Get/check global number of vertices */
557625b6865aSVaclav Hapla   {
557725b6865aSVaclav Hapla     PetscInt       NVerticesInCells, i;
557825b6865aSVaclav Hapla     const PetscInt len = numCells * numCorners;
557925b6865aSVaclav Hapla 
558025b6865aSVaclav Hapla     /* NVerticesInCells = max(cells) + 1 */
55811690c2aeSBarry Smith     NVerticesInCells = PETSC_INT_MIN;
55829371c9d4SSatish Balay     for (i = 0; i < len; i++)
55839371c9d4SSatish Balay       if (cells[i] > NVerticesInCells) NVerticesInCells = cells[i];
558425b6865aSVaclav Hapla     ++NVerticesInCells;
5585462c564dSBarry Smith     PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &NVerticesInCells, 1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm)));
558625b6865aSVaclav Hapla 
558725b6865aSVaclav Hapla     if (numVertices == PETSC_DECIDE && NVertices == PETSC_DECIDE) NVertices = NVerticesInCells;
55889371c9d4SSatish Balay     else
55899371c9d4SSatish Balay       PetscCheck(NVertices == PETSC_DECIDE || NVertices >= NVerticesInCells, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Specified global number of vertices %" PetscInt_FMT " must be greater than or equal to the number of vertices in cells %" PetscInt_FMT, NVertices, NVerticesInCells);
559025b6865aSVaclav Hapla   }
55919079aca8SVaclav Hapla   /* Count locally unique vertices */
55929079aca8SVaclav Hapla   {
55939079aca8SVaclav Hapla     PetscHSetI vhash;
55949079aca8SVaclav Hapla     PetscInt   off = 0;
55959079aca8SVaclav Hapla 
55969566063dSJacob Faibussowitsch     PetscCall(PetscHSetICreate(&vhash));
5597a47d0d45SMatthew G. Knepley     for (c = 0; c < numCells; ++c) {
559848a46eb9SPierre Jolivet       for (p = 0; p < numCorners; ++p) PetscCall(PetscHSetIAdd(vhash, cells[c * numCorners + p]));
5599a47d0d45SMatthew G. Knepley     }
56009566063dSJacob Faibussowitsch     PetscCall(PetscHSetIGetSize(vhash, &numVerticesAdj));
56019566063dSJacob Faibussowitsch     if (!verticesAdjSaved) PetscCall(PetscMalloc1(numVerticesAdj, &verticesAdj));
5602ad540459SPierre Jolivet     else verticesAdj = *verticesAdjSaved;
56039566063dSJacob Faibussowitsch     PetscCall(PetscHSetIGetElems(vhash, &off, verticesAdj));
56049566063dSJacob Faibussowitsch     PetscCall(PetscHSetIDestroy(&vhash));
560563a3b9bcSJacob Faibussowitsch     PetscCheck(off == numVerticesAdj, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid number of local vertices %" PetscInt_FMT " should be %" PetscInt_FMT, off, numVerticesAdj);
5606a47d0d45SMatthew G. Knepley   }
56079566063dSJacob Faibussowitsch   PetscCall(PetscSortInt(numVerticesAdj, verticesAdj));
5608a47d0d45SMatthew G. Knepley   /* Create cones */
56099566063dSJacob Faibussowitsch   PetscCall(DMPlexSetChart(dm, 0, numCells + numVerticesAdj));
56109566063dSJacob Faibussowitsch   for (c = 0; c < numCells; ++c) PetscCall(DMPlexSetConeSize(dm, c, numCorners));
56119566063dSJacob Faibussowitsch   PetscCall(DMSetUp(dm));
56129566063dSJacob Faibussowitsch   PetscCall(DMPlexGetCones(dm, &cones));
5613a47d0d45SMatthew G. Knepley   for (c = 0; c < numCells; ++c) {
5614a47d0d45SMatthew G. Knepley     for (p = 0; p < numCorners; ++p) {
5615a47d0d45SMatthew G. Knepley       const PetscInt gv = cells[c * numCorners + p];
5616a47d0d45SMatthew G. Knepley       PetscInt       lv;
5617a47d0d45SMatthew G. Knepley 
56189079aca8SVaclav Hapla       /* Positions within verticesAdj form 0-based local vertex numbering;
56199079aca8SVaclav Hapla          we need to shift it by numCells to get correct DAG points (cells go first) */
56209566063dSJacob Faibussowitsch       PetscCall(PetscFindInt(gv, numVerticesAdj, verticesAdj, &lv));
562163a3b9bcSJacob Faibussowitsch       PetscCheck(lv >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Could not find global vertex %" PetscInt_FMT " in local connectivity", gv);
5622961cfab0SVaclav Hapla       cones[c * numCorners + p] = lv + numCells;
5623a47d0d45SMatthew G. Knepley     }
5624a47d0d45SMatthew G. Knepley   }
56252464107aSksagiyam   /* Build point sf */
56269566063dSJacob Faibussowitsch   PetscCall(PetscLayoutCreate(PetscObjectComm((PetscObject)dm), &layout));
56279566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetSize(layout, NVertices));
56289566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetLocalSize(layout, numVertices));
56299566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetBlockSize(layout, 1));
56309566063dSJacob Faibussowitsch   PetscCall(PetscSFCreateByMatchingIndices(layout, numVerticesAdj, verticesAdj, NULL, numCells, numVerticesAdj, verticesAdj, NULL, numCells, vertexSF, &sfPoint));
56319566063dSJacob Faibussowitsch   PetscCall(PetscLayoutDestroy(&layout));
56329566063dSJacob Faibussowitsch   if (!verticesAdjSaved) PetscCall(PetscFree(verticesAdj));
56339566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)sfPoint, "point SF"));
56342464107aSksagiyam   if (dm->sf) {
56352464107aSksagiyam     const char *prefix;
56362464107aSksagiyam 
56379566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm->sf, &prefix));
56389566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)sfPoint, prefix));
56392464107aSksagiyam   }
56409566063dSJacob Faibussowitsch   PetscCall(DMSetPointSF(dm, sfPoint));
56419566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&sfPoint));
5642f4f49eeaSPierre Jolivet   if (vertexSF) PetscCall(PetscObjectSetName((PetscObject)*vertexSF, "Vertex Ownership SF"));
5643a47d0d45SMatthew G. Knepley   /* Fill in the rest of the topology structure */
56449566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
56459566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
56469566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
56473ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5648a47d0d45SMatthew G. Knepley }
5649a47d0d45SMatthew G. Knepley 
5650b0fe842aSMatthew G. Knepley /*@C
5651b0fe842aSMatthew G. Knepley   DMPlexBuildFromCellSectionParallel - Build distributed `DMPLEX` topology from a list of vertices for each cell (common mesh generator output) allowing multiple celltypes
5652b0fe842aSMatthew G. Knepley 
5653b0fe842aSMatthew G. Knepley   Collective; No Fortran Support
5654b0fe842aSMatthew G. Knepley 
5655b0fe842aSMatthew G. Knepley   Input Parameters:
5656b0fe842aSMatthew G. Knepley + dm          - The `DM`
5657b0fe842aSMatthew G. Knepley . numCells    - The number of cells owned by this process
5658b0fe842aSMatthew G. Knepley . numVertices - The number of vertices to be owned by this process, or `PETSC_DECIDE`
5659b0fe842aSMatthew G. Knepley . NVertices   - The global number of vertices, or `PETSC_DETERMINE`
5660b0fe842aSMatthew G. Knepley . cellSection - The `PetscSection` giving the number of vertices for each cell (layout of cells)
5661b0fe842aSMatthew G. Knepley - cells       - An array of the global vertex numbers for each cell
5662b0fe842aSMatthew G. Knepley 
5663b0fe842aSMatthew G. Knepley   Output Parameters:
5664b0fe842aSMatthew G. Knepley + vertexSF         - (Optional) `PetscSF` describing complete vertex ownership
5665b0fe842aSMatthew G. Knepley - verticesAdjSaved - (Optional) vertex adjacency array
5666b0fe842aSMatthew G. Knepley 
5667b0fe842aSMatthew G. Knepley   Level: advanced
5668b0fe842aSMatthew G. Knepley 
5669b0fe842aSMatthew G. Knepley   Notes:
5670b0fe842aSMatthew G. Knepley   A triangle and quadrilateral sharing a face
5671b0fe842aSMatthew G. Knepley .vb
5672b0fe842aSMatthew G. Knepley         2----------3
5673b0fe842aSMatthew G. Knepley       / |          |
5674b0fe842aSMatthew G. Knepley      /  |          |
5675b0fe842aSMatthew G. Knepley     /   |          |
5676b0fe842aSMatthew G. Knepley    0  0 |     1    |
5677b0fe842aSMatthew G. Knepley     \   |          |
5678b0fe842aSMatthew G. Knepley      \  |          |
5679b0fe842aSMatthew G. Knepley       \ |          |
5680b0fe842aSMatthew G. Knepley         1----------4
5681b0fe842aSMatthew G. Knepley .ve
5682b0fe842aSMatthew G. Knepley   would have input
5683b0fe842aSMatthew G. Knepley .vb
5684b0fe842aSMatthew G. Knepley   numCells = 2, numVertices = 5
5685b0fe842aSMatthew G. Knepley   cells = [0 1 2  1 4 3 2]
5686b0fe842aSMatthew G. Knepley .ve
5687b0fe842aSMatthew G. Knepley   which would result in the `DMPLEX`
5688b0fe842aSMatthew G. Knepley .vb
5689b0fe842aSMatthew G. Knepley         4----------5
5690b0fe842aSMatthew G. Knepley       / |          |
5691b0fe842aSMatthew G. Knepley      /  |          |
5692b0fe842aSMatthew G. Knepley     /   |          |
5693b0fe842aSMatthew G. Knepley    2  0 |     1    |
5694b0fe842aSMatthew G. Knepley     \   |          |
5695b0fe842aSMatthew G. Knepley      \  |          |
5696b0fe842aSMatthew G. Knepley       \ |          |
5697b0fe842aSMatthew G. Knepley         3----------6
5698b0fe842aSMatthew G. Knepley .ve
5699b0fe842aSMatthew G. Knepley 
5700b0fe842aSMatthew G. Knepley   Vertices are implicitly numbered consecutively 0,...,NVertices.
5701b0fe842aSMatthew G. Knepley   Each rank owns a chunk of numVertices consecutive vertices.
5702b0fe842aSMatthew G. Knepley   If numVertices is `PETSC_DECIDE`, PETSc will distribute them as evenly as possible using PetscLayout.
5703b0fe842aSMatthew G. Knepley   If NVertices is `PETSC_DETERMINE` and numVertices is PETSC_DECIDE, NVertices is computed by PETSc as the maximum vertex index in cells + 1.
5704b0fe842aSMatthew G. Knepley   If only NVertices is `PETSC_DETERMINE`, it is computed as the sum of numVertices over all ranks.
5705b0fe842aSMatthew G. Knepley 
5706b0fe842aSMatthew G. Knepley   The cell distribution is arbitrary non-overlapping, independent of the vertex distribution.
5707b0fe842aSMatthew G. Knepley 
5708b0fe842aSMatthew G. Knepley .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexBuildFromCellListParallel()`, `DMPlexCreateFromCellSectionParallel()`, `DMPlexBuildCoordinatesFromCellListParallel()`,
5709b0fe842aSMatthew G. Knepley           `PetscSF`
5710b0fe842aSMatthew G. Knepley @*/
5711b0fe842aSMatthew G. Knepley PetscErrorCode DMPlexBuildFromCellSectionParallel(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt NVertices, PetscSection cellSection, const PetscInt cells[], PetscSF *vertexSF, PetscInt **verticesAdjSaved)
5712b0fe842aSMatthew G. Knepley {
5713b0fe842aSMatthew G. Knepley   PetscSF     sfPoint;
5714b0fe842aSMatthew G. Knepley   PetscLayout layout;
5715b0fe842aSMatthew G. Knepley   PetscInt    numVerticesAdj, *verticesAdj, *cones, cStart, cEnd, len;
5716b0fe842aSMatthew G. Knepley 
5717b0fe842aSMatthew G. Knepley   PetscFunctionBegin;
5718b0fe842aSMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, NVertices, 4);
5719b0fe842aSMatthew G. Knepley   PetscCall(PetscLogEventBegin(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
5720b0fe842aSMatthew G. Knepley   PetscCall(PetscSectionGetChart(cellSection, &cStart, &cEnd));
5721b0fe842aSMatthew G. Knepley   PetscCall(PetscSectionGetStorageSize(cellSection, &len));
5722b0fe842aSMatthew G. Knepley   PetscCheck(cStart == 0 && cEnd == numCells, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Section chart [%" PetscInt_FMT ", %" PetscInt_FMT ") should be [0, %" PetscInt_FMT ")", cStart, cEnd, numCells);
5723b0fe842aSMatthew G. Knepley   /* Get/check global number of vertices */
5724b0fe842aSMatthew G. Knepley   {
5725b0fe842aSMatthew G. Knepley     PetscInt NVerticesInCells;
5726b0fe842aSMatthew G. Knepley 
5727b0fe842aSMatthew G. Knepley     /* NVerticesInCells = max(cells) + 1 */
5728b0fe842aSMatthew G. Knepley     NVerticesInCells = PETSC_MIN_INT;
5729b0fe842aSMatthew G. Knepley     for (PetscInt i = 0; i < len; i++)
5730b0fe842aSMatthew G. Knepley       if (cells[i] > NVerticesInCells) NVerticesInCells = cells[i];
5731b0fe842aSMatthew G. Knepley     ++NVerticesInCells;
5732b0fe842aSMatthew G. Knepley     PetscCallMPI(MPIU_Allreduce(MPI_IN_PLACE, &NVerticesInCells, 1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm)));
5733b0fe842aSMatthew G. Knepley 
5734b0fe842aSMatthew G. Knepley     if (numVertices == PETSC_DECIDE && NVertices == PETSC_DECIDE) NVertices = NVerticesInCells;
5735b0fe842aSMatthew G. Knepley     else
5736b0fe842aSMatthew G. Knepley       PetscCheck(NVertices == PETSC_DECIDE || NVertices >= NVerticesInCells, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Specified global number of vertices %" PetscInt_FMT " must be greater than or equal to the number of vertices in cells %" PetscInt_FMT, NVertices, NVerticesInCells);
5737b0fe842aSMatthew G. Knepley   }
5738b0fe842aSMatthew G. Knepley   /* Count locally unique vertices */
5739b0fe842aSMatthew G. Knepley   {
5740b0fe842aSMatthew G. Knepley     PetscHSetI vhash;
5741b0fe842aSMatthew G. Knepley     PetscInt   off = 0;
5742b0fe842aSMatthew G. Knepley 
5743b0fe842aSMatthew G. Knepley     PetscCall(PetscHSetICreate(&vhash));
5744b0fe842aSMatthew G. Knepley     for (PetscInt i = 0; i < len; i++) PetscCall(PetscHSetIAdd(vhash, cells[i]));
5745b0fe842aSMatthew G. Knepley     PetscCall(PetscHSetIGetSize(vhash, &numVerticesAdj));
5746b0fe842aSMatthew G. Knepley     if (!verticesAdjSaved) PetscCall(PetscMalloc1(numVerticesAdj, &verticesAdj));
5747b0fe842aSMatthew G. Knepley     else verticesAdj = *verticesAdjSaved;
5748b0fe842aSMatthew G. Knepley     PetscCall(PetscHSetIGetElems(vhash, &off, verticesAdj));
5749b0fe842aSMatthew G. Knepley     PetscCall(PetscHSetIDestroy(&vhash));
5750b0fe842aSMatthew G. Knepley     PetscCheck(off == numVerticesAdj, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid number of local vertices %" PetscInt_FMT " should be %" PetscInt_FMT, off, numVerticesAdj);
5751b0fe842aSMatthew G. Knepley   }
5752b0fe842aSMatthew G. Knepley   PetscCall(PetscSortInt(numVerticesAdj, verticesAdj));
5753b0fe842aSMatthew G. Knepley   /* Create cones */
5754b0fe842aSMatthew G. Knepley   PetscCall(DMPlexSetChart(dm, 0, numCells + numVerticesAdj));
5755b0fe842aSMatthew G. Knepley   for (PetscInt c = 0; c < numCells; ++c) {
5756b0fe842aSMatthew G. Knepley     PetscInt dof;
5757b0fe842aSMatthew G. Knepley 
5758b0fe842aSMatthew G. Knepley     PetscCall(PetscSectionGetDof(cellSection, c, &dof));
5759b0fe842aSMatthew G. Knepley     PetscCall(DMPlexSetConeSize(dm, c, dof));
5760b0fe842aSMatthew G. Knepley   }
5761b0fe842aSMatthew G. Knepley   PetscCall(DMSetUp(dm));
5762b0fe842aSMatthew G. Knepley   PetscCall(DMPlexGetCones(dm, &cones));
5763b0fe842aSMatthew G. Knepley   for (PetscInt c = 0; c < numCells; ++c) {
5764b0fe842aSMatthew G. Knepley     PetscInt dof, off;
5765b0fe842aSMatthew G. Knepley 
5766b0fe842aSMatthew G. Knepley     PetscCall(PetscSectionGetDof(cellSection, c, &dof));
5767b0fe842aSMatthew G. Knepley     PetscCall(PetscSectionGetOffset(cellSection, c, &off));
5768b0fe842aSMatthew G. Knepley     for (PetscInt p = off; p < off + dof; ++p) {
5769b0fe842aSMatthew G. Knepley       const PetscInt gv = cells[p];
5770b0fe842aSMatthew G. Knepley       PetscInt       lv;
5771b0fe842aSMatthew G. Knepley 
5772b0fe842aSMatthew G. Knepley       /* Positions within verticesAdj form 0-based local vertex numbering;
5773b0fe842aSMatthew G. Knepley          we need to shift it by numCells to get correct DAG points (cells go first) */
5774b0fe842aSMatthew G. Knepley       PetscCall(PetscFindInt(gv, numVerticesAdj, verticesAdj, &lv));
5775b0fe842aSMatthew G. Knepley       PetscCheck(lv >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Could not find global vertex %" PetscInt_FMT " in local connectivity", gv);
5776b0fe842aSMatthew G. Knepley       cones[p] = lv + numCells;
5777b0fe842aSMatthew G. Knepley     }
5778b0fe842aSMatthew G. Knepley   }
5779b0fe842aSMatthew G. Knepley   /* Build point sf */
5780b0fe842aSMatthew G. Knepley   PetscCall(PetscLayoutCreate(PetscObjectComm((PetscObject)dm), &layout));
5781b0fe842aSMatthew G. Knepley   PetscCall(PetscLayoutSetSize(layout, NVertices));
5782b0fe842aSMatthew G. Knepley   PetscCall(PetscLayoutSetLocalSize(layout, numVertices));
5783b0fe842aSMatthew G. Knepley   PetscCall(PetscLayoutSetBlockSize(layout, 1));
5784b0fe842aSMatthew G. Knepley   PetscCall(PetscSFCreateByMatchingIndices(layout, numVerticesAdj, verticesAdj, NULL, numCells, numVerticesAdj, verticesAdj, NULL, numCells, vertexSF, &sfPoint));
5785b0fe842aSMatthew G. Knepley   PetscCall(PetscLayoutDestroy(&layout));
5786b0fe842aSMatthew G. Knepley   if (!verticesAdjSaved) PetscCall(PetscFree(verticesAdj));
5787b0fe842aSMatthew G. Knepley   PetscCall(PetscObjectSetName((PetscObject)sfPoint, "point SF"));
5788b0fe842aSMatthew G. Knepley   if (dm->sf) {
5789b0fe842aSMatthew G. Knepley     const char *prefix;
5790b0fe842aSMatthew G. Knepley 
5791b0fe842aSMatthew G. Knepley     PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm->sf, &prefix));
5792b0fe842aSMatthew G. Knepley     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)sfPoint, prefix));
5793b0fe842aSMatthew G. Knepley   }
5794b0fe842aSMatthew G. Knepley   PetscCall(DMSetPointSF(dm, sfPoint));
5795b0fe842aSMatthew G. Knepley   PetscCall(PetscSFDestroy(&sfPoint));
5796b0fe842aSMatthew G. Knepley   if (vertexSF) PetscCall(PetscObjectSetName((PetscObject)*vertexSF, "Vertex Ownership SF"));
5797b0fe842aSMatthew G. Knepley   /* Fill in the rest of the topology structure */
5798b0fe842aSMatthew G. Knepley   PetscCall(DMPlexSymmetrize(dm));
5799b0fe842aSMatthew G. Knepley   PetscCall(DMPlexStratify(dm));
5800b0fe842aSMatthew G. Knepley   PetscCall(PetscLogEventEnd(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
5801b0fe842aSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
5802b0fe842aSMatthew G. Knepley }
5803b0fe842aSMatthew G. Knepley 
5804cc4c1da9SBarry Smith /*@
5805a1cb98faSBarry Smith   DMPlexBuildCoordinatesFromCellListParallel - Build `DM` coordinates from a list of coordinates for each owned vertex (common mesh generator output)
5806a1cb98faSBarry Smith 
580720f4b53cSBarry Smith   Collective; No Fortran Support
5808b09969d6SVaclav Hapla 
5809b09969d6SVaclav Hapla   Input Parameters:
5810a1cb98faSBarry Smith + dm           - The `DM`
5811b09969d6SVaclav Hapla . spaceDim     - The spatial dimension used for coordinates
5812a1cb98faSBarry Smith . sfVert       - `PetscSF` describing complete vertex ownership
5813b09969d6SVaclav Hapla - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
5814b09969d6SVaclav Hapla 
5815b09969d6SVaclav Hapla   Level: advanced
5816b09969d6SVaclav Hapla 
58171cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildFromCellListParallel()`
5818b09969d6SVaclav Hapla @*/
5819d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexBuildCoordinatesFromCellListParallel(DM dm, PetscInt spaceDim, PetscSF sfVert, const PetscReal vertexCoords[])
5820d71ae5a4SJacob Faibussowitsch {
5821a47d0d45SMatthew G. Knepley   PetscSection coordSection;
5822a47d0d45SMatthew G. Knepley   Vec          coordinates;
5823a47d0d45SMatthew G. Knepley   PetscScalar *coords;
58241edcf0b2SVaclav Hapla   PetscInt     numVertices, numVerticesAdj, coordSize, v, vStart, vEnd;
5825835f2295SStefano Zampini   PetscMPIInt  spaceDimi;
5826a47d0d45SMatthew G. Knepley 
5827a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
58289566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DMPLEX_BuildCoordinatesFromCellList, dm, 0, 0, 0));
58299566063dSJacob Faibussowitsch   PetscCall(DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd));
58301dca8a05SBarry Smith   PetscCheck(vStart >= 0 && vEnd >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "DM is not set up properly. DMPlexBuildFromCellList() should be called first.");
58319566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, spaceDim));
58329566063dSJacob Faibussowitsch   PetscCall(PetscSFGetGraph(sfVert, &numVertices, &numVerticesAdj, NULL, NULL));
58331dca8a05SBarry Smith   PetscCheck(vEnd - vStart == numVerticesAdj, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Supplied sfVert has wrong number of leaves = %" PetscInt_FMT " != %" PetscInt_FMT " = vEnd - vStart", numVerticesAdj, vEnd - vStart);
58349566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
58359566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
58369566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, spaceDim));
58379566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, vStart, vEnd));
58381edcf0b2SVaclav Hapla   for (v = vStart; v < vEnd; ++v) {
58399566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, spaceDim));
58409566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, spaceDim));
5841a47d0d45SMatthew G. Knepley   }
58429566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
58439566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
58449566063dSJacob Faibussowitsch   PetscCall(VecCreate(PetscObjectComm((PetscObject)dm), &coordinates));
58459566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, spaceDim));
58469566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
58479566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
58489566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
58499566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
5850a47d0d45SMatthew G. Knepley   {
5851a47d0d45SMatthew G. Knepley     MPI_Datatype coordtype;
5852a47d0d45SMatthew G. Knepley 
5853a47d0d45SMatthew G. Knepley     /* Need a temp buffer for coords if we have complex/single */
5854835f2295SStefano Zampini     PetscCall(PetscMPIIntCast(spaceDim, &spaceDimi));
5855835f2295SStefano Zampini     PetscCallMPI(MPI_Type_contiguous(spaceDimi, MPIU_SCALAR, &coordtype));
58569566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Type_commit(&coordtype));
585721016a8bSBarry Smith #if defined(PETSC_USE_COMPLEX)
585821016a8bSBarry Smith     {
585921016a8bSBarry Smith       PetscScalar *svertexCoords;
586021016a8bSBarry Smith       PetscInt     i;
58619566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(numVertices * spaceDim, &svertexCoords));
58623612f820SVaclav Hapla       for (i = 0; i < numVertices * spaceDim; i++) svertexCoords[i] = vertexCoords[i];
58639566063dSJacob Faibussowitsch       PetscCall(PetscSFBcastBegin(sfVert, coordtype, svertexCoords, coords, MPI_REPLACE));
58649566063dSJacob Faibussowitsch       PetscCall(PetscSFBcastEnd(sfVert, coordtype, svertexCoords, coords, MPI_REPLACE));
58659566063dSJacob Faibussowitsch       PetscCall(PetscFree(svertexCoords));
586621016a8bSBarry Smith     }
586721016a8bSBarry Smith #else
58689566063dSJacob Faibussowitsch     PetscCall(PetscSFBcastBegin(sfVert, coordtype, vertexCoords, coords, MPI_REPLACE));
58699566063dSJacob Faibussowitsch     PetscCall(PetscSFBcastEnd(sfVert, coordtype, vertexCoords, coords, MPI_REPLACE));
587021016a8bSBarry Smith #endif
58719566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Type_free(&coordtype));
5872a47d0d45SMatthew G. Knepley   }
58739566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
58749566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
58759566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
58769566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DMPLEX_BuildCoordinatesFromCellList, dm, 0, 0, 0));
58773ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5878a47d0d45SMatthew G. Knepley }
5879a47d0d45SMatthew G. Knepley 
5880c3edce3dSSatish Balay /*@
5881b0fe842aSMatthew G. Knepley   DMPlexCreateFromCellListParallelPetsc - Create distributed `DMPLEX` from a list of vertices for each cell (common mesh generator output) where all cells have the same celltype
5882a1cb98faSBarry Smith 
5883a1cb98faSBarry Smith   Collective
5884a47d0d45SMatthew G. Knepley 
5885a47d0d45SMatthew G. Knepley   Input Parameters:
5886a47d0d45SMatthew G. Knepley + comm         - The communicator
5887a47d0d45SMatthew G. Knepley . dim          - The topological dimension of the mesh
5888a47d0d45SMatthew G. Knepley . numCells     - The number of cells owned by this process
5889a1cb98faSBarry Smith . numVertices  - The number of vertices owned by this process, or `PETSC_DECIDE`
5890a1cb98faSBarry Smith . NVertices    - The global number of vertices, or `PETSC_DECIDE`
5891a47d0d45SMatthew G. Knepley . numCorners   - The number of vertices for each cell
5892a47d0d45SMatthew G. Knepley . interpolate  - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically
5893a47d0d45SMatthew G. Knepley . cells        - An array of numCells*numCorners numbers, the global vertex numbers for each cell
5894a47d0d45SMatthew G. Knepley . spaceDim     - The spatial dimension used for coordinates
5895a47d0d45SMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
5896a47d0d45SMatthew G. Knepley 
5897d8d19677SJose E. Roman   Output Parameters:
5898a1cb98faSBarry Smith + dm          - The `DM`
5899a1cb98faSBarry Smith . vertexSF    - (Optional) `PetscSF` describing complete vertex ownership
590060225df5SJacob Faibussowitsch - verticesAdj - (Optional) vertex adjacency array
5901a47d0d45SMatthew G. Knepley 
5902b09969d6SVaclav Hapla   Level: intermediate
5903a47d0d45SMatthew G. Knepley 
5904a1cb98faSBarry Smith   Notes:
5905a1cb98faSBarry Smith   This function is just a convenient sequence of `DMCreate()`, `DMSetType()`, `DMSetDimension()`,
5906a1cb98faSBarry Smith   `DMPlexBuildFromCellListParallel()`, `DMPlexInterpolate()`, `DMPlexBuildCoordinatesFromCellListParallel()`
5907a1cb98faSBarry Smith 
5908a1cb98faSBarry Smith   See `DMPlexBuildFromCellListParallel()` for an example and details about the topology-related parameters.
5909a1cb98faSBarry Smith 
5910a1cb98faSBarry Smith   See `DMPlexBuildCoordinatesFromCellListParallel()` for details about the geometry-related parameters.
5911a1cb98faSBarry Smith 
59121cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromCellListPetsc()`, `DMPlexBuildFromCellListParallel()`, `DMPlexBuildCoordinatesFromCellListParallel()`, `DMPlexCreateFromDAG()`, `DMPlexCreate()`
5913a47d0d45SMatthew G. Knepley @*/
5914d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateFromCellListParallelPetsc(MPI_Comm comm, PetscInt dim, PetscInt numCells, PetscInt numVertices, PetscInt NVertices, PetscInt numCorners, PetscBool interpolate, const PetscInt cells[], PetscInt spaceDim, const PetscReal vertexCoords[], PetscSF *vertexSF, PetscInt **verticesAdj, DM *dm)
5915d71ae5a4SJacob Faibussowitsch {
5916a47d0d45SMatthew G. Knepley   PetscSF sfVert;
5917a47d0d45SMatthew G. Knepley 
5918a47d0d45SMatthew G. Knepley   PetscFunctionBegin;
59199566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
59209566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
5921a47d0d45SMatthew G. Knepley   PetscValidLogicalCollectiveInt(*dm, dim, 2);
5922064a246eSJacob Faibussowitsch   PetscValidLogicalCollectiveInt(*dm, spaceDim, 9);
59239566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(*dm, dim));
59249566063dSJacob Faibussowitsch   PetscCall(DMPlexBuildFromCellListParallel(*dm, numCells, numVertices, NVertices, numCorners, cells, &sfVert, verticesAdj));
5925a47d0d45SMatthew G. Knepley   if (interpolate) {
59265fd9971aSMatthew G. Knepley     DM idm;
5927a47d0d45SMatthew G. Knepley 
59289566063dSJacob Faibussowitsch     PetscCall(DMPlexInterpolate(*dm, &idm));
59299566063dSJacob Faibussowitsch     PetscCall(DMDestroy(dm));
5930a47d0d45SMatthew G. Knepley     *dm = idm;
5931a47d0d45SMatthew G. Knepley   }
59329566063dSJacob Faibussowitsch   PetscCall(DMPlexBuildCoordinatesFromCellListParallel(*dm, spaceDim, sfVert, vertexCoords));
593318d54ad4SMichael Lange   if (vertexSF) *vertexSF = sfVert;
59349566063dSJacob Faibussowitsch   else PetscCall(PetscSFDestroy(&sfVert));
59353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5936a47d0d45SMatthew G. Knepley }
5937a47d0d45SMatthew G. Knepley 
5938cc4c1da9SBarry Smith /*@
5939b0fe842aSMatthew G. Knepley   DMPlexCreateFromCellSectionParallel - Create distributed `DMPLEX` from a list of vertices for each cell (common mesh generator output) and supports multiple celltypes
5940b0fe842aSMatthew G. Knepley 
5941b0fe842aSMatthew G. Knepley   Collective
5942b0fe842aSMatthew G. Knepley 
5943b0fe842aSMatthew G. Knepley   Input Parameters:
5944b0fe842aSMatthew G. Knepley + comm         - The communicator
5945b0fe842aSMatthew G. Knepley . dim          - The topological dimension of the mesh
5946b0fe842aSMatthew G. Knepley . numCells     - The number of cells owned by this process
5947b0fe842aSMatthew G. Knepley . numVertices  - The number of vertices owned by this process, or `PETSC_DECIDE`
5948b0fe842aSMatthew G. Knepley . NVertices    - The global number of vertices, or `PETSC_DECIDE`
5949b0fe842aSMatthew G. Knepley . cellSection  - The `PetscSection` giving the number of vertices for each cell (layout of cells)
5950b0fe842aSMatthew G. Knepley . interpolate  - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically
5951b0fe842aSMatthew G. Knepley . cells        - An array of the global vertex numbers for each cell
5952b0fe842aSMatthew G. Knepley . spaceDim     - The spatial dimension used for coordinates
5953b0fe842aSMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
5954b0fe842aSMatthew G. Knepley 
5955b0fe842aSMatthew G. Knepley   Output Parameters:
5956b0fe842aSMatthew G. Knepley + dm          - The `DM`
5957b0fe842aSMatthew G. Knepley . vertexSF    - (Optional) `PetscSF` describing complete vertex ownership
5958b0fe842aSMatthew G. Knepley - verticesAdj - (Optional) vertex adjacency array
5959b0fe842aSMatthew G. Knepley 
5960b0fe842aSMatthew G. Knepley   Level: intermediate
5961b0fe842aSMatthew G. Knepley 
5962b0fe842aSMatthew G. Knepley   Notes:
5963b0fe842aSMatthew G. Knepley   This function is just a convenient sequence of `DMCreate()`, `DMSetType()`, `DMSetDimension()`,
5964b0fe842aSMatthew G. Knepley   `DMPlexBuildFromCellSectionParallel()`, `DMPlexInterpolate()`, `DMPlexBuildCoordinatesFromCellListParallel()`
5965b0fe842aSMatthew G. Knepley 
5966b0fe842aSMatthew G. Knepley   See `DMPlexBuildFromCellSectionParallel()` for an example and details about the topology-related parameters.
5967b0fe842aSMatthew G. Knepley 
5968b0fe842aSMatthew G. Knepley   See `DMPlexBuildCoordinatesFromCellListParallel()` for details about the geometry-related parameters.
5969b0fe842aSMatthew G. Knepley 
5970b0fe842aSMatthew G. Knepley .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromCellListPetsc()`, `DMPlexBuildFromCellListParallel()`, `DMPlexBuildCoordinatesFromCellListParallel()`, `DMPlexCreateFromDAG()`, `DMPlexCreate()`
5971b0fe842aSMatthew G. Knepley @*/
5972b0fe842aSMatthew G. Knepley PetscErrorCode DMPlexCreateFromCellSectionParallel(MPI_Comm comm, PetscInt dim, PetscInt numCells, PetscInt numVertices, PetscInt NVertices, PetscSection cellSection, PetscBool interpolate, const PetscInt cells[], PetscInt spaceDim, const PetscReal vertexCoords[], PetscSF *vertexSF, PetscInt **verticesAdj, DM *dm)
5973b0fe842aSMatthew G. Knepley {
5974b0fe842aSMatthew G. Knepley   PetscSF sfVert;
5975b0fe842aSMatthew G. Knepley 
5976b0fe842aSMatthew G. Knepley   PetscFunctionBegin;
5977b0fe842aSMatthew G. Knepley   PetscCall(DMCreate(comm, dm));
5978b0fe842aSMatthew G. Knepley   PetscCall(DMSetType(*dm, DMPLEX));
5979b0fe842aSMatthew G. Knepley   PetscValidLogicalCollectiveInt(*dm, dim, 2);
5980b0fe842aSMatthew G. Knepley   PetscValidLogicalCollectiveInt(*dm, spaceDim, 9);
5981b0fe842aSMatthew G. Knepley   PetscCall(DMSetDimension(*dm, dim));
5982b0fe842aSMatthew G. Knepley   PetscCall(DMPlexBuildFromCellSectionParallel(*dm, numCells, numVertices, NVertices, cellSection, cells, &sfVert, verticesAdj));
5983b0fe842aSMatthew G. Knepley   if (interpolate) {
5984b0fe842aSMatthew G. Knepley     DM idm;
5985b0fe842aSMatthew G. Knepley 
5986b0fe842aSMatthew G. Knepley     PetscCall(DMPlexInterpolate(*dm, &idm));
5987b0fe842aSMatthew G. Knepley     PetscCall(DMDestroy(dm));
5988b0fe842aSMatthew G. Knepley     *dm = idm;
5989b0fe842aSMatthew G. Knepley   }
5990b0fe842aSMatthew G. Knepley   PetscCall(DMPlexBuildCoordinatesFromCellListParallel(*dm, spaceDim, sfVert, vertexCoords));
5991b0fe842aSMatthew G. Knepley   if (vertexSF) *vertexSF = sfVert;
5992b0fe842aSMatthew G. Knepley   else PetscCall(PetscSFDestroy(&sfVert));
5993b0fe842aSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
5994b0fe842aSMatthew G. Knepley }
5995b0fe842aSMatthew G. Knepley 
5996b0fe842aSMatthew G. Knepley /*@
5997a1cb98faSBarry Smith   DMPlexBuildFromCellList - Build `DMPLEX` topology from a list of vertices for each cell (common mesh generator output)
5998a1cb98faSBarry Smith 
599920f4b53cSBarry Smith   Collective; No Fortran Support
60009298eaa6SMatthew G Knepley 
60019298eaa6SMatthew G Knepley   Input Parameters:
6002a1cb98faSBarry Smith + dm          - The `DM`
6003b09969d6SVaclav Hapla . numCells    - The number of cells owned by this process
6004a1cb98faSBarry Smith . numVertices - The number of vertices owned by this process, or `PETSC_DETERMINE`
60059298eaa6SMatthew G Knepley . numCorners  - The number of vertices for each cell
6006a3b724e8SBarry Smith - cells       - An array of `numCells` x `numCorners` numbers, the global vertex numbers for each cell
60079298eaa6SMatthew G Knepley 
6008b09969d6SVaclav Hapla   Level: advanced
60099298eaa6SMatthew G Knepley 
6010b09969d6SVaclav Hapla   Notes:
6011b09969d6SVaclav Hapla   Two triangles sharing a face
6012a1cb98faSBarry Smith .vb
60139298eaa6SMatthew G Knepley 
6014a1cb98faSBarry Smith         2
6015a1cb98faSBarry Smith       / | \
6016a1cb98faSBarry Smith      /  |  \
6017a1cb98faSBarry Smith     /   |   \
6018a1cb98faSBarry Smith    0  0 | 1  3
6019a1cb98faSBarry Smith     \   |   /
6020a1cb98faSBarry Smith      \  |  /
6021a1cb98faSBarry Smith       \ | /
6022a1cb98faSBarry Smith         1
6023a1cb98faSBarry Smith .ve
6024a1cb98faSBarry Smith   would have input
6025a1cb98faSBarry Smith .vb
6026a1cb98faSBarry Smith   numCells = 2, numVertices = 4
6027a1cb98faSBarry Smith   cells = [0 1 2  1 3 2]
6028a1cb98faSBarry Smith .ve
6029a1cb98faSBarry Smith   which would result in the `DMPLEX`
6030a1cb98faSBarry Smith .vb
6031a1cb98faSBarry Smith 
6032a1cb98faSBarry Smith         4
6033a1cb98faSBarry Smith       / | \
6034a1cb98faSBarry Smith      /  |  \
6035a1cb98faSBarry Smith     /   |   \
6036a1cb98faSBarry Smith    2  0 | 1  5
6037a1cb98faSBarry Smith     \   |   /
6038a1cb98faSBarry Smith      \  |  /
6039a1cb98faSBarry Smith       \ | /
6040a1cb98faSBarry Smith         3
6041a1cb98faSBarry Smith .ve
6042a1cb98faSBarry Smith 
6043a1cb98faSBarry Smith   If numVertices is `PETSC_DETERMINE`, it is computed by PETSc as the maximum vertex index in cells + 1.
604425b6865aSVaclav Hapla 
60451cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexBuildFromCellListParallel()`, `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromCellListPetsc()`
6046b09969d6SVaclav Hapla @*/
6047d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexBuildFromCellList(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, const PetscInt cells[])
6048d71ae5a4SJacob Faibussowitsch {
6049961cfab0SVaclav Hapla   PetscInt *cones, c, p, dim;
6050b09969d6SVaclav Hapla 
6051b09969d6SVaclav Hapla   PetscFunctionBegin;
60529566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
60539566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
605425b6865aSVaclav Hapla   /* Get/check global number of vertices */
605525b6865aSVaclav Hapla   {
605625b6865aSVaclav Hapla     PetscInt       NVerticesInCells, i;
605725b6865aSVaclav Hapla     const PetscInt len = numCells * numCorners;
605825b6865aSVaclav Hapla 
605925b6865aSVaclav Hapla     /* NVerticesInCells = max(cells) + 1 */
60601690c2aeSBarry Smith     NVerticesInCells = PETSC_INT_MIN;
60619371c9d4SSatish Balay     for (i = 0; i < len; i++)
60629371c9d4SSatish Balay       if (cells[i] > NVerticesInCells) NVerticesInCells = cells[i];
606325b6865aSVaclav Hapla     ++NVerticesInCells;
606425b6865aSVaclav Hapla 
606525b6865aSVaclav Hapla     if (numVertices == PETSC_DECIDE) numVertices = NVerticesInCells;
60669371c9d4SSatish Balay     else
60679371c9d4SSatish Balay       PetscCheck(numVertices >= NVerticesInCells, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Specified number of vertices %" PetscInt_FMT " must be greater than or equal to the number of vertices in cells %" PetscInt_FMT, numVertices, NVerticesInCells);
606825b6865aSVaclav Hapla   }
60699566063dSJacob Faibussowitsch   PetscCall(DMPlexSetChart(dm, 0, numCells + numVertices));
607048a46eb9SPierre Jolivet   for (c = 0; c < numCells; ++c) PetscCall(DMPlexSetConeSize(dm, c, numCorners));
60719566063dSJacob Faibussowitsch   PetscCall(DMSetUp(dm));
60729566063dSJacob Faibussowitsch   PetscCall(DMPlexGetCones(dm, &cones));
6073b09969d6SVaclav Hapla   for (c = 0; c < numCells; ++c) {
6074ad540459SPierre Jolivet     for (p = 0; p < numCorners; ++p) cones[c * numCorners + p] = cells[c * numCorners + p] + numCells;
6075b09969d6SVaclav Hapla   }
60769566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
60779566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
60789566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DMPLEX_BuildFromCellList, dm, 0, 0, 0));
60793ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6080b09969d6SVaclav Hapla }
6081b09969d6SVaclav Hapla 
6082cc4c1da9SBarry Smith /*@
6083a1cb98faSBarry Smith   DMPlexBuildCoordinatesFromCellList - Build `DM` coordinates from a list of coordinates for each owned vertex (common mesh generator output)
6084a1cb98faSBarry Smith 
6085cc4c1da9SBarry Smith   Collective
6086b09969d6SVaclav Hapla 
6087b09969d6SVaclav Hapla   Input Parameters:
6088a1cb98faSBarry Smith + dm           - The `DM`
6089b09969d6SVaclav Hapla . spaceDim     - The spatial dimension used for coordinates
6090b09969d6SVaclav Hapla - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex
6091b09969d6SVaclav Hapla 
6092b09969d6SVaclav Hapla   Level: advanced
6093b09969d6SVaclav Hapla 
60941cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexBuildCoordinatesFromCellListParallel()`, `DMPlexCreateFromCellListPetsc()`, `DMPlexBuildFromCellList()`
6095b09969d6SVaclav Hapla @*/
6096d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexBuildCoordinatesFromCellList(DM dm, PetscInt spaceDim, const PetscReal vertexCoords[])
6097d71ae5a4SJacob Faibussowitsch {
6098b09969d6SVaclav Hapla   PetscSection coordSection;
6099b09969d6SVaclav Hapla   Vec          coordinates;
6100b09969d6SVaclav Hapla   DM           cdm;
6101b09969d6SVaclav Hapla   PetscScalar *coords;
61021edcf0b2SVaclav Hapla   PetscInt     v, vStart, vEnd, d;
6103b09969d6SVaclav Hapla 
6104b09969d6SVaclav Hapla   PetscFunctionBegin;
61059566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DMPLEX_BuildCoordinatesFromCellList, dm, 0, 0, 0));
61069566063dSJacob Faibussowitsch   PetscCall(DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd));
61071dca8a05SBarry Smith   PetscCheck(vStart >= 0 && vEnd >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "DM is not set up properly. DMPlexBuildFromCellList() should be called first.");
61089566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(dm, spaceDim));
61099566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
61109566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
61119566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, spaceDim));
61129566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, vStart, vEnd));
61131edcf0b2SVaclav Hapla   for (v = vStart; v < vEnd; ++v) {
61149566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, spaceDim));
61159566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, spaceDim));
6116b09969d6SVaclav Hapla   }
61179566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
6118b09969d6SVaclav Hapla 
61199566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDM(dm, &cdm));
61209566063dSJacob Faibussowitsch   PetscCall(DMCreateLocalVector(cdm, &coordinates));
61219566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, spaceDim));
61229566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
61239566063dSJacob Faibussowitsch   PetscCall(VecGetArrayWrite(coordinates, &coords));
61241edcf0b2SVaclav Hapla   for (v = 0; v < vEnd - vStart; ++v) {
6125ad540459SPierre Jolivet     for (d = 0; d < spaceDim; ++d) coords[v * spaceDim + d] = vertexCoords[v * spaceDim + d];
6126b09969d6SVaclav Hapla   }
61279566063dSJacob Faibussowitsch   PetscCall(VecRestoreArrayWrite(coordinates, &coords));
61289566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
61299566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
61309566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DMPLEX_BuildCoordinatesFromCellList, dm, 0, 0, 0));
61313ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6132b09969d6SVaclav Hapla }
6133b09969d6SVaclav Hapla 
6134b09969d6SVaclav Hapla /*@
6135a1cb98faSBarry Smith   DMPlexCreateFromCellListPetsc - Create `DMPLEX` from a list of vertices for each cell (common mesh generator output), but only process 0 takes in the input
61363df08285SMatthew G. Knepley 
6137a1cb98faSBarry Smith   Collective
6138b09969d6SVaclav Hapla 
6139b09969d6SVaclav Hapla   Input Parameters:
6140b09969d6SVaclav Hapla + comm         - The communicator
6141b09969d6SVaclav Hapla . dim          - The topological dimension of the mesh
61423df08285SMatthew G. Knepley . numCells     - The number of cells, only on process 0
6143a1cb98faSBarry Smith . numVertices  - The number of vertices owned by this process, or `PETSC_DECIDE`, only on process 0
61443df08285SMatthew G. Knepley . numCorners   - The number of vertices for each cell, only on process 0
6145b09969d6SVaclav Hapla . interpolate  - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically
61463df08285SMatthew G. Knepley . cells        - An array of numCells*numCorners numbers, the vertices for each cell, only on process 0
6147b09969d6SVaclav Hapla . spaceDim     - The spatial dimension used for coordinates
61483df08285SMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex, only on process 0
6149b09969d6SVaclav Hapla 
6150b09969d6SVaclav Hapla   Output Parameter:
6151a1cb98faSBarry Smith . dm - The `DM`, which only has points on process 0
615225b6865aSVaclav Hapla 
6153b09969d6SVaclav Hapla   Level: intermediate
6154b09969d6SVaclav Hapla 
6155a1cb98faSBarry Smith   Notes:
6156a1cb98faSBarry Smith   This function is just a convenient sequence of `DMCreate()`, `DMSetType()`, `DMSetDimension()`, `DMPlexBuildFromCellList()`,
6157a1cb98faSBarry Smith   `DMPlexInterpolate()`, `DMPlexBuildCoordinatesFromCellList()`
6158a1cb98faSBarry Smith 
6159a1cb98faSBarry Smith   See `DMPlexBuildFromCellList()` for an example and details about the topology-related parameters.
6160a1cb98faSBarry Smith   See `DMPlexBuildCoordinatesFromCellList()` for details about the geometry-related parameters.
6161a1cb98faSBarry Smith   See `DMPlexCreateFromCellListParallelPetsc()` for parallel input
6162a1cb98faSBarry Smith 
61631cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildFromCellList()`, `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromDAG()`, `DMPlexCreate()`
61649298eaa6SMatthew G Knepley @*/
6165d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateFromCellListPetsc(MPI_Comm comm, PetscInt dim, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, PetscBool interpolate, const PetscInt cells[], PetscInt spaceDim, const PetscReal vertexCoords[], DM *dm)
6166d71ae5a4SJacob Faibussowitsch {
61673df08285SMatthew G. Knepley   PetscMPIInt rank;
61689298eaa6SMatthew G Knepley 
61699298eaa6SMatthew G Knepley   PetscFunctionBegin;
617028b400f6SJacob Faibussowitsch   PetscCheck(dim, comm, PETSC_ERR_ARG_OUTOFRANGE, "This is not appropriate for 0-dimensional meshes. Consider either creating the DM using DMPlexCreateFromDAG(), by hand, or using DMSwarm.");
61719566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
61729566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
61739566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
61749566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(*dm, dim));
6175c5853193SPierre Jolivet   if (rank == 0) PetscCall(DMPlexBuildFromCellList(*dm, numCells, numVertices, numCorners, cells));
61769566063dSJacob Faibussowitsch   else PetscCall(DMPlexBuildFromCellList(*dm, 0, 0, 0, NULL));
61779298eaa6SMatthew G Knepley   if (interpolate) {
61785fd9971aSMatthew G. Knepley     DM idm;
61799298eaa6SMatthew G Knepley 
61809566063dSJacob Faibussowitsch     PetscCall(DMPlexInterpolate(*dm, &idm));
61819566063dSJacob Faibussowitsch     PetscCall(DMDestroy(dm));
61829298eaa6SMatthew G Knepley     *dm = idm;
61839298eaa6SMatthew G Knepley   }
6184c5853193SPierre Jolivet   if (rank == 0) PetscCall(DMPlexBuildCoordinatesFromCellList(*dm, spaceDim, vertexCoords));
61859566063dSJacob Faibussowitsch   else PetscCall(DMPlexBuildCoordinatesFromCellList(*dm, spaceDim, NULL));
61863ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
61879298eaa6SMatthew G Knepley }
61889298eaa6SMatthew G Knepley 
6189939f6067SMatthew G. Knepley /*@
619020f4b53cSBarry Smith   DMPlexCreateFromDAG - This takes as input the adjacency-list representation of the Directed Acyclic Graph (Hasse Diagram) encoding a mesh, and produces a `DM`
6191939f6067SMatthew G. Knepley 
6192939f6067SMatthew G. Knepley   Input Parameters:
619320f4b53cSBarry Smith + dm               - The empty `DM` object, usually from `DMCreate()` and `DMSetDimension()`
6194939f6067SMatthew G. Knepley . depth            - The depth of the DAG
619520f4b53cSBarry Smith . numPoints        - Array of size depth + 1 containing the number of points at each `depth`
6196939f6067SMatthew G. Knepley . coneSize         - The cone size of each point
6197939f6067SMatthew G. Knepley . cones            - The concatenation of the cone points for each point, the cone list must be oriented correctly for each point
6198939f6067SMatthew G. Knepley . coneOrientations - The orientation of each cone point
619920f4b53cSBarry Smith - vertexCoords     - An array of `numPoints`[0]*spacedim numbers representing the coordinates of each vertex, with spacedim the value set via `DMSetCoordinateDim()`
6200939f6067SMatthew G. Knepley 
6201939f6067SMatthew G. Knepley   Output Parameter:
620220f4b53cSBarry Smith . dm - The `DM`
620320f4b53cSBarry Smith 
620420f4b53cSBarry Smith   Level: advanced
6205939f6067SMatthew G. Knepley 
6206a1cb98faSBarry Smith   Note:
6207a1cb98faSBarry Smith   Two triangles sharing a face would have input
6208a1cb98faSBarry Smith .vb
6209a1cb98faSBarry Smith   depth = 1, numPoints = [4 2], coneSize = [3 3 0 0 0 0]
6210a1cb98faSBarry Smith   cones = [2 3 4  3 5 4], coneOrientations = [0 0 0  0 0 0]
6211a1cb98faSBarry Smith  vertexCoords = [-1.0 0.0  0.0 -1.0  0.0 1.0  1.0 0.0]
6212a1cb98faSBarry Smith .ve
6213939f6067SMatthew G. Knepley   which would result in the DMPlex
6214a1cb98faSBarry Smith .vb
6215a1cb98faSBarry Smith         4
6216a1cb98faSBarry Smith       / | \
6217a1cb98faSBarry Smith      /  |  \
6218a1cb98faSBarry Smith     /   |   \
6219a1cb98faSBarry Smith    2  0 | 1  5
6220a1cb98faSBarry Smith     \   |   /
6221a1cb98faSBarry Smith      \  |  /
6222a1cb98faSBarry Smith       \ | /
6223a1cb98faSBarry Smith         3
6224a1cb98faSBarry Smith .ve
6225a1cb98faSBarry Smith   Notice that all points are numbered consecutively, unlike `DMPlexCreateFromCellListPetsc()`
6226939f6067SMatthew G. Knepley 
62271cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromCellListPetsc()`, `DMPlexCreate()`
6228939f6067SMatthew G. Knepley @*/
6229d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateFromDAG(DM dm, PetscInt depth, const PetscInt numPoints[], const PetscInt coneSize[], const PetscInt cones[], const PetscInt coneOrientations[], const PetscScalar vertexCoords[])
6230d71ae5a4SJacob Faibussowitsch {
62319298eaa6SMatthew G Knepley   Vec          coordinates;
62329298eaa6SMatthew G Knepley   PetscSection coordSection;
62339298eaa6SMatthew G Knepley   PetscScalar *coords;
6234811e8653SToby Isaac   PetscInt     coordSize, firstVertex = -1, pStart = 0, pEnd = 0, p, v, dim, dimEmbed, d, off;
62359298eaa6SMatthew G Knepley 
62369298eaa6SMatthew G Knepley   PetscFunctionBegin;
62379566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
62389566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dm, &dimEmbed));
623963a3b9bcSJacob Faibussowitsch   PetscCheck(dimEmbed >= dim, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Embedding dimension %" PetscInt_FMT " cannot be less than intrinsic dimension %" PetscInt_FMT, dimEmbed, dim);
62409298eaa6SMatthew G Knepley   for (d = 0; d <= depth; ++d) pEnd += numPoints[d];
62419566063dSJacob Faibussowitsch   PetscCall(DMPlexSetChart(dm, pStart, pEnd));
62429298eaa6SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
62439566063dSJacob Faibussowitsch     PetscCall(DMPlexSetConeSize(dm, p, coneSize[p - pStart]));
6244ad540459SPierre Jolivet     if (firstVertex < 0 && !coneSize[p - pStart]) firstVertex = p - pStart;
624597e052ccSToby Isaac   }
62461dca8a05SBarry Smith   PetscCheck(firstVertex >= 0 || !numPoints[0], PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Expected %" PetscInt_FMT " vertices but could not find any", numPoints[0]);
62479566063dSJacob Faibussowitsch   PetscCall(DMSetUp(dm)); /* Allocate space for cones */
62489298eaa6SMatthew G Knepley   for (p = pStart, off = 0; p < pEnd; off += coneSize[p - pStart], ++p) {
62499566063dSJacob Faibussowitsch     PetscCall(DMPlexSetCone(dm, p, &cones[off]));
62509566063dSJacob Faibussowitsch     PetscCall(DMPlexSetConeOrientation(dm, p, &coneOrientations[off]));
62519298eaa6SMatthew G Knepley   }
62529566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(dm));
62539566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(dm));
62549298eaa6SMatthew G Knepley   /* Build coordinates */
62559566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(dm, &coordSection));
62569566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
62579566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dimEmbed));
62589566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex + numPoints[0]));
62599298eaa6SMatthew G Knepley   for (v = firstVertex; v < firstVertex + numPoints[0]; ++v) {
62609566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, dimEmbed));
62619566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dimEmbed));
62629298eaa6SMatthew G Knepley   }
62639566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
62649566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
62659566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
62669566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
62679566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
62689566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, dimEmbed));
62699566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
62709318fe57SMatthew G. Knepley   if (vertexCoords) {
62719566063dSJacob Faibussowitsch     PetscCall(VecGetArray(coordinates, &coords));
62729298eaa6SMatthew G Knepley     for (v = 0; v < numPoints[0]; ++v) {
62739298eaa6SMatthew G Knepley       PetscInt off;
62749298eaa6SMatthew G Knepley 
62759566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetOffset(coordSection, v + firstVertex, &off));
6276ad540459SPierre Jolivet       for (d = 0; d < dimEmbed; ++d) coords[off + d] = vertexCoords[v * dimEmbed + d];
62779298eaa6SMatthew G Knepley     }
62789318fe57SMatthew G. Knepley   }
62799566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
62809566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(dm, coordinates));
62819566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
62823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
62839298eaa6SMatthew G Knepley }
62848415267dSToby Isaac 
6285a4e35b19SJacob Faibussowitsch /*
6286a1cb98faSBarry Smith   DMPlexCreateCellVertexFromFile - Create a `DMPLEX` mesh from a simple cell-vertex file.
6287a1cb98faSBarry Smith 
6288a1cb98faSBarry Smith   Collective
62898ca92349SMatthew G. Knepley 
62908ca92349SMatthew G. Knepley + comm        - The MPI communicator
62918ca92349SMatthew G. Knepley . filename    - Name of the .dat file
62928ca92349SMatthew G. Knepley - interpolate - Create faces and edges in the mesh
62938ca92349SMatthew G. Knepley 
62948ca92349SMatthew G. Knepley   Output Parameter:
6295a1cb98faSBarry Smith . dm  - The `DM` object representing the mesh
62968ca92349SMatthew G. Knepley 
62978ca92349SMatthew G. Knepley   Level: beginner
62988ca92349SMatthew G. Knepley 
6299a1cb98faSBarry Smith   Note:
6300a1cb98faSBarry Smith   The format is the simplest possible:
6301a1cb98faSBarry Smith .vb
6302d0812dedSMatthew G. Knepley   dim Ne Nv Nc Nl
6303d0812dedSMatthew G. Knepley   v_1 v_2 ... v_Nc
6304d0812dedSMatthew G. Knepley   ...
6305d0812dedSMatthew G. Knepley   x y z marker_1 ... marker_Nl
6306a1cb98faSBarry Smith .ve
6307a1cb98faSBarry Smith 
6308a1cb98faSBarry Smith   Developer Note:
6309a1cb98faSBarry Smith   Should use a `PetscViewer` not a filename
6310a1cb98faSBarry Smith 
63116afe31f6SMartin Diehl .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromFile()`, `DMPlexCreateGmsh()`, `DMPlexCreate()`
6312a4e35b19SJacob Faibussowitsch */
6313ff6a9541SJacob Faibussowitsch static PetscErrorCode DMPlexCreateCellVertexFromFile(MPI_Comm comm, const char filename[], PetscBool interpolate, DM *dm)
6314d71ae5a4SJacob Faibussowitsch {
63158ca92349SMatthew G. Knepley   DMLabel      marker;
63168ca92349SMatthew G. Knepley   PetscViewer  viewer;
63178ca92349SMatthew G. Knepley   Vec          coordinates;
63188ca92349SMatthew G. Knepley   PetscSection coordSection;
63198ca92349SMatthew G. Knepley   PetscScalar *coords;
63208ca92349SMatthew G. Knepley   char         line[PETSC_MAX_PATH_LEN];
6321d0812dedSMatthew G. Knepley   PetscInt     cdim, coordSize, v, c, d;
63228ca92349SMatthew G. Knepley   PetscMPIInt  rank;
6323d0812dedSMatthew G. Knepley   int          snum, dim, Nv, Nc, Ncn, Nl;
63248ca92349SMatthew G. Knepley 
63258ca92349SMatthew G. Knepley   PetscFunctionBegin;
63269566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
63279566063dSJacob Faibussowitsch   PetscCall(PetscViewerCreate(comm, &viewer));
63289566063dSJacob Faibussowitsch   PetscCall(PetscViewerSetType(viewer, PETSCVIEWERASCII));
63299566063dSJacob Faibussowitsch   PetscCall(PetscViewerFileSetMode(viewer, FILE_MODE_READ));
63309566063dSJacob Faibussowitsch   PetscCall(PetscViewerFileSetName(viewer, filename));
6331dd400576SPatrick Sanan   if (rank == 0) {
6332d0812dedSMatthew G. Knepley     PetscCall(PetscViewerRead(viewer, line, 5, NULL, PETSC_STRING));
6333d0812dedSMatthew G. Knepley     snum = sscanf(line, "%d %d %d %d %d", &dim, &Nc, &Nv, &Ncn, &Nl);
6334d0812dedSMatthew G. Knepley     PetscCheck(snum == 5, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line);
633525ce1634SJed Brown   } else {
6336f8d5e320SMatthew G. Knepley     Nc = Nv = Ncn = Nl = 0;
63378ca92349SMatthew G. Knepley   }
6338d0812dedSMatthew G. Knepley   PetscCallMPI(MPI_Bcast(&dim, 1, MPI_INT, 0, comm));
6339835f2295SStefano Zampini   cdim = dim;
63409566063dSJacob Faibussowitsch   PetscCall(DMCreate(comm, dm));
63419566063dSJacob Faibussowitsch   PetscCall(DMSetType(*dm, DMPLEX));
63429566063dSJacob Faibussowitsch   PetscCall(DMPlexSetChart(*dm, 0, Nc + Nv));
6343835f2295SStefano Zampini   PetscCall(DMSetDimension(*dm, dim));
63449566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(*dm, cdim));
63458ca92349SMatthew G. Knepley   /* Read topology */
6346dd400576SPatrick Sanan   if (rank == 0) {
6347f8d5e320SMatthew G. Knepley     char     format[PETSC_MAX_PATH_LEN];
6348f8d5e320SMatthew G. Knepley     PetscInt cone[8];
63498ca92349SMatthew G. Knepley     int      vbuf[8], v;
63508ca92349SMatthew G. Knepley 
63519371c9d4SSatish Balay     for (c = 0; c < Ncn; ++c) {
63529371c9d4SSatish Balay       format[c * 3 + 0] = '%';
63539371c9d4SSatish Balay       format[c * 3 + 1] = 'd';
63549371c9d4SSatish Balay       format[c * 3 + 2] = ' ';
63559371c9d4SSatish Balay     }
6356f8d5e320SMatthew G. Knepley     format[Ncn * 3 - 1] = '\0';
63579566063dSJacob Faibussowitsch     for (c = 0; c < Nc; ++c) PetscCall(DMPlexSetConeSize(*dm, c, Ncn));
63589566063dSJacob Faibussowitsch     PetscCall(DMSetUp(*dm));
63598ca92349SMatthew G. Knepley     for (c = 0; c < Nc; ++c) {
63609566063dSJacob Faibussowitsch       PetscCall(PetscViewerRead(viewer, line, Ncn, NULL, PETSC_STRING));
6361f8d5e320SMatthew G. Knepley       switch (Ncn) {
6362d71ae5a4SJacob Faibussowitsch       case 2:
6363d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &vbuf[0], &vbuf[1]);
6364d71ae5a4SJacob Faibussowitsch         break;
6365d71ae5a4SJacob Faibussowitsch       case 3:
6366d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2]);
6367d71ae5a4SJacob Faibussowitsch         break;
6368d71ae5a4SJacob Faibussowitsch       case 4:
6369d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3]);
6370d71ae5a4SJacob Faibussowitsch         break;
6371d71ae5a4SJacob Faibussowitsch       case 6:
6372d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5]);
6373d71ae5a4SJacob Faibussowitsch         break;
6374d71ae5a4SJacob Faibussowitsch       case 8:
6375d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5], &vbuf[6], &vbuf[7]);
6376d71ae5a4SJacob Faibussowitsch         break;
6377d71ae5a4SJacob Faibussowitsch       default:
6378d71ae5a4SJacob Faibussowitsch         SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No cell shape with %d vertices", Ncn);
6379f8d5e320SMatthew G. Knepley       }
638008401ef6SPierre Jolivet       PetscCheck(snum == Ncn, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line);
6381f8d5e320SMatthew G. Knepley       for (v = 0; v < Ncn; ++v) cone[v] = vbuf[v] + Nc;
63828ca92349SMatthew G. Knepley       /* Hexahedra are inverted */
6383f8d5e320SMatthew G. Knepley       if (Ncn == 8) {
63848ca92349SMatthew G. Knepley         PetscInt tmp = cone[1];
63858ca92349SMatthew G. Knepley         cone[1]      = cone[3];
63868ca92349SMatthew G. Knepley         cone[3]      = tmp;
63878ca92349SMatthew G. Knepley       }
63889566063dSJacob Faibussowitsch       PetscCall(DMPlexSetCone(*dm, c, cone));
63898ca92349SMatthew G. Knepley     }
63908ca92349SMatthew G. Knepley   }
63919566063dSJacob Faibussowitsch   PetscCall(DMPlexSymmetrize(*dm));
63929566063dSJacob Faibussowitsch   PetscCall(DMPlexStratify(*dm));
63938ca92349SMatthew G. Knepley   /* Read coordinates */
63949566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateSection(*dm, &coordSection));
63959566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(coordSection, 1));
63969566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetFieldComponents(coordSection, 0, cdim));
63979566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(coordSection, Nc, Nc + Nv));
63988ca92349SMatthew G. Knepley   for (v = Nc; v < Nc + Nv; ++v) {
63999566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetDof(coordSection, v, cdim));
64009566063dSJacob Faibussowitsch     PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, cdim));
64018ca92349SMatthew G. Knepley   }
64029566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(coordSection));
64039566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize));
64049566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates));
64059566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetName((PetscObject)coordinates, "coordinates"));
64069566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE));
64079566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(coordinates, cdim));
64089566063dSJacob Faibussowitsch   PetscCall(VecSetType(coordinates, VECSTANDARD));
64099566063dSJacob Faibussowitsch   PetscCall(VecGetArray(coordinates, &coords));
6410dd400576SPatrick Sanan   if (rank == 0) {
6411f8d5e320SMatthew G. Knepley     char   format[PETSC_MAX_PATH_LEN];
64128ca92349SMatthew G. Knepley     double x[3];
6413f8d5e320SMatthew G. Knepley     int    l, val[3];
64148ca92349SMatthew G. Knepley 
6415f8d5e320SMatthew G. Knepley     if (Nl) {
64169371c9d4SSatish Balay       for (l = 0; l < Nl; ++l) {
64179371c9d4SSatish Balay         format[l * 3 + 0] = '%';
64189371c9d4SSatish Balay         format[l * 3 + 1] = 'd';
64199371c9d4SSatish Balay         format[l * 3 + 2] = ' ';
64209371c9d4SSatish Balay       }
6421f8d5e320SMatthew G. Knepley       format[Nl * 3 - 1] = '\0';
64229566063dSJacob Faibussowitsch       PetscCall(DMCreateLabel(*dm, "marker"));
64239566063dSJacob Faibussowitsch       PetscCall(DMGetLabel(*dm, "marker", &marker));
6424f8d5e320SMatthew G. Knepley     }
64258ca92349SMatthew G. Knepley     for (v = 0; v < Nv; ++v) {
64269566063dSJacob Faibussowitsch       PetscCall(PetscViewerRead(viewer, line, 3 + Nl, NULL, PETSC_STRING));
6427f8d5e320SMatthew G. Knepley       snum = sscanf(line, "%lg %lg %lg", &x[0], &x[1], &x[2]);
642808401ef6SPierre Jolivet       PetscCheck(snum == 3, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line);
6429f8d5e320SMatthew G. Knepley       switch (Nl) {
6430d71ae5a4SJacob Faibussowitsch       case 0:
6431d71ae5a4SJacob Faibussowitsch         snum = 0;
6432d71ae5a4SJacob Faibussowitsch         break;
6433d71ae5a4SJacob Faibussowitsch       case 1:
6434d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &val[0]);
6435d71ae5a4SJacob Faibussowitsch         break;
6436d71ae5a4SJacob Faibussowitsch       case 2:
6437d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &val[0], &val[1]);
6438d71ae5a4SJacob Faibussowitsch         break;
6439d71ae5a4SJacob Faibussowitsch       case 3:
6440d71ae5a4SJacob Faibussowitsch         snum = sscanf(line, format, &val[0], &val[1], &val[2]);
6441d71ae5a4SJacob Faibussowitsch         break;
6442d71ae5a4SJacob Faibussowitsch       default:
6443d71ae5a4SJacob Faibussowitsch         SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Request support for %d labels", Nl);
6444f8d5e320SMatthew G. Knepley       }
644508401ef6SPierre Jolivet       PetscCheck(snum == Nl, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line);
64468ca92349SMatthew G. Knepley       for (d = 0; d < cdim; ++d) coords[v * cdim + d] = x[d];
64479566063dSJacob Faibussowitsch       for (l = 0; l < Nl; ++l) PetscCall(DMLabelSetValue(marker, v + Nc, val[l]));
64488ca92349SMatthew G. Knepley     }
64498ca92349SMatthew G. Knepley   }
64509566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(coordinates, &coords));
64519566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinatesLocal(*dm, coordinates));
64529566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&coordinates));
64539566063dSJacob Faibussowitsch   PetscCall(PetscViewerDestroy(&viewer));
64548ca92349SMatthew G. Knepley   if (interpolate) {
64558ca92349SMatthew G. Knepley     DM      idm;
64568ca92349SMatthew G. Knepley     DMLabel bdlabel;
64578ca92349SMatthew G. Knepley 
64589566063dSJacob Faibussowitsch     PetscCall(DMPlexInterpolate(*dm, &idm));
64599566063dSJacob Faibussowitsch     PetscCall(DMDestroy(dm));
64608ca92349SMatthew G. Knepley     *dm = idm;
64618ca92349SMatthew G. Knepley 
6462f8d5e320SMatthew G. Knepley     if (!Nl) {
64639566063dSJacob Faibussowitsch       PetscCall(DMCreateLabel(*dm, "marker"));
64649566063dSJacob Faibussowitsch       PetscCall(DMGetLabel(*dm, "marker", &bdlabel));
64659566063dSJacob Faibussowitsch       PetscCall(DMPlexMarkBoundaryFaces(*dm, PETSC_DETERMINE, bdlabel));
64669566063dSJacob Faibussowitsch       PetscCall(DMPlexLabelComplete(*dm, bdlabel));
64678ca92349SMatthew G. Knepley     }
6468f8d5e320SMatthew G. Knepley   }
64693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
64708ca92349SMatthew G. Knepley }
64718ca92349SMatthew G. Knepley 
6472cc4c1da9SBarry Smith /*@
6473a1cb98faSBarry Smith   DMPlexCreateFromFile - This takes a filename and produces a `DM`
6474a1cb98faSBarry Smith 
6475a1cb98faSBarry Smith   Collective
6476ca522641SMatthew G. Knepley 
6477ca522641SMatthew G. Knepley   Input Parameters:
6478ca522641SMatthew G. Knepley + comm        - The communicator
6479ca522641SMatthew G. Knepley . filename    - A file name
6480a1cb98faSBarry Smith . plexname    - The object name of the resulting `DM`, also used for intra-datafile lookup by some formats
6481ca522641SMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces)
6482ca522641SMatthew G. Knepley 
6483ca522641SMatthew G. Knepley   Output Parameter:
6484a1cb98faSBarry Smith . dm - The `DM`
6485ca522641SMatthew G. Knepley 
6486a1cb98faSBarry Smith   Options Database Key:
6487a1cb98faSBarry Smith . -dm_plex_create_from_hdf5_xdmf - use the `PETSC_VIEWER_HDF5_XDMF` format for reading HDF5
648802ef0d99SVaclav Hapla 
648937fdd005SBarry Smith   Use `-dm_plex_create_ prefix` to pass options to the internal `PetscViewer`, e.g.
6490bca97951SVaclav Hapla $ -dm_plex_create_viewer_hdf5_collective
6491bca97951SVaclav Hapla 
6492ca522641SMatthew G. Knepley   Level: beginner
6493ca522641SMatthew G. Knepley 
6494a1cb98faSBarry Smith   Notes:
6495a1cb98faSBarry Smith   Using `PETSCVIEWERHDF5` type with `PETSC_VIEWER_HDF5_PETSC` format, one can save multiple `DMPLEX`
6496a1cb98faSBarry Smith   meshes in a single HDF5 file. This in turn requires one to name the `DMPLEX` object with `PetscObjectSetName()`
6497a1cb98faSBarry Smith   before saving it with `DMView()` and before loading it with `DMLoad()` for identification of the mesh object.
6498a1cb98faSBarry Smith   The input parameter name is thus used to name the `DMPLEX` object when `DMPlexCreateFromFile()` internally
6499a1cb98faSBarry Smith   calls `DMLoad()`. Currently, name is ignored for other viewer types and/or formats.
6500a1cb98faSBarry Smith 
65011cc06b55SBarry Smith .seealso: [](ch_unstructured), `DM`, `DMPLEX`, `DMPlexCreateFromDAG()`, `DMPlexCreateFromCellListPetsc()`, `DMPlexCreate()`, `PetscObjectSetName()`, `DMView()`, `DMLoad()`
6502ca522641SMatthew G. Knepley @*/
6503d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPlexCreateFromFile(MPI_Comm comm, const char filename[], const char plexname[], PetscBool interpolate, DM *dm)
6504d71ae5a4SJacob Faibussowitsch {
6505ef3a5affSJacob Faibussowitsch   const char  extGmsh[]      = ".msh";
6506ef3a5affSJacob Faibussowitsch   const char  extGmsh2[]     = ".msh2";
6507ef3a5affSJacob Faibussowitsch   const char  extGmsh4[]     = ".msh4";
6508ef3a5affSJacob Faibussowitsch   const char  extCGNS[]      = ".cgns";
6509ef3a5affSJacob Faibussowitsch   const char  extExodus[]    = ".exo";
6510ef3a5affSJacob Faibussowitsch   const char  extExodus_e[]  = ".e";
6511ef3a5affSJacob Faibussowitsch   const char  extGenesis[]   = ".gen";
6512ef3a5affSJacob Faibussowitsch   const char  extFluent[]    = ".cas";
6513ef3a5affSJacob Faibussowitsch   const char  extHDF5[]      = ".h5";
65146f2c871aSStefano Zampini   const char  extXDMFHDF5[]  = ".xdmf.h5";
6515ef3a5affSJacob Faibussowitsch   const char  extPLY[]       = ".ply";
6516ef3a5affSJacob Faibussowitsch   const char  extEGADSLite[] = ".egadslite";
6517ef3a5affSJacob Faibussowitsch   const char  extEGADS[]     = ".egads";
6518ef3a5affSJacob Faibussowitsch   const char  extIGES[]      = ".igs";
6519ef3a5affSJacob Faibussowitsch   const char  extSTEP[]      = ".stp";
6520ef3a5affSJacob Faibussowitsch   const char  extCV[]        = ".dat";
6521ca522641SMatthew G. Knepley   size_t      len;
65226afe31f6SMartin Diehl   PetscBool   isGmsh, isGmsh2, isGmsh4, isCGNS, isExodus, isGenesis, isFluent, isHDF5, isPLY, isEGADSLite, isEGADS, isIGES, isSTEP, isCV, isXDMFHDF5;
6523ca522641SMatthew G. Knepley   PetscMPIInt rank;
6524ca522641SMatthew G. Knepley 
6525ca522641SMatthew G. Knepley   PetscFunctionBegin;
65264f572ea9SToby Isaac   PetscAssertPointer(filename, 2);
65274f572ea9SToby Isaac   if (plexname) PetscAssertPointer(plexname, 3);
65284f572ea9SToby Isaac   PetscAssertPointer(dm, 5);
65299566063dSJacob Faibussowitsch   PetscCall(DMInitializePackage());
65309566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DMPLEX_CreateFromFile, 0, 0, 0, 0));
65319566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
65329566063dSJacob Faibussowitsch   PetscCall(PetscStrlen(filename, &len));
653328b400f6SJacob Faibussowitsch   PetscCheck(len, comm, PETSC_ERR_ARG_WRONG, "Filename must be a valid path");
6534ef3a5affSJacob Faibussowitsch 
65359371c9d4SSatish Balay #define CheckExtension(extension__, is_extension__) \
65369371c9d4SSatish Balay   do { \
6537274aaeaaSJacob Faibussowitsch     PetscAssert(sizeof(extension__), comm, PETSC_ERR_PLIB, "Zero-size extension: %s", extension__); \
6538274aaeaaSJacob Faibussowitsch     /* don't count the null-terminator at the end */ \
6539274aaeaaSJacob Faibussowitsch     const size_t ext_len = sizeof(extension__) - 1; \
6540274aaeaaSJacob Faibussowitsch     if (len < ext_len) { \
6541ef3a5affSJacob Faibussowitsch       is_extension__ = PETSC_FALSE; \
6542ef3a5affSJacob Faibussowitsch     } else { \
6543274aaeaaSJacob Faibussowitsch       PetscCall(PetscStrncmp(filename + len - ext_len, extension__, ext_len, &is_extension__)); \
6544ef3a5affSJacob Faibussowitsch     } \
6545ef3a5affSJacob Faibussowitsch   } while (0)
6546ef3a5affSJacob Faibussowitsch 
6547ef3a5affSJacob Faibussowitsch   CheckExtension(extGmsh, isGmsh);
6548ef3a5affSJacob Faibussowitsch   CheckExtension(extGmsh2, isGmsh2);
6549ef3a5affSJacob Faibussowitsch   CheckExtension(extGmsh4, isGmsh4);
6550ef3a5affSJacob Faibussowitsch   CheckExtension(extCGNS, isCGNS);
6551ef3a5affSJacob Faibussowitsch   CheckExtension(extExodus, isExodus);
6552ef3a5affSJacob Faibussowitsch   if (!isExodus) CheckExtension(extExodus_e, isExodus);
6553ef3a5affSJacob Faibussowitsch   CheckExtension(extGenesis, isGenesis);
6554ef3a5affSJacob Faibussowitsch   CheckExtension(extFluent, isFluent);
6555ef3a5affSJacob Faibussowitsch   CheckExtension(extHDF5, isHDF5);
6556ef3a5affSJacob Faibussowitsch   CheckExtension(extPLY, isPLY);
6557ef3a5affSJacob Faibussowitsch   CheckExtension(extEGADSLite, isEGADSLite);
6558ef3a5affSJacob Faibussowitsch   CheckExtension(extEGADS, isEGADS);
6559ef3a5affSJacob Faibussowitsch   CheckExtension(extIGES, isIGES);
6560ef3a5affSJacob Faibussowitsch   CheckExtension(extSTEP, isSTEP);
6561ef3a5affSJacob Faibussowitsch   CheckExtension(extCV, isCV);
65626f2c871aSStefano Zampini   CheckExtension(extXDMFHDF5, isXDMFHDF5);
6563ef3a5affSJacob Faibussowitsch 
6564ef3a5affSJacob Faibussowitsch #undef CheckExtension
6565ef3a5affSJacob Faibussowitsch 
6566de78e4feSLisandro Dalcin   if (isGmsh || isGmsh2 || isGmsh4) {
65679566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateGmshFromFile(comm, filename, interpolate, dm));
6568ca522641SMatthew G. Knepley   } else if (isCGNS) {
65699566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateCGNSFromFile(comm, filename, interpolate, dm));
657090c68965SMatthew G. Knepley   } else if (isExodus || isGenesis) {
65719566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateExodusFromFile(comm, filename, interpolate, dm));
65722f0bd6dcSMichael Lange   } else if (isFluent) {
65739566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateFluentFromFile(comm, filename, interpolate, dm));
6574cc2f8f65SMatthew G. Knepley   } else if (isHDF5) {
6575cc2f8f65SMatthew G. Knepley     PetscViewer viewer;
6576cc2f8f65SMatthew G. Knepley 
657743b242b4SVaclav Hapla     /* PETSC_VIEWER_HDF5_XDMF is used if the filename ends with .xdmf.h5, or if -dm_plex_create_from_hdf5_xdmf option is present */
65786f2c871aSStefano Zampini     PetscCall(PetscOptionsGetBool(NULL, NULL, "-dm_plex_create_from_hdf5_xdmf", &isXDMFHDF5, NULL));
65799566063dSJacob Faibussowitsch     PetscCall(PetscViewerCreate(comm, &viewer));
65809566063dSJacob Faibussowitsch     PetscCall(PetscViewerSetType(viewer, PETSCVIEWERHDF5));
65819566063dSJacob Faibussowitsch     PetscCall(PetscViewerSetOptionsPrefix(viewer, "dm_plex_create_"));
65829566063dSJacob Faibussowitsch     PetscCall(PetscViewerSetFromOptions(viewer));
65839566063dSJacob Faibussowitsch     PetscCall(PetscViewerFileSetMode(viewer, FILE_MODE_READ));
65849566063dSJacob Faibussowitsch     PetscCall(PetscViewerFileSetName(viewer, filename));
6585cd7e8a5eSksagiyam 
65869566063dSJacob Faibussowitsch     PetscCall(DMCreate(comm, dm));
6587f4f49eeaSPierre Jolivet     PetscCall(PetscObjectSetName((PetscObject)*dm, plexname));
65889566063dSJacob Faibussowitsch     PetscCall(DMSetType(*dm, DMPLEX));
65896f2c871aSStefano Zampini     if (isXDMFHDF5) PetscCall(PetscViewerPushFormat(viewer, PETSC_VIEWER_HDF5_XDMF));
65909566063dSJacob Faibussowitsch     PetscCall(DMLoad(*dm, viewer));
65916f2c871aSStefano Zampini     if (isXDMFHDF5) PetscCall(PetscViewerPopFormat(viewer));
65929566063dSJacob Faibussowitsch     PetscCall(PetscViewerDestroy(&viewer));
65935fd9971aSMatthew G. Knepley 
65945fd9971aSMatthew G. Knepley     if (interpolate) {
65955fd9971aSMatthew G. Knepley       DM idm;
65965fd9971aSMatthew G. Knepley 
65979566063dSJacob Faibussowitsch       PetscCall(DMPlexInterpolate(*dm, &idm));
65989566063dSJacob Faibussowitsch       PetscCall(DMDestroy(dm));
65995fd9971aSMatthew G. Knepley       *dm = idm;
66005fd9971aSMatthew G. Knepley     }
6601f2801cd6SMatthew G. Knepley   } else if (isPLY) {
66029566063dSJacob Faibussowitsch     PetscCall(DMPlexCreatePLYFromFile(comm, filename, interpolate, dm));
6603c1cad2e7SMatthew G. Knepley   } else if (isEGADSLite || isEGADS || isIGES || isSTEP) {
66049566063dSJacob Faibussowitsch     if (isEGADSLite) PetscCall(DMPlexCreateEGADSLiteFromFile(comm, filename, dm));
66059566063dSJacob Faibussowitsch     else PetscCall(DMPlexCreateEGADSFromFile(comm, filename, dm));
66067bee2925SMatthew Knepley     if (!interpolate) {
66077bee2925SMatthew Knepley       DM udm;
66087bee2925SMatthew Knepley 
66099566063dSJacob Faibussowitsch       PetscCall(DMPlexUninterpolate(*dm, &udm));
66109566063dSJacob Faibussowitsch       PetscCall(DMDestroy(dm));
66117bee2925SMatthew Knepley       *dm = udm;
66127bee2925SMatthew Knepley     }
66138ca92349SMatthew G. Knepley   } else if (isCV) {
66149566063dSJacob Faibussowitsch     PetscCall(DMPlexCreateCellVertexFromFile(comm, filename, interpolate, dm));
661598921bdaSJacob Faibussowitsch   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot load file %s: unrecognized extension", filename);
66169566063dSJacob Faibussowitsch   PetscCall(PetscStrlen(plexname, &len));
6617f4f49eeaSPierre Jolivet   if (len) PetscCall(PetscObjectSetName((PetscObject)*dm, plexname));
66189566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DMPLEX_CreateFromFile, 0, 0, 0, 0));
66193ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6620ca522641SMatthew G. Knepley }
662112b8a6daSStefano Zampini 
6622cc4c1da9SBarry Smith /*@
66239f6c5813SMatthew G. Knepley   DMPlexCreateEphemeral - This takes a `DMPlexTransform` and a base `DMPlex` and produces an ephemeral `DM`, meaning one that is created on the fly in response to queries.
66249f6c5813SMatthew G. Knepley 
66250528010dSStefano Zampini   Input Parameters:
66260528010dSStefano Zampini + tr     - The `DMPlexTransform`
66270528010dSStefano Zampini - prefix - An options prefix, or NULL
66289f6c5813SMatthew G. Knepley 
66299f6c5813SMatthew G. Knepley   Output Parameter:
66309f6c5813SMatthew G. Knepley . dm - The `DM`
66319f6c5813SMatthew G. Knepley 
66329f6c5813SMatthew G. Knepley   Level: beginner
66339f6c5813SMatthew G. Knepley 
663420f4b53cSBarry Smith   Notes:
663520f4b53cSBarry Smith   An emphemeral mesh is one that is not stored concretely, as in the default `DMPLEX` implementation, but rather is produced on the fly in response to queries, using information from the transform and the base mesh.
663620f4b53cSBarry Smith 
66379f6c5813SMatthew G. Knepley .seealso: `DMPlexCreateFromFile`, `DMPlexCreateFromDAG()`, `DMPlexCreateFromCellListPetsc()`, `DMPlexCreate()`
66389f6c5813SMatthew G. Knepley @*/
66390528010dSStefano Zampini PetscErrorCode DMPlexCreateEphemeral(DMPlexTransform tr, const char prefix[], DM *dm)
66409f6c5813SMatthew G. Knepley {
66410528010dSStefano Zampini   DM           bdm, bcdm, cdm;
66420528010dSStefano Zampini   Vec          coordinates, coordinatesNew;
66430528010dSStefano Zampini   PetscSection cs;
6644817b2c36SMatthew G. Knepley   PetscInt     cdim, Nl;
66459f6c5813SMatthew G. Knepley 
66469f6c5813SMatthew G. Knepley   PetscFunctionBegin;
66479f6c5813SMatthew G. Knepley   PetscCall(DMCreate(PetscObjectComm((PetscObject)tr), dm));
66489f6c5813SMatthew G. Knepley   PetscCall(DMSetType(*dm, DMPLEX));
66490528010dSStefano Zampini   ((DM_Plex *)(*dm)->data)->interpolated = DMPLEX_INTERPOLATED_FULL;
66500528010dSStefano Zampini   // Handle coordinates
66510528010dSStefano Zampini   PetscCall(DMPlexTransformGetDM(tr, &bdm));
6652817b2c36SMatthew G. Knepley   PetscCall(DMPlexTransformSetDimensions(tr, bdm, *dm));
6653817b2c36SMatthew G. Knepley   PetscCall(DMGetCoordinateDim(*dm, &cdim));
66540528010dSStefano Zampini   PetscCall(DMGetCoordinateDM(bdm, &bcdm));
66550528010dSStefano Zampini   PetscCall(DMGetCoordinateDM(*dm, &cdm));
66560528010dSStefano Zampini   PetscCall(DMCopyDisc(bcdm, cdm));
66570528010dSStefano Zampini   PetscCall(DMGetLocalSection(cdm, &cs));
66580528010dSStefano Zampini   PetscCall(PetscSectionSetNumFields(cs, 1));
66590528010dSStefano Zampini   PetscCall(PetscSectionSetFieldComponents(cs, 0, cdim));
66600528010dSStefano Zampini   PetscCall(DMGetCoordinatesLocal(bdm, &coordinates));
66610528010dSStefano Zampini   PetscCall(VecDuplicate(coordinates, &coordinatesNew));
66620528010dSStefano Zampini   PetscCall(VecCopy(coordinates, coordinatesNew));
66630528010dSStefano Zampini   PetscCall(DMSetCoordinatesLocal(*dm, coordinatesNew));
66640528010dSStefano Zampini   PetscCall(VecDestroy(&coordinatesNew));
66659f6c5813SMatthew G. Knepley 
66669f6c5813SMatthew G. Knepley   PetscCall(PetscObjectReference((PetscObject)tr));
66679f6c5813SMatthew G. Knepley   PetscCall(DMPlexTransformDestroy(&((DM_Plex *)(*dm)->data)->tr));
66689f6c5813SMatthew G. Knepley   ((DM_Plex *)(*dm)->data)->tr = tr;
66690528010dSStefano Zampini   PetscCall(DMPlexDistributeSetDefault(*dm, PETSC_FALSE));
66700528010dSStefano Zampini   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)*dm, prefix));
66710528010dSStefano Zampini   PetscCall(DMSetFromOptions(*dm));
66729f6c5813SMatthew G. Knepley 
66739f6c5813SMatthew G. Knepley   PetscCall(DMGetNumLabels(bdm, &Nl));
66749f6c5813SMatthew G. Knepley   for (PetscInt l = 0; l < Nl; ++l) {
66759f6c5813SMatthew G. Knepley     DMLabel     label, labelNew;
66769f6c5813SMatthew G. Knepley     const char *lname;
66779f6c5813SMatthew G. Knepley     PetscBool   isDepth, isCellType;
66789f6c5813SMatthew G. Knepley 
66799f6c5813SMatthew G. Knepley     PetscCall(DMGetLabelName(bdm, l, &lname));
66809f6c5813SMatthew G. Knepley     PetscCall(PetscStrcmp(lname, "depth", &isDepth));
66819f6c5813SMatthew G. Knepley     if (isDepth) continue;
66829f6c5813SMatthew G. Knepley     PetscCall(PetscStrcmp(lname, "celltype", &isCellType));
66839f6c5813SMatthew G. Knepley     if (isCellType) continue;
66849f6c5813SMatthew G. Knepley     PetscCall(DMCreateLabel(*dm, lname));
66859f6c5813SMatthew G. Knepley     PetscCall(DMGetLabel(bdm, lname, &label));
66869f6c5813SMatthew G. Knepley     PetscCall(DMGetLabel(*dm, lname, &labelNew));
66879f6c5813SMatthew G. Knepley     PetscCall(DMLabelSetType(labelNew, DMLABELEPHEMERAL));
66889f6c5813SMatthew G. Knepley     PetscCall(DMLabelEphemeralSetLabel(labelNew, label));
66899f6c5813SMatthew G. Knepley     PetscCall(DMLabelEphemeralSetTransform(labelNew, tr));
66909f6c5813SMatthew G. Knepley     PetscCall(DMLabelSetUp(labelNew));
66919f6c5813SMatthew G. Knepley   }
66923ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
66939f6c5813SMatthew G. Knepley }
6694