1552f7358SJed Brown #define PETSCDM_DLL 2af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h> /*I "petscdmplex.h" I*/ 3e8f14785SLisandro Dalcin #include <petsc/private/hashseti.h> /*I "petscdmplex.h" I*/ 40c312b8eSJed Brown #include <petscsf.h> 54663dae6SJed Brown #include <petscdmplextransform.h> 6b7f5c055SJed Brown #include <petsc/private/kernels/blockmatmult.h> 7b7f5c055SJed Brown #include <petsc/private/kernels/blockinvert.h> 8552f7358SJed Brown 9b09969d6SVaclav Hapla PetscLogEvent DMPLEX_CreateFromFile, DMPLEX_BuildFromCellList, DMPLEX_BuildCoordinatesFromCellList; 1058cd63d5SVaclav Hapla 119318fe57SMatthew G. Knepley /* External function declarations here */ 129318fe57SMatthew G. Knepley static PetscErrorCode DMInitialize_Plex(DM dm); 139318fe57SMatthew G. Knepley 14e600fa54SMatthew G. Knepley /* This copies internal things in the Plex structure that we generally want when making a new, related Plex */ 155de52c6dSVaclav Hapla PetscErrorCode DMPlexCopy_Internal(DM dmin, PetscBool copyPeriodicity, PetscBool copyOverlap, DM dmout) 16e600fa54SMatthew G. Knepley { 17e600fa54SMatthew G. Knepley const DMBoundaryType *bd; 18e600fa54SMatthew G. Knepley const PetscReal *maxCell, *L; 19e600fa54SMatthew G. Knepley PetscBool isper, dist; 20e600fa54SMatthew G. Knepley 21e600fa54SMatthew G. Knepley PetscFunctionBegin; 22e600fa54SMatthew G. Knepley if (copyPeriodicity) { 239566063dSJacob Faibussowitsch PetscCall(DMGetPeriodicity(dmin, &isper, &maxCell, &L, &bd)); 249566063dSJacob Faibussowitsch PetscCall(DMSetPeriodicity(dmout, isper, maxCell, L, bd)); 25e600fa54SMatthew G. Knepley } 269566063dSJacob Faibussowitsch PetscCall(DMPlexDistributeGetDefault(dmin, &dist)); 279566063dSJacob Faibussowitsch PetscCall(DMPlexDistributeSetDefault(dmout, dist)); 28e600fa54SMatthew G. Knepley ((DM_Plex *) dmout->data)->useHashLocation = ((DM_Plex *) dmin->data)->useHashLocation; 295de52c6dSVaclav Hapla if (copyOverlap) { 305de52c6dSVaclav Hapla ((DM_Plex *) dmout->data)->overlap = ((DM_Plex *) dmin->data)->overlap; 315de52c6dSVaclav Hapla } 32e600fa54SMatthew G. Knepley PetscFunctionReturn(0); 33e600fa54SMatthew G. Knepley } 34e600fa54SMatthew G. Knepley 359318fe57SMatthew G. Knepley /* Replace dm with the contents of ndm, and then destroy ndm 369318fe57SMatthew G. Knepley - Share the DM_Plex structure 379318fe57SMatthew G. Knepley - Share the coordinates 389318fe57SMatthew G. Knepley - Share the SF 399318fe57SMatthew G. Knepley */ 409318fe57SMatthew G. Knepley static PetscErrorCode DMPlexReplace_Static(DM dm, DM *ndm) 419318fe57SMatthew G. Knepley { 429318fe57SMatthew G. Knepley PetscSF sf; 439318fe57SMatthew G. Knepley DM dmNew = *ndm, coordDM, coarseDM; 449318fe57SMatthew G. Knepley Vec coords; 459318fe57SMatthew G. Knepley PetscBool isper; 469318fe57SMatthew G. Knepley const PetscReal *maxCell, *L; 479318fe57SMatthew G. Knepley const DMBoundaryType *bd; 489318fe57SMatthew G. Knepley PetscInt dim, cdim; 499318fe57SMatthew G. Knepley 509318fe57SMatthew G. Knepley PetscFunctionBegin; 519318fe57SMatthew G. Knepley if (dm == dmNew) { 529566063dSJacob Faibussowitsch PetscCall(DMDestroy(ndm)); 539318fe57SMatthew G. Knepley PetscFunctionReturn(0); 549318fe57SMatthew G. Knepley } 559318fe57SMatthew G. Knepley dm->setupcalled = dmNew->setupcalled; 569566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dmNew, &dim)); 579566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 589566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDim(dmNew, &cdim)); 599566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, cdim)); 609566063dSJacob Faibussowitsch PetscCall(DMGetPointSF(dmNew, &sf)); 619566063dSJacob Faibussowitsch PetscCall(DMSetPointSF(dm, sf)); 629566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dmNew, &coordDM)); 639566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dmNew, &coords)); 649566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDM(dm, coordDM)); 659566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coords)); 669318fe57SMatthew G. Knepley /* Do not want to create the coordinate field if it does not already exist, so do not call DMGetCoordinateField() */ 679566063dSJacob Faibussowitsch PetscCall(DMFieldDestroy(&dm->coordinateField)); 689318fe57SMatthew G. Knepley dm->coordinateField = dmNew->coordinateField; 6961a622f3SMatthew G. Knepley ((DM_Plex *) dmNew->data)->coordFunc = ((DM_Plex *) dm->data)->coordFunc; 709566063dSJacob Faibussowitsch PetscCall(DMGetPeriodicity(dmNew, &isper, &maxCell, &L, &bd)); 719566063dSJacob Faibussowitsch PetscCall(DMSetPeriodicity(dm, isper, maxCell, L, bd)); 729566063dSJacob Faibussowitsch PetscCall(DMDestroy_Plex(dm)); 739566063dSJacob Faibussowitsch PetscCall(DMInitialize_Plex(dm)); 749318fe57SMatthew G. Knepley dm->data = dmNew->data; 759318fe57SMatthew G. Knepley ((DM_Plex *) dmNew->data)->refct++; 769566063dSJacob Faibussowitsch PetscCall(DMDestroyLabelLinkList_Internal(dm)); 779566063dSJacob Faibussowitsch PetscCall(DMCopyLabels(dmNew, dm, PETSC_OWN_POINTER, PETSC_TRUE, DM_COPY_LABELS_FAIL)); 789566063dSJacob Faibussowitsch PetscCall(DMGetCoarseDM(dmNew,&coarseDM)); 799566063dSJacob Faibussowitsch PetscCall(DMSetCoarseDM(dm,coarseDM)); 809566063dSJacob Faibussowitsch PetscCall(DMDestroy(ndm)); 819318fe57SMatthew G. Knepley PetscFunctionReturn(0); 829318fe57SMatthew G. Knepley } 839318fe57SMatthew G. Knepley 849318fe57SMatthew G. Knepley /* Swap dm with the contents of dmNew 859318fe57SMatthew G. Knepley - Swap the DM_Plex structure 869318fe57SMatthew G. Knepley - Swap the coordinates 879318fe57SMatthew G. Knepley - Swap the point PetscSF 889318fe57SMatthew G. Knepley */ 899318fe57SMatthew G. Knepley static PetscErrorCode DMPlexSwap_Static(DM dmA, DM dmB) 909318fe57SMatthew G. Knepley { 919318fe57SMatthew G. Knepley DM coordDMA, coordDMB; 929318fe57SMatthew G. Knepley Vec coordsA, coordsB; 939318fe57SMatthew G. Knepley PetscSF sfA, sfB; 949318fe57SMatthew G. Knepley DMField fieldTmp; 959318fe57SMatthew G. Knepley void *tmp; 969318fe57SMatthew G. Knepley DMLabelLink listTmp; 979318fe57SMatthew G. Knepley DMLabel depthTmp; 989318fe57SMatthew G. Knepley PetscInt tmpI; 999318fe57SMatthew G. Knepley 1009318fe57SMatthew G. Knepley PetscFunctionBegin; 1019318fe57SMatthew G. Knepley if (dmA == dmB) PetscFunctionReturn(0); 1029566063dSJacob Faibussowitsch PetscCall(DMGetPointSF(dmA, &sfA)); 1039566063dSJacob Faibussowitsch PetscCall(DMGetPointSF(dmB, &sfB)); 1049566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject) sfA)); 1059566063dSJacob Faibussowitsch PetscCall(DMSetPointSF(dmA, sfB)); 1069566063dSJacob Faibussowitsch PetscCall(DMSetPointSF(dmB, sfA)); 1079566063dSJacob Faibussowitsch PetscCall(PetscObjectDereference((PetscObject) sfA)); 1089318fe57SMatthew G. Knepley 1099566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dmA, &coordDMA)); 1109566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dmB, &coordDMB)); 1119566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject) coordDMA)); 1129566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDM(dmA, coordDMB)); 1139566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDM(dmB, coordDMA)); 1149566063dSJacob Faibussowitsch PetscCall(PetscObjectDereference((PetscObject) coordDMA)); 1159318fe57SMatthew G. Knepley 1169566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dmA, &coordsA)); 1179566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dmB, &coordsB)); 1189566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject) coordsA)); 1199566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dmA, coordsB)); 1209566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dmB, coordsA)); 1219566063dSJacob Faibussowitsch PetscCall(PetscObjectDereference((PetscObject) coordsA)); 1229318fe57SMatthew G. Knepley 1239318fe57SMatthew G. Knepley fieldTmp = dmA->coordinateField; 1249318fe57SMatthew G. Knepley dmA->coordinateField = dmB->coordinateField; 1259318fe57SMatthew G. Knepley dmB->coordinateField = fieldTmp; 1269318fe57SMatthew G. Knepley tmp = dmA->data; 1279318fe57SMatthew G. Knepley dmA->data = dmB->data; 1289318fe57SMatthew G. Knepley dmB->data = tmp; 1299318fe57SMatthew G. Knepley listTmp = dmA->labels; 1309318fe57SMatthew G. Knepley dmA->labels = dmB->labels; 1319318fe57SMatthew G. Knepley dmB->labels = listTmp; 1329318fe57SMatthew G. Knepley depthTmp = dmA->depthLabel; 1339318fe57SMatthew G. Knepley dmA->depthLabel = dmB->depthLabel; 1349318fe57SMatthew G. Knepley dmB->depthLabel = depthTmp; 1359318fe57SMatthew G. Knepley depthTmp = dmA->celltypeLabel; 1369318fe57SMatthew G. Knepley dmA->celltypeLabel = dmB->celltypeLabel; 1379318fe57SMatthew G. Knepley dmB->celltypeLabel = depthTmp; 1389318fe57SMatthew G. Knepley tmpI = dmA->levelup; 1399318fe57SMatthew G. Knepley dmA->levelup = dmB->levelup; 1409318fe57SMatthew G. Knepley dmB->levelup = tmpI; 1419318fe57SMatthew G. Knepley PetscFunctionReturn(0); 1429318fe57SMatthew G. Knepley } 1439318fe57SMatthew G. Knepley 1449318fe57SMatthew G. Knepley static PetscErrorCode DMPlexInterpolateInPlace_Internal(DM dm) 1459318fe57SMatthew G. Knepley { 1469318fe57SMatthew G. Knepley DM idm; 1479318fe57SMatthew G. Knepley 1489318fe57SMatthew G. Knepley PetscFunctionBegin; 1499566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(dm, &idm)); 1509566063dSJacob Faibussowitsch PetscCall(DMPlexCopyCoordinates(dm, idm)); 1519566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &idm)); 1529318fe57SMatthew G. Knepley PetscFunctionReturn(0); 1539318fe57SMatthew G. Knepley } 1549318fe57SMatthew G. Knepley 1559318fe57SMatthew G. Knepley /*@C 1569318fe57SMatthew G. Knepley DMPlexCreateCoordinateSpace - Creates a finite element space for the coordinates 1579318fe57SMatthew G. Knepley 1589318fe57SMatthew G. Knepley Collective 1599318fe57SMatthew G. Knepley 1609318fe57SMatthew G. Knepley Input Parameters: 1619318fe57SMatthew G. Knepley + DM - The DM 1624f9ab2b4SJed Brown . degree - The degree of the finite element or PETSC_DECIDE 1639318fe57SMatthew G. Knepley - coordFunc - An optional function to map new points from refinement to the surface 1649318fe57SMatthew G. Knepley 1659318fe57SMatthew G. Knepley Level: advanced 1669318fe57SMatthew G. Knepley 167db781477SPatrick Sanan .seealso: `PetscFECreateLagrange()`, `DMGetCoordinateDM()` 1689318fe57SMatthew G. Knepley @*/ 1699318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateCoordinateSpace(DM dm, PetscInt degree, PetscPointFunc coordFunc) 1709318fe57SMatthew G. Knepley { 1719318fe57SMatthew G. Knepley DM_Plex *mesh = (DM_Plex *) dm->data; 1729318fe57SMatthew G. Knepley DM cdm; 1739318fe57SMatthew G. Knepley PetscDS cds; 1749318fe57SMatthew G. Knepley PetscFE fe; 1759318fe57SMatthew G. Knepley PetscClassId id; 1769318fe57SMatthew G. Knepley 1779318fe57SMatthew G. Knepley PetscFunctionBegin; 1789566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 1799566063dSJacob Faibussowitsch PetscCall(DMGetDS(cdm, &cds)); 1809566063dSJacob Faibussowitsch PetscCall(PetscDSGetDiscretization(cds, 0, (PetscObject *) &fe)); 1819566063dSJacob Faibussowitsch PetscCall(PetscObjectGetClassId((PetscObject) fe, &id)); 1829318fe57SMatthew G. Knepley if (id != PETSCFE_CLASSID) { 1839318fe57SMatthew G. Knepley PetscBool simplex; 1849318fe57SMatthew G. Knepley PetscInt dim, dE, qorder; 1859318fe57SMatthew G. Knepley 1869566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &dim)); 1879566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDim(dm, &dE)); 1889318fe57SMatthew G. Knepley qorder = degree; 189d0609cedSBarry Smith PetscObjectOptionsBegin((PetscObject) cdm); 1909566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-coord_dm_default_quadrature_order", "Quadrature order is one less than quadrature points per edge", "DMPlexCreateCoordinateSpace", qorder, &qorder, NULL, 0)); 191d0609cedSBarry Smith PetscOptionsEnd(); 1924f9ab2b4SJed Brown if (degree == PETSC_DECIDE) fe = NULL; 1934f9ab2b4SJed Brown else { 1948c4475acSStefano Zampini PetscCall(DMPlexIsSimplex(dm, &simplex)); 1959566063dSJacob Faibussowitsch PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, dim, dE, simplex, degree, qorder, &fe)); 1964f9ab2b4SJed Brown } 1979566063dSJacob Faibussowitsch PetscCall(DMProjectCoordinates(dm, fe)); 1989566063dSJacob Faibussowitsch PetscCall(PetscFEDestroy(&fe)); 1999318fe57SMatthew G. Knepley } 2009318fe57SMatthew G. Knepley mesh->coordFunc = coordFunc; 2019318fe57SMatthew G. Knepley PetscFunctionReturn(0); 2029318fe57SMatthew G. Knepley } 2039318fe57SMatthew G. Knepley 2041df5d5c5SMatthew G. Knepley /*@ 2051df5d5c5SMatthew G. Knepley DMPlexCreateDoublet - Creates a mesh of two cells of the specified type, optionally with later refinement. 2061df5d5c5SMatthew G. Knepley 207d083f849SBarry Smith Collective 2081df5d5c5SMatthew G. Knepley 2091df5d5c5SMatthew G. Knepley Input Parameters: 2101df5d5c5SMatthew G. Knepley + comm - The communicator for the DM object 2111df5d5c5SMatthew G. Knepley . dim - The spatial dimension 2121df5d5c5SMatthew G. Knepley . simplex - Flag for simplicial cells, otherwise they are tensor product cells 2131df5d5c5SMatthew G. Knepley . interpolate - Flag to create intermediate mesh pieces (edges, faces) 2141df5d5c5SMatthew G. Knepley - refinementLimit - A nonzero number indicates the largest admissible volume for a refined cell 2151df5d5c5SMatthew G. Knepley 2161df5d5c5SMatthew G. Knepley Output Parameter: 2171df5d5c5SMatthew G. Knepley . dm - The DM object 2181df5d5c5SMatthew G. Knepley 2191df5d5c5SMatthew G. Knepley Level: beginner 2201df5d5c5SMatthew G. Knepley 221db781477SPatrick Sanan .seealso: `DMSetType()`, `DMCreate()` 2221df5d5c5SMatthew G. Knepley @*/ 2230fdc7489SMatthew Knepley PetscErrorCode DMPlexCreateDoublet(MPI_Comm comm, PetscInt dim, PetscBool simplex, PetscBool interpolate, PetscReal refinementLimit, DM *newdm) 2241df5d5c5SMatthew G. Knepley { 2251df5d5c5SMatthew G. Knepley DM dm; 2261df5d5c5SMatthew G. Knepley PetscMPIInt rank; 2271df5d5c5SMatthew G. Knepley 2281df5d5c5SMatthew G. Knepley PetscFunctionBegin; 2299566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, &dm)); 2309566063dSJacob Faibussowitsch PetscCall(DMSetType(dm, DMPLEX)); 2319566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 2329566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(comm, &rank)); 233ce78fa2fSMatthew G. Knepley switch (dim) { 234ce78fa2fSMatthew G. Knepley case 2: 2359566063dSJacob Faibussowitsch if (simplex) PetscCall(PetscObjectSetName((PetscObject) dm, "triangular")); 2369566063dSJacob Faibussowitsch else PetscCall(PetscObjectSetName((PetscObject) dm, "quadrilateral")); 237ce78fa2fSMatthew G. Knepley break; 238ce78fa2fSMatthew G. Knepley case 3: 2399566063dSJacob Faibussowitsch if (simplex) PetscCall(PetscObjectSetName((PetscObject) dm, "tetrahedral")); 2409566063dSJacob Faibussowitsch else PetscCall(PetscObjectSetName((PetscObject) dm, "hexahedral")); 241ce78fa2fSMatthew G. Knepley break; 242ce78fa2fSMatthew G. Knepley default: 24363a3b9bcSJacob Faibussowitsch SETERRQ(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %" PetscInt_FMT, dim); 244ce78fa2fSMatthew G. Knepley } 2451df5d5c5SMatthew G. Knepley if (rank) { 2461df5d5c5SMatthew G. Knepley PetscInt numPoints[2] = {0, 0}; 2479566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, NULL, NULL, NULL, NULL)); 2481df5d5c5SMatthew G. Knepley } else { 2491df5d5c5SMatthew G. Knepley switch (dim) { 2501df5d5c5SMatthew G. Knepley case 2: 2511df5d5c5SMatthew G. Knepley if (simplex) { 2521df5d5c5SMatthew G. Knepley PetscInt numPoints[2] = {4, 2}; 2531df5d5c5SMatthew G. Knepley PetscInt coneSize[6] = {3, 3, 0, 0, 0, 0}; 2541df5d5c5SMatthew G. Knepley PetscInt cones[6] = {2, 3, 4, 5, 4, 3}; 2551df5d5c5SMatthew G. Knepley PetscInt coneOrientations[6] = {0, 0, 0, 0, 0, 0}; 2561df5d5c5SMatthew G. Knepley PetscScalar vertexCoords[8] = {-0.5, 0.5, 0.0, 0.0, 0.0, 1.0, 0.5, 0.5}; 2571df5d5c5SMatthew G. Knepley 2589566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 2591df5d5c5SMatthew G. Knepley } else { 2601df5d5c5SMatthew G. Knepley PetscInt numPoints[2] = {6, 2}; 2611df5d5c5SMatthew G. Knepley PetscInt coneSize[8] = {4, 4, 0, 0, 0, 0, 0, 0}; 2621df5d5c5SMatthew G. Knepley PetscInt cones[8] = {2, 3, 4, 5, 3, 6, 7, 4}; 2631df5d5c5SMatthew G. Knepley PetscInt coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0}; 2641df5d5c5SMatthew 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}; 2651df5d5c5SMatthew G. Knepley 2669566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 2671df5d5c5SMatthew G. Knepley } 2681df5d5c5SMatthew G. Knepley break; 2691df5d5c5SMatthew G. Knepley case 3: 2701df5d5c5SMatthew G. Knepley if (simplex) { 2711df5d5c5SMatthew G. Knepley PetscInt numPoints[2] = {5, 2}; 2721df5d5c5SMatthew G. Knepley PetscInt coneSize[7] = {4, 4, 0, 0, 0, 0, 0}; 2731df5d5c5SMatthew G. Knepley PetscInt cones[8] = {4, 3, 5, 2, 5, 3, 4, 6}; 2741df5d5c5SMatthew G. Knepley PetscInt coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0}; 2751df5d5c5SMatthew 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}; 2761df5d5c5SMatthew G. Knepley 2779566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 2781df5d5c5SMatthew G. Knepley } else { 2791df5d5c5SMatthew G. Knepley PetscInt numPoints[2] = {12, 2}; 2801df5d5c5SMatthew G. Knepley PetscInt coneSize[14] = {8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; 2811df5d5c5SMatthew G. Knepley PetscInt cones[16] = {2, 3, 4, 5, 6, 7, 8, 9, 5, 4, 10, 11, 7, 12, 13, 8}; 2821df5d5c5SMatthew G. Knepley PetscInt coneOrientations[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; 2831df5d5c5SMatthew G. Knepley PetscScalar vertexCoords[36] = {-1.0, -0.5, -0.5, -1.0, 0.5, -0.5, 0.0, 0.5, -0.5, 0.0, -0.5, -0.5, 2841df5d5c5SMatthew G. Knepley -1.0, -0.5, 0.5, 0.0, -0.5, 0.5, 0.0, 0.5, 0.5, -1.0, 0.5, 0.5, 2851df5d5c5SMatthew G. Knepley 1.0, 0.5, -0.5, 1.0, -0.5, -0.5, 1.0, -0.5, 0.5, 1.0, 0.5, 0.5}; 2861df5d5c5SMatthew G. Knepley 2879566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 2881df5d5c5SMatthew G. Knepley } 2891df5d5c5SMatthew G. Knepley break; 2901df5d5c5SMatthew G. Knepley default: 29163a3b9bcSJacob Faibussowitsch SETERRQ(comm, PETSC_ERR_ARG_OUTOFRANGE, "Cannot make meshes for dimension %" PetscInt_FMT, dim); 2921df5d5c5SMatthew G. Knepley } 2931df5d5c5SMatthew G. Knepley } 2941df5d5c5SMatthew G. Knepley *newdm = dm; 2951df5d5c5SMatthew G. Knepley if (refinementLimit > 0.0) { 2961df5d5c5SMatthew G. Knepley DM rdm; 2971df5d5c5SMatthew G. Knepley const char *name; 2981df5d5c5SMatthew G. Knepley 2999566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(*newdm, PETSC_FALSE)); 3009566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementLimit(*newdm, refinementLimit)); 3019566063dSJacob Faibussowitsch PetscCall(DMRefine(*newdm, comm, &rdm)); 3029566063dSJacob Faibussowitsch PetscCall(PetscObjectGetName((PetscObject) *newdm, &name)); 3039566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) rdm, name)); 3049566063dSJacob Faibussowitsch PetscCall(DMDestroy(newdm)); 3051df5d5c5SMatthew G. Knepley *newdm = rdm; 3061df5d5c5SMatthew G. Knepley } 3071df5d5c5SMatthew G. Knepley if (interpolate) { 3085fd9971aSMatthew G. Knepley DM idm; 3091df5d5c5SMatthew G. Knepley 3109566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(*newdm, &idm)); 3119566063dSJacob Faibussowitsch PetscCall(DMDestroy(newdm)); 3121df5d5c5SMatthew G. Knepley *newdm = idm; 3131df5d5c5SMatthew G. Knepley } 3141df5d5c5SMatthew G. Knepley PetscFunctionReturn(0); 3151df5d5c5SMatthew G. Knepley } 3161df5d5c5SMatthew G. Knepley 3179318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_1D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[]) 3189318fe57SMatthew G. Knepley { 3199318fe57SMatthew G. Knepley const PetscInt numVertices = 2; 3209318fe57SMatthew G. Knepley PetscInt markerRight = 1; 3219318fe57SMatthew G. Knepley PetscInt markerLeft = 1; 3229318fe57SMatthew G. Knepley PetscBool markerSeparate = PETSC_FALSE; 3239318fe57SMatthew G. Knepley Vec coordinates; 3249318fe57SMatthew G. Knepley PetscSection coordSection; 3259318fe57SMatthew G. Knepley PetscScalar *coords; 3269318fe57SMatthew G. Knepley PetscInt coordSize; 3279318fe57SMatthew G. Knepley PetscMPIInt rank; 3289318fe57SMatthew G. Knepley PetscInt cdim = 1, v; 329552f7358SJed Brown 3309318fe57SMatthew G. Knepley PetscFunctionBegin; 3319566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL)); 3329318fe57SMatthew G. Knepley if (markerSeparate) { 3339318fe57SMatthew G. Knepley markerRight = 2; 3349318fe57SMatthew G. Knepley markerLeft = 1; 3359318fe57SMatthew G. Knepley } 3369566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank)); 337*c5853193SPierre Jolivet if (rank == 0) { 3389566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numVertices)); 3399566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 3409566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", 0, markerLeft)); 3419566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", 1, markerRight)); 3429318fe57SMatthew G. Knepley } 3439566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 3449566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 3459318fe57SMatthew G. Knepley /* Build coordinates */ 3469566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, cdim)); 3479566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 3489566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 3499566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, 0, numVertices)); 3509566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, cdim)); 3519318fe57SMatthew G. Knepley for (v = 0; v < numVertices; ++v) { 3529566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, cdim)); 3539566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, cdim)); 3549318fe57SMatthew G. Knepley } 3559566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 3569566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 3579566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 3589566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 3599566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 3609566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, cdim)); 3619566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 3629566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 3639318fe57SMatthew G. Knepley coords[0] = lower[0]; 3649318fe57SMatthew G. Knepley coords[1] = upper[0]; 3659566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 3669566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 3679566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 3689318fe57SMatthew G. Knepley PetscFunctionReturn(0); 3699318fe57SMatthew G. Knepley } 37026492d91SMatthew G. Knepley 3719318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_2D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[]) 372552f7358SJed Brown { 3731df21d24SMatthew G. Knepley const PetscInt numVertices = (edges[0]+1)*(edges[1]+1); 3741df21d24SMatthew G. Knepley const PetscInt numEdges = edges[0]*(edges[1]+1) + (edges[0]+1)*edges[1]; 375552f7358SJed Brown PetscInt markerTop = 1; 376552f7358SJed Brown PetscInt markerBottom = 1; 377552f7358SJed Brown PetscInt markerRight = 1; 378552f7358SJed Brown PetscInt markerLeft = 1; 379552f7358SJed Brown PetscBool markerSeparate = PETSC_FALSE; 380552f7358SJed Brown Vec coordinates; 381552f7358SJed Brown PetscSection coordSection; 382552f7358SJed Brown PetscScalar *coords; 383552f7358SJed Brown PetscInt coordSize; 384552f7358SJed Brown PetscMPIInt rank; 385552f7358SJed Brown PetscInt v, vx, vy; 386552f7358SJed Brown 387552f7358SJed Brown PetscFunctionBegin; 3889566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL)); 389552f7358SJed Brown if (markerSeparate) { 3901df21d24SMatthew G. Knepley markerTop = 3; 3911df21d24SMatthew G. Knepley markerBottom = 1; 3921df21d24SMatthew G. Knepley markerRight = 2; 3931df21d24SMatthew G. Knepley markerLeft = 4; 394552f7358SJed Brown } 3959566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank)); 396dd400576SPatrick Sanan if (rank == 0) { 397552f7358SJed Brown PetscInt e, ex, ey; 398552f7358SJed Brown 3999566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numEdges+numVertices)); 400552f7358SJed Brown for (e = 0; e < numEdges; ++e) { 4019566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, e, 2)); 402552f7358SJed Brown } 4039566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 404552f7358SJed Brown for (vx = 0; vx <= edges[0]; vx++) { 405552f7358SJed Brown for (ey = 0; ey < edges[1]; ey++) { 406552f7358SJed Brown PetscInt edge = vx*edges[1] + ey + edges[0]*(edges[1]+1); 407552f7358SJed Brown PetscInt vertex = ey*(edges[0]+1) + vx + numEdges; 408da80777bSKarl Rupp PetscInt cone[2]; 409552f7358SJed Brown 410da80777bSKarl Rupp cone[0] = vertex; cone[1] = vertex+edges[0]+1; 4119566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, edge, cone)); 412552f7358SJed Brown if (vx == edges[0]) { 4139566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight)); 4149566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight)); 415552f7358SJed Brown if (ey == edges[1]-1) { 4169566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight)); 4179566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerRight)); 418552f7358SJed Brown } 419552f7358SJed Brown } else if (vx == 0) { 4209566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft)); 4219566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft)); 422552f7358SJed Brown if (ey == edges[1]-1) { 4239566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft)); 4249566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerLeft)); 425552f7358SJed Brown } 426552f7358SJed Brown } 427552f7358SJed Brown } 428552f7358SJed Brown } 429552f7358SJed Brown for (vy = 0; vy <= edges[1]; vy++) { 430552f7358SJed Brown for (ex = 0; ex < edges[0]; ex++) { 431552f7358SJed Brown PetscInt edge = vy*edges[0] + ex; 432552f7358SJed Brown PetscInt vertex = vy*(edges[0]+1) + ex + numEdges; 433da80777bSKarl Rupp PetscInt cone[2]; 434552f7358SJed Brown 435da80777bSKarl Rupp cone[0] = vertex; cone[1] = vertex+1; 4369566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, edge, cone)); 437552f7358SJed Brown if (vy == edges[1]) { 4389566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop)); 4399566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop)); 440552f7358SJed Brown if (ex == edges[0]-1) { 4419566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop)); 4429566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerTop)); 443552f7358SJed Brown } 444552f7358SJed Brown } else if (vy == 0) { 4459566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom)); 4469566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom)); 447552f7358SJed Brown if (ex == edges[0]-1) { 4489566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom)); 4499566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", cone[1], markerBottom)); 450552f7358SJed Brown } 451552f7358SJed Brown } 452552f7358SJed Brown } 453552f7358SJed Brown } 454552f7358SJed Brown } 4559566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 4569566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 457552f7358SJed Brown /* Build coordinates */ 4589566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, 2)); 4599566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 4609566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 4619566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, numEdges, numEdges + numVertices)); 4629566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, 2)); 463552f7358SJed Brown for (v = numEdges; v < numEdges+numVertices; ++v) { 4649566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, 2)); 4659566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, 2)); 466552f7358SJed Brown } 4679566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 4689566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 4699566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 4709566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 4719566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 4729566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, 2)); 4739566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 4749566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 475552f7358SJed Brown for (vy = 0; vy <= edges[1]; ++vy) { 476552f7358SJed Brown for (vx = 0; vx <= edges[0]; ++vx) { 477552f7358SJed Brown coords[(vy*(edges[0]+1)+vx)*2+0] = lower[0] + ((upper[0] - lower[0])/edges[0])*vx; 478552f7358SJed Brown coords[(vy*(edges[0]+1)+vx)*2+1] = lower[1] + ((upper[1] - lower[1])/edges[1])*vy; 479552f7358SJed Brown } 480552f7358SJed Brown } 4819566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 4829566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 4839566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 484552f7358SJed Brown PetscFunctionReturn(0); 485552f7358SJed Brown } 486552f7358SJed Brown 4879318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Tensor_3D_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt faces[]) 488552f7358SJed Brown { 4899e8abbc3SMichael Lange PetscInt vertices[3], numVertices; 4907b59f5a9SMichael Lange PetscInt numFaces = 2*faces[0]*faces[1] + 2*faces[1]*faces[2] + 2*faces[0]*faces[2]; 491552f7358SJed Brown Vec coordinates; 492552f7358SJed Brown PetscSection coordSection; 493552f7358SJed Brown PetscScalar *coords; 494552f7358SJed Brown PetscInt coordSize; 495552f7358SJed Brown PetscMPIInt rank; 496552f7358SJed Brown PetscInt v, vx, vy, vz; 4977b59f5a9SMichael Lange PetscInt voffset, iface=0, cone[4]; 498552f7358SJed Brown 499552f7358SJed Brown PetscFunctionBegin; 5001dca8a05SBarry 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"); 5019566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank)); 5029e8abbc3SMichael Lange vertices[0] = faces[0]+1; vertices[1] = faces[1]+1; vertices[2] = faces[2]+1; 5039e8abbc3SMichael Lange numVertices = vertices[0]*vertices[1]*vertices[2]; 504dd400576SPatrick Sanan if (rank == 0) { 505552f7358SJed Brown PetscInt f; 506552f7358SJed Brown 5079566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numFaces+numVertices)); 508552f7358SJed Brown for (f = 0; f < numFaces; ++f) { 5099566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, f, 4)); 510552f7358SJed Brown } 5119566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 5127b59f5a9SMichael Lange 5137b59f5a9SMichael Lange /* Side 0 (Top) */ 5147b59f5a9SMichael Lange for (vy = 0; vy < faces[1]; vy++) { 5157b59f5a9SMichael Lange for (vx = 0; vx < faces[0]; vx++) { 5167b59f5a9SMichael Lange voffset = numFaces + vertices[0]*vertices[1]*(vertices[2]-1) + vy*vertices[0] + vx; 5177b59f5a9SMichael Lange cone[0] = voffset; cone[1] = voffset+1; cone[2] = voffset+vertices[0]+1; cone[3] = voffset+vertices[0]; 5189566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5199566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5209566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5219566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+1, 1)); 5229566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+0, 1)); 5239566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+1, 1)); 5247b59f5a9SMichael Lange iface++; 525552f7358SJed Brown } 526552f7358SJed Brown } 5277b59f5a9SMichael Lange 5287b59f5a9SMichael Lange /* Side 1 (Bottom) */ 5297b59f5a9SMichael Lange for (vy = 0; vy < faces[1]; vy++) { 5307b59f5a9SMichael Lange for (vx = 0; vx < faces[0]; vx++) { 5317b59f5a9SMichael Lange voffset = numFaces + vy*(faces[0]+1) + vx; 5327b59f5a9SMichael Lange cone[0] = voffset+1; cone[1] = voffset; cone[2] = voffset+vertices[0]; cone[3] = voffset+vertices[0]+1; 5339566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5349566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5359566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5369566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+1, 1)); 5379566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+0, 1)); 5389566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+1, 1)); 5397b59f5a9SMichael Lange iface++; 540552f7358SJed Brown } 541552f7358SJed Brown } 5427b59f5a9SMichael Lange 5437b59f5a9SMichael Lange /* Side 2 (Front) */ 5447b59f5a9SMichael Lange for (vz = 0; vz < faces[2]; vz++) { 5457b59f5a9SMichael Lange for (vx = 0; vx < faces[0]; vx++) { 5467b59f5a9SMichael Lange voffset = numFaces + vz*vertices[0]*vertices[1] + vx; 5477b59f5a9SMichael Lange cone[0] = voffset; cone[1] = voffset+1; cone[2] = voffset+vertices[0]*vertices[1]+1; cone[3] = voffset+vertices[0]*vertices[1]; 5489566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5499566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5509566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5519566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+1, 1)); 5529566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+0, 1)); 5539566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+1, 1)); 5547b59f5a9SMichael Lange iface++; 555552f7358SJed Brown } 5567b59f5a9SMichael Lange } 5577b59f5a9SMichael Lange 5587b59f5a9SMichael Lange /* Side 3 (Back) */ 5597b59f5a9SMichael Lange for (vz = 0; vz < faces[2]; vz++) { 5607b59f5a9SMichael Lange for (vx = 0; vx < faces[0]; vx++) { 5617b59f5a9SMichael Lange voffset = numFaces + vz*vertices[0]*vertices[1] + vertices[0]*(vertices[1]-1) + vx; 5627b59f5a9SMichael Lange cone[0] = voffset+vertices[0]*vertices[1]; cone[1] = voffset+vertices[0]*vertices[1]+1; 5637b59f5a9SMichael Lange cone[2] = voffset+1; cone[3] = voffset; 5649566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5659566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5669566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5679566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+1, 1)); 5689566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+0, 1)); 5699566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+1, 1)); 5707b59f5a9SMichael Lange iface++; 5717b59f5a9SMichael Lange } 5727b59f5a9SMichael Lange } 5737b59f5a9SMichael Lange 5747b59f5a9SMichael Lange /* Side 4 (Left) */ 5757b59f5a9SMichael Lange for (vz = 0; vz < faces[2]; vz++) { 5767b59f5a9SMichael Lange for (vy = 0; vy < faces[1]; vy++) { 5777b59f5a9SMichael Lange voffset = numFaces + vz*vertices[0]*vertices[1] + vy*vertices[0]; 5787b59f5a9SMichael Lange cone[0] = voffset; cone[1] = voffset+vertices[0]*vertices[1]; 5797b59f5a9SMichael Lange cone[2] = voffset+vertices[0]*vertices[1]+vertices[0]; cone[3] = voffset+vertices[0]; 5809566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5819566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5829566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5839566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+0, 1)); 5849566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[1]+0, 1)); 5859566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+vertices[0], 1)); 5867b59f5a9SMichael Lange iface++; 5877b59f5a9SMichael Lange } 5887b59f5a9SMichael Lange } 5897b59f5a9SMichael Lange 5907b59f5a9SMichael Lange /* Side 5 (Right) */ 5917b59f5a9SMichael Lange for (vz = 0; vz < faces[2]; vz++) { 5927b59f5a9SMichael Lange for (vy = 0; vy < faces[1]; vy++) { 593aab5bcd8SJed Brown voffset = numFaces + vz*vertices[0]*vertices[1] + vy*vertices[0] + faces[0]; 5947b59f5a9SMichael Lange cone[0] = voffset+vertices[0]*vertices[1]; cone[1] = voffset; 5957b59f5a9SMichael Lange cone[2] = voffset+vertices[0]; cone[3] = voffset+vertices[0]*vertices[1]+vertices[0]; 5969566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, iface, cone)); 5979566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", iface, 1)); 5989566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+0, 1)); 5999566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]+0, 1)); 6009566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+0, 1)); 6019566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", voffset+vertices[0]*vertices[1]+vertices[0], 1)); 6027b59f5a9SMichael Lange iface++; 6037b59f5a9SMichael Lange } 604552f7358SJed Brown } 605552f7358SJed Brown } 6069566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 6079566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 608552f7358SJed Brown /* Build coordinates */ 6099566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, 3)); 6109566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 6119566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 6129566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, numFaces, numFaces + numVertices)); 6139566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, 3)); 614552f7358SJed Brown for (v = numFaces; v < numFaces+numVertices; ++v) { 6159566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, 3)); 6169566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, 3)); 617552f7358SJed Brown } 6189566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 6199566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 6209566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 6219566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 6229566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 6239566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, 3)); 6249566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 6259566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 626552f7358SJed Brown for (vz = 0; vz <= faces[2]; ++vz) { 627552f7358SJed Brown for (vy = 0; vy <= faces[1]; ++vy) { 628552f7358SJed Brown for (vx = 0; vx <= faces[0]; ++vx) { 629552f7358SJed Brown coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+0] = lower[0] + ((upper[0] - lower[0])/faces[0])*vx; 630552f7358SJed Brown coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+1] = lower[1] + ((upper[1] - lower[1])/faces[1])*vy; 631552f7358SJed Brown coords[((vz*(faces[1]+1)+vy)*(faces[0]+1)+vx)*3+2] = lower[2] + ((upper[2] - lower[2])/faces[2])*vz; 632552f7358SJed Brown } 633552f7358SJed Brown } 634552f7358SJed Brown } 6359566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 6369566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 6379566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 638552f7358SJed Brown PetscFunctionReturn(0); 639552f7358SJed Brown } 640552f7358SJed Brown 6419318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxSurfaceMesh_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], PetscBool interpolate) 6429318fe57SMatthew G. Knepley { 6439318fe57SMatthew G. Knepley PetscFunctionBegin; 6449318fe57SMatthew G. Knepley PetscValidLogicalCollectiveInt(dm, dim, 2); 6459566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim-1)); 6469566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, dim)); 6479318fe57SMatthew G. Knepley switch (dim) { 6489566063dSJacob Faibussowitsch case 1: PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_1D_Internal(dm, lower, upper, faces));break; 6499566063dSJacob Faibussowitsch case 2: PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_2D_Internal(dm, lower, upper, faces));break; 6509566063dSJacob Faibussowitsch case 3: PetscCall(DMPlexCreateBoxSurfaceMesh_Tensor_3D_Internal(dm, lower, upper, faces));break; 65163a3b9bcSJacob Faibussowitsch default: SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Dimension not supported: %" PetscInt_FMT, dim); 6529318fe57SMatthew G. Knepley } 6539566063dSJacob Faibussowitsch if (interpolate) PetscCall(DMPlexInterpolateInPlace_Internal(dm)); 6549318fe57SMatthew G. Knepley PetscFunctionReturn(0); 6559318fe57SMatthew G. Knepley } 6569318fe57SMatthew G. Knepley 6579318fe57SMatthew G. Knepley /*@C 6589318fe57SMatthew G. Knepley DMPlexCreateBoxSurfaceMesh - Creates a mesh on the surface of the tensor product of unit intervals (box) using tensor cells (hexahedra). 6599318fe57SMatthew G. Knepley 6609318fe57SMatthew G. Knepley Collective 6619318fe57SMatthew G. Knepley 6629318fe57SMatthew G. Knepley Input Parameters: 6639318fe57SMatthew G. Knepley + comm - The communicator for the DM object 6649318fe57SMatthew G. Knepley . dim - The spatial dimension of the box, so the resulting mesh is has dimension dim-1 6659318fe57SMatthew G. Knepley . faces - Number of faces per dimension, or NULL for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D 6669318fe57SMatthew G. Knepley . lower - The lower left corner, or NULL for (0, 0, 0) 6679318fe57SMatthew G. Knepley . upper - The upper right corner, or NULL for (1, 1, 1) 6689318fe57SMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces) 6699318fe57SMatthew G. Knepley 6709318fe57SMatthew G. Knepley Output Parameter: 6719318fe57SMatthew G. Knepley . dm - The DM object 6729318fe57SMatthew G. Knepley 6739318fe57SMatthew G. Knepley Level: beginner 6749318fe57SMatthew G. Knepley 675db781477SPatrick Sanan .seealso: `DMSetFromOptions()`, `DMPlexCreateBoxMesh()`, `DMPlexCreateFromFile()`, `DMSetType()`, `DMCreate()` 6769318fe57SMatthew G. Knepley @*/ 6779318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateBoxSurfaceMesh(MPI_Comm comm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], PetscBool interpolate, DM *dm) 6789318fe57SMatthew G. Knepley { 6799318fe57SMatthew G. Knepley PetscInt fac[3] = {1, 1, 1}; 6809318fe57SMatthew G. Knepley PetscReal low[3] = {0, 0, 0}; 6819318fe57SMatthew G. Knepley PetscReal upp[3] = {1, 1, 1}; 6829318fe57SMatthew G. Knepley 6839318fe57SMatthew G. Knepley PetscFunctionBegin; 6849566063dSJacob Faibussowitsch PetscCall(DMCreate(comm,dm)); 6859566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm,DMPLEX)); 6869566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(*dm, dim, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, interpolate)); 6879318fe57SMatthew G. Knepley PetscFunctionReturn(0); 6889318fe57SMatthew G. Knepley } 6899318fe57SMatthew G. Knepley 6909318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateLineMesh_Internal(DM dm,PetscInt segments,PetscReal lower,PetscReal upper,DMBoundaryType bd) 691fdbf62faSLisandro Dalcin { 692fdbf62faSLisandro Dalcin PetscInt i,fStart,fEnd,numCells = 0,numVerts = 0; 693fdbf62faSLisandro Dalcin PetscInt numPoints[2],*coneSize,*cones,*coneOrientations; 694fdbf62faSLisandro Dalcin PetscScalar *vertexCoords; 695fdbf62faSLisandro Dalcin PetscReal L,maxCell; 696fdbf62faSLisandro Dalcin PetscBool markerSeparate = PETSC_FALSE; 697fdbf62faSLisandro Dalcin PetscInt markerLeft = 1, faceMarkerLeft = 1; 698fdbf62faSLisandro Dalcin PetscInt markerRight = 1, faceMarkerRight = 2; 699fdbf62faSLisandro Dalcin PetscBool wrap = (bd == DM_BOUNDARY_PERIODIC || bd == DM_BOUNDARY_TWIST) ? PETSC_TRUE : PETSC_FALSE; 700fdbf62faSLisandro Dalcin PetscMPIInt rank; 701fdbf62faSLisandro Dalcin 702fdbf62faSLisandro Dalcin PetscFunctionBegin; 7039318fe57SMatthew G. Knepley PetscValidPointer(dm,1); 704fdbf62faSLisandro Dalcin 7059566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm,1)); 7069566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm,"marker")); 7079566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm,"Face Sets")); 708fdbf62faSLisandro Dalcin 7099566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject) dm),&rank)); 710dd400576SPatrick Sanan if (rank == 0) numCells = segments; 711dd400576SPatrick Sanan if (rank == 0) numVerts = segments + (wrap ? 0 : 1); 712fdbf62faSLisandro Dalcin 713fdbf62faSLisandro Dalcin numPoints[0] = numVerts ; numPoints[1] = numCells; 7149566063dSJacob Faibussowitsch PetscCall(PetscMalloc4(numCells+numVerts,&coneSize,numCells*2,&cones,numCells+numVerts,&coneOrientations,numVerts,&vertexCoords)); 7159566063dSJacob Faibussowitsch PetscCall(PetscArrayzero(coneOrientations,numCells+numVerts)); 716fdbf62faSLisandro Dalcin for (i = 0; i < numCells; ++i) { coneSize[i] = 2; } 717fdbf62faSLisandro Dalcin for (i = 0; i < numVerts; ++i) { coneSize[numCells+i] = 0; } 718fdbf62faSLisandro Dalcin for (i = 0; i < numCells; ++i) { cones[2*i] = numCells + i%numVerts; cones[2*i+1] = numCells + (i+1)%numVerts; } 719fdbf62faSLisandro Dalcin for (i = 0; i < numVerts; ++i) { vertexCoords[i] = lower + (upper-lower)*((PetscReal)i/(PetscReal)numCells); } 7209566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(dm,1,numPoints,coneSize,cones,coneOrientations,vertexCoords)); 7219566063dSJacob Faibussowitsch PetscCall(PetscFree4(coneSize,cones,coneOrientations,vertexCoords)); 722fdbf62faSLisandro Dalcin 7239566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(((PetscObject)dm)->options,((PetscObject)dm)->prefix,"-dm_plex_separate_marker",&markerSeparate,NULL)); 724fdbf62faSLisandro Dalcin if (markerSeparate) { markerLeft = faceMarkerLeft; markerRight = faceMarkerRight;} 725dd400576SPatrick Sanan if (!wrap && rank == 0) { 7269566063dSJacob Faibussowitsch PetscCall(DMPlexGetHeightStratum(dm,1,&fStart,&fEnd)); 7279566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm,"marker",fStart,markerLeft)); 7289566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm,"marker",fEnd-1,markerRight)); 7299566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm,"Face Sets",fStart,faceMarkerLeft)); 7309566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm,"Face Sets",fEnd-1,faceMarkerRight)); 731fdbf62faSLisandro Dalcin } 732fdbf62faSLisandro Dalcin if (wrap) { 733fdbf62faSLisandro Dalcin L = upper - lower; 734fdbf62faSLisandro Dalcin maxCell = (PetscReal)1.1*(L/(PetscReal)PetscMax(1,segments)); 7359566063dSJacob Faibussowitsch PetscCall(DMSetPeriodicity(dm,PETSC_TRUE,&maxCell,&L,&bd)); 736fdbf62faSLisandro Dalcin } 7379566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE)); 738fdbf62faSLisandro Dalcin PetscFunctionReturn(0); 739fdbf62faSLisandro Dalcin } 740fdbf62faSLisandro Dalcin 7419318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxMesh_Simplex_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate) 742d6218766SMatthew G. Knepley { 7439318fe57SMatthew G. Knepley DM boundary, vol; 744768d5fceSMatthew G. Knepley PetscInt i; 745d6218766SMatthew G. Knepley 746d6218766SMatthew G. Knepley PetscFunctionBegin; 7479318fe57SMatthew G. Knepley PetscValidPointer(dm, 1); 74808401ef6SPierre Jolivet for (i = 0; i < dim; ++i) PetscCheck(periodicity[i] == DM_BOUNDARY_NONE,PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Periodicity is not supported for simplex meshes"); 7499566063dSJacob Faibussowitsch PetscCall(DMCreate(PetscObjectComm((PetscObject) dm), &boundary)); 7509566063dSJacob Faibussowitsch PetscCall(DMSetType(boundary, DMPLEX)); 7519566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(boundary, dim, faces, lower, upper, PETSC_FALSE)); 7529566063dSJacob Faibussowitsch PetscCall(DMPlexGenerate(boundary, NULL, interpolate, &vol)); 7535de52c6dSVaclav Hapla PetscCall(DMPlexCopy_Internal(dm, PETSC_TRUE, PETSC_FALSE, vol)); 7549566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &vol)); 7559566063dSJacob Faibussowitsch PetscCall(DMDestroy(&boundary)); 756d6218766SMatthew G. Knepley PetscFunctionReturn(0); 757d6218766SMatthew G. Knepley } 758d6218766SMatthew G. Knepley 7593dfda0b1SToby Isaac static PetscErrorCode DMPlexCreateCubeMesh_Internal(DM dm, const PetscReal lower[], const PetscReal upper[], const PetscInt edges[], DMBoundaryType bdX, DMBoundaryType bdY, DMBoundaryType bdZ) 7603dfda0b1SToby Isaac { 761ed0e4b50SMatthew G. Knepley DMLabel cutLabel = NULL; 762f4eb4c5dSMatthew G. Knepley PetscInt markerTop = 1, faceMarkerTop = 1; 763f4eb4c5dSMatthew G. Knepley PetscInt markerBottom = 1, faceMarkerBottom = 1; 764f4eb4c5dSMatthew G. Knepley PetscInt markerFront = 1, faceMarkerFront = 1; 765f4eb4c5dSMatthew G. Knepley PetscInt markerBack = 1, faceMarkerBack = 1; 766f4eb4c5dSMatthew G. Knepley PetscInt markerRight = 1, faceMarkerRight = 1; 767f4eb4c5dSMatthew G. Knepley PetscInt markerLeft = 1, faceMarkerLeft = 1; 7683dfda0b1SToby Isaac PetscInt dim; 769d8211ee3SMatthew G. Knepley PetscBool markerSeparate = PETSC_FALSE, cutMarker = PETSC_FALSE; 7703dfda0b1SToby Isaac PetscMPIInt rank; 7713dfda0b1SToby Isaac 7723dfda0b1SToby Isaac PetscFunctionBegin; 7739566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm,&dim)); 7749566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank)); 7759566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm,"marker")); 7769566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm,"Face Sets")); 7779566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_periodic_cut", &cutMarker, NULL)); 778d8211ee3SMatthew G. Knepley if (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST || 779d8211ee3SMatthew G. Knepley bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST || 780d8211ee3SMatthew G. Knepley bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST) { 7814c67ea77SStefano Zampini 7829566063dSJacob Faibussowitsch if (cutMarker) {PetscCall(DMCreateLabel(dm, "periodic_cut")); PetscCall(DMGetLabel(dm, "periodic_cut", &cutLabel));} 783d8211ee3SMatthew G. Knepley } 7843dfda0b1SToby Isaac switch (dim) { 7853dfda0b1SToby Isaac case 2: 786f4eb4c5dSMatthew G. Knepley faceMarkerTop = 3; 787f4eb4c5dSMatthew G. Knepley faceMarkerBottom = 1; 788f4eb4c5dSMatthew G. Knepley faceMarkerRight = 2; 789f4eb4c5dSMatthew G. Knepley faceMarkerLeft = 4; 7903dfda0b1SToby Isaac break; 7913dfda0b1SToby Isaac case 3: 792f4eb4c5dSMatthew G. Knepley faceMarkerBottom = 1; 793f4eb4c5dSMatthew G. Knepley faceMarkerTop = 2; 794f4eb4c5dSMatthew G. Knepley faceMarkerFront = 3; 795f4eb4c5dSMatthew G. Knepley faceMarkerBack = 4; 796f4eb4c5dSMatthew G. Knepley faceMarkerRight = 5; 797f4eb4c5dSMatthew G. Knepley faceMarkerLeft = 6; 7983dfda0b1SToby Isaac break; 7993dfda0b1SToby Isaac default: 80063a3b9bcSJacob Faibussowitsch SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Dimension %" PetscInt_FMT " not supported",dim); 8013dfda0b1SToby Isaac } 8029566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(((PetscObject) dm)->options,((PetscObject) dm)->prefix, "-dm_plex_separate_marker", &markerSeparate, NULL)); 803f4eb4c5dSMatthew G. Knepley if (markerSeparate) { 804f4eb4c5dSMatthew G. Knepley markerBottom = faceMarkerBottom; 805f4eb4c5dSMatthew G. Knepley markerTop = faceMarkerTop; 806f4eb4c5dSMatthew G. Knepley markerFront = faceMarkerFront; 807f4eb4c5dSMatthew G. Knepley markerBack = faceMarkerBack; 808f4eb4c5dSMatthew G. Knepley markerRight = faceMarkerRight; 809f4eb4c5dSMatthew G. Knepley markerLeft = faceMarkerLeft; 8103dfda0b1SToby Isaac } 8113dfda0b1SToby Isaac { 812dd400576SPatrick Sanan const PetscInt numXEdges = rank == 0 ? edges[0] : 0; 813dd400576SPatrick Sanan const PetscInt numYEdges = rank == 0 ? edges[1] : 0; 814dd400576SPatrick Sanan const PetscInt numZEdges = rank == 0 ? edges[2] : 0; 815dd400576SPatrick Sanan const PetscInt numXVertices = rank == 0 ? (bdX == DM_BOUNDARY_PERIODIC || bdX == DM_BOUNDARY_TWIST ? edges[0] : edges[0]+1) : 0; 816dd400576SPatrick Sanan const PetscInt numYVertices = rank == 0 ? (bdY == DM_BOUNDARY_PERIODIC || bdY == DM_BOUNDARY_TWIST ? edges[1] : edges[1]+1) : 0; 817dd400576SPatrick Sanan const PetscInt numZVertices = rank == 0 ? (bdZ == DM_BOUNDARY_PERIODIC || bdZ == DM_BOUNDARY_TWIST ? edges[2] : edges[2]+1) : 0; 8183dfda0b1SToby Isaac const PetscInt numCells = numXEdges*numYEdges*numZEdges; 8193dfda0b1SToby Isaac const PetscInt numXFaces = numYEdges*numZEdges; 8203dfda0b1SToby Isaac const PetscInt numYFaces = numXEdges*numZEdges; 8213dfda0b1SToby Isaac const PetscInt numZFaces = numXEdges*numYEdges; 8223dfda0b1SToby Isaac const PetscInt numTotXFaces = numXVertices*numXFaces; 8233dfda0b1SToby Isaac const PetscInt numTotYFaces = numYVertices*numYFaces; 8243dfda0b1SToby Isaac const PetscInt numTotZFaces = numZVertices*numZFaces; 8253dfda0b1SToby Isaac const PetscInt numFaces = numTotXFaces + numTotYFaces + numTotZFaces; 8263dfda0b1SToby Isaac const PetscInt numTotXEdges = numXEdges*numYVertices*numZVertices; 8273dfda0b1SToby Isaac const PetscInt numTotYEdges = numYEdges*numXVertices*numZVertices; 8283dfda0b1SToby Isaac const PetscInt numTotZEdges = numZEdges*numXVertices*numYVertices; 8293dfda0b1SToby Isaac const PetscInt numVertices = numXVertices*numYVertices*numZVertices; 8303dfda0b1SToby Isaac const PetscInt numEdges = numTotXEdges + numTotYEdges + numTotZEdges; 8313dfda0b1SToby Isaac const PetscInt firstVertex = (dim == 2) ? numFaces : numCells; 8323dfda0b1SToby Isaac const PetscInt firstXFace = (dim == 2) ? 0 : numCells + numVertices; 8333dfda0b1SToby Isaac const PetscInt firstYFace = firstXFace + numTotXFaces; 8343dfda0b1SToby Isaac const PetscInt firstZFace = firstYFace + numTotYFaces; 8353dfda0b1SToby Isaac const PetscInt firstXEdge = numCells + numFaces + numVertices; 8363dfda0b1SToby Isaac const PetscInt firstYEdge = firstXEdge + numTotXEdges; 8373dfda0b1SToby Isaac const PetscInt firstZEdge = firstYEdge + numTotYEdges; 8383dfda0b1SToby Isaac Vec coordinates; 8393dfda0b1SToby Isaac PetscSection coordSection; 8403dfda0b1SToby Isaac PetscScalar *coords; 8413dfda0b1SToby Isaac PetscInt coordSize; 8423dfda0b1SToby Isaac PetscInt v, vx, vy, vz; 8433dfda0b1SToby Isaac PetscInt c, f, fx, fy, fz, e, ex, ey, ez; 8443dfda0b1SToby Isaac 8459566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numFaces+numEdges+numVertices)); 8463dfda0b1SToby Isaac for (c = 0; c < numCells; c++) { 8479566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, c, 6)); 8483dfda0b1SToby Isaac } 8493dfda0b1SToby Isaac for (f = firstXFace; f < firstXFace+numFaces; ++f) { 8509566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, f, 4)); 8513dfda0b1SToby Isaac } 8523dfda0b1SToby Isaac for (e = firstXEdge; e < firstXEdge+numEdges; ++e) { 8539566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, e, 2)); 8543dfda0b1SToby Isaac } 8559566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 8563dfda0b1SToby Isaac /* Build cells */ 8573dfda0b1SToby Isaac for (fz = 0; fz < numZEdges; ++fz) { 8583dfda0b1SToby Isaac for (fy = 0; fy < numYEdges; ++fy) { 8593dfda0b1SToby Isaac for (fx = 0; fx < numXEdges; ++fx) { 8603dfda0b1SToby Isaac PetscInt cell = (fz*numYEdges + fy)*numXEdges + fx; 8613dfda0b1SToby Isaac PetscInt faceB = firstZFace + (fy*numXEdges+fx)*numZVertices + fz; 8623dfda0b1SToby Isaac PetscInt faceT = firstZFace + (fy*numXEdges+fx)*numZVertices + ((fz+1)%numZVertices); 8633dfda0b1SToby Isaac PetscInt faceF = firstYFace + (fz*numXEdges+fx)*numYVertices + fy; 8643dfda0b1SToby Isaac PetscInt faceK = firstYFace + (fz*numXEdges+fx)*numYVertices + ((fy+1)%numYVertices); 8653dfda0b1SToby Isaac PetscInt faceL = firstXFace + (fz*numYEdges+fy)*numXVertices + fx; 8663dfda0b1SToby Isaac PetscInt faceR = firstXFace + (fz*numYEdges+fy)*numXVertices + ((fx+1)%numXVertices); 8673dfda0b1SToby Isaac /* B, T, F, K, R, L */ 868b5a892a1SMatthew G. Knepley PetscInt ornt[6] = {-2, 0, 0, -3, 0, -2}; /* ??? */ 86942206facSLisandro Dalcin PetscInt cone[6]; 8703dfda0b1SToby Isaac 8713dfda0b1SToby Isaac /* no boundary twisting in 3D */ 8723dfda0b1SToby Isaac cone[0] = faceB; cone[1] = faceT; cone[2] = faceF; cone[3] = faceK; cone[4] = faceR; cone[5] = faceL; 8739566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, cell, cone)); 8749566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, cell, ornt)); 8759566063dSJacob Faibussowitsch if (bdX != DM_BOUNDARY_NONE && fx == numXEdges-1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2)); 8769566063dSJacob Faibussowitsch if (bdY != DM_BOUNDARY_NONE && fy == numYEdges-1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2)); 8779566063dSJacob Faibussowitsch if (bdZ != DM_BOUNDARY_NONE && fz == numZEdges-1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, cell, 2)); 8783dfda0b1SToby Isaac } 8793dfda0b1SToby Isaac } 8803dfda0b1SToby Isaac } 8813dfda0b1SToby Isaac /* Build x faces */ 8823dfda0b1SToby Isaac for (fz = 0; fz < numZEdges; ++fz) { 8833dfda0b1SToby Isaac for (fy = 0; fy < numYEdges; ++fy) { 8843dfda0b1SToby Isaac for (fx = 0; fx < numXVertices; ++fx) { 8853dfda0b1SToby Isaac PetscInt face = firstXFace + (fz*numYEdges+fy) *numXVertices+fx; 8863dfda0b1SToby Isaac PetscInt edgeL = firstZEdge + (fy *numXVertices+fx)*numZEdges + fz; 8873dfda0b1SToby Isaac PetscInt edgeR = firstZEdge + (((fy+1)%numYVertices)*numXVertices+fx)*numZEdges + fz; 8883dfda0b1SToby Isaac PetscInt edgeB = firstYEdge + (fz *numXVertices+fx)*numYEdges + fy; 8893dfda0b1SToby Isaac PetscInt edgeT = firstYEdge + (((fz+1)%numZVertices)*numXVertices+fx)*numYEdges + fy; 890b5a892a1SMatthew G. Knepley PetscInt ornt[4] = {0, 0, -1, -1}; 8913dfda0b1SToby Isaac PetscInt cone[4]; 8923dfda0b1SToby Isaac 8933dfda0b1SToby Isaac if (dim == 3) { 8943dfda0b1SToby Isaac /* markers */ 8953dfda0b1SToby Isaac if (bdX != DM_BOUNDARY_PERIODIC) { 8963dfda0b1SToby Isaac if (fx == numXVertices-1) { 8979566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerRight)); 8989566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerRight)); 8993dfda0b1SToby Isaac } 9003dfda0b1SToby Isaac else if (fx == 0) { 9019566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerLeft)); 9029566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerLeft)); 9033dfda0b1SToby Isaac } 9043dfda0b1SToby Isaac } 9053dfda0b1SToby Isaac } 9063dfda0b1SToby Isaac cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL; 9079566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, face, cone)); 9089566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, face, ornt)); 9093dfda0b1SToby Isaac } 9103dfda0b1SToby Isaac } 9113dfda0b1SToby Isaac } 9123dfda0b1SToby Isaac /* Build y faces */ 9133dfda0b1SToby Isaac for (fz = 0; fz < numZEdges; ++fz) { 91442206facSLisandro Dalcin for (fx = 0; fx < numXEdges; ++fx) { 9153dfda0b1SToby Isaac for (fy = 0; fy < numYVertices; ++fy) { 9163dfda0b1SToby Isaac PetscInt face = firstYFace + (fz*numXEdges+fx)*numYVertices + fy; 9173dfda0b1SToby Isaac PetscInt edgeL = firstZEdge + (fy*numXVertices+ fx)*numZEdges + fz; 9183dfda0b1SToby Isaac PetscInt edgeR = firstZEdge + (fy*numXVertices+((fx+1)%numXVertices))*numZEdges + fz; 9193dfda0b1SToby Isaac PetscInt edgeB = firstXEdge + (fz *numYVertices+fy)*numXEdges + fx; 9203dfda0b1SToby Isaac PetscInt edgeT = firstXEdge + (((fz+1)%numZVertices)*numYVertices+fy)*numXEdges + fx; 921b5a892a1SMatthew G. Knepley PetscInt ornt[4] = {0, 0, -1, -1}; 9223dfda0b1SToby Isaac PetscInt cone[4]; 9233dfda0b1SToby Isaac 9243dfda0b1SToby Isaac if (dim == 3) { 9253dfda0b1SToby Isaac /* markers */ 9263dfda0b1SToby Isaac if (bdY != DM_BOUNDARY_PERIODIC) { 9273dfda0b1SToby Isaac if (fy == numYVertices-1) { 9289566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerBack)); 9299566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerBack)); 9303dfda0b1SToby Isaac } 9313dfda0b1SToby Isaac else if (fy == 0) { 9329566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerFront)); 9339566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerFront)); 9343dfda0b1SToby Isaac } 9353dfda0b1SToby Isaac } 9363dfda0b1SToby Isaac } 9373dfda0b1SToby Isaac cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL; 9389566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, face, cone)); 9399566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, face, ornt)); 9403dfda0b1SToby Isaac } 9413dfda0b1SToby Isaac } 9423dfda0b1SToby Isaac } 9433dfda0b1SToby Isaac /* Build z faces */ 9443dfda0b1SToby Isaac for (fy = 0; fy < numYEdges; ++fy) { 9453dfda0b1SToby Isaac for (fx = 0; fx < numXEdges; ++fx) { 9463dfda0b1SToby Isaac for (fz = 0; fz < numZVertices; fz++) { 9473dfda0b1SToby Isaac PetscInt face = firstZFace + (fy*numXEdges+fx)*numZVertices + fz; 9483dfda0b1SToby Isaac PetscInt edgeL = firstYEdge + (fz*numXVertices+ fx)*numYEdges + fy; 9493dfda0b1SToby Isaac PetscInt edgeR = firstYEdge + (fz*numXVertices+((fx+1)%numXVertices))*numYEdges + fy; 9503dfda0b1SToby Isaac PetscInt edgeB = firstXEdge + (fz*numYVertices+ fy)*numXEdges + fx; 9513dfda0b1SToby Isaac PetscInt edgeT = firstXEdge + (fz*numYVertices+((fy+1)%numYVertices))*numXEdges + fx; 952b5a892a1SMatthew G. Knepley PetscInt ornt[4] = {0, 0, -1, -1}; 9533dfda0b1SToby Isaac PetscInt cone[4]; 9543dfda0b1SToby Isaac 9553dfda0b1SToby Isaac if (dim == 2) { 956b5a892a1SMatthew G. Knepley if (bdX == DM_BOUNDARY_TWIST && fx == numXEdges-1) {edgeR += numYEdges-1-2*fy; ornt[1] = -1;} 9573dfda0b1SToby Isaac if (bdY == DM_BOUNDARY_TWIST && fy == numYEdges-1) {edgeT += numXEdges-1-2*fx; ornt[2] = 0;} 9589566063dSJacob Faibussowitsch if (bdX != DM_BOUNDARY_NONE && fx == numXEdges-1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, face, 2)); 9599566063dSJacob Faibussowitsch if (bdY != DM_BOUNDARY_NONE && fy == numYEdges-1 && cutLabel) PetscCall(DMLabelSetValue(cutLabel, face, 2)); 960d1c88043SMatthew G. Knepley } else { 9613dfda0b1SToby Isaac /* markers */ 9623dfda0b1SToby Isaac if (bdZ != DM_BOUNDARY_PERIODIC) { 9633dfda0b1SToby Isaac if (fz == numZVertices-1) { 9649566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerTop)); 9659566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerTop)); 9663dfda0b1SToby Isaac } 9673dfda0b1SToby Isaac else if (fz == 0) { 9689566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", face, faceMarkerBottom)); 9699566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", face, markerBottom)); 9703dfda0b1SToby Isaac } 9713dfda0b1SToby Isaac } 9723dfda0b1SToby Isaac } 9733dfda0b1SToby Isaac cone[0] = edgeB; cone[1] = edgeR; cone[2] = edgeT; cone[3] = edgeL; 9749566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, face, cone)); 9759566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, face, ornt)); 9763dfda0b1SToby Isaac } 9773dfda0b1SToby Isaac } 9783dfda0b1SToby Isaac } 9793dfda0b1SToby Isaac /* Build Z edges*/ 9803dfda0b1SToby Isaac for (vy = 0; vy < numYVertices; vy++) { 9813dfda0b1SToby Isaac for (vx = 0; vx < numXVertices; vx++) { 9823dfda0b1SToby Isaac for (ez = 0; ez < numZEdges; ez++) { 9833dfda0b1SToby Isaac const PetscInt edge = firstZEdge + (vy*numXVertices+vx)*numZEdges + ez; 9843dfda0b1SToby Isaac const PetscInt vertexB = firstVertex + (ez *numYVertices+vy)*numXVertices + vx; 9853dfda0b1SToby Isaac const PetscInt vertexT = firstVertex + (((ez+1)%numZVertices)*numYVertices+vy)*numXVertices + vx; 9863dfda0b1SToby Isaac PetscInt cone[2]; 9873dfda0b1SToby Isaac 9883dfda0b1SToby Isaac if (dim == 3) { 9893dfda0b1SToby Isaac if (bdX != DM_BOUNDARY_PERIODIC) { 9903dfda0b1SToby Isaac if (vx == numXVertices-1) { 9919566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight)); 9923dfda0b1SToby Isaac } 9933dfda0b1SToby Isaac else if (vx == 0) { 9949566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft)); 9953dfda0b1SToby Isaac } 9963dfda0b1SToby Isaac } 9973dfda0b1SToby Isaac if (bdY != DM_BOUNDARY_PERIODIC) { 9983dfda0b1SToby Isaac if (vy == numYVertices-1) { 9999566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBack)); 10003dfda0b1SToby Isaac } 10013dfda0b1SToby Isaac else if (vy == 0) { 10029566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerFront)); 10033dfda0b1SToby Isaac } 10043dfda0b1SToby Isaac } 10053dfda0b1SToby Isaac } 10063dfda0b1SToby Isaac cone[0] = vertexB; cone[1] = vertexT; 10079566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, edge, cone)); 10083dfda0b1SToby Isaac } 10093dfda0b1SToby Isaac } 10103dfda0b1SToby Isaac } 10113dfda0b1SToby Isaac /* Build Y edges*/ 10123dfda0b1SToby Isaac for (vz = 0; vz < numZVertices; vz++) { 10133dfda0b1SToby Isaac for (vx = 0; vx < numXVertices; vx++) { 10143dfda0b1SToby Isaac for (ey = 0; ey < numYEdges; ey++) { 10153dfda0b1SToby Isaac const PetscInt nextv = (dim == 2 && bdY == DM_BOUNDARY_TWIST && ey == numYEdges-1) ? (numXVertices-vx-1) : (vz*numYVertices+((ey+1)%numYVertices))*numXVertices + vx; 10163dfda0b1SToby Isaac const PetscInt edge = firstYEdge + (vz*numXVertices+vx)*numYEdges + ey; 10173dfda0b1SToby Isaac const PetscInt vertexF = firstVertex + (vz*numYVertices+ey)*numXVertices + vx; 10183dfda0b1SToby Isaac const PetscInt vertexK = firstVertex + nextv; 10193dfda0b1SToby Isaac PetscInt cone[2]; 10203dfda0b1SToby Isaac 10213dfda0b1SToby Isaac cone[0] = vertexF; cone[1] = vertexK; 10229566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, edge, cone)); 10233dfda0b1SToby Isaac if (dim == 2) { 10243dfda0b1SToby Isaac if ((bdX != DM_BOUNDARY_PERIODIC) && (bdX != DM_BOUNDARY_TWIST)) { 10253dfda0b1SToby Isaac if (vx == numXVertices-1) { 10269566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerRight)); 10279566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight)); 10289566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerRight)); 10293dfda0b1SToby Isaac if (ey == numYEdges-1) { 10309566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerRight)); 10313dfda0b1SToby Isaac } 1032d8211ee3SMatthew G. Knepley } else if (vx == 0) { 10339566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerLeft)); 10349566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft)); 10359566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerLeft)); 10363dfda0b1SToby Isaac if (ey == numYEdges-1) { 10379566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerLeft)); 10383dfda0b1SToby Isaac } 10393dfda0b1SToby Isaac } 1040d8211ee3SMatthew G. Knepley } else { 10414c67ea77SStefano Zampini if (vx == 0 && cutLabel) { 10429566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, edge, 1)); 10439566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, cone[0], 1)); 1044d8211ee3SMatthew G. Knepley if (ey == numYEdges-1) { 10459566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, cone[1], 1)); 10463dfda0b1SToby Isaac } 10473dfda0b1SToby Isaac } 1048d8211ee3SMatthew G. Knepley } 1049d8211ee3SMatthew G. Knepley } else { 10503dfda0b1SToby Isaac if (bdX != DM_BOUNDARY_PERIODIC) { 10513dfda0b1SToby Isaac if (vx == numXVertices-1) { 10529566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerRight)); 1053d8211ee3SMatthew G. Knepley } else if (vx == 0) { 10549566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerLeft)); 10553dfda0b1SToby Isaac } 10563dfda0b1SToby Isaac } 10573dfda0b1SToby Isaac if (bdZ != DM_BOUNDARY_PERIODIC) { 10583dfda0b1SToby Isaac if (vz == numZVertices-1) { 10599566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop)); 1060d8211ee3SMatthew G. Knepley } else if (vz == 0) { 10619566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom)); 10623dfda0b1SToby Isaac } 10633dfda0b1SToby Isaac } 10643dfda0b1SToby Isaac } 10653dfda0b1SToby Isaac } 10663dfda0b1SToby Isaac } 10673dfda0b1SToby Isaac } 10683dfda0b1SToby Isaac /* Build X edges*/ 10693dfda0b1SToby Isaac for (vz = 0; vz < numZVertices; vz++) { 10703dfda0b1SToby Isaac for (vy = 0; vy < numYVertices; vy++) { 10713dfda0b1SToby Isaac for (ex = 0; ex < numXEdges; ex++) { 10723dfda0b1SToby Isaac const PetscInt nextv = (dim == 2 && bdX == DM_BOUNDARY_TWIST && ex == numXEdges-1) ? (numYVertices-vy-1)*numXVertices : (vz*numYVertices+vy)*numXVertices + (ex+1)%numXVertices; 10733dfda0b1SToby Isaac const PetscInt edge = firstXEdge + (vz*numYVertices+vy)*numXEdges + ex; 10743dfda0b1SToby Isaac const PetscInt vertexL = firstVertex + (vz*numYVertices+vy)*numXVertices + ex; 10753dfda0b1SToby Isaac const PetscInt vertexR = firstVertex + nextv; 10763dfda0b1SToby Isaac PetscInt cone[2]; 10773dfda0b1SToby Isaac 10783dfda0b1SToby Isaac cone[0] = vertexL; cone[1] = vertexR; 10799566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, edge, cone)); 10803dfda0b1SToby Isaac if (dim == 2) { 10813dfda0b1SToby Isaac if ((bdY != DM_BOUNDARY_PERIODIC) && (bdY != DM_BOUNDARY_TWIST)) { 10823dfda0b1SToby Isaac if (vy == numYVertices-1) { 10839566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerTop)); 10849566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop)); 10859566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerTop)); 10863dfda0b1SToby Isaac if (ex == numXEdges-1) { 10879566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerTop)); 10883dfda0b1SToby Isaac } 1089d8211ee3SMatthew G. Knepley } else if (vy == 0) { 10909566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "Face Sets", edge, faceMarkerBottom)); 10919566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom)); 10929566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[0], markerBottom)); 10933dfda0b1SToby Isaac if (ex == numXEdges-1) { 10949566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", cone[1], markerBottom)); 10953dfda0b1SToby Isaac } 10963dfda0b1SToby Isaac } 1097d8211ee3SMatthew G. Knepley } else { 10984c67ea77SStefano Zampini if (vy == 0 && cutLabel) { 10999566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, edge, 1)); 11009566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, cone[0], 1)); 1101d8211ee3SMatthew G. Knepley if (ex == numXEdges-1) { 11029566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(cutLabel, cone[1], 1)); 11033dfda0b1SToby Isaac } 11043dfda0b1SToby Isaac } 1105d8211ee3SMatthew G. Knepley } 1106d8211ee3SMatthew G. Knepley } else { 11073dfda0b1SToby Isaac if (bdY != DM_BOUNDARY_PERIODIC) { 11083dfda0b1SToby Isaac if (vy == numYVertices-1) { 11099566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBack)); 11103dfda0b1SToby Isaac } 11113dfda0b1SToby Isaac else if (vy == 0) { 11129566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerFront)); 11133dfda0b1SToby Isaac } 11143dfda0b1SToby Isaac } 11153dfda0b1SToby Isaac if (bdZ != DM_BOUNDARY_PERIODIC) { 11163dfda0b1SToby Isaac if (vz == numZVertices-1) { 11179566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerTop)); 11183dfda0b1SToby Isaac } 11193dfda0b1SToby Isaac else if (vz == 0) { 11209566063dSJacob Faibussowitsch PetscCall(DMSetLabelValue(dm, "marker", edge, markerBottom)); 11213dfda0b1SToby Isaac } 11223dfda0b1SToby Isaac } 11233dfda0b1SToby Isaac } 11243dfda0b1SToby Isaac } 11253dfda0b1SToby Isaac } 11263dfda0b1SToby Isaac } 11279566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 11289566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 11293dfda0b1SToby Isaac /* Build coordinates */ 11309566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 11319566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 11329566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim)); 11339566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex+numVertices)); 11343dfda0b1SToby Isaac for (v = firstVertex; v < firstVertex+numVertices; ++v) { 11359566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, dim)); 11369566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim)); 11373dfda0b1SToby Isaac } 11389566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 11399566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 11409566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 11419566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 11429566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 11439566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, dim)); 11449566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 11459566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 11463dfda0b1SToby Isaac for (vz = 0; vz < numZVertices; ++vz) { 11473dfda0b1SToby Isaac for (vy = 0; vy < numYVertices; ++vy) { 11483dfda0b1SToby Isaac for (vx = 0; vx < numXVertices; ++vx) { 11493dfda0b1SToby Isaac coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+0] = lower[0] + ((upper[0] - lower[0])/numXEdges)*vx; 11503dfda0b1SToby Isaac coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+1] = lower[1] + ((upper[1] - lower[1])/numYEdges)*vy; 11513dfda0b1SToby Isaac if (dim == 3) { 11523dfda0b1SToby Isaac coords[((vz*numYVertices+vy)*numXVertices+vx)*dim+2] = lower[2] + ((upper[2] - lower[2])/numZEdges)*vz; 11533dfda0b1SToby Isaac } 11543dfda0b1SToby Isaac } 11553dfda0b1SToby Isaac } 11563dfda0b1SToby Isaac } 11579566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 11589566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 11599566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 11603dfda0b1SToby Isaac } 11613dfda0b1SToby Isaac PetscFunctionReturn(0); 11623dfda0b1SToby Isaac } 11633dfda0b1SToby Isaac 11649318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxMesh_Tensor_Internal(DM dm, PetscInt dim, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[]) 1165a6dfd86eSKarl Rupp { 11669318fe57SMatthew G. Knepley DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE}; 11679318fe57SMatthew G. Knepley PetscInt fac[3] = {0, 0, 0}, d; 1168552f7358SJed Brown 1169552f7358SJed Brown PetscFunctionBegin; 11709318fe57SMatthew G. Knepley PetscValidPointer(dm, 1); 11719318fe57SMatthew G. Knepley PetscValidLogicalCollectiveInt(dm, dim, 2); 11729566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 11739318fe57SMatthew G. Knepley for (d = 0; d < dim; ++d) {fac[d] = faces[d]; bdt[d] = periodicity[d];} 11749566063dSJacob Faibussowitsch PetscCall(DMPlexCreateCubeMesh_Internal(dm, lower, upper, fac, bdt[0], bdt[1], bdt[2])); 1175768d5fceSMatthew G. Knepley if (periodicity[0] == DM_BOUNDARY_PERIODIC || periodicity[0] == DM_BOUNDARY_TWIST || 1176768d5fceSMatthew G. Knepley periodicity[1] == DM_BOUNDARY_PERIODIC || periodicity[1] == DM_BOUNDARY_TWIST || 1177768d5fceSMatthew G. Knepley (dim > 2 && (periodicity[2] == DM_BOUNDARY_PERIODIC || periodicity[2] == DM_BOUNDARY_TWIST))) { 1178768d5fceSMatthew G. Knepley PetscReal L[3]; 1179768d5fceSMatthew G. Knepley PetscReal maxCell[3]; 1180552f7358SJed Brown 11819318fe57SMatthew G. Knepley for (d = 0; d < dim; ++d) { 11829318fe57SMatthew G. Knepley L[d] = upper[d] - lower[d]; 11839318fe57SMatthew G. Knepley maxCell[d] = 1.1 * (L[d] / PetscMax(1, faces[d])); 1184768d5fceSMatthew G. Knepley } 11859566063dSJacob Faibussowitsch PetscCall(DMSetPeriodicity(dm, PETSC_TRUE, maxCell, L, periodicity)); 1186768d5fceSMatthew G. Knepley } 11879566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE)); 11889318fe57SMatthew G. Knepley PetscFunctionReturn(0); 11899318fe57SMatthew G. Knepley } 11909318fe57SMatthew G. Knepley 11919318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoxMesh_Internal(DM dm, PetscInt dim, PetscBool simplex, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate) 11929318fe57SMatthew G. Knepley { 11939318fe57SMatthew G. Knepley PetscFunctionBegin; 11949566063dSJacob Faibussowitsch if (dim == 1) PetscCall(DMPlexCreateLineMesh_Internal(dm, faces[0], lower[0], upper[0], periodicity[0])); 11959566063dSJacob Faibussowitsch else if (simplex) PetscCall(DMPlexCreateBoxMesh_Simplex_Internal(dm, dim, faces, lower, upper, periodicity, interpolate)); 11969566063dSJacob Faibussowitsch else PetscCall(DMPlexCreateBoxMesh_Tensor_Internal(dm, dim, faces, lower, upper, periodicity)); 11979318fe57SMatthew G. Knepley if (!interpolate && dim > 1 && !simplex) { 1198768d5fceSMatthew G. Knepley DM udm; 1199768d5fceSMatthew G. Knepley 12009566063dSJacob Faibussowitsch PetscCall(DMPlexUninterpolate(dm, &udm)); 12019566063dSJacob Faibussowitsch PetscCall(DMPlexCopyCoordinates(dm, udm)); 12029566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &udm)); 1203768d5fceSMatthew G. Knepley } 1204768d5fceSMatthew G. Knepley PetscFunctionReturn(0); 1205c8c68bd8SToby Isaac } 1206c8c68bd8SToby Isaac 1207768d5fceSMatthew G. Knepley /*@C 1208768d5fceSMatthew G. Knepley DMPlexCreateBoxMesh - Creates a mesh on the tensor product of unit intervals (box) using simplices or tensor cells (hexahedra). 1209768d5fceSMatthew G. Knepley 1210d083f849SBarry Smith Collective 1211768d5fceSMatthew G. Knepley 1212768d5fceSMatthew G. Knepley Input Parameters: 1213768d5fceSMatthew G. Knepley + comm - The communicator for the DM object 1214768d5fceSMatthew G. Knepley . dim - The spatial dimension 1215768d5fceSMatthew G. Knepley . simplex - PETSC_TRUE for simplices, PETSC_FALSE for tensor cells 1216fdbf62faSLisandro Dalcin . faces - Number of faces per dimension, or NULL for (1,) in 1D and (2, 2) in 2D and (1, 1, 1) in 3D 1217768d5fceSMatthew G. Knepley . lower - The lower left corner, or NULL for (0, 0, 0) 1218768d5fceSMatthew G. Knepley . upper - The upper right corner, or NULL for (1, 1, 1) 1219fdbf62faSLisandro Dalcin . periodicity - The boundary type for the X,Y,Z direction, or NULL for DM_BOUNDARY_NONE 1220768d5fceSMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces) 1221768d5fceSMatthew G. Knepley 1222768d5fceSMatthew G. Knepley Output Parameter: 1223768d5fceSMatthew G. Knepley . dm - The DM object 1224768d5fceSMatthew G. Knepley 12259318fe57SMatthew G. Knepley Note: If you want to customize this mesh using options, you just need to 12269318fe57SMatthew G. Knepley $ DMCreate(comm, &dm); 12279318fe57SMatthew G. Knepley $ DMSetType(dm, DMPLEX); 12289318fe57SMatthew G. Knepley $ DMSetFromOptions(dm); 12299318fe57SMatthew G. Knepley and use the options on the DMSetFromOptions() page. 12301367e252SJed Brown 12311367e252SJed Brown Here is the numbering returned for 2 faces in each direction for tensor cells: 1232768d5fceSMatthew G. Knepley $ 10---17---11---18----12 1233768d5fceSMatthew G. Knepley $ | | | 1234768d5fceSMatthew G. Knepley $ | | | 1235768d5fceSMatthew G. Knepley $ 20 2 22 3 24 1236768d5fceSMatthew G. Knepley $ | | | 1237768d5fceSMatthew G. Knepley $ | | | 1238768d5fceSMatthew G. Knepley $ 7---15----8---16----9 1239768d5fceSMatthew G. Knepley $ | | | 1240768d5fceSMatthew G. Knepley $ | | | 1241768d5fceSMatthew G. Knepley $ 19 0 21 1 23 1242768d5fceSMatthew G. Knepley $ | | | 1243768d5fceSMatthew G. Knepley $ | | | 1244768d5fceSMatthew G. Knepley $ 4---13----5---14----6 1245768d5fceSMatthew G. Knepley 1246768d5fceSMatthew G. Knepley and for simplicial cells 1247768d5fceSMatthew G. Knepley 1248768d5fceSMatthew G. Knepley $ 14----8---15----9----16 1249768d5fceSMatthew G. Knepley $ |\ 5 |\ 7 | 1250768d5fceSMatthew G. Knepley $ | \ | \ | 1251768d5fceSMatthew G. Knepley $ 13 2 14 3 15 1252768d5fceSMatthew G. Knepley $ | 4 \ | 6 \ | 1253768d5fceSMatthew G. Knepley $ | \ | \ | 1254768d5fceSMatthew G. Knepley $ 11----6---12----7----13 1255768d5fceSMatthew G. Knepley $ |\ |\ | 1256768d5fceSMatthew G. Knepley $ | \ 1 | \ 3 | 1257768d5fceSMatthew G. Knepley $ 10 0 11 1 12 1258768d5fceSMatthew G. Knepley $ | 0 \ | 2 \ | 1259768d5fceSMatthew G. Knepley $ | \ | \ | 1260768d5fceSMatthew G. Knepley $ 8----4----9----5----10 1261768d5fceSMatthew G. Knepley 1262768d5fceSMatthew G. Knepley Level: beginner 1263768d5fceSMatthew G. Knepley 1264db781477SPatrick Sanan .seealso: `DMSetFromOptions()`, `DMPlexCreateFromFile()`, `DMPlexCreateHexCylinderMesh()`, `DMSetType()`, `DMCreate()` 1265768d5fceSMatthew G. Knepley @*/ 1266768d5fceSMatthew G. Knepley PetscErrorCode DMPlexCreateBoxMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool interpolate, DM *dm) 1267552f7358SJed Brown { 12689318fe57SMatthew G. Knepley PetscInt fac[3] = {1, 1, 1}; 1269fdbf62faSLisandro Dalcin PetscReal low[3] = {0, 0, 0}; 1270fdbf62faSLisandro Dalcin PetscReal upp[3] = {1, 1, 1}; 1271fdbf62faSLisandro Dalcin DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE}; 1272552f7358SJed Brown 1273768d5fceSMatthew G. Knepley PetscFunctionBegin; 12749566063dSJacob Faibussowitsch PetscCall(DMCreate(comm,dm)); 12759566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm,DMPLEX)); 12769566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxMesh_Internal(*dm, dim, simplex, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, periodicity ? periodicity : bdt, interpolate)); 12779318fe57SMatthew G. Knepley PetscFunctionReturn(0); 12789318fe57SMatthew G. Knepley } 1279fdbf62faSLisandro Dalcin 1280d410b0cfSMatthew G. Knepley static PetscErrorCode DMPlexCreateWedgeBoxMesh_Internal(DM dm, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[]) 12819318fe57SMatthew G. Knepley { 12829318fe57SMatthew G. Knepley DM bdm, vol; 12839318fe57SMatthew G. Knepley PetscInt i; 12849318fe57SMatthew G. Knepley 12859318fe57SMatthew G. Knepley PetscFunctionBegin; 128608401ef6SPierre Jolivet for (i = 0; i < 3; ++i) PetscCheck(periodicity[i] == DM_BOUNDARY_NONE,PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Periodicity not yet supported"); 12879566063dSJacob Faibussowitsch PetscCall(DMCreate(PetscObjectComm((PetscObject) dm), &bdm)); 12889566063dSJacob Faibussowitsch PetscCall(DMSetType(bdm, DMPLEX)); 12899566063dSJacob Faibussowitsch PetscCall(DMSetDimension(bdm, 2)); 12909566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxMesh_Simplex_Internal(bdm, 2, faces, lower, upper, periodicity, PETSC_TRUE)); 12919566063dSJacob Faibussowitsch PetscCall(DMPlexExtrude(bdm, faces[2], upper[2] - lower[2], PETSC_TRUE, PETSC_FALSE, NULL, NULL, &vol)); 12929566063dSJacob Faibussowitsch PetscCall(DMDestroy(&bdm)); 12939566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &vol)); 12949318fe57SMatthew G. Knepley if (lower[2] != 0.0) { 12959318fe57SMatthew G. Knepley Vec v; 12969318fe57SMatthew G. Knepley PetscScalar *x; 12979318fe57SMatthew G. Knepley PetscInt cDim, n; 12989318fe57SMatthew G. Knepley 12999566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dm, &v)); 13009566063dSJacob Faibussowitsch PetscCall(VecGetBlockSize(v, &cDim)); 13019566063dSJacob Faibussowitsch PetscCall(VecGetLocalSize(v, &n)); 13029566063dSJacob Faibussowitsch PetscCall(VecGetArray(v, &x)); 13039318fe57SMatthew G. Knepley x += cDim; 13049318fe57SMatthew G. Knepley for (i = 0; i < n; i += cDim) x[i] += lower[2]; 13059566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(v,&x)); 13069566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, v)); 13079318fe57SMatthew G. Knepley } 1308552f7358SJed Brown PetscFunctionReturn(0); 1309552f7358SJed Brown } 1310552f7358SJed Brown 131100dabe28SStefano Zampini /*@ 131200dabe28SStefano Zampini DMPlexCreateWedgeBoxMesh - Creates a 3-D mesh tesselating the (x,y) plane and extruding in the third direction using wedge cells. 131300dabe28SStefano Zampini 1314d083f849SBarry Smith Collective 131500dabe28SStefano Zampini 131600dabe28SStefano Zampini Input Parameters: 131700dabe28SStefano Zampini + comm - The communicator for the DM object 131800dabe28SStefano Zampini . faces - Number of faces per dimension, or NULL for (1, 1, 1) 131900dabe28SStefano Zampini . lower - The lower left corner, or NULL for (0, 0, 0) 132000dabe28SStefano Zampini . upper - The upper right corner, or NULL for (1, 1, 1) 132100dabe28SStefano Zampini . periodicity - The boundary type for the X,Y,Z direction, or NULL for DM_BOUNDARY_NONE 1322d0fcb9c2SMatthew G. Knepley . orderHeight - If PETSC_TRUE, orders the extruded cells in the height first. Otherwise, orders the cell on the layers first 132300dabe28SStefano Zampini - interpolate - Flag to create intermediate mesh pieces (edges, faces) 132400dabe28SStefano Zampini 132500dabe28SStefano Zampini Output Parameter: 132600dabe28SStefano Zampini . dm - The DM object 132700dabe28SStefano Zampini 132800dabe28SStefano Zampini Level: beginner 132900dabe28SStefano Zampini 1330db781477SPatrick Sanan .seealso: `DMPlexCreateHexCylinderMesh()`, `DMPlexCreateWedgeCylinderMesh()`, `DMExtrude()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()` 133100dabe28SStefano Zampini @*/ 1332d0fcb9c2SMatthew G. Knepley PetscErrorCode DMPlexCreateWedgeBoxMesh(MPI_Comm comm, const PetscInt faces[], const PetscReal lower[], const PetscReal upper[], const DMBoundaryType periodicity[], PetscBool orderHeight, PetscBool interpolate, DM *dm) 133300dabe28SStefano Zampini { 13349318fe57SMatthew G. Knepley PetscInt fac[3] = {1, 1, 1}; 133500dabe28SStefano Zampini PetscReal low[3] = {0, 0, 0}; 133600dabe28SStefano Zampini PetscReal upp[3] = {1, 1, 1}; 133700dabe28SStefano Zampini DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE}; 133800dabe28SStefano Zampini 133900dabe28SStefano Zampini PetscFunctionBegin; 13409566063dSJacob Faibussowitsch PetscCall(DMCreate(comm,dm)); 13419566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm,DMPLEX)); 13429566063dSJacob Faibussowitsch PetscCall(DMPlexCreateWedgeBoxMesh_Internal(*dm, faces ? faces : fac, lower ? lower : low, upper ? upper : upp, periodicity ? periodicity : bdt)); 1343d410b0cfSMatthew G. Knepley if (!interpolate) { 1344d410b0cfSMatthew G. Knepley DM udm; 134500dabe28SStefano Zampini 13469566063dSJacob Faibussowitsch PetscCall(DMPlexUninterpolate(*dm, &udm)); 13479566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(*dm, &udm)); 134800dabe28SStefano Zampini } 134900dabe28SStefano Zampini PetscFunctionReturn(0); 135000dabe28SStefano Zampini } 135100dabe28SStefano Zampini 1352a9074c1eSMatthew G. Knepley /*@C 1353a9074c1eSMatthew G. Knepley DMPlexSetOptionsPrefix - Sets the prefix used for searching for all DM options in the database. 1354a9074c1eSMatthew G. Knepley 1355d083f849SBarry Smith Logically Collective on dm 1356a9074c1eSMatthew G. Knepley 1357a9074c1eSMatthew G. Knepley Input Parameters: 1358a9074c1eSMatthew G. Knepley + dm - the DM context 1359a9074c1eSMatthew G. Knepley - prefix - the prefix to prepend to all option names 1360a9074c1eSMatthew G. Knepley 1361a9074c1eSMatthew G. Knepley Notes: 1362a9074c1eSMatthew G. Knepley A hyphen (-) must NOT be given at the beginning of the prefix name. 1363a9074c1eSMatthew G. Knepley The first character of all runtime options is AUTOMATICALLY the hyphen. 1364a9074c1eSMatthew G. Knepley 1365a9074c1eSMatthew G. Knepley Level: advanced 1366a9074c1eSMatthew G. Knepley 1367db781477SPatrick Sanan .seealso: `SNESSetFromOptions()` 1368a9074c1eSMatthew G. Knepley @*/ 1369a9074c1eSMatthew G. Knepley PetscErrorCode DMPlexSetOptionsPrefix(DM dm, const char prefix[]) 1370a9074c1eSMatthew G. Knepley { 1371a9074c1eSMatthew G. Knepley DM_Plex *mesh = (DM_Plex *) dm->data; 1372a9074c1eSMatthew G. Knepley 1373a9074c1eSMatthew G. Knepley PetscFunctionBegin; 1374a9074c1eSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 13759566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject) dm, prefix)); 13769566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject) mesh->partitioner, prefix)); 1377a9074c1eSMatthew G. Knepley PetscFunctionReturn(0); 1378a9074c1eSMatthew G. Knepley } 1379a9074c1eSMatthew G. Knepley 13809318fe57SMatthew G. Knepley /* Remap geometry to cylinder 138161a622f3SMatthew G. Knepley TODO: This only works for a single refinement, then it is broken 138261a622f3SMatthew G. Knepley 13839318fe57SMatthew G. Knepley Interior square: Linear interpolation is correct 13849318fe57SMatthew G. Knepley The other cells all have vertices on rays from the origin. We want to uniformly expand the spacing 13859318fe57SMatthew G. Knepley such that the last vertex is on the unit circle. So the closest and farthest vertices are at distance 13860510c589SMatthew G. Knepley 13879318fe57SMatthew G. Knepley phi = arctan(y/x) 13889318fe57SMatthew G. Knepley d_close = sqrt(1/8 + 1/4 sin^2(phi)) 13899318fe57SMatthew G. Knepley d_far = sqrt(1/2 + sin^2(phi)) 13900510c589SMatthew G. Knepley 13919318fe57SMatthew G. Knepley so we remap them using 13920510c589SMatthew G. Knepley 13939318fe57SMatthew G. Knepley x_new = x_close + (x - x_close) (1 - d_close) / (d_far - d_close) 13949318fe57SMatthew G. Knepley y_new = y_close + (y - y_close) (1 - d_close) / (d_far - d_close) 13950510c589SMatthew G. Knepley 13969318fe57SMatthew G. Knepley If pi/4 < phi < 3pi/4 or -3pi/4 < phi < -pi/4, then we switch x and y. 13979318fe57SMatthew G. Knepley */ 13989318fe57SMatthew G. Knepley static void snapToCylinder(PetscInt dim, PetscInt Nf, PetscInt NfAux, 13999318fe57SMatthew G. Knepley const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], 14009318fe57SMatthew G. Knepley const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], 14019318fe57SMatthew G. Knepley PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f0[]) 14029318fe57SMatthew G. Knepley { 14039318fe57SMatthew G. Knepley const PetscReal dis = 1.0/PetscSqrtReal(2.0); 14049318fe57SMatthew G. Knepley const PetscReal ds2 = 0.5*dis; 140522cc497dSMatthew G. Knepley 14069318fe57SMatthew G. Knepley if ((PetscAbsScalar(u[0]) <= ds2) && (PetscAbsScalar(u[1]) <= ds2)) { 14079318fe57SMatthew G. Knepley f0[0] = u[0]; 14089318fe57SMatthew G. Knepley f0[1] = u[1]; 14099318fe57SMatthew G. Knepley } else { 14109318fe57SMatthew G. Knepley PetscReal phi, sinp, cosp, dc, df, x, y, xc, yc; 14110510c589SMatthew G. Knepley 14129318fe57SMatthew G. Knepley x = PetscRealPart(u[0]); 14139318fe57SMatthew G. Knepley y = PetscRealPart(u[1]); 14149318fe57SMatthew G. Knepley phi = PetscAtan2Real(y, x); 14159318fe57SMatthew G. Knepley sinp = PetscSinReal(phi); 14169318fe57SMatthew G. Knepley cosp = PetscCosReal(phi); 14179318fe57SMatthew G. Knepley if ((PetscAbsReal(phi) > PETSC_PI/4.0) && (PetscAbsReal(phi) < 3.0*PETSC_PI/4.0)) { 14189318fe57SMatthew G. Knepley dc = PetscAbsReal(ds2/sinp); 14199318fe57SMatthew G. Knepley df = PetscAbsReal(dis/sinp); 14209318fe57SMatthew G. Knepley xc = ds2*x/PetscAbsReal(y); 14219318fe57SMatthew G. Knepley yc = ds2*PetscSignReal(y); 14229318fe57SMatthew G. Knepley } else { 14239318fe57SMatthew G. Knepley dc = PetscAbsReal(ds2/cosp); 14249318fe57SMatthew G. Knepley df = PetscAbsReal(dis/cosp); 14259318fe57SMatthew G. Knepley xc = ds2*PetscSignReal(x); 14269318fe57SMatthew G. Knepley yc = ds2*y/PetscAbsReal(x); 14279318fe57SMatthew G. Knepley } 14289318fe57SMatthew G. Knepley f0[0] = xc + (u[0] - xc)*(1.0 - dc)/(df - dc); 14299318fe57SMatthew G. Knepley f0[1] = yc + (u[1] - yc)*(1.0 - dc)/(df - dc); 14309318fe57SMatthew G. Knepley } 14319318fe57SMatthew G. Knepley f0[2] = u[2]; 14329318fe57SMatthew G. Knepley } 14330510c589SMatthew G. Knepley 14349318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateHexCylinderMesh_Internal(DM dm, DMBoundaryType periodicZ) 14350510c589SMatthew G. Knepley { 14360510c589SMatthew G. Knepley const PetscInt dim = 3; 14379318fe57SMatthew G. Knepley PetscInt numCells, numVertices; 1438d8c47e87SMatthew G. Knepley PetscMPIInt rank; 14390510c589SMatthew G. Knepley 14400510c589SMatthew G. Knepley PetscFunctionBegin; 14419566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank)); 14429566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 14430510c589SMatthew G. Knepley /* Create topology */ 14440510c589SMatthew G. Knepley { 14450510c589SMatthew G. Knepley PetscInt cone[8], c; 14460510c589SMatthew G. Knepley 1447dd400576SPatrick Sanan numCells = rank == 0 ? 5 : 0; 1448dd400576SPatrick Sanan numVertices = rank == 0 ? 16 : 0; 1449006a8963SMatthew G. Knepley if (periodicZ == DM_BOUNDARY_PERIODIC) { 1450ae8bcbbbSMatthew G. Knepley numCells *= 3; 1451dd400576SPatrick Sanan numVertices = rank == 0 ? 24 : 0; 1452006a8963SMatthew G. Knepley } 14539566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVertices)); 14549566063dSJacob Faibussowitsch for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 8)); 14559566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); 1456dd400576SPatrick Sanan if (rank == 0) { 1457006a8963SMatthew G. Knepley if (periodicZ == DM_BOUNDARY_PERIODIC) { 1458ae8bcbbbSMatthew G. Knepley cone[0] = 15; cone[1] = 18; cone[2] = 17; cone[3] = 16; 1459ae8bcbbbSMatthew G. Knepley cone[4] = 31; cone[5] = 32; cone[6] = 33; cone[7] = 34; 14609566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 0, cone)); 1461ae8bcbbbSMatthew G. Knepley cone[0] = 16; cone[1] = 17; cone[2] = 24; cone[3] = 23; 1462ae8bcbbbSMatthew G. Knepley cone[4] = 32; cone[5] = 36; cone[6] = 37; cone[7] = 33; /* 22 25 26 21 */ 14639566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 1, cone)); 1464ae8bcbbbSMatthew G. Knepley cone[0] = 18; cone[1] = 27; cone[2] = 24; cone[3] = 17; 1465ae8bcbbbSMatthew G. Knepley cone[4] = 34; cone[5] = 33; cone[6] = 37; cone[7] = 38; 14669566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 2, cone)); 1467ae8bcbbbSMatthew G. Knepley cone[0] = 29; cone[1] = 27; cone[2] = 18; cone[3] = 15; 1468ae8bcbbbSMatthew G. Knepley cone[4] = 35; cone[5] = 31; cone[6] = 34; cone[7] = 38; 14699566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 3, cone)); 1470ae8bcbbbSMatthew G. Knepley cone[0] = 29; cone[1] = 15; cone[2] = 16; cone[3] = 23; 1471ae8bcbbbSMatthew G. Knepley cone[4] = 35; cone[5] = 36; cone[6] = 32; cone[7] = 31; 14729566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 4, cone)); 1473006a8963SMatthew G. Knepley 1474ae8bcbbbSMatthew G. Knepley cone[0] = 31; cone[1] = 34; cone[2] = 33; cone[3] = 32; 1475ae8bcbbbSMatthew G. Knepley cone[4] = 19; cone[5] = 22; cone[6] = 21; cone[7] = 20; 14769566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 5, cone)); 1477ae8bcbbbSMatthew G. Knepley cone[0] = 32; cone[1] = 33; cone[2] = 37; cone[3] = 36; 1478ae8bcbbbSMatthew G. Knepley cone[4] = 22; cone[5] = 25; cone[6] = 26; cone[7] = 21; 14799566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 6, cone)); 1480ae8bcbbbSMatthew G. Knepley cone[0] = 34; cone[1] = 38; cone[2] = 37; cone[3] = 33; 1481ae8bcbbbSMatthew G. Knepley cone[4] = 20; cone[5] = 21; cone[6] = 26; cone[7] = 28; 14829566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 7, cone)); 1483ae8bcbbbSMatthew G. Knepley cone[0] = 35; cone[1] = 38; cone[2] = 34; cone[3] = 31; 1484ae8bcbbbSMatthew G. Knepley cone[4] = 30; cone[5] = 19; cone[6] = 20; cone[7] = 28; 14859566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 8, cone)); 1486ae8bcbbbSMatthew G. Knepley cone[0] = 35; cone[1] = 31; cone[2] = 32; cone[3] = 36; 1487ae8bcbbbSMatthew G. Knepley cone[4] = 30; cone[5] = 25; cone[6] = 22; cone[7] = 19; 14889566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 9, cone)); 1489ae8bcbbbSMatthew G. Knepley 1490ae8bcbbbSMatthew G. Knepley cone[0] = 19; cone[1] = 20; cone[2] = 21; cone[3] = 22; 1491ae8bcbbbSMatthew G. Knepley cone[4] = 15; cone[5] = 16; cone[6] = 17; cone[7] = 18; 14929566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 10, cone)); 1493ae8bcbbbSMatthew G. Knepley cone[0] = 22; cone[1] = 21; cone[2] = 26; cone[3] = 25; 1494ae8bcbbbSMatthew G. Knepley cone[4] = 16; cone[5] = 23; cone[6] = 24; cone[7] = 17; 14959566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 11, cone)); 1496ae8bcbbbSMatthew G. Knepley cone[0] = 20; cone[1] = 28; cone[2] = 26; cone[3] = 21; 1497ae8bcbbbSMatthew G. Knepley cone[4] = 18; cone[5] = 17; cone[6] = 24; cone[7] = 27; 14989566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 12, cone)); 1499ae8bcbbbSMatthew G. Knepley cone[0] = 30; cone[1] = 28; cone[2] = 20; cone[3] = 19; 1500ae8bcbbbSMatthew G. Knepley cone[4] = 29; cone[5] = 15; cone[6] = 18; cone[7] = 27; 15019566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 13, cone)); 1502ae8bcbbbSMatthew G. Knepley cone[0] = 30; cone[1] = 19; cone[2] = 22; cone[3] = 25; 1503ae8bcbbbSMatthew G. Knepley cone[4] = 29; cone[5] = 23; cone[6] = 16; cone[7] = 15; 15049566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 14, cone)); 1505006a8963SMatthew G. Knepley } else { 150610c6f908SMatthew G. Knepley cone[0] = 5; cone[1] = 8; cone[2] = 7; cone[3] = 6; 150710c6f908SMatthew G. Knepley cone[4] = 9; cone[5] = 12; cone[6] = 11; cone[7] = 10; 15089566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 0, cone)); 150910c6f908SMatthew G. Knepley cone[0] = 6; cone[1] = 7; cone[2] = 14; cone[3] = 13; 151010c6f908SMatthew G. Knepley cone[4] = 12; cone[5] = 15; cone[6] = 16; cone[7] = 11; 15119566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 1, cone)); 151210c6f908SMatthew G. Knepley cone[0] = 8; cone[1] = 17; cone[2] = 14; cone[3] = 7; 151310c6f908SMatthew G. Knepley cone[4] = 10; cone[5] = 11; cone[6] = 16; cone[7] = 18; 15149566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 2, cone)); 151510c6f908SMatthew G. Knepley cone[0] = 19; cone[1] = 17; cone[2] = 8; cone[3] = 5; 151610c6f908SMatthew G. Knepley cone[4] = 20; cone[5] = 9; cone[6] = 10; cone[7] = 18; 15179566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 3, cone)); 151810c6f908SMatthew G. Knepley cone[0] = 19; cone[1] = 5; cone[2] = 6; cone[3] = 13; 151910c6f908SMatthew G. Knepley cone[4] = 20; cone[5] = 15; cone[6] = 12; cone[7] = 9; 15209566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 4, cone)); 1521006a8963SMatthew G. Knepley } 1522d8c47e87SMatthew G. Knepley } 15239566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 15249566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 15250510c589SMatthew G. Knepley } 1526dbc1dc17SMatthew G. Knepley /* Create cube geometry */ 15270510c589SMatthew G. Knepley { 15280510c589SMatthew G. Knepley Vec coordinates; 15290510c589SMatthew G. Knepley PetscSection coordSection; 15300510c589SMatthew G. Knepley PetscScalar *coords; 15310510c589SMatthew G. Knepley PetscInt coordSize, v; 15320510c589SMatthew G. Knepley const PetscReal dis = 1.0/PetscSqrtReal(2.0); 15330510c589SMatthew G. Knepley const PetscReal ds2 = dis/2.0; 15340510c589SMatthew G. Knepley 15350510c589SMatthew G. Knepley /* Build coordinates */ 15369566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 15379566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 15389566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim)); 15399566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, numCells, numCells+numVertices)); 15400510c589SMatthew G. Knepley for (v = numCells; v < numCells+numVertices; ++v) { 15419566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, dim)); 15429566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim)); 15430510c589SMatthew G. Knepley } 15449566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 15459566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 15469566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 15479566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 15489566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 15499566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, dim)); 15509566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 15519566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 1552dd400576SPatrick Sanan if (rank == 0) { 15530510c589SMatthew G. Knepley coords[0*dim+0] = -ds2; coords[0*dim+1] = -ds2; coords[0*dim+2] = 0.0; 15540510c589SMatthew G. Knepley coords[1*dim+0] = ds2; coords[1*dim+1] = -ds2; coords[1*dim+2] = 0.0; 15550510c589SMatthew G. Knepley coords[2*dim+0] = ds2; coords[2*dim+1] = ds2; coords[2*dim+2] = 0.0; 15560510c589SMatthew G. Knepley coords[3*dim+0] = -ds2; coords[3*dim+1] = ds2; coords[3*dim+2] = 0.0; 15570510c589SMatthew G. Knepley coords[4*dim+0] = -ds2; coords[4*dim+1] = -ds2; coords[4*dim+2] = 1.0; 15580510c589SMatthew G. Knepley coords[5*dim+0] = -ds2; coords[5*dim+1] = ds2; coords[5*dim+2] = 1.0; 15590510c589SMatthew G. Knepley coords[6*dim+0] = ds2; coords[6*dim+1] = ds2; coords[6*dim+2] = 1.0; 15600510c589SMatthew G. Knepley coords[7*dim+0] = ds2; coords[7*dim+1] = -ds2; coords[7*dim+2] = 1.0; 15610510c589SMatthew G. Knepley coords[ 8*dim+0] = dis; coords[ 8*dim+1] = -dis; coords[ 8*dim+2] = 0.0; 15620510c589SMatthew G. Knepley coords[ 9*dim+0] = dis; coords[ 9*dim+1] = dis; coords[ 9*dim+2] = 0.0; 15630510c589SMatthew G. Knepley coords[10*dim+0] = dis; coords[10*dim+1] = -dis; coords[10*dim+2] = 1.0; 15640510c589SMatthew G. Knepley coords[11*dim+0] = dis; coords[11*dim+1] = dis; coords[11*dim+2] = 1.0; 15650510c589SMatthew G. Knepley coords[12*dim+0] = -dis; coords[12*dim+1] = dis; coords[12*dim+2] = 0.0; 15660510c589SMatthew G. Knepley coords[13*dim+0] = -dis; coords[13*dim+1] = dis; coords[13*dim+2] = 1.0; 15670510c589SMatthew G. Knepley coords[14*dim+0] = -dis; coords[14*dim+1] = -dis; coords[14*dim+2] = 0.0; 15680510c589SMatthew G. Knepley coords[15*dim+0] = -dis; coords[15*dim+1] = -dis; coords[15*dim+2] = 1.0; 1569ae8bcbbbSMatthew G. Knepley if (periodicZ == DM_BOUNDARY_PERIODIC) { 1570ae8bcbbbSMatthew G. Knepley /* 15 31 19 */ coords[16*dim+0] = -ds2; coords[16*dim+1] = -ds2; coords[16*dim+2] = 0.5; 1571ae8bcbbbSMatthew G. Knepley /* 16 32 22 */ coords[17*dim+0] = ds2; coords[17*dim+1] = -ds2; coords[17*dim+2] = 0.5; 1572ae8bcbbbSMatthew G. Knepley /* 17 33 21 */ coords[18*dim+0] = ds2; coords[18*dim+1] = ds2; coords[18*dim+2] = 0.5; 1573ae8bcbbbSMatthew G. Knepley /* 18 34 20 */ coords[19*dim+0] = -ds2; coords[19*dim+1] = ds2; coords[19*dim+2] = 0.5; 1574ae8bcbbbSMatthew G. Knepley /* 29 35 30 */ coords[20*dim+0] = -dis; coords[20*dim+1] = -dis; coords[20*dim+2] = 0.5; 1575ae8bcbbbSMatthew G. Knepley /* 23 36 25 */ coords[21*dim+0] = dis; coords[21*dim+1] = -dis; coords[21*dim+2] = 0.5; 1576ae8bcbbbSMatthew G. Knepley /* 24 37 26 */ coords[22*dim+0] = dis; coords[22*dim+1] = dis; coords[22*dim+2] = 0.5; 1577ae8bcbbbSMatthew G. Knepley /* 27 38 28 */ coords[23*dim+0] = -dis; coords[23*dim+1] = dis; coords[23*dim+2] = 0.5; 1578ae8bcbbbSMatthew G. Knepley } 1579d8c47e87SMatthew G. Knepley } 15809566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 15819566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 15829566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 15830510c589SMatthew G. Knepley } 1584006a8963SMatthew G. Knepley /* Create periodicity */ 1585006a8963SMatthew G. Knepley if (periodicZ == DM_BOUNDARY_PERIODIC || periodicZ == DM_BOUNDARY_TWIST) { 1586006a8963SMatthew G. Knepley PetscReal L[3]; 1587006a8963SMatthew G. Knepley PetscReal maxCell[3]; 1588006a8963SMatthew G. Knepley DMBoundaryType bdType[3]; 1589006a8963SMatthew G. Knepley PetscReal lower[3] = {0.0, 0.0, 0.0}; 1590ae8bcbbbSMatthew G. Knepley PetscReal upper[3] = {1.0, 1.0, 1.5}; 1591ae8bcbbbSMatthew G. Knepley PetscInt i, numZCells = 3; 1592006a8963SMatthew G. Knepley 1593006a8963SMatthew G. Knepley bdType[0] = DM_BOUNDARY_NONE; 1594006a8963SMatthew G. Knepley bdType[1] = DM_BOUNDARY_NONE; 1595006a8963SMatthew G. Knepley bdType[2] = periodicZ; 1596006a8963SMatthew G. Knepley for (i = 0; i < dim; i++) { 1597006a8963SMatthew G. Knepley L[i] = upper[i] - lower[i]; 1598006a8963SMatthew G. Knepley maxCell[i] = 1.1 * (L[i] / numZCells); 1599006a8963SMatthew G. Knepley } 16009566063dSJacob Faibussowitsch PetscCall(DMSetPeriodicity(dm, PETSC_TRUE, maxCell, L, bdType)); 1601006a8963SMatthew G. Knepley } 1602dbc1dc17SMatthew G. Knepley { 16039318fe57SMatthew G. Knepley DM cdm; 16049318fe57SMatthew G. Knepley PetscDS cds; 16059318fe57SMatthew G. Knepley PetscScalar c[2] = {1.0, 1.0}; 1606dbc1dc17SMatthew G. Knepley 16079566063dSJacob Faibussowitsch PetscCall(DMPlexCreateCoordinateSpace(dm, 1, snapToCylinder)); 16089566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 16099566063dSJacob Faibussowitsch PetscCall(DMGetDS(cdm, &cds)); 16109566063dSJacob Faibussowitsch PetscCall(PetscDSSetConstants(cds, 2, c)); 1611dbc1dc17SMatthew G. Knepley } 16129318fe57SMatthew G. Knepley /* Wait for coordinate creation before doing in-place modification */ 16139566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolateInPlace_Internal(dm)); 16140510c589SMatthew G. Knepley PetscFunctionReturn(0); 16150510c589SMatthew G. Knepley } 16160510c589SMatthew G. Knepley 161724119c2aSMatthew G. Knepley /*@ 16189318fe57SMatthew G. Knepley DMPlexCreateHexCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using hexahedra. 161924119c2aSMatthew G. Knepley 1620d083f849SBarry Smith Collective 162124119c2aSMatthew G. Knepley 162224119c2aSMatthew G. Knepley Input Parameters: 162324119c2aSMatthew G. Knepley + comm - The communicator for the DM object 16249318fe57SMatthew G. Knepley - periodicZ - The boundary type for the Z direction 162524119c2aSMatthew G. Knepley 162624119c2aSMatthew G. Knepley Output Parameter: 162724119c2aSMatthew G. Knepley . dm - The DM object 162824119c2aSMatthew G. Knepley 16299318fe57SMatthew G. Knepley Note: 16309318fe57SMatthew G. Knepley Here is the output numbering looking from the bottom of the cylinder: 16319318fe57SMatthew G. Knepley $ 17-----14 16329318fe57SMatthew G. Knepley $ | | 16339318fe57SMatthew G. Knepley $ | 2 | 16349318fe57SMatthew G. Knepley $ | | 16359318fe57SMatthew G. Knepley $ 17-----8-----7-----14 16369318fe57SMatthew G. Knepley $ | | | | 16379318fe57SMatthew G. Knepley $ | 3 | 0 | 1 | 16389318fe57SMatthew G. Knepley $ | | | | 16399318fe57SMatthew G. Knepley $ 19-----5-----6-----13 16409318fe57SMatthew G. Knepley $ | | 16419318fe57SMatthew G. Knepley $ | 4 | 16429318fe57SMatthew G. Knepley $ | | 16439318fe57SMatthew G. Knepley $ 19-----13 16449318fe57SMatthew G. Knepley $ 16459318fe57SMatthew G. Knepley $ and up through the top 16469318fe57SMatthew G. Knepley $ 16479318fe57SMatthew G. Knepley $ 18-----16 16489318fe57SMatthew G. Knepley $ | | 16499318fe57SMatthew G. Knepley $ | 2 | 16509318fe57SMatthew G. Knepley $ | | 16519318fe57SMatthew G. Knepley $ 18----10----11-----16 16529318fe57SMatthew G. Knepley $ | | | | 16539318fe57SMatthew G. Knepley $ | 3 | 0 | 1 | 16549318fe57SMatthew G. Knepley $ | | | | 16559318fe57SMatthew G. Knepley $ 20-----9----12-----15 16569318fe57SMatthew G. Knepley $ | | 16579318fe57SMatthew G. Knepley $ | 4 | 16589318fe57SMatthew G. Knepley $ | | 16599318fe57SMatthew G. Knepley $ 20-----15 16609318fe57SMatthew G. Knepley 166124119c2aSMatthew G. Knepley Level: beginner 166224119c2aSMatthew G. Knepley 1663db781477SPatrick Sanan .seealso: `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()` 166424119c2aSMatthew G. Knepley @*/ 16659318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateHexCylinderMesh(MPI_Comm comm, DMBoundaryType periodicZ, DM *dm) 16669318fe57SMatthew G. Knepley { 16679318fe57SMatthew G. Knepley PetscFunctionBegin; 16689318fe57SMatthew G. Knepley PetscValidPointer(dm, 3); 16699566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 16709566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 16719566063dSJacob Faibussowitsch PetscCall(DMPlexCreateHexCylinderMesh_Internal(*dm, periodicZ)); 16729318fe57SMatthew G. Knepley PetscFunctionReturn(0); 16739318fe57SMatthew G. Knepley } 16749318fe57SMatthew G. Knepley 16759318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateWedgeCylinderMesh_Internal(DM dm, PetscInt n, PetscBool interpolate) 167624119c2aSMatthew G. Knepley { 167724119c2aSMatthew G. Knepley const PetscInt dim = 3; 1678412e9a14SMatthew G. Knepley PetscInt numCells, numVertices, v; 16799fe9f049SMatthew G. Knepley PetscMPIInt rank; 168024119c2aSMatthew G. Knepley 168124119c2aSMatthew G. Knepley PetscFunctionBegin; 168263a3b9bcSJacob Faibussowitsch PetscCheck(n >= 0,PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of wedges %" PetscInt_FMT " cannot be negative", n); 16839566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank)); 16849566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 1685412e9a14SMatthew G. Knepley /* Must create the celltype label here so that we do not automatically try to compute the types */ 16869566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm, "celltype")); 168724119c2aSMatthew G. Knepley /* Create topology */ 168824119c2aSMatthew G. Knepley { 168924119c2aSMatthew G. Knepley PetscInt cone[6], c; 169024119c2aSMatthew G. Knepley 1691dd400576SPatrick Sanan numCells = rank == 0 ? n : 0; 1692dd400576SPatrick Sanan numVertices = rank == 0 ? 2*(n+1) : 0; 16939566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVertices)); 16949566063dSJacob Faibussowitsch for (c = 0; c < numCells; c++) PetscCall(DMPlexSetConeSize(dm, c, 6)); 16959566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); 169624119c2aSMatthew G. Knepley for (c = 0; c < numCells; c++) { 169724119c2aSMatthew G. Knepley cone[0] = c+n*1; cone[1] = (c+1)%n+n*1; cone[2] = 0+3*n; 169824119c2aSMatthew G. Knepley cone[3] = c+n*2; cone[4] = (c+1)%n+n*2; cone[5] = 1+3*n; 16999566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, c, cone)); 17009566063dSJacob Faibussowitsch PetscCall(DMPlexSetCellType(dm, c, DM_POLYTOPE_TRI_PRISM_TENSOR)); 170124119c2aSMatthew G. Knepley } 17029566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 17039566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 170424119c2aSMatthew G. Knepley } 1705412e9a14SMatthew G. Knepley for (v = numCells; v < numCells+numVertices; ++v) { 17069566063dSJacob Faibussowitsch PetscCall(DMPlexSetCellType(dm, v, DM_POLYTOPE_POINT)); 170724119c2aSMatthew G. Knepley } 170824119c2aSMatthew G. Knepley /* Create cylinder geometry */ 170924119c2aSMatthew G. Knepley { 171024119c2aSMatthew G. Knepley Vec coordinates; 171124119c2aSMatthew G. Knepley PetscSection coordSection; 171224119c2aSMatthew G. Knepley PetscScalar *coords; 1713412e9a14SMatthew G. Knepley PetscInt coordSize, c; 171424119c2aSMatthew G. Knepley 171524119c2aSMatthew G. Knepley /* Build coordinates */ 17169566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 17179566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 17189566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dim)); 17199566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, numCells, numCells+numVertices)); 172024119c2aSMatthew G. Knepley for (v = numCells; v < numCells+numVertices; ++v) { 17219566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, dim)); 17229566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dim)); 172324119c2aSMatthew G. Knepley } 17249566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 17259566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 17269566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 17279566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 17289566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 17299566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, dim)); 17309566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 17319566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 173224119c2aSMatthew G. Knepley for (c = 0; c < numCells; c++) { 173324119c2aSMatthew G. Knepley coords[(c+0*n)*dim+0] = PetscCosReal(2.0*c*PETSC_PI/n); coords[(c+0*n)*dim+1] = PetscSinReal(2.0*c*PETSC_PI/n); coords[(c+0*n)*dim+2] = 1.0; 173424119c2aSMatthew G. Knepley coords[(c+1*n)*dim+0] = PetscCosReal(2.0*c*PETSC_PI/n); coords[(c+1*n)*dim+1] = PetscSinReal(2.0*c*PETSC_PI/n); coords[(c+1*n)*dim+2] = 0.0; 173524119c2aSMatthew G. Knepley } 1736dd400576SPatrick Sanan if (rank == 0) { 173724119c2aSMatthew G. Knepley coords[(2*n+0)*dim+0] = 0.0; coords[(2*n+0)*dim+1] = 0.0; coords[(2*n+0)*dim+2] = 1.0; 173824119c2aSMatthew G. Knepley coords[(2*n+1)*dim+0] = 0.0; coords[(2*n+1)*dim+1] = 0.0; coords[(2*n+1)*dim+2] = 0.0; 17399fe9f049SMatthew G. Knepley } 17409566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 17419566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 17429566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 174324119c2aSMatthew G. Knepley } 17449318fe57SMatthew G. Knepley /* Interpolate */ 17459566063dSJacob Faibussowitsch if (interpolate) PetscCall(DMPlexInterpolateInPlace_Internal(dm)); 17469318fe57SMatthew G. Knepley PetscFunctionReturn(0); 17479318fe57SMatthew G. Knepley } 17489318fe57SMatthew G. Knepley 17499318fe57SMatthew G. Knepley /*@ 17509318fe57SMatthew G. Knepley DMPlexCreateWedgeCylinderMesh - Creates a mesh on the tensor product of the unit interval with the circle (cylinder) using wedges. 17519318fe57SMatthew G. Knepley 17529318fe57SMatthew G. Knepley Collective 17539318fe57SMatthew G. Knepley 17549318fe57SMatthew G. Knepley Input Parameters: 17559318fe57SMatthew G. Knepley + comm - The communicator for the DM object 17569318fe57SMatthew G. Knepley . n - The number of wedges around the origin 17579318fe57SMatthew G. Knepley - interpolate - Create edges and faces 17589318fe57SMatthew G. Knepley 17599318fe57SMatthew G. Knepley Output Parameter: 17609318fe57SMatthew G. Knepley . dm - The DM object 17619318fe57SMatthew G. Knepley 17629318fe57SMatthew G. Knepley Level: beginner 17639318fe57SMatthew G. Knepley 1764db781477SPatrick Sanan .seealso: `DMPlexCreateHexCylinderMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()` 17659318fe57SMatthew G. Knepley @*/ 17669318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateWedgeCylinderMesh(MPI_Comm comm, PetscInt n, PetscBool interpolate, DM *dm) 17679318fe57SMatthew G. Knepley { 17689318fe57SMatthew G. Knepley PetscFunctionBegin; 17699318fe57SMatthew G. Knepley PetscValidPointer(dm, 4); 17709566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 17719566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 17729566063dSJacob Faibussowitsch PetscCall(DMPlexCreateWedgeCylinderMesh_Internal(*dm, n, interpolate)); 177324119c2aSMatthew G. Knepley PetscFunctionReturn(0); 177424119c2aSMatthew G. Knepley } 177524119c2aSMatthew G. Knepley 17769fbee547SJacob Faibussowitsch static inline PetscReal DiffNormReal(PetscInt dim, const PetscReal x[], const PetscReal y[]) 177765a81367SMatthew G. Knepley { 177865a81367SMatthew G. Knepley PetscReal prod = 0.0; 177965a81367SMatthew G. Knepley PetscInt i; 178065a81367SMatthew G. Knepley for (i = 0; i < dim; ++i) prod += PetscSqr(x[i] - y[i]); 178165a81367SMatthew G. Knepley return PetscSqrtReal(prod); 178265a81367SMatthew G. Knepley } 17839fbee547SJacob Faibussowitsch static inline PetscReal DotReal(PetscInt dim, const PetscReal x[], const PetscReal y[]) 178465a81367SMatthew G. Knepley { 178565a81367SMatthew G. Knepley PetscReal prod = 0.0; 178665a81367SMatthew G. Knepley PetscInt i; 178765a81367SMatthew G. Knepley for (i = 0; i < dim; ++i) prod += x[i]*y[i]; 178865a81367SMatthew G. Knepley return prod; 178965a81367SMatthew G. Knepley } 179065a81367SMatthew G. Knepley 179151a74b61SMatthew G. Knepley /* The first constant is the sphere radius */ 179251a74b61SMatthew G. Knepley static void snapToSphere(PetscInt dim, PetscInt Nf, PetscInt NfAux, 179351a74b61SMatthew G. Knepley const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], 179451a74b61SMatthew G. Knepley const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], 179551a74b61SMatthew G. Knepley PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f0[]) 179651a74b61SMatthew G. Knepley { 179751a74b61SMatthew G. Knepley PetscReal r = PetscRealPart(constants[0]); 179851a74b61SMatthew G. Knepley PetscReal norm2 = 0.0, fac; 179951a74b61SMatthew G. Knepley PetscInt n = uOff[1] - uOff[0], d; 180051a74b61SMatthew G. Knepley 180151a74b61SMatthew G. Knepley for (d = 0; d < n; ++d) norm2 += PetscSqr(PetscRealPart(u[d])); 180251a74b61SMatthew G. Knepley fac = r/PetscSqrtReal(norm2); 180351a74b61SMatthew G. Knepley for (d = 0; d < n; ++d) f0[d] = u[d]*fac; 180451a74b61SMatthew G. Knepley } 180551a74b61SMatthew G. Knepley 18069318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateSphereMesh_Internal(DM dm, PetscInt dim, PetscBool simplex, PetscReal R) 18072829fed8SMatthew G. Knepley { 180865a81367SMatthew G. Knepley const PetscInt embedDim = dim+1; 180965a81367SMatthew G. Knepley PetscSection coordSection; 181065a81367SMatthew G. Knepley Vec coordinates; 181165a81367SMatthew G. Knepley PetscScalar *coords; 181265a81367SMatthew G. Knepley PetscReal *coordsIn; 181365a81367SMatthew G. Knepley PetscInt numCells, numEdges, numVerts, firstVertex, v, firstEdge, coordSize, d, c, e; 181465a81367SMatthew G. Knepley PetscMPIInt rank; 181565a81367SMatthew G. Knepley 181665a81367SMatthew G. Knepley PetscFunctionBegin; 18179318fe57SMatthew G. Knepley PetscValidLogicalCollectiveBool(dm, simplex, 3); 18189566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, dim)); 18199566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, dim+1)); 18209566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank)); 182165a81367SMatthew G. Knepley switch (dim) { 182265a81367SMatthew G. Knepley case 2: 182365a81367SMatthew G. Knepley if (simplex) { 182451a74b61SMatthew G. Knepley const PetscReal radius = PetscSqrtReal(1 + PETSC_PHI*PETSC_PHI)/(1.0 + PETSC_PHI); 182551a74b61SMatthew G. Knepley const PetscReal edgeLen = 2.0/(1.0 + PETSC_PHI) * (R/radius); 182665a81367SMatthew G. Knepley const PetscInt degree = 5; 182751a74b61SMatthew G. Knepley PetscReal vertex[3] = {0.0, 1.0/(1.0 + PETSC_PHI), PETSC_PHI/(1.0 + PETSC_PHI)}; 182865a81367SMatthew G. Knepley PetscInt s[3] = {1, 1, 1}; 182965a81367SMatthew G. Knepley PetscInt cone[3]; 183065a81367SMatthew G. Knepley PetscInt *graph, p, i, j, k; 183165a81367SMatthew G. Knepley 183251a74b61SMatthew G. Knepley vertex[0] *= R/radius; vertex[1] *= R/radius; vertex[2] *= R/radius; 1833dd400576SPatrick Sanan numCells = rank == 0 ? 20 : 0; 1834dd400576SPatrick Sanan numVerts = rank == 0 ? 12 : 0; 183565a81367SMatthew G. Knepley firstVertex = numCells; 183651a74b61SMatthew G. Knepley /* Use icosahedron, which for a R-sphere has coordinates which are all cyclic permutations of 183765a81367SMatthew G. Knepley 183865a81367SMatthew G. Knepley (0, \pm 1/\phi+1, \pm \phi/\phi+1) 183965a81367SMatthew G. Knepley 184065a81367SMatthew G. Knepley where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge 184151a74b61SMatthew G. Knepley length is then given by 2/(1+\phi) = 2 * 0.38197 = 0.76393. 184265a81367SMatthew G. Knepley */ 184365a81367SMatthew G. Knepley /* Construct vertices */ 18449566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn)); 1845dd400576SPatrick Sanan if (rank == 0) { 184665a81367SMatthew G. Knepley for (p = 0, i = 0; p < embedDim; ++p) { 184765a81367SMatthew G. Knepley for (s[1] = -1; s[1] < 2; s[1] += 2) { 184865a81367SMatthew G. Knepley for (s[2] = -1; s[2] < 2; s[2] += 2) { 184965a81367SMatthew G. Knepley for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[(d+p)%embedDim]*vertex[(d+p)%embedDim]; 185065a81367SMatthew G. Knepley ++i; 185165a81367SMatthew G. Knepley } 185265a81367SMatthew G. Knepley } 185365a81367SMatthew G. Knepley } 185445da822fSValeria Barra } 185565a81367SMatthew G. Knepley /* Construct graph */ 18569566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numVerts * numVerts, &graph)); 185765a81367SMatthew G. Knepley for (i = 0; i < numVerts; ++i) { 185865a81367SMatthew G. Knepley for (j = 0, k = 0; j < numVerts; ++j) { 185965a81367SMatthew G. Knepley if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i*embedDim], &coordsIn[j*embedDim]) - edgeLen) < PETSC_SMALL) {graph[i*numVerts+j] = 1; ++k;} 186065a81367SMatthew G. Knepley } 186163a3b9bcSJacob Faibussowitsch PetscCheck(k == degree,PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid icosahedron, vertex %" PetscInt_FMT " degree %" PetscInt_FMT " != %" PetscInt_FMT, i, k, degree); 186265a81367SMatthew G. Knepley } 186365a81367SMatthew G. Knepley /* Build Topology */ 18649566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVerts)); 186565a81367SMatthew G. Knepley for (c = 0; c < numCells; c++) { 18669566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, c, embedDim)); 186765a81367SMatthew G. Knepley } 18689566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 186965a81367SMatthew G. Knepley /* Cells */ 187065a81367SMatthew G. Knepley for (i = 0, c = 0; i < numVerts; ++i) { 187165a81367SMatthew G. Knepley for (j = 0; j < i; ++j) { 187265a81367SMatthew G. Knepley for (k = 0; k < j; ++k) { 187365a81367SMatthew G. Knepley if (graph[i*numVerts+j] && graph[j*numVerts+k] && graph[k*numVerts+i]) { 187465a81367SMatthew G. Knepley cone[0] = firstVertex+i; cone[1] = firstVertex+j; cone[2] = firstVertex+k; 187565a81367SMatthew G. Knepley /* Check orientation */ 187665a81367SMatthew G. Knepley { 187765a81367SMatthew G. Knepley const PetscInt epsilon[3][3][3] = {{{0, 0, 0}, {0, 0, 1}, {0, -1, 0}}, {{0, 0, -1}, {0, 0, 0}, {1, 0, 0}}, {{0, 1, 0}, {-1, 0, 0}, {0, 0, 0}}}; 187865a81367SMatthew G. Knepley PetscReal normal[3]; 187965a81367SMatthew G. Knepley PetscInt e, f; 188065a81367SMatthew G. Knepley 188165a81367SMatthew G. Knepley for (d = 0; d < embedDim; ++d) { 188265a81367SMatthew G. Knepley normal[d] = 0.0; 188365a81367SMatthew G. Knepley for (e = 0; e < embedDim; ++e) { 188465a81367SMatthew G. Knepley for (f = 0; f < embedDim; ++f) { 188565a81367SMatthew G. Knepley normal[d] += epsilon[d][e][f]*(coordsIn[j*embedDim+e] - coordsIn[i*embedDim+e])*(coordsIn[k*embedDim+f] - coordsIn[i*embedDim+f]); 188665a81367SMatthew G. Knepley } 188765a81367SMatthew G. Knepley } 188865a81367SMatthew G. Knepley } 188965a81367SMatthew G. Knepley if (DotReal(embedDim, normal, &coordsIn[i*embedDim]) < 0) {PetscInt tmp = cone[1]; cone[1] = cone[2]; cone[2] = tmp;} 189065a81367SMatthew G. Knepley } 18919566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, c++, cone)); 189265a81367SMatthew G. Knepley } 189365a81367SMatthew G. Knepley } 189465a81367SMatthew G. Knepley } 189565a81367SMatthew G. Knepley } 18969566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 18979566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 18989566063dSJacob Faibussowitsch PetscCall(PetscFree(graph)); 189965a81367SMatthew G. Knepley } else { 19002829fed8SMatthew G. Knepley /* 19012829fed8SMatthew G. Knepley 12-21--13 19022829fed8SMatthew G. Knepley | | 19032829fed8SMatthew G. Knepley 25 4 24 19042829fed8SMatthew G. Knepley | | 19052829fed8SMatthew G. Knepley 12-25--9-16--8-24--13 19062829fed8SMatthew G. Knepley | | | | 19072829fed8SMatthew G. Knepley 23 5 17 0 15 3 22 19082829fed8SMatthew G. Knepley | | | | 19092829fed8SMatthew G. Knepley 10-20--6-14--7-19--11 19102829fed8SMatthew G. Knepley | | 19112829fed8SMatthew G. Knepley 20 1 19 19122829fed8SMatthew G. Knepley | | 19132829fed8SMatthew G. Knepley 10-18--11 19142829fed8SMatthew G. Knepley | | 19152829fed8SMatthew G. Knepley 23 2 22 19162829fed8SMatthew G. Knepley | | 19172829fed8SMatthew G. Knepley 12-21--13 19182829fed8SMatthew G. Knepley */ 19192829fed8SMatthew G. Knepley PetscInt cone[4], ornt[4]; 19202829fed8SMatthew G. Knepley 1921dd400576SPatrick Sanan numCells = rank == 0 ? 6 : 0; 1922dd400576SPatrick Sanan numEdges = rank == 0 ? 12 : 0; 1923dd400576SPatrick Sanan numVerts = rank == 0 ? 8 : 0; 192465a81367SMatthew G. Knepley firstVertex = numCells; 192565a81367SMatthew G. Knepley firstEdge = numCells + numVerts; 19262829fed8SMatthew G. Knepley /* Build Topology */ 19279566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numEdges+numVerts)); 19282829fed8SMatthew G. Knepley for (c = 0; c < numCells; c++) { 19299566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, c, 4)); 19302829fed8SMatthew G. Knepley } 19312829fed8SMatthew G. Knepley for (e = firstEdge; e < firstEdge+numEdges; ++e) { 19329566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, e, 2)); 19332829fed8SMatthew G. Knepley } 19349566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 1935dd400576SPatrick Sanan if (rank == 0) { 19362829fed8SMatthew G. Knepley /* Cell 0 */ 19372829fed8SMatthew G. Knepley cone[0] = 14; cone[1] = 15; cone[2] = 16; cone[3] = 17; 19389566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 0, cone)); 19392829fed8SMatthew G. Knepley ornt[0] = 0; ornt[1] = 0; ornt[2] = 0; ornt[3] = 0; 19409566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 0, ornt)); 19412829fed8SMatthew G. Knepley /* Cell 1 */ 19422829fed8SMatthew G. Knepley cone[0] = 18; cone[1] = 19; cone[2] = 14; cone[3] = 20; 19439566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 1, cone)); 1944b5a892a1SMatthew G. Knepley ornt[0] = 0; ornt[1] = 0; ornt[2] = -1; ornt[3] = 0; 19459566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 1, ornt)); 19462829fed8SMatthew G. Knepley /* Cell 2 */ 19472829fed8SMatthew G. Knepley cone[0] = 21; cone[1] = 22; cone[2] = 18; cone[3] = 23; 19489566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 2, cone)); 1949b5a892a1SMatthew G. Knepley ornt[0] = 0; ornt[1] = 0; ornt[2] = -1; ornt[3] = 0; 19509566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 2, ornt)); 19512829fed8SMatthew G. Knepley /* Cell 3 */ 19522829fed8SMatthew G. Knepley cone[0] = 19; cone[1] = 22; cone[2] = 24; cone[3] = 15; 19539566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 3, cone)); 1954b5a892a1SMatthew G. Knepley ornt[0] = -1; ornt[1] = -1; ornt[2] = 0; ornt[3] = -1; 19559566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 3, ornt)); 19562829fed8SMatthew G. Knepley /* Cell 4 */ 19572829fed8SMatthew G. Knepley cone[0] = 16; cone[1] = 24; cone[2] = 21; cone[3] = 25; 19589566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 4, cone)); 1959b5a892a1SMatthew G. Knepley ornt[0] = -1; ornt[1] = -1; ornt[2] = -1; ornt[3] = 0; 19609566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 4, ornt)); 19612829fed8SMatthew G. Knepley /* Cell 5 */ 19622829fed8SMatthew G. Knepley cone[0] = 20; cone[1] = 17; cone[2] = 25; cone[3] = 23; 19639566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 5, cone)); 1964b5a892a1SMatthew G. Knepley ornt[0] = -1; ornt[1] = -1; ornt[2] = -1; ornt[3] = -1; 19659566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, 5, ornt)); 19662829fed8SMatthew G. Knepley /* Edges */ 19672829fed8SMatthew G. Knepley cone[0] = 6; cone[1] = 7; 19689566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 14, cone)); 19692829fed8SMatthew G. Knepley cone[0] = 7; cone[1] = 8; 19709566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 15, cone)); 19712829fed8SMatthew G. Knepley cone[0] = 8; cone[1] = 9; 19729566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 16, cone)); 19732829fed8SMatthew G. Knepley cone[0] = 9; cone[1] = 6; 19749566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 17, cone)); 19752829fed8SMatthew G. Knepley cone[0] = 10; cone[1] = 11; 19769566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 18, cone)); 19772829fed8SMatthew G. Knepley cone[0] = 11; cone[1] = 7; 19789566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 19, cone)); 19792829fed8SMatthew G. Knepley cone[0] = 6; cone[1] = 10; 19809566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 20, cone)); 19812829fed8SMatthew G. Knepley cone[0] = 12; cone[1] = 13; 19829566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 21, cone)); 19832829fed8SMatthew G. Knepley cone[0] = 13; cone[1] = 11; 19849566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 22, cone)); 19852829fed8SMatthew G. Knepley cone[0] = 10; cone[1] = 12; 19869566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 23, cone)); 19872829fed8SMatthew G. Knepley cone[0] = 13; cone[1] = 8; 19889566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 24, cone)); 19892829fed8SMatthew G. Knepley cone[0] = 12; cone[1] = 9; 19909566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, 25, cone)); 199145da822fSValeria Barra } 19929566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 19939566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 19942829fed8SMatthew G. Knepley /* Build coordinates */ 19959566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn)); 1996dd400576SPatrick Sanan if (rank == 0) { 199751a74b61SMatthew G. Knepley coordsIn[0*embedDim+0] = -R; coordsIn[0*embedDim+1] = R; coordsIn[0*embedDim+2] = -R; 199851a74b61SMatthew G. Knepley coordsIn[1*embedDim+0] = R; coordsIn[1*embedDim+1] = R; coordsIn[1*embedDim+2] = -R; 199951a74b61SMatthew G. Knepley coordsIn[2*embedDim+0] = R; coordsIn[2*embedDim+1] = -R; coordsIn[2*embedDim+2] = -R; 200051a74b61SMatthew G. Knepley coordsIn[3*embedDim+0] = -R; coordsIn[3*embedDim+1] = -R; coordsIn[3*embedDim+2] = -R; 200151a74b61SMatthew G. Knepley coordsIn[4*embedDim+0] = -R; coordsIn[4*embedDim+1] = R; coordsIn[4*embedDim+2] = R; 200251a74b61SMatthew G. Knepley coordsIn[5*embedDim+0] = R; coordsIn[5*embedDim+1] = R; coordsIn[5*embedDim+2] = R; 200351a74b61SMatthew G. Knepley coordsIn[6*embedDim+0] = -R; coordsIn[6*embedDim+1] = -R; coordsIn[6*embedDim+2] = R; 200451a74b61SMatthew G. Knepley coordsIn[7*embedDim+0] = R; coordsIn[7*embedDim+1] = -R; coordsIn[7*embedDim+2] = R; 200565a81367SMatthew G. Knepley } 200645da822fSValeria Barra } 200765a81367SMatthew G. Knepley break; 200865a81367SMatthew G. Knepley case 3: 2009116ded15SMatthew G. Knepley if (simplex) { 2010116ded15SMatthew G. Knepley const PetscReal edgeLen = 1.0/PETSC_PHI; 201151a74b61SMatthew G. Knepley PetscReal vertexA[4] = {0.5, 0.5, 0.5, 0.5}; 201251a74b61SMatthew G. Knepley PetscReal vertexB[4] = {1.0, 0.0, 0.0, 0.0}; 201351a74b61SMatthew G. Knepley PetscReal vertexC[4] = {0.5, 0.5*PETSC_PHI, 0.5/PETSC_PHI, 0.0}; 2014116ded15SMatthew G. Knepley const PetscInt degree = 12; 2015116ded15SMatthew G. Knepley PetscInt s[4] = {1, 1, 1}; 2016116ded15SMatthew G. Knepley PetscInt evenPerm[12][4] = {{0, 1, 2, 3}, {0, 2, 3, 1}, {0, 3, 1, 2}, {1, 0, 3, 2}, {1, 2, 0, 3}, {1, 3, 2, 0}, 2017116ded15SMatthew G. Knepley {2, 0, 1, 3}, {2, 1, 3, 0}, {2, 3, 0, 1}, {3, 0, 2, 1}, {3, 1, 0, 2}, {3, 2, 1, 0}}; 2018116ded15SMatthew G. Knepley PetscInt cone[4]; 2019116ded15SMatthew G. Knepley PetscInt *graph, p, i, j, k, l; 2020116ded15SMatthew G. Knepley 202151a74b61SMatthew G. Knepley vertexA[0] *= R; vertexA[1] *= R; vertexA[2] *= R; vertexA[3] *= R; 202251a74b61SMatthew G. Knepley vertexB[0] *= R; vertexB[1] *= R; vertexB[2] *= R; vertexB[3] *= R; 202351a74b61SMatthew G. Knepley vertexC[0] *= R; vertexC[1] *= R; vertexC[2] *= R; vertexC[3] *= R; 2024dd400576SPatrick Sanan numCells = rank == 0 ? 600 : 0; 2025dd400576SPatrick Sanan numVerts = rank == 0 ? 120 : 0; 2026116ded15SMatthew G. Knepley firstVertex = numCells; 2027116ded15SMatthew G. Knepley /* Use the 600-cell, which for a unit sphere has coordinates which are 2028116ded15SMatthew G. Knepley 2029116ded15SMatthew G. Knepley 1/2 (\pm 1, \pm 1, \pm 1, \pm 1) 16 2030116ded15SMatthew G. Knepley (\pm 1, 0, 0, 0) all cyclic permutations 8 2031116ded15SMatthew G. Knepley 1/2 (\pm 1, \pm phi, \pm 1/phi, 0) all even permutations 96 2032116ded15SMatthew G. Knepley 2033116ded15SMatthew G. Knepley where \phi^2 - \phi - 1 = 0, meaning \phi is the golden ratio \frac{1 + \sqrt{5}}{2}. The edge 20346333ae4fSvaleriabarra length is then given by 1/\phi = 0.61803. 2035116ded15SMatthew G. Knepley 2036116ded15SMatthew G. Knepley http://buzzard.pugetsound.edu/sage-practice/ch03s03.html 2037116ded15SMatthew G. Knepley http://mathworld.wolfram.com/600-Cell.html 2038116ded15SMatthew G. Knepley */ 2039116ded15SMatthew G. Knepley /* Construct vertices */ 20409566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numVerts * embedDim, &coordsIn)); 2041116ded15SMatthew G. Knepley i = 0; 2042dd400576SPatrick Sanan if (rank == 0) { 2043116ded15SMatthew G. Knepley for (s[0] = -1; s[0] < 2; s[0] += 2) { 2044116ded15SMatthew G. Knepley for (s[1] = -1; s[1] < 2; s[1] += 2) { 2045116ded15SMatthew G. Knepley for (s[2] = -1; s[2] < 2; s[2] += 2) { 2046116ded15SMatthew G. Knepley for (s[3] = -1; s[3] < 2; s[3] += 2) { 2047116ded15SMatthew G. Knepley for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[d]*vertexA[d]; 2048116ded15SMatthew G. Knepley ++i; 2049116ded15SMatthew G. Knepley } 2050116ded15SMatthew G. Knepley } 2051116ded15SMatthew G. Knepley } 2052116ded15SMatthew G. Knepley } 2053116ded15SMatthew G. Knepley for (p = 0; p < embedDim; ++p) { 2054116ded15SMatthew G. Knepley s[1] = s[2] = s[3] = 1; 2055116ded15SMatthew G. Knepley for (s[0] = -1; s[0] < 2; s[0] += 2) { 2056116ded15SMatthew G. Knepley for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[(d+p)%embedDim]*vertexB[(d+p)%embedDim]; 2057116ded15SMatthew G. Knepley ++i; 2058116ded15SMatthew G. Knepley } 2059116ded15SMatthew G. Knepley } 2060116ded15SMatthew G. Knepley for (p = 0; p < 12; ++p) { 2061116ded15SMatthew G. Knepley s[3] = 1; 2062116ded15SMatthew G. Knepley for (s[0] = -1; s[0] < 2; s[0] += 2) { 2063116ded15SMatthew G. Knepley for (s[1] = -1; s[1] < 2; s[1] += 2) { 2064116ded15SMatthew G. Knepley for (s[2] = -1; s[2] < 2; s[2] += 2) { 2065116ded15SMatthew G. Knepley for (d = 0; d < embedDim; ++d) coordsIn[i*embedDim+d] = s[evenPerm[p][d]]*vertexC[evenPerm[p][d]]; 2066116ded15SMatthew G. Knepley ++i; 2067116ded15SMatthew G. Knepley } 2068116ded15SMatthew G. Knepley } 2069116ded15SMatthew G. Knepley } 2070116ded15SMatthew G. Knepley } 207145da822fSValeria Barra } 207263a3b9bcSJacob Faibussowitsch PetscCheck(i == numVerts,PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid 600-cell, vertices %" PetscInt_FMT " != %" PetscInt_FMT, i, numVerts); 2073116ded15SMatthew G. Knepley /* Construct graph */ 20749566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numVerts * numVerts, &graph)); 2075116ded15SMatthew G. Knepley for (i = 0; i < numVerts; ++i) { 2076116ded15SMatthew G. Knepley for (j = 0, k = 0; j < numVerts; ++j) { 2077116ded15SMatthew G. Knepley if (PetscAbsReal(DiffNormReal(embedDim, &coordsIn[i*embedDim], &coordsIn[j*embedDim]) - edgeLen) < PETSC_SMALL) {graph[i*numVerts+j] = 1; ++k;} 2078116ded15SMatthew G. Knepley } 207963a3b9bcSJacob Faibussowitsch PetscCheck(k == degree,PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid 600-cell, vertex %" PetscInt_FMT " degree %" PetscInt_FMT " != %" PetscInt_FMT, i, k, degree); 2080116ded15SMatthew G. Knepley } 2081116ded15SMatthew G. Knepley /* Build Topology */ 20829566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVerts)); 2083116ded15SMatthew G. Knepley for (c = 0; c < numCells; c++) { 20849566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, c, embedDim)); 2085116ded15SMatthew G. Knepley } 20869566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 2087116ded15SMatthew G. Knepley /* Cells */ 2088dd400576SPatrick Sanan if (rank == 0) { 2089116ded15SMatthew G. Knepley for (i = 0, c = 0; i < numVerts; ++i) { 2090116ded15SMatthew G. Knepley for (j = 0; j < i; ++j) { 2091116ded15SMatthew G. Knepley for (k = 0; k < j; ++k) { 2092116ded15SMatthew G. Knepley for (l = 0; l < k; ++l) { 2093116ded15SMatthew G. Knepley if (graph[i*numVerts+j] && graph[j*numVerts+k] && graph[k*numVerts+i] && 2094116ded15SMatthew G. Knepley graph[l*numVerts+i] && graph[l*numVerts+j] && graph[l*numVerts+k]) { 2095116ded15SMatthew G. Knepley cone[0] = firstVertex+i; cone[1] = firstVertex+j; cone[2] = firstVertex+k; cone[3] = firstVertex+l; 2096116ded15SMatthew G. Knepley /* Check orientation: https://ef.gy/linear-algebra:normal-vectors-in-higher-dimensional-spaces */ 2097116ded15SMatthew G. Knepley { 2098116ded15SMatthew G. Knepley const PetscInt epsilon[4][4][4][4] = {{{{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}, 2099116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 1}, { 0, 0, -1, 0}}, 2100116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 0, -1}, { 0, 0, 0, 0}, { 0, 1, 0, 0}}, 2101116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 1, 0}, { 0, -1, 0, 0}, { 0, 0, 0, 0}}}, 2102116ded15SMatthew G. Knepley 2103116ded15SMatthew G. Knepley {{{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, -1}, { 0, 0, 1, 0}}, 2104116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}, 2105116ded15SMatthew G. Knepley {{0, 0, 0, 1}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, {-1, 0, 0, 0}}, 2106116ded15SMatthew G. Knepley {{0, 0, -1, 0}, { 0, 0, 0, 0}, { 1, 0, 0, 0}, { 0, 0, 0, 0}}}, 2107116ded15SMatthew G. Knepley 2108116ded15SMatthew G. Knepley {{{0, 0, 0, 0}, { 0, 0, 0, 1}, { 0, 0, 0, 0}, { 0, -1, 0, 0}}, 2109116ded15SMatthew G. Knepley {{0, 0, 0, -1}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, { 1, 0, 0, 0}}, 2110116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}, 2111116ded15SMatthew G. Knepley {{0, 1, 0, 0}, {-1, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}}, 2112116ded15SMatthew G. Knepley 2113116ded15SMatthew G. Knepley {{{0, 0, 0, 0}, { 0, 0, -1, 0}, { 0, 1, 0, 0}, { 0, 0, 0, 0}}, 2114116ded15SMatthew G. Knepley {{0, 0, 1, 0}, { 0, 0, 0, 0}, {-1, 0, 0, 0}, { 0, 0, 0, 0}}, 2115116ded15SMatthew G. Knepley {{0, -1, 0, 0}, { 1, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}, 2116116ded15SMatthew G. Knepley {{0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}, { 0, 0, 0, 0}}}}; 2117116ded15SMatthew G. Knepley PetscReal normal[4]; 2118116ded15SMatthew G. Knepley PetscInt e, f, g; 2119116ded15SMatthew G. Knepley 2120116ded15SMatthew G. Knepley for (d = 0; d < embedDim; ++d) { 2121116ded15SMatthew G. Knepley normal[d] = 0.0; 2122116ded15SMatthew G. Knepley for (e = 0; e < embedDim; ++e) { 2123116ded15SMatthew G. Knepley for (f = 0; f < embedDim; ++f) { 2124116ded15SMatthew G. Knepley for (g = 0; g < embedDim; ++g) { 2125116ded15SMatthew 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]); 2126116ded15SMatthew G. Knepley } 2127116ded15SMatthew G. Knepley } 2128116ded15SMatthew G. Knepley } 2129116ded15SMatthew G. Knepley } 2130116ded15SMatthew G. Knepley if (DotReal(embedDim, normal, &coordsIn[i*embedDim]) < 0) {PetscInt tmp = cone[1]; cone[1] = cone[2]; cone[2] = tmp;} 2131116ded15SMatthew G. Knepley } 21329566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, c++, cone)); 2133116ded15SMatthew G. Knepley } 2134116ded15SMatthew G. Knepley } 2135116ded15SMatthew G. Knepley } 2136116ded15SMatthew G. Knepley } 2137116ded15SMatthew G. Knepley } 213845da822fSValeria Barra } 21399566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 21409566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 21419566063dSJacob Faibussowitsch PetscCall(PetscFree(graph)); 2142116ded15SMatthew G. Knepley break; 2143116ded15SMatthew G. Knepley } 214463a3b9bcSJacob Faibussowitsch default: SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Unsupported dimension for sphere: %" PetscInt_FMT, dim); 214565a81367SMatthew G. Knepley } 214665a81367SMatthew G. Knepley /* Create coordinates */ 21479566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 21489566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 21499566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, embedDim)); 21509566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex+numVerts)); 21512829fed8SMatthew G. Knepley for (v = firstVertex; v < firstVertex+numVerts; ++v) { 21529566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, embedDim)); 21539566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, embedDim)); 21542829fed8SMatthew G. Knepley } 21559566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 21569566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 21579566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 21589566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, embedDim)); 21599566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 21609566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 21619566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 21629566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 216365a81367SMatthew G. Knepley for (v = 0; v < numVerts; ++v) for (d = 0; d < embedDim; ++d) {coords[v*embedDim+d] = coordsIn[v*embedDim+d];} 21649566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 21659566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 21669566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 21679566063dSJacob Faibussowitsch PetscCall(PetscFree(coordsIn)); 216851a74b61SMatthew G. Knepley { 216951a74b61SMatthew G. Knepley DM cdm; 217051a74b61SMatthew G. Knepley PetscDS cds; 21719318fe57SMatthew G. Knepley PetscScalar c = R; 217251a74b61SMatthew G. Knepley 21739566063dSJacob Faibussowitsch PetscCall(DMPlexCreateCoordinateSpace(dm, 1, snapToSphere)); 21749566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 21759566063dSJacob Faibussowitsch PetscCall(DMGetDS(cdm, &cds)); 21769566063dSJacob Faibussowitsch PetscCall(PetscDSSetConstants(cds, 1, &c)); 217751a74b61SMatthew G. Knepley } 21789318fe57SMatthew G. Knepley /* Wait for coordinate creation before doing in-place modification */ 21799566063dSJacob Faibussowitsch if (simplex) PetscCall(DMPlexInterpolateInPlace_Internal(dm)); 21809318fe57SMatthew G. Knepley PetscFunctionReturn(0); 21819318fe57SMatthew G. Knepley } 21829318fe57SMatthew G. Knepley 2183b7f5c055SJed Brown typedef void (*TPSEvaluateFunc)(const PetscReal[], PetscReal*, PetscReal[], PetscReal(*)[3]); 2184b7f5c055SJed Brown 2185b7f5c055SJed Brown /* 2186b7f5c055SJed Brown The Schwarz P implicit surface is 2187b7f5c055SJed Brown 2188b7f5c055SJed Brown f(x) = cos(x0) + cos(x1) + cos(x2) = 0 2189b7f5c055SJed Brown */ 2190b7f5c055SJed Brown static void TPSEvaluate_SchwarzP(const PetscReal y[3], PetscReal *f, PetscReal grad[], PetscReal (*hess)[3]) 2191b7f5c055SJed Brown { 2192b7f5c055SJed Brown PetscReal c[3] = {PetscCosReal(y[0] * PETSC_PI), PetscCosReal(y[1] * PETSC_PI), PetscCosReal(y[2] * PETSC_PI)}; 2193b7f5c055SJed Brown PetscReal g[3] = {-PetscSinReal(y[0] * PETSC_PI), -PetscSinReal(y[1] * PETSC_PI), -PetscSinReal(y[2] * PETSC_PI)}; 2194b7f5c055SJed Brown f[0] = c[0] + c[1] + c[2]; 2195b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) { 2196b7f5c055SJed Brown grad[i] = PETSC_PI * g[i]; 2197b7f5c055SJed Brown for (PetscInt j=0; j<3; j++) { 2198b7f5c055SJed Brown hess[i][j] = (i == j) ? -PetscSqr(PETSC_PI) * c[i] : 0.; 2199b7f5c055SJed Brown } 2200b7f5c055SJed Brown } 2201b7f5c055SJed Brown } 2202b7f5c055SJed Brown 22034663dae6SJed Brown // u[] is a tentative normal on input. Replace with the implicit function gradient in the same direction 22044663dae6SJed Brown static PetscErrorCode TPSExtrudeNormalFunc_SchwarzP(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt r, PetscScalar u[], void *ctx) { 22054663dae6SJed Brown for (PetscInt i=0; i<3; i++) { 22064663dae6SJed Brown u[i] = -PETSC_PI * PetscSinReal(x[i] * PETSC_PI); 22074663dae6SJed Brown } 22084663dae6SJed Brown return 0; 22094663dae6SJed Brown } 22104663dae6SJed Brown 2211b7f5c055SJed Brown /* 2212b7f5c055SJed Brown The Gyroid implicit surface is 2213b7f5c055SJed Brown 2214b7f5c055SJed 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) 2215b7f5c055SJed Brown 2216b7f5c055SJed Brown */ 2217b7f5c055SJed Brown static void TPSEvaluate_Gyroid(const PetscReal y[3], PetscReal *f, PetscReal grad[], PetscReal (*hess)[3]) 2218b7f5c055SJed Brown { 2219b7f5c055SJed Brown PetscReal s[3] = {PetscSinReal(PETSC_PI * y[0]), PetscSinReal(PETSC_PI * (y[1] + .5)), PetscSinReal(PETSC_PI * (y[2] + .25))}; 2220b7f5c055SJed Brown PetscReal c[3] = {PetscCosReal(PETSC_PI * y[0]), PetscCosReal(PETSC_PI * (y[1] + .5)), PetscCosReal(PETSC_PI * (y[2] + .25))}; 2221b7f5c055SJed Brown f[0] = s[0] * c[1] + s[1] * c[2] + s[2] * c[0]; 2222b7f5c055SJed Brown grad[0] = PETSC_PI * (c[0] * c[1] - s[2] * s[0]); 2223b7f5c055SJed Brown grad[1] = PETSC_PI * (c[1] * c[2] - s[0] * s[1]); 2224b7f5c055SJed Brown grad[2] = PETSC_PI * (c[2] * c[0] - s[1] * s[2]); 2225b7f5c055SJed Brown hess[0][0] = -PetscSqr(PETSC_PI) * (s[0] * c[1] + s[2] * c[0]); 2226b7f5c055SJed Brown hess[0][1] = -PetscSqr(PETSC_PI) * (c[0] * s[1]); 2227b7f5c055SJed Brown hess[0][2] = -PetscSqr(PETSC_PI) * (c[2] * s[0]); 2228b7f5c055SJed Brown hess[1][0] = -PetscSqr(PETSC_PI) * (s[1] * c[2] + s[0] * c[1]); 2229b7f5c055SJed Brown hess[1][1] = -PetscSqr(PETSC_PI) * (c[1] * s[2]); 2230b7f5c055SJed Brown hess[2][2] = -PetscSqr(PETSC_PI) * (c[0] * s[1]); 2231b7f5c055SJed Brown hess[2][0] = -PetscSqr(PETSC_PI) * (s[2] * c[0] + s[1] * c[2]); 2232b7f5c055SJed Brown hess[2][1] = -PetscSqr(PETSC_PI) * (c[2] * s[0]); 2233b7f5c055SJed Brown hess[2][2] = -PetscSqr(PETSC_PI) * (c[1] * s[2]); 2234b7f5c055SJed Brown } 2235b7f5c055SJed Brown 22364663dae6SJed Brown // u[] is a tentative normal on input. Replace with the implicit function gradient in the same direction 22374663dae6SJed Brown static PetscErrorCode TPSExtrudeNormalFunc_Gyroid(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt r, PetscScalar u[], void *ctx) { 22384663dae6SJed Brown PetscReal s[3] = {PetscSinReal(PETSC_PI * x[0]), PetscSinReal(PETSC_PI * (x[1] + .5)), PetscSinReal(PETSC_PI * (x[2] + .25))}; 22394663dae6SJed Brown PetscReal c[3] = {PetscCosReal(PETSC_PI * x[0]), PetscCosReal(PETSC_PI * (x[1] + .5)), PetscCosReal(PETSC_PI * (x[2] + .25))}; 22404663dae6SJed Brown u[0] = PETSC_PI * (c[0] * c[1] - s[2] * s[0]); 22414663dae6SJed Brown u[1] = PETSC_PI * (c[1] * c[2] - s[0] * s[1]); 22424663dae6SJed Brown u[2] = PETSC_PI * (c[2] * c[0] - s[1] * s[2]); 22434663dae6SJed Brown return 0; 22444663dae6SJed Brown } 22454663dae6SJed Brown 2246b7f5c055SJed Brown /* 2247b7f5c055SJed Brown We wish to solve 2248b7f5c055SJed Brown 2249b7f5c055SJed Brown min_y || y - x ||^2 subject to f(y) = 0 2250b7f5c055SJed Brown 2251b7f5c055SJed Brown Let g(y) = grad(f). The minimization problem is equivalent to asking to satisfy 2252b7f5c055SJed 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 2253b7f5c055SJed Brown tangent space and ask for both components in the tangent space to be zero. 2254b7f5c055SJed Brown 2255b7f5c055SJed Brown Take g to be a column vector and compute the "full QR" factorization Q R = g, 2256b7f5c055SJed Brown where Q = I - 2 n n^T is a symmetric orthogonal matrix. 2257b7f5c055SJed Brown The first column of Q is parallel to g so the remaining two columns span the null space. 2258b7f5c055SJed Brown Let Qn = Q[:,1:] be those remaining columns. Then Qn Qn^T is an orthogonal projector into the tangent space. 2259b7f5c055SJed Brown Since Q is symmetric, this is equivalent to multipyling by Q and taking the last two entries. 2260b7f5c055SJed Brown In total, we have a system of 3 equations in 3 unknowns: 2261b7f5c055SJed Brown 2262b7f5c055SJed Brown f(y) = 0 1 equation 2263b7f5c055SJed Brown Qn^T (y - x) = 0 2 equations 2264b7f5c055SJed Brown 2265b7f5c055SJed Brown Here, we compute the residual and Jacobian of this system. 2266b7f5c055SJed Brown */ 2267b7f5c055SJed Brown static void TPSNearestPointResJac(TPSEvaluateFunc feval, const PetscScalar x[], const PetscScalar y[], PetscScalar res[], PetscScalar J[]) 2268b7f5c055SJed Brown { 2269b7f5c055SJed Brown PetscReal yreal[3] = {PetscRealPart(y[0]), PetscRealPart(y[1]), PetscRealPart(y[2])}; 2270b7f5c055SJed Brown PetscReal d[3] = {PetscRealPart(y[0] - x[0]), PetscRealPart(y[1] - x[1]), PetscRealPart(y[2] - x[2])}; 22712f0490c0SSatish Balay PetscReal f, grad[3], n[3], norm, norm_y[3], nd, nd_y[3], sign; 22722f0490c0SSatish Balay PetscReal n_y[3][3] = {{0,0,0},{0,0,0},{0,0,0}}; 2273b7f5c055SJed Brown 2274b7f5c055SJed Brown feval(yreal, &f, grad, n_y); 2275b7f5c055SJed Brown 2276b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) n[i] = grad[i]; 2277b7f5c055SJed Brown norm = PetscSqrtReal(PetscSqr(n[0]) + PetscSqr(n[1]) + PetscSqr(n[2])); 2278b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) { 2279b7f5c055SJed Brown norm_y[i] = 1. / norm * n[i] * n_y[i][i]; 2280b7f5c055SJed Brown } 2281b7f5c055SJed Brown 2282b7f5c055SJed Brown // Define the Householder reflector 2283b7f5c055SJed Brown sign = n[0] >= 0 ? 1. : -1.; 2284b7f5c055SJed Brown n[0] += norm * sign; 2285b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) n_y[0][i] += norm_y[i] * sign; 2286b7f5c055SJed Brown 2287b7f5c055SJed Brown norm = PetscSqrtReal(PetscSqr(n[0]) + PetscSqr(n[1]) + PetscSqr(n[2])); 2288b7f5c055SJed Brown norm_y[0] = 1. / norm * (n[0] * n_y[0][0]); 2289b7f5c055SJed Brown norm_y[1] = 1. / norm * (n[0] * n_y[0][1] + n[1] * n_y[1][1]); 2290b7f5c055SJed Brown norm_y[2] = 1. / norm * (n[0] * n_y[0][2] + n[2] * n_y[2][2]); 2291b7f5c055SJed Brown 2292b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) { 2293b7f5c055SJed Brown n[i] /= norm; 2294b7f5c055SJed Brown for (PetscInt j=0; j<3; j++) { 2295b7f5c055SJed Brown // note that n[i] is n_old[i]/norm when executing the code below 2296b7f5c055SJed Brown n_y[i][j] = n_y[i][j] / norm - n[i] / norm * norm_y[j]; 2297b7f5c055SJed Brown } 2298b7f5c055SJed Brown } 2299b7f5c055SJed Brown 2300b7f5c055SJed Brown nd = n[0] * d[0] + n[1] * d[1] + n[2] * d[2]; 2301b7f5c055SJed 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]; 2302b7f5c055SJed Brown 2303b7f5c055SJed Brown res[0] = f; 2304b7f5c055SJed Brown res[1] = d[1] - 2 * n[1] * nd; 2305b7f5c055SJed Brown res[2] = d[2] - 2 * n[2] * nd; 2306b7f5c055SJed Brown // J[j][i] is J_{ij} (column major) 2307b7f5c055SJed Brown for (PetscInt j=0; j<3; j++) { 2308b7f5c055SJed Brown J[0 + j*3] = grad[j]; 2309b7f5c055SJed Brown J[1 + j*3] = (j == 1)*1. - 2 * (n_y[1][j] * nd + n[1] * nd_y[j]); 2310b7f5c055SJed Brown J[2 + j*3] = (j == 2)*1. - 2 * (n_y[2][j] * nd + n[2] * nd_y[j]); 2311b7f5c055SJed Brown } 2312b7f5c055SJed Brown } 2313b7f5c055SJed Brown 2314b7f5c055SJed Brown /* 2315b7f5c055SJed Brown Project x to the nearest point on the implicit surface using Newton's method. 2316b7f5c055SJed Brown */ 2317b7f5c055SJed Brown static PetscErrorCode TPSNearestPoint(TPSEvaluateFunc feval, PetscScalar x[]) 2318b7f5c055SJed Brown { 2319b7f5c055SJed Brown PetscScalar y[3] = {x[0], x[1], x[2]}; // Initial guess 2320b7f5c055SJed Brown 2321b7f5c055SJed Brown PetscFunctionBegin; 2322b7f5c055SJed Brown for (PetscInt iter=0; iter<10; iter++) { 2323b7f5c055SJed Brown PetscScalar res[3], J[9]; 2324b7f5c055SJed Brown PetscReal resnorm; 2325b7f5c055SJed Brown TPSNearestPointResJac(feval, x, y, res, J); 2326b7f5c055SJed Brown resnorm = PetscSqrtReal(PetscSqr(PetscRealPart(res[0])) + PetscSqr(PetscRealPart(res[1])) + PetscSqr(PetscRealPart(res[2]))); 2327b7f5c055SJed Brown if (0) { // Turn on this monitor if you need to confirm quadratic convergence 232863a3b9bcSJacob 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]))); 2329b7f5c055SJed Brown } 2330b7f5c055SJed Brown if (resnorm < PETSC_SMALL) break; 2331b7f5c055SJed Brown 2332b7f5c055SJed Brown // Take the Newton step 23339566063dSJacob Faibussowitsch PetscCall(PetscKernel_A_gets_inverse_A_3(J, 0., PETSC_FALSE, NULL)); 2334b7f5c055SJed Brown PetscKernel_v_gets_v_minus_A_times_w_3(y, J, res); 2335b7f5c055SJed Brown } 2336b7f5c055SJed Brown for (PetscInt i=0; i<3; i++) x[i] = y[i]; 2337b7f5c055SJed Brown PetscFunctionReturn(0); 2338b7f5c055SJed Brown } 2339b7f5c055SJed Brown 2340b7f5c055SJed Brown const char *const DMPlexTPSTypes[] = {"SCHWARZ_P", "GYROID", "DMPlexTPSType", "DMPLEX_TPS_", NULL}; 2341b7f5c055SJed Brown 23421436d7faSJed Brown static PetscErrorCode DMPlexCreateTPSMesh_Internal(DM dm, DMPlexTPSType tpstype, const PetscInt extent[], const DMBoundaryType periodic[], PetscBool tps_distribute, PetscInt refinements, PetscInt layers, PetscReal thickness) 2343b7f5c055SJed Brown { 2344b7f5c055SJed Brown PetscMPIInt rank; 2345b7f5c055SJed Brown PetscInt topoDim = 2, spaceDim = 3, numFaces = 0, numVertices = 0, numEdges = 0; 2346b7f5c055SJed Brown PetscInt (*edges)[2] = NULL, *edgeSets = NULL; 2347b7f5c055SJed Brown PetscInt *cells_flat = NULL; 2348b7f5c055SJed Brown PetscReal *vtxCoords = NULL; 2349b7f5c055SJed Brown TPSEvaluateFunc evalFunc = NULL; 23504663dae6SJed Brown PetscSimplePointFunc normalFunc = NULL; 2351b7f5c055SJed Brown DMLabel label; 2352b7f5c055SJed Brown 2353b7f5c055SJed Brown PetscFunctionBegin; 23549566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank)); 235563a3b9bcSJacob 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); 2356b7f5c055SJed Brown switch (tpstype) { 2357b7f5c055SJed Brown case DMPLEX_TPS_SCHWARZ_P: 2358b7f5c055SJed 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"); 2359*c5853193SPierre Jolivet if (rank == 0) { 2360b7f5c055SJed Brown PetscInt (*cells)[6][4][4] = NULL; // [junction, junction-face, cell, conn] 2361b7f5c055SJed Brown PetscInt Njunctions = 0, Ncuts = 0, Npipes[3], vcount; 2362b7f5c055SJed Brown PetscReal L = 1; 2363b7f5c055SJed Brown 2364b7f5c055SJed Brown Npipes[0] = (extent[0] + 1) * extent[1] * extent[2]; 2365b7f5c055SJed Brown Npipes[1] = extent[0] * (extent[1] + 1) * extent[2]; 2366b7f5c055SJed Brown Npipes[2] = extent[0] * extent[1] * (extent[2] + 1); 2367b7f5c055SJed Brown Njunctions = extent[0] * extent[1] * extent[2]; 2368b7f5c055SJed Brown Ncuts = 2 * (extent[0] * extent[1] + extent[1] * extent[2] + extent[2] * extent[0]); 2369b7f5c055SJed Brown numVertices = 4 * (Npipes[0] + Npipes[1] + Npipes[2]) + 8 * Njunctions; 23709566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(3*numVertices, &vtxCoords)); 23719566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(Njunctions, &cells)); 23729566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(Ncuts*4, &edges)); 23739566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(Ncuts*4, &edgeSets)); 2374b7f5c055SJed Brown // x-normal pipes 2375b7f5c055SJed Brown vcount = 0; 2376b7f5c055SJed Brown for (PetscInt i=0; i<extent[0]+1; i++) { 2377b7f5c055SJed Brown for (PetscInt j=0; j<extent[1]; j++) { 2378b7f5c055SJed Brown for (PetscInt k=0; k<extent[2]; k++) { 2379b7f5c055SJed Brown for (PetscInt l=0; l<4; l++) { 2380b7f5c055SJed Brown vtxCoords[vcount++] = (2*i - 1) * L; 2381b7f5c055SJed Brown vtxCoords[vcount++] = 2 * j * L + PetscCosReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2382b7f5c055SJed Brown vtxCoords[vcount++] = 2 * k * L + PetscSinReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2383b7f5c055SJed Brown } 2384b7f5c055SJed Brown } 2385b7f5c055SJed Brown } 2386b7f5c055SJed Brown } 2387b7f5c055SJed Brown // y-normal pipes 2388b7f5c055SJed Brown for (PetscInt i=0; i<extent[0]; i++) { 2389b7f5c055SJed Brown for (PetscInt j=0; j<extent[1]+1; j++) { 2390b7f5c055SJed Brown for (PetscInt k=0; k<extent[2]; k++) { 2391b7f5c055SJed Brown for (PetscInt l=0; l<4; l++) { 2392b7f5c055SJed Brown vtxCoords[vcount++] = 2 * i * L + PetscSinReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2393b7f5c055SJed Brown vtxCoords[vcount++] = (2*j - 1) * L; 2394b7f5c055SJed Brown vtxCoords[vcount++] = 2 * k * L + PetscCosReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2395b7f5c055SJed Brown } 2396b7f5c055SJed Brown } 2397b7f5c055SJed Brown } 2398b7f5c055SJed Brown } 2399b7f5c055SJed Brown // z-normal pipes 2400b7f5c055SJed Brown for (PetscInt i=0; i<extent[0]; i++) { 2401b7f5c055SJed Brown for (PetscInt j=0; j<extent[1]; j++) { 2402b7f5c055SJed Brown for (PetscInt k=0; k<extent[2]+1; k++) { 2403b7f5c055SJed Brown for (PetscInt l=0; l<4; l++) { 2404b7f5c055SJed Brown vtxCoords[vcount++] = 2 * i * L + PetscCosReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2405b7f5c055SJed Brown vtxCoords[vcount++] = 2 * j * L + PetscSinReal((2*l + 1) * PETSC_PI / 4) * L / 2; 2406b7f5c055SJed Brown vtxCoords[vcount++] = (2*k - 1) * L; 2407b7f5c055SJed Brown } 2408b7f5c055SJed Brown } 2409b7f5c055SJed Brown } 2410b7f5c055SJed Brown } 2411b7f5c055SJed Brown // junctions 2412b7f5c055SJed Brown for (PetscInt i=0; i<extent[0]; i++) { 2413b7f5c055SJed Brown for (PetscInt j=0; j<extent[1]; j++) { 2414b7f5c055SJed Brown for (PetscInt k=0; k<extent[2]; k++) { 2415b7f5c055SJed Brown const PetscInt J = (i*extent[1] + j)*extent[2] + k, Jvoff = (Npipes[0] + Npipes[1] + Npipes[2])*4 + J*8; 2416b7f5c055SJed Brown PetscCheck(vcount / 3 == Jvoff, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Unexpected vertex count"); 2417b7f5c055SJed Brown for (PetscInt ii=0; ii<2; ii++) { 2418b7f5c055SJed Brown for (PetscInt jj=0; jj<2; jj++) { 2419b7f5c055SJed Brown for (PetscInt kk=0; kk<2; kk++) { 2420b7f5c055SJed Brown double Ls = (1 - sqrt(2) / 4) * L; 2421b7f5c055SJed Brown vtxCoords[vcount++] = 2*i*L + (2*ii-1) * Ls; 2422b7f5c055SJed Brown vtxCoords[vcount++] = 2*j*L + (2*jj-1) * Ls; 2423b7f5c055SJed Brown vtxCoords[vcount++] = 2*k*L + (2*kk-1) * Ls; 2424b7f5c055SJed Brown } 2425b7f5c055SJed Brown } 2426b7f5c055SJed Brown } 2427b7f5c055SJed Brown const PetscInt jfaces[3][2][4] = { 2428b7f5c055SJed Brown {{3,1,0,2}, {7,5,4,6}}, // x-aligned 2429b7f5c055SJed Brown {{5,4,0,1}, {7,6,2,3}}, // y-aligned 2430b7f5c055SJed Brown {{6,2,0,4}, {7,3,1,5}} // z-aligned 2431b7f5c055SJed Brown }; 2432b7f5c055SJed Brown const PetscInt pipe_lo[3] = { // vertex numbers of pipes 2433b7f5c055SJed Brown ((i * extent[1] + j) * extent[2] + k)*4, 2434b7f5c055SJed Brown ((i * (extent[1] + 1) + j) * extent[2] + k + Npipes[0])*4, 2435b7f5c055SJed Brown ((i * extent[1] + j) * (extent[2]+1) + k + Npipes[0] + Npipes[1])*4 2436b7f5c055SJed Brown }; 2437b7f5c055SJed Brown const PetscInt pipe_hi[3] = { // vertex numbers of pipes 2438b7f5c055SJed Brown (((i + 1) * extent[1] + j) * extent[2] + k)*4, 2439b7f5c055SJed Brown ((i * (extent[1] + 1) + j + 1) * extent[2] + k + Npipes[0])*4, 2440b7f5c055SJed Brown ((i * extent[1] + j) * (extent[2]+1) + k + 1 + Npipes[0] + Npipes[1])*4 2441b7f5c055SJed Brown }; 2442b7f5c055SJed Brown for (PetscInt dir=0; dir<3; dir++) { // x,y,z 2443b7f5c055SJed Brown const PetscInt ijk[3] = {i, j, k}; 2444b7f5c055SJed Brown for (PetscInt l=0; l<4; l++) { // rotations 2445b7f5c055SJed Brown cells[J][dir*2+0][l][0] = pipe_lo[dir] + l; 2446b7f5c055SJed Brown cells[J][dir*2+0][l][1] = Jvoff + jfaces[dir][0][l]; 2447b7f5c055SJed Brown cells[J][dir*2+0][l][2] = Jvoff + jfaces[dir][0][(l-1+4)%4]; 2448b7f5c055SJed Brown cells[J][dir*2+0][l][3] = pipe_lo[dir] + (l-1+4)%4; 2449b7f5c055SJed Brown cells[J][dir*2+1][l][0] = Jvoff + jfaces[dir][1][l]; 2450b7f5c055SJed Brown cells[J][dir*2+1][l][1] = pipe_hi[dir] + l; 2451b7f5c055SJed Brown cells[J][dir*2+1][l][2] = pipe_hi[dir] + (l-1+4)%4; 2452b7f5c055SJed Brown cells[J][dir*2+1][l][3] = Jvoff + jfaces[dir][1][(l-1+4)%4]; 2453b7f5c055SJed Brown if (ijk[dir] == 0) { 2454b7f5c055SJed Brown edges[numEdges][0] = pipe_lo[dir] + l; 2455b7f5c055SJed Brown edges[numEdges][1] = pipe_lo[dir] + (l+1) % 4; 2456b7f5c055SJed Brown edgeSets[numEdges] = dir*2 + 1; 2457b7f5c055SJed Brown numEdges++; 2458b7f5c055SJed Brown } 2459b7f5c055SJed Brown if (ijk[dir] + 1 == extent[dir]) { 2460b7f5c055SJed Brown edges[numEdges][0] = pipe_hi[dir] + l; 2461b7f5c055SJed Brown edges[numEdges][1] = pipe_hi[dir] + (l+1) % 4; 2462b7f5c055SJed Brown edgeSets[numEdges] = dir*2 + 2; 2463b7f5c055SJed Brown numEdges++; 2464b7f5c055SJed Brown } 2465b7f5c055SJed Brown } 2466b7f5c055SJed Brown } 2467b7f5c055SJed Brown } 2468b7f5c055SJed Brown } 2469b7f5c055SJed Brown } 247063a3b9bcSJacob Faibussowitsch PetscCheck(numEdges == Ncuts * 4, PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Edge count %" PetscInt_FMT " incompatible with number of cuts %" PetscInt_FMT, numEdges, Ncuts); 2471b7f5c055SJed Brown numFaces = 24 * Njunctions; 2472b7f5c055SJed Brown cells_flat = cells[0][0][0]; 2473b7f5c055SJed Brown } 2474b7f5c055SJed Brown evalFunc = TPSEvaluate_SchwarzP; 24754663dae6SJed Brown normalFunc = TPSExtrudeNormalFunc_SchwarzP; 2476b7f5c055SJed Brown break; 2477b7f5c055SJed Brown case DMPLEX_TPS_GYROID: 2478*c5853193SPierre Jolivet if (rank == 0) { 2479b7f5c055SJed Brown // This is a coarse mesh approximation of the gyroid shifted to being the zero of the level set 2480b7f5c055SJed Brown // 2481b7f5c055SJed 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) 2482b7f5c055SJed Brown // 2483b7f5c055SJed Brown // on the cell [0,2]^3. 2484b7f5c055SJed Brown // 2485b7f5c055SJed Brown // Think about dividing that cell into four columns, and focus on the column [0,1]x[0,1]x[0,2]. 2486b7f5c055SJed Brown // If you looked at the gyroid in that column at different slices of z you would see that it kind of spins 2487b7f5c055SJed Brown // like a boomerang: 2488b7f5c055SJed Brown // 2489b7f5c055SJed Brown // z = 0 z = 1/4 z = 1/2 z = 3/4 // 2490b7f5c055SJed Brown // ----- ------- ------- ------- // 2491b7f5c055SJed Brown // // 2492b7f5c055SJed Brown // + + + + + + + \ + // 2493b7f5c055SJed Brown // \ / \ // 2494b7f5c055SJed Brown // \ `-_ _-' / } // 2495b7f5c055SJed Brown // *-_ `-' _-' / // 2496b7f5c055SJed Brown // + `-+ + + +-' + + / + // 2497b7f5c055SJed Brown // // 2498b7f5c055SJed Brown // // 2499b7f5c055SJed Brown // z = 1 z = 5/4 z = 3/2 z = 7/4 // 2500b7f5c055SJed Brown // ----- ------- ------- ------- // 2501b7f5c055SJed Brown // // 2502b7f5c055SJed Brown // +-_ + + + + _-+ + / + // 2503b7f5c055SJed Brown // `-_ _-_ _-` / // 2504b7f5c055SJed Brown // \ _-' `-_ / { // 2505b7f5c055SJed Brown // \ / \ // 2506b7f5c055SJed Brown // + + + + + + + \ + // 2507b7f5c055SJed Brown // 2508b7f5c055SJed Brown // 2509b7f5c055SJed Brown // This course mesh approximates each of these slices by two line segments, 2510b7f5c055SJed Brown // and then connects the segments in consecutive layers with quadrilateral faces. 2511b7f5c055SJed Brown // All of the end points of the segments are multiples of 1/4 except for the 2512b7f5c055SJed Brown // point * in the picture for z = 0 above and the similar points in other layers. 2513b7f5c055SJed Brown // That point is at (gamma, gamma, 0), where gamma is calculated below. 2514b7f5c055SJed Brown // 2515b7f5c055SJed Brown // The column [1,2]x[1,2]x[0,2] looks the same as this column; 2516b7f5c055SJed Brown // The columns [1,2]x[0,1]x[0,2] and [0,1]x[1,2]x[0,2] are mirror images. 2517b7f5c055SJed Brown // 2518b7f5c055SJed Brown // As for how this method turned into the names given to the vertices: 2519b7f5c055SJed Brown // that was not systematic, it was just the way it worked out in my handwritten notes. 2520b7f5c055SJed Brown 2521b7f5c055SJed Brown PetscInt facesPerBlock = 64; 2522b7f5c055SJed Brown PetscInt vertsPerBlock = 56; 2523b7f5c055SJed Brown PetscInt extentPlus[3]; 2524b7f5c055SJed Brown PetscInt numBlocks, numBlocksPlus; 2525b7f5c055SJed Brown const PetscInt A = 0, B = 1, C = 2, D = 3, E = 4, F = 5, G = 6, H = 7, 2526b7f5c055SJed Brown II = 8, J = 9, K = 10, L = 11, M = 12, N = 13, O = 14, P = 15, 2527b7f5c055SJed Brown Q = 16, R = 17, S = 18, T = 19, U = 20, V = 21, W = 22, X = 23, 2528b7f5c055SJed Brown Y = 24, Z = 25, Ap = 26, Bp = 27, Cp = 28, Dp = 29, Ep = 30, Fp = 31, 2529b7f5c055SJed Brown Gp = 32, Hp = 33, Ip = 34, Jp = 35, Kp = 36, Lp = 37, Mp = 38, Np = 39, 2530b7f5c055SJed Brown Op = 40, Pp = 41, Qp = 42, Rp = 43, Sp = 44, Tp = 45, Up = 46, Vp = 47, 2531b7f5c055SJed Brown Wp = 48, Xp = 49, Yp = 50, Zp = 51, Aq = 52, Bq = 53, Cq = 54, Dq = 55; 2532b7f5c055SJed Brown const PetscInt pattern[64][4] = 2533b7f5c055SJed Brown { /* face to vertex within the coarse discretization of a single gyroid block */ 2534b7f5c055SJed Brown /* layer 0 */ 2535b7f5c055SJed Brown {A,C,K,G},{C,B,II,K},{D,A,H,L},{B+56*1,D,L,J},{E,B+56*1,J,N},{A+56*2,E,N,H+56*2},{F,A+56*2,G+56*2,M},{B,F,M,II}, 2536b7f5c055SJed Brown /* layer 1 */ 2537b7f5c055SJed Brown {G,K,Q,O},{K,II,P,Q},{L,H,O+56*1,R},{J,L,R,P},{N,J,P,S},{H+56*2,N,S,O+56*3},{M,G+56*2,O+56*2,T},{II,M,T,P}, 2538b7f5c055SJed Brown /* layer 2 */ 2539b7f5c055SJed Brown {O,Q,Y,U},{Q,P,W,Y},{R,O+56*1,U+56*1,Ap},{P,R,Ap,W},{S,P,X,Bp},{O+56*3,S,Bp,V+56*1},{T,O+56*2,V,Z},{P,T,Z,X}, 2540b7f5c055SJed Brown /* layer 3 */ 2541b7f5c055SJed Brown {U,Y,Ep,Dp},{Y,W,Cp,Ep},{Ap,U+56*1,Dp+56*1,Gp},{W,Ap,Gp,Cp},{Bp,X,Cp+56*2,Fp},{V+56*1,Bp,Fp,Dp+56*1},{Z,V,Dp,Hp},{X,Z,Hp,Cp+56*2}, 2542b7f5c055SJed Brown /* layer 4 */ 2543b7f5c055SJed Brown {Dp,Ep,Mp,Kp},{Ep,Cp,Ip,Mp},{Gp,Dp+56*1,Lp,Np},{Cp,Gp,Np,Jp},{Fp,Cp+56*2,Jp+56*2,Pp},{Dp+56*1,Fp,Pp,Lp},{Hp,Dp,Kp,Op},{Cp+56*2,Hp,Op,Ip+56*2}, 2544b7f5c055SJed Brown /* layer 5 */ 2545b7f5c055SJed Brown {Kp,Mp,Sp,Rp},{Mp,Ip,Qp,Sp},{Np,Lp,Rp,Tp},{Jp,Np,Tp,Qp+56*1},{Pp,Jp+56*2,Qp+56*3,Up},{Lp,Pp,Up,Rp},{Op,Kp,Rp,Vp},{Ip+56*2,Op,Vp,Qp+56*2}, 2546b7f5c055SJed Brown /* layer 6 */ 2547b7f5c055SJed Brown {Rp,Sp,Aq,Yp},{Sp,Qp,Wp,Aq},{Tp,Rp,Yp,Cq},{Qp+56*1,Tp,Cq,Wp+56*1},{Up,Qp+56*3,Xp+56*1,Dq},{Rp,Up,Dq,Zp},{Vp,Rp,Zp,Bq},{Qp+56*2,Vp,Bq,Xp}, 2548b7f5c055SJed Brown /* layer 7 (the top is the periodic image of the bottom of layer 0) */ 2549b7f5c055SJed Brown {Yp,Aq,C+56*4,A+56*4},{Aq,Wp,B+56*4,C+56*4},{Cq,Yp,A+56*4,D+56*4},{Wp+56*1,Cq,D+56*4,B+56*5},{Dq,Xp+56*1,B+56*5,E+56*4},{Zp,Dq,E+56*4,A+56*6},{Bq,Zp,A+56*6,F+56*4},{Xp,Bq,F+56*4,B+56*4} 2550b7f5c055SJed Brown }; 2551b7f5c055SJed Brown const PetscReal gamma = PetscAcosReal((PetscSqrtReal(3.)-1.) / PetscSqrtReal(2.)) / PETSC_PI; 2552b7f5c055SJed Brown const PetscReal patternCoords[56][3] = 2553b7f5c055SJed Brown { 2554b7f5c055SJed Brown /* A */ {1.,0.,0.}, 2555b7f5c055SJed Brown /* B */ {0.,1.,0.}, 2556b7f5c055SJed Brown /* C */ {gamma,gamma,0.}, 2557b7f5c055SJed Brown /* D */ {1+gamma,1-gamma,0.}, 2558b7f5c055SJed Brown /* E */ {2-gamma,2-gamma,0.}, 2559b7f5c055SJed Brown /* F */ {1-gamma,1+gamma,0.}, 2560b7f5c055SJed Brown 2561b7f5c055SJed Brown /* G */ {.5,0,.25}, 2562b7f5c055SJed Brown /* H */ {1.5,0.,.25}, 2563b7f5c055SJed Brown /* II */ {.5,1.,.25}, 2564b7f5c055SJed Brown /* J */ {1.5,1.,.25}, 2565b7f5c055SJed Brown /* K */ {.25,.5,.25}, 2566b7f5c055SJed Brown /* L */ {1.25,.5,.25}, 2567b7f5c055SJed Brown /* M */ {.75,1.5,.25}, 2568b7f5c055SJed Brown /* N */ {1.75,1.5,.25}, 2569b7f5c055SJed Brown 2570b7f5c055SJed Brown /* O */ {0.,0.,.5}, 2571b7f5c055SJed Brown /* P */ {1.,1.,.5}, 2572b7f5c055SJed Brown /* Q */ {gamma,1-gamma,.5}, 2573b7f5c055SJed Brown /* R */ {1+gamma,gamma,.5}, 2574b7f5c055SJed Brown /* S */ {2-gamma,1+gamma,.5}, 2575b7f5c055SJed Brown /* T */ {1-gamma,2-gamma,.5}, 2576b7f5c055SJed Brown 2577b7f5c055SJed Brown /* U */ {0.,.5,.75}, 2578b7f5c055SJed Brown /* V */ {0.,1.5,.75}, 2579b7f5c055SJed Brown /* W */ {1.,.5,.75}, 2580b7f5c055SJed Brown /* X */ {1.,1.5,.75}, 2581b7f5c055SJed Brown /* Y */ {.5,.75,.75}, 2582b7f5c055SJed Brown /* Z */ {.5,1.75,.75}, 2583b7f5c055SJed Brown /* Ap */ {1.5,.25,.75}, 2584b7f5c055SJed Brown /* Bp */ {1.5,1.25,.75}, 2585b7f5c055SJed Brown 2586b7f5c055SJed Brown /* Cp */ {1.,0.,1.}, 2587b7f5c055SJed Brown /* Dp */ {0.,1.,1.}, 2588b7f5c055SJed Brown /* Ep */ {1-gamma,1-gamma,1.}, 2589b7f5c055SJed Brown /* Fp */ {1+gamma,1+gamma,1.}, 2590b7f5c055SJed Brown /* Gp */ {2-gamma,gamma,1.}, 2591b7f5c055SJed Brown /* Hp */ {gamma,2-gamma,1.}, 2592b7f5c055SJed Brown 2593b7f5c055SJed Brown /* Ip */ {.5,0.,1.25}, 2594b7f5c055SJed Brown /* Jp */ {1.5,0.,1.25}, 2595b7f5c055SJed Brown /* Kp */ {.5,1.,1.25}, 2596b7f5c055SJed Brown /* Lp */ {1.5,1.,1.25}, 2597b7f5c055SJed Brown /* Mp */ {.75,.5,1.25}, 2598b7f5c055SJed Brown /* Np */ {1.75,.5,1.25}, 2599b7f5c055SJed Brown /* Op */ {.25,1.5,1.25}, 2600b7f5c055SJed Brown /* Pp */ {1.25,1.5,1.25}, 2601b7f5c055SJed Brown 2602b7f5c055SJed Brown /* Qp */ {0.,0.,1.5}, 2603b7f5c055SJed Brown /* Rp */ {1.,1.,1.5}, 2604b7f5c055SJed Brown /* Sp */ {1-gamma,gamma,1.5}, 2605b7f5c055SJed Brown /* Tp */ {2-gamma,1-gamma,1.5}, 2606b7f5c055SJed Brown /* Up */ {1+gamma,2-gamma,1.5}, 2607b7f5c055SJed Brown /* Vp */ {gamma,1+gamma,1.5}, 2608b7f5c055SJed Brown 2609b7f5c055SJed Brown /* Wp */ {0.,.5,1.75}, 2610b7f5c055SJed Brown /* Xp */ {0.,1.5,1.75}, 2611b7f5c055SJed Brown /* Yp */ {1.,.5,1.75}, 2612b7f5c055SJed Brown /* Zp */ {1.,1.5,1.75}, 2613b7f5c055SJed Brown /* Aq */ {.5,.25,1.75}, 2614b7f5c055SJed Brown /* Bq */ {.5,1.25,1.75}, 2615b7f5c055SJed Brown /* Cq */ {1.5,.75,1.75}, 2616b7f5c055SJed Brown /* Dq */ {1.5,1.75,1.75}, 2617b7f5c055SJed Brown }; 2618b7f5c055SJed Brown PetscInt (*cells)[64][4] = NULL; 2619b7f5c055SJed Brown PetscBool *seen; 2620b7f5c055SJed Brown PetscInt *vertToTrueVert; 2621b7f5c055SJed Brown PetscInt count; 2622b7f5c055SJed Brown 2623b7f5c055SJed Brown for (PetscInt i = 0; i < 3; i++) extentPlus[i] = extent[i] + 1; 2624b7f5c055SJed Brown numBlocks = 1; 2625b7f5c055SJed Brown for (PetscInt i = 0; i < 3; i++) numBlocks *= extent[i]; 2626b7f5c055SJed Brown numBlocksPlus = 1; 2627b7f5c055SJed Brown for (PetscInt i = 0; i < 3; i++) numBlocksPlus *= extentPlus[i]; 2628b7f5c055SJed Brown numFaces = numBlocks * facesPerBlock; 26299566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numBlocks, &cells)); 26309566063dSJacob Faibussowitsch PetscCall(PetscCalloc1(numBlocksPlus * vertsPerBlock,&seen)); 2631b7f5c055SJed Brown for (PetscInt k = 0; k < extent[2]; k++) { 2632b7f5c055SJed Brown for (PetscInt j = 0; j < extent[1]; j++) { 2633b7f5c055SJed Brown for (PetscInt i = 0; i < extent[0]; i++) { 2634b7f5c055SJed Brown for (PetscInt f = 0; f < facesPerBlock; f++) { 2635b7f5c055SJed Brown for (PetscInt v = 0; v < 4; v++) { 2636b7f5c055SJed Brown PetscInt vertRaw = pattern[f][v]; 2637b7f5c055SJed Brown PetscInt blockidx = vertRaw / 56; 2638b7f5c055SJed Brown PetscInt patternvert = vertRaw % 56; 2639b7f5c055SJed Brown PetscInt xplus = (blockidx & 1); 2640b7f5c055SJed Brown PetscInt yplus = (blockidx & 2) >> 1; 2641b7f5c055SJed Brown PetscInt zplus = (blockidx & 4) >> 2; 2642b7f5c055SJed Brown PetscInt zcoord = (periodic && periodic[2] == DM_BOUNDARY_PERIODIC) ? ((k + zplus) % extent[2]) : (k + zplus); 2643b7f5c055SJed Brown PetscInt ycoord = (periodic && periodic[1] == DM_BOUNDARY_PERIODIC) ? ((j + yplus) % extent[1]) : (j + yplus); 2644b7f5c055SJed Brown PetscInt xcoord = (periodic && periodic[0] == DM_BOUNDARY_PERIODIC) ? ((i + xplus) % extent[0]) : (i + xplus); 2645b7f5c055SJed Brown PetscInt vert = ((zcoord * extentPlus[1] + ycoord) * extentPlus[0] + xcoord) * 56 + patternvert; 2646b7f5c055SJed Brown 2647b7f5c055SJed Brown cells[(k * extent[1] + j) * extent[0] + i][f][v] = vert; 2648b7f5c055SJed Brown seen[vert] = PETSC_TRUE; 2649b7f5c055SJed Brown } 2650b7f5c055SJed Brown } 2651b7f5c055SJed Brown } 2652b7f5c055SJed Brown } 2653b7f5c055SJed Brown } 2654b7f5c055SJed Brown for (PetscInt i = 0; i < numBlocksPlus * vertsPerBlock; i++) if (seen[i]) numVertices++; 2655b7f5c055SJed Brown count = 0; 26569566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numBlocksPlus * vertsPerBlock, &vertToTrueVert)); 26579566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numVertices * 3, &vtxCoords)); 2658b7f5c055SJed Brown for (PetscInt i = 0; i < numBlocksPlus * vertsPerBlock; i++) vertToTrueVert[i] = -1; 2659b7f5c055SJed Brown for (PetscInt k = 0; k < extentPlus[2]; k++) { 2660b7f5c055SJed Brown for (PetscInt j = 0; j < extentPlus[1]; j++) { 2661b7f5c055SJed Brown for (PetscInt i = 0; i < extentPlus[0]; i++) { 2662b7f5c055SJed Brown for (PetscInt v = 0; v < vertsPerBlock; v++) { 2663b7f5c055SJed Brown PetscInt vIdx = ((k * extentPlus[1] + j) * extentPlus[0] + i) * vertsPerBlock + v; 2664b7f5c055SJed Brown 2665b7f5c055SJed Brown if (seen[vIdx]) { 2666b7f5c055SJed Brown PetscInt thisVert; 2667b7f5c055SJed Brown 2668b7f5c055SJed Brown vertToTrueVert[vIdx] = thisVert = count++; 2669b7f5c055SJed Brown 2670b7f5c055SJed Brown for (PetscInt d = 0; d < 3; d++) vtxCoords[3 * thisVert + d] = patternCoords[v][d]; 2671b7f5c055SJed Brown vtxCoords[3 * thisVert + 0] += i * 2; 2672b7f5c055SJed Brown vtxCoords[3 * thisVert + 1] += j * 2; 2673b7f5c055SJed Brown vtxCoords[3 * thisVert + 2] += k * 2; 2674b7f5c055SJed Brown } 2675b7f5c055SJed Brown } 2676b7f5c055SJed Brown } 2677b7f5c055SJed Brown } 2678b7f5c055SJed Brown } 2679b7f5c055SJed Brown for (PetscInt i = 0; i < numBlocks; i++) { 2680b7f5c055SJed Brown for (PetscInt f = 0; f < facesPerBlock; f++) { 2681b7f5c055SJed Brown for (PetscInt v = 0; v < 4; v++) { 2682b7f5c055SJed Brown cells[i][f][v] = vertToTrueVert[cells[i][f][v]]; 2683b7f5c055SJed Brown } 2684b7f5c055SJed Brown } 2685b7f5c055SJed Brown } 26869566063dSJacob Faibussowitsch PetscCall(PetscFree(vertToTrueVert)); 26879566063dSJacob Faibussowitsch PetscCall(PetscFree(seen)); 2688b7f5c055SJed Brown cells_flat = cells[0][0]; 2689b7f5c055SJed Brown numEdges = 0; 2690b7f5c055SJed Brown for (PetscInt i = 0; i < numFaces; i++) { 2691b7f5c055SJed Brown for (PetscInt e = 0; e < 4; e++) { 2692b7f5c055SJed Brown PetscInt ev[] = {cells_flat[i*4 + e], cells_flat[i*4 + ((e+1)%4)]}; 2693b7f5c055SJed Brown const PetscReal *evCoords[] = {&vtxCoords[3*ev[0]], &vtxCoords[3*ev[1]]}; 2694b7f5c055SJed Brown 2695b7f5c055SJed Brown for (PetscInt d = 0; d < 3; d++) { 2696b7f5c055SJed Brown if (!periodic || periodic[0] != DM_BOUNDARY_PERIODIC) { 2697b7f5c055SJed Brown if (evCoords[0][d] == 0. && evCoords[1][d] == 0.) numEdges++; 2698b7f5c055SJed Brown if (evCoords[0][d] == 2.*extent[d] && evCoords[1][d] == 2.*extent[d]) numEdges++; 2699b7f5c055SJed Brown } 2700b7f5c055SJed Brown } 2701b7f5c055SJed Brown } 2702b7f5c055SJed Brown } 27039566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numEdges, &edges)); 27049566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numEdges, &edgeSets)); 2705b7f5c055SJed Brown for (PetscInt edge = 0, i = 0; i < numFaces; i++) { 2706b7f5c055SJed Brown for (PetscInt e = 0; e < 4; e++) { 2707b7f5c055SJed Brown PetscInt ev[] = {cells_flat[i*4 + e], cells_flat[i*4 + ((e+1)%4)]}; 2708b7f5c055SJed Brown const PetscReal *evCoords[] = {&vtxCoords[3*ev[0]], &vtxCoords[3*ev[1]]}; 2709b7f5c055SJed Brown 2710b7f5c055SJed Brown for (PetscInt d = 0; d < 3; d++) { 2711b7f5c055SJed Brown if (!periodic || periodic[d] != DM_BOUNDARY_PERIODIC) { 2712b7f5c055SJed Brown if (evCoords[0][d] == 0. && evCoords[1][d] == 0.) { 2713b7f5c055SJed Brown edges[edge][0] = ev[0]; 2714b7f5c055SJed Brown edges[edge][1] = ev[1]; 2715b7f5c055SJed Brown edgeSets[edge++] = 2 * d; 2716b7f5c055SJed Brown } 2717b7f5c055SJed Brown if (evCoords[0][d] == 2.*extent[d] && evCoords[1][d] == 2.*extent[d]) { 2718b7f5c055SJed Brown edges[edge][0] = ev[0]; 2719b7f5c055SJed Brown edges[edge][1] = ev[1]; 2720b7f5c055SJed Brown edgeSets[edge++] = 2 * d + 1; 2721b7f5c055SJed Brown } 2722b7f5c055SJed Brown } 2723b7f5c055SJed Brown } 2724b7f5c055SJed Brown } 2725b7f5c055SJed Brown } 2726b7f5c055SJed Brown } 2727b7f5c055SJed Brown evalFunc = TPSEvaluate_Gyroid; 27284663dae6SJed Brown normalFunc = TPSExtrudeNormalFunc_Gyroid; 2729b7f5c055SJed Brown break; 2730b7f5c055SJed Brown } 2731b7f5c055SJed Brown 27329566063dSJacob Faibussowitsch PetscCall(DMSetDimension(dm, topoDim)); 2733*c5853193SPierre Jolivet if (rank == 0) PetscCall(DMPlexBuildFromCellList(dm, numFaces, numVertices, 4, cells_flat)); 27349566063dSJacob Faibussowitsch else PetscCall(DMPlexBuildFromCellList(dm, 0, 0, 0, NULL)); 27359566063dSJacob Faibussowitsch PetscCall(PetscFree(cells_flat)); 2736b7f5c055SJed Brown { 2737b7f5c055SJed Brown DM idm; 27389566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(dm, &idm)); 27399566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &idm)); 2740b7f5c055SJed Brown } 2741*c5853193SPierre Jolivet if (rank == 0) PetscCall(DMPlexBuildCoordinatesFromCellList(dm, spaceDim, vtxCoords)); 27429566063dSJacob Faibussowitsch else PetscCall(DMPlexBuildCoordinatesFromCellList(dm, spaceDim, NULL)); 27439566063dSJacob Faibussowitsch PetscCall(PetscFree(vtxCoords)); 2744b7f5c055SJed Brown 27459566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm, "Face Sets")); 27469566063dSJacob Faibussowitsch PetscCall(DMGetLabel(dm, "Face Sets", &label)); 2747b7f5c055SJed Brown for (PetscInt e=0; e<numEdges; e++) { 2748b7f5c055SJed Brown PetscInt njoin; 2749b7f5c055SJed Brown const PetscInt *join, verts[] = {numFaces + edges[e][0], numFaces + edges[e][1]}; 27509566063dSJacob Faibussowitsch PetscCall(DMPlexGetJoin(dm, 2, verts, &njoin, &join)); 275163a3b9bcSJacob 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]); 27529566063dSJacob Faibussowitsch PetscCall(DMLabelSetValue(label, join[0], edgeSets[e])); 27539566063dSJacob Faibussowitsch PetscCall(DMPlexRestoreJoin(dm, 2, verts, &njoin, &join)); 2754b7f5c055SJed Brown } 27559566063dSJacob Faibussowitsch PetscCall(PetscFree(edges)); 27569566063dSJacob Faibussowitsch PetscCall(PetscFree(edgeSets)); 27571436d7faSJed Brown if (tps_distribute) { 27581436d7faSJed Brown DM pdm = NULL; 27591436d7faSJed Brown PetscPartitioner part; 27601436d7faSJed Brown 27619566063dSJacob Faibussowitsch PetscCall(DMPlexGetPartitioner(dm, &part)); 27629566063dSJacob Faibussowitsch PetscCall(PetscPartitionerSetFromOptions(part)); 27639566063dSJacob Faibussowitsch PetscCall(DMPlexDistribute(dm, 0, NULL, &pdm)); 27641436d7faSJed Brown if (pdm) { 27659566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &pdm)); 27661436d7faSJed Brown } 27671436d7faSJed Brown // Do not auto-distribute again 27689566063dSJacob Faibussowitsch PetscCall(DMPlexDistributeSetDefault(dm, PETSC_FALSE)); 27691436d7faSJed Brown } 2770b7f5c055SJed Brown 27719566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE)); 2772b7f5c055SJed Brown for (PetscInt refine=0; refine<refinements; refine++) { 2773b7f5c055SJed Brown PetscInt m; 2774b7f5c055SJed Brown DM dmf; 2775b7f5c055SJed Brown Vec X; 2776b7f5c055SJed Brown PetscScalar *x; 27779566063dSJacob Faibussowitsch PetscCall(DMRefine(dm, MPI_COMM_NULL, &dmf)); 27789566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &dmf)); 2779b7f5c055SJed Brown 27809566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dm, &X)); 27819566063dSJacob Faibussowitsch PetscCall(VecGetLocalSize(X, &m)); 27829566063dSJacob Faibussowitsch PetscCall(VecGetArray(X, &x)); 2783b7f5c055SJed Brown for (PetscInt i=0; i<m; i+=3) { 27849566063dSJacob Faibussowitsch PetscCall(TPSNearestPoint(evalFunc, &x[i])); 2785b7f5c055SJed Brown } 27869566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(X, &x)); 2787b7f5c055SJed Brown } 2788b7f5c055SJed Brown 2789b7f5c055SJed Brown // Face Sets has already been propagated to new vertices during refinement; this propagates to the initial vertices. 27909566063dSJacob Faibussowitsch PetscCall(DMGetLabel(dm, "Face Sets", &label)); 27919566063dSJacob Faibussowitsch PetscCall(DMPlexLabelComplete(dm, label)); 2792b7f5c055SJed Brown 2793b7f5c055SJed Brown if (thickness > 0) { 27944663dae6SJed Brown DM edm,cdm,ecdm; 27954663dae6SJed Brown DMPlexTransform tr; 27964663dae6SJed Brown const char *prefix; 27974663dae6SJed Brown PetscOptions options; 27984663dae6SJed Brown // Code from DMPlexExtrude 27994663dae6SJed Brown PetscCall(DMPlexTransformCreate(PetscObjectComm((PetscObject)dm), &tr)); 28004663dae6SJed Brown PetscCall(DMPlexTransformSetDM(tr, dm)); 28014663dae6SJed Brown PetscCall(DMPlexTransformSetType(tr, DMPLEXEXTRUDE)); 28024663dae6SJed Brown PetscCall(PetscObjectGetOptionsPrefix((PetscObject) dm, &prefix)); 28034663dae6SJed Brown PetscCall(PetscObjectSetOptionsPrefix((PetscObject) tr, prefix)); 28044663dae6SJed Brown PetscCall(PetscObjectGetOptions((PetscObject) dm, &options)); 28054663dae6SJed Brown PetscCall(PetscObjectSetOptions((PetscObject) tr, options)); 28064663dae6SJed Brown PetscCall(DMPlexTransformExtrudeSetLayers(tr, layers)); 28074663dae6SJed Brown PetscCall(DMPlexTransformExtrudeSetThickness(tr, thickness)); 28084663dae6SJed Brown PetscCall(DMPlexTransformExtrudeSetTensor(tr, PETSC_FALSE)); 28094663dae6SJed Brown PetscCall(DMPlexTransformExtrudeSetSymmetric(tr, PETSC_TRUE)); 28104663dae6SJed Brown PetscCall(DMPlexTransformExtrudeSetNormalFunction(tr, normalFunc)); 28114663dae6SJed Brown PetscCall(DMPlexTransformSetFromOptions(tr)); 28124663dae6SJed Brown PetscCall(PetscObjectSetOptions((PetscObject) tr, NULL)); 28134663dae6SJed Brown PetscCall(DMPlexTransformSetUp(tr)); 28144663dae6SJed Brown PetscCall(PetscObjectViewFromOptions((PetscObject) tr, NULL, "-dm_plex_tps_transform_view")); 28154663dae6SJed Brown PetscCall(DMPlexTransformApply(tr, dm, &edm)); 28164663dae6SJed Brown PetscCall(DMCopyDisc(dm, edm)); 28174663dae6SJed Brown PetscCall(DMGetCoordinateDM(dm, &cdm)); 28184663dae6SJed Brown PetscCall(DMGetCoordinateDM(edm, &ecdm)); 28194663dae6SJed Brown PetscCall(DMCopyDisc(cdm, ecdm)); 28204663dae6SJed Brown PetscCall(DMPlexTransformCreateDiscLabels(tr, edm)); 28214663dae6SJed Brown PetscCall(DMPlexTransformDestroy(&tr)); 28224663dae6SJed Brown if (edm) { 28234663dae6SJed Brown ((DM_Plex *)edm->data)->printFEM = ((DM_Plex *)dm->data)->printFEM; 28244663dae6SJed Brown ((DM_Plex *)edm->data)->printL2 = ((DM_Plex *)dm->data)->printL2; 28254663dae6SJed Brown } 28264663dae6SJed Brown PetscCall(DMPlexReplace_Static(dm, &edm)); 2827b7f5c055SJed Brown } 2828b7f5c055SJed Brown PetscFunctionReturn(0); 2829b7f5c055SJed Brown } 2830b7f5c055SJed Brown 2831b7f5c055SJed Brown /*@ 2832b7f5c055SJed Brown DMPlexCreateTPSMesh - Create a distributed, interpolated mesh of a triply-periodic surface 2833b7f5c055SJed Brown 2834b7f5c055SJed Brown Collective 2835b7f5c055SJed Brown 2836b7f5c055SJed Brown Input Parameters: 2837b7f5c055SJed Brown + comm - The communicator for the DM object 2838b7f5c055SJed Brown . tpstype - Type of triply-periodic surface 2839b7f5c055SJed Brown . extent - Array of length 3 containing number of periods in each direction 2840b7f5c055SJed Brown . periodic - array of length 3 with periodicity, or NULL for non-periodic 28411436d7faSJed Brown . tps_distribute - Distribute 2D manifold mesh prior to refinement and extrusion (more scalable) 2842817da375SSatish Balay . refinements - Number of factor-of-2 refinements of 2D manifold mesh 28431436d7faSJed Brown . layers - Number of cell layers extruded in normal direction 2844817da375SSatish Balay - thickness - Thickness in normal direction 2845b7f5c055SJed Brown 2846b7f5c055SJed Brown Output Parameter: 2847b7f5c055SJed Brown . dm - The DM object 2848b7f5c055SJed Brown 2849b7f5c055SJed Brown Notes: 2850b7f5c055SJed Brown This meshes the surface of the Schwarz P or Gyroid surfaces. Schwarz P is is the simplest member of the triply-periodic minimal surfaces. 2851b7f5c055SJed Brown https://en.wikipedia.org/wiki/Schwarz_minimal_surface#Schwarz_P_(%22Primitive%22) and can be cut with "clean" boundaries. 2852b7f5c055SJed Brown 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. 2853b7f5c055SJed Brown Our implementation creates a very coarse mesh of the surface and refines (by 4-way splitting) as many times as requested. 2854b7f5c055SJed Brown On each refinement, all vertices are projected to their nearest point on the surface. 2855b7f5c055SJed Brown This projection could readily be extended to related surfaces. 2856b7f5c055SJed Brown 2857b7f5c055SJed Brown The face (edge) sets for the Schwarz P surface are numbered 1(-x), 2(+x), 3(-y), 4(+y), 5(-z), 6(+z). 2858b7f5c055SJed Brown When the mesh is refined, "Face Sets" contain the new vertices (created during refinement). Use DMPlexLabelComplete() to propagate to coarse-level vertices. 2859b7f5c055SJed Brown 2860b7f5c055SJed Brown References: 2861606c0280SSatish Balay . * - Maskery et al, Insights into the mechanical properties of several triply periodic minimal surface lattice structures made by polymer additive manufacturing, 2017. https://doi.org/10.1016/j.polymer.2017.11.049 2862b7f5c055SJed Brown 2863b7f5c055SJed Brown Developer Notes: 2864b7f5c055SJed Brown The Gyroid mesh does not currently mark boundary sets. 2865b7f5c055SJed Brown 2866b7f5c055SJed Brown Level: beginner 2867b7f5c055SJed Brown 2868db781477SPatrick Sanan .seealso: `DMPlexCreateSphereMesh()`, `DMSetType()`, `DMCreate()` 2869b7f5c055SJed Brown @*/ 28701436d7faSJed Brown PetscErrorCode DMPlexCreateTPSMesh(MPI_Comm comm, DMPlexTPSType tpstype, const PetscInt extent[], const DMBoundaryType periodic[], PetscBool tps_distribute, PetscInt refinements, PetscInt layers, PetscReal thickness, DM *dm) 2871b7f5c055SJed Brown { 2872b7f5c055SJed Brown PetscFunctionBegin; 28739566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 28749566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 28759566063dSJacob Faibussowitsch PetscCall(DMPlexCreateTPSMesh_Internal(*dm, tpstype, extent, periodic, tps_distribute, refinements, layers, thickness)); 2876b7f5c055SJed Brown PetscFunctionReturn(0); 2877b7f5c055SJed Brown } 2878b7f5c055SJed Brown 28799318fe57SMatthew G. Knepley /*@ 28809318fe57SMatthew G. Knepley DMPlexCreateSphereMesh - Creates a mesh on the d-dimensional sphere, S^d. 28819318fe57SMatthew G. Knepley 28829318fe57SMatthew G. Knepley Collective 28839318fe57SMatthew G. Knepley 28849318fe57SMatthew G. Knepley Input Parameters: 28859318fe57SMatthew G. Knepley + comm - The communicator for the DM object 28869318fe57SMatthew G. Knepley . dim - The dimension 28879318fe57SMatthew G. Knepley . simplex - Use simplices, or tensor product cells 28889318fe57SMatthew G. Knepley - R - The radius 28899318fe57SMatthew G. Knepley 28909318fe57SMatthew G. Knepley Output Parameter: 28919318fe57SMatthew G. Knepley . dm - The DM object 28929318fe57SMatthew G. Knepley 28939318fe57SMatthew G. Knepley Level: beginner 28949318fe57SMatthew G. Knepley 2895db781477SPatrick Sanan .seealso: `DMPlexCreateBallMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()` 28969318fe57SMatthew G. Knepley @*/ 28979318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateSphereMesh(MPI_Comm comm, PetscInt dim, PetscBool simplex, PetscReal R, DM *dm) 28989318fe57SMatthew G. Knepley { 28999318fe57SMatthew G. Knepley PetscFunctionBegin; 29009318fe57SMatthew G. Knepley PetscValidPointer(dm, 5); 29019566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 29029566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 29039566063dSJacob Faibussowitsch PetscCall(DMPlexCreateSphereMesh_Internal(*dm, dim, simplex, R)); 29049318fe57SMatthew G. Knepley PetscFunctionReturn(0); 29059318fe57SMatthew G. Knepley } 29069318fe57SMatthew G. Knepley 29079318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBallMesh_Internal(DM dm, PetscInt dim, PetscReal R) 29089318fe57SMatthew G. Knepley { 29099318fe57SMatthew G. Knepley DM sdm, vol; 29109318fe57SMatthew G. Knepley DMLabel bdlabel; 29119318fe57SMatthew G. Knepley 29129318fe57SMatthew G. Knepley PetscFunctionBegin; 29139566063dSJacob Faibussowitsch PetscCall(DMCreate(PetscObjectComm((PetscObject) dm), &sdm)); 29149566063dSJacob Faibussowitsch PetscCall(DMSetType(sdm, DMPLEX)); 29159566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject) sdm, "bd_")); 29169566063dSJacob Faibussowitsch PetscCall(DMPlexCreateSphereMesh_Internal(sdm, dim-1, PETSC_TRUE, R)); 29179566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions(sdm)); 29189566063dSJacob Faibussowitsch PetscCall(DMViewFromOptions(sdm, NULL, "-dm_view")); 29199566063dSJacob Faibussowitsch PetscCall(DMPlexGenerate(sdm, NULL, PETSC_TRUE, &vol)); 29209566063dSJacob Faibussowitsch PetscCall(DMDestroy(&sdm)); 29219566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &vol)); 29229566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm, "marker")); 29239566063dSJacob Faibussowitsch PetscCall(DMGetLabel(dm, "marker", &bdlabel)); 29249566063dSJacob Faibussowitsch PetscCall(DMPlexMarkBoundaryFaces(dm, PETSC_DETERMINE, bdlabel)); 29259566063dSJacob Faibussowitsch PetscCall(DMPlexLabelComplete(dm, bdlabel)); 292651a74b61SMatthew G. Knepley PetscFunctionReturn(0); 292751a74b61SMatthew G. Knepley } 292851a74b61SMatthew G. Knepley 292951a74b61SMatthew G. Knepley /*@ 293051a74b61SMatthew G. Knepley DMPlexCreateBallMesh - Creates a simplex mesh on the d-dimensional ball, B^d. 293151a74b61SMatthew G. Knepley 293251a74b61SMatthew G. Knepley Collective 293351a74b61SMatthew G. Knepley 293451a74b61SMatthew G. Knepley Input Parameters: 293551a74b61SMatthew G. Knepley + comm - The communicator for the DM object 293651a74b61SMatthew G. Knepley . dim - The dimension 293751a74b61SMatthew G. Knepley - R - The radius 293851a74b61SMatthew G. Knepley 293951a74b61SMatthew G. Knepley Output Parameter: 294051a74b61SMatthew G. Knepley . dm - The DM object 294151a74b61SMatthew G. Knepley 294251a74b61SMatthew G. Knepley Options Database Keys: 294351a74b61SMatthew G. Knepley - bd_dm_refine - This will refine the surface mesh preserving the sphere geometry 294451a74b61SMatthew G. Knepley 294551a74b61SMatthew G. Knepley Level: beginner 294651a74b61SMatthew G. Knepley 2947db781477SPatrick Sanan .seealso: `DMPlexCreateSphereMesh()`, `DMPlexCreateBoxMesh()`, `DMSetType()`, `DMCreate()` 294851a74b61SMatthew G. Knepley @*/ 294951a74b61SMatthew G. Knepley PetscErrorCode DMPlexCreateBallMesh(MPI_Comm comm, PetscInt dim, PetscReal R, DM *dm) 295051a74b61SMatthew G. Knepley { 295151a74b61SMatthew G. Knepley PetscFunctionBegin; 29529566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 29539566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 29549566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBallMesh_Internal(*dm, dim, R)); 29552829fed8SMatthew G. Knepley PetscFunctionReturn(0); 29562829fed8SMatthew G. Knepley } 29572829fed8SMatthew G. Knepley 29589318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateReferenceCell_Internal(DM rdm, DMPolytopeType ct) 29590a6ba040SMatthew G. Knepley { 29600a6ba040SMatthew G. Knepley PetscFunctionBegin; 29619318fe57SMatthew G. Knepley switch (ct) { 29629318fe57SMatthew G. Knepley case DM_POLYTOPE_POINT: 29639318fe57SMatthew G. Knepley { 29649318fe57SMatthew G. Knepley PetscInt numPoints[1] = {1}; 29659318fe57SMatthew G. Knepley PetscInt coneSize[1] = {0}; 29669318fe57SMatthew G. Knepley PetscInt cones[1] = {0}; 29679318fe57SMatthew G. Knepley PetscInt coneOrientations[1] = {0}; 29689318fe57SMatthew G. Knepley PetscScalar vertexCoords[1] = {0.0}; 29699318fe57SMatthew G. Knepley 29709566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 0)); 29719566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 0, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 29729318fe57SMatthew G. Knepley } 29739318fe57SMatthew G. Knepley break; 29749318fe57SMatthew G. Knepley case DM_POLYTOPE_SEGMENT: 29759318fe57SMatthew G. Knepley { 29769318fe57SMatthew G. Knepley PetscInt numPoints[2] = {2, 1}; 29779318fe57SMatthew G. Knepley PetscInt coneSize[3] = {2, 0, 0}; 29789318fe57SMatthew G. Knepley PetscInt cones[2] = {1, 2}; 29799318fe57SMatthew G. Knepley PetscInt coneOrientations[2] = {0, 0}; 29809318fe57SMatthew G. Knepley PetscScalar vertexCoords[2] = {-1.0, 1.0}; 29819318fe57SMatthew G. Knepley 29829566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 1)); 29839566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 29849318fe57SMatthew G. Knepley } 29859318fe57SMatthew G. Knepley break; 2986b5a892a1SMatthew G. Knepley case DM_POLYTOPE_POINT_PRISM_TENSOR: 2987b5a892a1SMatthew G. Knepley { 2988b5a892a1SMatthew G. Knepley PetscInt numPoints[2] = {2, 1}; 2989b5a892a1SMatthew G. Knepley PetscInt coneSize[3] = {2, 0, 0}; 2990b5a892a1SMatthew G. Knepley PetscInt cones[2] = {1, 2}; 2991b5a892a1SMatthew G. Knepley PetscInt coneOrientations[2] = {0, 0}; 2992b5a892a1SMatthew G. Knepley PetscScalar vertexCoords[2] = {-1.0, 1.0}; 2993b5a892a1SMatthew G. Knepley 29949566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 1)); 29959566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 2996b5a892a1SMatthew G. Knepley } 2997b5a892a1SMatthew G. Knepley break; 29989318fe57SMatthew G. Knepley case DM_POLYTOPE_TRIANGLE: 29999318fe57SMatthew G. Knepley { 30009318fe57SMatthew G. Knepley PetscInt numPoints[2] = {3, 1}; 30019318fe57SMatthew G. Knepley PetscInt coneSize[4] = {3, 0, 0, 0}; 30029318fe57SMatthew G. Knepley PetscInt cones[3] = {1, 2, 3}; 30039318fe57SMatthew G. Knepley PetscInt coneOrientations[3] = {0, 0, 0}; 30049318fe57SMatthew G. Knepley PetscScalar vertexCoords[6] = {-1.0, -1.0, 1.0, -1.0, -1.0, 1.0}; 30059318fe57SMatthew G. Knepley 30069566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 2)); 30079566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30089318fe57SMatthew G. Knepley } 30099318fe57SMatthew G. Knepley break; 30109318fe57SMatthew G. Knepley case DM_POLYTOPE_QUADRILATERAL: 30119318fe57SMatthew G. Knepley { 30129318fe57SMatthew G. Knepley PetscInt numPoints[2] = {4, 1}; 30139318fe57SMatthew G. Knepley PetscInt coneSize[5] = {4, 0, 0, 0, 0}; 30149318fe57SMatthew G. Knepley PetscInt cones[4] = {1, 2, 3, 4}; 30159318fe57SMatthew G. Knepley PetscInt coneOrientations[4] = {0, 0, 0, 0}; 30169318fe57SMatthew G. Knepley PetscScalar vertexCoords[8] = {-1.0, -1.0, 1.0, -1.0, 1.0, 1.0, -1.0, 1.0}; 30179318fe57SMatthew G. Knepley 30189566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 2)); 30199566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30209318fe57SMatthew G. Knepley } 30219318fe57SMatthew G. Knepley break; 30229318fe57SMatthew G. Knepley case DM_POLYTOPE_SEG_PRISM_TENSOR: 30239318fe57SMatthew G. Knepley { 30249318fe57SMatthew G. Knepley PetscInt numPoints[2] = {4, 1}; 30259318fe57SMatthew G. Knepley PetscInt coneSize[5] = {4, 0, 0, 0, 0}; 30269318fe57SMatthew G. Knepley PetscInt cones[4] = {1, 2, 3, 4}; 30279318fe57SMatthew G. Knepley PetscInt coneOrientations[4] = {0, 0, 0, 0}; 30289318fe57SMatthew G. Knepley PetscScalar vertexCoords[8] = {-1.0, -1.0, 1.0, -1.0, -1.0, 1.0, 1.0, 1.0}; 30299318fe57SMatthew G. Knepley 30309566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 2)); 30319566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30329318fe57SMatthew G. Knepley } 30339318fe57SMatthew G. Knepley break; 30349318fe57SMatthew G. Knepley case DM_POLYTOPE_TETRAHEDRON: 30359318fe57SMatthew G. Knepley { 30369318fe57SMatthew G. Knepley PetscInt numPoints[2] = {4, 1}; 30379318fe57SMatthew G. Knepley PetscInt coneSize[5] = {4, 0, 0, 0, 0}; 3038f0edb160SMatthew G. Knepley PetscInt cones[4] = {1, 2, 3, 4}; 30399318fe57SMatthew G. Knepley PetscInt coneOrientations[4] = {0, 0, 0, 0}; 3040f0edb160SMatthew 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}; 30419318fe57SMatthew G. Knepley 30429566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 30439566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30449318fe57SMatthew G. Knepley } 30459318fe57SMatthew G. Knepley break; 30469318fe57SMatthew G. Knepley case DM_POLYTOPE_HEXAHEDRON: 30479318fe57SMatthew G. Knepley { 30489318fe57SMatthew G. Knepley PetscInt numPoints[2] = {8, 1}; 30499318fe57SMatthew G. Knepley PetscInt coneSize[9] = {8, 0, 0, 0, 0, 0, 0, 0, 0}; 3050f0edb160SMatthew G. Knepley PetscInt cones[8] = {1, 2, 3, 4, 5, 6, 7, 8}; 30519318fe57SMatthew G. Knepley PetscInt coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0}; 3052f0edb160SMatthew G. Knepley 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, 30539318fe57SMatthew G. Knepley -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 1.0, 1.0, -1.0, 1.0, 1.0}; 30549318fe57SMatthew G. Knepley 30559566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 30569566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30579318fe57SMatthew G. Knepley } 30589318fe57SMatthew G. Knepley break; 30599318fe57SMatthew G. Knepley case DM_POLYTOPE_TRI_PRISM: 30609318fe57SMatthew G. Knepley { 30619318fe57SMatthew G. Knepley PetscInt numPoints[2] = {6, 1}; 30629318fe57SMatthew G. Knepley PetscInt coneSize[7] = {6, 0, 0, 0, 0, 0, 0}; 3063f0edb160SMatthew G. Knepley PetscInt cones[6] = {1, 2, 3, 4, 5, 6}; 30649318fe57SMatthew G. Knepley PetscInt coneOrientations[6] = {0, 0, 0, 0, 0, 0}; 3065f0edb160SMatthew G. Knepley PetscScalar vertexCoords[18] = {-1.0, -1.0, -1.0, -1.0, 1.0, -1.0, 1.0, -1.0, -1.0, 30669318fe57SMatthew G. Knepley -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, 1.0}; 30679318fe57SMatthew G. Knepley 30689566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 30699566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30709318fe57SMatthew G. Knepley } 30719318fe57SMatthew G. Knepley break; 30729318fe57SMatthew G. Knepley case DM_POLYTOPE_TRI_PRISM_TENSOR: 30739318fe57SMatthew G. Knepley { 30749318fe57SMatthew G. Knepley PetscInt numPoints[2] = {6, 1}; 30759318fe57SMatthew G. Knepley PetscInt coneSize[7] = {6, 0, 0, 0, 0, 0, 0}; 30769318fe57SMatthew G. Knepley PetscInt cones[6] = {1, 2, 3, 4, 5, 6}; 30779318fe57SMatthew G. Knepley PetscInt coneOrientations[6] = {0, 0, 0, 0, 0, 0}; 30789318fe57SMatthew G. Knepley PetscScalar vertexCoords[18] = {-1.0, -1.0, -1.0, 1.0, -1.0, -1.0, -1.0, 1.0, -1.0, 30799318fe57SMatthew G. Knepley -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, 1.0}; 30809318fe57SMatthew G. Knepley 30819566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 30829566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30839318fe57SMatthew G. Knepley } 30849318fe57SMatthew G. Knepley break; 30859318fe57SMatthew G. Knepley case DM_POLYTOPE_QUAD_PRISM_TENSOR: 30869318fe57SMatthew G. Knepley { 30879318fe57SMatthew G. Knepley PetscInt numPoints[2] = {8, 1}; 30889318fe57SMatthew G. Knepley PetscInt coneSize[9] = {8, 0, 0, 0, 0, 0, 0, 0, 0}; 30899318fe57SMatthew G. Knepley PetscInt cones[8] = {1, 2, 3, 4, 5, 6, 7, 8}; 30909318fe57SMatthew G. Knepley PetscInt coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0}; 30919318fe57SMatthew G. Knepley 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, 30929318fe57SMatthew G. Knepley -1.0, -1.0, 1.0, 1.0, -1.0, 1.0, 1.0, 1.0, 1.0, -1.0, 1.0, 1.0}; 30939318fe57SMatthew G. Knepley 30949566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 30959566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 30969318fe57SMatthew G. Knepley } 30979318fe57SMatthew G. Knepley break; 30989318fe57SMatthew G. Knepley case DM_POLYTOPE_PYRAMID: 30999318fe57SMatthew G. Knepley { 31009318fe57SMatthew G. Knepley PetscInt numPoints[2] = {5, 1}; 31019318fe57SMatthew G. Knepley PetscInt coneSize[6] = {5, 0, 0, 0, 0, 0}; 3102f0edb160SMatthew G. Knepley PetscInt cones[5] = {1, 2, 3, 4, 5}; 31039318fe57SMatthew G. Knepley PetscInt coneOrientations[8] = {0, 0, 0, 0, 0, 0, 0, 0}; 3104f0edb160SMatthew G. Knepley 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, 31059318fe57SMatthew G. Knepley 0.0, 0.0, 1.0}; 31069318fe57SMatthew G. Knepley 31079566063dSJacob Faibussowitsch PetscCall(DMSetDimension(rdm, 3)); 31089566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromDAG(rdm, 1, numPoints, coneSize, cones, coneOrientations, vertexCoords)); 31099318fe57SMatthew G. Knepley } 31109318fe57SMatthew G. Knepley break; 311198921bdaSJacob Faibussowitsch default: SETERRQ(PetscObjectComm((PetscObject) rdm), PETSC_ERR_ARG_WRONG, "Cannot create reference cell for cell type %s", DMPolytopeTypes[ct]); 31129318fe57SMatthew G. Knepley } 31139318fe57SMatthew G. Knepley { 31149318fe57SMatthew G. Knepley PetscInt Nv, v; 31159318fe57SMatthew G. Knepley 31169318fe57SMatthew G. Knepley /* Must create the celltype label here so that we do not automatically try to compute the types */ 31179566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(rdm, "celltype")); 31189566063dSJacob Faibussowitsch PetscCall(DMPlexSetCellType(rdm, 0, ct)); 31199566063dSJacob Faibussowitsch PetscCall(DMPlexGetChart(rdm, NULL, &Nv)); 31209566063dSJacob Faibussowitsch for (v = 1; v < Nv; ++v) PetscCall(DMPlexSetCellType(rdm, v, DM_POLYTOPE_POINT)); 31219318fe57SMatthew G. Knepley } 31229566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolateInPlace_Internal(rdm)); 31239566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) rdm, DMPolytopeTypes[ct])); 31240a6ba040SMatthew G. Knepley PetscFunctionReturn(0); 31250a6ba040SMatthew G. Knepley } 31260a6ba040SMatthew G. Knepley 31279318fe57SMatthew G. Knepley /*@ 31289318fe57SMatthew G. Knepley DMPlexCreateReferenceCell - Create a DMPLEX with the appropriate FEM reference cell 31299318fe57SMatthew G. Knepley 31309318fe57SMatthew G. Knepley Collective 31319318fe57SMatthew G. Knepley 31329318fe57SMatthew G. Knepley Input Parameters: 31339318fe57SMatthew G. Knepley + comm - The communicator 31349318fe57SMatthew G. Knepley - ct - The cell type of the reference cell 31359318fe57SMatthew G. Knepley 31369318fe57SMatthew G. Knepley Output Parameter: 31379318fe57SMatthew G. Knepley . refdm - The reference cell 31389318fe57SMatthew G. Knepley 31399318fe57SMatthew G. Knepley Level: intermediate 31409318fe57SMatthew G. Knepley 3141db781477SPatrick Sanan .seealso: `DMPlexCreateReferenceCell()`, `DMPlexCreateBoxMesh()` 31429318fe57SMatthew G. Knepley @*/ 31439318fe57SMatthew G. Knepley PetscErrorCode DMPlexCreateReferenceCell(MPI_Comm comm, DMPolytopeType ct, DM *refdm) 31440a6ba040SMatthew G. Knepley { 31450a6ba040SMatthew G. Knepley PetscFunctionBegin; 31469566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, refdm)); 31479566063dSJacob Faibussowitsch PetscCall(DMSetType(*refdm, DMPLEX)); 31489566063dSJacob Faibussowitsch PetscCall(DMPlexCreateReferenceCell_Internal(*refdm, ct)); 31499318fe57SMatthew G. Knepley PetscFunctionReturn(0); 31509318fe57SMatthew G. Knepley } 315179a015ccSMatthew G. Knepley 31529318fe57SMatthew G. Knepley static PetscErrorCode DMPlexCreateBoundaryLabel_Private(DM dm, const char name[]) 31539318fe57SMatthew G. Knepley { 31549318fe57SMatthew G. Knepley DM plex; 31559318fe57SMatthew G. Knepley DMLabel label; 31569318fe57SMatthew G. Knepley PetscBool hasLabel; 31570a6ba040SMatthew G. Knepley 31589318fe57SMatthew G. Knepley PetscFunctionBeginUser; 31599566063dSJacob Faibussowitsch PetscCall(DMHasLabel(dm, name, &hasLabel)); 31609318fe57SMatthew G. Knepley if (hasLabel) PetscFunctionReturn(0); 31619566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(dm, name)); 31629566063dSJacob Faibussowitsch PetscCall(DMGetLabel(dm, name, &label)); 31639566063dSJacob Faibussowitsch PetscCall(DMConvert(dm, DMPLEX, &plex)); 31649566063dSJacob Faibussowitsch PetscCall(DMPlexMarkBoundaryFaces(plex, 1, label)); 31659566063dSJacob Faibussowitsch PetscCall(DMDestroy(&plex)); 31669318fe57SMatthew G. Knepley PetscFunctionReturn(0); 31679318fe57SMatthew G. Knepley } 3168acdc6f61SToby Isaac 316905bd46c0SStefano Zampini const char * const DMPlexShapes[] = {"box", "box_surface", "ball", "sphere", "cylinder", "schwarz_p", "gyroid", "doublet", "unknown", "DMPlexShape", "DM_SHAPE_", NULL}; 31709318fe57SMatthew G. Knepley 317161a622f3SMatthew G. Knepley static PetscErrorCode DMPlexCreateFromOptions_Internal(PetscOptionItems *PetscOptionsObject, PetscBool *useCoordSpace, DM dm) 31729318fe57SMatthew G. Knepley { 31739318fe57SMatthew G. Knepley DMPlexShape shape = DM_SHAPE_BOX; 31749318fe57SMatthew G. Knepley DMPolytopeType cell = DM_POLYTOPE_TRIANGLE; 31759318fe57SMatthew G. Knepley PetscInt dim = 2; 31769318fe57SMatthew G. Knepley PetscBool simplex = PETSC_TRUE, interpolate = PETSC_TRUE, adjCone = PETSC_FALSE, adjClosure = PETSC_TRUE, refDomain = PETSC_FALSE; 3177cd7e8a5eSksagiyam PetscBool flg, flg2, fflg, bdfflg, nameflg; 31789318fe57SMatthew G. Knepley MPI_Comm comm; 3179ed5e4e85SVaclav Hapla char filename[PETSC_MAX_PATH_LEN] = "<unspecified>"; 3180ed5e4e85SVaclav Hapla char bdFilename[PETSC_MAX_PATH_LEN] = "<unspecified>"; 3181ed5e4e85SVaclav Hapla char plexname[PETSC_MAX_PATH_LEN] = ""; 31829318fe57SMatthew G. Knepley 31839318fe57SMatthew G. Knepley PetscFunctionBegin; 31849566063dSJacob Faibussowitsch PetscCall(PetscObjectGetComm((PetscObject) dm, &comm)); 31859318fe57SMatthew G. Knepley /* TODO Turn this into a registration interface */ 31869566063dSJacob Faibussowitsch PetscCall(PetscOptionsString("-dm_plex_filename", "File containing a mesh", "DMPlexCreateFromFile", filename, filename, sizeof(filename), &fflg)); 31879566063dSJacob Faibussowitsch PetscCall(PetscOptionsString("-dm_plex_boundary_filename", "File containing a mesh boundary", "DMPlexCreateFromFile", bdFilename, bdFilename, sizeof(bdFilename), &bdfflg)); 31889566063dSJacob Faibussowitsch PetscCall(PetscOptionsString("-dm_plex_name", "Name of the mesh in the file", "DMPlexCreateFromFile", plexname, plexname, sizeof(plexname), &nameflg)); 31899566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnum("-dm_plex_cell", "Cell shape", "", DMPolytopeTypes, (PetscEnum) cell, (PetscEnum *) &cell, NULL)); 31909566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_reference_cell_domain", "Use a reference cell domain", "", refDomain, &refDomain, NULL)); 31919566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnum("-dm_plex_shape", "Shape for built-in mesh", "", DMPlexShapes, (PetscEnum) shape, (PetscEnum *) &shape, &flg)); 31929566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_plex_dim", "Topological dimension of the mesh", "DMGetDimension", dim, &dim, &flg, 0)); 319363a3b9bcSJacob Faibussowitsch PetscCheck(!(dim < 0) && !(dim > 3),comm, PETSC_ERR_ARG_OUTOFRANGE, "Dimension %" PetscInt_FMT " should be in [1, 3]", dim); 31949566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_simplex", "Mesh cell shape", "", simplex, &simplex, &flg)); 31959566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_interpolate", "Flag to create edges and faces automatically", "", interpolate, &interpolate, &flg)); 31969566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_adj_cone", "Set adjacency direction", "DMSetBasicAdjacency", adjCone, &adjCone, &flg)); 31979566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_adj_closure", "Set adjacency size", "DMSetBasicAdjacency", adjClosure, &adjClosure, &flg2)); 31989566063dSJacob Faibussowitsch if (flg || flg2) PetscCall(DMSetBasicAdjacency(dm, adjCone, adjClosure)); 31999318fe57SMatthew G. Knepley 320061a622f3SMatthew G. Knepley switch (cell) { 320161a622f3SMatthew G. Knepley case DM_POLYTOPE_POINT: 320261a622f3SMatthew G. Knepley case DM_POLYTOPE_SEGMENT: 320361a622f3SMatthew G. Knepley case DM_POLYTOPE_POINT_PRISM_TENSOR: 320461a622f3SMatthew G. Knepley case DM_POLYTOPE_TRIANGLE: 320561a622f3SMatthew G. Knepley case DM_POLYTOPE_QUADRILATERAL: 320661a622f3SMatthew G. Knepley case DM_POLYTOPE_TETRAHEDRON: 320761a622f3SMatthew G. Knepley case DM_POLYTOPE_HEXAHEDRON: 320861a622f3SMatthew G. Knepley *useCoordSpace = PETSC_TRUE;break; 320961a622f3SMatthew G. Knepley default: *useCoordSpace = PETSC_FALSE;break; 321061a622f3SMatthew G. Knepley } 321161a622f3SMatthew G. Knepley 32129318fe57SMatthew G. Knepley if (fflg) { 32139318fe57SMatthew G. Knepley DM dmnew; 32149318fe57SMatthew G. Knepley 32159566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromFile(PetscObjectComm((PetscObject) dm), filename, plexname, interpolate, &dmnew)); 32165de52c6dSVaclav Hapla PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew)); 32179566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &dmnew)); 32189318fe57SMatthew G. Knepley } else if (refDomain) { 32199566063dSJacob Faibussowitsch PetscCall(DMPlexCreateReferenceCell_Internal(dm, cell)); 32209318fe57SMatthew G. Knepley } else if (bdfflg) { 32219318fe57SMatthew G. Knepley DM bdm, dmnew; 32229318fe57SMatthew G. Knepley 32239566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFromFile(PetscObjectComm((PetscObject) dm), bdFilename, plexname, interpolate, &bdm)); 32249566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject) bdm, "bd_")); 32259566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions(bdm)); 32269566063dSJacob Faibussowitsch PetscCall(DMPlexGenerate(bdm, NULL, interpolate, &dmnew)); 32279566063dSJacob Faibussowitsch PetscCall(DMDestroy(&bdm)); 32285de52c6dSVaclav Hapla PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew)); 32299566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &dmnew)); 32309318fe57SMatthew G. Knepley } else { 32319566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) dm, DMPlexShapes[shape])); 32329318fe57SMatthew G. Knepley switch (shape) { 32339318fe57SMatthew G. Knepley case DM_SHAPE_BOX: 32349318fe57SMatthew G. Knepley { 32359318fe57SMatthew G. Knepley PetscInt faces[3] = {0, 0, 0}; 32369318fe57SMatthew G. Knepley PetscReal lower[3] = {0, 0, 0}; 32379318fe57SMatthew G. Knepley PetscReal upper[3] = {1, 1, 1}; 32389318fe57SMatthew G. Knepley DMBoundaryType bdt[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE}; 32399318fe57SMatthew G. Knepley PetscInt i, n; 32409318fe57SMatthew G. Knepley 32419318fe57SMatthew G. Knepley n = dim; 32429318fe57SMatthew G. Knepley for (i = 0; i < dim; ++i) faces[i] = (dim == 1 ? 1 : 4-dim); 32439566063dSJacob Faibussowitsch PetscCall(PetscOptionsIntArray("-dm_plex_box_faces", "Number of faces along each dimension", "", faces, &n, &flg)); 32449318fe57SMatthew G. Knepley n = 3; 32459566063dSJacob Faibussowitsch PetscCall(PetscOptionsRealArray("-dm_plex_box_lower", "Lower left corner of box", "", lower, &n, &flg)); 324663a3b9bcSJacob Faibussowitsch PetscCheck(!flg || !(n != dim),comm, PETSC_ERR_ARG_SIZ, "Lower box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim); 32479318fe57SMatthew G. Knepley n = 3; 32489566063dSJacob Faibussowitsch PetscCall(PetscOptionsRealArray("-dm_plex_box_upper", "Upper right corner of box", "", upper, &n, &flg)); 324963a3b9bcSJacob Faibussowitsch PetscCheck(!flg || !(n != dim),comm, PETSC_ERR_ARG_SIZ, "Upper box point had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim); 32509318fe57SMatthew G. Knepley n = 3; 32519566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnumArray("-dm_plex_box_bd", "Boundary type for each dimension", "", DMBoundaryTypes, (PetscEnum *) bdt, &n, &flg)); 325263a3b9bcSJacob Faibussowitsch PetscCheck(!flg || !(n != dim),comm, PETSC_ERR_ARG_SIZ, "Box boundary types had %" PetscInt_FMT " values, should have been %" PetscInt_FMT, n, dim); 32539318fe57SMatthew G. Knepley switch (cell) { 325461a622f3SMatthew G. Knepley case DM_POLYTOPE_TRI_PRISM_TENSOR: 32559566063dSJacob Faibussowitsch PetscCall(DMPlexCreateWedgeBoxMesh_Internal(dm, faces, lower, upper, bdt)); 3256d410b0cfSMatthew G. Knepley if (!interpolate) { 3257d410b0cfSMatthew G. Knepley DM udm; 3258d410b0cfSMatthew G. Knepley 32599566063dSJacob Faibussowitsch PetscCall(DMPlexUninterpolate(dm, &udm)); 32609566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &udm)); 3261d410b0cfSMatthew G. Knepley } 32629318fe57SMatthew G. Knepley break; 32639318fe57SMatthew G. Knepley default: 32649566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxMesh_Internal(dm, dim, simplex, faces, lower, upper, bdt, interpolate)); 32659318fe57SMatthew G. Knepley break; 32669318fe57SMatthew G. Knepley } 32679318fe57SMatthew G. Knepley } 32689318fe57SMatthew G. Knepley break; 32699318fe57SMatthew G. Knepley case DM_SHAPE_BOX_SURFACE: 32709318fe57SMatthew G. Knepley { 32719318fe57SMatthew G. Knepley PetscInt faces[3] = {0, 0, 0}; 32729318fe57SMatthew G. Knepley PetscReal lower[3] = {0, 0, 0}; 32739318fe57SMatthew G. Knepley PetscReal upper[3] = {1, 1, 1}; 32749318fe57SMatthew G. Knepley PetscInt i, n; 32759318fe57SMatthew G. Knepley 32769318fe57SMatthew G. Knepley n = dim+1; 32779318fe57SMatthew G. Knepley for (i = 0; i < dim+1; ++i) faces[i] = (dim+1 == 1 ? 1 : 4-(dim+1)); 32789566063dSJacob Faibussowitsch PetscCall(PetscOptionsIntArray("-dm_plex_box_faces", "Number of faces along each dimension", "", faces, &n, &flg)); 32799318fe57SMatthew G. Knepley n = 3; 32809566063dSJacob Faibussowitsch PetscCall(PetscOptionsRealArray("-dm_plex_box_lower", "Lower left corner of box", "", lower, &n, &flg)); 328163a3b9bcSJacob 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); 32829318fe57SMatthew G. Knepley n = 3; 32839566063dSJacob Faibussowitsch PetscCall(PetscOptionsRealArray("-dm_plex_box_upper", "Upper right corner of box", "", upper, &n, &flg)); 328463a3b9bcSJacob 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); 32859566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBoxSurfaceMesh_Internal(dm, dim+1, faces, lower, upper, interpolate)); 32869318fe57SMatthew G. Knepley } 32879318fe57SMatthew G. Knepley break; 32889318fe57SMatthew G. Knepley case DM_SHAPE_SPHERE: 32899318fe57SMatthew G. Knepley { 32909318fe57SMatthew G. Knepley PetscReal R = 1.0; 32919318fe57SMatthew G. Knepley 32929566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_plex_sphere_radius", "Radius of the sphere", "", R, &R, &flg)); 32939566063dSJacob Faibussowitsch PetscCall(DMPlexCreateSphereMesh_Internal(dm, dim, simplex, R)); 32949318fe57SMatthew G. Knepley } 32959318fe57SMatthew G. Knepley break; 32969318fe57SMatthew G. Knepley case DM_SHAPE_BALL: 32979318fe57SMatthew G. Knepley { 32989318fe57SMatthew G. Knepley PetscReal R = 1.0; 32999318fe57SMatthew G. Knepley 33009566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_plex_ball_radius", "Radius of the ball", "", R, &R, &flg)); 33019566063dSJacob Faibussowitsch PetscCall(DMPlexCreateBallMesh_Internal(dm, dim, R)); 33029318fe57SMatthew G. Knepley } 33039318fe57SMatthew G. Knepley break; 33049318fe57SMatthew G. Knepley case DM_SHAPE_CYLINDER: 33059318fe57SMatthew G. Knepley { 33069318fe57SMatthew G. Knepley DMBoundaryType bdt = DM_BOUNDARY_NONE; 33079318fe57SMatthew G. Knepley PetscInt Nw = 6; 33089318fe57SMatthew G. Knepley 33099566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnum("-dm_plex_cylinder_bd", "Boundary type in the z direction", "", DMBoundaryTypes, (PetscEnum) bdt, (PetscEnum *) &bdt, NULL)); 33109566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-dm_plex_cylinder_num_wedges", "Number of wedges around the cylinder", "", Nw, &Nw, NULL)); 33119318fe57SMatthew G. Knepley switch (cell) { 331261a622f3SMatthew G. Knepley case DM_POLYTOPE_TRI_PRISM_TENSOR: 33139566063dSJacob Faibussowitsch PetscCall(DMPlexCreateWedgeCylinderMesh_Internal(dm, Nw, interpolate)); 33149318fe57SMatthew G. Knepley break; 33159318fe57SMatthew G. Knepley default: 33169566063dSJacob Faibussowitsch PetscCall(DMPlexCreateHexCylinderMesh_Internal(dm, bdt)); 33179318fe57SMatthew G. Knepley break; 33189318fe57SMatthew G. Knepley } 33199318fe57SMatthew G. Knepley } 33209318fe57SMatthew G. Knepley break; 3321b7f5c055SJed Brown case DM_SHAPE_SCHWARZ_P: // fallthrough 3322b7f5c055SJed Brown case DM_SHAPE_GYROID: 3323b7f5c055SJed Brown { 3324b7f5c055SJed Brown PetscInt extent[3] = {1,1,1}, refine = 0, layers = 0, three; 3325b7f5c055SJed Brown PetscReal thickness = 0.; 3326b7f5c055SJed Brown DMBoundaryType periodic[3] = {DM_BOUNDARY_NONE, DM_BOUNDARY_NONE, DM_BOUNDARY_NONE}; 3327b7f5c055SJed Brown DMPlexTPSType tps_type = shape == DM_SHAPE_SCHWARZ_P ? DMPLEX_TPS_SCHWARZ_P : DMPLEX_TPS_GYROID; 33281436d7faSJed Brown PetscBool tps_distribute; 33299566063dSJacob Faibussowitsch PetscCall(PetscOptionsIntArray("-dm_plex_tps_extent", "Number of replicas for each of three dimensions", NULL, extent, (three=3, &three), NULL)); 33309566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-dm_plex_tps_refine", "Number of refinements", NULL, refine, &refine, NULL)); 33319566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnumArray("-dm_plex_tps_periodic", "Periodicity in each of three dimensions", NULL, DMBoundaryTypes, (PetscEnum*)periodic, (three=3, &three), NULL)); 33329566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-dm_plex_tps_layers", "Number of layers in volumetric extrusion (or zero to not extrude)", NULL, layers, &layers, NULL)); 33339566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_plex_tps_thickness", "Thickness of volumetric extrusion", NULL, thickness, &thickness, NULL)); 33349566063dSJacob Faibussowitsch PetscCall(DMPlexDistributeGetDefault(dm, &tps_distribute)); 33359566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_tps_distribute", "Distribute the 2D mesh prior to refinement and extrusion", NULL, tps_distribute, &tps_distribute, NULL)); 33369566063dSJacob Faibussowitsch PetscCall(DMPlexCreateTPSMesh_Internal(dm, tps_type, extent, periodic, tps_distribute, refine, layers, thickness)); 3337b7f5c055SJed Brown } 3338b7f5c055SJed Brown break; 333905bd46c0SStefano Zampini case DM_SHAPE_DOUBLET: 334005bd46c0SStefano Zampini { 334105bd46c0SStefano Zampini DM dmnew; 334205bd46c0SStefano Zampini PetscReal rl = 0.0; 334305bd46c0SStefano Zampini 334405bd46c0SStefano Zampini PetscCall(PetscOptionsReal("-dm_plex_doublet_refinementlimit", "Refinement limit", NULL, rl, &rl, NULL)); 334505bd46c0SStefano Zampini PetscCall(DMPlexCreateDoublet(PetscObjectComm((PetscObject)dm), dim, simplex, interpolate, rl, &dmnew)); 33465de52c6dSVaclav Hapla PetscCall(DMPlexCopy_Internal(dm, PETSC_FALSE, PETSC_FALSE, dmnew)); 334705bd46c0SStefano Zampini PetscCall(DMPlexReplace_Static(dm, &dmnew)); 334805bd46c0SStefano Zampini } 334905bd46c0SStefano Zampini break; 335098921bdaSJacob Faibussowitsch default: SETERRQ(comm, PETSC_ERR_SUP, "Domain shape %s is unsupported", DMPlexShapes[shape]); 33519318fe57SMatthew G. Knepley } 33529318fe57SMatthew G. Knepley } 33539566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE)); 3354ed5e4e85SVaclav Hapla if (!((PetscObject)dm)->name && nameflg) { 33559566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject)dm, plexname)); 3356ed5e4e85SVaclav Hapla } 33570a6ba040SMatthew G. Knepley PetscFunctionReturn(0); 33580a6ba040SMatthew G. Knepley } 33590a6ba040SMatthew G. Knepley 336047920aaeSMatthew G. Knepley PetscErrorCode DMSetFromOptions_NonRefinement_Plex(PetscOptionItems *PetscOptionsObject, DM dm) 33610a6ba040SMatthew G. Knepley { 33620a6ba040SMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 3363c0f0dcc3SMatthew G. Knepley PetscBool flg; 33649318fe57SMatthew G. Knepley char bdLabel[PETSC_MAX_PATH_LEN]; 33650a6ba040SMatthew G. Knepley 33660a6ba040SMatthew G. Knepley PetscFunctionBegin; 33670a6ba040SMatthew G. Knepley /* Handle viewing */ 33689566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_print_set_values", "Output all set values info", "DMPlexMatSetClosure", PETSC_FALSE, &mesh->printSetValues, NULL)); 33699566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_plex_print_fem", "Debug output level all fem computations", "DMPlexSNESComputeResidualFEM", 0, &mesh->printFEM, NULL,0)); 33709566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_plex_print_tol", "Tolerance for FEM output", "DMPlexSNESComputeResidualFEM", mesh->printTol, &mesh->printTol, NULL)); 33719566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_plex_print_l2", "Debug output level all L2 diff computations", "DMComputeL2Diff", 0, &mesh->printL2, NULL,0)); 33729566063dSJacob Faibussowitsch PetscCall(DMMonitorSetFromOptions(dm, "-dm_plex_monitor_throughput", "Monitor the simulation throughput", "DMPlexMonitorThroughput", DMPlexMonitorThroughput, NULL, &flg)); 33739566063dSJacob Faibussowitsch if (flg) PetscCall(PetscLogDefaultBegin()); 33749318fe57SMatthew G. Knepley /* Labeling */ 33759566063dSJacob Faibussowitsch PetscCall(PetscOptionsString("-dm_plex_boundary_label", "Label to mark the mesh boundary", "", bdLabel, bdLabel, sizeof(bdLabel), &flg)); 33769566063dSJacob Faibussowitsch if (flg) PetscCall(DMPlexCreateBoundaryLabel_Private(dm, bdLabel)); 3377953fc75cSMatthew G. Knepley /* Point Location */ 33789566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_hash_location", "Use grid hashing for point location", "DMInterpolate", PETSC_FALSE, &mesh->useHashLocation, NULL)); 33790848f4b5SMatthew G. Knepley /* Partitioning and distribution */ 33809566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_partition_balance", "Attempt to evenly divide points on partition boundary between processes", "DMPlexSetPartitionBalance", PETSC_FALSE, &mesh->partitionBalance, NULL)); 33812e62ab5aSMatthew G. Knepley /* Generation and remeshing */ 33829566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_remesh_bd", "Allow changes to the boundary on remeshing", "DMAdapt", PETSC_FALSE, &mesh->remeshBd, NULL)); 3383b29cfa1cSToby Isaac /* Projection behavior */ 33849566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_plex_max_projection_height", "Maxmimum mesh point height used to project locally", "DMPlexSetMaxProjectionHeight", 0, &mesh->maxProjectionHeight, NULL,0)); 33859566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_regular_refinement", "Use special nested projection algorithm for regular refinement", "DMPlexSetRegularRefinement", mesh->regularRefinement, &mesh->regularRefinement, NULL)); 3386f12cf164SMatthew G. Knepley /* Checking structure */ 3387f12cf164SMatthew G. Knepley { 3388e902f1eaSVaclav Hapla PetscBool flg = PETSC_FALSE, flg2 = PETSC_FALSE, all = PETSC_FALSE; 3389f12cf164SMatthew G. Knepley 33909566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_check_all", "Perform all checks", NULL, PETSC_FALSE, &all, &flg2)); 33919566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_check_symmetry", "Check that the adjacency information in the mesh is symmetric", "DMPlexCheckSymmetry", PETSC_FALSE, &flg, &flg2)); 33929566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckSymmetry(dm)); 33939566063dSJacob 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)); 33949566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckSkeleton(dm, 0)); 33959566063dSJacob 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)); 33969566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckFaces(dm, 0)); 33979566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_check_geometry", "Check that cells have positive volume", "DMPlexCheckGeometry", PETSC_FALSE, &flg, &flg2)); 33989566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckGeometry(dm)); 33999566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_check_pointsf", "Check some necessary conditions for PointSF", "DMPlexCheckPointSF", PETSC_FALSE, &flg, &flg2)); 34009566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckPointSF(dm)); 34019566063dSJacob 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)); 34029566063dSJacob Faibussowitsch if (all || (flg && flg2)) PetscCall(DMPlexCheckInterfaceCones(dm)); 34039566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_check_cell_shape", "Check cell shape", "DMPlexCheckCellShape", PETSC_FALSE, &flg, &flg2)); 34049566063dSJacob Faibussowitsch if (flg && flg2) PetscCall(DMPlexCheckCellShape(dm, PETSC_TRUE, PETSC_DETERMINE)); 3405f12cf164SMatthew G. Knepley } 34069318fe57SMatthew G. Knepley { 34079318fe57SMatthew G. Knepley PetscReal scale = 1.0; 34084f3833eaSMatthew G. Knepley 34099566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_plex_scale", "Scale factor for mesh coordinates", "DMPlexScale", scale, &scale, &flg)); 34109318fe57SMatthew G. Knepley if (flg) { 34119318fe57SMatthew G. Knepley Vec coordinates, coordinatesLocal; 34129318fe57SMatthew G. Knepley 34139566063dSJacob Faibussowitsch PetscCall(DMGetCoordinates(dm, &coordinates)); 34149566063dSJacob Faibussowitsch PetscCall(DMGetCoordinatesLocal(dm, &coordinatesLocal)); 34159566063dSJacob Faibussowitsch PetscCall(VecScale(coordinates, scale)); 34169566063dSJacob Faibussowitsch PetscCall(VecScale(coordinatesLocal, scale)); 34179318fe57SMatthew G. Knepley } 34189318fe57SMatthew G. Knepley } 34199566063dSJacob Faibussowitsch PetscCall(PetscPartitionerSetFromOptions(mesh->partitioner)); 342068d4fef7SMatthew G. Knepley PetscFunctionReturn(0); 342168d4fef7SMatthew G. Knepley } 342268d4fef7SMatthew G. Knepley 342346fa42a0SMatthew G. Knepley static PetscErrorCode DMSetFromOptions_Plex(PetscOptionItems *PetscOptionsObject,DM dm) 342468d4fef7SMatthew G. Knepley { 3425bdf63967SMatthew G. Knepley PetscFunctionList ordlist; 3426bdf63967SMatthew G. Knepley char oname[256]; 3427d410b0cfSMatthew G. Knepley PetscReal volume = -1.0; 34289318fe57SMatthew G. Knepley PetscInt prerefine = 0, refine = 0, r, coarsen = 0, overlap = 0, extLayers = 0, dim; 3429e600fa54SMatthew G. Knepley PetscBool uniformOrig, created = PETSC_FALSE, uniform = PETSC_TRUE, distribute, interpolate = PETSC_TRUE, coordSpace = PETSC_TRUE, remap = PETSC_TRUE, ghostCells = PETSC_FALSE, isHierarchy, ignoreModel = PETSC_FALSE, flg; 343068d4fef7SMatthew G. Knepley 343168d4fef7SMatthew G. Knepley PetscFunctionBegin; 3432064a246eSJacob Faibussowitsch PetscValidHeaderSpecific(dm, DM_CLASSID, 2); 3433d0609cedSBarry Smith PetscOptionsHeadBegin(PetscOptionsObject,"DMPlex Options"); 34349318fe57SMatthew G. Knepley /* Handle automatic creation */ 34359566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &dim)); 34369566063dSJacob Faibussowitsch if (dim < 0) {PetscCall(DMPlexCreateFromOptions_Internal(PetscOptionsObject, &coordSpace, dm));created = PETSC_TRUE;} 3437d89e6e46SMatthew G. Knepley /* Handle interpolation before distribution */ 34389566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_interpolate_pre", "Flag to interpolate mesh before distribution", "", interpolate, &interpolate, &flg)); 3439d89e6e46SMatthew G. Knepley if (flg) { 3440d89e6e46SMatthew G. Knepley DMPlexInterpolatedFlag interpolated; 3441d89e6e46SMatthew G. Knepley 34429566063dSJacob Faibussowitsch PetscCall(DMPlexIsInterpolated(dm, &interpolated)); 3443d89e6e46SMatthew G. Knepley if (interpolated == DMPLEX_INTERPOLATED_FULL && !interpolate) { 3444d89e6e46SMatthew G. Knepley DM udm; 3445d89e6e46SMatthew G. Knepley 34469566063dSJacob Faibussowitsch PetscCall(DMPlexUninterpolate(dm, &udm)); 34479566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &udm)); 3448d89e6e46SMatthew G. Knepley } else if (interpolated != DMPLEX_INTERPOLATED_FULL && interpolate) { 3449d89e6e46SMatthew G. Knepley DM idm; 3450d89e6e46SMatthew G. Knepley 34519566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(dm, &idm)); 34529566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &idm)); 3453d89e6e46SMatthew G. Knepley } 3454d89e6e46SMatthew G. Knepley } 34559b44eab4SMatthew G. Knepley /* Handle DMPlex refinement before distribution */ 34569566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_refine_ignore_model", "Flag to ignore the geometry model when refining", "DMCreate", ignoreModel, &ignoreModel, &flg)); 3457c1cad2e7SMatthew G. Knepley if (flg) {((DM_Plex *) dm->data)->ignoreModel = ignoreModel;} 34589566063dSJacob Faibussowitsch PetscCall(DMPlexGetRefinementUniform(dm, &uniformOrig)); 34599566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_refine_pre", "The number of refinements before distribution", "DMCreate", prerefine, &prerefine, NULL,0)); 34609566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_refine_remap_pre", "Flag to control coordinate remapping", "DMCreate", remap, &remap, NULL)); 34619566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_refine_uniform_pre", "Flag for uniform refinement before distribution", "DMCreate", uniform, &uniform, &flg)); 34629566063dSJacob Faibussowitsch if (flg) PetscCall(DMPlexSetRefinementUniform(dm, uniform)); 34639566063dSJacob Faibussowitsch PetscCall(PetscOptionsReal("-dm_refine_volume_limit_pre", "The maximum cell volume after refinement before distribution", "DMCreate", volume, &volume, &flg)); 34649318fe57SMatthew G. Knepley if (flg) { 34659566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, PETSC_FALSE)); 34669566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementLimit(dm, volume)); 34679318fe57SMatthew G. Knepley prerefine = PetscMax(prerefine, 1); 34689318fe57SMatthew G. Knepley } 34699b44eab4SMatthew G. Knepley for (r = 0; r < prerefine; ++r) { 34709b44eab4SMatthew G. Knepley DM rdm; 34719b44eab4SMatthew G. Knepley PetscPointFunc coordFunc = ((DM_Plex*) dm->data)->coordFunc; 34729b44eab4SMatthew G. Knepley 34739566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 34749566063dSJacob Faibussowitsch PetscCall(DMRefine(dm, PetscObjectComm((PetscObject) dm), &rdm)); 34759566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &rdm)); 34769566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 347761a622f3SMatthew G. Knepley if (coordFunc && remap) { 34789566063dSJacob Faibussowitsch PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc)); 34799b44eab4SMatthew G. Knepley ((DM_Plex*) dm->data)->coordFunc = coordFunc; 34809b44eab4SMatthew G. Knepley } 34819b44eab4SMatthew G. Knepley } 34829566063dSJacob Faibussowitsch PetscCall(DMPlexSetRefinementUniform(dm, uniformOrig)); 34839318fe57SMatthew G. Knepley /* Handle DMPlex extrusion before distribution */ 34849566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_extrude", "The number of layers to extrude", "", extLayers, &extLayers, NULL, 0)); 34859318fe57SMatthew G. Knepley if (extLayers) { 34869318fe57SMatthew G. Knepley DM edm; 34879318fe57SMatthew G. Knepley 34889566063dSJacob Faibussowitsch PetscCall(DMExtrude(dm, extLayers, &edm)); 34899566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &edm)); 349048d16a33SMatthew G. Knepley ((DM_Plex *) dm->data)->coordFunc = NULL; 34919566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 3492d410b0cfSMatthew G. Knepley extLayers = 0; 34939318fe57SMatthew G. Knepley } 3494bdf63967SMatthew G. Knepley /* Handle DMPlex reordering before distribution */ 34959566063dSJacob Faibussowitsch PetscCall(MatGetOrderingList(&ordlist)); 34969566063dSJacob Faibussowitsch PetscCall(PetscOptionsFList("-dm_plex_reorder", "Set mesh reordering type", "DMPlexGetOrdering", ordlist, MATORDERINGNATURAL, oname, sizeof(oname), &flg)); 3497bdf63967SMatthew G. Knepley if (flg) { 3498bdf63967SMatthew G. Knepley DM pdm; 3499bdf63967SMatthew G. Knepley IS perm; 3500bdf63967SMatthew G. Knepley 35019566063dSJacob Faibussowitsch PetscCall(DMPlexGetOrdering(dm, oname, NULL, &perm)); 35029566063dSJacob Faibussowitsch PetscCall(DMPlexPermute(dm, perm, &pdm)); 35039566063dSJacob Faibussowitsch PetscCall(ISDestroy(&perm)); 35049566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &pdm)); 35059566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 3506bdf63967SMatthew G. Knepley } 35079b44eab4SMatthew G. Knepley /* Handle DMPlex distribution */ 35089566063dSJacob Faibussowitsch PetscCall(DMPlexDistributeGetDefault(dm, &distribute)); 35099566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_distribute", "Flag to redistribute a mesh among processes", "DMCreate", distribute, &distribute, NULL)); 35109566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_distribute_overlap", "The size of the overlap halo", "DMCreate", overlap, &overlap, NULL, 0)); 35119b44eab4SMatthew G. Knepley if (distribute) { 35129b44eab4SMatthew G. Knepley DM pdm = NULL; 35139b44eab4SMatthew G. Knepley PetscPartitioner part; 35149b44eab4SMatthew G. Knepley 35159566063dSJacob Faibussowitsch PetscCall(DMPlexGetPartitioner(dm, &part)); 35169566063dSJacob Faibussowitsch PetscCall(PetscPartitionerSetFromOptions(part)); 35179566063dSJacob Faibussowitsch PetscCall(DMPlexDistribute(dm, overlap, NULL, &pdm)); 35189b44eab4SMatthew G. Knepley if (pdm) { 35199566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &pdm)); 35209b44eab4SMatthew G. Knepley } 35219b44eab4SMatthew G. Knepley } 35229318fe57SMatthew G. Knepley /* Create coordinate space */ 35239318fe57SMatthew G. Knepley if (created) { 352461a622f3SMatthew G. Knepley DM_Plex *mesh = (DM_Plex *) dm->data; 35259318fe57SMatthew G. Knepley PetscInt degree = 1; 352661a622f3SMatthew G. Knepley PetscBool periodic, flg; 35279318fe57SMatthew G. Knepley 35289566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_coord_space", "Use an FEM space for coordinates", "", coordSpace, &coordSpace, &flg)); 35299566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-dm_coord_petscspace_degree", "FEM degree for coordinate space", "", degree, °ree, NULL)); 35309566063dSJacob Faibussowitsch if (coordSpace) PetscCall(DMPlexCreateCoordinateSpace(dm, degree, mesh->coordFunc)); 353161a622f3SMatthew G. Knepley if (flg && !coordSpace) { 353261a622f3SMatthew G. Knepley DM cdm; 353361a622f3SMatthew G. Knepley PetscDS cds; 353461a622f3SMatthew G. Knepley PetscObject obj; 353561a622f3SMatthew G. Knepley PetscClassId id; 353661a622f3SMatthew G. Knepley 35379566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 35389566063dSJacob Faibussowitsch PetscCall(DMGetDS(cdm, &cds)); 35399566063dSJacob Faibussowitsch PetscCall(PetscDSGetDiscretization(cds, 0, &obj)); 35409566063dSJacob Faibussowitsch PetscCall(PetscObjectGetClassId(obj, &id)); 354161a622f3SMatthew G. Knepley if (id == PETSCFE_CLASSID) { 354261a622f3SMatthew G. Knepley PetscContainer dummy; 354361a622f3SMatthew G. Knepley 35449566063dSJacob Faibussowitsch PetscCall(PetscContainerCreate(PETSC_COMM_SELF, &dummy)); 35459566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) dummy, "coordinates")); 35469566063dSJacob Faibussowitsch PetscCall(DMSetField(cdm, 0, NULL, (PetscObject) dummy)); 35479566063dSJacob Faibussowitsch PetscCall(PetscContainerDestroy(&dummy)); 35489566063dSJacob Faibussowitsch PetscCall(DMClearDS(cdm)); 354961a622f3SMatthew G. Knepley } 355061a622f3SMatthew G. Knepley mesh->coordFunc = NULL; 355161a622f3SMatthew G. Knepley } 35529566063dSJacob Faibussowitsch PetscCall(DMLocalizeCoordinates(dm)); 35539566063dSJacob Faibussowitsch PetscCall(DMGetPeriodicity(dm, &periodic, NULL, NULL, NULL)); 35549566063dSJacob Faibussowitsch if (periodic) PetscCall(DMSetPeriodicity(dm, PETSC_TRUE, NULL, NULL, NULL)); 35559318fe57SMatthew G. Knepley } 355668d4fef7SMatthew G. Knepley /* Handle DMPlex refinement */ 355761a622f3SMatthew G. Knepley remap = PETSC_TRUE; 35589566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_refine", "The number of uniform refinements", "DMCreate", refine, &refine, NULL,0)); 35599566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_refine_remap", "Flag to control coordinate remapping", "DMCreate", remap, &remap, NULL)); 35609566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_refine_hierarchy", "The number of uniform refinements", "DMCreate", refine, &refine, &isHierarchy,0)); 35619566063dSJacob Faibussowitsch if (refine) PetscCall(DMPlexSetRefinementUniform(dm, PETSC_TRUE)); 356268d4fef7SMatthew G. Knepley if (refine && isHierarchy) { 3563acdc6f61SToby Isaac DM *dms, coarseDM; 356468d4fef7SMatthew G. Knepley 35659566063dSJacob Faibussowitsch PetscCall(DMGetCoarseDM(dm, &coarseDM)); 35669566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject)coarseDM)); 35679566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(refine,&dms)); 35689566063dSJacob Faibussowitsch PetscCall(DMRefineHierarchy(dm, refine, dms)); 356968d4fef7SMatthew G. Knepley /* Total hack since we do not pass in a pointer */ 35709566063dSJacob Faibussowitsch PetscCall(DMPlexSwap_Static(dm, dms[refine-1])); 357168d4fef7SMatthew G. Knepley if (refine == 1) { 35729566063dSJacob Faibussowitsch PetscCall(DMSetCoarseDM(dm, dms[0])); 35739566063dSJacob Faibussowitsch PetscCall(DMPlexSetRegularRefinement(dm, PETSC_TRUE)); 357468d4fef7SMatthew G. Knepley } else { 35759566063dSJacob Faibussowitsch PetscCall(DMSetCoarseDM(dm, dms[refine-2])); 35769566063dSJacob Faibussowitsch PetscCall(DMPlexSetRegularRefinement(dm, PETSC_TRUE)); 35779566063dSJacob Faibussowitsch PetscCall(DMSetCoarseDM(dms[0], dms[refine-1])); 35789566063dSJacob Faibussowitsch PetscCall(DMPlexSetRegularRefinement(dms[0], PETSC_TRUE)); 357968d4fef7SMatthew G. Knepley } 35809566063dSJacob Faibussowitsch PetscCall(DMSetCoarseDM(dms[refine-1], coarseDM)); 35819566063dSJacob Faibussowitsch PetscCall(PetscObjectDereference((PetscObject)coarseDM)); 358268d4fef7SMatthew G. Knepley /* Free DMs */ 358368d4fef7SMatthew G. Knepley for (r = 0; r < refine; ++r) { 35849566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dms[r])); 35859566063dSJacob Faibussowitsch PetscCall(DMDestroy(&dms[r])); 358668d4fef7SMatthew G. Knepley } 35879566063dSJacob Faibussowitsch PetscCall(PetscFree(dms)); 358868d4fef7SMatthew G. Knepley } else { 358968d4fef7SMatthew G. Knepley for (r = 0; r < refine; ++r) { 35909318fe57SMatthew G. Knepley DM rdm; 359151a74b61SMatthew G. Knepley PetscPointFunc coordFunc = ((DM_Plex*) dm->data)->coordFunc; 359268d4fef7SMatthew G. Knepley 35939566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 35949566063dSJacob Faibussowitsch PetscCall(DMRefine(dm, PetscObjectComm((PetscObject) dm), &rdm)); 359568d4fef7SMatthew G. Knepley /* Total hack since we do not pass in a pointer */ 35969566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &rdm)); 35979566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 359861a622f3SMatthew G. Knepley if (coordFunc && remap) { 35999566063dSJacob Faibussowitsch PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc)); 360051a74b61SMatthew G. Knepley ((DM_Plex*) dm->data)->coordFunc = coordFunc; 360151a74b61SMatthew G. Knepley } 360268d4fef7SMatthew G. Knepley } 360368d4fef7SMatthew G. Knepley } 36043cf6fe12SMatthew G. Knepley /* Handle DMPlex coarsening */ 36059566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_coarsen", "Coarsen the mesh", "DMCreate", coarsen, &coarsen, NULL,0)); 36069566063dSJacob Faibussowitsch PetscCall(PetscOptionsBoundedInt("-dm_coarsen_hierarchy", "The number of coarsenings", "DMCreate", coarsen, &coarsen, &isHierarchy,0)); 3607b653a561SMatthew G. Knepley if (coarsen && isHierarchy) { 3608b653a561SMatthew G. Knepley DM *dms; 3609b653a561SMatthew G. Knepley 36109566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(coarsen, &dms)); 36119566063dSJacob Faibussowitsch PetscCall(DMCoarsenHierarchy(dm, coarsen, dms)); 3612b653a561SMatthew G. Knepley /* Free DMs */ 3613b653a561SMatthew G. Knepley for (r = 0; r < coarsen; ++r) { 36149566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dms[r])); 36159566063dSJacob Faibussowitsch PetscCall(DMDestroy(&dms[r])); 3616b653a561SMatthew G. Knepley } 36179566063dSJacob Faibussowitsch PetscCall(PetscFree(dms)); 3618b653a561SMatthew G. Knepley } else { 3619b653a561SMatthew G. Knepley for (r = 0; r < coarsen; ++r) { 36209318fe57SMatthew G. Knepley DM cdm; 36219318fe57SMatthew G. Knepley PetscPointFunc coordFunc = ((DM_Plex*) dm->data)->coordFunc; 36223cf6fe12SMatthew G. Knepley 36239566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 36249566063dSJacob Faibussowitsch PetscCall(DMCoarsen(dm, PetscObjectComm((PetscObject) dm), &cdm)); 36253cf6fe12SMatthew G. Knepley /* Total hack since we do not pass in a pointer */ 36269566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &cdm)); 36279566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 36289318fe57SMatthew G. Knepley if (coordFunc) { 36299566063dSJacob Faibussowitsch PetscCall(DMPlexRemapGeometry(dm, 0.0, coordFunc)); 36309318fe57SMatthew G. Knepley ((DM_Plex*) dm->data)->coordFunc = coordFunc; 36319318fe57SMatthew G. Knepley } 36323cf6fe12SMatthew G. Knepley } 3633b653a561SMatthew G. Knepley } 3634909dfd52SMatthew G. Knepley /* Handle ghost cells */ 36359566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-dm_plex_create_fv_ghost_cells", "Flag to create finite volume ghost cells on the boundary", "DMCreate", ghostCells, &ghostCells, NULL)); 3636909dfd52SMatthew G. Knepley if (ghostCells) { 3637909dfd52SMatthew G. Knepley DM gdm; 3638909dfd52SMatthew G. Knepley char lname[PETSC_MAX_PATH_LEN]; 3639909dfd52SMatthew G. Knepley 3640909dfd52SMatthew G. Knepley lname[0] = '\0'; 36419566063dSJacob Faibussowitsch PetscCall(PetscOptionsString("-dm_plex_fv_ghost_cells_label", "Label name for ghost cells boundary", "DMCreate", lname, lname, sizeof(lname), &flg)); 36429566063dSJacob Faibussowitsch PetscCall(DMPlexConstructGhostCells(dm, flg ? lname : NULL, NULL, &gdm)); 36439566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &gdm)); 3644909dfd52SMatthew G. Knepley } 36456913077dSMatthew G. Knepley /* Handle 1D order */ 36466913077dSMatthew G. Knepley { 36476913077dSMatthew G. Knepley DM cdm, rdm; 36486913077dSMatthew G. Knepley PetscDS cds; 36496913077dSMatthew G. Knepley PetscObject obj; 36506913077dSMatthew G. Knepley PetscClassId id = PETSC_OBJECT_CLASSID; 36516913077dSMatthew G. Knepley IS perm; 36526913077dSMatthew G. Knepley PetscInt dim, Nf; 36536913077dSMatthew G. Knepley PetscBool distributed; 36546913077dSMatthew G. Knepley 36559566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &dim)); 36569566063dSJacob Faibussowitsch PetscCall(DMPlexIsDistributed(dm, &distributed)); 36579566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 36589566063dSJacob Faibussowitsch PetscCall(DMGetDS(cdm, &cds)); 36599566063dSJacob Faibussowitsch PetscCall(PetscDSGetNumFields(cds, &Nf)); 36606913077dSMatthew G. Knepley if (Nf) { 36619566063dSJacob Faibussowitsch PetscCall(PetscDSGetDiscretization(cds, 0, &obj)); 36629566063dSJacob Faibussowitsch PetscCall(PetscObjectGetClassId(obj, &id)); 36636913077dSMatthew G. Knepley } 36646913077dSMatthew G. Knepley if (dim == 1 && !distributed && id != PETSCFE_CLASSID) { 36659566063dSJacob Faibussowitsch PetscCall(DMPlexGetOrdering1D(dm, &perm)); 36669566063dSJacob Faibussowitsch PetscCall(DMPlexPermute(dm, perm, &rdm)); 36679566063dSJacob Faibussowitsch PetscCall(DMPlexReplace_Static(dm, &rdm)); 36689566063dSJacob Faibussowitsch PetscCall(ISDestroy(&perm)); 36696913077dSMatthew G. Knepley } 36706913077dSMatthew G. Knepley } 36713cf6fe12SMatthew G. Knepley /* Handle */ 36729566063dSJacob Faibussowitsch PetscCall(DMSetFromOptions_NonRefinement_Plex(PetscOptionsObject, dm)); 3673d0609cedSBarry Smith PetscOptionsHeadEnd(); 36740a6ba040SMatthew G. Knepley PetscFunctionReturn(0); 36750a6ba040SMatthew G. Knepley } 36760a6ba040SMatthew G. Knepley 3677552f7358SJed Brown static PetscErrorCode DMCreateGlobalVector_Plex(DM dm,Vec *vec) 3678552f7358SJed Brown { 3679552f7358SJed Brown PetscFunctionBegin; 36809566063dSJacob Faibussowitsch PetscCall(DMCreateGlobalVector_Section_Private(dm,vec)); 36819566063dSJacob Faibussowitsch /* PetscCall(VecSetOperation(*vec, VECOP_DUPLICATE, (void(*)(void)) VecDuplicate_MPI_DM)); */ 36829566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_VIEW, (void (*)(void)) VecView_Plex)); 36839566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_VIEWNATIVE, (void (*)(void)) VecView_Plex_Native)); 36849566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_LOAD, (void (*)(void)) VecLoad_Plex)); 36859566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_LOADNATIVE, (void (*)(void)) VecLoad_Plex_Native)); 3686552f7358SJed Brown PetscFunctionReturn(0); 3687552f7358SJed Brown } 3688552f7358SJed Brown 3689552f7358SJed Brown static PetscErrorCode DMCreateLocalVector_Plex(DM dm,Vec *vec) 3690552f7358SJed Brown { 3691552f7358SJed Brown PetscFunctionBegin; 36929566063dSJacob Faibussowitsch PetscCall(DMCreateLocalVector_Section_Private(dm,vec)); 36939566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_VIEW, (void (*)(void)) VecView_Plex_Local)); 36949566063dSJacob Faibussowitsch PetscCall(VecSetOperation(*vec, VECOP_LOAD, (void (*)(void)) VecLoad_Plex_Local)); 3695552f7358SJed Brown PetscFunctionReturn(0); 3696552f7358SJed Brown } 3697552f7358SJed Brown 3698793f3fe5SMatthew G. Knepley static PetscErrorCode DMGetDimPoints_Plex(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd) 3699793f3fe5SMatthew G. Knepley { 3700793f3fe5SMatthew G. Knepley PetscInt depth, d; 3701793f3fe5SMatthew G. Knepley 3702793f3fe5SMatthew G. Knepley PetscFunctionBegin; 37039566063dSJacob Faibussowitsch PetscCall(DMPlexGetDepth(dm, &depth)); 3704793f3fe5SMatthew G. Knepley if (depth == 1) { 37059566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &d)); 37069566063dSJacob Faibussowitsch if (dim == 0) PetscCall(DMPlexGetDepthStratum(dm, dim, pStart, pEnd)); 37079566063dSJacob Faibussowitsch else if (dim == d) PetscCall(DMPlexGetDepthStratum(dm, 1, pStart, pEnd)); 3708793f3fe5SMatthew G. Knepley else {*pStart = 0; *pEnd = 0;} 3709793f3fe5SMatthew G. Knepley } else { 37109566063dSJacob Faibussowitsch PetscCall(DMPlexGetDepthStratum(dm, dim, pStart, pEnd)); 3711793f3fe5SMatthew G. Knepley } 3712793f3fe5SMatthew G. Knepley PetscFunctionReturn(0); 3713793f3fe5SMatthew G. Knepley } 3714793f3fe5SMatthew G. Knepley 371528d58a37SPierre Jolivet static PetscErrorCode DMGetNeighbors_Plex(DM dm, PetscInt *nranks, const PetscMPIInt *ranks[]) 3716502a2867SDave May { 3717502a2867SDave May PetscSF sf; 37180a19bb7dSprj- PetscInt niranks, njranks, n; 37190a19bb7dSprj- const PetscMPIInt *iranks, *jranks; 37200a19bb7dSprj- DM_Plex *data = (DM_Plex*) dm->data; 3721502a2867SDave May 37222f356facSMatthew G. Knepley PetscFunctionBegin; 37239566063dSJacob Faibussowitsch PetscCall(DMGetPointSF(dm, &sf)); 37240a19bb7dSprj- if (!data->neighbors) { 37259566063dSJacob Faibussowitsch PetscCall(PetscSFSetUp(sf)); 37269566063dSJacob Faibussowitsch PetscCall(PetscSFGetRootRanks(sf, &njranks, &jranks, NULL, NULL, NULL)); 37279566063dSJacob Faibussowitsch PetscCall(PetscSFGetLeafRanks(sf, &niranks, &iranks, NULL, NULL)); 37289566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(njranks + niranks + 1, &data->neighbors)); 37299566063dSJacob Faibussowitsch PetscCall(PetscArraycpy(data->neighbors + 1, jranks, njranks)); 37309566063dSJacob Faibussowitsch PetscCall(PetscArraycpy(data->neighbors + njranks + 1, iranks, niranks)); 37310a19bb7dSprj- n = njranks + niranks; 37329566063dSJacob Faibussowitsch PetscCall(PetscSortRemoveDupsMPIInt(&n, data->neighbors + 1)); 37330a19bb7dSprj- /* The following cast should never fail: can't have more neighbors than PETSC_MPI_INT_MAX */ 37349566063dSJacob Faibussowitsch PetscCall(PetscMPIIntCast(n, data->neighbors)); 37350a19bb7dSprj- } 37360a19bb7dSprj- if (nranks) *nranks = data->neighbors[0]; 37370a19bb7dSprj- if (ranks) { 37380a19bb7dSprj- if (data->neighbors[0]) *ranks = data->neighbors + 1; 37390a19bb7dSprj- else *ranks = NULL; 37400a19bb7dSprj- } 3741502a2867SDave May PetscFunctionReturn(0); 3742502a2867SDave May } 3743502a2867SDave May 37441eb70e55SToby Isaac PETSC_INTERN PetscErrorCode DMInterpolateSolution_Plex(DM, DM, Mat, Vec, Vec); 37451eb70e55SToby Isaac 374646fa42a0SMatthew G. Knepley static PetscErrorCode DMInitialize_Plex(DM dm) 3747552f7358SJed Brown { 3748552f7358SJed Brown PetscFunctionBegin; 3749552f7358SJed Brown dm->ops->view = DMView_Plex; 37502c40f234SMatthew G. Knepley dm->ops->load = DMLoad_Plex; 3751552f7358SJed Brown dm->ops->setfromoptions = DMSetFromOptions_Plex; 375238221697SMatthew G. Knepley dm->ops->clone = DMClone_Plex; 3753552f7358SJed Brown dm->ops->setup = DMSetUp_Plex; 37541bb6d2a8SBarry Smith dm->ops->createlocalsection = DMCreateLocalSection_Plex; 375566ad2231SToby Isaac dm->ops->createdefaultconstraints = DMCreateDefaultConstraints_Plex; 3756552f7358SJed Brown dm->ops->createglobalvector = DMCreateGlobalVector_Plex; 3757552f7358SJed Brown dm->ops->createlocalvector = DMCreateLocalVector_Plex; 3758184d77edSJed Brown dm->ops->getlocaltoglobalmapping = NULL; 37590298fd71SBarry Smith dm->ops->createfieldis = NULL; 3760552f7358SJed Brown dm->ops->createcoordinatedm = DMCreateCoordinateDM_Plex; 3761f19dbd58SToby Isaac dm->ops->createcoordinatefield = DMCreateCoordinateField_Plex; 37620a6ba040SMatthew G. Knepley dm->ops->getcoloring = NULL; 3763552f7358SJed Brown dm->ops->creatematrix = DMCreateMatrix_Plex; 3764bceba477SMatthew G. Knepley dm->ops->createinterpolation = DMCreateInterpolation_Plex; 3765bd041c0cSMatthew G. Knepley dm->ops->createmassmatrix = DMCreateMassMatrix_Plex; 3766b4937a87SMatthew G. Knepley dm->ops->createmassmatrixlumped = DMCreateMassMatrixLumped_Plex; 37675a84ad33SLisandro Dalcin dm->ops->createinjection = DMCreateInjection_Plex; 3768552f7358SJed Brown dm->ops->refine = DMRefine_Plex; 37690a6ba040SMatthew G. Knepley dm->ops->coarsen = DMCoarsen_Plex; 37700a6ba040SMatthew G. Knepley dm->ops->refinehierarchy = DMRefineHierarchy_Plex; 3771b653a561SMatthew G. Knepley dm->ops->coarsenhierarchy = DMCoarsenHierarchy_Plex; 3772d410b0cfSMatthew G. Knepley dm->ops->extrude = DMExtrude_Plex; 37730298fd71SBarry Smith dm->ops->globaltolocalbegin = NULL; 37740298fd71SBarry Smith dm->ops->globaltolocalend = NULL; 37750298fd71SBarry Smith dm->ops->localtoglobalbegin = NULL; 37760298fd71SBarry Smith dm->ops->localtoglobalend = NULL; 3777552f7358SJed Brown dm->ops->destroy = DMDestroy_Plex; 3778552f7358SJed Brown dm->ops->createsubdm = DMCreateSubDM_Plex; 37792adcc780SMatthew G. Knepley dm->ops->createsuperdm = DMCreateSuperDM_Plex; 3780793f3fe5SMatthew G. Knepley dm->ops->getdimpoints = DMGetDimPoints_Plex; 3781552f7358SJed Brown dm->ops->locatepoints = DMLocatePoints_Plex; 37820709b2feSToby Isaac dm->ops->projectfunctionlocal = DMProjectFunctionLocal_Plex; 37830709b2feSToby Isaac dm->ops->projectfunctionlabellocal = DMProjectFunctionLabelLocal_Plex; 3784bfc4295aSToby Isaac dm->ops->projectfieldlocal = DMProjectFieldLocal_Plex; 37858c6c5593SMatthew G. Knepley dm->ops->projectfieldlabellocal = DMProjectFieldLabelLocal_Plex; 3786ece3a9fcSMatthew G. Knepley dm->ops->projectbdfieldlabellocal = DMProjectBdFieldLabelLocal_Plex; 37870709b2feSToby Isaac dm->ops->computel2diff = DMComputeL2Diff_Plex; 3788b698f381SToby Isaac dm->ops->computel2gradientdiff = DMComputeL2GradientDiff_Plex; 37892a16baeaSToby Isaac dm->ops->computel2fielddiff = DMComputeL2FieldDiff_Plex; 379028d58a37SPierre Jolivet dm->ops->getneighbors = DMGetNeighbors_Plex; 37919566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertBoundaryValues_C",DMPlexInsertBoundaryValues_Plex)); 37929566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertTimeDerviativeBoundaryValues_C",DMPlexInsertTimeDerivativeBoundaryValues_Plex)); 37939566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMSetUpGLVisViewer_C",DMSetUpGLVisViewer_Plex)); 37949566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMCreateNeumannOverlap_C",DMCreateNeumannOverlap_Plex)); 37959566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMPlexGetOverlap_C",DMPlexGetOverlap_Plex)); 37969566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMPlexDistributeGetDefault_C",DMPlexDistributeGetDefault_Plex)); 37979566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMPlexDistributeSetDefault_C",DMPlexDistributeSetDefault_Plex)); 37989566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)dm,"DMInterpolateSolution_C",DMInterpolateSolution_Plex)); 3799552f7358SJed Brown PetscFunctionReturn(0); 3800552f7358SJed Brown } 3801552f7358SJed Brown 380246fa42a0SMatthew G. Knepley PETSC_INTERN PetscErrorCode DMClone_Plex(DM dm, DM *newdm) 380363a16f15SMatthew G. Knepley { 380463a16f15SMatthew G. Knepley DM_Plex *mesh = (DM_Plex *) dm->data; 380563a16f15SMatthew G. Knepley 380663a16f15SMatthew G. Knepley PetscFunctionBegin; 380763a16f15SMatthew G. Knepley mesh->refct++; 380863a16f15SMatthew G. Knepley (*newdm)->data = mesh; 38099566063dSJacob Faibussowitsch PetscCall(PetscObjectChangeTypeName((PetscObject) *newdm, DMPLEX)); 38109566063dSJacob Faibussowitsch PetscCall(DMInitialize_Plex(*newdm)); 381163a16f15SMatthew G. Knepley PetscFunctionReturn(0); 381263a16f15SMatthew G. Knepley } 381363a16f15SMatthew G. Knepley 38148818961aSMatthew G Knepley /*MC 38158818961aSMatthew G Knepley DMPLEX = "plex" - A DM object that encapsulates an unstructured mesh, or CW Complex, which can be expressed using a Hasse Diagram. 38168818961aSMatthew G Knepley In the local representation, Vecs contain all unknowns in the interior and shared boundary. This is 38178818961aSMatthew G Knepley specified by a PetscSection object. Ownership in the global representation is determined by 38188818961aSMatthew G Knepley ownership of the underlying DMPlex points. This is specified by another PetscSection object. 38198818961aSMatthew G Knepley 3820e5893cccSMatthew G. Knepley Options Database Keys: 3821250712c9SMatthew G. Knepley + -dm_refine_pre - Refine mesh before distribution 3822250712c9SMatthew G. Knepley + -dm_refine_uniform_pre - Choose uniform or generator-based refinement 3823250712c9SMatthew G. Knepley + -dm_refine_volume_limit_pre - Cell volume limit after pre-refinement using generator 3824250712c9SMatthew G. Knepley . -dm_distribute - Distribute mesh across processes 3825250712c9SMatthew G. Knepley . -dm_distribute_overlap - Number of cells to overlap for distribution 3826250712c9SMatthew G. Knepley . -dm_refine - Refine mesh after distribution 3827250712c9SMatthew G. Knepley . -dm_plex_hash_location - Use grid hashing for point location 3828ddce0771SMatthew G. Knepley . -dm_plex_hash_box_faces <n,m,p> - The number of divisions in each direction of the grid hash 3829f12cf164SMatthew G. Knepley . -dm_plex_partition_balance - Attempt to evenly divide points on partition boundary between processes 3830f12cf164SMatthew G. Knepley . -dm_plex_remesh_bd - Allow changes to the boundary on remeshing 3831f12cf164SMatthew G. Knepley . -dm_plex_max_projection_height - Maxmimum mesh point height used to project locally 3832f12cf164SMatthew G. Knepley . -dm_plex_regular_refinement - Use special nested projection algorithm for regular refinement 3833250712c9SMatthew G. Knepley . -dm_plex_check_all - Perform all shecks below 3834f12cf164SMatthew G. Knepley . -dm_plex_check_symmetry - Check that the adjacency information in the mesh is symmetric 3835f12cf164SMatthew G. Knepley . -dm_plex_check_skeleton <celltype> - Check that each cell has the correct number of vertices 3836f12cf164SMatthew 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 3837f12cf164SMatthew G. Knepley . -dm_plex_check_geometry - Check that cells have positive volume 3838f12cf164SMatthew G. Knepley . -dm_view :mesh.tex:ascii_latex - View the mesh in LaTeX/TikZ 3839e5893cccSMatthew G. Knepley . -dm_plex_view_scale <num> - Scale the TikZ 3840e5893cccSMatthew G. Knepley - -dm_plex_print_fem <num> - View FEM assembly information, such as element vectors and matrices 3841e5893cccSMatthew G. Knepley 38428818961aSMatthew G Knepley Level: intermediate 38438818961aSMatthew G Knepley 3844db781477SPatrick Sanan .seealso: `DMType`, `DMPlexCreate()`, `DMCreate()`, `DMSetType()` 38458818961aSMatthew G Knepley M*/ 38468818961aSMatthew G Knepley 38478cc058d9SJed Brown PETSC_EXTERN PetscErrorCode DMCreate_Plex(DM dm) 3848552f7358SJed Brown { 3849552f7358SJed Brown DM_Plex *mesh; 3850412e9a14SMatthew G. Knepley PetscInt unit; 3851552f7358SJed Brown 3852552f7358SJed Brown PetscFunctionBegin; 3853552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 38549566063dSJacob Faibussowitsch PetscCall(PetscNewLog(dm,&mesh)); 3855552f7358SJed Brown dm->data = mesh; 3856552f7358SJed Brown 3857552f7358SJed Brown mesh->refct = 1; 38589566063dSJacob Faibussowitsch PetscCall(PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->coneSection)); 38590298fd71SBarry Smith mesh->cones = NULL; 38600298fd71SBarry Smith mesh->coneOrientations = NULL; 38619566063dSJacob Faibussowitsch PetscCall(PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->supportSection)); 38620298fd71SBarry Smith mesh->supports = NULL; 3863552f7358SJed Brown mesh->refinementUniform = PETSC_TRUE; 3864552f7358SJed Brown mesh->refinementLimit = -1.0; 3865e600fa54SMatthew G. Knepley mesh->distDefault = PETSC_TRUE; 38667d0f5628SVaclav Hapla mesh->interpolated = DMPLEX_INTERPOLATED_INVALID; 38677d0f5628SVaclav Hapla mesh->interpolatedCollective = DMPLEX_INTERPOLATED_INVALID; 3868552f7358SJed Brown 38690298fd71SBarry Smith mesh->facesTmp = NULL; 3870552f7358SJed Brown 3871d9deefdfSMatthew G. Knepley mesh->tetgenOpts = NULL; 3872d9deefdfSMatthew G. Knepley mesh->triangleOpts = NULL; 38739566063dSJacob Faibussowitsch PetscCall(PetscPartitionerCreate(PetscObjectComm((PetscObject)dm), &mesh->partitioner)); 38742e62ab5aSMatthew G. Knepley mesh->remeshBd = PETSC_FALSE; 3875d9deefdfSMatthew G. Knepley 38760298fd71SBarry Smith mesh->subpointMap = NULL; 3877552f7358SJed Brown 38788865f1eaSKarl Rupp for (unit = 0; unit < NUM_PETSC_UNITS; ++unit) mesh->scale[unit] = 1.0; 3879552f7358SJed Brown 38800aef6b92SMatthew G. Knepley mesh->regularRefinement = PETSC_FALSE; 3881df0420ecSMatthew G. Knepley mesh->depthState = -1; 3882ba2698f1SMatthew G. Knepley mesh->celltypeState = -1; 38830298fd71SBarry Smith mesh->globalVertexNumbers = NULL; 38840298fd71SBarry Smith mesh->globalCellNumbers = NULL; 3885a68b90caSToby Isaac mesh->anchorSection = NULL; 3886a68b90caSToby Isaac mesh->anchorIS = NULL; 388741e6d900SToby Isaac mesh->createanchors = NULL; 3888fa73a4e1SToby Isaac mesh->computeanchormatrix = NULL; 3889d961a43aSToby Isaac mesh->parentSection = NULL; 3890d961a43aSToby Isaac mesh->parents = NULL; 3891d961a43aSToby Isaac mesh->childIDs = NULL; 3892d961a43aSToby Isaac mesh->childSection = NULL; 3893d961a43aSToby Isaac mesh->children = NULL; 3894d6a7ad0dSToby Isaac mesh->referenceTree = NULL; 3895dcbd3bf7SToby Isaac mesh->getchildsymmetry = NULL; 3896552f7358SJed Brown mesh->vtkCellHeight = 0; 3897e228b242SToby Isaac mesh->useAnchors = PETSC_FALSE; 3898552f7358SJed Brown 3899b29cfa1cSToby Isaac mesh->maxProjectionHeight = 0; 3900b29cfa1cSToby Isaac 39010a19bb7dSprj- mesh->neighbors = NULL; 39020a19bb7dSprj- 3903552f7358SJed Brown mesh->printSetValues = PETSC_FALSE; 3904552f7358SJed Brown mesh->printFEM = 0; 39056113b454SMatthew G. Knepley mesh->printTol = 1.0e-10; 3906552f7358SJed Brown 39079566063dSJacob Faibussowitsch PetscCall(DMInitialize_Plex(dm)); 3908552f7358SJed Brown PetscFunctionReturn(0); 3909552f7358SJed Brown } 3910552f7358SJed Brown 3911552f7358SJed Brown /*@ 3912552f7358SJed Brown DMPlexCreate - Creates a DMPlex object, which encapsulates an unstructured mesh, or CW complex, which can be expressed using a Hasse Diagram. 3913552f7358SJed Brown 3914d083f849SBarry Smith Collective 3915552f7358SJed Brown 3916552f7358SJed Brown Input Parameter: 3917552f7358SJed Brown . comm - The communicator for the DMPlex object 3918552f7358SJed Brown 3919552f7358SJed Brown Output Parameter: 3920552f7358SJed Brown . mesh - The DMPlex object 3921552f7358SJed Brown 3922552f7358SJed Brown Level: beginner 3923552f7358SJed Brown 3924552f7358SJed Brown @*/ 3925552f7358SJed Brown PetscErrorCode DMPlexCreate(MPI_Comm comm, DM *mesh) 3926552f7358SJed Brown { 3927552f7358SJed Brown PetscFunctionBegin; 3928552f7358SJed Brown PetscValidPointer(mesh,2); 39299566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, mesh)); 39309566063dSJacob Faibussowitsch PetscCall(DMSetType(*mesh, DMPLEX)); 3931552f7358SJed Brown PetscFunctionReturn(0); 3932552f7358SJed Brown } 3933552f7358SJed Brown 3934b09969d6SVaclav Hapla /*@C 3935b09969d6SVaclav Hapla DMPlexBuildFromCellListParallel - Build distributed DMPLEX topology from a list of vertices for each cell (common mesh generator output) 3936b09969d6SVaclav Hapla 3937b09969d6SVaclav Hapla Input Parameters: 3938b09969d6SVaclav Hapla + dm - The DM 3939b09969d6SVaclav Hapla . numCells - The number of cells owned by this process 3940325d53feSBarry Smith . numVertices - The number of vertices to be owned by this process, or PETSC_DECIDE 3941325d53feSBarry Smith . NVertices - The global number of vertices, or PETSC_DETERMINE 3942b09969d6SVaclav Hapla . numCorners - The number of vertices for each cell 39435e488331SVaclav Hapla - cells - An array of numCells*numCorners numbers, the global vertex numbers for each cell 3944b09969d6SVaclav Hapla 3945be8c289dSNicolas Barral Output Parameters: 3946be8c289dSNicolas Barral + vertexSF - (Optional) SF describing complete vertex ownership 3947be8c289dSNicolas Barral - verticesAdjSaved - (Optional) vertex adjacency array 3948b09969d6SVaclav Hapla 3949b09969d6SVaclav Hapla Notes: 3950b09969d6SVaclav Hapla Two triangles sharing a face 3951b09969d6SVaclav Hapla $ 3952b09969d6SVaclav Hapla $ 2 3953b09969d6SVaclav Hapla $ / | \ 3954b09969d6SVaclav Hapla $ / | \ 3955b09969d6SVaclav Hapla $ / | \ 3956b09969d6SVaclav Hapla $ 0 0 | 1 3 3957b09969d6SVaclav Hapla $ \ | / 3958b09969d6SVaclav Hapla $ \ | / 3959b09969d6SVaclav Hapla $ \ | / 3960b09969d6SVaclav Hapla $ 1 3961b09969d6SVaclav Hapla would have input 3962b09969d6SVaclav Hapla $ numCells = 2, numVertices = 4 3963b09969d6SVaclav Hapla $ cells = [0 1 2 1 3 2] 3964b09969d6SVaclav Hapla $ 3965b09969d6SVaclav Hapla which would result in the DMPlex 3966b09969d6SVaclav Hapla $ 3967b09969d6SVaclav Hapla $ 4 3968b09969d6SVaclav Hapla $ / | \ 3969b09969d6SVaclav Hapla $ / | \ 3970b09969d6SVaclav Hapla $ / | \ 3971b09969d6SVaclav Hapla $ 2 0 | 1 5 3972b09969d6SVaclav Hapla $ \ | / 3973b09969d6SVaclav Hapla $ \ | / 3974b09969d6SVaclav Hapla $ \ | / 3975b09969d6SVaclav Hapla $ 3 3976b09969d6SVaclav Hapla 397725b6865aSVaclav Hapla Vertices are implicitly numbered consecutively 0,...,NVertices. 397825b6865aSVaclav Hapla Each rank owns a chunk of numVertices consecutive vertices. 397925b6865aSVaclav Hapla If numVertices is PETSC_DECIDE, PETSc will distribute them as evenly as possible using PetscLayout. 3980325d53feSBarry Smith If NVertices is PETSC_DETERMINE and numVertices is PETSC_DECIDE, NVertices is computed by PETSc as the maximum vertex index in cells + 1. 3981325d53feSBarry Smith If only NVertices is PETSC_DETERMINE, it is computed as the sum of numVertices over all ranks. 398225b6865aSVaclav Hapla 3983b09969d6SVaclav Hapla The cell distribution is arbitrary non-overlapping, independent of the vertex distribution. 3984b09969d6SVaclav Hapla 3985b09969d6SVaclav Hapla Not currently supported in Fortran. 3986b09969d6SVaclav Hapla 3987b09969d6SVaclav Hapla Level: advanced 3988b09969d6SVaclav Hapla 3989db781477SPatrick Sanan .seealso: `DMPlexBuildFromCellList()`, `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildCoordinatesFromCellListParallel()` 3990b09969d6SVaclav Hapla @*/ 3991be8c289dSNicolas Barral PetscErrorCode DMPlexBuildFromCellListParallel(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt NVertices, PetscInt numCorners, const PetscInt cells[], PetscSF *vertexSF, PetscInt **verticesAdjSaved) 3992a47d0d45SMatthew G. Knepley { 39932464107aSksagiyam PetscSF sfPoint; 39942464107aSksagiyam PetscLayout layout; 399582fb893eSVaclav Hapla PetscInt numVerticesAdj, *verticesAdj, *cones, c, p; 3996a47d0d45SMatthew G. Knepley 3997a47d0d45SMatthew G. Knepley PetscFunctionBegin; 399825b6865aSVaclav Hapla PetscValidLogicalCollectiveInt(dm,NVertices,4); 39999566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(DMPLEX_BuildFromCellList,dm,0,0,0)); 400025b6865aSVaclav Hapla /* Get/check global number of vertices */ 400125b6865aSVaclav Hapla { 400225b6865aSVaclav Hapla PetscInt NVerticesInCells, i; 400325b6865aSVaclav Hapla const PetscInt len = numCells * numCorners; 400425b6865aSVaclav Hapla 400525b6865aSVaclav Hapla /* NVerticesInCells = max(cells) + 1 */ 400625b6865aSVaclav Hapla NVerticesInCells = PETSC_MIN_INT; 400725b6865aSVaclav Hapla for (i=0; i<len; i++) if (cells[i] > NVerticesInCells) NVerticesInCells = cells[i]; 400825b6865aSVaclav Hapla ++NVerticesInCells; 40099566063dSJacob Faibussowitsch PetscCallMPI(MPI_Allreduce(MPI_IN_PLACE, &NVerticesInCells, 1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject) dm))); 401025b6865aSVaclav Hapla 401125b6865aSVaclav Hapla if (numVertices == PETSC_DECIDE && NVertices == PETSC_DECIDE) NVertices = NVerticesInCells; 40121dca8a05SBarry Smith else 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); 401325b6865aSVaclav Hapla } 40149079aca8SVaclav Hapla /* Count locally unique vertices */ 40159079aca8SVaclav Hapla { 40169079aca8SVaclav Hapla PetscHSetI vhash; 40179079aca8SVaclav Hapla PetscInt off = 0; 40189079aca8SVaclav Hapla 40199566063dSJacob Faibussowitsch PetscCall(PetscHSetICreate(&vhash)); 4020a47d0d45SMatthew G. Knepley for (c = 0; c < numCells; ++c) { 4021a47d0d45SMatthew G. Knepley for (p = 0; p < numCorners; ++p) { 40229566063dSJacob Faibussowitsch PetscCall(PetscHSetIAdd(vhash, cells[c*numCorners+p])); 4023a47d0d45SMatthew G. Knepley } 4024a47d0d45SMatthew G. Knepley } 40259566063dSJacob Faibussowitsch PetscCall(PetscHSetIGetSize(vhash, &numVerticesAdj)); 40269566063dSJacob Faibussowitsch if (!verticesAdjSaved) PetscCall(PetscMalloc1(numVerticesAdj, &verticesAdj)); 4027be8c289dSNicolas Barral else { verticesAdj = *verticesAdjSaved; } 40289566063dSJacob Faibussowitsch PetscCall(PetscHSetIGetElems(vhash, &off, verticesAdj)); 40299566063dSJacob Faibussowitsch PetscCall(PetscHSetIDestroy(&vhash)); 403063a3b9bcSJacob Faibussowitsch PetscCheck(off == numVerticesAdj,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid number of local vertices %" PetscInt_FMT " should be %" PetscInt_FMT, off, numVerticesAdj); 4031a47d0d45SMatthew G. Knepley } 40329566063dSJacob Faibussowitsch PetscCall(PetscSortInt(numVerticesAdj, verticesAdj)); 4033a47d0d45SMatthew G. Knepley /* Create cones */ 40349566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVerticesAdj)); 40359566063dSJacob Faibussowitsch for (c = 0; c < numCells; ++c) PetscCall(DMPlexSetConeSize(dm, c, numCorners)); 40369566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); 40379566063dSJacob Faibussowitsch PetscCall(DMPlexGetCones(dm,&cones)); 4038a47d0d45SMatthew G. Knepley for (c = 0; c < numCells; ++c) { 4039a47d0d45SMatthew G. Knepley for (p = 0; p < numCorners; ++p) { 4040a47d0d45SMatthew G. Knepley const PetscInt gv = cells[c*numCorners+p]; 4041a47d0d45SMatthew G. Knepley PetscInt lv; 4042a47d0d45SMatthew G. Knepley 40439079aca8SVaclav Hapla /* Positions within verticesAdj form 0-based local vertex numbering; 40449079aca8SVaclav Hapla we need to shift it by numCells to get correct DAG points (cells go first) */ 40459566063dSJacob Faibussowitsch PetscCall(PetscFindInt(gv, numVerticesAdj, verticesAdj, &lv)); 404663a3b9bcSJacob Faibussowitsch PetscCheck(lv >= 0,PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Could not find global vertex %" PetscInt_FMT " in local connectivity", gv); 4047961cfab0SVaclav Hapla cones[c*numCorners+p] = lv+numCells; 4048a47d0d45SMatthew G. Knepley } 4049a47d0d45SMatthew G. Knepley } 40502464107aSksagiyam /* Build point sf */ 40519566063dSJacob Faibussowitsch PetscCall(PetscLayoutCreate(PetscObjectComm((PetscObject)dm), &layout)); 40529566063dSJacob Faibussowitsch PetscCall(PetscLayoutSetSize(layout, NVertices)); 40539566063dSJacob Faibussowitsch PetscCall(PetscLayoutSetLocalSize(layout, numVertices)); 40549566063dSJacob Faibussowitsch PetscCall(PetscLayoutSetBlockSize(layout, 1)); 40559566063dSJacob Faibussowitsch PetscCall(PetscSFCreateByMatchingIndices(layout, numVerticesAdj, verticesAdj, NULL, numCells, numVerticesAdj, verticesAdj, NULL, numCells, vertexSF, &sfPoint)); 40569566063dSJacob Faibussowitsch PetscCall(PetscLayoutDestroy(&layout)); 40579566063dSJacob Faibussowitsch if (!verticesAdjSaved) PetscCall(PetscFree(verticesAdj)); 40589566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) sfPoint, "point SF")); 40592464107aSksagiyam if (dm->sf) { 40602464107aSksagiyam const char *prefix; 40612464107aSksagiyam 40629566063dSJacob Faibussowitsch PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm->sf, &prefix)); 40639566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject)sfPoint, prefix)); 40642464107aSksagiyam } 40659566063dSJacob Faibussowitsch PetscCall(DMSetPointSF(dm, sfPoint)); 40669566063dSJacob Faibussowitsch PetscCall(PetscSFDestroy(&sfPoint)); 40679566063dSJacob Faibussowitsch if (vertexSF) PetscCall(PetscObjectSetName((PetscObject)(*vertexSF), "Vertex Ownership SF")); 4068a47d0d45SMatthew G. Knepley /* Fill in the rest of the topology structure */ 40699566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 40709566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 40719566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(DMPLEX_BuildFromCellList,dm,0,0,0)); 4072a47d0d45SMatthew G. Knepley PetscFunctionReturn(0); 4073a47d0d45SMatthew G. Knepley } 4074a47d0d45SMatthew G. Knepley 4075b09969d6SVaclav Hapla /*@C 4076b09969d6SVaclav Hapla DMPlexBuildCoordinatesFromCellListParallel - Build DM coordinates from a list of coordinates for each owned vertex (common mesh generator output) 4077b09969d6SVaclav Hapla 4078b09969d6SVaclav Hapla Input Parameters: 4079b09969d6SVaclav Hapla + dm - The DM 4080b09969d6SVaclav Hapla . spaceDim - The spatial dimension used for coordinates 4081b09969d6SVaclav Hapla . sfVert - SF describing complete vertex ownership 4082b09969d6SVaclav Hapla - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex 4083b09969d6SVaclav Hapla 4084b09969d6SVaclav Hapla Level: advanced 4085b09969d6SVaclav Hapla 4086b09969d6SVaclav Hapla Notes: 4087b09969d6SVaclav Hapla Not currently supported in Fortran. 4088b09969d6SVaclav Hapla 4089db781477SPatrick Sanan .seealso: `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildFromCellListParallel()` 4090b09969d6SVaclav Hapla @*/ 40911edcf0b2SVaclav Hapla PetscErrorCode DMPlexBuildCoordinatesFromCellListParallel(DM dm, PetscInt spaceDim, PetscSF sfVert, const PetscReal vertexCoords[]) 4092a47d0d45SMatthew G. Knepley { 4093a47d0d45SMatthew G. Knepley PetscSection coordSection; 4094a47d0d45SMatthew G. Knepley Vec coordinates; 4095a47d0d45SMatthew G. Knepley PetscScalar *coords; 40961edcf0b2SVaclav Hapla PetscInt numVertices, numVerticesAdj, coordSize, v, vStart, vEnd; 4097a47d0d45SMatthew G. Knepley 4098a47d0d45SMatthew G. Knepley PetscFunctionBegin; 40999566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(DMPLEX_BuildCoordinatesFromCellList,dm,0,0,0)); 41009566063dSJacob Faibussowitsch PetscCall(DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd)); 41011dca8a05SBarry Smith PetscCheck(vStart >= 0 && vEnd >= 0,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "DM is not set up properly. DMPlexBuildFromCellList() should be called first."); 41029566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, spaceDim)); 41039566063dSJacob Faibussowitsch PetscCall(PetscSFGetGraph(sfVert, &numVertices, &numVerticesAdj, NULL, NULL)); 41041dca8a05SBarry 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); 41059566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 41069566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 41079566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, spaceDim)); 41089566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, vStart, vEnd)); 41091edcf0b2SVaclav Hapla for (v = vStart; v < vEnd; ++v) { 41109566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, spaceDim)); 41119566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, spaceDim)); 4112a47d0d45SMatthew G. Knepley } 41139566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 41149566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 41159566063dSJacob Faibussowitsch PetscCall(VecCreate(PetscObjectComm((PetscObject)dm), &coordinates)); 41169566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, spaceDim)); 41179566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 41189566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 41199566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 41209566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 4121a47d0d45SMatthew G. Knepley { 4122a47d0d45SMatthew G. Knepley MPI_Datatype coordtype; 4123a47d0d45SMatthew G. Knepley 4124a47d0d45SMatthew G. Knepley /* Need a temp buffer for coords if we have complex/single */ 41259566063dSJacob Faibussowitsch PetscCallMPI(MPI_Type_contiguous(spaceDim, MPIU_SCALAR, &coordtype)); 41269566063dSJacob Faibussowitsch PetscCallMPI(MPI_Type_commit(&coordtype)); 412721016a8bSBarry Smith #if defined(PETSC_USE_COMPLEX) 412821016a8bSBarry Smith { 412921016a8bSBarry Smith PetscScalar *svertexCoords; 413021016a8bSBarry Smith PetscInt i; 41319566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(numVertices*spaceDim,&svertexCoords)); 41323612f820SVaclav Hapla for (i=0; i<numVertices*spaceDim; i++) svertexCoords[i] = vertexCoords[i]; 41339566063dSJacob Faibussowitsch PetscCall(PetscSFBcastBegin(sfVert, coordtype, svertexCoords, coords,MPI_REPLACE)); 41349566063dSJacob Faibussowitsch PetscCall(PetscSFBcastEnd(sfVert, coordtype, svertexCoords, coords,MPI_REPLACE)); 41359566063dSJacob Faibussowitsch PetscCall(PetscFree(svertexCoords)); 413621016a8bSBarry Smith } 413721016a8bSBarry Smith #else 41389566063dSJacob Faibussowitsch PetscCall(PetscSFBcastBegin(sfVert, coordtype, vertexCoords, coords,MPI_REPLACE)); 41399566063dSJacob Faibussowitsch PetscCall(PetscSFBcastEnd(sfVert, coordtype, vertexCoords, coords,MPI_REPLACE)); 414021016a8bSBarry Smith #endif 41419566063dSJacob Faibussowitsch PetscCallMPI(MPI_Type_free(&coordtype)); 4142a47d0d45SMatthew G. Knepley } 41439566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 41449566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 41459566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 41469566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(DMPLEX_BuildCoordinatesFromCellList,dm,0,0,0)); 4147a47d0d45SMatthew G. Knepley PetscFunctionReturn(0); 4148a47d0d45SMatthew G. Knepley } 4149a47d0d45SMatthew G. Knepley 4150c3edce3dSSatish Balay /*@ 4151b09969d6SVaclav Hapla DMPlexCreateFromCellListParallelPetsc - Create distributed DMPLEX from a list of vertices for each cell (common mesh generator output) 4152a47d0d45SMatthew G. Knepley 4153a47d0d45SMatthew G. Knepley Input Parameters: 4154a47d0d45SMatthew G. Knepley + comm - The communicator 4155a47d0d45SMatthew G. Knepley . dim - The topological dimension of the mesh 4156a47d0d45SMatthew G. Knepley . numCells - The number of cells owned by this process 415725b6865aSVaclav Hapla . numVertices - The number of vertices owned by this process, or PETSC_DECIDE 415825b6865aSVaclav Hapla . NVertices - The global number of vertices, or PETSC_DECIDE 4159a47d0d45SMatthew G. Knepley . numCorners - The number of vertices for each cell 4160a47d0d45SMatthew G. Knepley . interpolate - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically 4161a47d0d45SMatthew G. Knepley . cells - An array of numCells*numCorners numbers, the global vertex numbers for each cell 4162a47d0d45SMatthew G. Knepley . spaceDim - The spatial dimension used for coordinates 4163a47d0d45SMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex 4164a47d0d45SMatthew G. Knepley 4165d8d19677SJose E. Roman Output Parameters: 416618d54ad4SMichael Lange + dm - The DM 4167be8c289dSNicolas Barral . vertexSF - (Optional) SF describing complete vertex ownership 4168be8c289dSNicolas Barral - verticesAdjSaved - (Optional) vertex adjacency array 4169a47d0d45SMatthew G. Knepley 4170b09969d6SVaclav Hapla Notes: 4171b09969d6SVaclav Hapla This function is just a convenient sequence of DMCreate(), DMSetType(), DMSetDimension(), 4172b09969d6SVaclav Hapla DMPlexBuildFromCellListParallel(), DMPlexInterpolate(), DMPlexBuildCoordinatesFromCellListParallel() 4173a47d0d45SMatthew G. Knepley 417425b6865aSVaclav Hapla See DMPlexBuildFromCellListParallel() for an example and details about the topology-related parameters. 417525b6865aSVaclav Hapla See DMPlexBuildCoordinatesFromCellListParallel() for details about the geometry-related parameters. 417625b6865aSVaclav Hapla 4177b09969d6SVaclav Hapla Level: intermediate 4178a47d0d45SMatthew G. Knepley 4179db781477SPatrick Sanan .seealso: `DMPlexCreateFromCellListPetsc()`, `DMPlexBuildFromCellListParallel()`, `DMPlexBuildCoordinatesFromCellListParallel()`, `DMPlexCreateFromDAG()`, `DMPlexCreate()` 4180a47d0d45SMatthew G. Knepley @*/ 4181be8c289dSNicolas Barral 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) 4182a47d0d45SMatthew G. Knepley { 4183a47d0d45SMatthew G. Knepley PetscSF sfVert; 4184a47d0d45SMatthew G. Knepley 4185a47d0d45SMatthew G. Knepley PetscFunctionBegin; 41869566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 41879566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 4188a47d0d45SMatthew G. Knepley PetscValidLogicalCollectiveInt(*dm, dim, 2); 4189064a246eSJacob Faibussowitsch PetscValidLogicalCollectiveInt(*dm, spaceDim, 9); 41909566063dSJacob Faibussowitsch PetscCall(DMSetDimension(*dm, dim)); 41919566063dSJacob Faibussowitsch PetscCall(DMPlexBuildFromCellListParallel(*dm, numCells, numVertices, NVertices, numCorners, cells, &sfVert, verticesAdj)); 4192a47d0d45SMatthew G. Knepley if (interpolate) { 41935fd9971aSMatthew G. Knepley DM idm; 4194a47d0d45SMatthew G. Knepley 41959566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(*dm, &idm)); 41969566063dSJacob Faibussowitsch PetscCall(DMDestroy(dm)); 4197a47d0d45SMatthew G. Knepley *dm = idm; 4198a47d0d45SMatthew G. Knepley } 41999566063dSJacob Faibussowitsch PetscCall(DMPlexBuildCoordinatesFromCellListParallel(*dm, spaceDim, sfVert, vertexCoords)); 420018d54ad4SMichael Lange if (vertexSF) *vertexSF = sfVert; 42019566063dSJacob Faibussowitsch else PetscCall(PetscSFDestroy(&sfVert)); 4202a47d0d45SMatthew G. Knepley PetscFunctionReturn(0); 4203a47d0d45SMatthew G. Knepley } 4204a47d0d45SMatthew G. Knepley 4205b09969d6SVaclav Hapla /*@C 4206b09969d6SVaclav Hapla DMPlexBuildFromCellList - Build DMPLEX topology from a list of vertices for each cell (common mesh generator output) 42079298eaa6SMatthew G Knepley 42089298eaa6SMatthew G Knepley Input Parameters: 4209b09969d6SVaclav Hapla + dm - The DM 4210b09969d6SVaclav Hapla . numCells - The number of cells owned by this process 4211325d53feSBarry Smith . numVertices - The number of vertices owned by this process, or PETSC_DETERMINE 42129298eaa6SMatthew G Knepley . numCorners - The number of vertices for each cell 42135e488331SVaclav Hapla - cells - An array of numCells*numCorners numbers, the global vertex numbers for each cell 42149298eaa6SMatthew G Knepley 4215b09969d6SVaclav Hapla Level: advanced 42169298eaa6SMatthew G Knepley 4217b09969d6SVaclav Hapla Notes: 4218b09969d6SVaclav Hapla Two triangles sharing a face 42199298eaa6SMatthew G Knepley $ 42209298eaa6SMatthew G Knepley $ 2 42219298eaa6SMatthew G Knepley $ / | \ 42229298eaa6SMatthew G Knepley $ / | \ 42239298eaa6SMatthew G Knepley $ / | \ 42249298eaa6SMatthew G Knepley $ 0 0 | 1 3 42259298eaa6SMatthew G Knepley $ \ | / 42269298eaa6SMatthew G Knepley $ \ | / 42279298eaa6SMatthew G Knepley $ \ | / 42289298eaa6SMatthew G Knepley $ 1 42299298eaa6SMatthew G Knepley would have input 42309298eaa6SMatthew G Knepley $ numCells = 2, numVertices = 4 42319298eaa6SMatthew G Knepley $ cells = [0 1 2 1 3 2] 42329298eaa6SMatthew G Knepley $ 42339298eaa6SMatthew G Knepley which would result in the DMPlex 42349298eaa6SMatthew G Knepley $ 42359298eaa6SMatthew G Knepley $ 4 42369298eaa6SMatthew G Knepley $ / | \ 42379298eaa6SMatthew G Knepley $ / | \ 42389298eaa6SMatthew G Knepley $ / | \ 42399298eaa6SMatthew G Knepley $ 2 0 | 1 5 42409298eaa6SMatthew G Knepley $ \ | / 42419298eaa6SMatthew G Knepley $ \ | / 42429298eaa6SMatthew G Knepley $ \ | / 42439298eaa6SMatthew G Knepley $ 3 42449298eaa6SMatthew G Knepley 4245325d53feSBarry Smith If numVertices is PETSC_DETERMINE, it is computed by PETSc as the maximum vertex index in cells + 1. 424625b6865aSVaclav Hapla 4247b09969d6SVaclav Hapla Not currently supported in Fortran. 42489298eaa6SMatthew G Knepley 4249db781477SPatrick Sanan .seealso: `DMPlexBuildFromCellListParallel()`, `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromCellListPetsc()` 4250b09969d6SVaclav Hapla @*/ 42515e488331SVaclav Hapla PetscErrorCode DMPlexBuildFromCellList(DM dm, PetscInt numCells, PetscInt numVertices, PetscInt numCorners, const PetscInt cells[]) 4252b09969d6SVaclav Hapla { 4253961cfab0SVaclav Hapla PetscInt *cones, c, p, dim; 4254b09969d6SVaclav Hapla 4255b09969d6SVaclav Hapla PetscFunctionBegin; 42569566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(DMPLEX_BuildFromCellList,dm,0,0,0)); 42579566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &dim)); 425825b6865aSVaclav Hapla /* Get/check global number of vertices */ 425925b6865aSVaclav Hapla { 426025b6865aSVaclav Hapla PetscInt NVerticesInCells, i; 426125b6865aSVaclav Hapla const PetscInt len = numCells * numCorners; 426225b6865aSVaclav Hapla 426325b6865aSVaclav Hapla /* NVerticesInCells = max(cells) + 1 */ 426425b6865aSVaclav Hapla NVerticesInCells = PETSC_MIN_INT; 426525b6865aSVaclav Hapla for (i=0; i<len; i++) if (cells[i] > NVerticesInCells) NVerticesInCells = cells[i]; 426625b6865aSVaclav Hapla ++NVerticesInCells; 426725b6865aSVaclav Hapla 426825b6865aSVaclav Hapla if (numVertices == PETSC_DECIDE) numVertices = NVerticesInCells; 426963a3b9bcSJacob Faibussowitsch else 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); 427025b6865aSVaclav Hapla } 42719566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, 0, numCells+numVertices)); 4272b09969d6SVaclav Hapla for (c = 0; c < numCells; ++c) { 42739566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, c, numCorners)); 4274b09969d6SVaclav Hapla } 42759566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); 42769566063dSJacob Faibussowitsch PetscCall(DMPlexGetCones(dm,&cones)); 4277b09969d6SVaclav Hapla for (c = 0; c < numCells; ++c) { 4278b09969d6SVaclav Hapla for (p = 0; p < numCorners; ++p) { 4279961cfab0SVaclav Hapla cones[c*numCorners+p] = cells[c*numCorners+p]+numCells; 4280b09969d6SVaclav Hapla } 4281b09969d6SVaclav Hapla } 42829566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 42839566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 42849566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(DMPLEX_BuildFromCellList,dm,0,0,0)); 4285b09969d6SVaclav Hapla PetscFunctionReturn(0); 4286b09969d6SVaclav Hapla } 4287b09969d6SVaclav Hapla 4288b09969d6SVaclav Hapla /*@C 4289b09969d6SVaclav Hapla DMPlexBuildCoordinatesFromCellList - Build DM coordinates from a list of coordinates for each owned vertex (common mesh generator output) 4290b09969d6SVaclav Hapla 4291b09969d6SVaclav Hapla Input Parameters: 4292b09969d6SVaclav Hapla + dm - The DM 4293b09969d6SVaclav Hapla . spaceDim - The spatial dimension used for coordinates 4294b09969d6SVaclav Hapla - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex 4295b09969d6SVaclav Hapla 4296b09969d6SVaclav Hapla Level: advanced 4297b09969d6SVaclav Hapla 4298b09969d6SVaclav Hapla Notes: 4299b09969d6SVaclav Hapla Not currently supported in Fortran. 4300b09969d6SVaclav Hapla 4301db781477SPatrick Sanan .seealso: `DMPlexBuildCoordinatesFromCellListParallel()`, `DMPlexCreateFromCellListPetsc()`, `DMPlexBuildFromCellList()` 4302b09969d6SVaclav Hapla @*/ 43031edcf0b2SVaclav Hapla PetscErrorCode DMPlexBuildCoordinatesFromCellList(DM dm, PetscInt spaceDim, const PetscReal vertexCoords[]) 4304b09969d6SVaclav Hapla { 4305b09969d6SVaclav Hapla PetscSection coordSection; 4306b09969d6SVaclav Hapla Vec coordinates; 4307b09969d6SVaclav Hapla DM cdm; 4308b09969d6SVaclav Hapla PetscScalar *coords; 43091edcf0b2SVaclav Hapla PetscInt v, vStart, vEnd, d; 4310b09969d6SVaclav Hapla 4311b09969d6SVaclav Hapla PetscFunctionBegin; 43129566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(DMPLEX_BuildCoordinatesFromCellList,dm,0,0,0)); 43139566063dSJacob Faibussowitsch PetscCall(DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd)); 43141dca8a05SBarry Smith PetscCheck(vStart >= 0 && vEnd >= 0,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "DM is not set up properly. DMPlexBuildFromCellList() should be called first."); 43159566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(dm, spaceDim)); 43169566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 43179566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 43189566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, spaceDim)); 43199566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, vStart, vEnd)); 43201edcf0b2SVaclav Hapla for (v = vStart; v < vEnd; ++v) { 43219566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, spaceDim)); 43229566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, spaceDim)); 4323b09969d6SVaclav Hapla } 43249566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 4325b09969d6SVaclav Hapla 43269566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDM(dm, &cdm)); 43279566063dSJacob Faibussowitsch PetscCall(DMCreateLocalVector(cdm, &coordinates)); 43289566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, spaceDim)); 43299566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 43309566063dSJacob Faibussowitsch PetscCall(VecGetArrayWrite(coordinates, &coords)); 43311edcf0b2SVaclav Hapla for (v = 0; v < vEnd-vStart; ++v) { 4332b09969d6SVaclav Hapla for (d = 0; d < spaceDim; ++d) { 4333b09969d6SVaclav Hapla coords[v*spaceDim+d] = vertexCoords[v*spaceDim+d]; 4334b09969d6SVaclav Hapla } 4335b09969d6SVaclav Hapla } 43369566063dSJacob Faibussowitsch PetscCall(VecRestoreArrayWrite(coordinates, &coords)); 43379566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 43389566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 43399566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(DMPLEX_BuildCoordinatesFromCellList,dm,0,0,0)); 4340b09969d6SVaclav Hapla PetscFunctionReturn(0); 4341b09969d6SVaclav Hapla } 4342b09969d6SVaclav Hapla 4343b09969d6SVaclav Hapla /*@ 43443df08285SMatthew G. Knepley DMPlexCreateFromCellListPetsc - Create DMPLEX from a list of vertices for each cell (common mesh generator output), but only process 0 takes in the input 43453df08285SMatthew G. Knepley 43463df08285SMatthew G. Knepley Collective on comm 4347b09969d6SVaclav Hapla 4348b09969d6SVaclav Hapla Input Parameters: 4349b09969d6SVaclav Hapla + comm - The communicator 4350b09969d6SVaclav Hapla . dim - The topological dimension of the mesh 43513df08285SMatthew G. Knepley . numCells - The number of cells, only on process 0 43523df08285SMatthew G. Knepley . numVertices - The number of vertices owned by this process, or PETSC_DECIDE, only on process 0 43533df08285SMatthew G. Knepley . numCorners - The number of vertices for each cell, only on process 0 4354b09969d6SVaclav Hapla . interpolate - Flag indicating that intermediate mesh entities (faces, edges) should be created automatically 43553df08285SMatthew G. Knepley . cells - An array of numCells*numCorners numbers, the vertices for each cell, only on process 0 4356b09969d6SVaclav Hapla . spaceDim - The spatial dimension used for coordinates 43573df08285SMatthew G. Knepley - vertexCoords - An array of numVertices*spaceDim numbers, the coordinates of each vertex, only on process 0 4358b09969d6SVaclav Hapla 4359b09969d6SVaclav Hapla Output Parameter: 43603df08285SMatthew G. Knepley . dm - The DM, which only has points on process 0 4361b09969d6SVaclav Hapla 4362b09969d6SVaclav Hapla Notes: 4363b09969d6SVaclav Hapla This function is just a convenient sequence of DMCreate(), DMSetType(), DMSetDimension(), DMPlexBuildFromCellList(), 4364b09969d6SVaclav Hapla DMPlexInterpolate(), DMPlexBuildCoordinatesFromCellList() 4365b09969d6SVaclav Hapla 436625b6865aSVaclav Hapla See DMPlexBuildFromCellList() for an example and details about the topology-related parameters. 436725b6865aSVaclav Hapla See DMPlexBuildCoordinatesFromCellList() for details about the geometry-related parameters. 43683df08285SMatthew G. Knepley See DMPlexCreateFromCellListParallelPetsc() for parallel input 436925b6865aSVaclav Hapla 4370b09969d6SVaclav Hapla Level: intermediate 4371b09969d6SVaclav Hapla 4372db781477SPatrick Sanan .seealso: `DMPlexCreateFromCellListParallelPetsc()`, `DMPlexBuildFromCellList()`, `DMPlexBuildCoordinatesFromCellList()`, `DMPlexCreateFromDAG()`, `DMPlexCreate()` 43739298eaa6SMatthew G Knepley @*/ 4374a4a685f2SJacob 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) 43759298eaa6SMatthew G Knepley { 43763df08285SMatthew G. Knepley PetscMPIInt rank; 43779298eaa6SMatthew G Knepley 43789298eaa6SMatthew G Knepley PetscFunctionBegin; 437928b400f6SJacob 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."); 43809566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(comm, &rank)); 43819566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 43829566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 43839566063dSJacob Faibussowitsch PetscCall(DMSetDimension(*dm, dim)); 4384*c5853193SPierre Jolivet if (rank == 0) PetscCall(DMPlexBuildFromCellList(*dm, numCells, numVertices, numCorners, cells)); 43859566063dSJacob Faibussowitsch else PetscCall(DMPlexBuildFromCellList(*dm, 0, 0, 0, NULL)); 43869298eaa6SMatthew G Knepley if (interpolate) { 43875fd9971aSMatthew G. Knepley DM idm; 43889298eaa6SMatthew G Knepley 43899566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(*dm, &idm)); 43909566063dSJacob Faibussowitsch PetscCall(DMDestroy(dm)); 43919298eaa6SMatthew G Knepley *dm = idm; 43929298eaa6SMatthew G Knepley } 4393*c5853193SPierre Jolivet if (rank == 0) PetscCall(DMPlexBuildCoordinatesFromCellList(*dm, spaceDim, vertexCoords)); 43949566063dSJacob Faibussowitsch else PetscCall(DMPlexBuildCoordinatesFromCellList(*dm, spaceDim, NULL)); 43959298eaa6SMatthew G Knepley PetscFunctionReturn(0); 43969298eaa6SMatthew G Knepley } 43979298eaa6SMatthew G Knepley 4398939f6067SMatthew G. Knepley /*@ 4399939f6067SMatthew G. Knepley DMPlexCreateFromDAG - This takes as input the adjacency-list representation of the Directed Acyclic Graph (Hasse Diagram) encoding a mesh, and produces a DM 4400939f6067SMatthew G. Knepley 4401939f6067SMatthew G. Knepley Input Parameters: 4402c73cfb54SMatthew G. Knepley + dm - The empty DM object, usually from DMCreate() and DMSetDimension() 4403939f6067SMatthew G. Knepley . depth - The depth of the DAG 4404367003a6SStefano Zampini . numPoints - Array of size depth + 1 containing the number of points at each depth 4405939f6067SMatthew G. Knepley . coneSize - The cone size of each point 4406939f6067SMatthew G. Knepley . cones - The concatenation of the cone points for each point, the cone list must be oriented correctly for each point 4407939f6067SMatthew G. Knepley . coneOrientations - The orientation of each cone point 4408367003a6SStefano Zampini - vertexCoords - An array of numPoints[0]*spacedim numbers representing the coordinates of each vertex, with spacedim the value set via DMSetCoordinateDim() 4409939f6067SMatthew G. Knepley 4410939f6067SMatthew G. Knepley Output Parameter: 4411939f6067SMatthew G. Knepley . dm - The DM 4412939f6067SMatthew G. Knepley 4413939f6067SMatthew G. Knepley Note: Two triangles sharing a face would have input 4414939f6067SMatthew G. Knepley $ depth = 1, numPoints = [4 2], coneSize = [3 3 0 0 0 0] 4415939f6067SMatthew G. Knepley $ cones = [2 3 4 3 5 4], coneOrientations = [0 0 0 0 0 0] 4416939f6067SMatthew G. Knepley $ vertexCoords = [-1.0 0.0 0.0 -1.0 0.0 1.0 1.0 0.0] 4417939f6067SMatthew G. Knepley $ 4418939f6067SMatthew G. Knepley which would result in the DMPlex 4419939f6067SMatthew G. Knepley $ 4420939f6067SMatthew G. Knepley $ 4 4421939f6067SMatthew G. Knepley $ / | \ 4422939f6067SMatthew G. Knepley $ / | \ 4423939f6067SMatthew G. Knepley $ / | \ 4424939f6067SMatthew G. Knepley $ 2 0 | 1 5 4425939f6067SMatthew G. Knepley $ \ | / 4426939f6067SMatthew G. Knepley $ \ | / 4427939f6067SMatthew G. Knepley $ \ | / 4428939f6067SMatthew G. Knepley $ 3 4429939f6067SMatthew G. Knepley $ 4430a4a685f2SJacob Faibussowitsch $ Notice that all points are numbered consecutively, unlike DMPlexCreateFromCellListPetsc() 4431939f6067SMatthew G. Knepley 4432939f6067SMatthew G. Knepley Level: advanced 4433939f6067SMatthew G. Knepley 4434db781477SPatrick Sanan .seealso: `DMPlexCreateFromCellListPetsc()`, `DMPlexCreate()` 4435939f6067SMatthew G. Knepley @*/ 44369298eaa6SMatthew G Knepley PetscErrorCode DMPlexCreateFromDAG(DM dm, PetscInt depth, const PetscInt numPoints[], const PetscInt coneSize[], const PetscInt cones[], const PetscInt coneOrientations[], const PetscScalar vertexCoords[]) 44379298eaa6SMatthew G Knepley { 44389298eaa6SMatthew G Knepley Vec coordinates; 44399298eaa6SMatthew G Knepley PetscSection coordSection; 44409298eaa6SMatthew G Knepley PetscScalar *coords; 4441811e8653SToby Isaac PetscInt coordSize, firstVertex = -1, pStart = 0, pEnd = 0, p, v, dim, dimEmbed, d, off; 44429298eaa6SMatthew G Knepley 44439298eaa6SMatthew G Knepley PetscFunctionBegin; 44449566063dSJacob Faibussowitsch PetscCall(DMGetDimension(dm, &dim)); 44459566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateDim(dm, &dimEmbed)); 444663a3b9bcSJacob Faibussowitsch PetscCheck(dimEmbed >= dim,PETSC_COMM_SELF,PETSC_ERR_PLIB,"Embedding dimension %" PetscInt_FMT " cannot be less than intrinsic dimension %" PetscInt_FMT,dimEmbed,dim); 44479298eaa6SMatthew G Knepley for (d = 0; d <= depth; ++d) pEnd += numPoints[d]; 44489566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(dm, pStart, pEnd)); 44499298eaa6SMatthew G Knepley for (p = pStart; p < pEnd; ++p) { 44509566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeSize(dm, p, coneSize[p-pStart])); 445197e052ccSToby Isaac if (firstVertex < 0 && !coneSize[p - pStart]) { 445297e052ccSToby Isaac firstVertex = p - pStart; 44539298eaa6SMatthew G Knepley } 445497e052ccSToby Isaac } 44551dca8a05SBarry Smith PetscCheck(firstVertex >= 0 || !numPoints[0],PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Expected %" PetscInt_FMT " vertices but could not find any", numPoints[0]); 44569566063dSJacob Faibussowitsch PetscCall(DMSetUp(dm)); /* Allocate space for cones */ 44579298eaa6SMatthew G Knepley for (p = pStart, off = 0; p < pEnd; off += coneSize[p-pStart], ++p) { 44589566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(dm, p, &cones[off])); 44599566063dSJacob Faibussowitsch PetscCall(DMPlexSetConeOrientation(dm, p, &coneOrientations[off])); 44609298eaa6SMatthew G Knepley } 44619566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(dm)); 44629566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(dm)); 44639298eaa6SMatthew G Knepley /* Build coordinates */ 44649566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(dm, &coordSection)); 44659566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 44669566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, dimEmbed)); 44679566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, firstVertex, firstVertex+numPoints[0])); 44689298eaa6SMatthew G Knepley for (v = firstVertex; v < firstVertex+numPoints[0]; ++v) { 44699566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, dimEmbed)); 44709566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, dimEmbed)); 44719298eaa6SMatthew G Knepley } 44729566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 44739566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 44749566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 44759566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 44769566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 44779566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, dimEmbed)); 44789566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates,VECSTANDARD)); 44799318fe57SMatthew G. Knepley if (vertexCoords) { 44809566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 44819298eaa6SMatthew G Knepley for (v = 0; v < numPoints[0]; ++v) { 44829298eaa6SMatthew G Knepley PetscInt off; 44839298eaa6SMatthew G Knepley 44849566063dSJacob Faibussowitsch PetscCall(PetscSectionGetOffset(coordSection, v+firstVertex, &off)); 4485811e8653SToby Isaac for (d = 0; d < dimEmbed; ++d) { 4486811e8653SToby Isaac coords[off+d] = vertexCoords[v*dimEmbed+d]; 44879298eaa6SMatthew G Knepley } 44889298eaa6SMatthew G Knepley } 44899318fe57SMatthew G. Knepley } 44909566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 44919566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(dm, coordinates)); 44929566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 44939298eaa6SMatthew G Knepley PetscFunctionReturn(0); 44949298eaa6SMatthew G Knepley } 44958415267dSToby Isaac 4496ca522641SMatthew G. Knepley /*@C 44978ca92349SMatthew G. Knepley DMPlexCreateCellVertexFromFile - Create a DMPlex mesh from a simple cell-vertex file. 44988ca92349SMatthew G. Knepley 44998ca92349SMatthew G. Knepley + comm - The MPI communicator 45008ca92349SMatthew G. Knepley . filename - Name of the .dat file 45018ca92349SMatthew G. Knepley - interpolate - Create faces and edges in the mesh 45028ca92349SMatthew G. Knepley 45038ca92349SMatthew G. Knepley Output Parameter: 45048ca92349SMatthew G. Knepley . dm - The DM object representing the mesh 45058ca92349SMatthew G. Knepley 45068ca92349SMatthew G. Knepley Note: The format is the simplest possible: 45078ca92349SMatthew G. Knepley $ Ne 45088ca92349SMatthew G. Knepley $ v0 v1 ... vk 45098ca92349SMatthew G. Knepley $ Nv 45108ca92349SMatthew G. Knepley $ x y z marker 45118ca92349SMatthew G. Knepley 45128ca92349SMatthew G. Knepley Level: beginner 45138ca92349SMatthew G. Knepley 4514db781477SPatrick Sanan .seealso: `DMPlexCreateFromFile()`, `DMPlexCreateMedFromFile()`, `DMPlexCreateGmsh()`, `DMPlexCreate()` 45158ca92349SMatthew G. Knepley @*/ 45168ca92349SMatthew G. Knepley PetscErrorCode DMPlexCreateCellVertexFromFile(MPI_Comm comm, const char filename[], PetscBool interpolate, DM *dm) 45178ca92349SMatthew G. Knepley { 45188ca92349SMatthew G. Knepley DMLabel marker; 45198ca92349SMatthew G. Knepley PetscViewer viewer; 45208ca92349SMatthew G. Knepley Vec coordinates; 45218ca92349SMatthew G. Knepley PetscSection coordSection; 45228ca92349SMatthew G. Knepley PetscScalar *coords; 45238ca92349SMatthew G. Knepley char line[PETSC_MAX_PATH_LEN]; 45248ca92349SMatthew G. Knepley PetscInt dim = 3, cdim = 3, coordSize, v, c, d; 45258ca92349SMatthew G. Knepley PetscMPIInt rank; 4526f8d5e320SMatthew G. Knepley int snum, Nv, Nc, Ncn, Nl; 45278ca92349SMatthew G. Knepley 45288ca92349SMatthew G. Knepley PetscFunctionBegin; 45299566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(comm, &rank)); 45309566063dSJacob Faibussowitsch PetscCall(PetscViewerCreate(comm, &viewer)); 45319566063dSJacob Faibussowitsch PetscCall(PetscViewerSetType(viewer, PETSCVIEWERASCII)); 45329566063dSJacob Faibussowitsch PetscCall(PetscViewerFileSetMode(viewer, FILE_MODE_READ)); 45339566063dSJacob Faibussowitsch PetscCall(PetscViewerFileSetName(viewer, filename)); 4534dd400576SPatrick Sanan if (rank == 0) { 45359566063dSJacob Faibussowitsch PetscCall(PetscViewerRead(viewer, line, 4, NULL, PETSC_STRING)); 4536f8d5e320SMatthew G. Knepley snum = sscanf(line, "%d %d %d %d", &Nc, &Nv, &Ncn, &Nl); 453708401ef6SPierre Jolivet PetscCheck(snum == 4,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line); 453825ce1634SJed Brown } else { 4539f8d5e320SMatthew G. Knepley Nc = Nv = Ncn = Nl = 0; 45408ca92349SMatthew G. Knepley } 45419566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 45429566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 45439566063dSJacob Faibussowitsch PetscCall(DMPlexSetChart(*dm, 0, Nc+Nv)); 45449566063dSJacob Faibussowitsch PetscCall(DMSetDimension(*dm, dim)); 45459566063dSJacob Faibussowitsch PetscCall(DMSetCoordinateDim(*dm, cdim)); 45468ca92349SMatthew G. Knepley /* Read topology */ 4547dd400576SPatrick Sanan if (rank == 0) { 4548f8d5e320SMatthew G. Knepley char format[PETSC_MAX_PATH_LEN]; 4549f8d5e320SMatthew G. Knepley PetscInt cone[8]; 45508ca92349SMatthew G. Knepley int vbuf[8], v; 45518ca92349SMatthew G. Knepley 4552f8d5e320SMatthew G. Knepley for (c = 0; c < Ncn; ++c) {format[c*3+0] = '%'; format[c*3+1] = 'd'; format[c*3+2] = ' ';} 4553f8d5e320SMatthew G. Knepley format[Ncn*3-1] = '\0'; 45549566063dSJacob Faibussowitsch for (c = 0; c < Nc; ++c) PetscCall(DMPlexSetConeSize(*dm, c, Ncn)); 45559566063dSJacob Faibussowitsch PetscCall(DMSetUp(*dm)); 45568ca92349SMatthew G. Knepley for (c = 0; c < Nc; ++c) { 45579566063dSJacob Faibussowitsch PetscCall(PetscViewerRead(viewer, line, Ncn, NULL, PETSC_STRING)); 4558f8d5e320SMatthew G. Knepley switch (Ncn) { 4559f8d5e320SMatthew G. Knepley case 2: snum = sscanf(line, format, &vbuf[0], &vbuf[1]);break; 4560f8d5e320SMatthew G. Knepley case 3: snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2]);break; 4561f8d5e320SMatthew G. Knepley case 4: snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3]);break; 4562f8d5e320SMatthew G. Knepley case 6: snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5]);break; 4563f8d5e320SMatthew G. Knepley case 8: snum = sscanf(line, format, &vbuf[0], &vbuf[1], &vbuf[2], &vbuf[3], &vbuf[4], &vbuf[5], &vbuf[6], &vbuf[7]);break; 456463a3b9bcSJacob Faibussowitsch default: SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No cell shape with %d vertices", Ncn); 4565f8d5e320SMatthew G. Knepley } 456608401ef6SPierre Jolivet PetscCheck(snum == Ncn,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line); 4567f8d5e320SMatthew G. Knepley for (v = 0; v < Ncn; ++v) cone[v] = vbuf[v] + Nc; 45688ca92349SMatthew G. Knepley /* Hexahedra are inverted */ 4569f8d5e320SMatthew G. Knepley if (Ncn == 8) { 45708ca92349SMatthew G. Knepley PetscInt tmp = cone[1]; 45718ca92349SMatthew G. Knepley cone[1] = cone[3]; 45728ca92349SMatthew G. Knepley cone[3] = tmp; 45738ca92349SMatthew G. Knepley } 45749566063dSJacob Faibussowitsch PetscCall(DMPlexSetCone(*dm, c, cone)); 45758ca92349SMatthew G. Knepley } 45768ca92349SMatthew G. Knepley } 45779566063dSJacob Faibussowitsch PetscCall(DMPlexSymmetrize(*dm)); 45789566063dSJacob Faibussowitsch PetscCall(DMPlexStratify(*dm)); 45798ca92349SMatthew G. Knepley /* Read coordinates */ 45809566063dSJacob Faibussowitsch PetscCall(DMGetCoordinateSection(*dm, &coordSection)); 45819566063dSJacob Faibussowitsch PetscCall(PetscSectionSetNumFields(coordSection, 1)); 45829566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldComponents(coordSection, 0, cdim)); 45839566063dSJacob Faibussowitsch PetscCall(PetscSectionSetChart(coordSection, Nc, Nc + Nv)); 45848ca92349SMatthew G. Knepley for (v = Nc; v < Nc+Nv; ++v) { 45859566063dSJacob Faibussowitsch PetscCall(PetscSectionSetDof(coordSection, v, cdim)); 45869566063dSJacob Faibussowitsch PetscCall(PetscSectionSetFieldDof(coordSection, v, 0, cdim)); 45878ca92349SMatthew G. Knepley } 45889566063dSJacob Faibussowitsch PetscCall(PetscSectionSetUp(coordSection)); 45899566063dSJacob Faibussowitsch PetscCall(PetscSectionGetStorageSize(coordSection, &coordSize)); 45909566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &coordinates)); 45919566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject) coordinates, "coordinates")); 45929566063dSJacob Faibussowitsch PetscCall(VecSetSizes(coordinates, coordSize, PETSC_DETERMINE)); 45939566063dSJacob Faibussowitsch PetscCall(VecSetBlockSize(coordinates, cdim)); 45949566063dSJacob Faibussowitsch PetscCall(VecSetType(coordinates, VECSTANDARD)); 45959566063dSJacob Faibussowitsch PetscCall(VecGetArray(coordinates, &coords)); 4596dd400576SPatrick Sanan if (rank == 0) { 4597f8d5e320SMatthew G. Knepley char format[PETSC_MAX_PATH_LEN]; 45988ca92349SMatthew G. Knepley double x[3]; 4599f8d5e320SMatthew G. Knepley int l, val[3]; 46008ca92349SMatthew G. Knepley 4601f8d5e320SMatthew G. Knepley if (Nl) { 4602f8d5e320SMatthew G. Knepley for (l = 0; l < Nl; ++l) {format[l*3+0] = '%'; format[l*3+1] = 'd'; format[l*3+2] = ' ';} 4603f8d5e320SMatthew G. Knepley format[Nl*3-1] = '\0'; 46049566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(*dm, "marker")); 46059566063dSJacob Faibussowitsch PetscCall(DMGetLabel(*dm, "marker", &marker)); 4606f8d5e320SMatthew G. Knepley } 46078ca92349SMatthew G. Knepley for (v = 0; v < Nv; ++v) { 46089566063dSJacob Faibussowitsch PetscCall(PetscViewerRead(viewer, line, 3+Nl, NULL, PETSC_STRING)); 4609f8d5e320SMatthew G. Knepley snum = sscanf(line, "%lg %lg %lg", &x[0], &x[1], &x[2]); 461008401ef6SPierre Jolivet PetscCheck(snum == 3,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line); 4611f8d5e320SMatthew G. Knepley switch (Nl) { 4612f8d5e320SMatthew G. Knepley case 0: snum = 0;break; 4613f8d5e320SMatthew G. Knepley case 1: snum = sscanf(line, format, &val[0]);break; 4614f8d5e320SMatthew G. Knepley case 2: snum = sscanf(line, format, &val[0], &val[1]);break; 4615f8d5e320SMatthew G. Knepley case 3: snum = sscanf(line, format, &val[0], &val[1], &val[2]);break; 461663a3b9bcSJacob Faibussowitsch default: SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Request support for %d labels", Nl); 4617f8d5e320SMatthew G. Knepley } 461808401ef6SPierre Jolivet PetscCheck(snum == Nl,PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unable to parse cell-vertex file: %s", line); 46198ca92349SMatthew G. Knepley for (d = 0; d < cdim; ++d) coords[v*cdim+d] = x[d]; 46209566063dSJacob Faibussowitsch for (l = 0; l < Nl; ++l) PetscCall(DMLabelSetValue(marker, v+Nc, val[l])); 46218ca92349SMatthew G. Knepley } 46228ca92349SMatthew G. Knepley } 46239566063dSJacob Faibussowitsch PetscCall(VecRestoreArray(coordinates, &coords)); 46249566063dSJacob Faibussowitsch PetscCall(DMSetCoordinatesLocal(*dm, coordinates)); 46259566063dSJacob Faibussowitsch PetscCall(VecDestroy(&coordinates)); 46269566063dSJacob Faibussowitsch PetscCall(PetscViewerDestroy(&viewer)); 46278ca92349SMatthew G. Knepley if (interpolate) { 46288ca92349SMatthew G. Knepley DM idm; 46298ca92349SMatthew G. Knepley DMLabel bdlabel; 46308ca92349SMatthew G. Knepley 46319566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(*dm, &idm)); 46329566063dSJacob Faibussowitsch PetscCall(DMDestroy(dm)); 46338ca92349SMatthew G. Knepley *dm = idm; 46348ca92349SMatthew G. Knepley 4635f8d5e320SMatthew G. Knepley if (!Nl) { 46369566063dSJacob Faibussowitsch PetscCall(DMCreateLabel(*dm, "marker")); 46379566063dSJacob Faibussowitsch PetscCall(DMGetLabel(*dm, "marker", &bdlabel)); 46389566063dSJacob Faibussowitsch PetscCall(DMPlexMarkBoundaryFaces(*dm, PETSC_DETERMINE, bdlabel)); 46399566063dSJacob Faibussowitsch PetscCall(DMPlexLabelComplete(*dm, bdlabel)); 46408ca92349SMatthew G. Knepley } 4641f8d5e320SMatthew G. Knepley } 46428ca92349SMatthew G. Knepley PetscFunctionReturn(0); 46438ca92349SMatthew G. Knepley } 46448ca92349SMatthew G. Knepley 46458ca92349SMatthew G. Knepley /*@C 4646ca522641SMatthew G. Knepley DMPlexCreateFromFile - This takes a filename and produces a DM 4647ca522641SMatthew G. Knepley 4648ca522641SMatthew G. Knepley Input Parameters: 4649ca522641SMatthew G. Knepley + comm - The communicator 4650ca522641SMatthew G. Knepley . filename - A file name 4651cd7e8a5eSksagiyam . plexname - The object name of the resulting DM, also used for intra-datafile lookup by some formats 4652ca522641SMatthew G. Knepley - interpolate - Flag to create intermediate mesh pieces (edges, faces) 4653ca522641SMatthew G. Knepley 4654ca522641SMatthew G. Knepley Output Parameter: 4655ca522641SMatthew G. Knepley . dm - The DM 4656ca522641SMatthew G. Knepley 465702ef0d99SVaclav Hapla Options Database Keys: 465802ef0d99SVaclav Hapla . -dm_plex_create_from_hdf5_xdmf - use the PETSC_VIEWER_HDF5_XDMF format for reading HDF5 465902ef0d99SVaclav Hapla 4660bca97951SVaclav Hapla Use -dm_plex_create_ prefix to pass options to the internal PetscViewer, e.g. 4661bca97951SVaclav Hapla $ -dm_plex_create_viewer_hdf5_collective 4662bca97951SVaclav Hapla 4663cd7e8a5eSksagiyam Notes: 4664cd7e8a5eSksagiyam Using PETSCVIEWERHDF5 type with PETSC_VIEWER_HDF5_PETSC format, one can save multiple DMPlex 4665cd7e8a5eSksagiyam meshes in a single HDF5 file. This in turn requires one to name the DMPlex object with PetscObjectSetName() 4666cd7e8a5eSksagiyam before saving it with DMView() and before loading it with DMLoad() for identification of the mesh object. 4667cd7e8a5eSksagiyam The input parameter name is thus used to name the DMPlex object when DMPlexCreateFromFile() internally 4668cd7e8a5eSksagiyam calls DMLoad(). Currently, name is ignored for other viewer types and/or formats. 4669cd7e8a5eSksagiyam 4670ca522641SMatthew G. Knepley Level: beginner 4671ca522641SMatthew G. Knepley 4672db781477SPatrick Sanan .seealso: `DMPlexCreateFromDAG()`, `DMPlexCreateFromCellListPetsc()`, `DMPlexCreate()`, `PetscObjectSetName()`, `DMView()`, `DMLoad()` 4673ca522641SMatthew G. Knepley @*/ 4674cd7e8a5eSksagiyam PetscErrorCode DMPlexCreateFromFile(MPI_Comm comm, const char filename[], const char plexname[], PetscBool interpolate, DM *dm) 4675ca522641SMatthew G. Knepley { 4676ca522641SMatthew G. Knepley const char *extGmsh = ".msh"; 4677de78e4feSLisandro Dalcin const char *extGmsh2 = ".msh2"; 4678de78e4feSLisandro Dalcin const char *extGmsh4 = ".msh4"; 4679ca522641SMatthew G. Knepley const char *extCGNS = ".cgns"; 4680ca522641SMatthew G. Knepley const char *extExodus = ".exo"; 468186a0adb1SJed Brown const char *extExodus_e = ".e"; 468290c68965SMatthew G. Knepley const char *extGenesis = ".gen"; 46832f0bd6dcSMichael Lange const char *extFluent = ".cas"; 4684cc2f8f65SMatthew G. Knepley const char *extHDF5 = ".h5"; 4685707dd687SMichael Lange const char *extMed = ".med"; 4686f2801cd6SMatthew G. Knepley const char *extPLY = ".ply"; 4687c1cad2e7SMatthew G. Knepley const char *extEGADSLite = ".egadslite"; 4688c1cad2e7SMatthew G. Knepley const char *extEGADS = ".egads"; 4689c1cad2e7SMatthew G. Knepley const char *extIGES = ".igs"; 4690c1cad2e7SMatthew G. Knepley const char *extSTEP = ".stp"; 46918ca92349SMatthew G. Knepley const char *extCV = ".dat"; 4692ca522641SMatthew G. Knepley size_t len; 4693c1cad2e7SMatthew G. Knepley PetscBool isGmsh, isGmsh2, isGmsh4, isCGNS, isExodus, isGenesis, isFluent, isHDF5, isMed, isPLY, isEGADSLite, isEGADS, isIGES, isSTEP, isCV; 4694ca522641SMatthew G. Knepley PetscMPIInt rank; 4695ca522641SMatthew G. Knepley 4696ca522641SMatthew G. Knepley PetscFunctionBegin; 46975d80c0bfSVaclav Hapla PetscValidCharPointer(filename, 2); 46980d862eaeSPierre Jolivet if (plexname) PetscValidCharPointer(plexname, 3); 4699cd7e8a5eSksagiyam PetscValidPointer(dm, 5); 47009566063dSJacob Faibussowitsch PetscCall(DMInitializePackage()); 47019566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(DMPLEX_CreateFromFile,0,0,0,0)); 47029566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(comm, &rank)); 47039566063dSJacob Faibussowitsch PetscCall(PetscStrlen(filename, &len)); 470428b400f6SJacob Faibussowitsch PetscCheck(len,comm, PETSC_ERR_ARG_WRONG, "Filename must be a valid path"); 47059566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extGmsh, 4, &isGmsh)); 47069566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-5)], extGmsh2, 5, &isGmsh2)); 47079566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-5)], extGmsh4, 5, &isGmsh4)); 47089566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-5)], extCGNS, 5, &isCGNS)); 47099566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extExodus, 4, &isExodus)); 471086a0adb1SJed Brown if (!isExodus) { 47119566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-2)], extExodus_e, 2, &isExodus)); 471286a0adb1SJed Brown } 47139566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extGenesis, 4, &isGenesis)); 47149566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extFluent, 4, &isFluent)); 47159566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-3)], extHDF5, 3, &isHDF5)); 47169566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extMed, 4, &isMed)); 47179566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extPLY, 4, &isPLY)); 47189566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-10)], extEGADSLite, 10, &isEGADSLite)); 47199566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-6)], extEGADS, 6, &isEGADS)); 47209566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extIGES, 4, &isIGES)); 47219566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extSTEP, 4, &isSTEP)); 47229566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-4)], extCV, 4, &isCV)); 4723de78e4feSLisandro Dalcin if (isGmsh || isGmsh2 || isGmsh4) { 47249566063dSJacob Faibussowitsch PetscCall(DMPlexCreateGmshFromFile(comm, filename, interpolate, dm)); 4725ca522641SMatthew G. Knepley } else if (isCGNS) { 47269566063dSJacob Faibussowitsch PetscCall(DMPlexCreateCGNSFromFile(comm, filename, interpolate, dm)); 472790c68965SMatthew G. Knepley } else if (isExodus || isGenesis) { 47289566063dSJacob Faibussowitsch PetscCall(DMPlexCreateExodusFromFile(comm, filename, interpolate, dm)); 47292f0bd6dcSMichael Lange } else if (isFluent) { 47309566063dSJacob Faibussowitsch PetscCall(DMPlexCreateFluentFromFile(comm, filename, interpolate, dm)); 4731cc2f8f65SMatthew G. Knepley } else if (isHDF5) { 47329c48423bSVaclav Hapla PetscBool load_hdf5_xdmf = PETSC_FALSE; 4733cc2f8f65SMatthew G. Knepley PetscViewer viewer; 4734cc2f8f65SMatthew G. Knepley 473543b242b4SVaclav 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 */ 47369566063dSJacob Faibussowitsch PetscCall(PetscStrncmp(&filename[PetscMax(0,len-8)], ".xdmf", 5, &load_hdf5_xdmf)); 47379566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetBool(NULL, NULL, "-dm_plex_create_from_hdf5_xdmf", &load_hdf5_xdmf, NULL)); 47389566063dSJacob Faibussowitsch PetscCall(PetscViewerCreate(comm, &viewer)); 47399566063dSJacob Faibussowitsch PetscCall(PetscViewerSetType(viewer, PETSCVIEWERHDF5)); 47409566063dSJacob Faibussowitsch PetscCall(PetscViewerSetOptionsPrefix(viewer, "dm_plex_create_")); 47419566063dSJacob Faibussowitsch PetscCall(PetscViewerSetFromOptions(viewer)); 47429566063dSJacob Faibussowitsch PetscCall(PetscViewerFileSetMode(viewer, FILE_MODE_READ)); 47439566063dSJacob Faibussowitsch PetscCall(PetscViewerFileSetName(viewer, filename)); 4744cd7e8a5eSksagiyam 47459566063dSJacob Faibussowitsch PetscCall(DMCreate(comm, dm)); 47469566063dSJacob Faibussowitsch PetscCall(PetscObjectSetName((PetscObject)(*dm), plexname)); 47479566063dSJacob Faibussowitsch PetscCall(DMSetType(*dm, DMPLEX)); 47489566063dSJacob Faibussowitsch if (load_hdf5_xdmf) PetscCall(PetscViewerPushFormat(viewer, PETSC_VIEWER_HDF5_XDMF)); 47499566063dSJacob Faibussowitsch PetscCall(DMLoad(*dm, viewer)); 47509566063dSJacob Faibussowitsch if (load_hdf5_xdmf) PetscCall(PetscViewerPopFormat(viewer)); 47519566063dSJacob Faibussowitsch PetscCall(PetscViewerDestroy(&viewer)); 47525fd9971aSMatthew G. Knepley 47535fd9971aSMatthew G. Knepley if (interpolate) { 47545fd9971aSMatthew G. Knepley DM idm; 47555fd9971aSMatthew G. Knepley 47569566063dSJacob Faibussowitsch PetscCall(DMPlexInterpolate(*dm, &idm)); 47579566063dSJacob Faibussowitsch PetscCall(DMDestroy(dm)); 47585fd9971aSMatthew G. Knepley *dm = idm; 47595fd9971aSMatthew G. Knepley } 4760707dd687SMichael Lange } else if (isMed) { 47619566063dSJacob Faibussowitsch PetscCall(DMPlexCreateMedFromFile(comm, filename, interpolate, dm)); 4762f2801cd6SMatthew G. Knepley } else if (isPLY) { 47639566063dSJacob Faibussowitsch PetscCall(DMPlexCreatePLYFromFile(comm, filename, interpolate, dm)); 4764c1cad2e7SMatthew G. Knepley } else if (isEGADSLite || isEGADS || isIGES || isSTEP) { 47659566063dSJacob Faibussowitsch if (isEGADSLite) PetscCall(DMPlexCreateEGADSLiteFromFile(comm, filename, dm)); 47669566063dSJacob Faibussowitsch else PetscCall(DMPlexCreateEGADSFromFile(comm, filename, dm)); 47677bee2925SMatthew Knepley if (!interpolate) { 47687bee2925SMatthew Knepley DM udm; 47697bee2925SMatthew Knepley 47709566063dSJacob Faibussowitsch PetscCall(DMPlexUninterpolate(*dm, &udm)); 47719566063dSJacob Faibussowitsch PetscCall(DMDestroy(dm)); 47727bee2925SMatthew Knepley *dm = udm; 47737bee2925SMatthew Knepley } 47748ca92349SMatthew G. Knepley } else if (isCV) { 47759566063dSJacob Faibussowitsch PetscCall(DMPlexCreateCellVertexFromFile(comm, filename, interpolate, dm)); 477698921bdaSJacob Faibussowitsch } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cannot load file %s: unrecognized extension", filename); 47779566063dSJacob Faibussowitsch PetscCall(PetscStrlen(plexname, &len)); 47789566063dSJacob Faibussowitsch if (len) PetscCall(PetscObjectSetName((PetscObject)(*dm), plexname)); 47799566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(DMPLEX_CreateFromFile,0,0,0,0)); 4780ca522641SMatthew G. Knepley PetscFunctionReturn(0); 4781ca522641SMatthew G. Knepley } 4782