xref: /petsc/src/dm/interface/dm.c (revision ec19662787d04d8a99ffd5988d64fe98d9eccb4d)
1d0295fc0SJunchao Zhang #include <petscvec.h>
2af0996ceSBarry Smith #include <petsc/private/dmimpl.h>      /*I      "petscdm.h"          I*/
3c58f1c22SToby Isaac #include <petsc/private/dmlabelimpl.h> /*I      "petscdmlabel.h"     I*/
4e6f8dbb6SToby Isaac #include <petsc/private/petscdsimpl.h> /*I      "petscds.h"     I*/
53e922f36SToby Isaac #include <petscdmplex.h>
6d2b2dc1eSMatthew G. Knepley #include <petscdmceed.h>
7f19dbd58SToby Isaac #include <petscdmfield.h>
80c312b8eSJed Brown #include <petscsf.h>
92764a2aaSMatthew G. Knepley #include <petscds.h>
1047c6ae99SBarry Smith 
11f918ec44SMatthew G. Knepley #ifdef PETSC_HAVE_LIBCEED
12f918ec44SMatthew G. Knepley   #include <petscfeceed.h>
13f918ec44SMatthew G. Knepley #endif
14f918ec44SMatthew G. Knepley 
15cea3dcb8SSatish Balay #if !defined(PETSC_HAVE_WINDOWS_COMPILERS)
16cea3dcb8SSatish Balay   #include <petsc/private/valgrind/memcheck.h>
1700d952a4SJed Brown #endif
1800d952a4SJed Brown 
19732e2eb9SMatthew G Knepley PetscClassId DM_CLASSID;
20d67d17b1SMatthew G. Knepley PetscClassId DMLABEL_CLASSID;
21708be2fdSJed Brown PetscLogEvent DM_Convert, DM_GlobalToLocal, DM_LocalToGlobal, DM_LocalToLocal, DM_LocatePoints, DM_Coarsen, DM_Refine, DM_CreateInterpolation, DM_CreateRestriction, DM_CreateInjection, DM_CreateMatrix, DM_CreateMassMatrix, DM_Load, DM_AdaptInterpolator, DM_ProjectFunction;
2267a56275SMatthew G Knepley 
23ea78f98cSLisandro Dalcin const char *const DMBoundaryTypes[]          = {"NONE", "GHOSTED", "MIRROR", "PERIODIC", "TWIST", "DMBoundaryType", "DM_BOUNDARY_", NULL};
24d1b3049bSMatthew G. Knepley const char *const DMBoundaryConditionTypes[] = {"INVALID", "ESSENTIAL", "NATURAL", "INVALID", "INVALID", "ESSENTIAL_FIELD", "NATURAL_FIELD", "INVALID", "INVALID", "ESSENTIAL_BD_FIELD", "NATURAL_RIEMANN", "DMBoundaryConditionType", "DM_BC_", NULL};
250e762ea3SJed Brown const char *const DMBlockingTypes[]          = {"TOPOLOGICAL_POINT", "FIELD_NODE", "DMBlockingType", "DM_BLOCKING_", NULL};
26476787b7SMatthew G. Knepley const char *const DMPolytopeTypes[] =
27476787b7SMatthew G. Knepley   {"vertex",  "segment",      "tensor_segment", "triangle", "quadrilateral",  "tensor_quad",  "tetrahedron", "hexahedron", "triangular_prism", "tensor_triangular_prism", "tensor_quadrilateral_prism", "pyramid", "FV_ghost_cell", "interior_ghost_cell",
28476787b7SMatthew G. Knepley    "unknown", "unknown_cell", "unknown_face",   "invalid",  "DMPolytopeType", "DM_POLYTOPE_", NULL};
292cbb9b06SVaclav Hapla const char *const DMCopyLabelsModes[] = {"replace", "keep", "fail", "DMCopyLabelsMode", "DM_COPY_LABELS_", NULL};
3060c22052SBarry Smith 
31a4121054SBarry Smith /*@
32bb7acecfSBarry Smith   DMCreate - Creates an empty `DM` object. `DM`s are the abstract objects in PETSc that mediate between meshes and discretizations and the
33bb7acecfSBarry Smith   algebraic solvers, time integrators, and optimization algorithms.
34a4121054SBarry Smith 
35d083f849SBarry Smith   Collective
36a4121054SBarry Smith 
37a4121054SBarry Smith   Input Parameter:
38bb7acecfSBarry Smith . comm - The communicator for the `DM` object
39a4121054SBarry Smith 
40a4121054SBarry Smith   Output Parameter:
41bb7acecfSBarry Smith . dm - The `DM` object
42a4121054SBarry Smith 
43a4121054SBarry Smith   Level: beginner
44a4121054SBarry Smith 
45bb7acecfSBarry Smith   Notes:
46bb7acecfSBarry Smith   See `DMType` for a brief summary of available `DM`.
47bb7acecfSBarry Smith 
48bb7acecfSBarry Smith   The type must then be set with `DMSetType()`. If you never call `DMSetType()` it will generate an
49bb7acecfSBarry Smith   error when you try to use the dm.
50bb7acecfSBarry Smith 
511cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetType()`, `DMType`, `DMDACreate()`, `DMDA`, `DMSLICED`, `DMCOMPOSITE`, `DMPLEX`, `DMMOAB`, `DMNETWORK`
52a4121054SBarry Smith @*/
53d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreate(MPI_Comm comm, DM *dm)
54d71ae5a4SJacob Faibussowitsch {
55a4121054SBarry Smith   DM      v;
56e5e52638SMatthew G. Knepley   PetscDS ds;
57a4121054SBarry Smith 
58a4121054SBarry Smith   PetscFunctionBegin;
594f572ea9SToby Isaac   PetscAssertPointer(dm, 2);
600298fd71SBarry Smith   *dm = NULL;
619566063dSJacob Faibussowitsch   PetscCall(DMInitializePackage());
62a4121054SBarry Smith 
639566063dSJacob Faibussowitsch   PetscCall(PetscHeaderCreate(v, DM_CLASSID, "DM", "Distribution Manager", "DM", comm, DMDestroy, DMView));
64e7c4fc90SDmitry Karpeev 
6562e5d2d2SJDBetteridge   ((PetscObject)v)->non_cyclic_references = &DMCountNonCyclicReferences;
6662e5d2d2SJDBetteridge 
6749be4549SMatthew G. Knepley   v->setupcalled          = PETSC_FALSE;
6849be4549SMatthew G. Knepley   v->setfromoptionscalled = PETSC_FALSE;
690298fd71SBarry Smith   v->ltogmap              = NULL;
70a4ea9b21SRichard Tran Mills   v->bind_below           = 0;
711411c6eeSJed Brown   v->bs                   = 1;
72171400e9SBarry Smith   v->coloringtype         = IS_COLORING_GLOBAL;
739566063dSJacob Faibussowitsch   PetscCall(PetscSFCreate(comm, &v->sf));
749566063dSJacob Faibussowitsch   PetscCall(PetscSFCreate(comm, &v->sectionSF));
75c58f1c22SToby Isaac   v->labels                    = NULL;
7634aa8a36SMatthew G. Knepley   v->adjacency[0]              = PETSC_FALSE;
7734aa8a36SMatthew G. Knepley   v->adjacency[1]              = PETSC_TRUE;
78c58f1c22SToby Isaac   v->depthLabel                = NULL;
79ba2698f1SMatthew G. Knepley   v->celltypeLabel             = NULL;
801bb6d2a8SBarry Smith   v->localSection              = NULL;
811bb6d2a8SBarry Smith   v->globalSection             = NULL;
823b8ba7d1SJed Brown   v->defaultConstraint.section = NULL;
833b8ba7d1SJed Brown   v->defaultConstraint.mat     = NULL;
8479769bd5SJed Brown   v->defaultConstraint.bias    = NULL;
856858538eSMatthew G. Knepley   v->coordinates[0].dim        = PETSC_DEFAULT;
866858538eSMatthew G. Knepley   v->coordinates[1].dim        = PETSC_DEFAULT;
876858538eSMatthew G. Knepley   v->sparseLocalize            = PETSC_TRUE;
8896173672SStefano Zampini   v->dim                       = PETSC_DETERMINE;
89435a35e8SMatthew G Knepley   {
90435a35e8SMatthew G Knepley     PetscInt i;
91435a35e8SMatthew G Knepley     for (i = 0; i < 10; ++i) {
920298fd71SBarry Smith       v->nullspaceConstructors[i]     = NULL;
93f9d4088aSMatthew G. Knepley       v->nearnullspaceConstructors[i] = NULL;
94435a35e8SMatthew G Knepley     }
95435a35e8SMatthew G Knepley   }
969566063dSJacob Faibussowitsch   PetscCall(PetscDSCreate(PETSC_COMM_SELF, &ds));
9707218a29SMatthew G. Knepley   PetscCall(DMSetRegionDS(v, NULL, NULL, ds, NULL));
989566063dSJacob Faibussowitsch   PetscCall(PetscDSDestroy(&ds));
999566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxCreate(&v->auxData));
10014f150ffSMatthew G. Knepley   v->dmBC              = NULL;
101a8fb8f29SToby Isaac   v->coarseMesh        = NULL;
102f4d763aaSMatthew G. Knepley   v->outputSequenceNum = -1;
103cdb7a50dSMatthew G. Knepley   v->outputSequenceVal = 0.0;
1049566063dSJacob Faibussowitsch   PetscCall(DMSetVecType(v, VECSTANDARD));
1059566063dSJacob Faibussowitsch   PetscCall(DMSetMatType(v, MATAIJ));
1064a7a4c06SLawrence Mitchell 
1071411c6eeSJed Brown   *dm = v;
1083ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
109a4121054SBarry Smith }
110a4121054SBarry Smith 
11138221697SMatthew G. Knepley /*@
112bb7acecfSBarry Smith   DMClone - Creates a `DM` object with the same topology as the original.
11338221697SMatthew G. Knepley 
114d083f849SBarry Smith   Collective
11538221697SMatthew G. Knepley 
11638221697SMatthew G. Knepley   Input Parameter:
117bb7acecfSBarry Smith . dm - The original `DM` object
11838221697SMatthew G. Knepley 
11938221697SMatthew G. Knepley   Output Parameter:
120bb7acecfSBarry Smith . newdm - The new `DM` object
12138221697SMatthew G. Knepley 
12238221697SMatthew G. Knepley   Level: beginner
12338221697SMatthew G. Knepley 
1241cb8cacdSPatrick Sanan   Notes:
125bb7acecfSBarry Smith   For some `DM` implementations this is a shallow clone, the result of which may share (reference counted) information with its parent. For example,
126bb7acecfSBarry Smith   `DMClone()` applied to a `DMPLEX` object will result in a new `DMPLEX` that shares the topology with the original `DMPLEX`. It does not
127bb7acecfSBarry Smith   share the `PetscSection` of the original `DM`.
1281bb6d2a8SBarry Smith 
129bb7acecfSBarry Smith   The clone is considered set up if the original has been set up.
13089706ed2SPatrick Sanan 
131bb7acecfSBarry Smith   Use `DMConvert()` for a general way to create new `DM` from a given `DM`
132bb7acecfSBarry Smith 
13360225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMCreate()`, `DMSetType()`, `DMSetLocalSection()`, `DMSetGlobalSection()`, `DMPLEX`, `DMConvert()`
13438221697SMatthew G. Knepley @*/
135d71ae5a4SJacob Faibussowitsch PetscErrorCode DMClone(DM dm, DM *newdm)
136d71ae5a4SJacob Faibussowitsch {
13738221697SMatthew G. Knepley   PetscSF              sf;
13838221697SMatthew G. Knepley   Vec                  coords;
13938221697SMatthew G. Knepley   void                *ctx;
140*ec196627SMatthew G. Knepley   MatOrderingType      otype;
141*ec196627SMatthew G. Knepley   DMReorderDefaultFlag flg;
1426858538eSMatthew G. Knepley   PetscInt             dim, cdim, i;
14338221697SMatthew G. Knepley 
14438221697SMatthew G. Knepley   PetscFunctionBegin;
14538221697SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1464f572ea9SToby Isaac   PetscAssertPointer(newdm, 2);
1479566063dSJacob Faibussowitsch   PetscCall(DMCreate(PetscObjectComm((PetscObject)dm), newdm));
1489566063dSJacob Faibussowitsch   PetscCall(DMCopyLabels(dm, *newdm, PETSC_COPY_VALUES, PETSC_TRUE, DM_COPY_LABELS_FAIL));
149ddf8437dSMatthew G. Knepley   (*newdm)->leveldown     = dm->leveldown;
150ddf8437dSMatthew G. Knepley   (*newdm)->levelup       = dm->levelup;
151c8a6034eSMark   (*newdm)->prealloc_only = dm->prealloc_only;
152fc214432SJed Brown   (*newdm)->prealloc_skip = dm->prealloc_skip;
1539566063dSJacob Faibussowitsch   PetscCall(PetscFree((*newdm)->vectype));
1549566063dSJacob Faibussowitsch   PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*newdm)->vectype));
1559566063dSJacob Faibussowitsch   PetscCall(PetscFree((*newdm)->mattype));
1569566063dSJacob Faibussowitsch   PetscCall(PetscStrallocpy(dm->mattype, (char **)&(*newdm)->mattype));
1579566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
1589566063dSJacob Faibussowitsch   PetscCall(DMSetDimension(*newdm, dim));
159dbbe0bcdSBarry Smith   PetscTryTypeMethod(dm, clone, newdm);
1603f22bcbcSToby Isaac   (*newdm)->setupcalled = dm->setupcalled;
1619566063dSJacob Faibussowitsch   PetscCall(DMGetPointSF(dm, &sf));
1629566063dSJacob Faibussowitsch   PetscCall(DMSetPointSF(*newdm, sf));
1639566063dSJacob Faibussowitsch   PetscCall(DMGetApplicationContext(dm, &ctx));
1649566063dSJacob Faibussowitsch   PetscCall(DMSetApplicationContext(*newdm, ctx));
165*ec196627SMatthew G. Knepley   PetscCall(DMReorderSectionGetDefault(dm, &flg));
166*ec196627SMatthew G. Knepley   PetscCall(DMReorderSectionSetDefault(*newdm, flg));
167*ec196627SMatthew G. Knepley   PetscCall(DMReorderSectionGetType(dm, &otype));
168*ec196627SMatthew G. Knepley   PetscCall(DMReorderSectionSetType(*newdm, otype));
1696858538eSMatthew G. Knepley   for (i = 0; i < 2; ++i) {
1706858538eSMatthew G. Knepley     if (dm->coordinates[i].dm) {
171be4c1c3eSMatthew G. Knepley       DM           ncdm;
172be4c1c3eSMatthew G. Knepley       PetscSection cs;
1735a0206caSToby Isaac       PetscInt     pEnd = -1, pEndMax = -1;
174be4c1c3eSMatthew G. Knepley 
1756858538eSMatthew G. Knepley       PetscCall(DMGetLocalSection(dm->coordinates[i].dm, &cs));
1769566063dSJacob Faibussowitsch       if (cs) PetscCall(PetscSectionGetChart(cs, NULL, &pEnd));
177712fec58SPierre Jolivet       PetscCall(MPIU_Allreduce(&pEnd, &pEndMax, 1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm)));
1785a0206caSToby Isaac       if (pEndMax >= 0) {
1796858538eSMatthew G. Knepley         PetscCall(DMClone(dm->coordinates[i].dm, &ncdm));
1806858538eSMatthew G. Knepley         PetscCall(DMCopyDisc(dm->coordinates[i].dm, ncdm));
1819566063dSJacob Faibussowitsch         PetscCall(DMSetLocalSection(ncdm, cs));
1826858538eSMatthew G. Knepley         if (i) PetscCall(DMSetCellCoordinateDM(*newdm, ncdm));
1836858538eSMatthew G. Knepley         else PetscCall(DMSetCoordinateDM(*newdm, ncdm));
1849566063dSJacob Faibussowitsch         PetscCall(DMDestroy(&ncdm));
185be4c1c3eSMatthew G. Knepley       }
186be4c1c3eSMatthew G. Knepley     }
1876858538eSMatthew G. Knepley   }
1889566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dm, &cdim));
1899566063dSJacob Faibussowitsch   PetscCall(DMSetCoordinateDim(*newdm, cdim));
1909566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinatesLocal(dm, &coords));
19138221697SMatthew G. Knepley   if (coords) {
1929566063dSJacob Faibussowitsch     PetscCall(DMSetCoordinatesLocal(*newdm, coords));
19338221697SMatthew G. Knepley   } else {
1949566063dSJacob Faibussowitsch     PetscCall(DMGetCoordinates(dm, &coords));
1959566063dSJacob Faibussowitsch     if (coords) PetscCall(DMSetCoordinates(*newdm, coords));
19638221697SMatthew G. Knepley   }
1976858538eSMatthew G. Knepley   PetscCall(DMGetCellCoordinatesLocal(dm, &coords));
1986858538eSMatthew G. Knepley   if (coords) {
1996858538eSMatthew G. Knepley     PetscCall(DMSetCellCoordinatesLocal(*newdm, coords));
2006858538eSMatthew G. Knepley   } else {
2016858538eSMatthew G. Knepley     PetscCall(DMGetCellCoordinates(dm, &coords));
2026858538eSMatthew G. Knepley     if (coords) PetscCall(DMSetCellCoordinates(*newdm, coords));
2036858538eSMatthew G. Knepley   }
20490b157c4SStefano Zampini   {
2054fb89dddSMatthew G. Knepley     const PetscReal *maxCell, *Lstart, *L;
2066858538eSMatthew G. Knepley 
2074fb89dddSMatthew G. Knepley     PetscCall(DMGetPeriodicity(dm, &maxCell, &Lstart, &L));
2084fb89dddSMatthew G. Knepley     PetscCall(DMSetPeriodicity(*newdm, maxCell, Lstart, L));
209c6b900c6SMatthew G. Knepley   }
21034aa8a36SMatthew G. Knepley   {
21134aa8a36SMatthew G. Knepley     PetscBool useCone, useClosure;
21234aa8a36SMatthew G. Knepley 
2139566063dSJacob Faibussowitsch     PetscCall(DMGetAdjacency(dm, PETSC_DEFAULT, &useCone, &useClosure));
2149566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(*newdm, PETSC_DEFAULT, useCone, useClosure));
21534aa8a36SMatthew G. Knepley   }
2163ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
21738221697SMatthew G. Knepley }
21838221697SMatthew G. Knepley 
2199a42bb27SBarry Smith /*@C
220bb7acecfSBarry Smith   DMSetVecType - Sets the type of vector created with `DMCreateLocalVector()` and `DMCreateGlobalVector()`
2219a42bb27SBarry Smith 
22220f4b53cSBarry Smith   Logically Collective
2239a42bb27SBarry Smith 
224147403d9SBarry Smith   Input Parameters:
22532546409SMatthew G. Knepley + dm    - initial distributed array
226bb7acecfSBarry Smith - ctype - the vector type, for example `VECSTANDARD`, `VECCUDA`, or `VECVIENNACL`
2279a42bb27SBarry Smith 
22820f4b53cSBarry Smith   Options Database Key:
229147403d9SBarry Smith . -dm_vec_type ctype - the type of vector to create
2309a42bb27SBarry Smith 
2319a42bb27SBarry Smith   Level: intermediate
2329a42bb27SBarry Smith 
23360225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreate()`, `DMDestroy()`, `DMDAInterpolationType`, `VecType`, `DMGetVecType()`, `DMSetMatType()`, `DMGetMatType()`,
234bb7acecfSBarry Smith           `VECSTANDARD`, `VECCUDA`, `VECVIENNACL`, `DMCreateLocalVector()`, `DMCreateGlobalVector()`
2359a42bb27SBarry Smith @*/
23632546409SMatthew G. Knepley PetscErrorCode DMSetVecType(DM dm, VecType ctype)
237d71ae5a4SJacob Faibussowitsch {
23832546409SMatthew G. Knepley   char *tmp;
23932546409SMatthew G. Knepley 
2409a42bb27SBarry Smith   PetscFunctionBegin;
24132546409SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
24232546409SMatthew G. Knepley   PetscAssertPointer(ctype, 2);
24332546409SMatthew G. Knepley   tmp = (char *)dm->vectype;
24432546409SMatthew G. Knepley   PetscCall(PetscStrallocpy(ctype, (char **)&dm->vectype));
24532546409SMatthew G. Knepley   PetscCall(PetscFree(tmp));
2463ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2479a42bb27SBarry Smith }
2489a42bb27SBarry Smith 
249c0dedaeaSBarry Smith /*@C
250bb7acecfSBarry Smith   DMGetVecType - Gets the type of vector created with `DMCreateLocalVector()` and `DMCreateGlobalVector()`
251c0dedaeaSBarry Smith 
25220f4b53cSBarry Smith   Logically Collective
253c0dedaeaSBarry Smith 
254c0dedaeaSBarry Smith   Input Parameter:
255c0dedaeaSBarry Smith . da - initial distributed array
256c0dedaeaSBarry Smith 
257c0dedaeaSBarry Smith   Output Parameter:
258c0dedaeaSBarry Smith . ctype - the vector type
259c0dedaeaSBarry Smith 
260c0dedaeaSBarry Smith   Level: intermediate
261c0dedaeaSBarry Smith 
26260225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreate()`, `DMDestroy()`, `DMDAInterpolationType`, `VecType`, `DMSetMatType()`, `DMGetMatType()`, `DMSetVecType()`
263c0dedaeaSBarry Smith @*/
264d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetVecType(DM da, VecType *ctype)
265d71ae5a4SJacob Faibussowitsch {
266c0dedaeaSBarry Smith   PetscFunctionBegin;
267c0dedaeaSBarry Smith   PetscValidHeaderSpecific(da, DM_CLASSID, 1);
268c0dedaeaSBarry Smith   *ctype = da->vectype;
2693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
270c0dedaeaSBarry Smith }
271c0dedaeaSBarry Smith 
2725f1ad066SMatthew G Knepley /*@
273bb7acecfSBarry Smith   VecGetDM - Gets the `DM` defining the data layout of the vector
2745f1ad066SMatthew G Knepley 
27520f4b53cSBarry Smith   Not Collective
2765f1ad066SMatthew G Knepley 
2775f1ad066SMatthew G Knepley   Input Parameter:
278bb7acecfSBarry Smith . v - The `Vec`
2795f1ad066SMatthew G Knepley 
2805f1ad066SMatthew G Knepley   Output Parameter:
281bb7acecfSBarry Smith . dm - The `DM`
2825f1ad066SMatthew G Knepley 
2835f1ad066SMatthew G Knepley   Level: intermediate
2845f1ad066SMatthew G Knepley 
285bb7acecfSBarry Smith   Note:
286bb7acecfSBarry Smith   A `Vec` may not have a `DM` associated with it.
287bb7acecfSBarry Smith 
2881cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `VecSetDM()`, `DMGetLocalVector()`, `DMGetGlobalVector()`, `DMSetVecType()`
2895f1ad066SMatthew G Knepley @*/
290d71ae5a4SJacob Faibussowitsch PetscErrorCode VecGetDM(Vec v, DM *dm)
291d71ae5a4SJacob Faibussowitsch {
2925f1ad066SMatthew G Knepley   PetscFunctionBegin;
2935f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 1);
2944f572ea9SToby Isaac   PetscAssertPointer(dm, 2);
2959566063dSJacob Faibussowitsch   PetscCall(PetscObjectQuery((PetscObject)v, "__PETSc_dm", (PetscObject *)dm));
2963ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2975f1ad066SMatthew G Knepley }
2985f1ad066SMatthew G Knepley 
2995f1ad066SMatthew G Knepley /*@
300bb7acecfSBarry Smith   VecSetDM - Sets the `DM` defining the data layout of the vector.
3015f1ad066SMatthew G Knepley 
30220f4b53cSBarry Smith   Not Collective
3035f1ad066SMatthew G Knepley 
3045f1ad066SMatthew G Knepley   Input Parameters:
305bb7acecfSBarry Smith + v  - The `Vec`
306bb7acecfSBarry Smith - dm - The `DM`
3075f1ad066SMatthew G Knepley 
30820f4b53cSBarry Smith   Level: developer
30920f4b53cSBarry Smith 
310bb7acecfSBarry Smith   Note:
311bb7acecfSBarry Smith   This is rarely used, generally one uses `DMGetLocalVector()` or  `DMGetGlobalVector()` to create a vector associated with a given `DM`
312d9805387SMatthew G. Knepley 
313bb7acecfSBarry Smith   This is NOT the same as `DMCreateGlobalVector()` since it does not change the view methods or perform other customization, but merely sets the `DM` member.
314bb7acecfSBarry Smith 
3151cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `VecGetDM()`, `DMGetLocalVector()`, `DMGetGlobalVector()`, `DMSetVecType()`
3165f1ad066SMatthew G Knepley @*/
317d71ae5a4SJacob Faibussowitsch PetscErrorCode VecSetDM(Vec v, DM dm)
318d71ae5a4SJacob Faibussowitsch {
3195f1ad066SMatthew G Knepley   PetscFunctionBegin;
3205f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 1);
321d7f50e27SLisandro Dalcin   if (dm) PetscValidHeaderSpecific(dm, DM_CLASSID, 2);
3229566063dSJacob Faibussowitsch   PetscCall(PetscObjectCompose((PetscObject)v, "__PETSc_dm", (PetscObject)dm));
3233ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3245f1ad066SMatthew G Knepley }
3255f1ad066SMatthew G Knepley 
326521d9a4cSLisandro Dalcin /*@C
327bb7acecfSBarry Smith   DMSetISColoringType - Sets the type of coloring, `IS_COLORING_GLOBAL` or `IS_COLORING_LOCAL` that is created by the `DM`
3288f1509bcSBarry Smith 
32920f4b53cSBarry Smith   Logically Collective
3308f1509bcSBarry Smith 
3318f1509bcSBarry Smith   Input Parameters:
332bb7acecfSBarry Smith + dm    - the `DM` context
3338f1509bcSBarry Smith - ctype - the matrix type
3348f1509bcSBarry Smith 
33520f4b53cSBarry Smith   Options Database Key:
3368f1509bcSBarry Smith . -dm_is_coloring_type - global or local
3378f1509bcSBarry Smith 
3388f1509bcSBarry Smith   Level: intermediate
3398f1509bcSBarry Smith 
3401cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDACreate1d()`, `DMDACreate2d()`, `DMDACreate3d()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatrixPreallocateOnly()`, `MatType`, `DMGetMatType()`,
341bb7acecfSBarry Smith           `DMGetISColoringType()`, `ISColoringType`, `IS_COLORING_GLOBAL`, `IS_COLORING_LOCAL`
3428f1509bcSBarry Smith @*/
343d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetISColoringType(DM dm, ISColoringType ctype)
344d71ae5a4SJacob Faibussowitsch {
3458f1509bcSBarry Smith   PetscFunctionBegin;
3468f1509bcSBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3478f1509bcSBarry Smith   dm->coloringtype = ctype;
3483ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3498f1509bcSBarry Smith }
3508f1509bcSBarry Smith 
3518f1509bcSBarry Smith /*@C
352bb7acecfSBarry Smith   DMGetISColoringType - Gets the type of coloring, `IS_COLORING_GLOBAL` or `IS_COLORING_LOCAL` that is created by the `DM`
353521d9a4cSLisandro Dalcin 
35420f4b53cSBarry Smith   Logically Collective
355521d9a4cSLisandro Dalcin 
356521d9a4cSLisandro Dalcin   Input Parameter:
357bb7acecfSBarry Smith . dm - the `DM` context
3588f1509bcSBarry Smith 
3598f1509bcSBarry Smith   Output Parameter:
3608f1509bcSBarry Smith . ctype - the matrix type
3618f1509bcSBarry Smith 
36220f4b53cSBarry Smith   Options Database Key:
3638f1509bcSBarry Smith . -dm_is_coloring_type - global or local
3648f1509bcSBarry Smith 
3658f1509bcSBarry Smith   Level: intermediate
3668f1509bcSBarry Smith 
3671cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDACreate1d()`, `DMDACreate2d()`, `DMDACreate3d()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatrixPreallocateOnly()`, `MatType`, `DMGetMatType()`,
36842747ad1SJacob Faibussowitsch           `ISColoringType`, `IS_COLORING_GLOBAL`, `IS_COLORING_LOCAL`
3698f1509bcSBarry Smith @*/
370d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetISColoringType(DM dm, ISColoringType *ctype)
371d71ae5a4SJacob Faibussowitsch {
3728f1509bcSBarry Smith   PetscFunctionBegin;
3738f1509bcSBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3748f1509bcSBarry Smith   *ctype = dm->coloringtype;
3753ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3768f1509bcSBarry Smith }
3778f1509bcSBarry Smith 
3788f1509bcSBarry Smith /*@C
379bb7acecfSBarry Smith   DMSetMatType - Sets the type of matrix created with `DMCreateMatrix()`
3808f1509bcSBarry Smith 
38120f4b53cSBarry Smith   Logically Collective
3828f1509bcSBarry Smith 
3838f1509bcSBarry Smith   Input Parameters:
384bb7acecfSBarry Smith + dm    - the `DM` context
385bb7acecfSBarry Smith - ctype - the matrix type, for example `MATMPIAIJ`
386521d9a4cSLisandro Dalcin 
38720f4b53cSBarry Smith   Options Database Key:
388bb7acecfSBarry Smith . -dm_mat_type ctype - the type of the matrix to create, for example mpiaij
389521d9a4cSLisandro Dalcin 
390521d9a4cSLisandro Dalcin   Level: intermediate
391521d9a4cSLisandro Dalcin 
39242747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `MatType`, `DMDACreate1d()`, `DMDACreate2d()`, `DMDACreate3d()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatrixPreallocateOnly()`, `DMGetMatType()`, `DMCreateGlobalVector()`, `DMCreateLocalVector()`
393521d9a4cSLisandro Dalcin @*/
394d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetMatType(DM dm, MatType ctype)
395d71ae5a4SJacob Faibussowitsch {
39632546409SMatthew G. Knepley   char *tmp;
39732546409SMatthew G. Knepley 
398521d9a4cSLisandro Dalcin   PetscFunctionBegin;
399521d9a4cSLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
40032546409SMatthew G. Knepley   PetscAssertPointer(ctype, 2);
40132546409SMatthew G. Knepley   tmp = (char *)dm->mattype;
4029566063dSJacob Faibussowitsch   PetscCall(PetscStrallocpy(ctype, (char **)&dm->mattype));
40332546409SMatthew G. Knepley   PetscCall(PetscFree(tmp));
4043ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
405521d9a4cSLisandro Dalcin }
406521d9a4cSLisandro Dalcin 
407c0dedaeaSBarry Smith /*@C
40820f4b53cSBarry Smith   DMGetMatType - Gets the type of matrix that would be created with `DMCreateMatrix()`
409c0dedaeaSBarry Smith 
41020f4b53cSBarry Smith   Logically Collective
411c0dedaeaSBarry Smith 
412c0dedaeaSBarry Smith   Input Parameter:
413bb7acecfSBarry Smith . dm - the `DM` context
414c0dedaeaSBarry Smith 
415c0dedaeaSBarry Smith   Output Parameter:
416c0dedaeaSBarry Smith . ctype - the matrix type
417c0dedaeaSBarry Smith 
418c0dedaeaSBarry Smith   Level: intermediate
419c0dedaeaSBarry Smith 
42042747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMDACreate1d()`, `DMDACreate2d()`, `DMDACreate3d()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatrixPreallocateOnly()`, `MatType`, `DMSetMatType()`
421c0dedaeaSBarry Smith @*/
422d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetMatType(DM dm, MatType *ctype)
423d71ae5a4SJacob Faibussowitsch {
424c0dedaeaSBarry Smith   PetscFunctionBegin;
425c0dedaeaSBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
426c0dedaeaSBarry Smith   *ctype = dm->mattype;
4273ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
428c0dedaeaSBarry Smith }
429c0dedaeaSBarry Smith 
430c688c046SMatthew G Knepley /*@
431bb7acecfSBarry Smith   MatGetDM - Gets the `DM` defining the data layout of the matrix
432c688c046SMatthew G Knepley 
43320f4b53cSBarry Smith   Not Collective
434c688c046SMatthew G Knepley 
435c688c046SMatthew G Knepley   Input Parameter:
436bb7acecfSBarry Smith . A - The `Mat`
437c688c046SMatthew G Knepley 
438c688c046SMatthew G Knepley   Output Parameter:
439bb7acecfSBarry Smith . dm - The `DM`
440c688c046SMatthew G Knepley 
441c688c046SMatthew G Knepley   Level: intermediate
442c688c046SMatthew G Knepley 
443bb7acecfSBarry Smith   Note:
444bb7acecfSBarry Smith   A matrix may not have a `DM` associated with it
445bb7acecfSBarry Smith 
44660225df5SJacob Faibussowitsch   Developer Notes:
447bb7acecfSBarry Smith   Since the `Mat` class doesn't know about the `DM` class the `DM` object is associated with the `Mat` through a `PetscObjectCompose()` operation
4488f1509bcSBarry Smith 
4491cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `MatSetDM()`, `DMCreateMatrix()`, `DMSetMatType()`
450c688c046SMatthew G Knepley @*/
451d71ae5a4SJacob Faibussowitsch PetscErrorCode MatGetDM(Mat A, DM *dm)
452d71ae5a4SJacob Faibussowitsch {
453c688c046SMatthew G Knepley   PetscFunctionBegin;
454c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
4554f572ea9SToby Isaac   PetscAssertPointer(dm, 2);
4569566063dSJacob Faibussowitsch   PetscCall(PetscObjectQuery((PetscObject)A, "__PETSc_dm", (PetscObject *)dm));
4573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
458c688c046SMatthew G Knepley }
459c688c046SMatthew G Knepley 
460c688c046SMatthew G Knepley /*@
461bb7acecfSBarry Smith   MatSetDM - Sets the `DM` defining the data layout of the matrix
462c688c046SMatthew G Knepley 
46320f4b53cSBarry Smith   Not Collective
464c688c046SMatthew G Knepley 
465c688c046SMatthew G Knepley   Input Parameters:
46620f4b53cSBarry Smith + A  - The `Mat`
46720f4b53cSBarry Smith - dm - The `DM`
468c688c046SMatthew G Knepley 
469bb7acecfSBarry Smith   Level: developer
470c688c046SMatthew G Knepley 
471bb7acecfSBarry Smith   Note:
472bb7acecfSBarry Smith   This is rarely used in practice, rather `DMCreateMatrix()` is used to create a matrix associated with a particular `DM`
473bb7acecfSBarry Smith 
47460225df5SJacob Faibussowitsch   Developer Notes:
475bb7acecfSBarry Smith   Since the `Mat` class doesn't know about the `DM` class the `DM` object is associated with
476bb7acecfSBarry Smith   the `Mat` through a `PetscObjectCompose()` operation
4778f1509bcSBarry Smith 
4781cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `MatGetDM()`, `DMCreateMatrix()`, `DMSetMatType()`
479c688c046SMatthew G Knepley @*/
480d71ae5a4SJacob Faibussowitsch PetscErrorCode MatSetDM(Mat A, DM dm)
481d71ae5a4SJacob Faibussowitsch {
482c688c046SMatthew G Knepley   PetscFunctionBegin;
483c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 1);
4848865f1eaSKarl Rupp   if (dm) PetscValidHeaderSpecific(dm, DM_CLASSID, 2);
4859566063dSJacob Faibussowitsch   PetscCall(PetscObjectCompose((PetscObject)A, "__PETSc_dm", (PetscObject)dm));
4863ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
487c688c046SMatthew G Knepley }
488c688c046SMatthew G Knepley 
4899a42bb27SBarry Smith /*@C
490bb7acecfSBarry Smith   DMSetOptionsPrefix - Sets the prefix prepended to all option names when searching through the options database
4919a42bb27SBarry Smith 
49220f4b53cSBarry Smith   Logically Collective
4939a42bb27SBarry Smith 
494d8d19677SJose E. Roman   Input Parameters:
49560225df5SJacob Faibussowitsch + dm     - the `DM` context
496bb7acecfSBarry Smith - prefix - the prefix to prepend
4979a42bb27SBarry Smith 
49820f4b53cSBarry Smith   Level: advanced
49920f4b53cSBarry Smith 
50020f4b53cSBarry Smith   Note:
5019a42bb27SBarry Smith   A hyphen (-) must NOT be given at the beginning of the prefix name.
5029a42bb27SBarry Smith   The first character of all runtime options is AUTOMATICALLY the hyphen.
5039a42bb27SBarry Smith 
5041cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscObjectSetOptionsPrefix()`, `DMSetFromOptions()`
5059a42bb27SBarry Smith @*/
506d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetOptionsPrefix(DM dm, const char prefix[])
507d71ae5a4SJacob Faibussowitsch {
5089a42bb27SBarry Smith   PetscFunctionBegin;
5099a42bb27SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5109566063dSJacob Faibussowitsch   PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, prefix));
5111baa6e33SBarry Smith   if (dm->sf) PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm->sf, prefix));
5121baa6e33SBarry Smith   if (dm->sectionSF) PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm->sectionSF, prefix));
5133ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5149a42bb27SBarry Smith }
5159a42bb27SBarry Smith 
51631697293SDave May /*@C
517da81f932SPierre Jolivet   DMAppendOptionsPrefix - Appends an additional string to an already existing prefix used for searching for
518bb7acecfSBarry Smith   `DM` options in the options database.
51931697293SDave May 
52020f4b53cSBarry Smith   Logically Collective
52131697293SDave May 
52231697293SDave May   Input Parameters:
523bb7acecfSBarry Smith + dm     - the `DM` context
524bb7acecfSBarry Smith - prefix - the string to append to the current prefix
52531697293SDave May 
52620f4b53cSBarry Smith   Level: advanced
52720f4b53cSBarry Smith 
52820f4b53cSBarry Smith   Note:
529bb7acecfSBarry Smith   If the `DM` does not currently have an options prefix then this value is used alone as the prefix as if `DMSetOptionsPrefix()` had been called.
53031697293SDave May   A hyphen (-) must NOT be given at the beginning of the prefix name.
53131697293SDave May   The first character of all runtime options is AUTOMATICALLY the hyphen.
53231697293SDave May 
5331cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetOptionsPrefix()`, `DMGetOptionsPrefix()`, `PetscObjectAppendOptionsPrefix()`, `DMSetFromOptions()`
53431697293SDave May @*/
535d71ae5a4SJacob Faibussowitsch PetscErrorCode DMAppendOptionsPrefix(DM dm, const char prefix[])
536d71ae5a4SJacob Faibussowitsch {
53731697293SDave May   PetscFunctionBegin;
53831697293SDave May   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5399566063dSJacob Faibussowitsch   PetscCall(PetscObjectAppendOptionsPrefix((PetscObject)dm, prefix));
5403ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
54131697293SDave May }
54231697293SDave May 
54331697293SDave May /*@C
54431697293SDave May   DMGetOptionsPrefix - Gets the prefix used for searching for all
545bb7acecfSBarry Smith   DM options in the options database.
54631697293SDave May 
54731697293SDave May   Not Collective
54831697293SDave May 
5492fe279fdSBarry Smith   Input Parameter:
550bb7acecfSBarry Smith . dm - the `DM` context
55131697293SDave May 
5522fe279fdSBarry Smith   Output Parameter:
55331697293SDave May . prefix - pointer to the prefix string used is returned
55431697293SDave May 
55531697293SDave May   Level: advanced
55631697293SDave May 
55760225df5SJacob Faibussowitsch   Fortran Notes:
55820f4b53cSBarry Smith   Pass in a string 'prefix' of
55920f4b53cSBarry Smith   sufficient length to hold the prefix.
56020f4b53cSBarry Smith 
5611cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetOptionsPrefix()`, `DMAppendOptionsPrefix()`, `DMSetFromOptions()`
56231697293SDave May @*/
563d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetOptionsPrefix(DM dm, const char *prefix[])
564d71ae5a4SJacob Faibussowitsch {
56531697293SDave May   PetscFunctionBegin;
56631697293SDave May   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5679566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetOptionsPrefix((PetscObject)dm, prefix));
5683ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
56931697293SDave May }
57031697293SDave May 
57162e5d2d2SJDBetteridge static PetscErrorCode DMCountNonCyclicReferences_Internal(DM dm, PetscBool recurseCoarse, PetscBool recurseFine, PetscInt *ncrefct)
572d71ae5a4SJacob Faibussowitsch {
5736eb26441SStefano Zampini   PetscInt refct = ((PetscObject)dm)->refct;
57488bdff64SToby Isaac 
57588bdff64SToby Isaac   PetscFunctionBegin;
576aab5bcd8SJed Brown   *ncrefct = 0;
57788bdff64SToby Isaac   if (dm->coarseMesh && dm->coarseMesh->fineMesh == dm) {
57888bdff64SToby Isaac     refct--;
57988bdff64SToby Isaac     if (recurseCoarse) {
58088bdff64SToby Isaac       PetscInt coarseCount;
58188bdff64SToby Isaac 
58262e5d2d2SJDBetteridge       PetscCall(DMCountNonCyclicReferences_Internal(dm->coarseMesh, PETSC_TRUE, PETSC_FALSE, &coarseCount));
58388bdff64SToby Isaac       refct += coarseCount;
58488bdff64SToby Isaac     }
58588bdff64SToby Isaac   }
58688bdff64SToby Isaac   if (dm->fineMesh && dm->fineMesh->coarseMesh == dm) {
58788bdff64SToby Isaac     refct--;
58888bdff64SToby Isaac     if (recurseFine) {
58988bdff64SToby Isaac       PetscInt fineCount;
59088bdff64SToby Isaac 
59162e5d2d2SJDBetteridge       PetscCall(DMCountNonCyclicReferences_Internal(dm->fineMesh, PETSC_FALSE, PETSC_TRUE, &fineCount));
59288bdff64SToby Isaac       refct += fineCount;
59388bdff64SToby Isaac     }
59488bdff64SToby Isaac   }
59588bdff64SToby Isaac   *ncrefct = refct;
5963ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
59788bdff64SToby Isaac }
59888bdff64SToby Isaac 
59962e5d2d2SJDBetteridge /* Generic wrapper for DMCountNonCyclicReferences_Internal() */
60062e5d2d2SJDBetteridge PetscErrorCode DMCountNonCyclicReferences(PetscObject dm, PetscInt *ncrefct)
60162e5d2d2SJDBetteridge {
60262e5d2d2SJDBetteridge   PetscFunctionBegin;
60362e5d2d2SJDBetteridge   PetscCall(DMCountNonCyclicReferences_Internal((DM)dm, PETSC_TRUE, PETSC_TRUE, ncrefct));
6043ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
60562e5d2d2SJDBetteridge }
60662e5d2d2SJDBetteridge 
607d71ae5a4SJacob Faibussowitsch PetscErrorCode DMDestroyLabelLinkList_Internal(DM dm)
608d71ae5a4SJacob Faibussowitsch {
6095d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
610354557abSToby Isaac 
611354557abSToby Isaac   PetscFunctionBegin;
612354557abSToby Isaac   /* destroy the labels */
613354557abSToby Isaac   while (next) {
614354557abSToby Isaac     DMLabelLink tmp = next->next;
615354557abSToby Isaac 
6165d80c0bfSVaclav Hapla     if (next->label == dm->depthLabel) dm->depthLabel = NULL;
617ba2698f1SMatthew G. Knepley     if (next->label == dm->celltypeLabel) dm->celltypeLabel = NULL;
6189566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&next->label));
6199566063dSJacob Faibussowitsch     PetscCall(PetscFree(next));
620354557abSToby Isaac     next = tmp;
621354557abSToby Isaac   }
6225d80c0bfSVaclav Hapla   dm->labels = NULL;
6233ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
624354557abSToby Isaac }
625354557abSToby Isaac 
62666976f2fSJacob Faibussowitsch static PetscErrorCode DMDestroyCoordinates_Private(DMCoordinates *c)
627d71ae5a4SJacob Faibussowitsch {
6286858538eSMatthew G. Knepley   PetscFunctionBegin;
6296858538eSMatthew G. Knepley   c->dim = PETSC_DEFAULT;
6306858538eSMatthew G. Knepley   PetscCall(DMDestroy(&c->dm));
6316858538eSMatthew G. Knepley   PetscCall(VecDestroy(&c->x));
6326858538eSMatthew G. Knepley   PetscCall(VecDestroy(&c->xl));
6336858538eSMatthew G. Knepley   PetscCall(DMFieldDestroy(&c->field));
6343ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6356858538eSMatthew G. Knepley }
6366858538eSMatthew G. Knepley 
6371fb7b255SJunchao Zhang /*@C
638bb7acecfSBarry Smith   DMDestroy - Destroys a `DM`.
63947c6ae99SBarry Smith 
64020f4b53cSBarry Smith   Collective
64147c6ae99SBarry Smith 
64247c6ae99SBarry Smith   Input Parameter:
643bb7acecfSBarry Smith . dm - the `DM` object to destroy
64447c6ae99SBarry Smith 
64547c6ae99SBarry Smith   Level: developer
64647c6ae99SBarry Smith 
6471cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreate()`, `DMType`, `DMSetType()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`
64847c6ae99SBarry Smith @*/
649d71ae5a4SJacob Faibussowitsch PetscErrorCode DMDestroy(DM *dm)
650d71ae5a4SJacob Faibussowitsch {
6516eb26441SStefano Zampini   PetscInt cnt;
65247c6ae99SBarry Smith 
65347c6ae99SBarry Smith   PetscFunctionBegin;
6543ba16761SJacob Faibussowitsch   if (!*dm) PetscFunctionReturn(PETSC_SUCCESS);
6556bf464f9SBarry Smith   PetscValidHeaderSpecific((*dm), DM_CLASSID, 1);
65687e657c6SBarry Smith 
65788bdff64SToby Isaac   /* count all non-cyclic references in the doubly-linked list of coarse<->fine meshes */
65862e5d2d2SJDBetteridge   PetscCall(DMCountNonCyclicReferences_Internal(*dm, PETSC_TRUE, PETSC_TRUE, &cnt));
65988bdff64SToby Isaac   --((PetscObject)(*dm))->refct;
6609371c9d4SSatish Balay   if (--cnt > 0) {
6619371c9d4SSatish Balay     *dm = NULL;
6623ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
6639371c9d4SSatish Balay   }
6643ba16761SJacob Faibussowitsch   if (((PetscObject)(*dm))->refct < 0) PetscFunctionReturn(PETSC_SUCCESS);
6656bf464f9SBarry Smith   ((PetscObject)(*dm))->refct = 0;
6666eb26441SStefano Zampini 
6679566063dSJacob Faibussowitsch   PetscCall(DMClearGlobalVectors(*dm));
6689566063dSJacob Faibussowitsch   PetscCall(DMClearLocalVectors(*dm));
669974ca4ecSStefano Zampini   PetscCall(DMClearNamedGlobalVectors(*dm));
670974ca4ecSStefano Zampini   PetscCall(DMClearNamedLocalVectors(*dm));
6712348bcf4SPeter Brune 
672b17ce1afSJed Brown   /* Destroy the list of hooks */
673c833c3b5SJed Brown   {
674c833c3b5SJed Brown     DMCoarsenHookLink link, next;
675b17ce1afSJed Brown     for (link = (*dm)->coarsenhook; link; link = next) {
676b17ce1afSJed Brown       next = link->next;
6779566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
678b17ce1afSJed Brown     }
6790298fd71SBarry Smith     (*dm)->coarsenhook = NULL;
680c833c3b5SJed Brown   }
681c833c3b5SJed Brown   {
682c833c3b5SJed Brown     DMRefineHookLink link, next;
683c833c3b5SJed Brown     for (link = (*dm)->refinehook; link; link = next) {
684c833c3b5SJed Brown       next = link->next;
6859566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
686c833c3b5SJed Brown     }
6870298fd71SBarry Smith     (*dm)->refinehook = NULL;
688c833c3b5SJed Brown   }
689be081cd6SPeter Brune   {
690be081cd6SPeter Brune     DMSubDomainHookLink link, next;
691be081cd6SPeter Brune     for (link = (*dm)->subdomainhook; link; link = next) {
692be081cd6SPeter Brune       next = link->next;
6939566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
694be081cd6SPeter Brune     }
6950298fd71SBarry Smith     (*dm)->subdomainhook = NULL;
696be081cd6SPeter Brune   }
697baf369e7SPeter Brune   {
698baf369e7SPeter Brune     DMGlobalToLocalHookLink link, next;
699baf369e7SPeter Brune     for (link = (*dm)->gtolhook; link; link = next) {
700baf369e7SPeter Brune       next = link->next;
7019566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
702baf369e7SPeter Brune     }
7030298fd71SBarry Smith     (*dm)->gtolhook = NULL;
704baf369e7SPeter Brune   }
705d4d07f1eSToby Isaac   {
706d4d07f1eSToby Isaac     DMLocalToGlobalHookLink link, next;
707d4d07f1eSToby Isaac     for (link = (*dm)->ltoghook; link; link = next) {
708d4d07f1eSToby Isaac       next = link->next;
7099566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
710d4d07f1eSToby Isaac     }
711d4d07f1eSToby Isaac     (*dm)->ltoghook = NULL;
712d4d07f1eSToby Isaac   }
713aa1993deSMatthew G Knepley   /* Destroy the work arrays */
714aa1993deSMatthew G Knepley   {
715aa1993deSMatthew G Knepley     DMWorkLink link, next;
716936381afSPierre Jolivet     PetscCheck(!(*dm)->workout, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Work array still checked out %p %p", (void *)(*dm)->workout, (void *)(*dm)->workout->mem);
717aa1993deSMatthew G Knepley     for (link = (*dm)->workin; link; link = next) {
718aa1993deSMatthew G Knepley       next = link->next;
7199566063dSJacob Faibussowitsch       PetscCall(PetscFree(link->mem));
7209566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
721aa1993deSMatthew G Knepley     }
7220298fd71SBarry Smith     (*dm)->workin = NULL;
723aa1993deSMatthew G Knepley   }
724c58f1c22SToby Isaac   /* destroy the labels */
7259566063dSJacob Faibussowitsch   PetscCall(DMDestroyLabelLinkList_Internal(*dm));
726f4cdcedcSVaclav Hapla   /* destroy the fields */
7279566063dSJacob Faibussowitsch   PetscCall(DMClearFields(*dm));
728f4cdcedcSVaclav Hapla   /* destroy the boundaries */
729e6f8dbb6SToby Isaac   {
730e6f8dbb6SToby Isaac     DMBoundary next = (*dm)->boundary;
731e6f8dbb6SToby Isaac     while (next) {
732e6f8dbb6SToby Isaac       DMBoundary b = next;
733e6f8dbb6SToby Isaac 
734e6f8dbb6SToby Isaac       next = b->next;
7359566063dSJacob Faibussowitsch       PetscCall(PetscFree(b));
736e6f8dbb6SToby Isaac     }
737e6f8dbb6SToby Isaac   }
738b17ce1afSJed Brown 
7399566063dSJacob Faibussowitsch   PetscCall(PetscObjectDestroy(&(*dm)->dmksp));
7409566063dSJacob Faibussowitsch   PetscCall(PetscObjectDestroy(&(*dm)->dmsnes));
7419566063dSJacob Faibussowitsch   PetscCall(PetscObjectDestroy(&(*dm)->dmts));
74252536dc3SBarry Smith 
74348a46eb9SPierre Jolivet   if ((*dm)->ctx && (*dm)->ctxdestroy) PetscCall((*(*dm)->ctxdestroy)(&(*dm)->ctx));
7449566063dSJacob Faibussowitsch   PetscCall(MatFDColoringDestroy(&(*dm)->fd));
7459566063dSJacob Faibussowitsch   PetscCall(ISLocalToGlobalMappingDestroy(&(*dm)->ltogmap));
7469566063dSJacob Faibussowitsch   PetscCall(PetscFree((*dm)->vectype));
7479566063dSJacob Faibussowitsch   PetscCall(PetscFree((*dm)->mattype));
74888ed4aceSMatthew G Knepley 
7499566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&(*dm)->localSection));
7509566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&(*dm)->globalSection));
751adc21957SMatthew G. Knepley   PetscCall(PetscFree((*dm)->reorderSectionType));
7529566063dSJacob Faibussowitsch   PetscCall(PetscLayoutDestroy(&(*dm)->map));
7539566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&(*dm)->defaultConstraint.section));
7549566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&(*dm)->defaultConstraint.mat));
7559566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&(*dm)->sf));
7569566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&(*dm)->sectionSF));
75748a46eb9SPierre Jolivet   if ((*dm)->sfNatural) PetscCall(PetscSFDestroy(&(*dm)->sfNatural));
7589566063dSJacob Faibussowitsch   PetscCall(PetscObjectDereference((PetscObject)(*dm)->sfMigration));
759e4d5475eSStefano Zampini   PetscCall(DMClearAuxiliaryVec(*dm));
7609566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxDestroy(&(*dm)->auxData));
76148a46eb9SPierre Jolivet   if ((*dm)->coarseMesh && (*dm)->coarseMesh->fineMesh == *dm) PetscCall(DMSetFineDM((*dm)->coarseMesh, NULL));
7626eb26441SStefano Zampini 
7639566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&(*dm)->coarseMesh));
76448a46eb9SPierre Jolivet   if ((*dm)->fineMesh && (*dm)->fineMesh->coarseMesh == *dm) PetscCall(DMSetCoarseDM((*dm)->fineMesh, NULL));
7659566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&(*dm)->fineMesh));
7664fb89dddSMatthew G. Knepley   PetscCall(PetscFree((*dm)->Lstart));
7679566063dSJacob Faibussowitsch   PetscCall(PetscFree((*dm)->L));
7689566063dSJacob Faibussowitsch   PetscCall(PetscFree((*dm)->maxCell));
7696858538eSMatthew G. Knepley   PetscCall(DMDestroyCoordinates_Private(&(*dm)->coordinates[0]));
7706858538eSMatthew G. Knepley   PetscCall(DMDestroyCoordinates_Private(&(*dm)->coordinates[1]));
7719566063dSJacob Faibussowitsch   if ((*dm)->transformDestroy) PetscCall((*(*dm)->transformDestroy)(*dm, (*dm)->transformCtx));
7729566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&(*dm)->transformDM));
7739566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&(*dm)->transform));
7746725e60dSJed Brown   PetscCall(VecScatterDestroy(&(*dm)->periodic.affine_to_local));
7756725e60dSJed Brown   PetscCall(VecDestroy(&(*dm)->periodic.affine));
7766636e97aSMatthew G Knepley 
7779566063dSJacob Faibussowitsch   PetscCall(DMClearDS(*dm));
7789566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&(*dm)->dmBC));
779e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
7809566063dSJacob Faibussowitsch   PetscCall(PetscObjectSAWsViewOff((PetscObject)*dm));
781732e2eb9SMatthew G Knepley 
782213acdd3SPierre Jolivet   PetscTryTypeMethod(*dm, destroy);
7839566063dSJacob Faibussowitsch   PetscCall(DMMonitorCancel(*dm));
784d2b2dc1eSMatthew G. Knepley   PetscCall(DMCeedDestroy(&(*dm)->dmceed));
785f918ec44SMatthew G. Knepley #ifdef PETSC_HAVE_LIBCEED
7869566063dSJacob Faibussowitsch   PetscCallCEED(CeedElemRestrictionDestroy(&(*dm)->ceedERestrict));
7879566063dSJacob Faibussowitsch   PetscCallCEED(CeedDestroy(&(*dm)->ceed));
788f918ec44SMatthew G. Knepley #endif
789435a35e8SMatthew G Knepley   /* We do not destroy (*dm)->data here so that we can reference count backend objects */
7909566063dSJacob Faibussowitsch   PetscCall(PetscHeaderDestroy(dm));
7913ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
79247c6ae99SBarry Smith }
79347c6ae99SBarry Smith 
794d7bf68aeSBarry Smith /*@
795bb7acecfSBarry Smith   DMSetUp - sets up the data structures inside a `DM` object
796d7bf68aeSBarry Smith 
79720f4b53cSBarry Smith   Collective
798d7bf68aeSBarry Smith 
799d7bf68aeSBarry Smith   Input Parameter:
800bb7acecfSBarry Smith . dm - the `DM` object to setup
801d7bf68aeSBarry Smith 
802bb7acecfSBarry Smith   Level: intermediate
803d7bf68aeSBarry Smith 
804bb7acecfSBarry Smith   Note:
805bb7acecfSBarry Smith   This is usually called after various parameter setting operations and `DMSetFromOptions()` are called on the `DM`
806bb7acecfSBarry Smith 
8071cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreate()`, `DMSetType()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`
808d7bf68aeSBarry Smith @*/
809d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetUp(DM dm)
810d71ae5a4SJacob Faibussowitsch {
811d7bf68aeSBarry Smith   PetscFunctionBegin;
812171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8133ba16761SJacob Faibussowitsch   if (dm->setupcalled) PetscFunctionReturn(PETSC_SUCCESS);
814dbbe0bcdSBarry Smith   PetscTryTypeMethod(dm, setup);
8158387afaaSJed Brown   dm->setupcalled = PETSC_TRUE;
8163ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
817d7bf68aeSBarry Smith }
818d7bf68aeSBarry Smith 
819d7bf68aeSBarry Smith /*@
820bb7acecfSBarry Smith   DMSetFromOptions - sets parameters in a `DM` from the options database
821d7bf68aeSBarry Smith 
82220f4b53cSBarry Smith   Collective
823d7bf68aeSBarry Smith 
824d7bf68aeSBarry Smith   Input Parameter:
825bb7acecfSBarry Smith . dm - the `DM` object to set options for
826d7bf68aeSBarry Smith 
82720f4b53cSBarry Smith   Options Database Keys:
828bb7acecfSBarry Smith + -dm_preallocate_only                               - Only preallocate the matrix for `DMCreateMatrix()` and `DMCreateMassMatrix()`, but do not fill it with zeros
829bb7acecfSBarry Smith . -dm_vec_type <type>                                - type of vector to create inside `DM`
830bb7acecfSBarry Smith . -dm_mat_type <type>                                - type of matrix to create inside `DM`
831a4ea9b21SRichard Tran Mills . -dm_is_coloring_type                               - <global or local>
83220f4b53cSBarry Smith . -dm_bind_below <n>                                 - bind (force execution on CPU) for `Vec` and `Mat` objects with local size (number of vector entries or matrix rows) below n; currently only supported for `DMDA`
83320f4b53cSBarry Smith . -dm_plex_filename <str>                            - File containing a mesh
8349318fe57SMatthew G. Knepley . -dm_plex_boundary_filename <str>                   - File containing a mesh boundary
835cd7e8a5eSksagiyam . -dm_plex_name <str>                                - Name of the mesh in the file
8365dca41c3SJed Brown . -dm_plex_shape <shape>                             - The domain shape, such as `BOX`, `SPHERE`, etc.
8379318fe57SMatthew G. Knepley . -dm_plex_cell <ct>                                 - Cell shape
8389318fe57SMatthew G. Knepley . -dm_plex_reference_cell_domain <bool>              - Use a reference cell domain
8399318fe57SMatthew G. Knepley . -dm_plex_dim <dim>                                 - Set the topological dimension
840bb7acecfSBarry Smith . -dm_plex_simplex <bool>                            - `PETSC_TRUE` for simplex elements, `PETSC_FALSE` for tensor elements
841bb7acecfSBarry Smith . -dm_plex_interpolate <bool>                        - `PETSC_TRUE` turns on topological interpolation (creating edges and faces)
8429318fe57SMatthew G. Knepley . -dm_plex_scale <sc>                                - Scale factor for mesh coordinates
843be664eb1SMatthew G. Knepley . -dm_coord_remap <bool>                             - Map coordinates using a function
844be664eb1SMatthew G. Knepley . -dm_coord_map <mapname>                            - Select a builtin coordinate map
845be664eb1SMatthew G. Knepley . -dm_coord_map_params <p0,p1,p2,...>                - Set coordinate mapping parameters
8469318fe57SMatthew G. Knepley . -dm_plex_box_faces <m,n,p>                         - Number of faces along each dimension
8479318fe57SMatthew G. Knepley . -dm_plex_box_lower <x,y,z>                         - Specify lower-left-bottom coordinates for the box
8489318fe57SMatthew G. Knepley . -dm_plex_box_upper <x,y,z>                         - Specify upper-right-top coordinates for the box
849bb7acecfSBarry Smith . -dm_plex_box_bd <bx,by,bz>                         - Specify the `DMBoundaryType` for each direction
8509318fe57SMatthew G. Knepley . -dm_plex_sphere_radius <r>                         - The sphere radius
8519318fe57SMatthew G. Knepley . -dm_plex_ball_radius <r>                           - Radius of the ball
8529318fe57SMatthew G. Knepley . -dm_plex_cylinder_bd <bz>                          - Boundary type in the z direction
8539318fe57SMatthew G. Knepley . -dm_plex_cylinder_num_wedges <n>                   - Number of wedges around the cylinder
854bdf63967SMatthew G. Knepley . -dm_plex_reorder <order>                           - Reorder the mesh using the specified algorithm
8559318fe57SMatthew G. Knepley . -dm_refine_pre <n>                                 - The number of refinements before distribution
8569318fe57SMatthew G. Knepley . -dm_refine_uniform_pre <bool>                      - Flag for uniform refinement before distribution
8579318fe57SMatthew G. Knepley . -dm_refine_volume_limit_pre <v>                    - The maximum cell volume after refinement before distribution
8589318fe57SMatthew G. Knepley . -dm_refine <n>                                     - The number of refinements after distribution
859bdf63967SMatthew G. Knepley . -dm_extrude <l>                                    - Activate extrusion and specify the number of layers to extrude
860d410b0cfSMatthew G. Knepley . -dm_plex_transform_extrude_thickness <t>           - The total thickness of extruded layers
861d410b0cfSMatthew G. Knepley . -dm_plex_transform_extrude_use_tensor <bool>       - Use tensor cells when extruding
862d410b0cfSMatthew G. Knepley . -dm_plex_transform_extrude_symmetric <bool>        - Extrude layers symmetrically about the surface
863d410b0cfSMatthew G. Knepley . -dm_plex_transform_extrude_normal <n0,...,nd>      - Specify the extrusion direction
864d410b0cfSMatthew G. Knepley . -dm_plex_transform_extrude_thicknesses <t0,...,tl> - Specify thickness of each layer
865909dfd52SMatthew G. Knepley . -dm_plex_create_fv_ghost_cells                     - Flag to create finite volume ghost cells on the boundary
866909dfd52SMatthew G. Knepley . -dm_plex_fv_ghost_cells_label <name>               - Label name for ghost cells boundary
8679318fe57SMatthew G. Knepley . -dm_distribute <bool>                              - Flag to redistribute a mesh among processes
8689318fe57SMatthew G. Knepley . -dm_distribute_overlap <n>                         - The size of the overlap halo
8699318fe57SMatthew G. Knepley . -dm_plex_adj_cone <bool>                           - Set adjacency direction
87020f4b53cSBarry Smith . -dm_plex_adj_closure <bool>                        - Set adjacency size
871d2b2dc1eSMatthew G. Knepley . -dm_plex_use_ceed <bool>                           - Use LibCEED as the FEM backend
87220f4b53cSBarry Smith . -dm_plex_check_symmetry                            - Check that the adjacency information in the mesh is symmetric - `DMPlexCheckSymmetry()`
873bb7acecfSBarry Smith . -dm_plex_check_skeleton                            - Check that each cell has the correct number of vertices (only for homogeneous simplex or tensor meshes) - `DMPlexCheckSkeleton()`
874bb7acecfSBarry Smith . -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()`
875bb7acecfSBarry Smith . -dm_plex_check_geometry                            - Check that cells have positive volume - `DMPlexCheckGeometry()`
876bb7acecfSBarry Smith . -dm_plex_check_pointsf                             - Check some necessary conditions for `PointSF` - `DMPlexCheckPointSF()`
877bb7acecfSBarry Smith . -dm_plex_check_interface_cones                     - Check points on inter-partition interfaces have conforming order of cone points - `DMPlexCheckInterfaceCones()`
878384a6580SVaclav Hapla - -dm_plex_check_all                                 - Perform all the checks above
879d7bf68aeSBarry Smith 
88095eb5ee5SVaclav Hapla   Level: intermediate
88195eb5ee5SVaclav Hapla 
8821cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`,
883bb7acecfSBarry Smith          `DMPlexCheckSymmetry()`, `DMPlexCheckSkeleton()`, `DMPlexCheckFaces()`, `DMPlexCheckGeometry()`, `DMPlexCheckPointSF()`, `DMPlexCheckInterfaceCones()`,
88460225df5SJacob Faibussowitsch          `DMSetOptionsPrefix()`, `DMType`, `DMPLEX`, `DMDA`
885d7bf68aeSBarry Smith @*/
886d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetFromOptions(DM dm)
887d71ae5a4SJacob Faibussowitsch {
8887781c08eSBarry Smith   char      typeName[256];
889ca266f36SBarry Smith   PetscBool flg;
890d7bf68aeSBarry Smith 
891d7bf68aeSBarry Smith   PetscFunctionBegin;
892171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
89349be4549SMatthew G. Knepley   dm->setfromoptionscalled = PETSC_TRUE;
8949566063dSJacob Faibussowitsch   if (dm->sf) PetscCall(PetscSFSetFromOptions(dm->sf));
8959566063dSJacob Faibussowitsch   if (dm->sectionSF) PetscCall(PetscSFSetFromOptions(dm->sectionSF));
896dd4c3f67SMatthew G. Knepley   if (dm->coordinates[0].dm) PetscCall(DMSetFromOptions(dm->coordinates[0].dm));
897d0609cedSBarry Smith   PetscObjectOptionsBegin((PetscObject)dm);
8989566063dSJacob Faibussowitsch   PetscCall(PetscOptionsBool("-dm_preallocate_only", "only preallocate matrix, but do not set column indices", "DMSetMatrixPreallocateOnly", dm->prealloc_only, &dm->prealloc_only, NULL));
8999566063dSJacob Faibussowitsch   PetscCall(PetscOptionsFList("-dm_vec_type", "Vector type used for created vectors", "DMSetVecType", VecList, dm->vectype, typeName, 256, &flg));
9001baa6e33SBarry Smith   if (flg) PetscCall(DMSetVecType(dm, typeName));
9019566063dSJacob Faibussowitsch   PetscCall(PetscOptionsFList("-dm_mat_type", "Matrix type used for created matrices", "DMSetMatType", MatList, dm->mattype ? dm->mattype : typeName, typeName, sizeof(typeName), &flg));
9021baa6e33SBarry Smith   if (flg) PetscCall(DMSetMatType(dm, typeName));
903863027abSJed Brown   PetscCall(PetscOptionsEnum("-dm_blocking_type", "Topological point or field node blocking", "DMSetBlockingType", DMBlockingTypes, (PetscEnum)dm->blocking_type, (PetscEnum *)&dm->blocking_type, NULL));
9049566063dSJacob Faibussowitsch   PetscCall(PetscOptionsEnum("-dm_is_coloring_type", "Global or local coloring of Jacobian", "DMSetISColoringType", ISColoringTypes, (PetscEnum)dm->coloringtype, (PetscEnum *)&dm->coloringtype, NULL));
9059566063dSJacob Faibussowitsch   PetscCall(PetscOptionsInt("-dm_bind_below", "Set the size threshold (in entries) below which the Vec is bound to the CPU", "VecBindToCPU", dm->bind_below, &dm->bind_below, &flg));
906dbbe0bcdSBarry Smith   PetscTryTypeMethod(dm, setfromoptions, PetscOptionsObject);
907f9ba7244SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
908dbbe0bcdSBarry Smith   PetscCall(PetscObjectProcessOptionsHandlers((PetscObject)dm, PetscOptionsObject));
909d0609cedSBarry Smith   PetscOptionsEnd();
9103ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
911d7bf68aeSBarry Smith }
912d7bf68aeSBarry Smith 
913fc9bc008SSatish Balay /*@C
914bb7acecfSBarry Smith   DMViewFromOptions - View a `DM` in a particular way based on a request in the options database
915fe2efc57SMark 
91620f4b53cSBarry Smith   Collective
917fe2efc57SMark 
918fe2efc57SMark   Input Parameters:
919bb7acecfSBarry Smith + dm   - the `DM` object
92020f4b53cSBarry Smith . obj  - optional object that provides the prefix for the options database (if `NULL` then the prefix in obj is used)
92160225df5SJacob Faibussowitsch - name - option string that is used to activate viewing
922fe2efc57SMark 
923fe2efc57SMark   Level: intermediate
924bb7acecfSBarry Smith 
925bb7acecfSBarry Smith   Note:
926bb7acecfSBarry Smith   See `PetscObjectViewFromOptions()` for a list of values that can be provided in the options database to determine how the `DM` is viewed
927bb7acecfSBarry Smith 
92860225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMView()`, `PetscObjectViewFromOptions()`, `DMCreate()`
929fe2efc57SMark @*/
930d71ae5a4SJacob Faibussowitsch PetscErrorCode DMViewFromOptions(DM dm, PetscObject obj, const char name[])
931d71ae5a4SJacob Faibussowitsch {
932fe2efc57SMark   PetscFunctionBegin;
933fe2efc57SMark   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9349566063dSJacob Faibussowitsch   PetscCall(PetscObjectViewFromOptions((PetscObject)dm, obj, name));
9353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
936fe2efc57SMark }
937fe2efc57SMark 
938fe2efc57SMark /*@C
939bb7acecfSBarry Smith   DMView - Views a `DM`. Depending on the `PetscViewer` and its `PetscViewerFormat` it may print some ASCII information about the `DM` to the screen or a file or
940bb7acecfSBarry Smith   save the `DM` in a binary file to be loaded later or create a visualization of the `DM`
94147c6ae99SBarry Smith 
94220f4b53cSBarry Smith   Collective
94347c6ae99SBarry Smith 
944d8d19677SJose E. Roman   Input Parameters:
945bb7acecfSBarry Smith + dm - the `DM` object to view
94647c6ae99SBarry Smith - v  - the viewer
94747c6ae99SBarry Smith 
94820f4b53cSBarry Smith   Level: beginner
94920f4b53cSBarry Smith 
950cd7e8a5eSksagiyam   Notes:
951bb7acecfSBarry Smith   Using `PETSCVIEWERHDF5` type with `PETSC_VIEWER_HDF5_PETSC` as the `PetscViewerFormat` one can save multiple `DMPLEX`
952bb7acecfSBarry Smith   meshes in a single HDF5 file. This in turn requires one to name the `DMPLEX` object with `PetscObjectSetName()`
953bb7acecfSBarry Smith   before saving it with `DMView()` and before loading it with `DMLoad()` for identification of the mesh object.
954cd7e8a5eSksagiyam 
9551cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscViewer`, `PetscViewerFormat`, `PetscViewerSetFormat()`, `DMDestroy()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMLoad()`, `PetscObjectSetName()`
95647c6ae99SBarry Smith @*/
957d71ae5a4SJacob Faibussowitsch PetscErrorCode DMView(DM dm, PetscViewer v)
958d71ae5a4SJacob Faibussowitsch {
95932c0f0efSBarry Smith   PetscBool         isbinary;
96076a8abe0SBarry Smith   PetscMPIInt       size;
96176a8abe0SBarry Smith   PetscViewerFormat format;
96247c6ae99SBarry Smith 
96347c6ae99SBarry Smith   PetscFunctionBegin;
964171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
96548a46eb9SPierre Jolivet   if (!v) PetscCall(PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)dm), &v));
966b1b135c8SBarry Smith   PetscValidHeaderSpecific(v, PETSC_VIEWER_CLASSID, 2);
96774903a4fSStefano Zampini   /* Ideally, we would like to have this test on.
96874903a4fSStefano Zampini      However, it currently breaks socket viz via GLVis.
96974903a4fSStefano Zampini      During DMView(parallel_mesh,glvis_viewer), each
97074903a4fSStefano Zampini      process opens a sequential ASCII socket to visualize
97174903a4fSStefano Zampini      the local mesh, and PetscObjectView(dm,local_socket)
97274903a4fSStefano Zampini      is internally called inside VecView_GLVis, incurring
97374903a4fSStefano Zampini      in an error here */
97474903a4fSStefano Zampini   /* PetscCheckSameComm(dm,1,v,2); */
9759566063dSJacob Faibussowitsch   PetscCall(PetscViewerCheckWritable(v));
976b1b135c8SBarry Smith 
9779566063dSJacob Faibussowitsch   PetscCall(PetscViewerGetFormat(v, &format));
9789566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size));
9793ba16761SJacob Faibussowitsch   if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(PETSC_SUCCESS);
9809566063dSJacob Faibussowitsch   PetscCall(PetscObjectPrintClassNamePrefixType((PetscObject)dm, v));
9819566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)v, PETSCVIEWERBINARY, &isbinary));
98232c0f0efSBarry Smith   if (isbinary) {
98355849f57SBarry Smith     PetscInt classid = DM_FILE_CLASSID;
98432c0f0efSBarry Smith     char     type[256];
98532c0f0efSBarry Smith 
9869566063dSJacob Faibussowitsch     PetscCall(PetscViewerBinaryWrite(v, &classid, 1, PETSC_INT));
987c6a7a370SJeremy L Thompson     PetscCall(PetscStrncpy(type, ((PetscObject)dm)->type_name, sizeof(type)));
9889566063dSJacob Faibussowitsch     PetscCall(PetscViewerBinaryWrite(v, type, 256, PETSC_CHAR));
98932c0f0efSBarry Smith   }
990dbbe0bcdSBarry Smith   PetscTryTypeMethod(dm, view, v);
9913ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
99247c6ae99SBarry Smith }
99347c6ae99SBarry Smith 
99447c6ae99SBarry Smith /*@
995bb7acecfSBarry Smith   DMCreateGlobalVector - Creates a global vector from a `DM` object. A global vector is a parallel vector that has no duplicate values shared between MPI ranks,
996bb7acecfSBarry Smith   that is it has no ghost locations.
99747c6ae99SBarry Smith 
99820f4b53cSBarry Smith   Collective
99947c6ae99SBarry Smith 
100047c6ae99SBarry Smith   Input Parameter:
1001bb7acecfSBarry Smith . dm - the `DM` object
100247c6ae99SBarry Smith 
100347c6ae99SBarry Smith   Output Parameter:
100447c6ae99SBarry Smith . vec - the global vector
100547c6ae99SBarry Smith 
1006073dac72SJed Brown   Level: beginner
100747c6ae99SBarry Smith 
10081cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `Vec`, `DMCreateLocalVector()`, `DMGetGlobalVector()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`,
1009bb7acecfSBarry Smith          `DMGlobalToLocalBegin()`, `DMGlobalToLocalEnd()`
101047c6ae99SBarry Smith @*/
1011d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateGlobalVector(DM dm, Vec *vec)
1012d71ae5a4SJacob Faibussowitsch {
101347c6ae99SBarry Smith   PetscFunctionBegin;
1014171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
10154f572ea9SToby Isaac   PetscAssertPointer(vec, 2);
1016dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, createglobalvector, vec);
101776bd3646SJed Brown   if (PetscDefined(USE_DEBUG)) {
1018c6b011d8SStefano Zampini     DM vdm;
1019c6b011d8SStefano Zampini 
10209566063dSJacob Faibussowitsch     PetscCall(VecGetDM(*vec, &vdm));
10217a8be351SBarry Smith     PetscCheck(vdm, PETSC_COMM_SELF, PETSC_ERR_PLIB, "DM type '%s' did not attach the DM to the vector", ((PetscObject)dm)->type_name);
1022c6b011d8SStefano Zampini   }
10233ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
102447c6ae99SBarry Smith }
102547c6ae99SBarry Smith 
102647c6ae99SBarry Smith /*@
1027bb7acecfSBarry Smith   DMCreateLocalVector - Creates a local vector from a `DM` object.
102847c6ae99SBarry Smith 
102947c6ae99SBarry Smith   Not Collective
103047c6ae99SBarry Smith 
103147c6ae99SBarry Smith   Input Parameter:
1032bb7acecfSBarry Smith . dm - the `DM` object
103347c6ae99SBarry Smith 
103447c6ae99SBarry Smith   Output Parameter:
103547c6ae99SBarry Smith . vec - the local vector
103647c6ae99SBarry Smith 
1037073dac72SJed Brown   Level: beginner
103847c6ae99SBarry Smith 
103920f4b53cSBarry Smith   Note:
1040bb7acecfSBarry Smith   A local vector usually has ghost locations that contain values that are owned by different MPI ranks. A global vector has no ghost locations.
1041bb7acecfSBarry Smith 
10421cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `Vec`, `DMCreateGlobalVector()`, `DMGetLocalVector()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`
1043bb7acecfSBarry Smith          `DMGlobalToLocalBegin()`, `DMGlobalToLocalEnd()`
104447c6ae99SBarry Smith @*/
1045d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateLocalVector(DM dm, Vec *vec)
1046d71ae5a4SJacob Faibussowitsch {
104747c6ae99SBarry Smith   PetscFunctionBegin;
1048171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
10494f572ea9SToby Isaac   PetscAssertPointer(vec, 2);
1050dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, createlocalvector, vec);
105176bd3646SJed Brown   if (PetscDefined(USE_DEBUG)) {
1052c6b011d8SStefano Zampini     DM vdm;
1053c6b011d8SStefano Zampini 
10549566063dSJacob Faibussowitsch     PetscCall(VecGetDM(*vec, &vdm));
10557a8be351SBarry Smith     PetscCheck(vdm, PETSC_COMM_SELF, PETSC_ERR_LIB, "DM type '%s' did not attach the DM to the vector", ((PetscObject)dm)->type_name);
1056c6b011d8SStefano Zampini   }
10573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
105847c6ae99SBarry Smith }
105947c6ae99SBarry Smith 
10601411c6eeSJed Brown /*@
1061bb7acecfSBarry Smith   DMGetLocalToGlobalMapping - Accesses the local-to-global mapping in a `DM`.
10621411c6eeSJed Brown 
106320f4b53cSBarry Smith   Collective
10641411c6eeSJed Brown 
10651411c6eeSJed Brown   Input Parameter:
1066bb7acecfSBarry Smith . dm - the `DM` that provides the mapping
10671411c6eeSJed Brown 
10681411c6eeSJed Brown   Output Parameter:
10691411c6eeSJed Brown . ltog - the mapping
10701411c6eeSJed Brown 
1071bb7acecfSBarry Smith   Level: advanced
10721411c6eeSJed Brown 
10731411c6eeSJed Brown   Notes:
1074bb7acecfSBarry Smith   The global to local mapping allows one to set values into the global vector or matrix using `VecSetValuesLocal()` and `MatSetValuesLocal()`
10751411c6eeSJed Brown 
1076bb7acecfSBarry Smith   Vectors obtained with  `DMCreateGlobalVector()` and matrices obtained with `DMCreateMatrix()` already contain the global mapping so you do
1077bb7acecfSBarry Smith   need to use this function with those objects.
1078bb7acecfSBarry Smith 
1079bb7acecfSBarry Smith   This mapping can then be used by `VecSetLocalToGlobalMapping()` or `MatSetLocalToGlobalMapping()`.
1080bb7acecfSBarry Smith 
108160225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreateLocalVector()`, `DMCreateGlobalVector()`, `VecSetLocalToGlobalMapping()`, `MatSetLocalToGlobalMapping()`,
1082bb7acecfSBarry Smith           `DMCreateMatrix()`
10831411c6eeSJed Brown @*/
1084d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLocalToGlobalMapping(DM dm, ISLocalToGlobalMapping *ltog)
1085d71ae5a4SJacob Faibussowitsch {
10860be3e97aSMatthew G. Knepley   PetscInt bs = -1, bsLocal[2], bsMinMax[2];
10871411c6eeSJed Brown 
10881411c6eeSJed Brown   PetscFunctionBegin;
10891411c6eeSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
10904f572ea9SToby Isaac   PetscAssertPointer(ltog, 2);
10911411c6eeSJed Brown   if (!dm->ltogmap) {
109237d0c07bSMatthew G Knepley     PetscSection section, sectionGlobal;
109337d0c07bSMatthew G Knepley 
10949566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &section));
109537d0c07bSMatthew G Knepley     if (section) {
1096a974ec88SMatthew G. Knepley       const PetscInt *cdofs;
109737d0c07bSMatthew G Knepley       PetscInt       *ltog;
1098ccf3bd66SMatthew G. Knepley       PetscInt        pStart, pEnd, n, p, k, l;
109937d0c07bSMatthew G Knepley 
11009566063dSJacob Faibussowitsch       PetscCall(DMGetGlobalSection(dm, &sectionGlobal));
11019566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetChart(section, &pStart, &pEnd));
11029566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetStorageSize(section, &n));
11039566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(n, &ltog)); /* We want the local+overlap size */
110437d0c07bSMatthew G Knepley       for (p = pStart, l = 0; p < pEnd; ++p) {
1105e6befd46SJed Brown         PetscInt bdof, cdof, dof, off, c, cind;
110637d0c07bSMatthew G Knepley 
110737d0c07bSMatthew G Knepley         /* Should probably use constrained dofs */
11089566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetDof(section, p, &dof));
11099566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetConstraintDof(section, p, &cdof));
11109566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetConstraintIndices(section, p, &cdofs));
11119566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetOffset(sectionGlobal, p, &off));
11121a7dc684SMatthew G. Knepley         /* If you have dofs, and constraints, and they are unequal, we set the blocksize to 1 */
11131a7dc684SMatthew G. Knepley         bdof = cdof && (dof - cdof) ? 1 : dof;
1114ad540459SPierre Jolivet         if (dof) bs = bs < 0 ? bdof : PetscGCD(bs, bdof);
11155227eafbSStefano Zampini 
1116e6befd46SJed Brown         for (c = 0, cind = 0; c < dof; ++c, ++l) {
11175227eafbSStefano Zampini           if (cind < cdof && c == cdofs[cind]) {
1118e6befd46SJed Brown             ltog[l] = off < 0 ? off - c : -(off + c + 1);
1119e6befd46SJed Brown             cind++;
1120e6befd46SJed Brown           } else {
11215227eafbSStefano Zampini             ltog[l] = (off < 0 ? -(off + 1) : off) + c - cind;
1122e6befd46SJed Brown           }
112337d0c07bSMatthew G Knepley         }
112437d0c07bSMatthew G Knepley       }
1125bff27382SMatthew G. Knepley       /* Must have same blocksize on all procs (some might have no points) */
11269371c9d4SSatish Balay       bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs;
11279371c9d4SSatish Balay       bsLocal[1] = bs;
11289566063dSJacob Faibussowitsch       PetscCall(PetscGlobalMinMaxInt(PetscObjectComm((PetscObject)dm), bsLocal, bsMinMax));
11299371c9d4SSatish Balay       if (bsMinMax[0] != bsMinMax[1]) {
11309371c9d4SSatish Balay         bs = 1;
11319371c9d4SSatish Balay       } else {
11329371c9d4SSatish Balay         bs = bsMinMax[0];
11339371c9d4SSatish Balay       }
11347591dbb2SMatthew G. Knepley       bs = bs < 0 ? 1 : bs;
11357591dbb2SMatthew G. Knepley       /* Must reduce indices by blocksize */
1136ccf3bd66SMatthew G. Knepley       if (bs > 1) {
1137ca469d19SJed Brown         for (l = 0, k = 0; l < n; l += bs, ++k) {
1138ca469d19SJed Brown           // Integer division of negative values truncates toward zero(!), not toward negative infinity
1139ca469d19SJed Brown           ltog[k] = ltog[l] >= 0 ? ltog[l] / bs : -(-(ltog[l] + 1) / bs + 1);
1140ca469d19SJed Brown         }
1141ccf3bd66SMatthew G. Knepley         n /= bs;
1142ccf3bd66SMatthew G. Knepley       }
11439566063dSJacob Faibussowitsch       PetscCall(ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, n, ltog, PETSC_OWN_POINTER, &dm->ltogmap));
1144dbbe0bcdSBarry Smith     } else PetscUseTypeMethod(dm, getlocaltoglobalmapping);
114537d0c07bSMatthew G Knepley   }
11461411c6eeSJed Brown   *ltog = dm->ltogmap;
11473ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
11481411c6eeSJed Brown }
11491411c6eeSJed Brown 
11501411c6eeSJed Brown /*@
1151bb7acecfSBarry Smith   DMGetBlockSize - Gets the inherent block size associated with a `DM`
11521411c6eeSJed Brown 
11531411c6eeSJed Brown   Not Collective
11541411c6eeSJed Brown 
11551411c6eeSJed Brown   Input Parameter:
1156bb7acecfSBarry Smith . dm - the `DM` with block structure
11571411c6eeSJed Brown 
11581411c6eeSJed Brown   Output Parameter:
11591411c6eeSJed Brown . bs - the block size, 1 implies no exploitable block structure
11601411c6eeSJed Brown 
11611411c6eeSJed Brown   Level: intermediate
11621411c6eeSJed Brown 
1163bb7acecfSBarry Smith   Note:
1164bb7acecfSBarry Smith   This might be the number of degrees of freedom at each grid point for a structured grid.
1165bb7acecfSBarry Smith 
1166bb7acecfSBarry Smith   Complex `DM` that represent multiphysics or staggered grids or mixed-methods do not generally have a single inherent block size, but
1167bb7acecfSBarry Smith   rather different locations in the vectors may have a different block size.
1168bb7acecfSBarry Smith 
11691cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `ISCreateBlock()`, `VecSetBlockSize()`, `MatSetBlockSize()`, `DMGetLocalToGlobalMapping()`
11701411c6eeSJed Brown @*/
1171d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetBlockSize(DM dm, PetscInt *bs)
1172d71ae5a4SJacob Faibussowitsch {
11731411c6eeSJed Brown   PetscFunctionBegin;
11741411c6eeSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
11754f572ea9SToby Isaac   PetscAssertPointer(bs, 2);
11767a8be351SBarry Smith   PetscCheck(dm->bs >= 1, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "DM does not have enough information to provide a block size yet");
11771411c6eeSJed Brown   *bs = dm->bs;
11783ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
11791411c6eeSJed Brown }
11801411c6eeSJed Brown 
118148eeb7c8SBarry Smith /*@C
1182bb7acecfSBarry Smith   DMCreateInterpolation - Gets the interpolation matrix between two `DM` objects. The resulting matrix map degrees of freedom in the vector obtained by
1183bb7acecfSBarry Smith   `DMCreateGlobalVector()` on the coarse `DM` to similar vectors on the fine grid `DM`.
118447c6ae99SBarry Smith 
118520f4b53cSBarry Smith   Collective
118647c6ae99SBarry Smith 
1187d8d19677SJose E. Roman   Input Parameters:
1188bb7acecfSBarry Smith + dmc - the `DM` object
1189bb7acecfSBarry Smith - dmf - the second, finer `DM` object
119047c6ae99SBarry Smith 
1191d8d19677SJose E. Roman   Output Parameters:
119247c6ae99SBarry Smith + mat - the interpolation
1193bb7acecfSBarry Smith - vec - the scaling (optional), see `DMCreateInterpolationScale()`
119447c6ae99SBarry Smith 
119547c6ae99SBarry Smith   Level: developer
119647c6ae99SBarry Smith 
119795452b02SPatrick Sanan   Notes:
1198bb7acecfSBarry Smith   For `DMDA` objects this only works for "uniform refinement", that is the refined mesh was obtained `DMRefine()` or the coarse mesh was obtained by
1199bb7acecfSBarry Smith   DMCoarsen(). The coordinates set into the `DMDA` are completely ignored in computing the interpolation.
1200d52bd9f3SBarry Smith 
1201bb7acecfSBarry Smith   For `DMDA` objects you can use this interpolation (more precisely the interpolation from the `DMGetCoordinateDM()`) to interpolate the mesh coordinate
1202bb7acecfSBarry Smith   vectors EXCEPT in the periodic case where it does not make sense since the coordinate vectors are not periodic.
120385afcc9aSBarry Smith 
12041cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMRefine()`, `DMCoarsen()`, `DMCreateRestriction()`, `DMCreateInterpolationScale()`
120547c6ae99SBarry Smith @*/
1206d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateInterpolation(DM dmc, DM dmf, Mat *mat, Vec *vec)
1207d71ae5a4SJacob Faibussowitsch {
120847c6ae99SBarry Smith   PetscFunctionBegin;
1209a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dmc, DM_CLASSID, 1);
1210a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dmf, DM_CLASSID, 2);
12114f572ea9SToby Isaac   PetscAssertPointer(mat, 3);
12129566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_CreateInterpolation, dmc, dmf, 0, 0));
1213dbbe0bcdSBarry Smith   PetscUseTypeMethod(dmc, createinterpolation, dmf, mat, vec);
12149566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_CreateInterpolation, dmc, dmf, 0, 0));
12153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
121647c6ae99SBarry Smith }
121747c6ae99SBarry Smith 
12183ad4599aSBarry Smith /*@
1219a4e35b19SJacob Faibussowitsch   DMCreateInterpolationScale - Forms L = 1/(R*1) where 1 is the vector of all ones, and R is
1220a4e35b19SJacob Faibussowitsch   the transpose of the interpolation between the `DM`.
12212ed6491fSPatrick Sanan 
12222ed6491fSPatrick Sanan   Input Parameters:
1223bb7acecfSBarry Smith + dac - `DM` that defines a coarse mesh
1224bb7acecfSBarry Smith . daf - `DM` that defines a fine mesh
12252ed6491fSPatrick Sanan - mat - the restriction (or interpolation operator) from fine to coarse
12262ed6491fSPatrick Sanan 
12272ed6491fSPatrick Sanan   Output Parameter:
12282ed6491fSPatrick Sanan . scale - the scaled vector
12292ed6491fSPatrick Sanan 
1230bb7acecfSBarry Smith   Level: advanced
12312ed6491fSPatrick Sanan 
1232a4e35b19SJacob Faibussowitsch   Notes:
1233a4e35b19SJacob Faibussowitsch   xcoarse = diag(L)*R*xfine preserves scale and is thus suitable for state (versus residual)
1234a4e35b19SJacob Faibussowitsch   restriction. In other words xcoarse is the coarse representation of xfine.
1235a4e35b19SJacob Faibussowitsch 
123660225df5SJacob Faibussowitsch   Developer Notes:
1237bb7acecfSBarry Smith   If the fine-scale `DMDA` has the -dm_bind_below option set to true, then `DMCreateInterpolationScale()` calls `MatSetBindingPropagates()`
1238e9c74fd6SRichard Tran Mills   on the restriction/interpolation operator to set the bindingpropagates flag to true.
1239e9c74fd6SRichard Tran Mills 
124060225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `MatRestrict()`, `MatInterpolate()`, `DMCreateInterpolation()`, `DMCreateRestriction()`, `DMCreateGlobalVector()`
12412ed6491fSPatrick Sanan @*/
1242d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateInterpolationScale(DM dac, DM daf, Mat mat, Vec *scale)
1243d71ae5a4SJacob Faibussowitsch {
12442ed6491fSPatrick Sanan   Vec         fine;
12452ed6491fSPatrick Sanan   PetscScalar one = 1.0;
12469704db99SRichard Tran Mills #if defined(PETSC_HAVE_CUDA)
1247e9c74fd6SRichard Tran Mills   PetscBool bindingpropagates, isbound;
12489704db99SRichard Tran Mills #endif
12492ed6491fSPatrick Sanan 
12502ed6491fSPatrick Sanan   PetscFunctionBegin;
12519566063dSJacob Faibussowitsch   PetscCall(DMCreateGlobalVector(daf, &fine));
12529566063dSJacob Faibussowitsch   PetscCall(DMCreateGlobalVector(dac, scale));
12539566063dSJacob Faibussowitsch   PetscCall(VecSet(fine, one));
12549704db99SRichard Tran Mills #if defined(PETSC_HAVE_CUDA)
12559704db99SRichard Tran Mills   /* If the 'fine' Vec is bound to the CPU, it makes sense to bind 'mat' as well.
12569704db99SRichard Tran Mills    * Note that we only do this for the CUDA case, right now, but if we add support for MatMultTranspose() via ViennaCL,
12579704db99SRichard Tran Mills    * we'll need to do it for that case, too.*/
12589566063dSJacob Faibussowitsch   PetscCall(VecGetBindingPropagates(fine, &bindingpropagates));
1259e9c74fd6SRichard Tran Mills   if (bindingpropagates) {
12609566063dSJacob Faibussowitsch     PetscCall(MatSetBindingPropagates(mat, PETSC_TRUE));
12619566063dSJacob Faibussowitsch     PetscCall(VecBoundToCPU(fine, &isbound));
12629566063dSJacob Faibussowitsch     PetscCall(MatBindToCPU(mat, isbound));
126383aa49f4SRichard Tran Mills   }
12649704db99SRichard Tran Mills #endif
12659566063dSJacob Faibussowitsch   PetscCall(MatRestrict(mat, fine, *scale));
12669566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&fine));
12679566063dSJacob Faibussowitsch   PetscCall(VecReciprocal(*scale));
12683ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
12692ed6491fSPatrick Sanan }
12702ed6491fSPatrick Sanan 
12712ed6491fSPatrick Sanan /*@
1272bb7acecfSBarry Smith   DMCreateRestriction - Gets restriction matrix between two `DM` objects. The resulting matrix map degrees of freedom in the vector obtained by
1273bb7acecfSBarry Smith   `DMCreateGlobalVector()` on the fine `DM` to similar vectors on the coarse grid `DM`.
12743ad4599aSBarry Smith 
127520f4b53cSBarry Smith   Collective
12763ad4599aSBarry Smith 
1277d8d19677SJose E. Roman   Input Parameters:
1278bb7acecfSBarry Smith + dmc - the `DM` object
1279bb7acecfSBarry Smith - dmf - the second, finer `DM` object
12803ad4599aSBarry Smith 
12813ad4599aSBarry Smith   Output Parameter:
12823ad4599aSBarry Smith . mat - the restriction
12833ad4599aSBarry Smith 
12843ad4599aSBarry Smith   Level: developer
12853ad4599aSBarry Smith 
1286bb7acecfSBarry Smith   Note:
1287bb7acecfSBarry Smith   This only works for `DMSTAG`. For many situations either the transpose of the operator obtained with `DMCreateInterpolation()` or that
1288bb7acecfSBarry Smith   matrix multiplied by the vector obtained with `DMCreateInterpolationScale()` provides the desired object.
12893ad4599aSBarry Smith 
12901cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRestrict()`, `DMInterpolate()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMRefine()`, `DMCoarsen()`, `DMCreateInterpolation()`
12913ad4599aSBarry Smith @*/
1292d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateRestriction(DM dmc, DM dmf, Mat *mat)
1293d71ae5a4SJacob Faibussowitsch {
12943ad4599aSBarry Smith   PetscFunctionBegin;
1295a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dmc, DM_CLASSID, 1);
1296a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dmf, DM_CLASSID, 2);
12974f572ea9SToby Isaac   PetscAssertPointer(mat, 3);
12989566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_CreateRestriction, dmc, dmf, 0, 0));
1299dbbe0bcdSBarry Smith   PetscUseTypeMethod(dmc, createrestriction, dmf, mat);
13009566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_CreateRestriction, dmc, dmf, 0, 0));
13013ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
13023ad4599aSBarry Smith }
13033ad4599aSBarry Smith 
130447c6ae99SBarry Smith /*@
1305a4e35b19SJacob Faibussowitsch   DMCreateInjection - Gets injection matrix between two `DM` objects.
130647c6ae99SBarry Smith 
130720f4b53cSBarry Smith   Collective
130847c6ae99SBarry Smith 
1309d8d19677SJose E. Roman   Input Parameters:
1310bb7acecfSBarry Smith + dac - the `DM` object
1311bb7acecfSBarry Smith - daf - the second, finer `DM` object
131247c6ae99SBarry Smith 
131347c6ae99SBarry Smith   Output Parameter:
13146dbf9973SLawrence Mitchell . mat - the injection
131547c6ae99SBarry Smith 
131647c6ae99SBarry Smith   Level: developer
131747c6ae99SBarry Smith 
1318a4e35b19SJacob Faibussowitsch   Notes:
1319a4e35b19SJacob Faibussowitsch   This is an operator that applied to a vector obtained with `DMCreateGlobalVector()` on the
1320a4e35b19SJacob Faibussowitsch   fine grid maps the values to a vector on the vector on the coarse `DM` by simply selecting
1321a4e35b19SJacob Faibussowitsch   the values on the coarse grid points. This compares to the operator obtained by
1322a4e35b19SJacob Faibussowitsch   `DMCreateRestriction()` or the transpose of the operator obtained by
1323a4e35b19SJacob Faibussowitsch   `DMCreateInterpolation()` that uses a "local weighted average" of the values around the
1324a4e35b19SJacob Faibussowitsch   coarse grid point as the coarse grid value.
1325a4e35b19SJacob Faibussowitsch 
1326bb7acecfSBarry Smith   For `DMDA` objects this only works for "uniform refinement", that is the refined mesh was obtained `DMRefine()` or the coarse mesh was obtained by
1327bb7acecfSBarry Smith   `DMCoarsen()`. The coordinates set into the `DMDA` are completely ignored in computing the injection.
132885afcc9aSBarry Smith 
13291cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMCreateInterpolation()`,
1330bb7acecfSBarry Smith           `DMCreateRestriction()`, `MatRestrict()`, `MatInterpolate()`
133147c6ae99SBarry Smith @*/
1332d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateInjection(DM dac, DM daf, Mat *mat)
1333d71ae5a4SJacob Faibussowitsch {
133447c6ae99SBarry Smith   PetscFunctionBegin;
1335a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dac, DM_CLASSID, 1);
1336a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(daf, DM_CLASSID, 2);
13374f572ea9SToby Isaac   PetscAssertPointer(mat, 3);
13389566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_CreateInjection, dac, daf, 0, 0));
1339dbbe0bcdSBarry Smith   PetscUseTypeMethod(dac, createinjection, daf, mat);
13409566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_CreateInjection, dac, daf, 0, 0));
13413ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
134247c6ae99SBarry Smith }
134347c6ae99SBarry Smith 
1344b412c318SBarry Smith /*@
1345bb7acecfSBarry Smith   DMCreateMassMatrix - Gets the mass matrix between two `DM` objects, M_ij = \int \phi_i \psi_j where the \phi are Galerkin basis functions for a
1346bb7acecfSBarry Smith   a Galerkin finite element model on the `DM`
1347bd041c0cSMatthew G. Knepley 
134820f4b53cSBarry Smith   Collective
1349bd041c0cSMatthew G. Knepley 
1350d8d19677SJose E. Roman   Input Parameters:
1351bb7acecfSBarry Smith + dmc - the target `DM` object
1352bb7acecfSBarry Smith - dmf - the source `DM` object
1353bd041c0cSMatthew G. Knepley 
1354bd041c0cSMatthew G. Knepley   Output Parameter:
1355b4937a87SMatthew G. Knepley . mat - the mass matrix
1356bd041c0cSMatthew G. Knepley 
1357bd041c0cSMatthew G. Knepley   Level: developer
1358bd041c0cSMatthew G. Knepley 
1359bb7acecfSBarry Smith   Notes:
1360bb7acecfSBarry Smith   For `DMPLEX` the finite element model for the `DM` must have been already provided.
1361bb7acecfSBarry Smith 
136220f4b53cSBarry Smith   if `dmc` is `dmf` then x^t M x is an approximation to the L2 norm of the vector x which is obtained by `DMCreateGlobalVector()`
1363bb7acecfSBarry Smith 
136442747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreateMassMatrixLumped()`, `DMCreateMatrix()`, `DMRefine()`, `DMCoarsen()`, `DMCreateRestriction()`, `DMCreateInterpolation()`, `DMCreateInjection()`
1365bd041c0cSMatthew G. Knepley @*/
1366d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateMassMatrix(DM dmc, DM dmf, Mat *mat)
1367d71ae5a4SJacob Faibussowitsch {
1368bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
1369b4937a87SMatthew G. Knepley   PetscValidHeaderSpecific(dmc, DM_CLASSID, 1);
1370b4937a87SMatthew G. Knepley   PetscValidHeaderSpecific(dmf, DM_CLASSID, 2);
13714f572ea9SToby Isaac   PetscAssertPointer(mat, 3);
13725b8ffe73SMark Adams   PetscCall(PetscLogEventBegin(DM_CreateMassMatrix, 0, 0, 0, 0));
1373dbbe0bcdSBarry Smith   PetscUseTypeMethod(dmc, createmassmatrix, dmf, mat);
13745b8ffe73SMark Adams   PetscCall(PetscLogEventEnd(DM_CreateMassMatrix, 0, 0, 0, 0));
13753ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1376b4937a87SMatthew G. Knepley }
1377b4937a87SMatthew G. Knepley 
1378b4937a87SMatthew G. Knepley /*@
1379bb7acecfSBarry Smith   DMCreateMassMatrixLumped - Gets the lumped mass matrix for a given `DM`
1380b4937a87SMatthew G. Knepley 
138120f4b53cSBarry Smith   Collective
1382b4937a87SMatthew G. Knepley 
1383b4937a87SMatthew G. Knepley   Input Parameter:
1384bb7acecfSBarry Smith . dm - the `DM` object
1385b4937a87SMatthew G. Knepley 
1386b4937a87SMatthew G. Knepley   Output Parameter:
1387bb7acecfSBarry Smith . lm - the lumped mass matrix, which is a diagonal matrix, represented as a vector
1388b4937a87SMatthew G. Knepley 
1389b4937a87SMatthew G. Knepley   Level: developer
1390b4937a87SMatthew G. Knepley 
1391bb7acecfSBarry Smith   Note:
1392bb7acecfSBarry Smith   See `DMCreateMassMatrix()` for how to create the non-lumped version of the mass matrix.
1393bb7acecfSBarry Smith 
139460225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreateMassMatrix()`, `DMCreateMatrix()`, `DMRefine()`, `DMCoarsen()`, `DMCreateRestriction()`, `DMCreateInterpolation()`, `DMCreateInjection()`
1395b4937a87SMatthew G. Knepley @*/
1396d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateMassMatrixLumped(DM dm, Vec *lm)
1397d71ae5a4SJacob Faibussowitsch {
1398b4937a87SMatthew G. Knepley   PetscFunctionBegin;
1399b4937a87SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
14004f572ea9SToby Isaac   PetscAssertPointer(lm, 2);
1401dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, createmassmatrixlumped, lm);
14023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1403bd041c0cSMatthew G. Knepley }
1404bd041c0cSMatthew G. Knepley 
1405bd041c0cSMatthew G. Knepley /*@
1406bb7acecfSBarry Smith   DMCreateColoring - Gets coloring of a graph associated with the `DM`. Often the graph represents the operator matrix associated with the discretization
1407bb7acecfSBarry Smith   of a PDE on the `DM`.
140847c6ae99SBarry Smith 
140920f4b53cSBarry Smith   Collective
141047c6ae99SBarry Smith 
1411d8d19677SJose E. Roman   Input Parameters:
1412bb7acecfSBarry Smith + dm    - the `DM` object
1413bb7acecfSBarry Smith - ctype - `IS_COLORING_LOCAL` or `IS_COLORING_GLOBAL`
141447c6ae99SBarry Smith 
141547c6ae99SBarry Smith   Output Parameter:
141647c6ae99SBarry Smith . coloring - the coloring
141747c6ae99SBarry Smith 
14181bf8429eSBarry Smith   Level: developer
14191bf8429eSBarry Smith 
1420ec5066bdSBarry Smith   Notes:
1421bb7acecfSBarry Smith   Coloring of matrices can also be computed directly from the sparse matrix nonzero structure via the `MatColoring` object or from the mesh from which the
1422bb7acecfSBarry Smith   matrix comes from (what this function provides). In general using the mesh produces a more optimal coloring (fewer colors).
1423ec5066bdSBarry Smith 
1424bb7acecfSBarry Smith   This produces a coloring with the distance of 2, see `MatSetColoringDistance()` which can be used for efficiently computing Jacobians with `MatFDColoringCreate()`
14251bf8429eSBarry Smith   For `DMDA` in three dimensions with periodic boundary conditions the number of grid points in each dimension must be divisible by 2*stencil_width + 1,
14261bf8429eSBarry Smith   otherwise an error will be generated.
1427ec5066bdSBarry Smith 
14281cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `ISColoring`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatType()`, `MatColoring`, `MatFDColoringCreate()`
1429aab9d709SJed Brown @*/
1430d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateColoring(DM dm, ISColoringType ctype, ISColoring *coloring)
1431d71ae5a4SJacob Faibussowitsch {
143247c6ae99SBarry Smith   PetscFunctionBegin;
1433171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
14344f572ea9SToby Isaac   PetscAssertPointer(coloring, 3);
1435dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, getcoloring, ctype, coloring);
14363ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
143747c6ae99SBarry Smith }
143847c6ae99SBarry Smith 
1439b412c318SBarry Smith /*@
1440bb7acecfSBarry Smith   DMCreateMatrix - Gets an empty matrix for a `DM` that is most commonly used to store the Jacobian of a discrete PDE operator.
144147c6ae99SBarry Smith 
144220f4b53cSBarry Smith   Collective
144347c6ae99SBarry Smith 
144447c6ae99SBarry Smith   Input Parameter:
1445bb7acecfSBarry Smith . dm - the `DM` object
144647c6ae99SBarry Smith 
144747c6ae99SBarry Smith   Output Parameter:
144847c6ae99SBarry Smith . mat - the empty Jacobian
144947c6ae99SBarry Smith 
145020f4b53cSBarry Smith   Options Database Key:
1451bb7acecfSBarry Smith . -dm_preallocate_only - Only preallocate the matrix for `DMCreateMatrix()` and `DMCreateMassMatrix()`, but do not fill it with zeros
1452f27dd7c6SMatthew G. Knepley 
145320f4b53cSBarry Smith   Level: beginner
145420f4b53cSBarry Smith 
145595452b02SPatrick Sanan   Notes:
145695452b02SPatrick Sanan   This properly preallocates the number of nonzeros in the sparse matrix so you
145794013140SBarry Smith   do not need to do it yourself.
145894013140SBarry Smith 
145994013140SBarry Smith   By default it also sets the nonzero structure and puts in the zero entries. To prevent setting
1460bb7acecfSBarry Smith   the nonzero pattern call `DMSetMatrixPreallocateOnly()`
146194013140SBarry Smith 
1462bb7acecfSBarry Smith   For `DMDA`, when you call `MatView()` on this matrix it is displayed using the global natural ordering, NOT in the ordering used
146394013140SBarry Smith   internally by PETSc.
146494013140SBarry Smith 
1465bb7acecfSBarry Smith   For `DMDA`, in general it is easiest to use `MatSetValuesStencil()` or `MatSetValuesLocal()` to put values into the matrix because
1466bb7acecfSBarry Smith   `MatSetValues()` requires the indices for the global numbering for the `DMDA` which is complic`ated to compute
146794013140SBarry Smith 
14681cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMSetMatType()`, `DMCreateMassMatrix()`
1469aab9d709SJed Brown @*/
1470d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateMatrix(DM dm, Mat *mat)
1471d71ae5a4SJacob Faibussowitsch {
147247c6ae99SBarry Smith   PetscFunctionBegin;
1473171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
14744f572ea9SToby Isaac   PetscAssertPointer(mat, 2);
14759566063dSJacob Faibussowitsch   PetscCall(MatInitializePackage());
14769566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_CreateMatrix, 0, 0, 0, 0));
1477dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, creatematrix, mat);
147876bd3646SJed Brown   if (PetscDefined(USE_DEBUG)) {
1479c6b011d8SStefano Zampini     DM mdm;
1480c6b011d8SStefano Zampini 
14819566063dSJacob Faibussowitsch     PetscCall(MatGetDM(*mat, &mdm));
14827a8be351SBarry Smith     PetscCheck(mdm, PETSC_COMM_SELF, PETSC_ERR_PLIB, "DM type '%s' did not attach the DM to the matrix", ((PetscObject)dm)->type_name);
1483c6b011d8SStefano Zampini   }
1484e571a35bSMatthew G. Knepley   /* Handle nullspace and near nullspace */
1485e5e52638SMatthew G. Knepley   if (dm->Nf) {
1486e571a35bSMatthew G. Knepley     MatNullSpace nullSpace;
1487649ef022SMatthew Knepley     PetscInt     Nf, f;
1488e571a35bSMatthew G. Knepley 
14899566063dSJacob Faibussowitsch     PetscCall(DMGetNumFields(dm, &Nf));
1490649ef022SMatthew Knepley     for (f = 0; f < Nf; ++f) {
1491649ef022SMatthew Knepley       if (dm->nullspaceConstructors[f]) {
14929566063dSJacob Faibussowitsch         PetscCall((*dm->nullspaceConstructors[f])(dm, f, f, &nullSpace));
14939566063dSJacob Faibussowitsch         PetscCall(MatSetNullSpace(*mat, nullSpace));
14949566063dSJacob Faibussowitsch         PetscCall(MatNullSpaceDestroy(&nullSpace));
1495649ef022SMatthew Knepley         break;
1496e571a35bSMatthew G. Knepley       }
1497649ef022SMatthew Knepley     }
1498649ef022SMatthew Knepley     for (f = 0; f < Nf; ++f) {
1499649ef022SMatthew Knepley       if (dm->nearnullspaceConstructors[f]) {
15009566063dSJacob Faibussowitsch         PetscCall((*dm->nearnullspaceConstructors[f])(dm, f, f, &nullSpace));
15019566063dSJacob Faibussowitsch         PetscCall(MatSetNearNullSpace(*mat, nullSpace));
15029566063dSJacob Faibussowitsch         PetscCall(MatNullSpaceDestroy(&nullSpace));
1503e571a35bSMatthew G. Knepley       }
1504e571a35bSMatthew G. Knepley     }
1505e571a35bSMatthew G. Knepley   }
15069566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_CreateMatrix, 0, 0, 0, 0));
15073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
150847c6ae99SBarry Smith }
150947c6ae99SBarry Smith 
1510732e2eb9SMatthew G Knepley /*@
1511a4e35b19SJacob Faibussowitsch   DMSetMatrixPreallocateSkip - When `DMCreateMatrix()` is called the matrix sizes and
1512a4e35b19SJacob Faibussowitsch   `ISLocalToGlobalMapping` will be properly set, but the data structures to store values in the
1513a4e35b19SJacob Faibussowitsch   matrices will not be preallocated.
1514aa0f6e3cSJed Brown 
151520f4b53cSBarry Smith   Logically Collective
1516aa0f6e3cSJed Brown 
1517aa0f6e3cSJed Brown   Input Parameters:
1518bb7acecfSBarry Smith + dm   - the `DM`
1519bb7acecfSBarry Smith - skip - `PETSC_TRUE` to skip preallocation
1520aa0f6e3cSJed Brown 
1521aa0f6e3cSJed Brown   Level: developer
1522aa0f6e3cSJed Brown 
1523a4e35b19SJacob Faibussowitsch   Notes:
1524a4e35b19SJacob Faibussowitsch   This is most useful to reduce initialization costs when `MatSetPreallocationCOO()` and
1525a4e35b19SJacob Faibussowitsch   `MatSetValuesCOO()` will be used.
1526a4e35b19SJacob Faibussowitsch 
15271cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateMatrix()`, `DMSetMatrixStructureOnly()`, `DMSetMatrixPreallocateOnly()`
1528aa0f6e3cSJed Brown @*/
1529d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetMatrixPreallocateSkip(DM dm, PetscBool skip)
1530d71ae5a4SJacob Faibussowitsch {
1531aa0f6e3cSJed Brown   PetscFunctionBegin;
1532aa0f6e3cSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1533aa0f6e3cSJed Brown   dm->prealloc_skip = skip;
15343ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1535aa0f6e3cSJed Brown }
1536aa0f6e3cSJed Brown 
1537aa0f6e3cSJed Brown /*@
1538bb7acecfSBarry Smith   DMSetMatrixPreallocateOnly - When `DMCreateMatrix()` is called the matrix will be properly
1539732e2eb9SMatthew G Knepley   preallocated but the nonzero structure and zero values will not be set.
1540732e2eb9SMatthew G Knepley 
154120f4b53cSBarry Smith   Logically Collective
1542732e2eb9SMatthew G Knepley 
1543d8d19677SJose E. Roman   Input Parameters:
1544bb7acecfSBarry Smith + dm   - the `DM`
1545bb7acecfSBarry Smith - only - `PETSC_TRUE` if only want preallocation
1546732e2eb9SMatthew G Knepley 
154720f4b53cSBarry Smith   Options Database Key:
1548bb7acecfSBarry Smith . -dm_preallocate_only - Only preallocate the matrix for `DMCreateMatrix()`, `DMCreateMassMatrix()`, but do not fill it with zeros
1549f27dd7c6SMatthew G. Knepley 
155020f4b53cSBarry Smith   Level: developer
155120f4b53cSBarry Smith 
15521cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMSetMatrixStructureOnly()`, `DMSetMatrixPreallocateSkip()`
1553732e2eb9SMatthew G Knepley @*/
1554d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetMatrixPreallocateOnly(DM dm, PetscBool only)
1555d71ae5a4SJacob Faibussowitsch {
1556732e2eb9SMatthew G Knepley   PetscFunctionBegin;
1557732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1558732e2eb9SMatthew G Knepley   dm->prealloc_only = only;
15593ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1560732e2eb9SMatthew G Knepley }
1561732e2eb9SMatthew G Knepley 
1562b06ff27eSHong Zhang /*@
1563bb7acecfSBarry Smith   DMSetMatrixStructureOnly - When `DMCreateMatrix()` is called, the matrix structure will be created
1564bb7acecfSBarry Smith   but the array for numerical values will not be allocated.
1565b06ff27eSHong Zhang 
156620f4b53cSBarry Smith   Logically Collective
1567b06ff27eSHong Zhang 
1568d8d19677SJose E. Roman   Input Parameters:
1569bb7acecfSBarry Smith + dm   - the `DM`
1570da81f932SPierre Jolivet - only - `PETSC_TRUE` if you only want matrix structure
1571b06ff27eSHong Zhang 
1572b06ff27eSHong Zhang   Level: developer
1573bb7acecfSBarry Smith 
15741cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateMatrix()`, `DMSetMatrixPreallocateOnly()`, `DMSetMatrixPreallocateSkip()`
1575b06ff27eSHong Zhang @*/
1576d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetMatrixStructureOnly(DM dm, PetscBool only)
1577d71ae5a4SJacob Faibussowitsch {
1578b06ff27eSHong Zhang   PetscFunctionBegin;
1579b06ff27eSHong Zhang   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1580b06ff27eSHong Zhang   dm->structure_only = only;
15813ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1582b06ff27eSHong Zhang }
1583b06ff27eSHong Zhang 
1584863027abSJed Brown /*@
1585863027abSJed Brown   DMSetBlockingType - set the blocking granularity to be used for variable block size `DMCreateMatrix()` is called
1586863027abSJed Brown 
158720f4b53cSBarry Smith   Logically Collective
1588863027abSJed Brown 
1589863027abSJed Brown   Input Parameters:
1590863027abSJed Brown + dm    - the `DM`
1591863027abSJed Brown - btype - block by topological point or field node
1592863027abSJed Brown 
159320f4b53cSBarry Smith   Options Database Key:
15940e762ea3SJed Brown . -dm_blocking_type [topological_point, field_node] - use topological point blocking or field node blocking
1595863027abSJed Brown 
159620f4b53cSBarry Smith   Level: advanced
159720f4b53cSBarry Smith 
15981cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateMatrix()`, `MatSetVariableBlockSizes()`
1599863027abSJed Brown @*/
1600863027abSJed Brown PetscErrorCode DMSetBlockingType(DM dm, DMBlockingType btype)
1601863027abSJed Brown {
1602863027abSJed Brown   PetscFunctionBegin;
1603863027abSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1604863027abSJed Brown   dm->blocking_type = btype;
16053ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1606863027abSJed Brown }
1607863027abSJed Brown 
1608863027abSJed Brown /*@
1609863027abSJed Brown   DMGetBlockingType - get the blocking granularity to be used for variable block size `DMCreateMatrix()` is called
1610863027abSJed Brown 
1611863027abSJed Brown   Not Collective
1612863027abSJed Brown 
16132fe279fdSBarry Smith   Input Parameter:
1614863027abSJed Brown . dm - the `DM`
1615863027abSJed Brown 
16162fe279fdSBarry Smith   Output Parameter:
1617863027abSJed Brown . btype - block by topological point or field node
1618863027abSJed Brown 
1619863027abSJed Brown   Level: advanced
1620863027abSJed Brown 
16211cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateMatrix()`, `MatSetVariableBlockSizes()`
1622863027abSJed Brown @*/
1623863027abSJed Brown PetscErrorCode DMGetBlockingType(DM dm, DMBlockingType *btype)
1624863027abSJed Brown {
1625863027abSJed Brown   PetscFunctionBegin;
1626863027abSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
16274f572ea9SToby Isaac   PetscAssertPointer(btype, 2);
1628863027abSJed Brown   *btype = dm->blocking_type;
16293ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1630863027abSJed Brown }
1631863027abSJed Brown 
1632a89ea682SMatthew G Knepley /*@C
1633bb7acecfSBarry Smith   DMGetWorkArray - Gets a work array guaranteed to be at least the input size, restore with `DMRestoreWorkArray()`
1634a89ea682SMatthew G Knepley 
1635a89ea682SMatthew G Knepley   Not Collective
1636a89ea682SMatthew G Knepley 
1637a89ea682SMatthew G Knepley   Input Parameters:
1638bb7acecfSBarry Smith + dm    - the `DM` object
1639a5b23f4aSJose E. Roman . count - The minimum size
164020f4b53cSBarry Smith - dtype - MPI data type, often `MPIU_REAL`, `MPIU_SCALAR`, or `MPIU_INT`)
1641a89ea682SMatthew G Knepley 
1642a89ea682SMatthew G Knepley   Output Parameter:
164360225df5SJacob Faibussowitsch . mem - the work array
1644a89ea682SMatthew G Knepley 
1645a89ea682SMatthew G Knepley   Level: developer
1646a89ea682SMatthew G Knepley 
1647bb7acecfSBarry Smith   Note:
1648da81f932SPierre Jolivet   A `DM` may stash the array between instantiations so using this routine may be more efficient than calling `PetscMalloc()`
1649bb7acecfSBarry Smith 
1650bb7acecfSBarry Smith   The array may contain nonzero values
1651bb7acecfSBarry Smith 
16521cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMCreate()`, `DMRestoreWorkArray()`, `PetscMalloc()`
1653a89ea682SMatthew G Knepley @*/
1654d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetWorkArray(DM dm, PetscInt count, MPI_Datatype dtype, void *mem)
1655d71ae5a4SJacob Faibussowitsch {
1656aa1993deSMatthew G Knepley   DMWorkLink  link;
165769291d52SBarry Smith   PetscMPIInt dsize;
1658a89ea682SMatthew G Knepley 
1659a89ea682SMatthew G Knepley   PetscFunctionBegin;
1660a89ea682SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
16614f572ea9SToby Isaac   PetscAssertPointer(mem, 4);
1662442f3b32SStefano Zampini   if (!count) {
1663442f3b32SStefano Zampini     *(void **)mem = NULL;
1664442f3b32SStefano Zampini     PetscFunctionReturn(PETSC_SUCCESS);
1665442f3b32SStefano Zampini   }
1666aa1993deSMatthew G Knepley   if (dm->workin) {
1667aa1993deSMatthew G Knepley     link       = dm->workin;
1668aa1993deSMatthew G Knepley     dm->workin = dm->workin->next;
1669aa1993deSMatthew G Knepley   } else {
16704dfa11a4SJacob Faibussowitsch     PetscCall(PetscNew(&link));
1671a89ea682SMatthew G Knepley   }
1672b77fa653SStefano Zampini   /* Avoid MPI_Type_size for most used datatypes
1673b77fa653SStefano Zampini      Get size directly */
1674b77fa653SStefano Zampini   if (dtype == MPIU_INT) dsize = sizeof(PetscInt);
1675b77fa653SStefano Zampini   else if (dtype == MPIU_REAL) dsize = sizeof(PetscReal);
1676b77fa653SStefano Zampini #if defined(PETSC_USE_64BIT_INDICES)
1677b77fa653SStefano Zampini   else if (dtype == MPI_INT) dsize = sizeof(int);
1678b77fa653SStefano Zampini #endif
1679b77fa653SStefano Zampini #if defined(PETSC_USE_COMPLEX)
1680b77fa653SStefano Zampini   else if (dtype == MPIU_SCALAR) dsize = sizeof(PetscScalar);
1681b77fa653SStefano Zampini #endif
1682b77fa653SStefano Zampini   else PetscCallMPI(MPI_Type_size(dtype, &dsize));
1683b77fa653SStefano Zampini 
16845056fcd2SBarry Smith   if (((size_t)dsize * count) > link->bytes) {
16859566063dSJacob Faibussowitsch     PetscCall(PetscFree(link->mem));
16869566063dSJacob Faibussowitsch     PetscCall(PetscMalloc(dsize * count, &link->mem));
1687854ce69bSBarry Smith     link->bytes = dsize * count;
1688aa1993deSMatthew G Knepley   }
1689aa1993deSMatthew G Knepley   link->next  = dm->workout;
1690aa1993deSMatthew G Knepley   dm->workout = link;
1691cea3dcb8SSatish Balay #if defined(__MEMCHECK_H) && (defined(PLAT_amd64_linux) || defined(PLAT_x86_linux) || defined(PLAT_amd64_darwin))
169200d952a4SJed Brown   VALGRIND_MAKE_MEM_NOACCESS((char *)link->mem + (size_t)dsize * count, link->bytes - (size_t)dsize * count);
169300d952a4SJed Brown   VALGRIND_MAKE_MEM_UNDEFINED(link->mem, (size_t)dsize * count);
169400d952a4SJed Brown #endif
1695aa1993deSMatthew G Knepley   *(void **)mem = link->mem;
16963ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1697a89ea682SMatthew G Knepley }
1698a89ea682SMatthew G Knepley 
1699aa1993deSMatthew G Knepley /*@C
1700bb7acecfSBarry Smith   DMRestoreWorkArray - Restores a work array obtained with `DMCreateWorkArray()`
1701aa1993deSMatthew G Knepley 
1702aa1993deSMatthew G Knepley   Not Collective
1703aa1993deSMatthew G Knepley 
1704aa1993deSMatthew G Knepley   Input Parameters:
1705bb7acecfSBarry Smith + dm    - the `DM` object
1706a5b23f4aSJose E. Roman . count - The minimum size
170720f4b53cSBarry Smith - dtype - MPI data type, often `MPIU_REAL`, `MPIU_SCALAR`, `MPIU_INT`
1708aa1993deSMatthew G Knepley 
1709aa1993deSMatthew G Knepley   Output Parameter:
171060225df5SJacob Faibussowitsch . mem - the work array
1711aa1993deSMatthew G Knepley 
1712aa1993deSMatthew G Knepley   Level: developer
1713aa1993deSMatthew G Knepley 
171460225df5SJacob Faibussowitsch   Developer Notes:
1715bb7acecfSBarry Smith   count and dtype are ignored, they are only needed for `DMGetWorkArray()`
1716147403d9SBarry Smith 
17171cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDestroy()`, `DMCreate()`, `DMGetWorkArray()`
1718aa1993deSMatthew G Knepley @*/
1719d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRestoreWorkArray(DM dm, PetscInt count, MPI_Datatype dtype, void *mem)
1720d71ae5a4SJacob Faibussowitsch {
1721aa1993deSMatthew G Knepley   DMWorkLink *p, link;
1722aa1993deSMatthew G Knepley 
1723aa1993deSMatthew G Knepley   PetscFunctionBegin;
1724aa1993deSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
17254f572ea9SToby Isaac   PetscAssertPointer(mem, 4);
1726a4e35b19SJacob Faibussowitsch   (void)count;
1727a4e35b19SJacob Faibussowitsch   (void)dtype;
1728442f3b32SStefano Zampini   if (!*(void **)mem) PetscFunctionReturn(PETSC_SUCCESS);
1729aa1993deSMatthew G Knepley   for (p = &dm->workout; (link = *p); p = &link->next) {
1730aa1993deSMatthew G Knepley     if (link->mem == *(void **)mem) {
1731aa1993deSMatthew G Knepley       *p            = link->next;
1732aa1993deSMatthew G Knepley       link->next    = dm->workin;
1733aa1993deSMatthew G Knepley       dm->workin    = link;
17340298fd71SBarry Smith       *(void **)mem = NULL;
17353ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
1736aa1993deSMatthew G Knepley     }
1737aa1993deSMatthew G Knepley   }
1738aa1993deSMatthew G Knepley   SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Array was not checked out");
1739aa1993deSMatthew G Knepley }
1740e7c4fc90SDmitry Karpeev 
17418cda7954SMatthew G. Knepley /*@C
1742bb7acecfSBarry Smith   DMSetNullSpaceConstructor - Provide a callback function which constructs the nullspace for a given field, defined with `DMAddField()`, when function spaces
1743bb7acecfSBarry Smith   are joined or split, such as in `DMCreateSubDM()`
17448cda7954SMatthew G. Knepley 
174520f4b53cSBarry Smith   Logically Collective; No Fortran Support
17468cda7954SMatthew G. Knepley 
17478cda7954SMatthew G. Knepley   Input Parameters:
1748bb7acecfSBarry Smith + dm     - The `DM`
17498cda7954SMatthew G. Knepley . field  - The field number for the nullspace
17508cda7954SMatthew G. Knepley - nullsp - A callback to create the nullspace
17518cda7954SMatthew G. Knepley 
175220f4b53cSBarry Smith   Calling sequence of `nullsp`:
1753bb7acecfSBarry Smith + dm        - The present `DM`
1754bb7acecfSBarry Smith . origField - The field number given above, in the original `DM`
1755147403d9SBarry Smith . field     - The field number in dm
1756147403d9SBarry Smith - nullSpace - The nullspace for the given field
17578cda7954SMatthew G. Knepley 
175849762cbcSSatish Balay   Level: intermediate
175949762cbcSSatish Balay 
17601cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetNullSpaceConstructor()`, `DMSetNearNullSpaceConstructor()`, `DMGetNearNullSpaceConstructor()`, `DMCreateSubDM()`, `DMCreateSuperDM()`
1761147403d9SBarry Smith @*/
1762a4e35b19SJacob Faibussowitsch PetscErrorCode DMSetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt origField, PetscInt field, MatNullSpace *nullSpace))
1763d71ae5a4SJacob Faibussowitsch {
1764435a35e8SMatthew G Knepley   PetscFunctionBegin;
1765435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
17667a8be351SBarry Smith   PetscCheck(field < 10, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %" PetscInt_FMT " >= 10 fields", field);
1767435a35e8SMatthew G Knepley   dm->nullspaceConstructors[field] = nullsp;
17683ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1769435a35e8SMatthew G Knepley }
1770435a35e8SMatthew G Knepley 
17718cda7954SMatthew G. Knepley /*@C
1772bb7acecfSBarry Smith   DMGetNullSpaceConstructor - Return the callback function which constructs the nullspace for a given field, defined with `DMAddField()`
17738cda7954SMatthew G. Knepley 
177420f4b53cSBarry Smith   Not Collective; No Fortran Support
17758cda7954SMatthew G. Knepley 
17768cda7954SMatthew G. Knepley   Input Parameters:
1777bb7acecfSBarry Smith + dm    - The `DM`
17788cda7954SMatthew G. Knepley - field - The field number for the nullspace
17798cda7954SMatthew G. Knepley 
17808cda7954SMatthew G. Knepley   Output Parameter:
17818cda7954SMatthew G. Knepley . nullsp - A callback to create the nullspace
17828cda7954SMatthew G. Knepley 
178320f4b53cSBarry Smith   Calling sequence of `nullsp`:
1784147403d9SBarry Smith + dm        - The present DM
1785147403d9SBarry Smith . origField - The field number given above, in the original DM
1786147403d9SBarry Smith . field     - The field number in dm
1787147403d9SBarry Smith - nullSpace - The nullspace for the given field
17888cda7954SMatthew G. Knepley 
178949762cbcSSatish Balay   Level: intermediate
179049762cbcSSatish Balay 
17911cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetField()`, `DMSetNullSpaceConstructor()`, `DMSetNearNullSpaceConstructor()`, `DMGetNearNullSpaceConstructor()`, `DMCreateSubDM()`, `DMCreateSuperDM()`
1792147403d9SBarry Smith @*/
1793a4e35b19SJacob Faibussowitsch PetscErrorCode DMGetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt origField, PetscInt field, MatNullSpace *nullSpace))
1794d71ae5a4SJacob Faibussowitsch {
17950a50eb56SMatthew G. Knepley   PetscFunctionBegin;
17960a50eb56SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
17974f572ea9SToby Isaac   PetscAssertPointer(nullsp, 3);
17987a8be351SBarry Smith   PetscCheck(field < 10, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %" PetscInt_FMT " >= 10 fields", field);
17990a50eb56SMatthew G. Knepley   *nullsp = dm->nullspaceConstructors[field];
18003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
18010a50eb56SMatthew G. Knepley }
18020a50eb56SMatthew G. Knepley 
18038cda7954SMatthew G. Knepley /*@C
1804bb7acecfSBarry Smith   DMSetNearNullSpaceConstructor - Provide a callback function which constructs the near-nullspace for a given field, defined with `DMAddField()`
18058cda7954SMatthew G. Knepley 
180620f4b53cSBarry Smith   Logically Collective; No Fortran Support
18078cda7954SMatthew G. Knepley 
18088cda7954SMatthew G. Knepley   Input Parameters:
1809bb7acecfSBarry Smith + dm     - The `DM`
18108cda7954SMatthew G. Knepley . field  - The field number for the nullspace
18118cda7954SMatthew G. Knepley - nullsp - A callback to create the near-nullspace
18128cda7954SMatthew G. Knepley 
181320f4b53cSBarry Smith   Calling sequence of `nullsp`:
1814bb7acecfSBarry Smith + dm        - The present `DM`
1815bb7acecfSBarry Smith . origField - The field number given above, in the original `DM`
1816147403d9SBarry Smith . field     - The field number in dm
1817147403d9SBarry Smith - nullSpace - The nullspace for the given field
18188cda7954SMatthew G. Knepley 
181949762cbcSSatish Balay   Level: intermediate
182049762cbcSSatish Balay 
18211cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetNearNullSpaceConstructor()`, `DMSetNullSpaceConstructor()`, `DMGetNullSpaceConstructor()`, `DMCreateSubDM()`, `DMCreateSuperDM()`,
1822bb7acecfSBarry Smith           `MatNullSpace`
1823147403d9SBarry Smith @*/
1824a4e35b19SJacob Faibussowitsch PetscErrorCode DMSetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt origField, PetscInt field, MatNullSpace *nullSpace))
1825d71ae5a4SJacob Faibussowitsch {
1826f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1827f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
18287a8be351SBarry Smith   PetscCheck(field < 10, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %" PetscInt_FMT " >= 10 fields", field);
1829f9d4088aSMatthew G. Knepley   dm->nearnullspaceConstructors[field] = nullsp;
18303ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1831f9d4088aSMatthew G. Knepley }
1832f9d4088aSMatthew G. Knepley 
18338cda7954SMatthew G. Knepley /*@C
1834bb7acecfSBarry Smith   DMGetNearNullSpaceConstructor - Return the callback function which constructs the near-nullspace for a given field, defined with `DMAddField()`
18358cda7954SMatthew G. Knepley 
183620f4b53cSBarry Smith   Not Collective; No Fortran Support
18378cda7954SMatthew G. Knepley 
18388cda7954SMatthew G. Knepley   Input Parameters:
1839bb7acecfSBarry Smith + dm    - The `DM`
18408cda7954SMatthew G. Knepley - field - The field number for the nullspace
18418cda7954SMatthew G. Knepley 
18428cda7954SMatthew G. Knepley   Output Parameter:
18438cda7954SMatthew G. Knepley . nullsp - A callback to create the near-nullspace
18448cda7954SMatthew G. Knepley 
184520f4b53cSBarry Smith   Calling sequence of `nullsp`:
1846bb7acecfSBarry Smith + dm        - The present `DM`
1847bb7acecfSBarry Smith . origField - The field number given above, in the original `DM`
1848147403d9SBarry Smith . field     - The field number in dm
1849147403d9SBarry Smith - nullSpace - The nullspace for the given field
18508cda7954SMatthew G. Knepley 
185149762cbcSSatish Balay   Level: intermediate
185249762cbcSSatish Balay 
18531cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetField()`, `DMSetNearNullSpaceConstructor()`, `DMSetNullSpaceConstructor()`, `DMGetNullSpaceConstructor()`, `DMCreateSubDM()`,
1854bb7acecfSBarry Smith           `MatNullSpace`, `DMCreateSuperDM()`
1855147403d9SBarry Smith @*/
1856a4e35b19SJacob Faibussowitsch PetscErrorCode DMGetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt origField, PetscInt field, MatNullSpace *nullSpace))
1857d71ae5a4SJacob Faibussowitsch {
1858f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1859f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
18604f572ea9SToby Isaac   PetscAssertPointer(nullsp, 3);
18617a8be351SBarry Smith   PetscCheck(field < 10, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %" PetscInt_FMT " >= 10 fields", field);
1862f9d4088aSMatthew G. Knepley   *nullsp = dm->nearnullspaceConstructors[field];
18633ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1864f9d4088aSMatthew G. Knepley }
1865f9d4088aSMatthew G. Knepley 
18664f3b5142SJed Brown /*@C
1867bb7acecfSBarry Smith   DMCreateFieldIS - Creates a set of `IS` objects with the global indices of dofs for each field defined with `DMAddField()`
18684d343eeaSMatthew G Knepley 
186920f4b53cSBarry Smith   Not Collective; No Fortran Support
18704d343eeaSMatthew G Knepley 
18714d343eeaSMatthew G Knepley   Input Parameter:
1872bb7acecfSBarry Smith . dm - the `DM` object
18734d343eeaSMatthew G Knepley 
18744d343eeaSMatthew G Knepley   Output Parameters:
187520f4b53cSBarry Smith + numFields  - The number of fields (or `NULL` if not requested)
187620f4b53cSBarry Smith . fieldNames - The number of each field (or `NULL` if not requested)
187720f4b53cSBarry Smith - fields     - The global indices for each field (or `NULL` if not requested)
18784d343eeaSMatthew G Knepley 
18794d343eeaSMatthew G Knepley   Level: intermediate
18804d343eeaSMatthew G Knepley 
1881bb7acecfSBarry Smith   Note:
188221c9b008SJed Brown   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
1883bb7acecfSBarry Smith   `PetscFree()`, every entry of fields should be destroyed with `ISDestroy()`, and both arrays should be freed with
1884bb7acecfSBarry Smith   `PetscFree()`.
188521c9b008SJed Brown 
188660225df5SJacob Faibussowitsch   Developer Notes:
1887bb7acecfSBarry Smith   It is not clear why both this function and `DMCreateFieldDecomposition()` exist. Having two seems redundant and confusing. This function should
1888bb7acecfSBarry Smith   likely be removed.
1889bb7acecfSBarry Smith 
18901cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetField()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`,
1891bb7acecfSBarry Smith           `DMCreateFieldDecomposition()`
18924d343eeaSMatthew G Knepley @*/
1893d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateFieldIS(DM dm, PetscInt *numFields, char ***fieldNames, IS **fields)
1894d71ae5a4SJacob Faibussowitsch {
189537d0c07bSMatthew G Knepley   PetscSection section, sectionGlobal;
18964d343eeaSMatthew G Knepley 
18974d343eeaSMatthew G Knepley   PetscFunctionBegin;
18984d343eeaSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
189969ca1f37SDmitry Karpeev   if (numFields) {
19004f572ea9SToby Isaac     PetscAssertPointer(numFields, 2);
190169ca1f37SDmitry Karpeev     *numFields = 0;
190269ca1f37SDmitry Karpeev   }
190337d0c07bSMatthew G Knepley   if (fieldNames) {
19044f572ea9SToby Isaac     PetscAssertPointer(fieldNames, 3);
19050298fd71SBarry Smith     *fieldNames = NULL;
190669ca1f37SDmitry Karpeev   }
190769ca1f37SDmitry Karpeev   if (fields) {
19084f572ea9SToby Isaac     PetscAssertPointer(fields, 4);
19090298fd71SBarry Smith     *fields = NULL;
191069ca1f37SDmitry Karpeev   }
19119566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &section));
191237d0c07bSMatthew G Knepley   if (section) {
19133a544194SStefano Zampini     PetscInt *fieldSizes, *fieldNc, **fieldIndices;
191437d0c07bSMatthew G Knepley     PetscInt  nF, f, pStart, pEnd, p;
191537d0c07bSMatthew G Knepley 
19169566063dSJacob Faibussowitsch     PetscCall(DMGetGlobalSection(dm, &sectionGlobal));
19179566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetNumFields(section, &nF));
19189566063dSJacob Faibussowitsch     PetscCall(PetscMalloc3(nF, &fieldSizes, nF, &fieldNc, nF, &fieldIndices));
19199566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetChart(sectionGlobal, &pStart, &pEnd));
192037d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
192137d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
19229566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetFieldComponents(section, f, &fieldNc[f]));
192337d0c07bSMatthew G Knepley     }
192437d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
192537d0c07bSMatthew G Knepley       PetscInt gdof;
192637d0c07bSMatthew G Knepley 
19279566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetDof(sectionGlobal, p, &gdof));
192837d0c07bSMatthew G Knepley       if (gdof > 0) {
192937d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
19303a544194SStefano Zampini           PetscInt fdof, fcdof, fpdof;
193137d0c07bSMatthew G Knepley 
19329566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetFieldDof(section, p, f, &fdof));
19339566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetFieldConstraintDof(section, p, f, &fcdof));
19343a544194SStefano Zampini           fpdof = fdof - fcdof;
19353a544194SStefano Zampini           if (fpdof && fpdof != fieldNc[f]) {
19363a544194SStefano Zampini             /* Layout does not admit a pointwise block size */
19373a544194SStefano Zampini             fieldNc[f] = 1;
19383a544194SStefano Zampini           }
19393a544194SStefano Zampini           fieldSizes[f] += fpdof;
194037d0c07bSMatthew G Knepley         }
194137d0c07bSMatthew G Knepley       }
194237d0c07bSMatthew G Knepley     }
194337d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
19449566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(fieldSizes[f], &fieldIndices[f]));
194537d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
194637d0c07bSMatthew G Knepley     }
194737d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
194837d0c07bSMatthew G Knepley       PetscInt gdof, goff;
194937d0c07bSMatthew G Knepley 
19509566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetDof(sectionGlobal, p, &gdof));
195137d0c07bSMatthew G Knepley       if (gdof > 0) {
19529566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetOffset(sectionGlobal, p, &goff));
195337d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
195437d0c07bSMatthew G Knepley           PetscInt fdof, fcdof, fc;
195537d0c07bSMatthew G Knepley 
19569566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetFieldDof(section, p, f, &fdof));
19579566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetFieldConstraintDof(section, p, f, &fcdof));
1958ad540459SPierre Jolivet           for (fc = 0; fc < fdof - fcdof; ++fc, ++fieldSizes[f]) fieldIndices[f][fieldSizes[f]] = goff++;
195937d0c07bSMatthew G Knepley         }
196037d0c07bSMatthew G Knepley       }
196137d0c07bSMatthew G Knepley     }
19628865f1eaSKarl Rupp     if (numFields) *numFields = nF;
196337d0c07bSMatthew G Knepley     if (fieldNames) {
19649566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(nF, fieldNames));
196537d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
196637d0c07bSMatthew G Knepley         const char *fieldName;
196737d0c07bSMatthew G Knepley 
19689566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetFieldName(section, f, &fieldName));
19699566063dSJacob Faibussowitsch         PetscCall(PetscStrallocpy(fieldName, (char **)&(*fieldNames)[f]));
197037d0c07bSMatthew G Knepley       }
197137d0c07bSMatthew G Knepley     }
197237d0c07bSMatthew G Knepley     if (fields) {
19739566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(nF, fields));
197437d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
19753a544194SStefano Zampini         PetscInt bs, in[2], out[2];
19763a544194SStefano Zampini 
19779566063dSJacob Faibussowitsch         PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)dm), fieldSizes[f], fieldIndices[f], PETSC_OWN_POINTER, &(*fields)[f]));
19783a544194SStefano Zampini         in[0] = -fieldNc[f];
19793a544194SStefano Zampini         in[1] = fieldNc[f];
19801c2dc1cbSBarry Smith         PetscCall(MPIU_Allreduce(in, out, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm)));
19813a544194SStefano Zampini         bs = (-out[0] == out[1]) ? out[1] : 1;
19829566063dSJacob Faibussowitsch         PetscCall(ISSetBlockSize((*fields)[f], bs));
198337d0c07bSMatthew G Knepley       }
198437d0c07bSMatthew G Knepley     }
19859566063dSJacob Faibussowitsch     PetscCall(PetscFree3(fieldSizes, fieldNc, fieldIndices));
1986dbbe0bcdSBarry Smith   } else PetscTryTypeMethod(dm, createfieldis, numFields, fieldNames, fields);
19873ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
19884d343eeaSMatthew G Knepley }
19894d343eeaSMatthew G Knepley 
199016621825SDmitry Karpeev /*@C
1991bb7acecfSBarry Smith   DMCreateFieldDecomposition - Returns a list of `IS` objects defining a decomposition of a problem into subproblems
1992a4e35b19SJacob Faibussowitsch   corresponding to different fields.
1993e7c4fc90SDmitry Karpeev 
199420f4b53cSBarry Smith   Not Collective; No Fortran Support
1995e7c4fc90SDmitry Karpeev 
1996e7c4fc90SDmitry Karpeev   Input Parameter:
1997bb7acecfSBarry Smith . dm - the `DM` object
1998e7c4fc90SDmitry Karpeev 
1999e7c4fc90SDmitry Karpeev   Output Parameters:
200020f4b53cSBarry Smith + len      - The number of fields (or `NULL` if not requested)
200120f4b53cSBarry Smith . namelist - The name for each field (or `NULL` if not requested)
200220f4b53cSBarry Smith . islist   - The global indices for each field (or `NULL` if not requested)
200320f4b53cSBarry Smith - dmlist   - The `DM`s for each field subproblem (or `NULL`, if not requested; if `NULL` is returned, no `DM`s are defined)
2004e7c4fc90SDmitry Karpeev 
2005e7c4fc90SDmitry Karpeev   Level: intermediate
2006e7c4fc90SDmitry Karpeev 
2007a4e35b19SJacob Faibussowitsch   Notes:
2008a4e35b19SJacob Faibussowitsch   Each `IS` contains the global indices of the dofs of the corresponding field, defined by
2009a4e35b19SJacob Faibussowitsch   `DMAddField()`. The optional list of `DM`s define the `DM` for each subproblem.
2010a4e35b19SJacob Faibussowitsch 
2011a4e35b19SJacob Faibussowitsch   The same as `DMCreateFieldIS()` but also returns a `DM` for each field.
2012a4e35b19SJacob Faibussowitsch 
2013e7c4fc90SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
2014bb7acecfSBarry Smith   `PetscFree()`, every entry of is should be destroyed with `ISDestroy()`, every entry of dm should be destroyed with `DMDestroy()`,
2015bb7acecfSBarry Smith   and all of the arrays should be freed with `PetscFree()`.
2016e7c4fc90SDmitry Karpeev 
201760225df5SJacob Faibussowitsch   Developer Notes:
2018bb7acecfSBarry Smith   It is not clear why this function and `DMCreateFieldIS()` exist. Having two seems redundant and confusing.
2019bb7acecfSBarry Smith 
202060225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMCreateFieldIS()`, `DMCreateSubDM()`, `DMCreateDomainDecomposition()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`
2021e7c4fc90SDmitry Karpeev @*/
2022d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateFieldDecomposition(DM dm, PetscInt *len, char ***namelist, IS **islist, DM **dmlist)
2023d71ae5a4SJacob Faibussowitsch {
2024e7c4fc90SDmitry Karpeev   PetscFunctionBegin;
2025e7c4fc90SDmitry Karpeev   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
20268865f1eaSKarl Rupp   if (len) {
20274f572ea9SToby Isaac     PetscAssertPointer(len, 2);
20288865f1eaSKarl Rupp     *len = 0;
20298865f1eaSKarl Rupp   }
20308865f1eaSKarl Rupp   if (namelist) {
20314f572ea9SToby Isaac     PetscAssertPointer(namelist, 3);
2032ea78f98cSLisandro Dalcin     *namelist = NULL;
20338865f1eaSKarl Rupp   }
20348865f1eaSKarl Rupp   if (islist) {
20354f572ea9SToby Isaac     PetscAssertPointer(islist, 4);
2036ea78f98cSLisandro Dalcin     *islist = NULL;
20378865f1eaSKarl Rupp   }
20388865f1eaSKarl Rupp   if (dmlist) {
20394f572ea9SToby Isaac     PetscAssertPointer(dmlist, 5);
2040ea78f98cSLisandro Dalcin     *dmlist = NULL;
20418865f1eaSKarl Rupp   }
2042f3f0edfdSDmitry Karpeev   /*
2043f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
2044f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
2045f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
2046f3f0edfdSDmitry Karpeev    */
20477a8be351SBarry Smith   PetscCheck(dm->setupcalled, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
204816621825SDmitry Karpeev   if (!dm->ops->createfielddecomposition) {
2049435a35e8SMatthew G Knepley     PetscSection section;
2050435a35e8SMatthew G Knepley     PetscInt     numFields, f;
2051435a35e8SMatthew G Knepley 
20529566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &section));
20539566063dSJacob Faibussowitsch     if (section) PetscCall(PetscSectionGetNumFields(section, &numFields));
2054435a35e8SMatthew G Knepley     if (section && numFields && dm->ops->createsubdm) {
2055f25d98f1SMatthew G. Knepley       if (len) *len = numFields;
20569566063dSJacob Faibussowitsch       if (namelist) PetscCall(PetscMalloc1(numFields, namelist));
20579566063dSJacob Faibussowitsch       if (islist) PetscCall(PetscMalloc1(numFields, islist));
20589566063dSJacob Faibussowitsch       if (dmlist) PetscCall(PetscMalloc1(numFields, dmlist));
2059435a35e8SMatthew G Knepley       for (f = 0; f < numFields; ++f) {
2060435a35e8SMatthew G Knepley         const char *fieldName;
2061435a35e8SMatthew G Knepley 
20629566063dSJacob Faibussowitsch         PetscCall(DMCreateSubDM(dm, 1, &f, islist ? &(*islist)[f] : NULL, dmlist ? &(*dmlist)[f] : NULL));
206303dc3394SMatthew G. Knepley         if (namelist) {
20649566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetFieldName(section, f, &fieldName));
20659566063dSJacob Faibussowitsch           PetscCall(PetscStrallocpy(fieldName, (char **)&(*namelist)[f]));
2066435a35e8SMatthew G Knepley         }
206703dc3394SMatthew G. Knepley       }
2068435a35e8SMatthew G Knepley     } else {
20699566063dSJacob Faibussowitsch       PetscCall(DMCreateFieldIS(dm, len, namelist, islist));
2070e7c4fc90SDmitry Karpeev       /* By default there are no DMs associated with subproblems. */
20710298fd71SBarry Smith       if (dmlist) *dmlist = NULL;
2072e7c4fc90SDmitry Karpeev     }
2073dbbe0bcdSBarry Smith   } else PetscUseTypeMethod(dm, createfielddecomposition, len, namelist, islist, dmlist);
20743ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
207516621825SDmitry Karpeev }
207616621825SDmitry Karpeev 
2077412a4547SAlexis Marboeuf /*@C
207820f4b53cSBarry Smith   DMCreateSubDM - Returns an `IS` and `DM` encapsulating a subproblem defined by the fields passed in.
207920f4b53cSBarry Smith   The fields are defined by `DMCreateFieldIS()`.
2080435a35e8SMatthew G Knepley 
2081435a35e8SMatthew G Knepley   Not collective
2082435a35e8SMatthew G Knepley 
2083435a35e8SMatthew G Knepley   Input Parameters:
2084bb7acecfSBarry Smith + dm        - The `DM` object
2085bb7acecfSBarry Smith . numFields - The number of fields to select
20862adcc780SMatthew G. Knepley - fields    - The field numbers of the selected fields
2087435a35e8SMatthew G Knepley 
2088435a35e8SMatthew G Knepley   Output Parameters:
2089bb7acecfSBarry Smith + is    - The global indices for all the degrees of freedom in the new sub `DM`
2090bb7acecfSBarry Smith - subdm - The `DM` for the subproblem
2091435a35e8SMatthew G Knepley 
209220f4b53cSBarry Smith   Level: intermediate
209320f4b53cSBarry Smith 
2094bb7acecfSBarry Smith   Note:
2095bb7acecfSBarry Smith   You need to call `DMPlexSetMigrationSF()` on the original `DM` if you want the Global-To-Natural map to be automatically constructed
20965d3b26e6SMatthew G. Knepley 
209760225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreateFieldIS()`, `DMCreateFieldDecomposition()`, `DMAddField()`, `DMCreateSuperDM()`, `IS`, `DMPlexSetMigrationSF()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`
2098435a35e8SMatthew G Knepley @*/
2099d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateSubDM(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm)
2100d71ae5a4SJacob Faibussowitsch {
2101435a35e8SMatthew G Knepley   PetscFunctionBegin;
2102435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
21034f572ea9SToby Isaac   PetscAssertPointer(fields, 3);
21044f572ea9SToby Isaac   if (is) PetscAssertPointer(is, 4);
21054f572ea9SToby Isaac   if (subdm) PetscAssertPointer(subdm, 5);
2106dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, createsubdm, numFields, fields, is, subdm);
21073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2108435a35e8SMatthew G Knepley }
2109435a35e8SMatthew G Knepley 
21102adcc780SMatthew G. Knepley /*@C
2111bb7acecfSBarry Smith   DMCreateSuperDM - Returns an arrays of `IS` and `DM` encapsulating a superproblem defined by multiple `DM`s passed in.
21122adcc780SMatthew G. Knepley 
21132adcc780SMatthew G. Knepley   Not collective
21142adcc780SMatthew G. Knepley 
2115d8d19677SJose E. Roman   Input Parameters:
2116bb7acecfSBarry Smith + dms - The `DM` objects
2117bb7acecfSBarry Smith - n   - The number of `DM`s
21182adcc780SMatthew G. Knepley 
21192adcc780SMatthew G. Knepley   Output Parameters:
2120bb7acecfSBarry Smith + is      - The global indices for each of subproblem within the super `DM`, or NULL
2121bb7acecfSBarry Smith - superdm - The `DM` for the superproblem
21222adcc780SMatthew G. Knepley 
212320f4b53cSBarry Smith   Level: intermediate
212420f4b53cSBarry Smith 
2125bb7acecfSBarry Smith   Note:
2126bb7acecfSBarry Smith   You need to call `DMPlexSetMigrationSF()` on the original `DM` if you want the Global-To-Natural map to be automatically constructed
21275d3b26e6SMatthew G. Knepley 
21281cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateSubDM()`, `DMPlexSetMigrationSF()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMCreateFieldIS()`
21292adcc780SMatthew G. Knepley @*/
2130d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateSuperDM(DM dms[], PetscInt n, IS **is, DM *superdm)
2131d71ae5a4SJacob Faibussowitsch {
21322adcc780SMatthew G. Knepley   PetscInt i;
21332adcc780SMatthew G. Knepley 
21342adcc780SMatthew G. Knepley   PetscFunctionBegin;
21354f572ea9SToby Isaac   PetscAssertPointer(dms, 1);
2136ad540459SPierre Jolivet   for (i = 0; i < n; ++i) PetscValidHeaderSpecific(dms[i], DM_CLASSID, 1);
21374f572ea9SToby Isaac   if (is) PetscAssertPointer(is, 3);
21384f572ea9SToby Isaac   PetscAssertPointer(superdm, 4);
2139bb7acecfSBarry Smith   PetscCheck(n >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Number of DMs must be nonnegative: %" PetscInt_FMT, n);
2140bb7acecfSBarry Smith   if (n) {
2141b9d85ea2SLisandro Dalcin     DM dm = dms[0];
2142fa1e479aSStefano Zampini     PetscCheck(dm->ops->createsuperdm, PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "No method createsuperdm for DM of type %s\n", ((PetscObject)dm)->type_name);
2143dbbe0bcdSBarry Smith     PetscCall((*dm->ops->createsuperdm)(dms, n, is, superdm));
21442adcc780SMatthew G. Knepley   }
21453ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
21462adcc780SMatthew G. Knepley }
21472adcc780SMatthew G. Knepley 
214816621825SDmitry Karpeev /*@C
2149a4e35b19SJacob Faibussowitsch   DMCreateDomainDecomposition - Returns lists of `IS` objects defining a decomposition of a
2150a4e35b19SJacob Faibussowitsch   problem into subproblems corresponding to restrictions to pairs of nested subdomains.
215116621825SDmitry Karpeev 
215220f4b53cSBarry Smith   Not Collective
215316621825SDmitry Karpeev 
215416621825SDmitry Karpeev   Input Parameter:
2155bb7acecfSBarry Smith . dm - the `DM` object
215616621825SDmitry Karpeev 
215716621825SDmitry Karpeev   Output Parameters:
215820f4b53cSBarry Smith + n           - The number of subproblems in the domain decomposition (or `NULL` if not requested)
215920f4b53cSBarry Smith . namelist    - The name for each subdomain (or `NULL` if not requested)
21600298fd71SBarry Smith . innerislist - The global indices for each inner subdomain (or NULL, if not requested)
21610298fd71SBarry Smith . outerislist - The global indices for each outer subdomain (or NULL, if not requested)
216220f4b53cSBarry Smith - dmlist      - The `DM`s for each subdomain subproblem (or NULL, if not requested; if `NULL` is returned, no `DM`s are defined)
216316621825SDmitry Karpeev 
216416621825SDmitry Karpeev   Level: intermediate
216516621825SDmitry Karpeev 
2166bb7acecfSBarry Smith   Note:
2167a4e35b19SJacob Faibussowitsch   Each `IS` contains the global indices of the dofs of the corresponding subdomains with in the
2168a4e35b19SJacob Faibussowitsch   dofs of the original `DM`. The inner subdomains conceptually define a nonoverlapping
2169a4e35b19SJacob Faibussowitsch   covering, while outer subdomains can overlap.
2170a4e35b19SJacob Faibussowitsch 
2171a4e35b19SJacob Faibussowitsch   The optional list of `DM`s define a `DM` for each subproblem.
2172a4e35b19SJacob Faibussowitsch 
217316621825SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
2174bb7acecfSBarry Smith   `PetscFree()`, every entry of is should be destroyed with `ISDestroy()`, every entry of dm should be destroyed with `DMDestroy()`,
2175bb7acecfSBarry Smith   and all of the arrays should be freed with `PetscFree()`.
217616621825SDmitry Karpeev 
2177a4e35b19SJacob Faibussowitsch   Developer Notes:
217820f4b53cSBarry Smith   The `dmlist` is for the inner subdomains or the outer subdomains or all subdomains?
2179bb7acecfSBarry Smith 
218060225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCreateFieldDecomposition()`, `DMDestroy()`, `DMCreateDomainDecompositionScatters()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`
218116621825SDmitry Karpeev @*/
2182d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateDomainDecomposition(DM dm, PetscInt *n, char ***namelist, IS **innerislist, IS **outerislist, DM **dmlist)
2183d71ae5a4SJacob Faibussowitsch {
2184be081cd6SPeter Brune   DMSubDomainHookLink link;
2185be081cd6SPeter Brune   PetscInt            i, l;
218616621825SDmitry Karpeev 
218716621825SDmitry Karpeev   PetscFunctionBegin;
218816621825SDmitry Karpeev   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
21899371c9d4SSatish Balay   if (n) {
21904f572ea9SToby Isaac     PetscAssertPointer(n, 2);
21919371c9d4SSatish Balay     *n = 0;
21929371c9d4SSatish Balay   }
21939371c9d4SSatish Balay   if (namelist) {
21944f572ea9SToby Isaac     PetscAssertPointer(namelist, 3);
21959371c9d4SSatish Balay     *namelist = NULL;
21969371c9d4SSatish Balay   }
21979371c9d4SSatish Balay   if (innerislist) {
21984f572ea9SToby Isaac     PetscAssertPointer(innerislist, 4);
21999371c9d4SSatish Balay     *innerislist = NULL;
22009371c9d4SSatish Balay   }
22019371c9d4SSatish Balay   if (outerislist) {
22024f572ea9SToby Isaac     PetscAssertPointer(outerislist, 5);
22039371c9d4SSatish Balay     *outerislist = NULL;
22049371c9d4SSatish Balay   }
22059371c9d4SSatish Balay   if (dmlist) {
22064f572ea9SToby Isaac     PetscAssertPointer(dmlist, 6);
22079371c9d4SSatish Balay     *dmlist = NULL;
22089371c9d4SSatish Balay   }
2209f3f0edfdSDmitry Karpeev   /*
2210f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
2211f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
2212f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
2213f3f0edfdSDmitry Karpeev    */
22147a8be351SBarry Smith   PetscCheck(dm->setupcalled, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
221516621825SDmitry Karpeev   if (dm->ops->createdomaindecomposition) {
2216dbbe0bcdSBarry Smith     PetscUseTypeMethod(dm, createdomaindecomposition, &l, namelist, innerislist, outerislist, dmlist);
221714a18fd3SPeter Brune     /* copy subdomain hooks and context over to the subdomain DMs */
2218f891f5b9SPatrick Sanan     if (dmlist && *dmlist) {
2219be081cd6SPeter Brune       for (i = 0; i < l; i++) {
2220be081cd6SPeter Brune         for (link = dm->subdomainhook; link; link = link->next) {
22219566063dSJacob Faibussowitsch           if (link->ddhook) PetscCall((*link->ddhook)(dm, (*dmlist)[i], link->ctx));
2222be081cd6SPeter Brune         }
2223648262bbSPatrick Sanan         if (dm->ctx) (*dmlist)[i]->ctx = dm->ctx;
2224e7c4fc90SDmitry Karpeev       }
222514a18fd3SPeter Brune     }
2226bb7acecfSBarry Smith     if (n) *n = l;
222714a18fd3SPeter Brune   }
22283ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2229e30e807fSPeter Brune }
2230e30e807fSPeter Brune 
2231e30e807fSPeter Brune /*@C
2232e30e807fSPeter Brune   DMCreateDomainDecompositionScatters - Returns scatters to the subdomain vectors from the global vector
2233e30e807fSPeter Brune 
223420f4b53cSBarry Smith   Not Collective
2235e30e807fSPeter Brune 
2236e30e807fSPeter Brune   Input Parameters:
2237bb7acecfSBarry Smith + dm     - the `DM` object
2238e30e807fSPeter Brune . n      - the number of subdomain scatters
2239e30e807fSPeter Brune - subdms - the local subdomains
2240e30e807fSPeter Brune 
2241e30e807fSPeter Brune   Output Parameters:
22426b867d5aSJose E. Roman + iscat - scatter from global vector to nonoverlapping global vector entries on subdomain
2243e30e807fSPeter Brune . oscat - scatter from global vector to overlapping global vector entries on subdomain
2244e30e807fSPeter Brune - gscat - scatter from global vector to local vector on subdomain (fills in ghosts)
2245e30e807fSPeter Brune 
224620f4b53cSBarry Smith   Level: developer
224720f4b53cSBarry Smith 
2248bb7acecfSBarry Smith   Note:
2249bb7acecfSBarry Smith   This is an alternative to the iis and ois arguments in `DMCreateDomainDecomposition()` that allow for the solution
2250e30e807fSPeter Brune   of general nonlinear problems with overlapping subdomain methods.  While merely having index sets that enable subsets
2251e30e807fSPeter Brune   of the residual equations to be created is fine for linear problems, nonlinear problems require local assembly of
2252e30e807fSPeter Brune   solution and residual data.
2253e30e807fSPeter Brune 
2254a4e35b19SJacob Faibussowitsch   Developer Notes:
2255a4e35b19SJacob Faibussowitsch   Can the subdms input be anything or are they exactly the `DM` obtained from
2256a4e35b19SJacob Faibussowitsch   `DMCreateDomainDecomposition()`?
2257bb7acecfSBarry Smith 
22581cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateDomainDecomposition()`, `DMDestroy()`, `DMView()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMCreateFieldIS()`
2259e30e807fSPeter Brune @*/
2260d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateDomainDecompositionScatters(DM dm, PetscInt n, DM *subdms, VecScatter **iscat, VecScatter **oscat, VecScatter **gscat)
2261d71ae5a4SJacob Faibussowitsch {
2262e30e807fSPeter Brune   PetscFunctionBegin;
2263e30e807fSPeter Brune   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
22644f572ea9SToby Isaac   PetscAssertPointer(subdms, 3);
2265dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, createddscatters, n, subdms, iscat, oscat, gscat);
22663ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2267e7c4fc90SDmitry Karpeev }
2268e7c4fc90SDmitry Karpeev 
226947c6ae99SBarry Smith /*@
2270bb7acecfSBarry Smith   DMRefine - Refines a `DM` object using a standard nonadaptive refinement of the underlying mesh
227147c6ae99SBarry Smith 
227220f4b53cSBarry Smith   Collective
227347c6ae99SBarry Smith 
2274d8d19677SJose E. Roman   Input Parameters:
2275bb7acecfSBarry Smith + dm   - the `DM` object
2276bb7acecfSBarry Smith - comm - the communicator to contain the new `DM` object (or `MPI_COMM_NULL`)
227747c6ae99SBarry Smith 
227847c6ae99SBarry Smith   Output Parameter:
227920f4b53cSBarry Smith . dmf - the refined `DM`, or `NULL`
2280ae0a1c52SMatthew G Knepley 
228120f4b53cSBarry Smith   Options Database Key:
2282412e9a14SMatthew G. Knepley . -dm_plex_cell_refiner <strategy> - chooses the refinement strategy, e.g. regular, tohex
2283412e9a14SMatthew G. Knepley 
228447c6ae99SBarry Smith   Level: developer
228547c6ae99SBarry Smith 
228620f4b53cSBarry Smith   Note:
228720f4b53cSBarry Smith   If no refinement was done, the return value is `NULL`
228820f4b53cSBarry Smith 
22891cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
229047c6ae99SBarry Smith @*/
2291d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRefine(DM dm, MPI_Comm comm, DM *dmf)
2292d71ae5a4SJacob Faibussowitsch {
2293c833c3b5SJed Brown   DMRefineHookLink link;
229447c6ae99SBarry Smith 
229547c6ae99SBarry Smith   PetscFunctionBegin;
2296732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
22979566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_Refine, dm, 0, 0, 0));
2298dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, refine, comm, dmf);
22994057135bSMatthew G Knepley   if (*dmf) {
230043842a1eSJed Brown     (*dmf)->ops->creatematrix = dm->ops->creatematrix;
23018865f1eaSKarl Rupp 
23029566063dSJacob Faibussowitsch     PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)dm, (PetscObject)*dmf));
23038865f1eaSKarl Rupp 
2304644e2e5bSBarry Smith     (*dmf)->ctx       = dm->ctx;
23050598a293SJed Brown     (*dmf)->leveldown = dm->leveldown;
2306656b349aSBarry Smith     (*dmf)->levelup   = dm->levelup + 1;
23078865f1eaSKarl Rupp 
23089566063dSJacob Faibussowitsch     PetscCall(DMSetMatType(*dmf, dm->mattype));
2309c833c3b5SJed Brown     for (link = dm->refinehook; link; link = link->next) {
23101baa6e33SBarry Smith       if (link->refinehook) PetscCall((*link->refinehook)(dm, *dmf, link->ctx));
2311c833c3b5SJed Brown     }
2312c833c3b5SJed Brown   }
23139566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_Refine, dm, 0, 0, 0));
23143ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2315c833c3b5SJed Brown }
2316c833c3b5SJed Brown 
2317bb9467b5SJed Brown /*@C
2318c833c3b5SJed Brown   DMRefineHookAdd - adds a callback to be run when interpolating a nonlinear problem to a finer grid
2319c833c3b5SJed Brown 
232020f4b53cSBarry Smith   Logically Collective; No Fortran Support
2321c833c3b5SJed Brown 
23224165533cSJose E. Roman   Input Parameters:
2323bb7acecfSBarry Smith + coarse     - `DM` on which to run a hook when interpolating to a finer level
2324bb7acecfSBarry Smith . refinehook - function to run when setting up the finer level
2325f826b5fcSPierre Jolivet . interphook - function to run to update data on finer levels (once per `SNESSolve()`)
232620f4b53cSBarry Smith - ctx        - [optional] user-defined context for provide data for the hooks (may be `NULL`)
2327c833c3b5SJed Brown 
232820f4b53cSBarry Smith   Calling sequence of `refinehook`:
2329bb7acecfSBarry Smith + coarse - coarse level `DM`
2330bb7acecfSBarry Smith . fine   - fine level `DM` to interpolate problem to
2331c833c3b5SJed Brown - ctx    - optional user-defined function context
2332c833c3b5SJed Brown 
233320f4b53cSBarry Smith   Calling sequence of `interphook`:
2334bb7acecfSBarry Smith + coarse - coarse level `DM`
2335c833c3b5SJed Brown . interp - matrix interpolating a coarse-level solution to the finer grid
2336bb7acecfSBarry Smith . fine   - fine level `DM` to update
2337c833c3b5SJed Brown - ctx    - optional user-defined function context
2338c833c3b5SJed Brown 
2339c833c3b5SJed Brown   Level: advanced
2340c833c3b5SJed Brown 
2341c833c3b5SJed Brown   Notes:
2342bb7acecfSBarry Smith   This function is only needed if auxiliary data that is attached to the `DM`s via, for example, `PetscObjectCompose()`, needs to be
2343bb7acecfSBarry Smith   passed to fine grids while grid sequencing.
2344bb7acecfSBarry Smith 
2345bb7acecfSBarry Smith   The actual interpolation is done when `DMInterpolate()` is called.
2346c833c3b5SJed Brown 
2347c833c3b5SJed Brown   If this function is called multiple times, the hooks will be run in the order they are added.
2348c833c3b5SJed Brown 
23491cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsenHookAdd()`, `DMInterpolate()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
2350c833c3b5SJed Brown @*/
2351a4e35b19SJacob Faibussowitsch PetscErrorCode DMRefineHookAdd(DM coarse, PetscErrorCode (*refinehook)(DM coarse, DM fine, void *ctx), PetscErrorCode (*interphook)(DM coarse, Mat interp, DM fine, void *ctx), void *ctx)
2352d71ae5a4SJacob Faibussowitsch {
2353c833c3b5SJed Brown   DMRefineHookLink link, *p;
2354c833c3b5SJed Brown 
2355c833c3b5SJed Brown   PetscFunctionBegin;
2356c833c3b5SJed Brown   PetscValidHeaderSpecific(coarse, DM_CLASSID, 1);
23573d8e3701SJed Brown   for (p = &coarse->refinehook; *p; p = &(*p)->next) { /* Scan to the end of the current list of hooks */
23583ba16761SJacob Faibussowitsch     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) PetscFunctionReturn(PETSC_SUCCESS);
23593d8e3701SJed Brown   }
23609566063dSJacob Faibussowitsch   PetscCall(PetscNew(&link));
2361c833c3b5SJed Brown   link->refinehook = refinehook;
2362c833c3b5SJed Brown   link->interphook = interphook;
2363c833c3b5SJed Brown   link->ctx        = ctx;
23640298fd71SBarry Smith   link->next       = NULL;
2365c833c3b5SJed Brown   *p               = link;
23663ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2367c833c3b5SJed Brown }
2368c833c3b5SJed Brown 
23693d8e3701SJed Brown /*@C
2370bb7acecfSBarry Smith   DMRefineHookRemove - remove a callback from the list of hooks, that have been set with `DMRefineHookAdd()`, to be run when interpolating
2371bb7acecfSBarry Smith   a nonlinear problem to a finer grid
23723d8e3701SJed Brown 
237320f4b53cSBarry Smith   Logically Collective; No Fortran Support
23743d8e3701SJed Brown 
23754165533cSJose E. Roman   Input Parameters:
2376bb7acecfSBarry Smith + coarse     - the `DM` on which to run a hook when restricting to a coarser level
2377bb7acecfSBarry Smith . refinehook - function to run when setting up a finer level
2378bb7acecfSBarry Smith . interphook - function to run to update data on finer levels
237920f4b53cSBarry Smith - ctx        - [optional] user-defined context for provide data for the hooks (may be `NULL`)
23803d8e3701SJed Brown 
23813d8e3701SJed Brown   Level: advanced
23823d8e3701SJed Brown 
2383bb7acecfSBarry Smith   Note:
23843d8e3701SJed Brown   This function does nothing if the hook is not in the list.
23853d8e3701SJed Brown 
23861cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRefineHookAdd()`, `DMCoarsenHookRemove()`, `DMInterpolate()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
23873d8e3701SJed Brown @*/
2388d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRefineHookRemove(DM coarse, PetscErrorCode (*refinehook)(DM, DM, void *), PetscErrorCode (*interphook)(DM, Mat, DM, void *), void *ctx)
2389d71ae5a4SJacob Faibussowitsch {
23903d8e3701SJed Brown   DMRefineHookLink link, *p;
23913d8e3701SJed Brown 
23923d8e3701SJed Brown   PetscFunctionBegin;
23933d8e3701SJed Brown   PetscValidHeaderSpecific(coarse, DM_CLASSID, 1);
23943d8e3701SJed Brown   for (p = &coarse->refinehook; *p; p = &(*p)->next) { /* Search the list of current hooks */
23953d8e3701SJed Brown     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) {
23963d8e3701SJed Brown       link = *p;
23973d8e3701SJed Brown       *p   = link->next;
23989566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
23993d8e3701SJed Brown       break;
24003d8e3701SJed Brown     }
24013d8e3701SJed Brown   }
24023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
24033d8e3701SJed Brown }
24043d8e3701SJed Brown 
2405c833c3b5SJed Brown /*@
2406bb7acecfSBarry Smith   DMInterpolate - interpolates user-defined problem data attached to a `DM` to a finer `DM` by running hooks registered by `DMRefineHookAdd()`
2407c833c3b5SJed Brown 
2408c833c3b5SJed Brown   Collective if any hooks are
2409c833c3b5SJed Brown 
24104165533cSJose E. Roman   Input Parameters:
2411bb7acecfSBarry Smith + coarse - coarser `DM` to use as a base
2412bb7acecfSBarry Smith . interp - interpolation matrix, apply using `MatInterpolate()`
2413bb7acecfSBarry Smith - fine   - finer `DM` to update
2414c833c3b5SJed Brown 
2415c833c3b5SJed Brown   Level: developer
2416c833c3b5SJed Brown 
241760225df5SJacob Faibussowitsch   Developer Notes:
2418bb7acecfSBarry Smith   This routine is called `DMInterpolate()` while the hook is called `DMRefineHookAdd()`. It would be better to have an
2419bb7acecfSBarry Smith   an API with consistent terminology.
2420bb7acecfSBarry Smith 
24211cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRefineHookAdd()`, `MatInterpolate()`
2422c833c3b5SJed Brown @*/
2423d71ae5a4SJacob Faibussowitsch PetscErrorCode DMInterpolate(DM coarse, Mat interp, DM fine)
2424d71ae5a4SJacob Faibussowitsch {
2425c833c3b5SJed Brown   DMRefineHookLink link;
2426c833c3b5SJed Brown 
2427c833c3b5SJed Brown   PetscFunctionBegin;
2428c833c3b5SJed Brown   for (link = fine->refinehook; link; link = link->next) {
24291baa6e33SBarry Smith     if (link->interphook) PetscCall((*link->interphook)(coarse, interp, fine, link->ctx));
24304057135bSMatthew G Knepley   }
24313ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
243247c6ae99SBarry Smith }
243347c6ae99SBarry Smith 
2434eb3f98d2SBarry Smith /*@
24351f3379b2SToby Isaac   DMInterpolateSolution - Interpolates a solution from a coarse mesh to a fine mesh.
24361f3379b2SToby Isaac 
243720f4b53cSBarry Smith   Collective
24381f3379b2SToby Isaac 
24394165533cSJose E. Roman   Input Parameters:
2440bb7acecfSBarry Smith + coarse    - coarse `DM`
2441bb7acecfSBarry Smith . fine      - fine `DM`
2442bb7acecfSBarry Smith . interp    - (optional) the matrix computed by `DMCreateInterpolation()`.  Implementations may not need this, but if it
2443bb7acecfSBarry Smith             is available it can avoid some recomputation.  If it is provided, `MatInterpolate()` will be used if
2444bb7acecfSBarry Smith             the coarse `DM` does not have a specialized implementation.
24451f3379b2SToby Isaac - coarseSol - solution on the coarse mesh
24461f3379b2SToby Isaac 
24474165533cSJose E. Roman   Output Parameter:
24481f3379b2SToby Isaac . fineSol - the interpolation of coarseSol to the fine mesh
24491f3379b2SToby Isaac 
24501f3379b2SToby Isaac   Level: developer
24511f3379b2SToby Isaac 
2452bb7acecfSBarry Smith   Note:
2453bb7acecfSBarry Smith   This function exists because the interpolation of a solution vector between meshes is not always a linear
24541f3379b2SToby Isaac   map.  For example, if a boundary value problem has an inhomogeneous Dirichlet boundary condition that is compressed
24551f3379b2SToby Isaac   out of the solution vector.  Or if interpolation is inherently a nonlinear operation, such as a method using
24561f3379b2SToby Isaac   slope-limiting reconstruction.
24571f3379b2SToby Isaac 
245860225df5SJacob Faibussowitsch   Developer Notes:
2459bb7acecfSBarry Smith   This doesn't just interpolate "solutions" so its API name is questionable.
2460bb7acecfSBarry Smith 
24611cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMInterpolate()`, `DMCreateInterpolation()`
24621f3379b2SToby Isaac @*/
2463d71ae5a4SJacob Faibussowitsch PetscErrorCode DMInterpolateSolution(DM coarse, DM fine, Mat interp, Vec coarseSol, Vec fineSol)
2464d71ae5a4SJacob Faibussowitsch {
24651f3379b2SToby Isaac   PetscErrorCode (*interpsol)(DM, DM, Mat, Vec, Vec) = NULL;
24661f3379b2SToby Isaac 
24671f3379b2SToby Isaac   PetscFunctionBegin;
24681f3379b2SToby Isaac   PetscValidHeaderSpecific(coarse, DM_CLASSID, 1);
24691f3379b2SToby Isaac   if (interp) PetscValidHeaderSpecific(interp, MAT_CLASSID, 3);
24701f3379b2SToby Isaac   PetscValidHeaderSpecific(coarseSol, VEC_CLASSID, 4);
24711f3379b2SToby Isaac   PetscValidHeaderSpecific(fineSol, VEC_CLASSID, 5);
24721f3379b2SToby Isaac 
24739566063dSJacob Faibussowitsch   PetscCall(PetscObjectQueryFunction((PetscObject)coarse, "DMInterpolateSolution_C", &interpsol));
24741f3379b2SToby Isaac   if (interpsol) {
24759566063dSJacob Faibussowitsch     PetscCall((*interpsol)(coarse, fine, interp, coarseSol, fineSol));
24761f3379b2SToby Isaac   } else if (interp) {
24779566063dSJacob Faibussowitsch     PetscCall(MatInterpolate(interp, coarseSol, fineSol));
247898921bdaSJacob Faibussowitsch   } else SETERRQ(PetscObjectComm((PetscObject)coarse), PETSC_ERR_SUP, "DM %s does not implement DMInterpolateSolution()", ((PetscObject)coarse)->type_name);
24793ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
24801f3379b2SToby Isaac }
24811f3379b2SToby Isaac 
24821f3379b2SToby Isaac /*@
2483bb7acecfSBarry Smith   DMGetRefineLevel - Gets the number of refinements that have generated this `DM` from some initial `DM`.
2484eb3f98d2SBarry Smith 
2485eb3f98d2SBarry Smith   Not Collective
2486eb3f98d2SBarry Smith 
2487eb3f98d2SBarry Smith   Input Parameter:
2488bb7acecfSBarry Smith . dm - the `DM` object
2489eb3f98d2SBarry Smith 
2490eb3f98d2SBarry Smith   Output Parameter:
2491eb3f98d2SBarry Smith . level - number of refinements
2492eb3f98d2SBarry Smith 
2493eb3f98d2SBarry Smith   Level: developer
2494eb3f98d2SBarry Smith 
2495bb7acecfSBarry Smith   Note:
2496bb7acecfSBarry Smith   This can be used, by example, to set the number of coarser levels associated with this `DM` for a multigrid solver.
2497bb7acecfSBarry Smith 
24981cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRefine()`, `DMCoarsen()`, `DMGetCoarsenLevel()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
2499eb3f98d2SBarry Smith @*/
2500d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetRefineLevel(DM dm, PetscInt *level)
2501d71ae5a4SJacob Faibussowitsch {
2502eb3f98d2SBarry Smith   PetscFunctionBegin;
2503eb3f98d2SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2504eb3f98d2SBarry Smith   *level = dm->levelup;
25053ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2506eb3f98d2SBarry Smith }
2507eb3f98d2SBarry Smith 
2508fef3a512SBarry Smith /*@
2509bb7acecfSBarry Smith   DMSetRefineLevel - Sets the number of refinements that have generated this `DM`.
2510fef3a512SBarry Smith 
2511fef3a512SBarry Smith   Not Collective
2512fef3a512SBarry Smith 
2513d8d19677SJose E. Roman   Input Parameters:
2514bb7acecfSBarry Smith + dm    - the `DM` object
2515fef3a512SBarry Smith - level - number of refinements
2516fef3a512SBarry Smith 
2517fef3a512SBarry Smith   Level: advanced
2518fef3a512SBarry Smith 
251995452b02SPatrick Sanan   Notes:
2520bb7acecfSBarry Smith   This value is used by `PCMG` to determine how many multigrid levels to use
2521fef3a512SBarry Smith 
2522bb7acecfSBarry Smith   The values are usually set automatically by the process that is causing the refinements of an initial `DM` by calling this routine.
2523bb7acecfSBarry Smith 
25241cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRefineLevel()`, `DMCoarsen()`, `DMGetCoarsenLevel()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
2525fef3a512SBarry Smith @*/
2526d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetRefineLevel(DM dm, PetscInt level)
2527d71ae5a4SJacob Faibussowitsch {
2528fef3a512SBarry Smith   PetscFunctionBegin;
2529fef3a512SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2530fef3a512SBarry Smith   dm->levelup = level;
25313ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2532fef3a512SBarry Smith }
2533fef3a512SBarry Smith 
2534d410b0cfSMatthew G. Knepley /*@
2535bb7acecfSBarry Smith   DMExtrude - Extrude a `DM` object from a surface
2536d410b0cfSMatthew G. Knepley 
253720f4b53cSBarry Smith   Collective
2538d410b0cfSMatthew G. Knepley 
2539f1a722f8SMatthew G. Knepley   Input Parameters:
2540bb7acecfSBarry Smith + dm     - the `DM` object
2541d410b0cfSMatthew G. Knepley - layers - the number of extruded cell layers
2542d410b0cfSMatthew G. Knepley 
2543d410b0cfSMatthew G. Knepley   Output Parameter:
254420f4b53cSBarry Smith . dme - the extruded `DM`, or `NULL`
2545d410b0cfSMatthew G. Knepley 
2546d410b0cfSMatthew G. Knepley   Level: developer
2547d410b0cfSMatthew G. Knepley 
254820f4b53cSBarry Smith   Note:
254920f4b53cSBarry Smith   If no extrusion was done, the return value is `NULL`
255020f4b53cSBarry Smith 
25511cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRefine()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`
2552d410b0cfSMatthew G. Knepley @*/
2553d71ae5a4SJacob Faibussowitsch PetscErrorCode DMExtrude(DM dm, PetscInt layers, DM *dme)
2554d71ae5a4SJacob Faibussowitsch {
2555d410b0cfSMatthew G. Knepley   PetscFunctionBegin;
2556d410b0cfSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2557dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, extrude, layers, dme);
2558d410b0cfSMatthew G. Knepley   if (*dme) {
2559d410b0cfSMatthew G. Knepley     (*dme)->ops->creatematrix = dm->ops->creatematrix;
25609566063dSJacob Faibussowitsch     PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)dm, (PetscObject)*dme));
2561d410b0cfSMatthew G. Knepley     (*dme)->ctx = dm->ctx;
25629566063dSJacob Faibussowitsch     PetscCall(DMSetMatType(*dme, dm->mattype));
2563d410b0cfSMatthew G. Knepley   }
25643ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2565d410b0cfSMatthew G. Knepley }
2566d410b0cfSMatthew G. Knepley 
2567d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetBasisTransformDM_Internal(DM dm, DM *tdm)
2568d71ae5a4SJacob Faibussowitsch {
2569ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2570ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
25714f572ea9SToby Isaac   PetscAssertPointer(tdm, 2);
2572ca3d3a14SMatthew G. Knepley   *tdm = dm->transformDM;
25733ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2574ca3d3a14SMatthew G. Knepley }
2575ca3d3a14SMatthew G. Knepley 
2576d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetBasisTransformVec_Internal(DM dm, Vec *tv)
2577d71ae5a4SJacob Faibussowitsch {
2578ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2579ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
25804f572ea9SToby Isaac   PetscAssertPointer(tv, 2);
2581ca3d3a14SMatthew G. Knepley   *tv = dm->transform;
25823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2583ca3d3a14SMatthew G. Knepley }
2584ca3d3a14SMatthew G. Knepley 
2585ca3d3a14SMatthew G. Knepley /*@
2586bb7acecfSBarry Smith   DMHasBasisTransform - Whether the `DM` employs a basis transformation from functions in global vectors to functions in local vectors
2587ca3d3a14SMatthew G. Knepley 
2588ca3d3a14SMatthew G. Knepley   Input Parameter:
258920f4b53cSBarry Smith . dm - The `DM`
2590ca3d3a14SMatthew G. Knepley 
2591ca3d3a14SMatthew G. Knepley   Output Parameter:
259220f4b53cSBarry Smith . flg - `PETSC_TRUE` if a basis transformation should be done
2593ca3d3a14SMatthew G. Knepley 
2594ca3d3a14SMatthew G. Knepley   Level: developer
2595ca3d3a14SMatthew G. Knepley 
25961cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPlexGlobalToLocalBasis()`, `DMPlexLocalToGlobalBasis()`, `DMPlexCreateBasisRotation()`
2597ca3d3a14SMatthew G. Knepley @*/
2598d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasBasisTransform(DM dm, PetscBool *flg)
2599d71ae5a4SJacob Faibussowitsch {
2600ca3d3a14SMatthew G. Knepley   Vec tv;
2601ca3d3a14SMatthew G. Knepley 
2602ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2603ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
26044f572ea9SToby Isaac   PetscAssertPointer(flg, 2);
26059566063dSJacob Faibussowitsch   PetscCall(DMGetBasisTransformVec_Internal(dm, &tv));
2606ca3d3a14SMatthew G. Knepley   *flg = tv ? PETSC_TRUE : PETSC_FALSE;
26073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2608ca3d3a14SMatthew G. Knepley }
2609ca3d3a14SMatthew G. Knepley 
2610d71ae5a4SJacob Faibussowitsch PetscErrorCode DMConstructBasisTransform_Internal(DM dm)
2611d71ae5a4SJacob Faibussowitsch {
2612ca3d3a14SMatthew G. Knepley   PetscSection s, ts;
2613ca3d3a14SMatthew G. Knepley   PetscScalar *ta;
2614ca3d3a14SMatthew G. Knepley   PetscInt     cdim, pStart, pEnd, p, Nf, f, Nc, dof;
2615ca3d3a14SMatthew G. Knepley 
2616ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
26179566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dm, &cdim));
26189566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &s));
26199566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetChart(s, &pStart, &pEnd));
26209566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetNumFields(s, &Nf));
26219566063dSJacob Faibussowitsch   PetscCall(DMClone(dm, &dm->transformDM));
26229566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm->transformDM, &ts));
26239566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetNumFields(ts, Nf));
26249566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetChart(ts, pStart, pEnd));
2625ca3d3a14SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
26269566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetFieldComponents(s, f, &Nc));
2627ca3d3a14SMatthew G. Knepley     /* We could start to label fields by their transformation properties */
2628ca3d3a14SMatthew G. Knepley     if (Nc != cdim) continue;
2629ca3d3a14SMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
26309566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetFieldDof(s, p, f, &dof));
2631ca3d3a14SMatthew G. Knepley       if (!dof) continue;
26329566063dSJacob Faibussowitsch       PetscCall(PetscSectionSetFieldDof(ts, p, f, PetscSqr(cdim)));
26339566063dSJacob Faibussowitsch       PetscCall(PetscSectionAddDof(ts, p, PetscSqr(cdim)));
2634ca3d3a14SMatthew G. Knepley     }
2635ca3d3a14SMatthew G. Knepley   }
26369566063dSJacob Faibussowitsch   PetscCall(PetscSectionSetUp(ts));
26379566063dSJacob Faibussowitsch   PetscCall(DMCreateLocalVector(dm->transformDM, &dm->transform));
26389566063dSJacob Faibussowitsch   PetscCall(VecGetArray(dm->transform, &ta));
2639ca3d3a14SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
2640ca3d3a14SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
26419566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetFieldDof(ts, p, f, &dof));
2642ca3d3a14SMatthew G. Knepley       if (dof) {
2643ca3d3a14SMatthew G. Knepley         PetscReal          x[3] = {0.0, 0.0, 0.0};
2644ca3d3a14SMatthew G. Knepley         PetscScalar       *tva;
2645ca3d3a14SMatthew G. Knepley         const PetscScalar *A;
2646ca3d3a14SMatthew G. Knepley 
2647ca3d3a14SMatthew G. Knepley         /* TODO Get quadrature point for this dual basis vector for coordinate */
26489566063dSJacob Faibussowitsch         PetscCall((*dm->transformGetMatrix)(dm, x, PETSC_TRUE, &A, dm->transformCtx));
26499566063dSJacob Faibussowitsch         PetscCall(DMPlexPointLocalFieldRef(dm->transformDM, p, f, ta, (void *)&tva));
26509566063dSJacob Faibussowitsch         PetscCall(PetscArraycpy(tva, A, PetscSqr(cdim)));
2651ca3d3a14SMatthew G. Knepley       }
2652ca3d3a14SMatthew G. Knepley     }
2653ca3d3a14SMatthew G. Knepley   }
26549566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(dm->transform, &ta));
26553ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2656ca3d3a14SMatthew G. Knepley }
2657ca3d3a14SMatthew G. Knepley 
2658d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyTransform(DM dm, DM newdm)
2659d71ae5a4SJacob Faibussowitsch {
2660ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2661ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2662ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(newdm, DM_CLASSID, 2);
2663ca3d3a14SMatthew G. Knepley   newdm->transformCtx       = dm->transformCtx;
2664ca3d3a14SMatthew G. Knepley   newdm->transformSetUp     = dm->transformSetUp;
2665ca3d3a14SMatthew G. Knepley   newdm->transformDestroy   = NULL;
2666ca3d3a14SMatthew G. Knepley   newdm->transformGetMatrix = dm->transformGetMatrix;
26679566063dSJacob Faibussowitsch   if (newdm->transformSetUp) PetscCall(DMConstructBasisTransform_Internal(newdm));
26683ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2669ca3d3a14SMatthew G. Knepley }
2670ca3d3a14SMatthew G. Knepley 
2671bb9467b5SJed Brown /*@C
2672bb7acecfSBarry Smith   DMGlobalToLocalHookAdd - adds a callback to be run when `DMGlobalToLocal()` is called
2673baf369e7SPeter Brune 
267420f4b53cSBarry Smith   Logically Collective
2675baf369e7SPeter Brune 
26764165533cSJose E. Roman   Input Parameters:
2677bb7acecfSBarry Smith + dm        - the `DM`
2678bb7acecfSBarry Smith . beginhook - function to run at the beginning of `DMGlobalToLocalBegin()`
2679bb7acecfSBarry Smith . endhook   - function to run after `DMGlobalToLocalEnd()` has completed
268020f4b53cSBarry Smith - ctx       - [optional] user-defined context for provide data for the hooks (may be `NULL`)
2681baf369e7SPeter Brune 
268220f4b53cSBarry Smith   Calling sequence of `beginhook`:
2683a4e35b19SJacob Faibussowitsch + dm   - global `DM`
2684baf369e7SPeter Brune . g    - global vector
2685baf369e7SPeter Brune . mode - mode
2686baf369e7SPeter Brune . l    - local vector
2687baf369e7SPeter Brune - ctx  - optional user-defined function context
2688baf369e7SPeter Brune 
268920f4b53cSBarry Smith   Calling sequence of `endhook`:
2690a4e35b19SJacob Faibussowitsch + dm   - global `DM`
2691a4e35b19SJacob Faibussowitsch . g    - global vector
2692a4e35b19SJacob Faibussowitsch . mode - mode
2693a4e35b19SJacob Faibussowitsch . l    - local vector
2694baf369e7SPeter Brune - ctx  - optional user-defined function context
2695baf369e7SPeter Brune 
2696baf369e7SPeter Brune   Level: advanced
2697baf369e7SPeter Brune 
2698bb7acecfSBarry Smith   Note:
2699bb7acecfSBarry Smith   The hook may be used to provide, for example, values that represent boundary conditions in the local vectors that do not exist on the global vector.
2700bb7acecfSBarry Smith 
27011cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGlobalToLocal()`, `DMRefineHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
2702baf369e7SPeter Brune @*/
2703a4e35b19SJacob Faibussowitsch PetscErrorCode DMGlobalToLocalHookAdd(DM dm, PetscErrorCode (*beginhook)(DM dm, Vec g, InsertMode mode, Vec l, void *ctx), PetscErrorCode (*endhook)(DM dm, Vec g, InsertMode mode, Vec l, void *ctx), void *ctx)
2704d71ae5a4SJacob Faibussowitsch {
2705baf369e7SPeter Brune   DMGlobalToLocalHookLink link, *p;
2706baf369e7SPeter Brune 
2707baf369e7SPeter Brune   PetscFunctionBegin;
2708baf369e7SPeter Brune   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2709baf369e7SPeter Brune   for (p = &dm->gtolhook; *p; p = &(*p)->next) { } /* Scan to the end of the current list of hooks */
27109566063dSJacob Faibussowitsch   PetscCall(PetscNew(&link));
2711baf369e7SPeter Brune   link->beginhook = beginhook;
2712baf369e7SPeter Brune   link->endhook   = endhook;
2713baf369e7SPeter Brune   link->ctx       = ctx;
27140298fd71SBarry Smith   link->next      = NULL;
2715baf369e7SPeter Brune   *p              = link;
27163ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2717baf369e7SPeter Brune }
2718baf369e7SPeter Brune 
2719d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMGlobalToLocalHook_Constraints(DM dm, Vec g, InsertMode mode, Vec l, void *ctx)
2720d71ae5a4SJacob Faibussowitsch {
27214c274da1SToby Isaac   Mat          cMat;
272279769bd5SJed Brown   Vec          cVec, cBias;
27234c274da1SToby Isaac   PetscSection section, cSec;
27244c274da1SToby Isaac   PetscInt     pStart, pEnd, p, dof;
27254c274da1SToby Isaac 
27264c274da1SToby Isaac   PetscFunctionBegin;
2727a4e35b19SJacob Faibussowitsch   (void)g;
2728a4e35b19SJacob Faibussowitsch   (void)ctx;
27294c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
27309566063dSJacob Faibussowitsch   PetscCall(DMGetDefaultConstraints(dm, &cSec, &cMat, &cBias));
27314c274da1SToby Isaac   if (cMat && (mode == INSERT_VALUES || mode == INSERT_ALL_VALUES || mode == INSERT_BC_VALUES)) {
27325db9a05bSToby Isaac     PetscInt nRows;
27335db9a05bSToby Isaac 
27349566063dSJacob Faibussowitsch     PetscCall(MatGetSize(cMat, &nRows, NULL));
27353ba16761SJacob Faibussowitsch     if (nRows <= 0) PetscFunctionReturn(PETSC_SUCCESS);
27369566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &section));
27379566063dSJacob Faibussowitsch     PetscCall(MatCreateVecs(cMat, NULL, &cVec));
27389566063dSJacob Faibussowitsch     PetscCall(MatMult(cMat, l, cVec));
27399566063dSJacob Faibussowitsch     if (cBias) PetscCall(VecAXPY(cVec, 1., cBias));
27409566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetChart(cSec, &pStart, &pEnd));
27414c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
27429566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetDof(cSec, p, &dof));
27434c274da1SToby Isaac       if (dof) {
27444c274da1SToby Isaac         PetscScalar *vals;
27459566063dSJacob Faibussowitsch         PetscCall(VecGetValuesSection(cVec, cSec, p, &vals));
27469566063dSJacob Faibussowitsch         PetscCall(VecSetValuesSection(l, section, p, vals, INSERT_ALL_VALUES));
27474c274da1SToby Isaac       }
27484c274da1SToby Isaac     }
27499566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&cVec));
27504c274da1SToby Isaac   }
27513ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
27524c274da1SToby Isaac }
27534c274da1SToby Isaac 
275447c6ae99SBarry Smith /*@
275501729b5cSPatrick Sanan   DMGlobalToLocal - update local vectors from global vector
275601729b5cSPatrick Sanan 
275720f4b53cSBarry Smith   Neighbor-wise Collective
275801729b5cSPatrick Sanan 
275901729b5cSPatrick Sanan   Input Parameters:
2760bb7acecfSBarry Smith + dm   - the `DM` object
276101729b5cSPatrick Sanan . g    - the global vector
2762bb7acecfSBarry Smith . mode - `INSERT_VALUES` or `ADD_VALUES`
276301729b5cSPatrick Sanan - l    - the local vector
276401729b5cSPatrick Sanan 
276520f4b53cSBarry Smith   Level: beginner
276620f4b53cSBarry Smith 
276701729b5cSPatrick Sanan   Notes:
2768bb7acecfSBarry Smith   The communication involved in this update can be overlapped with computation by instead using
2769bb7acecfSBarry Smith   `DMGlobalToLocalBegin()` and `DMGlobalToLocalEnd()`.
2770bb7acecfSBarry Smith 
2771bb7acecfSBarry Smith   `DMGlobalToLocalHookAdd()` may be used to provide additional operations that are performed during the update process.
277201729b5cSPatrick Sanan 
27731cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGlobalToLocalHookAdd()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`,
277460225df5SJacob Faibussowitsch           `DMGlobalToLocalEnd()`, `DMLocalToGlobalBegin()`, `DMLocalToGlobal()`, `DMLocalToGlobalEnd()`,
2775bb7acecfSBarry Smith           `DMGlobalToLocalBegin()` `DMGlobalToLocalEnd()`
277601729b5cSPatrick Sanan @*/
2777d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGlobalToLocal(DM dm, Vec g, InsertMode mode, Vec l)
2778d71ae5a4SJacob Faibussowitsch {
277901729b5cSPatrick Sanan   PetscFunctionBegin;
27809566063dSJacob Faibussowitsch   PetscCall(DMGlobalToLocalBegin(dm, g, mode, l));
27819566063dSJacob Faibussowitsch   PetscCall(DMGlobalToLocalEnd(dm, g, mode, l));
27823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
278301729b5cSPatrick Sanan }
278401729b5cSPatrick Sanan 
278501729b5cSPatrick Sanan /*@
278647c6ae99SBarry Smith   DMGlobalToLocalBegin - Begins updating local vectors from global vector
278747c6ae99SBarry Smith 
278820f4b53cSBarry Smith   Neighbor-wise Collective
278947c6ae99SBarry Smith 
279047c6ae99SBarry Smith   Input Parameters:
2791bb7acecfSBarry Smith + dm   - the `DM` object
279247c6ae99SBarry Smith . g    - the global vector
2793bb7acecfSBarry Smith . mode - `INSERT_VALUES` or `ADD_VALUES`
279447c6ae99SBarry Smith - l    - the local vector
279547c6ae99SBarry Smith 
279601729b5cSPatrick Sanan   Level: intermediate
279747c6ae99SBarry Smith 
2798bb7acecfSBarry Smith   Notes:
2799bb7acecfSBarry Smith   The operation is completed with `DMGlobalToLocalEnd()`
2800bb7acecfSBarry Smith 
2801bb7acecfSBarry Smith   One can perform local computations between the `DMGlobalToLocalBegin()` and  `DMGlobalToLocalEnd()` to overlap communication and computation
2802bb7acecfSBarry Smith 
2803bb7acecfSBarry Smith   `DMGlobalToLocal()` is a short form of  `DMGlobalToLocalBegin()` and  `DMGlobalToLocalEnd()`
2804bb7acecfSBarry Smith 
2805bb7acecfSBarry Smith   `DMGlobalToLocalHookAdd()` may be used to provide additional operations that are performed during the update process.
2806bb7acecfSBarry Smith 
280760225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocal()`, `DMGlobalToLocalEnd()`, `DMLocalToGlobalBegin()`, `DMLocalToGlobal()`, `DMLocalToGlobalEnd()`
280847c6ae99SBarry Smith @*/
2809d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGlobalToLocalBegin(DM dm, Vec g, InsertMode mode, Vec l)
2810d71ae5a4SJacob Faibussowitsch {
28117128ae9fSMatthew G Knepley   PetscSF                 sf;
2812baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
281347c6ae99SBarry Smith 
281447c6ae99SBarry Smith   PetscFunctionBegin;
2815171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2816baf369e7SPeter Brune   for (link = dm->gtolhook; link; link = link->next) {
28171baa6e33SBarry Smith     if (link->beginhook) PetscCall((*link->beginhook)(dm, g, mode, l, link->ctx));
2818baf369e7SPeter Brune   }
28199566063dSJacob Faibussowitsch   PetscCall(DMGetSectionSF(dm, &sf));
28207128ae9fSMatthew G Knepley   if (sf) {
2821ae5cfb4aSMatthew G. Knepley     const PetscScalar *gArray;
2822ae5cfb4aSMatthew G. Knepley     PetscScalar       *lArray;
2823d0295fc0SJunchao Zhang     PetscMemType       lmtype, gmtype;
28247128ae9fSMatthew G Knepley 
28257a8be351SBarry Smith     PetscCheck(mode != ADD_VALUES, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %d", (int)mode);
28269566063dSJacob Faibussowitsch     PetscCall(VecGetArrayAndMemType(l, &lArray, &lmtype));
28279566063dSJacob Faibussowitsch     PetscCall(VecGetArrayReadAndMemType(g, &gArray, &gmtype));
28289566063dSJacob Faibussowitsch     PetscCall(PetscSFBcastWithMemTypeBegin(sf, MPIU_SCALAR, gmtype, gArray, lmtype, lArray, MPI_REPLACE));
28299566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayAndMemType(l, &lArray));
28309566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayReadAndMemType(g, &gArray));
28317128ae9fSMatthew G Knepley   } else {
2832fa1e479aSStefano Zampini     PetscUseTypeMethod(dm, globaltolocalbegin, g, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), l);
28337128ae9fSMatthew G Knepley   }
28343ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
283547c6ae99SBarry Smith }
283647c6ae99SBarry Smith 
283747c6ae99SBarry Smith /*@
283847c6ae99SBarry Smith   DMGlobalToLocalEnd - Ends updating local vectors from global vector
283947c6ae99SBarry Smith 
284020f4b53cSBarry Smith   Neighbor-wise Collective
284147c6ae99SBarry Smith 
284247c6ae99SBarry Smith   Input Parameters:
2843bb7acecfSBarry Smith + dm   - the `DM` object
284447c6ae99SBarry Smith . g    - the global vector
2845bb7acecfSBarry Smith . mode - `INSERT_VALUES` or `ADD_VALUES`
284647c6ae99SBarry Smith - l    - the local vector
284747c6ae99SBarry Smith 
284801729b5cSPatrick Sanan   Level: intermediate
284947c6ae99SBarry Smith 
2850bb7acecfSBarry Smith   Note:
2851bb7acecfSBarry Smith   See `DMGlobalToLocalBegin()` for details.
2852bb7acecfSBarry Smith 
285360225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocal()`, `DMLocalToGlobalBegin()`, `DMLocalToGlobal()`, `DMLocalToGlobalEnd()`
285447c6ae99SBarry Smith @*/
2855d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGlobalToLocalEnd(DM dm, Vec g, InsertMode mode, Vec l)
2856d71ae5a4SJacob Faibussowitsch {
28577128ae9fSMatthew G Knepley   PetscSF                 sf;
2858ae5cfb4aSMatthew G. Knepley   const PetscScalar      *gArray;
2859ae5cfb4aSMatthew G. Knepley   PetscScalar            *lArray;
2860ca3d3a14SMatthew G. Knepley   PetscBool               transform;
2861baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
2862d0295fc0SJunchao Zhang   PetscMemType            lmtype, gmtype;
286347c6ae99SBarry Smith 
286447c6ae99SBarry Smith   PetscFunctionBegin;
2865171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
28669566063dSJacob Faibussowitsch   PetscCall(DMGetSectionSF(dm, &sf));
28679566063dSJacob Faibussowitsch   PetscCall(DMHasBasisTransform(dm, &transform));
28687128ae9fSMatthew G Knepley   if (sf) {
28697a8be351SBarry Smith     PetscCheck(mode != ADD_VALUES, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %d", (int)mode);
28707128ae9fSMatthew G Knepley 
28719566063dSJacob Faibussowitsch     PetscCall(VecGetArrayAndMemType(l, &lArray, &lmtype));
28729566063dSJacob Faibussowitsch     PetscCall(VecGetArrayReadAndMemType(g, &gArray, &gmtype));
28739566063dSJacob Faibussowitsch     PetscCall(PetscSFBcastEnd(sf, MPIU_SCALAR, gArray, lArray, MPI_REPLACE));
28749566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayAndMemType(l, &lArray));
28759566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayReadAndMemType(g, &gArray));
28769566063dSJacob Faibussowitsch     if (transform) PetscCall(DMPlexGlobalToLocalBasis(dm, l));
28777128ae9fSMatthew G Knepley   } else {
2878fa1e479aSStefano Zampini     PetscUseTypeMethod(dm, globaltolocalend, g, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), l);
28797128ae9fSMatthew G Knepley   }
28809566063dSJacob Faibussowitsch   PetscCall(DMGlobalToLocalHook_Constraints(dm, g, mode, l, NULL));
2881baf369e7SPeter Brune   for (link = dm->gtolhook; link; link = link->next) {
28829566063dSJacob Faibussowitsch     if (link->endhook) PetscCall((*link->endhook)(dm, g, mode, l, link->ctx));
2883baf369e7SPeter Brune   }
28843ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
288547c6ae99SBarry Smith }
288647c6ae99SBarry Smith 
2887d4d07f1eSToby Isaac /*@C
2888d4d07f1eSToby Isaac   DMLocalToGlobalHookAdd - adds a callback to be run when a local to global is called
2889d4d07f1eSToby Isaac 
289020f4b53cSBarry Smith   Logically Collective
2891d4d07f1eSToby Isaac 
28924165533cSJose E. Roman   Input Parameters:
2893bb7acecfSBarry Smith + dm        - the `DM`
2894bb7acecfSBarry Smith . beginhook - function to run at the beginning of `DMLocalToGlobalBegin()`
2895bb7acecfSBarry Smith . endhook   - function to run after `DMLocalToGlobalEnd()` has completed
289620f4b53cSBarry Smith - ctx       - [optional] user-defined context for provide data for the hooks (may be `NULL`)
2897d4d07f1eSToby Isaac 
289820f4b53cSBarry Smith   Calling sequence of `beginhook`:
2899a4e35b19SJacob Faibussowitsch + global - global `DM`
2900d4d07f1eSToby Isaac . l      - local vector
2901d4d07f1eSToby Isaac . mode   - mode
2902d4d07f1eSToby Isaac . g      - global vector
2903d4d07f1eSToby Isaac - ctx    - optional user-defined function context
2904d4d07f1eSToby Isaac 
290520f4b53cSBarry Smith   Calling sequence of `endhook`:
2906bb7acecfSBarry Smith + global - global `DM`
2907d4d07f1eSToby Isaac . l      - local vector
2908d4d07f1eSToby Isaac . mode   - mode
2909d4d07f1eSToby Isaac . g      - global vector
2910d4d07f1eSToby Isaac - ctx    - optional user-defined function context
2911d4d07f1eSToby Isaac 
2912d4d07f1eSToby Isaac   Level: advanced
2913d4d07f1eSToby Isaac 
29141cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLocalToGlobal()`, `DMRefineHookAdd()`, `DMGlobalToLocalHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
2915d4d07f1eSToby Isaac @*/
2916a4e35b19SJacob Faibussowitsch PetscErrorCode DMLocalToGlobalHookAdd(DM dm, PetscErrorCode (*beginhook)(DM global, Vec l, InsertMode mode, Vec g, void *ctx), PetscErrorCode (*endhook)(DM global, Vec l, InsertMode mode, Vec g, void *ctx), void *ctx)
2917d71ae5a4SJacob Faibussowitsch {
2918d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link, *p;
2919d4d07f1eSToby Isaac 
2920d4d07f1eSToby Isaac   PetscFunctionBegin;
2921d4d07f1eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2922d4d07f1eSToby Isaac   for (p = &dm->ltoghook; *p; p = &(*p)->next) { } /* Scan to the end of the current list of hooks */
29239566063dSJacob Faibussowitsch   PetscCall(PetscNew(&link));
2924d4d07f1eSToby Isaac   link->beginhook = beginhook;
2925d4d07f1eSToby Isaac   link->endhook   = endhook;
2926d4d07f1eSToby Isaac   link->ctx       = ctx;
2927d4d07f1eSToby Isaac   link->next      = NULL;
2928d4d07f1eSToby Isaac   *p              = link;
29293ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2930d4d07f1eSToby Isaac }
2931d4d07f1eSToby Isaac 
2932d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMLocalToGlobalHook_Constraints(DM dm, Vec l, InsertMode mode, Vec g, void *ctx)
2933d71ae5a4SJacob Faibussowitsch {
29344c274da1SToby Isaac   Mat          cMat;
29354c274da1SToby Isaac   Vec          cVec;
29364c274da1SToby Isaac   PetscSection section, cSec;
29374c274da1SToby Isaac   PetscInt     pStart, pEnd, p, dof;
29384c274da1SToby Isaac 
29394c274da1SToby Isaac   PetscFunctionBegin;
2940a4e35b19SJacob Faibussowitsch   (void)g;
2941a4e35b19SJacob Faibussowitsch   (void)ctx;
29424c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
29439566063dSJacob Faibussowitsch   PetscCall(DMGetDefaultConstraints(dm, &cSec, &cMat, NULL));
29444c274da1SToby Isaac   if (cMat && (mode == ADD_VALUES || mode == ADD_ALL_VALUES || mode == ADD_BC_VALUES)) {
29455db9a05bSToby Isaac     PetscInt nRows;
29465db9a05bSToby Isaac 
29479566063dSJacob Faibussowitsch     PetscCall(MatGetSize(cMat, &nRows, NULL));
29483ba16761SJacob Faibussowitsch     if (nRows <= 0) PetscFunctionReturn(PETSC_SUCCESS);
29499566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &section));
29509566063dSJacob Faibussowitsch     PetscCall(MatCreateVecs(cMat, NULL, &cVec));
29519566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetChart(cSec, &pStart, &pEnd));
29524c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
29539566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetDof(cSec, p, &dof));
29544c274da1SToby Isaac       if (dof) {
29554c274da1SToby Isaac         PetscInt     d;
29564c274da1SToby Isaac         PetscScalar *vals;
29579566063dSJacob Faibussowitsch         PetscCall(VecGetValuesSection(l, section, p, &vals));
29589566063dSJacob Faibussowitsch         PetscCall(VecSetValuesSection(cVec, cSec, p, vals, mode));
29594c274da1SToby Isaac         /* for this to be the true transpose, we have to zero the values that
29604c274da1SToby Isaac          * we just extracted */
2961ad540459SPierre Jolivet         for (d = 0; d < dof; d++) vals[d] = 0.;
29624c274da1SToby Isaac       }
29634c274da1SToby Isaac     }
29649566063dSJacob Faibussowitsch     PetscCall(MatMultTransposeAdd(cMat, cVec, l, l));
29659566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&cVec));
29664c274da1SToby Isaac   }
29673ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
29684c274da1SToby Isaac }
296901729b5cSPatrick Sanan /*@
297001729b5cSPatrick Sanan   DMLocalToGlobal - updates global vectors from local vectors
297101729b5cSPatrick Sanan 
297220f4b53cSBarry Smith   Neighbor-wise Collective
297301729b5cSPatrick Sanan 
297401729b5cSPatrick Sanan   Input Parameters:
2975bb7acecfSBarry Smith + dm   - the `DM` object
297601729b5cSPatrick Sanan . l    - the local vector
2977bb7acecfSBarry Smith . mode - if `INSERT_VALUES` then no parallel communication is used, if `ADD_VALUES` then all ghost points from the same base point accumulate into that base point.
297801729b5cSPatrick Sanan - g    - the global vector
297901729b5cSPatrick Sanan 
298020f4b53cSBarry Smith   Level: beginner
298120f4b53cSBarry Smith 
298201729b5cSPatrick Sanan   Notes:
298301729b5cSPatrick Sanan   The communication involved in this update can be overlapped with computation by using
2984bb7acecfSBarry Smith   `DMLocalToGlobalBegin()` and `DMLocalToGlobalEnd()`.
298501729b5cSPatrick Sanan 
2986bb7acecfSBarry Smith   In the `ADD_VALUES` case you normally would zero the receiving vector before beginning this operation.
2987bb7acecfSBarry Smith 
2988bb7acecfSBarry Smith   `INSERT_VALUES` is not supported for `DMDA`; in that case simply compute the values directly into a global vector instead of a local one.
2989bb7acecfSBarry Smith 
2990bb7acecfSBarry Smith   Use `DMLocalToGlobalHookAdd()` to add additional operations that are performed on the data during the update process
299101729b5cSPatrick Sanan 
29921cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLocalToGlobalBegin()`, `DMLocalToGlobalEnd()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocal()`, `DMGlobalToLocalEnd()`, `DMGlobalToLocalBegin()`, `DMLocalToGlobalHookAdd()`, `DMGlobaToLocallHookAdd()`
299301729b5cSPatrick Sanan @*/
2994d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLocalToGlobal(DM dm, Vec l, InsertMode mode, Vec g)
2995d71ae5a4SJacob Faibussowitsch {
299601729b5cSPatrick Sanan   PetscFunctionBegin;
29979566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalBegin(dm, l, mode, g));
29989566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalEnd(dm, l, mode, g));
29993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
300001729b5cSPatrick Sanan }
30014c274da1SToby Isaac 
300247c6ae99SBarry Smith /*@
300301729b5cSPatrick Sanan   DMLocalToGlobalBegin - begins updating global vectors from local vectors
30049a42bb27SBarry Smith 
300520f4b53cSBarry Smith   Neighbor-wise Collective
30069a42bb27SBarry Smith 
30079a42bb27SBarry Smith   Input Parameters:
3008bb7acecfSBarry Smith + dm   - the `DM` object
3009f6813fd5SJed Brown . l    - the local vector
3010aa624791SPierre Jolivet . mode - if `INSERT_VALUES` then no parallel communication is used, if `ADD_VALUES` then all ghost points from the same base point accumulate into that base point.
30111eb28f2eSBarry Smith - g    - the global vector
30129a42bb27SBarry Smith 
301320f4b53cSBarry Smith   Level: intermediate
301420f4b53cSBarry Smith 
301595452b02SPatrick Sanan   Notes:
3016bb7acecfSBarry Smith   In the `ADD_VALUES` case you normally would zero the receiving vector before beginning this operation.
3017bb7acecfSBarry Smith 
3018bb7acecfSBarry Smith   `INSERT_VALUES is` not supported for `DMDA`, in that case simply compute the values directly into a global vector instead of a local one.
3019bb7acecfSBarry Smith 
3020bb7acecfSBarry Smith   Use `DMLocalToGlobalEnd()` to complete the communication process.
3021bb7acecfSBarry Smith 
3022bb7acecfSBarry Smith   `DMLocalToGlobal()` is a short form of  `DMLocalToGlobalBegin()` and  `DMLocalToGlobalEnd()`
3023bb7acecfSBarry Smith 
3024bb7acecfSBarry Smith   `DMLocalToGlobalHookAdd()` may be used to provide additional operations that are performed during the update process.
30259a42bb27SBarry Smith 
30261cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLocalToGlobal()`, `DMLocalToGlobalEnd()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocal()`, `DMGlobalToLocalEnd()`, `DMGlobalToLocalBegin()`
30279a42bb27SBarry Smith @*/
3028d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLocalToGlobalBegin(DM dm, Vec l, InsertMode mode, Vec g)
3029d71ae5a4SJacob Faibussowitsch {
30307128ae9fSMatthew G Knepley   PetscSF                 sf;
303184330215SMatthew G. Knepley   PetscSection            s, gs;
3032d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
3033ca3d3a14SMatthew G. Knepley   Vec                     tmpl;
3034ae5cfb4aSMatthew G. Knepley   const PetscScalar      *lArray;
3035ae5cfb4aSMatthew G. Knepley   PetscScalar            *gArray;
3036fa88e482SJed Brown   PetscBool               isInsert, transform, l_inplace = PETSC_FALSE, g_inplace = PETSC_FALSE;
3037d0295fc0SJunchao Zhang   PetscMemType            lmtype = PETSC_MEMTYPE_HOST, gmtype = PETSC_MEMTYPE_HOST;
30389a42bb27SBarry Smith 
30399a42bb27SBarry Smith   PetscFunctionBegin;
3040171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3041d4d07f1eSToby Isaac   for (link = dm->ltoghook; link; link = link->next) {
30421baa6e33SBarry Smith     if (link->beginhook) PetscCall((*link->beginhook)(dm, l, mode, g, link->ctx));
3043d4d07f1eSToby Isaac   }
30449566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalHook_Constraints(dm, l, mode, g, NULL));
30459566063dSJacob Faibussowitsch   PetscCall(DMGetSectionSF(dm, &sf));
30469566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &s));
30477128ae9fSMatthew G Knepley   switch (mode) {
30487128ae9fSMatthew G Knepley   case INSERT_VALUES:
30497128ae9fSMatthew G Knepley   case INSERT_ALL_VALUES:
3050d71ae5a4SJacob Faibussowitsch   case INSERT_BC_VALUES:
3051d71ae5a4SJacob Faibussowitsch     isInsert = PETSC_TRUE;
3052d71ae5a4SJacob Faibussowitsch     break;
30537128ae9fSMatthew G Knepley   case ADD_VALUES:
30547128ae9fSMatthew G Knepley   case ADD_ALL_VALUES:
3055d71ae5a4SJacob Faibussowitsch   case ADD_BC_VALUES:
3056d71ae5a4SJacob Faibussowitsch     isInsert = PETSC_FALSE;
3057d71ae5a4SJacob Faibussowitsch     break;
3058d71ae5a4SJacob Faibussowitsch   default:
3059d71ae5a4SJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %d", mode);
30607128ae9fSMatthew G Knepley   }
3061ca3d3a14SMatthew G. Knepley   if ((sf && !isInsert) || (s && isInsert)) {
30629566063dSJacob Faibussowitsch     PetscCall(DMHasBasisTransform(dm, &transform));
3063ca3d3a14SMatthew G. Knepley     if (transform) {
30649566063dSJacob Faibussowitsch       PetscCall(DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl));
30659566063dSJacob Faibussowitsch       PetscCall(VecCopy(l, tmpl));
30669566063dSJacob Faibussowitsch       PetscCall(DMPlexLocalToGlobalBasis(dm, tmpl));
30679566063dSJacob Faibussowitsch       PetscCall(VecGetArrayRead(tmpl, &lArray));
3068fa88e482SJed Brown     } else if (isInsert) {
30699566063dSJacob Faibussowitsch       PetscCall(VecGetArrayRead(l, &lArray));
3070fa88e482SJed Brown     } else {
30719566063dSJacob Faibussowitsch       PetscCall(VecGetArrayReadAndMemType(l, &lArray, &lmtype));
3072fa88e482SJed Brown       l_inplace = PETSC_TRUE;
3073ca3d3a14SMatthew G. Knepley     }
3074fa88e482SJed Brown     if (s && isInsert) {
30759566063dSJacob Faibussowitsch       PetscCall(VecGetArray(g, &gArray));
3076fa88e482SJed Brown     } else {
30779566063dSJacob Faibussowitsch       PetscCall(VecGetArrayAndMemType(g, &gArray, &gmtype));
3078fa88e482SJed Brown       g_inplace = PETSC_TRUE;
3079fa88e482SJed Brown     }
3080ca3d3a14SMatthew G. Knepley     if (sf && !isInsert) {
30819566063dSJacob Faibussowitsch       PetscCall(PetscSFReduceWithMemTypeBegin(sf, MPIU_SCALAR, lmtype, lArray, gmtype, gArray, MPIU_SUM));
308284330215SMatthew G. Knepley     } else if (s && isInsert) {
308384330215SMatthew G. Knepley       PetscInt gStart, pStart, pEnd, p;
308484330215SMatthew G. Knepley 
30859566063dSJacob Faibussowitsch       PetscCall(DMGetGlobalSection(dm, &gs));
30869566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetChart(s, &pStart, &pEnd));
30879566063dSJacob Faibussowitsch       PetscCall(VecGetOwnershipRange(g, &gStart, NULL));
308884330215SMatthew G. Knepley       for (p = pStart; p < pEnd; ++p) {
3089b3b16f48SMatthew G. Knepley         PetscInt dof, gdof, cdof, gcdof, off, goff, d, e;
309084330215SMatthew G. Knepley 
30919566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetDof(s, p, &dof));
30929566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetDof(gs, p, &gdof));
30939566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetConstraintDof(s, p, &cdof));
30949566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetConstraintDof(gs, p, &gcdof));
30959566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetOffset(s, p, &off));
30969566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetOffset(gs, p, &goff));
3097b3b16f48SMatthew G. Knepley         /* Ignore off-process data and points with no global data */
309803442857SMatthew G. Knepley         if (!gdof || goff < 0) continue;
30997a8be351SBarry Smith         PetscCheck(dof == gdof, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %" PetscInt_FMT " dof: %" PetscInt_FMT " gdof: %" PetscInt_FMT " cdof: %" PetscInt_FMT " gcdof: %" PetscInt_FMT, p, dof, gdof, cdof, gcdof);
3100b3b16f48SMatthew G. Knepley         /* If no constraints are enforced in the global vector */
3101b3b16f48SMatthew G. Knepley         if (!gcdof) {
310284330215SMatthew G. Knepley           for (d = 0; d < dof; ++d) gArray[goff - gStart + d] = lArray[off + d];
3103b3b16f48SMatthew G. Knepley           /* If constraints are enforced in the global vector */
3104b3b16f48SMatthew G. Knepley         } else if (cdof == gcdof) {
310584330215SMatthew G. Knepley           const PetscInt *cdofs;
310684330215SMatthew G. Knepley           PetscInt        cind = 0;
310784330215SMatthew G. Knepley 
31089566063dSJacob Faibussowitsch           PetscCall(PetscSectionGetConstraintIndices(s, p, &cdofs));
3109b3b16f48SMatthew G. Knepley           for (d = 0, e = 0; d < dof; ++d) {
31109371c9d4SSatish Balay             if ((cind < cdof) && (d == cdofs[cind])) {
31119371c9d4SSatish Balay               ++cind;
31129371c9d4SSatish Balay               continue;
31139371c9d4SSatish Balay             }
3114b3b16f48SMatthew G. Knepley             gArray[goff - gStart + e++] = lArray[off + d];
311584330215SMatthew G. Knepley           }
31167a8be351SBarry Smith         } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %" PetscInt_FMT " dof: %" PetscInt_FMT " gdof: %" PetscInt_FMT " cdof: %" PetscInt_FMT " gcdof: %" PetscInt_FMT, p, dof, gdof, cdof, gcdof);
311784330215SMatthew G. Knepley       }
3118ca3d3a14SMatthew G. Knepley     }
3119fa88e482SJed Brown     if (g_inplace) {
31209566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayAndMemType(g, &gArray));
3121fa88e482SJed Brown     } else {
31229566063dSJacob Faibussowitsch       PetscCall(VecRestoreArray(g, &gArray));
3123fa88e482SJed Brown     }
3124ca3d3a14SMatthew G. Knepley     if (transform) {
31259566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayRead(tmpl, &lArray));
31269566063dSJacob Faibussowitsch       PetscCall(DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl));
3127fa88e482SJed Brown     } else if (l_inplace) {
31289566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayReadAndMemType(l, &lArray));
3129ca3d3a14SMatthew G. Knepley     } else {
31309566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayRead(l, &lArray));
3131ca3d3a14SMatthew G. Knepley     }
31327128ae9fSMatthew G Knepley   } else {
3133fa1e479aSStefano Zampini     PetscUseTypeMethod(dm, localtoglobalbegin, l, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), g);
31347128ae9fSMatthew G Knepley   }
31353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
31369a42bb27SBarry Smith }
31379a42bb27SBarry Smith 
31389a42bb27SBarry Smith /*@
31399a42bb27SBarry Smith   DMLocalToGlobalEnd - updates global vectors from local vectors
314047c6ae99SBarry Smith 
314120f4b53cSBarry Smith   Neighbor-wise Collective
314247c6ae99SBarry Smith 
314347c6ae99SBarry Smith   Input Parameters:
3144bb7acecfSBarry Smith + dm   - the `DM` object
3145f6813fd5SJed Brown . l    - the local vector
3146bb7acecfSBarry Smith . mode - `INSERT_VALUES` or `ADD_VALUES`
3147f6813fd5SJed Brown - g    - the global vector
314847c6ae99SBarry Smith 
314901729b5cSPatrick Sanan   Level: intermediate
315047c6ae99SBarry Smith 
3151bb7acecfSBarry Smith   Note:
3152bb7acecfSBarry Smith   See `DMLocalToGlobalBegin()` for full details
3153bb7acecfSBarry Smith 
315460225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMLocalToGlobalBegin()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocalEnd()`
315547c6ae99SBarry Smith @*/
3156d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLocalToGlobalEnd(DM dm, Vec l, InsertMode mode, Vec g)
3157d71ae5a4SJacob Faibussowitsch {
31587128ae9fSMatthew G Knepley   PetscSF                 sf;
315984330215SMatthew G. Knepley   PetscSection            s;
3160d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
3161ca3d3a14SMatthew G. Knepley   PetscBool               isInsert, transform;
316247c6ae99SBarry Smith 
316347c6ae99SBarry Smith   PetscFunctionBegin;
3164171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
31659566063dSJacob Faibussowitsch   PetscCall(DMGetSectionSF(dm, &sf));
31669566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &s));
31677128ae9fSMatthew G Knepley   switch (mode) {
31687128ae9fSMatthew G Knepley   case INSERT_VALUES:
3169d71ae5a4SJacob Faibussowitsch   case INSERT_ALL_VALUES:
3170d71ae5a4SJacob Faibussowitsch     isInsert = PETSC_TRUE;
3171d71ae5a4SJacob Faibussowitsch     break;
31727128ae9fSMatthew G Knepley   case ADD_VALUES:
3173d71ae5a4SJacob Faibussowitsch   case ADD_ALL_VALUES:
3174d71ae5a4SJacob Faibussowitsch     isInsert = PETSC_FALSE;
3175d71ae5a4SJacob Faibussowitsch     break;
3176d71ae5a4SJacob Faibussowitsch   default:
3177d71ae5a4SJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %d", mode);
31787128ae9fSMatthew G Knepley   }
317984330215SMatthew G. Knepley   if (sf && !isInsert) {
3180ae5cfb4aSMatthew G. Knepley     const PetscScalar *lArray;
3181ae5cfb4aSMatthew G. Knepley     PetscScalar       *gArray;
3182ca3d3a14SMatthew G. Knepley     Vec                tmpl;
318384330215SMatthew G. Knepley 
31849566063dSJacob Faibussowitsch     PetscCall(DMHasBasisTransform(dm, &transform));
3185ca3d3a14SMatthew G. Knepley     if (transform) {
31869566063dSJacob Faibussowitsch       PetscCall(DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl));
31879566063dSJacob Faibussowitsch       PetscCall(VecGetArrayRead(tmpl, &lArray));
3188ca3d3a14SMatthew G. Knepley     } else {
31899566063dSJacob Faibussowitsch       PetscCall(VecGetArrayReadAndMemType(l, &lArray, NULL));
3190ca3d3a14SMatthew G. Knepley     }
31919566063dSJacob Faibussowitsch     PetscCall(VecGetArrayAndMemType(g, &gArray, NULL));
31929566063dSJacob Faibussowitsch     PetscCall(PetscSFReduceEnd(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM));
3193ca3d3a14SMatthew G. Knepley     if (transform) {
31949566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayRead(tmpl, &lArray));
31959566063dSJacob Faibussowitsch       PetscCall(DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl));
3196ca3d3a14SMatthew G. Knepley     } else {
31979566063dSJacob Faibussowitsch       PetscCall(VecRestoreArrayReadAndMemType(l, &lArray));
3198ca3d3a14SMatthew G. Knepley     }
31999566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayAndMemType(g, &gArray));
320084330215SMatthew G. Knepley   } else if (s && isInsert) {
32017128ae9fSMatthew G Knepley   } else {
3202fa1e479aSStefano Zampini     PetscUseTypeMethod(dm, localtoglobalend, l, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), g);
32037128ae9fSMatthew G Knepley   }
3204d4d07f1eSToby Isaac   for (link = dm->ltoghook; link; link = link->next) {
32059566063dSJacob Faibussowitsch     if (link->endhook) PetscCall((*link->endhook)(dm, g, mode, l, link->ctx));
3206d4d07f1eSToby Isaac   }
32073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
320847c6ae99SBarry Smith }
320947c6ae99SBarry Smith 
3210f089877aSRichard Tran Mills /*@
3211a4e35b19SJacob Faibussowitsch   DMLocalToLocalBegin - Begins the process of mapping values from a local vector (that include
3212a4e35b19SJacob Faibussowitsch   ghost points that contain irrelevant values) to another local vector where the ghost points
3213a4e35b19SJacob Faibussowitsch   in the second are set correctly from values on other MPI ranks.
3214f089877aSRichard Tran Mills 
321520f4b53cSBarry Smith   Neighbor-wise Collective
3216f089877aSRichard Tran Mills 
3217f089877aSRichard Tran Mills   Input Parameters:
3218bb7acecfSBarry Smith + dm   - the `DM` object
3219bc0a1609SRichard Tran Mills . g    - the original local vector
3220bb7acecfSBarry Smith - mode - one of `INSERT_VALUES` or `ADD_VALUES`
3221f089877aSRichard Tran Mills 
3222bc0a1609SRichard Tran Mills   Output Parameter:
3223bc0a1609SRichard Tran Mills . l - the local vector with correct ghost values
3224f089877aSRichard Tran Mills 
3225f089877aSRichard Tran Mills   Level: intermediate
3226f089877aSRichard Tran Mills 
3227a4e35b19SJacob Faibussowitsch   Notes:
3228a4e35b19SJacob Faibussowitsch   Must be followed by `DMLocalToLocalEnd()`.
3229a4e35b19SJacob Faibussowitsch 
323060225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMLocalToLocalEnd()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateLocalVector()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocalEnd()`, `DMLocalToGlobalBegin()`
3231f089877aSRichard Tran Mills @*/
3232d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLocalToLocalBegin(DM dm, Vec g, InsertMode mode, Vec l)
3233d71ae5a4SJacob Faibussowitsch {
3234f089877aSRichard Tran Mills   PetscFunctionBegin;
3235f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
32369f4ada15SMatthew G. Knepley   PetscValidHeaderSpecific(g, VEC_CLASSID, 2);
32379f4ada15SMatthew G. Knepley   PetscValidHeaderSpecific(l, VEC_CLASSID, 4);
32389f4ada15SMatthew G. Knepley   PetscUseTypeMethod(dm, localtolocalbegin, g, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), l);
32393ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3240f089877aSRichard Tran Mills }
3241f089877aSRichard Tran Mills 
3242f089877aSRichard Tran Mills /*@
3243bb7acecfSBarry Smith   DMLocalToLocalEnd - Maps from a local vector to another local vector where the ghost
3244bb7acecfSBarry Smith   points in the second are set correctly. Must be preceded by `DMLocalToLocalBegin()`.
3245f089877aSRichard Tran Mills 
324620f4b53cSBarry Smith   Neighbor-wise Collective
3247f089877aSRichard Tran Mills 
3248f089877aSRichard Tran Mills   Input Parameters:
324960225df5SJacob Faibussowitsch + dm   - the `DM` object
3250bc0a1609SRichard Tran Mills . g    - the original local vector
3251bb7acecfSBarry Smith - mode - one of `INSERT_VALUES` or `ADD_VALUES`
3252f089877aSRichard Tran Mills 
3253bc0a1609SRichard Tran Mills   Output Parameter:
3254bc0a1609SRichard Tran Mills . l - the local vector with correct ghost values
3255f089877aSRichard Tran Mills 
3256f089877aSRichard Tran Mills   Level: intermediate
3257f089877aSRichard Tran Mills 
325860225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMLocalToLocalBegin()`, `DMCoarsen()`, `DMDestroy()`, `DMView()`, `DMCreateLocalVector()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMGlobalToLocalEnd()`, `DMLocalToGlobalBegin()`
3259f089877aSRichard Tran Mills @*/
3260d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLocalToLocalEnd(DM dm, Vec g, InsertMode mode, Vec l)
3261d71ae5a4SJacob Faibussowitsch {
3262f089877aSRichard Tran Mills   PetscFunctionBegin;
3263f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
32649f4ada15SMatthew G. Knepley   PetscValidHeaderSpecific(g, VEC_CLASSID, 2);
32659f4ada15SMatthew G. Knepley   PetscValidHeaderSpecific(l, VEC_CLASSID, 4);
32669f4ada15SMatthew G. Knepley   PetscUseTypeMethod(dm, localtolocalend, g, mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode), l);
32673ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3268f089877aSRichard Tran Mills }
3269f089877aSRichard Tran Mills 
327047c6ae99SBarry Smith /*@
3271bb7acecfSBarry Smith   DMCoarsen - Coarsens a `DM` object using a standard, non-adaptive coarsening of the underlying mesh
327247c6ae99SBarry Smith 
327320f4b53cSBarry Smith   Collective
327447c6ae99SBarry Smith 
3275d8d19677SJose E. Roman   Input Parameters:
3276bb7acecfSBarry Smith + dm   - the `DM` object
327720f4b53cSBarry Smith - comm - the communicator to contain the new `DM` object (or `MPI_COMM_NULL`)
327847c6ae99SBarry Smith 
327947c6ae99SBarry Smith   Output Parameter:
3280bb7acecfSBarry Smith . dmc - the coarsened `DM`
328147c6ae99SBarry Smith 
328247c6ae99SBarry Smith   Level: developer
328347c6ae99SBarry Smith 
32841cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMRefine()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
328547c6ae99SBarry Smith @*/
3286d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCoarsen(DM dm, MPI_Comm comm, DM *dmc)
3287d71ae5a4SJacob Faibussowitsch {
3288b17ce1afSJed Brown   DMCoarsenHookLink link;
328947c6ae99SBarry Smith 
329047c6ae99SBarry Smith   PetscFunctionBegin;
3291171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
32929566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_Coarsen, dm, 0, 0, 0));
3293dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, coarsen, comm, dmc);
3294b9d85ea2SLisandro Dalcin   if (*dmc) {
3295a3574896SRichard Tran Mills     (*dmc)->bind_below = dm->bind_below; /* Propagate this from parent DM; otherwise -dm_bind_below will be useless for multigrid cases. */
32969566063dSJacob Faibussowitsch     PetscCall(DMSetCoarseDM(dm, *dmc));
329743842a1eSJed Brown     (*dmc)->ops->creatematrix = dm->ops->creatematrix;
32989566063dSJacob Faibussowitsch     PetscCall(PetscObjectCopyFortranFunctionPointers((PetscObject)dm, (PetscObject)*dmc));
3299644e2e5bSBarry Smith     (*dmc)->ctx       = dm->ctx;
33000598a293SJed Brown     (*dmc)->levelup   = dm->levelup;
3301656b349aSBarry Smith     (*dmc)->leveldown = dm->leveldown + 1;
33029566063dSJacob Faibussowitsch     PetscCall(DMSetMatType(*dmc, dm->mattype));
3303b17ce1afSJed Brown     for (link = dm->coarsenhook; link; link = link->next) {
33049566063dSJacob Faibussowitsch       if (link->coarsenhook) PetscCall((*link->coarsenhook)(dm, *dmc, link->ctx));
3305b17ce1afSJed Brown     }
3306b9d85ea2SLisandro Dalcin   }
33079566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_Coarsen, dm, 0, 0, 0));
33087a8be351SBarry Smith   PetscCheck(*dmc, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "NULL coarse mesh produced");
33093ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3310b17ce1afSJed Brown }
3311b17ce1afSJed Brown 
3312bb9467b5SJed Brown /*@C
3313b17ce1afSJed Brown   DMCoarsenHookAdd - adds a callback to be run when restricting a nonlinear problem to the coarse grid
3314b17ce1afSJed Brown 
331520f4b53cSBarry Smith   Logically Collective; No Fortran Support
3316b17ce1afSJed Brown 
33174165533cSJose E. Roman   Input Parameters:
3318bb7acecfSBarry Smith + fine         - `DM` on which to run a hook when restricting to a coarser level
3319b17ce1afSJed Brown . coarsenhook  - function to run when setting up a coarser level
3320bb7acecfSBarry Smith . restricthook - function to run to update data on coarser levels (called once per `SNESSolve()`)
332120f4b53cSBarry Smith - ctx          - [optional] user-defined context for provide data for the hooks (may be `NULL`)
3322b17ce1afSJed Brown 
332320f4b53cSBarry Smith   Calling sequence of `coarsenhook`:
3324bb7acecfSBarry Smith + fine   - fine level `DM`
3325bb7acecfSBarry Smith . coarse - coarse level `DM` to restrict problem to
3326b17ce1afSJed Brown - ctx    - optional user-defined function context
3327b17ce1afSJed Brown 
332820f4b53cSBarry Smith   Calling sequence of `restricthook`:
3329bb7acecfSBarry Smith + fine      - fine level `DM`
3330bb7acecfSBarry Smith . mrestrict - matrix restricting a fine-level solution to the coarse grid, usually the transpose of the interpolation
3331c833c3b5SJed Brown . rscale    - scaling vector for restriction
3332c833c3b5SJed Brown . inject    - matrix restricting by injection
3333b17ce1afSJed Brown . coarse    - coarse level DM to update
3334b17ce1afSJed Brown - ctx       - optional user-defined function context
3335b17ce1afSJed Brown 
3336b17ce1afSJed Brown   Level: advanced
3337b17ce1afSJed Brown 
3338b17ce1afSJed Brown   Notes:
3339bb7acecfSBarry Smith   This function is only needed if auxiliary data, attached to the `DM` with `PetscObjectCompose()`, needs to be set up or passed from the fine `DM` to the coarse `DM`.
3340b17ce1afSJed Brown 
3341b17ce1afSJed Brown   If this function is called multiple times, the hooks will be run in the order they are added.
3342b17ce1afSJed Brown 
3343b17ce1afSJed Brown   In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
3344bb7acecfSBarry Smith   extract the finest level information from its context (instead of from the `SNES`).
3345b17ce1afSJed Brown 
3346bb7acecfSBarry Smith   The hooks are automatically called by `DMRestrict()`
3347bb7acecfSBarry Smith 
33481cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsenHookRemove()`, `DMRefineHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
3349b17ce1afSJed Brown @*/
3350a4e35b19SJacob Faibussowitsch PetscErrorCode DMCoarsenHookAdd(DM fine, PetscErrorCode (*coarsenhook)(DM fine, DM coarse, void *ctx), PetscErrorCode (*restricthook)(DM fine, Mat mrestrict, Vec rscale, Mat inject, DM coarse, void *ctx), void *ctx)
3351d71ae5a4SJacob Faibussowitsch {
3352b17ce1afSJed Brown   DMCoarsenHookLink link, *p;
3353b17ce1afSJed Brown 
3354b17ce1afSJed Brown   PetscFunctionBegin;
3355b17ce1afSJed Brown   PetscValidHeaderSpecific(fine, DM_CLASSID, 1);
33561e3d8eccSJed Brown   for (p = &fine->coarsenhook; *p; p = &(*p)->next) { /* Scan to the end of the current list of hooks */
33573ba16761SJacob Faibussowitsch     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(PETSC_SUCCESS);
33581e3d8eccSJed Brown   }
33599566063dSJacob Faibussowitsch   PetscCall(PetscNew(&link));
3360b17ce1afSJed Brown   link->coarsenhook  = coarsenhook;
3361b17ce1afSJed Brown   link->restricthook = restricthook;
3362b17ce1afSJed Brown   link->ctx          = ctx;
33630298fd71SBarry Smith   link->next         = NULL;
3364b17ce1afSJed Brown   *p                 = link;
33653ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3366b17ce1afSJed Brown }
3367b17ce1afSJed Brown 
3368dc822a44SJed Brown /*@C
3369bb7acecfSBarry Smith   DMCoarsenHookRemove - remove a callback set with `DMCoarsenHookAdd()`
3370dc822a44SJed Brown 
337120f4b53cSBarry Smith   Logically Collective; No Fortran Support
3372dc822a44SJed Brown 
33734165533cSJose E. Roman   Input Parameters:
3374bb7acecfSBarry Smith + fine         - `DM` on which to run a hook when restricting to a coarser level
3375dc822a44SJed Brown . coarsenhook  - function to run when setting up a coarser level
3376bb7acecfSBarry Smith . restricthook - function to run to update data on coarser levels
337720f4b53cSBarry Smith - ctx          - [optional] user-defined context for provide data for the hooks (may be `NULL`)
3378dc822a44SJed Brown 
3379dc822a44SJed Brown   Level: advanced
3380dc822a44SJed Brown 
3381bb7acecfSBarry Smith   Note:
3382dc822a44SJed Brown   This function does nothing if the hook is not in the list.
3383dc822a44SJed Brown 
33841cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsenHookAdd()`, `DMRefineHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
3385dc822a44SJed Brown @*/
3386d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCoarsenHookRemove(DM fine, PetscErrorCode (*coarsenhook)(DM, DM, void *), PetscErrorCode (*restricthook)(DM, Mat, Vec, Mat, DM, void *), void *ctx)
3387d71ae5a4SJacob Faibussowitsch {
3388dc822a44SJed Brown   DMCoarsenHookLink link, *p;
3389dc822a44SJed Brown 
3390dc822a44SJed Brown   PetscFunctionBegin;
3391dc822a44SJed Brown   PetscValidHeaderSpecific(fine, DM_CLASSID, 1);
3392dc822a44SJed Brown   for (p = &fine->coarsenhook; *p; p = &(*p)->next) { /* Search the list of current hooks */
3393dc822a44SJed Brown     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
3394dc822a44SJed Brown       link = *p;
3395dc822a44SJed Brown       *p   = link->next;
33969566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
3397dc822a44SJed Brown       break;
3398dc822a44SJed Brown     }
3399dc822a44SJed Brown   }
34003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3401dc822a44SJed Brown }
3402dc822a44SJed Brown 
3403b17ce1afSJed Brown /*@
3404bb7acecfSBarry Smith   DMRestrict - restricts user-defined problem data to a coarser `DM` by running hooks registered by `DMCoarsenHookAdd()`
3405b17ce1afSJed Brown 
3406b17ce1afSJed Brown   Collective if any hooks are
3407b17ce1afSJed Brown 
34084165533cSJose E. Roman   Input Parameters:
3409bb7acecfSBarry Smith + fine    - finer `DM` from which the data is obtained
3410bb7acecfSBarry Smith . restrct - restriction matrix, apply using `MatRestrict()`, usually the transpose of the interpolation
3411e91eccc2SStefano Zampini . rscale  - scaling vector for restriction
3412bb7acecfSBarry Smith . inject  - injection matrix, also use `MatRestrict()`
341320f4b53cSBarry Smith - coarse  - coarser `DM` to update
3414b17ce1afSJed Brown 
3415b17ce1afSJed Brown   Level: developer
3416b17ce1afSJed Brown 
341760225df5SJacob Faibussowitsch   Developer Notes:
3418bb7acecfSBarry Smith   Though this routine is called `DMRestrict()` the hooks are added with `DMCoarsenHookAdd()`, a consistent terminology would be better
3419bb7acecfSBarry Smith 
34201cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsenHookAdd()`, `MatRestrict()`, `DMInterpolate()`, `DMRefineHookAdd()`
3421b17ce1afSJed Brown @*/
3422d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRestrict(DM fine, Mat restrct, Vec rscale, Mat inject, DM coarse)
3423d71ae5a4SJacob Faibussowitsch {
3424b17ce1afSJed Brown   DMCoarsenHookLink link;
3425b17ce1afSJed Brown 
3426b17ce1afSJed Brown   PetscFunctionBegin;
3427b17ce1afSJed Brown   for (link = fine->coarsenhook; link; link = link->next) {
34281baa6e33SBarry Smith     if (link->restricthook) PetscCall((*link->restricthook)(fine, restrct, rscale, inject, coarse, link->ctx));
3429b17ce1afSJed Brown   }
34303ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
343147c6ae99SBarry Smith }
343247c6ae99SBarry Smith 
3433bb9467b5SJed Brown /*@C
3434be081cd6SPeter Brune   DMSubDomainHookAdd - adds a callback to be run when restricting a problem to the coarse grid
34355dbd56e3SPeter Brune 
343620f4b53cSBarry Smith   Logically Collective; No Fortran Support
34375dbd56e3SPeter Brune 
34384165533cSJose E. Roman   Input Parameters:
3439bb7acecfSBarry Smith + global       - global `DM`
3440bb7acecfSBarry Smith . ddhook       - function to run to pass data to the decomposition `DM` upon its creation
34415dbd56e3SPeter Brune . restricthook - function to run to update data on block solve (at the beginning of the block solve)
344220f4b53cSBarry Smith - ctx          - [optional] user-defined context for provide data for the hooks (may be `NULL`)
34435dbd56e3SPeter Brune 
344420f4b53cSBarry Smith   Calling sequence of `ddhook`:
3445bb7acecfSBarry Smith + global - global `DM`
3446bb7acecfSBarry Smith . block  - block `DM`
3447ec4806b8SPeter Brune - ctx    - optional user-defined function context
3448ec4806b8SPeter Brune 
344920f4b53cSBarry Smith   Calling sequence of `restricthook`:
3450bb7acecfSBarry Smith + global - global `DM`
34515dbd56e3SPeter Brune . out    - scatter to the outer (with ghost and overlap points) block vector
34525dbd56e3SPeter Brune . in     - scatter to block vector values only owned locally
3453bb7acecfSBarry Smith . block  - block `DM`
34545dbd56e3SPeter Brune - ctx    - optional user-defined function context
34555dbd56e3SPeter Brune 
34565dbd56e3SPeter Brune   Level: advanced
34575dbd56e3SPeter Brune 
34585dbd56e3SPeter Brune   Notes:
3459bb7acecfSBarry Smith   This function is only needed if auxiliary data needs to be set up on subdomain `DM`s.
34605dbd56e3SPeter Brune 
34615dbd56e3SPeter Brune   If this function is called multiple times, the hooks will be run in the order they are added.
34625dbd56e3SPeter Brune 
34635dbd56e3SPeter Brune   In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
3464bb7acecfSBarry Smith   extract the global information from its context (instead of from the `SNES`).
34655dbd56e3SPeter Brune 
34661cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSubDomainHookRemove()`, `DMRefineHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
34675dbd56e3SPeter Brune @*/
3468a4e35b19SJacob Faibussowitsch PetscErrorCode DMSubDomainHookAdd(DM global, PetscErrorCode (*ddhook)(DM global, DM block, void *ctx), PetscErrorCode (*restricthook)(DM global, VecScatter out, VecScatter in, DM block, void *ctx), void *ctx)
3469d71ae5a4SJacob Faibussowitsch {
3470be081cd6SPeter Brune   DMSubDomainHookLink link, *p;
34715dbd56e3SPeter Brune 
34725dbd56e3SPeter Brune   PetscFunctionBegin;
34735dbd56e3SPeter Brune   PetscValidHeaderSpecific(global, DM_CLASSID, 1);
3474b3a6b972SJed Brown   for (p = &global->subdomainhook; *p; p = &(*p)->next) { /* Scan to the end of the current list of hooks */
34753ba16761SJacob Faibussowitsch     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(PETSC_SUCCESS);
3476b3a6b972SJed Brown   }
34779566063dSJacob Faibussowitsch   PetscCall(PetscNew(&link));
34785dbd56e3SPeter Brune   link->restricthook = restricthook;
3479be081cd6SPeter Brune   link->ddhook       = ddhook;
34805dbd56e3SPeter Brune   link->ctx          = ctx;
34810298fd71SBarry Smith   link->next         = NULL;
34825dbd56e3SPeter Brune   *p                 = link;
34833ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
34845dbd56e3SPeter Brune }
34855dbd56e3SPeter Brune 
3486b3a6b972SJed Brown /*@C
3487b3a6b972SJed Brown   DMSubDomainHookRemove - remove a callback from the list to be run when restricting a problem to the coarse grid
3488b3a6b972SJed Brown 
348920f4b53cSBarry Smith   Logically Collective; No Fortran Support
3490b3a6b972SJed Brown 
34914165533cSJose E. Roman   Input Parameters:
3492bb7acecfSBarry Smith + global       - global `DM`
3493bb7acecfSBarry Smith . ddhook       - function to run to pass data to the decomposition `DM` upon its creation
3494b3a6b972SJed Brown . restricthook - function to run to update data on block solve (at the beginning of the block solve)
349520f4b53cSBarry Smith - ctx          - [optional] user-defined context for provide data for the hooks (may be `NULL`)
3496b3a6b972SJed Brown 
3497b3a6b972SJed Brown   Level: advanced
3498b3a6b972SJed Brown 
34991cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSubDomainHookAdd()`, `SNESFASGetInterpolation()`, `SNESFASGetInjection()`, `PetscObjectCompose()`, `PetscContainerCreate()`
3500b3a6b972SJed Brown @*/
3501d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSubDomainHookRemove(DM global, PetscErrorCode (*ddhook)(DM, DM, void *), PetscErrorCode (*restricthook)(DM, VecScatter, VecScatter, DM, void *), void *ctx)
3502d71ae5a4SJacob Faibussowitsch {
3503b3a6b972SJed Brown   DMSubDomainHookLink link, *p;
3504b3a6b972SJed Brown 
3505b3a6b972SJed Brown   PetscFunctionBegin;
3506b3a6b972SJed Brown   PetscValidHeaderSpecific(global, DM_CLASSID, 1);
3507b3a6b972SJed Brown   for (p = &global->subdomainhook; *p; p = &(*p)->next) { /* Search the list of current hooks */
3508b3a6b972SJed Brown     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
3509b3a6b972SJed Brown       link = *p;
3510b3a6b972SJed Brown       *p   = link->next;
35119566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
3512b3a6b972SJed Brown       break;
3513b3a6b972SJed Brown     }
3514b3a6b972SJed Brown   }
35153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3516b3a6b972SJed Brown }
3517b3a6b972SJed Brown 
35185dbd56e3SPeter Brune /*@
3519bb7acecfSBarry Smith   DMSubDomainRestrict - restricts user-defined problem data to a block `DM` by running hooks registered by `DMSubDomainHookAdd()`
35205dbd56e3SPeter Brune 
35215dbd56e3SPeter Brune   Collective if any hooks are
35225dbd56e3SPeter Brune 
35234165533cSJose E. Roman   Input Parameters:
3524a4e35b19SJacob Faibussowitsch + global   - The global `DM` to use as a base
3525a4e35b19SJacob Faibussowitsch . oscatter - The scatter from domain global vector filling subdomain global vector with overlap
3526a4e35b19SJacob Faibussowitsch . gscatter - The scatter from domain global vector filling subdomain local vector with ghosts
3527a4e35b19SJacob Faibussowitsch - subdm    - The subdomain `DM` to update
35285dbd56e3SPeter Brune 
35295dbd56e3SPeter Brune   Level: developer
35305dbd56e3SPeter Brune 
35311cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsenHookAdd()`, `MatRestrict()`
35325dbd56e3SPeter Brune @*/
3533d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSubDomainRestrict(DM global, VecScatter oscatter, VecScatter gscatter, DM subdm)
3534d71ae5a4SJacob Faibussowitsch {
3535be081cd6SPeter Brune   DMSubDomainHookLink link;
35365dbd56e3SPeter Brune 
35375dbd56e3SPeter Brune   PetscFunctionBegin;
3538be081cd6SPeter Brune   for (link = global->subdomainhook; link; link = link->next) {
35391baa6e33SBarry Smith     if (link->restricthook) PetscCall((*link->restricthook)(global, oscatter, gscatter, subdm, link->ctx));
35405dbd56e3SPeter Brune   }
35413ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
35425dbd56e3SPeter Brune }
35435dbd56e3SPeter Brune 
35445fe1f584SPeter Brune /*@
3545bb7acecfSBarry Smith   DMGetCoarsenLevel - Gets the number of coarsenings that have generated this `DM`.
35465fe1f584SPeter Brune 
35475fe1f584SPeter Brune   Not Collective
35485fe1f584SPeter Brune 
35495fe1f584SPeter Brune   Input Parameter:
3550bb7acecfSBarry Smith . dm - the `DM` object
35515fe1f584SPeter Brune 
35525fe1f584SPeter Brune   Output Parameter:
35536a7d9d85SPeter Brune . level - number of coarsenings
35545fe1f584SPeter Brune 
35555fe1f584SPeter Brune   Level: developer
35565fe1f584SPeter Brune 
35571cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMSetCoarsenLevel()`, `DMGetRefineLevel()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
35585fe1f584SPeter Brune @*/
3559d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetCoarsenLevel(DM dm, PetscInt *level)
3560d71ae5a4SJacob Faibussowitsch {
35615fe1f584SPeter Brune   PetscFunctionBegin;
35625fe1f584SPeter Brune   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
35634f572ea9SToby Isaac   PetscAssertPointer(level, 2);
35645fe1f584SPeter Brune   *level = dm->leveldown;
35653ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
35665fe1f584SPeter Brune }
35675fe1f584SPeter Brune 
35689a64c4a8SMatthew G. Knepley /*@
3569bb7acecfSBarry Smith   DMSetCoarsenLevel - Sets the number of coarsenings that have generated this `DM`.
35709a64c4a8SMatthew G. Knepley 
357120f4b53cSBarry Smith   Collective
35729a64c4a8SMatthew G. Knepley 
35739a64c4a8SMatthew G. Knepley   Input Parameters:
3574bb7acecfSBarry Smith + dm    - the `DM` object
35759a64c4a8SMatthew G. Knepley - level - number of coarsenings
35769a64c4a8SMatthew G. Knepley 
35779a64c4a8SMatthew G. Knepley   Level: developer
35789a64c4a8SMatthew G. Knepley 
3579bb7acecfSBarry Smith   Note:
3580bb7acecfSBarry Smith   This is rarely used directly, the information is automatically set when a `DM` is created with `DMCoarsen()`
3581bb7acecfSBarry Smith 
358242747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMGetCoarsenLevel()`, `DMGetRefineLevel()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
35839a64c4a8SMatthew G. Knepley @*/
3584d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetCoarsenLevel(DM dm, PetscInt level)
3585d71ae5a4SJacob Faibussowitsch {
35869a64c4a8SMatthew G. Knepley   PetscFunctionBegin;
35879a64c4a8SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
35889a64c4a8SMatthew G. Knepley   dm->leveldown = level;
35893ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
35909a64c4a8SMatthew G. Knepley }
35919a64c4a8SMatthew G. Knepley 
359247c6ae99SBarry Smith /*@C
3593bb7acecfSBarry Smith   DMRefineHierarchy - Refines a `DM` object, all levels at once
359447c6ae99SBarry Smith 
359520f4b53cSBarry Smith   Collective
359647c6ae99SBarry Smith 
3597d8d19677SJose E. Roman   Input Parameters:
3598bb7acecfSBarry Smith + dm      - the `DM` object
359947c6ae99SBarry Smith - nlevels - the number of levels of refinement
360047c6ae99SBarry Smith 
360147c6ae99SBarry Smith   Output Parameter:
3602bb7acecfSBarry Smith . dmf - the refined `DM` hierarchy
360347c6ae99SBarry Smith 
360447c6ae99SBarry Smith   Level: developer
360547c6ae99SBarry Smith 
36061cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMCoarsenHierarchy()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
360747c6ae99SBarry Smith @*/
3608d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRefineHierarchy(DM dm, PetscInt nlevels, DM dmf[])
3609d71ae5a4SJacob Faibussowitsch {
361047c6ae99SBarry Smith   PetscFunctionBegin;
3611171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
36127a8be351SBarry Smith   PetscCheck(nlevels >= 0, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "nlevels cannot be negative");
36133ba16761SJacob Faibussowitsch   if (nlevels == 0) PetscFunctionReturn(PETSC_SUCCESS);
36144f572ea9SToby Isaac   PetscAssertPointer(dmf, 3);
3615213acdd3SPierre Jolivet   if (dm->ops->refine && !dm->ops->refinehierarchy) {
361647c6ae99SBarry Smith     PetscInt i;
361747c6ae99SBarry Smith 
36189566063dSJacob Faibussowitsch     PetscCall(DMRefine(dm, PetscObjectComm((PetscObject)dm), &dmf[0]));
361948a46eb9SPierre Jolivet     for (i = 1; i < nlevels; i++) PetscCall(DMRefine(dmf[i - 1], PetscObjectComm((PetscObject)dm), &dmf[i]));
3620213acdd3SPierre Jolivet   } else PetscUseTypeMethod(dm, refinehierarchy, nlevels, dmf);
36213ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
362247c6ae99SBarry Smith }
362347c6ae99SBarry Smith 
362447c6ae99SBarry Smith /*@C
3625bb7acecfSBarry Smith   DMCoarsenHierarchy - Coarsens a `DM` object, all levels at once
362647c6ae99SBarry Smith 
362720f4b53cSBarry Smith   Collective
362847c6ae99SBarry Smith 
3629d8d19677SJose E. Roman   Input Parameters:
3630bb7acecfSBarry Smith + dm      - the `DM` object
363147c6ae99SBarry Smith - nlevels - the number of levels of coarsening
363247c6ae99SBarry Smith 
363347c6ae99SBarry Smith   Output Parameter:
3634bb7acecfSBarry Smith . dmc - the coarsened `DM` hierarchy
363547c6ae99SBarry Smith 
363647c6ae99SBarry Smith   Level: developer
363747c6ae99SBarry Smith 
36381cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCoarsen()`, `DMRefineHierarchy()`, `DMDestroy()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`
363947c6ae99SBarry Smith @*/
3640d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCoarsenHierarchy(DM dm, PetscInt nlevels, DM dmc[])
3641d71ae5a4SJacob Faibussowitsch {
364247c6ae99SBarry Smith   PetscFunctionBegin;
3643171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
36447a8be351SBarry Smith   PetscCheck(nlevels >= 0, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "nlevels cannot be negative");
36453ba16761SJacob Faibussowitsch   if (nlevels == 0) PetscFunctionReturn(PETSC_SUCCESS);
36464f572ea9SToby Isaac   PetscAssertPointer(dmc, 3);
3647213acdd3SPierre Jolivet   if (dm->ops->coarsen && !dm->ops->coarsenhierarchy) {
364847c6ae99SBarry Smith     PetscInt i;
364947c6ae99SBarry Smith 
36509566063dSJacob Faibussowitsch     PetscCall(DMCoarsen(dm, PetscObjectComm((PetscObject)dm), &dmc[0]));
365148a46eb9SPierre Jolivet     for (i = 1; i < nlevels; i++) PetscCall(DMCoarsen(dmc[i - 1], PetscObjectComm((PetscObject)dm), &dmc[i]));
3652213acdd3SPierre Jolivet   } else PetscUseTypeMethod(dm, coarsenhierarchy, nlevels, dmc);
36533ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
365447c6ae99SBarry Smith }
365547c6ae99SBarry Smith 
36561a266240SBarry Smith /*@C
3657bb7acecfSBarry Smith   DMSetApplicationContextDestroy - Sets a user function that will be called to destroy the application context when the `DM` is destroyed
36581a266240SBarry Smith 
3659bb7acecfSBarry Smith   Logically Collective if the function is collective
36601a266240SBarry Smith 
36611a266240SBarry Smith   Input Parameters:
3662bb7acecfSBarry Smith + dm      - the `DM` object
36631a266240SBarry Smith - destroy - the destroy function
36641a266240SBarry Smith 
36651a266240SBarry Smith   Level: intermediate
36661a266240SBarry Smith 
36671cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetApplicationContext()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMGetApplicationContext()`
3668f07f9ceaSJed Brown @*/
3669d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetApplicationContextDestroy(DM dm, PetscErrorCode (*destroy)(void **))
3670d71ae5a4SJacob Faibussowitsch {
36711a266240SBarry Smith   PetscFunctionBegin;
3672171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
36731a266240SBarry Smith   dm->ctxdestroy = destroy;
36743ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
36751a266240SBarry Smith }
36761a266240SBarry Smith 
3677b07ff414SBarry Smith /*@
3678bb7acecfSBarry Smith   DMSetApplicationContext - Set a user context into a `DM` object
367947c6ae99SBarry Smith 
368047c6ae99SBarry Smith   Not Collective
368147c6ae99SBarry Smith 
368247c6ae99SBarry Smith   Input Parameters:
3683bb7acecfSBarry Smith + dm  - the `DM` object
368447c6ae99SBarry Smith - ctx - the user context
368547c6ae99SBarry Smith 
368647c6ae99SBarry Smith   Level: intermediate
368747c6ae99SBarry Smith 
3688bb7acecfSBarry Smith   Note:
368935cb6cd3SPierre Jolivet   A user context is a way to pass problem specific information that is accessible whenever the `DM` is available
3690bb7acecfSBarry Smith 
369160225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMGetApplicationContext()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`
369247c6ae99SBarry Smith @*/
3693d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetApplicationContext(DM dm, void *ctx)
3694d71ae5a4SJacob Faibussowitsch {
369547c6ae99SBarry Smith   PetscFunctionBegin;
3696171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
369747c6ae99SBarry Smith   dm->ctx = ctx;
36983ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
369947c6ae99SBarry Smith }
370047c6ae99SBarry Smith 
370147c6ae99SBarry Smith /*@
3702bb7acecfSBarry Smith   DMGetApplicationContext - Gets a user context from a `DM` object
370347c6ae99SBarry Smith 
370447c6ae99SBarry Smith   Not Collective
370547c6ae99SBarry Smith 
370647c6ae99SBarry Smith   Input Parameter:
3707bb7acecfSBarry Smith . dm - the `DM` object
370847c6ae99SBarry Smith 
370947c6ae99SBarry Smith   Output Parameter:
371047c6ae99SBarry Smith . ctx - the user context
371147c6ae99SBarry Smith 
371247c6ae99SBarry Smith   Level: intermediate
371347c6ae99SBarry Smith 
3714bb7acecfSBarry Smith   Note:
371535cb6cd3SPierre Jolivet   A user context is a way to pass problem specific information that is accessible whenever the `DM` is available
3716bb7acecfSBarry Smith 
371742747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`
371847c6ae99SBarry Smith @*/
3719d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetApplicationContext(DM dm, void *ctx)
3720d71ae5a4SJacob Faibussowitsch {
372147c6ae99SBarry Smith   PetscFunctionBegin;
3722171400e9SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
37231b2093e4SBarry Smith   *(void **)ctx = dm->ctx;
37243ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
372547c6ae99SBarry Smith }
372647c6ae99SBarry Smith 
372708da532bSDmitry Karpeev /*@C
3728bb7acecfSBarry Smith   DMSetVariableBounds - sets a function to compute the lower and upper bound vectors for `SNESVI`.
372908da532bSDmitry Karpeev 
373020f4b53cSBarry Smith   Logically Collective
373108da532bSDmitry Karpeev 
3732d8d19677SJose E. Roman   Input Parameters:
373308da532bSDmitry Karpeev + dm - the DM object
373420f4b53cSBarry Smith - f  - the function that computes variable bounds used by SNESVI (use `NULL` to cancel a previous function that was set)
373508da532bSDmitry Karpeev 
373608da532bSDmitry Karpeev   Level: intermediate
373708da532bSDmitry Karpeev 
37381cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMComputeVariableBounds()`, `DMHasVariableBounds()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMGetApplicationContext()`,
3739db781477SPatrick Sanan          `DMSetJacobian()`
374008da532bSDmitry Karpeev @*/
3741d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetVariableBounds(DM dm, PetscErrorCode (*f)(DM, Vec, Vec))
3742d71ae5a4SJacob Faibussowitsch {
374308da532bSDmitry Karpeev   PetscFunctionBegin;
37445a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
374508da532bSDmitry Karpeev   dm->ops->computevariablebounds = f;
37463ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
374708da532bSDmitry Karpeev }
374808da532bSDmitry Karpeev 
374908da532bSDmitry Karpeev /*@
3750bb7acecfSBarry Smith   DMHasVariableBounds - does the `DM` object have a variable bounds function?
375108da532bSDmitry Karpeev 
375208da532bSDmitry Karpeev   Not Collective
375308da532bSDmitry Karpeev 
375408da532bSDmitry Karpeev   Input Parameter:
3755bb7acecfSBarry Smith . dm - the `DM` object to destroy
375608da532bSDmitry Karpeev 
375708da532bSDmitry Karpeev   Output Parameter:
3758bb7acecfSBarry Smith . flg - `PETSC_TRUE` if the variable bounds function exists
375908da532bSDmitry Karpeev 
376008da532bSDmitry Karpeev   Level: developer
376108da532bSDmitry Karpeev 
37621cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMComputeVariableBounds()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMGetApplicationContext()`
376308da532bSDmitry Karpeev @*/
3764d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasVariableBounds(DM dm, PetscBool *flg)
3765d71ae5a4SJacob Faibussowitsch {
376608da532bSDmitry Karpeev   PetscFunctionBegin;
37675a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
37684f572ea9SToby Isaac   PetscAssertPointer(flg, 2);
376908da532bSDmitry Karpeev   *flg = (dm->ops->computevariablebounds) ? PETSC_TRUE : PETSC_FALSE;
37703ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
377108da532bSDmitry Karpeev }
377208da532bSDmitry Karpeev 
377308da532bSDmitry Karpeev /*@C
3774bb7acecfSBarry Smith   DMComputeVariableBounds - compute variable bounds used by `SNESVI`.
377508da532bSDmitry Karpeev 
377620f4b53cSBarry Smith   Logically Collective
377708da532bSDmitry Karpeev 
3778f899ff85SJose E. Roman   Input Parameter:
3779bb7acecfSBarry Smith . dm - the `DM` object
378008da532bSDmitry Karpeev 
378160225df5SJacob Faibussowitsch   Output Parameters:
378208da532bSDmitry Karpeev + xl - lower bound
378308da532bSDmitry Karpeev - xu - upper bound
378408da532bSDmitry Karpeev 
3785907376e6SBarry Smith   Level: advanced
3786907376e6SBarry Smith 
378720f4b53cSBarry Smith   Note:
378895452b02SPatrick Sanan   This is generally not called by users. It calls the function provided by the user with DMSetVariableBounds()
378908da532bSDmitry Karpeev 
37901cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMHasVariableBounds()`, `DMView()`, `DMCreateGlobalVector()`, `DMCreateInterpolation()`, `DMCreateColoring()`, `DMCreateMatrix()`, `DMCreateMassMatrix()`, `DMGetApplicationContext()`
379108da532bSDmitry Karpeev @*/
3792d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeVariableBounds(DM dm, Vec xl, Vec xu)
3793d71ae5a4SJacob Faibussowitsch {
379408da532bSDmitry Karpeev   PetscFunctionBegin;
37955a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
379608da532bSDmitry Karpeev   PetscValidHeaderSpecific(xl, VEC_CLASSID, 2);
37975a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(xu, VEC_CLASSID, 3);
3798dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, computevariablebounds, xl, xu);
37993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
380008da532bSDmitry Karpeev }
380108da532bSDmitry Karpeev 
3802b0ae01b7SPeter Brune /*@
3803bb7acecfSBarry Smith   DMHasColoring - does the `DM` object have a method of providing a coloring?
3804b0ae01b7SPeter Brune 
3805b0ae01b7SPeter Brune   Not Collective
3806b0ae01b7SPeter Brune 
3807b0ae01b7SPeter Brune   Input Parameter:
3808b0ae01b7SPeter Brune . dm - the DM object
3809b0ae01b7SPeter Brune 
3810b0ae01b7SPeter Brune   Output Parameter:
3811bb7acecfSBarry Smith . flg - `PETSC_TRUE` if the `DM` has facilities for `DMCreateColoring()`.
3812b0ae01b7SPeter Brune 
3813b0ae01b7SPeter Brune   Level: developer
3814b0ae01b7SPeter Brune 
38151cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateColoring()`
3816b0ae01b7SPeter Brune @*/
3817d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasColoring(DM dm, PetscBool *flg)
3818d71ae5a4SJacob Faibussowitsch {
3819b0ae01b7SPeter Brune   PetscFunctionBegin;
38205a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
38214f572ea9SToby Isaac   PetscAssertPointer(flg, 2);
3822b0ae01b7SPeter Brune   *flg = (dm->ops->getcoloring) ? PETSC_TRUE : PETSC_FALSE;
38233ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3824b0ae01b7SPeter Brune }
3825b0ae01b7SPeter Brune 
38263ad4599aSBarry Smith /*@
3827bb7acecfSBarry Smith   DMHasCreateRestriction - does the `DM` object have a method of providing a restriction?
38283ad4599aSBarry Smith 
38293ad4599aSBarry Smith   Not Collective
38303ad4599aSBarry Smith 
38313ad4599aSBarry Smith   Input Parameter:
3832bb7acecfSBarry Smith . dm - the `DM` object
38333ad4599aSBarry Smith 
38343ad4599aSBarry Smith   Output Parameter:
3835bb7acecfSBarry Smith . flg - `PETSC_TRUE` if the `DM` has facilities for `DMCreateRestriction()`.
38363ad4599aSBarry Smith 
38373ad4599aSBarry Smith   Level: developer
38383ad4599aSBarry Smith 
38391cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateRestriction()`, `DMHasCreateInterpolation()`, `DMHasCreateInjection()`
38403ad4599aSBarry Smith @*/
3841d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasCreateRestriction(DM dm, PetscBool *flg)
3842d71ae5a4SJacob Faibussowitsch {
38433ad4599aSBarry Smith   PetscFunctionBegin;
38445a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
38454f572ea9SToby Isaac   PetscAssertPointer(flg, 2);
38463ad4599aSBarry Smith   *flg = (dm->ops->createrestriction) ? PETSC_TRUE : PETSC_FALSE;
38473ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
38483ad4599aSBarry Smith }
38493ad4599aSBarry Smith 
3850a7058e45SLawrence Mitchell /*@
3851bb7acecfSBarry Smith   DMHasCreateInjection - does the `DM` object have a method of providing an injection?
3852a7058e45SLawrence Mitchell 
3853a7058e45SLawrence Mitchell   Not Collective
3854a7058e45SLawrence Mitchell 
3855a7058e45SLawrence Mitchell   Input Parameter:
3856bb7acecfSBarry Smith . dm - the `DM` object
3857a7058e45SLawrence Mitchell 
3858a7058e45SLawrence Mitchell   Output Parameter:
3859bb7acecfSBarry Smith . flg - `PETSC_TRUE` if the `DM` has facilities for `DMCreateInjection()`.
3860a7058e45SLawrence Mitchell 
3861a7058e45SLawrence Mitchell   Level: developer
3862a7058e45SLawrence Mitchell 
38631cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateInjection()`, `DMHasCreateRestriction()`, `DMHasCreateInterpolation()`
3864a7058e45SLawrence Mitchell @*/
3865d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasCreateInjection(DM dm, PetscBool *flg)
3866d71ae5a4SJacob Faibussowitsch {
3867a7058e45SLawrence Mitchell   PetscFunctionBegin;
38685a84ad33SLisandro Dalcin   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
38694f572ea9SToby Isaac   PetscAssertPointer(flg, 2);
3870dbbe0bcdSBarry Smith   if (dm->ops->hascreateinjection) PetscUseTypeMethod(dm, hascreateinjection, flg);
3871ad540459SPierre Jolivet   else *flg = (dm->ops->createinjection) ? PETSC_TRUE : PETSC_FALSE;
38723ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3873a7058e45SLawrence Mitchell }
3874a7058e45SLawrence Mitchell 
38750298fd71SBarry Smith PetscFunctionList DMList              = NULL;
3876264ace61SBarry Smith PetscBool         DMRegisterAllCalled = PETSC_FALSE;
3877264ace61SBarry Smith 
3878264ace61SBarry Smith /*@C
3879bb7acecfSBarry Smith   DMSetType - Builds a `DM`, for a particular `DM` implementation.
3880264ace61SBarry Smith 
388120f4b53cSBarry Smith   Collective
3882264ace61SBarry Smith 
3883264ace61SBarry Smith   Input Parameters:
3884bb7acecfSBarry Smith + dm     - The `DM` object
3885bb7acecfSBarry Smith - method - The name of the `DMType`, for example `DMDA`, `DMPLEX`
3886264ace61SBarry Smith 
3887264ace61SBarry Smith   Options Database Key:
3888bb7acecfSBarry Smith . -dm_type <type> - Sets the `DM` type; use -help for a list of available types
3889264ace61SBarry Smith 
3890264ace61SBarry Smith   Level: intermediate
3891264ace61SBarry Smith 
3892bb7acecfSBarry Smith   Note:
38930462cc06SPierre Jolivet   Of the `DM` is constructed by directly calling a function to construct a particular `DM`, for example, `DMDACreate2d()` or `DMPlexCreateBoxMesh()`
3894bb7acecfSBarry Smith 
38951cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMType`, `DMDA`, `DMPLEX`, `DMGetType()`, `DMCreate()`, `DMDACreate2d()`
3896264ace61SBarry Smith @*/
3897d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetType(DM dm, DMType method)
3898d71ae5a4SJacob Faibussowitsch {
3899264ace61SBarry Smith   PetscErrorCode (*r)(DM);
3900264ace61SBarry Smith   PetscBool match;
3901264ace61SBarry Smith 
3902264ace61SBarry Smith   PetscFunctionBegin;
3903264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
39049566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)dm, method, &match));
39053ba16761SJacob Faibussowitsch   if (match) PetscFunctionReturn(PETSC_SUCCESS);
3906264ace61SBarry Smith 
39079566063dSJacob Faibussowitsch   PetscCall(DMRegisterAll());
39089566063dSJacob Faibussowitsch   PetscCall(PetscFunctionListFind(DMList, method, &r));
39097a8be351SBarry Smith   PetscCheck(r, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown DM type: %s", method);
3910264ace61SBarry Smith 
3911dbbe0bcdSBarry Smith   PetscTryTypeMethod(dm, destroy);
39129566063dSJacob Faibussowitsch   PetscCall(PetscMemzero(dm->ops, sizeof(*dm->ops)));
39139566063dSJacob Faibussowitsch   PetscCall(PetscObjectChangeTypeName((PetscObject)dm, method));
39149566063dSJacob Faibussowitsch   PetscCall((*r)(dm));
39153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3916264ace61SBarry Smith }
3917264ace61SBarry Smith 
3918264ace61SBarry Smith /*@C
3919bb7acecfSBarry Smith   DMGetType - Gets the `DM` type name (as a string) from the `DM`.
3920264ace61SBarry Smith 
3921264ace61SBarry Smith   Not Collective
3922264ace61SBarry Smith 
3923264ace61SBarry Smith   Input Parameter:
3924bb7acecfSBarry Smith . dm - The `DM`
3925264ace61SBarry Smith 
3926264ace61SBarry Smith   Output Parameter:
3927bb7acecfSBarry Smith . type - The `DMType` name
3928264ace61SBarry Smith 
3929264ace61SBarry Smith   Level: intermediate
3930264ace61SBarry Smith 
39311cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMType`, `DMDA`, `DMPLEX`, `DMSetType()`, `DMCreate()`
3932264ace61SBarry Smith @*/
3933d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetType(DM dm, DMType *type)
3934d71ae5a4SJacob Faibussowitsch {
3935264ace61SBarry Smith   PetscFunctionBegin;
3936264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
39374f572ea9SToby Isaac   PetscAssertPointer(type, 2);
39389566063dSJacob Faibussowitsch   PetscCall(DMRegisterAll());
3939264ace61SBarry Smith   *type = ((PetscObject)dm)->type_name;
39403ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
3941264ace61SBarry Smith }
3942264ace61SBarry Smith 
394367a56275SMatthew G Knepley /*@C
3944bb7acecfSBarry Smith   DMConvert - Converts a `DM` to another `DM`, either of the same or different type.
394567a56275SMatthew G Knepley 
394620f4b53cSBarry Smith   Collective
394767a56275SMatthew G Knepley 
394867a56275SMatthew G Knepley   Input Parameters:
3949bb7acecfSBarry Smith + dm      - the `DM`
3950bb7acecfSBarry Smith - newtype - new `DM` type (use "same" for the same type)
395167a56275SMatthew G Knepley 
395267a56275SMatthew G Knepley   Output Parameter:
3953bb7acecfSBarry Smith . M - pointer to new `DM`
395467a56275SMatthew G Knepley 
395520f4b53cSBarry Smith   Level: intermediate
395620f4b53cSBarry Smith 
395767a56275SMatthew G Knepley   Notes:
3958bb7acecfSBarry Smith   Cannot be used to convert a sequential `DM` to a parallel or a parallel to sequential,
3959bb7acecfSBarry Smith   the MPI communicator of the generated `DM` is always the same as the communicator
3960bb7acecfSBarry Smith   of the input `DM`.
396167a56275SMatthew G Knepley 
39621cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetType()`, `DMCreate()`, `DMClone()`
396367a56275SMatthew G Knepley @*/
3964d71ae5a4SJacob Faibussowitsch PetscErrorCode DMConvert(DM dm, DMType newtype, DM *M)
3965d71ae5a4SJacob Faibussowitsch {
396667a56275SMatthew G Knepley   DM        B;
396767a56275SMatthew G Knepley   char      convname[256];
3968c067b6caSMatthew G. Knepley   PetscBool sametype /*, issame */;
396967a56275SMatthew G Knepley 
397067a56275SMatthew G Knepley   PetscFunctionBegin;
397167a56275SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
397267a56275SMatthew G Knepley   PetscValidType(dm, 1);
39734f572ea9SToby Isaac   PetscAssertPointer(M, 3);
39749566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)dm, newtype, &sametype));
39759566063dSJacob Faibussowitsch   /* PetscCall(PetscStrcmp(newtype, "same", &issame)); */
3976c067b6caSMatthew G. Knepley   if (sametype) {
3977c067b6caSMatthew G. Knepley     *M = dm;
39789566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)dm));
39793ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
3980c067b6caSMatthew G. Knepley   } else {
39810298fd71SBarry Smith     PetscErrorCode (*conv)(DM, DMType, DM *) = NULL;
398267a56275SMatthew G Knepley 
398367a56275SMatthew G Knepley     /*
398467a56275SMatthew G Knepley        Order of precedence:
398567a56275SMatthew G Knepley        1) See if a specialized converter is known to the current DM.
398667a56275SMatthew G Knepley        2) See if a specialized converter is known to the desired DM class.
398767a56275SMatthew G Knepley        3) See if a good general converter is registered for the desired class
398867a56275SMatthew G Knepley        4) See if a good general converter is known for the current matrix.
398967a56275SMatthew G Knepley        5) Use a really basic converter.
399067a56275SMatthew G Knepley     */
399167a56275SMatthew G Knepley 
399267a56275SMatthew G Knepley     /* 1) See if a specialized converter is known to the current DM and the desired class */
39939566063dSJacob Faibussowitsch     PetscCall(PetscStrncpy(convname, "DMConvert_", sizeof(convname)));
39949566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, ((PetscObject)dm)->type_name, sizeof(convname)));
39959566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, "_", sizeof(convname)));
39969566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, newtype, sizeof(convname)));
39979566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, "_C", sizeof(convname)));
39989566063dSJacob Faibussowitsch     PetscCall(PetscObjectQueryFunction((PetscObject)dm, convname, &conv));
399967a56275SMatthew G Knepley     if (conv) goto foundconv;
400067a56275SMatthew G Knepley 
400167a56275SMatthew G Knepley     /* 2)  See if a specialized converter is known to the desired DM class. */
40029566063dSJacob Faibussowitsch     PetscCall(DMCreate(PetscObjectComm((PetscObject)dm), &B));
40039566063dSJacob Faibussowitsch     PetscCall(DMSetType(B, newtype));
40049566063dSJacob Faibussowitsch     PetscCall(PetscStrncpy(convname, "DMConvert_", sizeof(convname)));
40059566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, ((PetscObject)dm)->type_name, sizeof(convname)));
40069566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, "_", sizeof(convname)));
40079566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, newtype, sizeof(convname)));
40089566063dSJacob Faibussowitsch     PetscCall(PetscStrlcat(convname, "_C", sizeof(convname)));
40099566063dSJacob Faibussowitsch     PetscCall(PetscObjectQueryFunction((PetscObject)B, convname, &conv));
401067a56275SMatthew G Knepley     if (conv) {
40119566063dSJacob Faibussowitsch       PetscCall(DMDestroy(&B));
401267a56275SMatthew G Knepley       goto foundconv;
401367a56275SMatthew G Knepley     }
401467a56275SMatthew G Knepley 
401567a56275SMatthew G Knepley #if 0
401667a56275SMatthew G Knepley     /* 3) See if a good general converter is registered for the desired class */
401767a56275SMatthew G Knepley     conv = B->ops->convertfrom;
40189566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&B));
401967a56275SMatthew G Knepley     if (conv) goto foundconv;
402067a56275SMatthew G Knepley 
402167a56275SMatthew G Knepley     /* 4) See if a good general converter is known for the current matrix */
402267a56275SMatthew G Knepley     if (dm->ops->convert) {
402367a56275SMatthew G Knepley       conv = dm->ops->convert;
402467a56275SMatthew G Knepley     }
402567a56275SMatthew G Knepley     if (conv) goto foundconv;
402667a56275SMatthew G Knepley #endif
402767a56275SMatthew G Knepley 
402867a56275SMatthew G Knepley     /* 5) Use a really basic converter. */
402998921bdaSJacob Faibussowitsch     SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "No conversion possible between DM types %s and %s", ((PetscObject)dm)->type_name, newtype);
403067a56275SMatthew G Knepley 
403167a56275SMatthew G Knepley   foundconv:
40329566063dSJacob Faibussowitsch     PetscCall(PetscLogEventBegin(DM_Convert, dm, 0, 0, 0));
40339566063dSJacob Faibussowitsch     PetscCall((*conv)(dm, newtype, M));
403412fa691eSMatthew G. Knepley     /* Things that are independent of DM type: We should consult DMClone() here */
403590b157c4SStefano Zampini     {
40364fb89dddSMatthew G. Knepley       const PetscReal *maxCell, *Lstart, *L;
40376858538eSMatthew G. Knepley 
40384fb89dddSMatthew G. Knepley       PetscCall(DMGetPeriodicity(dm, &maxCell, &Lstart, &L));
40394fb89dddSMatthew G. Knepley       PetscCall(DMSetPeriodicity(*M, maxCell, Lstart, L));
4040c8a6034eSMark       (*M)->prealloc_only = dm->prealloc_only;
40419566063dSJacob Faibussowitsch       PetscCall(PetscFree((*M)->vectype));
40429566063dSJacob Faibussowitsch       PetscCall(PetscStrallocpy(dm->vectype, (char **)&(*M)->vectype));
40439566063dSJacob Faibussowitsch       PetscCall(PetscFree((*M)->mattype));
40449566063dSJacob Faibussowitsch       PetscCall(PetscStrallocpy(dm->mattype, (char **)&(*M)->mattype));
404512fa691eSMatthew G. Knepley     }
40469566063dSJacob Faibussowitsch     PetscCall(PetscLogEventEnd(DM_Convert, dm, 0, 0, 0));
404767a56275SMatthew G Knepley   }
40489566063dSJacob Faibussowitsch   PetscCall(PetscObjectStateIncrease((PetscObject)*M));
40493ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
405067a56275SMatthew G Knepley }
4051264ace61SBarry Smith 
4052264ace61SBarry Smith /*--------------------------------------------------------------------------------------------------------------------*/
4053264ace61SBarry Smith 
4054264ace61SBarry Smith /*@C
4055bb7acecfSBarry Smith   DMRegister -  Adds a new `DM` type implementation
40561c84c290SBarry Smith 
40571c84c290SBarry Smith   Not Collective
40581c84c290SBarry Smith 
40591c84c290SBarry Smith   Input Parameters:
406020f4b53cSBarry Smith + sname    - The name of a new user-defined creation routine
406120f4b53cSBarry Smith - function - The creation routine itself
406220f4b53cSBarry Smith 
406320f4b53cSBarry Smith   Level: advanced
40641c84c290SBarry Smith 
40651c84c290SBarry Smith   Notes:
406620f4b53cSBarry Smith   `DMRegister()` may be called multiple times to add several user-defined `DM`s
40671c84c290SBarry Smith 
406860225df5SJacob Faibussowitsch   Example Usage:
40691c84c290SBarry Smith .vb
4070bdf89e91SBarry Smith     DMRegister("my_da", MyDMCreate);
40711c84c290SBarry Smith .ve
40721c84c290SBarry Smith 
407320f4b53cSBarry Smith   Then, your `DM` type can be chosen with the procedural interface via
40741c84c290SBarry Smith .vb
40751c84c290SBarry Smith     DMCreate(MPI_Comm, DM *);
40761c84c290SBarry Smith     DMSetType(DM,"my_da");
40771c84c290SBarry Smith .ve
40781c84c290SBarry Smith   or at runtime via the option
40791c84c290SBarry Smith .vb
40801c84c290SBarry Smith     -da_type my_da
40811c84c290SBarry Smith .ve
4082264ace61SBarry Smith 
40831cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMType`, `DMSetType()`, `DMRegisterAll()`, `DMRegisterDestroy()`
4084264ace61SBarry Smith @*/
4085d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRegister(const char sname[], PetscErrorCode (*function)(DM))
4086d71ae5a4SJacob Faibussowitsch {
4087264ace61SBarry Smith   PetscFunctionBegin;
40889566063dSJacob Faibussowitsch   PetscCall(DMInitializePackage());
40899566063dSJacob Faibussowitsch   PetscCall(PetscFunctionListAdd(&DMList, sname, function));
40903ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4091264ace61SBarry Smith }
4092264ace61SBarry Smith 
4093b859378eSBarry Smith /*@C
4094bb7acecfSBarry Smith   DMLoad - Loads a DM that has been stored in binary  with `DMView()`.
4095b859378eSBarry Smith 
409620f4b53cSBarry Smith   Collective
4097b859378eSBarry Smith 
4098b859378eSBarry Smith   Input Parameters:
4099bb7acecfSBarry Smith + newdm  - the newly loaded `DM`, this needs to have been created with `DMCreate()` or
4100bb7acecfSBarry Smith            some related function before a call to `DMLoad()`.
4101bb7acecfSBarry Smith - viewer - binary file viewer, obtained from `PetscViewerBinaryOpen()` or
4102bb7acecfSBarry Smith            `PETSCVIEWERHDF5` file viewer, obtained from `PetscViewerHDF5Open()`
4103b859378eSBarry Smith 
4104b859378eSBarry Smith   Level: intermediate
4105b859378eSBarry Smith 
4106b859378eSBarry Smith   Notes:
410755849f57SBarry Smith   The type is determined by the data in the file, any type set into the DM before this call is ignored.
4108b859378eSBarry Smith 
4109bb7acecfSBarry Smith   Using `PETSCVIEWERHDF5` type with `PETSC_VIEWER_HDF5_PETSC` format, one can save multiple `DMPLEX`
4110bb7acecfSBarry Smith   meshes in a single HDF5 file. This in turn requires one to name the `DMPLEX` object with `PetscObjectSetName()`
4111bb7acecfSBarry Smith   before saving it with `DMView()` and before loading it with `DMLoad()` for identification of the mesh object.
4112cd7e8a5eSksagiyam 
41131cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscViewerBinaryOpen()`, `DMView()`, `MatLoad()`, `VecLoad()`
4114b859378eSBarry Smith @*/
4115d71ae5a4SJacob Faibussowitsch PetscErrorCode DMLoad(DM newdm, PetscViewer viewer)
4116d71ae5a4SJacob Faibussowitsch {
41179331c7a4SMatthew G. Knepley   PetscBool isbinary, ishdf5;
4118b859378eSBarry Smith 
4119b859378eSBarry Smith   PetscFunctionBegin;
4120b859378eSBarry Smith   PetscValidHeaderSpecific(newdm, DM_CLASSID, 1);
4121b859378eSBarry Smith   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
41229566063dSJacob Faibussowitsch   PetscCall(PetscViewerCheckReadable(viewer));
41239566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERBINARY, &isbinary));
41249566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERHDF5, &ishdf5));
41259566063dSJacob Faibussowitsch   PetscCall(PetscLogEventBegin(DM_Load, viewer, 0, 0, 0));
41269331c7a4SMatthew G. Knepley   if (isbinary) {
41279331c7a4SMatthew G. Knepley     PetscInt classid;
41289331c7a4SMatthew G. Knepley     char     type[256];
4129b859378eSBarry Smith 
41309566063dSJacob Faibussowitsch     PetscCall(PetscViewerBinaryRead(viewer, &classid, 1, NULL, PETSC_INT));
41317a8be351SBarry Smith     PetscCheck(classid == DM_FILE_CLASSID, PetscObjectComm((PetscObject)newdm), PETSC_ERR_ARG_WRONG, "Not DM next in file, classid found %d", (int)classid);
41329566063dSJacob Faibussowitsch     PetscCall(PetscViewerBinaryRead(viewer, type, 256, NULL, PETSC_CHAR));
41339566063dSJacob Faibussowitsch     PetscCall(DMSetType(newdm, type));
4134dbbe0bcdSBarry Smith     PetscTryTypeMethod(newdm, load, viewer);
41359331c7a4SMatthew G. Knepley   } else if (ishdf5) {
4136dbbe0bcdSBarry Smith     PetscTryTypeMethod(newdm, load, viewer);
41379331c7a4SMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid viewer; open viewer with PetscViewerBinaryOpen() or PetscViewerHDF5Open()");
41389566063dSJacob Faibussowitsch   PetscCall(PetscLogEventEnd(DM_Load, viewer, 0, 0, 0));
41393ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4140b859378eSBarry Smith }
4141b859378eSBarry Smith 
41427da65231SMatthew G Knepley /******************************** FEM Support **********************************/
41437da65231SMatthew G Knepley 
41442ecf6ec3SMatthew G. Knepley PetscErrorCode DMPrintCellIndices(PetscInt c, const char name[], PetscInt len, const PetscInt x[])
41452ecf6ec3SMatthew G. Knepley {
41462ecf6ec3SMatthew G. Knepley   PetscInt f;
41472ecf6ec3SMatthew G. Knepley 
41482ecf6ec3SMatthew G. Knepley   PetscFunctionBegin;
41492ecf6ec3SMatthew G. Knepley   PetscCall(PetscPrintf(PETSC_COMM_SELF, "Cell %" PetscInt_FMT " Element %s\n", c, name));
41502ecf6ec3SMatthew G. Knepley   for (f = 0; f < len; ++f) PetscCall(PetscPrintf(PETSC_COMM_SELF, "  | %" PetscInt_FMT " |\n", x[f]));
41512ecf6ec3SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
41522ecf6ec3SMatthew G. Knepley }
41532ecf6ec3SMatthew G. Knepley 
4154d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPrintCellVector(PetscInt c, const char name[], PetscInt len, const PetscScalar x[])
4155d71ae5a4SJacob Faibussowitsch {
41561d47ebbbSSatish Balay   PetscInt f;
41571b30c384SMatthew G Knepley 
41587da65231SMatthew G Knepley   PetscFunctionBegin;
415963a3b9bcSJacob Faibussowitsch   PetscCall(PetscPrintf(PETSC_COMM_SELF, "Cell %" PetscInt_FMT " Element %s\n", c, name));
416048a46eb9SPierre Jolivet   for (f = 0; f < len; ++f) PetscCall(PetscPrintf(PETSC_COMM_SELF, "  | %g |\n", (double)PetscRealPart(x[f])));
41613ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
41627da65231SMatthew G Knepley }
41637da65231SMatthew G Knepley 
41645962854dSMatthew G. Knepley PetscErrorCode DMPrintCellVectorReal(PetscInt c, const char name[], PetscInt len, const PetscReal x[])
41655962854dSMatthew G. Knepley {
41665962854dSMatthew G. Knepley   PetscInt f;
41675962854dSMatthew G. Knepley 
41685962854dSMatthew G. Knepley   PetscFunctionBegin;
41695962854dSMatthew G. Knepley   PetscCall(PetscPrintf(PETSC_COMM_SELF, "Cell %" PetscInt_FMT " Element %s\n", c, name));
41705962854dSMatthew G. Knepley   for (f = 0; f < len; ++f) PetscCall(PetscPrintf(PETSC_COMM_SELF, "  | %g |\n", (double)x[f]));
41715962854dSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
41725962854dSMatthew G. Knepley }
41735962854dSMatthew G. Knepley 
4174d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPrintCellMatrix(PetscInt c, const char name[], PetscInt rows, PetscInt cols, const PetscScalar A[])
4175d71ae5a4SJacob Faibussowitsch {
41761b30c384SMatthew G Knepley   PetscInt f, g;
41777da65231SMatthew G Knepley 
41787da65231SMatthew G Knepley   PetscFunctionBegin;
417963a3b9bcSJacob Faibussowitsch   PetscCall(PetscPrintf(PETSC_COMM_SELF, "Cell %" PetscInt_FMT " Element %s\n", c, name));
41801d47ebbbSSatish Balay   for (f = 0; f < rows; ++f) {
41819566063dSJacob Faibussowitsch     PetscCall(PetscPrintf(PETSC_COMM_SELF, "  |"));
418248a46eb9SPierre Jolivet     for (g = 0; g < cols; ++g) PetscCall(PetscPrintf(PETSC_COMM_SELF, " % 9.5g", (double)PetscRealPart(A[f * cols + g])));
41839566063dSJacob Faibussowitsch     PetscCall(PetscPrintf(PETSC_COMM_SELF, " |\n"));
41847da65231SMatthew G Knepley   }
41853ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
41867da65231SMatthew G Knepley }
4187e7c4fc90SDmitry Karpeev 
4188d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPrintLocalVec(DM dm, const char name[], PetscReal tol, Vec X)
4189d71ae5a4SJacob Faibussowitsch {
41900c5b8624SToby Isaac   PetscInt           localSize, bs;
41910c5b8624SToby Isaac   PetscMPIInt        size;
41920c5b8624SToby Isaac   Vec                x, xglob;
41930c5b8624SToby Isaac   const PetscScalar *xarray;
4194e759306cSMatthew G. Knepley 
4195e759306cSMatthew G. Knepley   PetscFunctionBegin;
41969566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size));
41979566063dSJacob Faibussowitsch   PetscCall(VecDuplicate(X, &x));
41989566063dSJacob Faibussowitsch   PetscCall(VecCopy(X, x));
419993ec0da9SPierre Jolivet   PetscCall(VecFilter(x, tol));
42009566063dSJacob Faibussowitsch   PetscCall(PetscPrintf(PetscObjectComm((PetscObject)dm), "%s:\n", name));
42010c5b8624SToby Isaac   if (size > 1) {
42029566063dSJacob Faibussowitsch     PetscCall(VecGetLocalSize(x, &localSize));
42039566063dSJacob Faibussowitsch     PetscCall(VecGetArrayRead(x, &xarray));
42049566063dSJacob Faibussowitsch     PetscCall(VecGetBlockSize(x, &bs));
42059566063dSJacob Faibussowitsch     PetscCall(VecCreateMPIWithArray(PetscObjectComm((PetscObject)dm), bs, localSize, PETSC_DETERMINE, xarray, &xglob));
42060c5b8624SToby Isaac   } else {
42070c5b8624SToby Isaac     xglob = x;
42080c5b8624SToby Isaac   }
42099566063dSJacob Faibussowitsch   PetscCall(VecView(xglob, PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject)dm))));
42100c5b8624SToby Isaac   if (size > 1) {
42119566063dSJacob Faibussowitsch     PetscCall(VecDestroy(&xglob));
42129566063dSJacob Faibussowitsch     PetscCall(VecRestoreArrayRead(x, &xarray));
42130c5b8624SToby Isaac   }
42149566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&x));
42153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4216e759306cSMatthew G. Knepley }
4217e759306cSMatthew G. Knepley 
421888ed4aceSMatthew G Knepley /*@
4219bb7acecfSBarry Smith   DMGetSection - Get the `PetscSection` encoding the local data layout for the `DM`.   This is equivalent to `DMGetLocalSection()`. Deprecated in v3.12
4220061576a5SJed Brown 
4221061576a5SJed Brown   Input Parameter:
4222bb7acecfSBarry Smith . dm - The `DM`
4223061576a5SJed Brown 
4224061576a5SJed Brown   Output Parameter:
4225bb7acecfSBarry Smith . section - The `PetscSection`
4226061576a5SJed Brown 
422720f4b53cSBarry Smith   Options Database Key:
4228bb7acecfSBarry Smith . -dm_petscsection_view - View the `PetscSection` created by the `DM`
4229061576a5SJed Brown 
4230061576a5SJed Brown   Level: advanced
4231061576a5SJed Brown 
4232061576a5SJed Brown   Notes:
4233bb7acecfSBarry Smith   Use `DMGetLocalSection()` in new code.
4234061576a5SJed Brown 
4235bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSection`.
4236061576a5SJed Brown 
42371cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetLocalSection()`, `DMSetLocalSection()`, `DMGetGlobalSection()`
4238061576a5SJed Brown @*/
4239d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetSection(DM dm, PetscSection *section)
4240d71ae5a4SJacob Faibussowitsch {
4241061576a5SJed Brown   PetscFunctionBegin;
42429566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, section));
42433ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4244061576a5SJed Brown }
4245061576a5SJed Brown 
4246061576a5SJed Brown /*@
4247bb7acecfSBarry Smith   DMGetLocalSection - Get the `PetscSection` encoding the local data layout for the `DM`.
424888ed4aceSMatthew G Knepley 
424988ed4aceSMatthew G Knepley   Input Parameter:
4250bb7acecfSBarry Smith . dm - The `DM`
425188ed4aceSMatthew G Knepley 
425288ed4aceSMatthew G Knepley   Output Parameter:
4253bb7acecfSBarry Smith . section - The `PetscSection`
425488ed4aceSMatthew G Knepley 
425520f4b53cSBarry Smith   Options Database Key:
4256bb7acecfSBarry Smith . -dm_petscsection_view - View the section created by the `DM`
4257e5893cccSMatthew G. Knepley 
425888ed4aceSMatthew G Knepley   Level: intermediate
425988ed4aceSMatthew G Knepley 
4260bb7acecfSBarry Smith   Note:
4261bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSection`.
426288ed4aceSMatthew G Knepley 
42631cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetLocalSection()`, `DMGetGlobalSection()`
426488ed4aceSMatthew G Knepley @*/
4265d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLocalSection(DM dm, PetscSection *section)
4266d71ae5a4SJacob Faibussowitsch {
426788ed4aceSMatthew G Knepley   PetscFunctionBegin;
426888ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42694f572ea9SToby Isaac   PetscAssertPointer(section, 2);
42701bb6d2a8SBarry Smith   if (!dm->localSection && dm->ops->createlocalsection) {
4271e5e52638SMatthew G. Knepley     PetscInt d;
4272e5e52638SMatthew G. Knepley 
427345480ffeSMatthew G. Knepley     if (dm->setfromoptionscalled) {
427445480ffeSMatthew G. Knepley       PetscObject       obj = (PetscObject)dm;
427545480ffeSMatthew G. Knepley       PetscViewer       viewer;
427645480ffeSMatthew G. Knepley       PetscViewerFormat format;
427745480ffeSMatthew G. Knepley       PetscBool         flg;
427845480ffeSMatthew G. Knepley 
42799566063dSJacob Faibussowitsch       PetscCall(PetscOptionsGetViewer(PetscObjectComm(obj), obj->options, obj->prefix, "-dm_petscds_view", &viewer, &format, &flg));
42809566063dSJacob Faibussowitsch       if (flg) PetscCall(PetscViewerPushFormat(viewer, format));
428145480ffeSMatthew G. Knepley       for (d = 0; d < dm->Nds; ++d) {
42829566063dSJacob Faibussowitsch         PetscCall(PetscDSSetFromOptions(dm->probs[d].ds));
42839566063dSJacob Faibussowitsch         if (flg) PetscCall(PetscDSView(dm->probs[d].ds, viewer));
428445480ffeSMatthew G. Knepley       }
428545480ffeSMatthew G. Knepley       if (flg) {
42869566063dSJacob Faibussowitsch         PetscCall(PetscViewerFlush(viewer));
42879566063dSJacob Faibussowitsch         PetscCall(PetscViewerPopFormat(viewer));
4288cd791dc2SBarry Smith         PetscCall(PetscOptionsRestoreViewer(&viewer));
428945480ffeSMatthew G. Knepley       }
429045480ffeSMatthew G. Knepley     }
4291dbbe0bcdSBarry Smith     PetscUseTypeMethod(dm, createlocalsection);
42929566063dSJacob Faibussowitsch     if (dm->localSection) PetscCall(PetscObjectViewFromOptions((PetscObject)dm->localSection, NULL, "-dm_petscsection_view"));
42932f0f8703SMatthew G. Knepley   }
42941bb6d2a8SBarry Smith   *section = dm->localSection;
42953ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
429688ed4aceSMatthew G Knepley }
429788ed4aceSMatthew G Knepley 
429888ed4aceSMatthew G Knepley /*@
4299bb7acecfSBarry Smith   DMSetSection - Set the `PetscSection` encoding the local data layout for the `DM`.  This is equivalent to `DMSetLocalSection()`. Deprecated in v3.12
4300061576a5SJed Brown 
4301061576a5SJed Brown   Input Parameters:
4302bb7acecfSBarry Smith + dm      - The `DM`
4303bb7acecfSBarry Smith - section - The `PetscSection`
4304061576a5SJed Brown 
4305061576a5SJed Brown   Level: advanced
4306061576a5SJed Brown 
4307061576a5SJed Brown   Notes:
4308bb7acecfSBarry Smith   Use `DMSetLocalSection()` in new code.
4309061576a5SJed Brown 
4310bb7acecfSBarry Smith   Any existing `PetscSection` will be destroyed
4311061576a5SJed Brown 
43121cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetLocalSection()`, `DMGetLocalSection()`, `DMSetGlobalSection()`
4313061576a5SJed Brown @*/
4314d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetSection(DM dm, PetscSection section)
4315d71ae5a4SJacob Faibussowitsch {
4316061576a5SJed Brown   PetscFunctionBegin;
43179566063dSJacob Faibussowitsch   PetscCall(DMSetLocalSection(dm, section));
43183ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4319061576a5SJed Brown }
4320061576a5SJed Brown 
4321061576a5SJed Brown /*@
4322bb7acecfSBarry Smith   DMSetLocalSection - Set the `PetscSection` encoding the local data layout for the `DM`.
432388ed4aceSMatthew G Knepley 
432488ed4aceSMatthew G Knepley   Input Parameters:
4325bb7acecfSBarry Smith + dm      - The `DM`
4326bb7acecfSBarry Smith - section - The `PetscSection`
432788ed4aceSMatthew G Knepley 
432888ed4aceSMatthew G Knepley   Level: intermediate
432988ed4aceSMatthew G Knepley 
4330bb7acecfSBarry Smith   Note:
4331bb7acecfSBarry Smith   Any existing Section will be destroyed
433288ed4aceSMatthew G Knepley 
43331cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscSection`, `DMGetLocalSection()`, `DMSetGlobalSection()`
433488ed4aceSMatthew G Knepley @*/
4335d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetLocalSection(DM dm, PetscSection section)
4336d71ae5a4SJacob Faibussowitsch {
4337c473ab19SMatthew G. Knepley   PetscInt numFields = 0;
4338af122d2aSMatthew G Knepley   PetscInt f;
433988ed4aceSMatthew G Knepley 
434088ed4aceSMatthew G Knepley   PetscFunctionBegin;
434188ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4342b9d85ea2SLisandro Dalcin   if (section) PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
43439566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)section));
43449566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&dm->localSection));
43451bb6d2a8SBarry Smith   dm->localSection = section;
43469566063dSJacob Faibussowitsch   if (section) PetscCall(PetscSectionGetNumFields(dm->localSection, &numFields));
4347af122d2aSMatthew G Knepley   if (numFields) {
43489566063dSJacob Faibussowitsch     PetscCall(DMSetNumFields(dm, numFields));
4349af122d2aSMatthew G Knepley     for (f = 0; f < numFields; ++f) {
43500f21e855SMatthew G. Knepley       PetscObject disc;
4351af122d2aSMatthew G Knepley       const char *name;
4352af122d2aSMatthew G Knepley 
43539566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetFieldName(dm->localSection, f, &name));
43549566063dSJacob Faibussowitsch       PetscCall(DMGetField(dm, f, NULL, &disc));
43559566063dSJacob Faibussowitsch       PetscCall(PetscObjectSetName(disc, name));
4356af122d2aSMatthew G Knepley     }
4357af122d2aSMatthew G Knepley   }
4358e87a4003SBarry Smith   /* The global section will be rebuilt in the next call to DMGetGlobalSection(). */
43599566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&dm->globalSection));
43603ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
436188ed4aceSMatthew G Knepley }
436288ed4aceSMatthew G Knepley 
4363adc21957SMatthew G. Knepley /*@C
4364adc21957SMatthew G. Knepley   DMCreateSectionPermutation - Create a permutation of the `PetscSection` chart and optionally a blokc structure.
4365adc21957SMatthew G. Knepley 
4366adc21957SMatthew G. Knepley   Input Parameter:
4367adc21957SMatthew G. Knepley . dm - The `DM`
4368adc21957SMatthew G. Knepley 
4369adc21957SMatthew G. Knepley   Output Parameter:
4370adc21957SMatthew G. Knepley + perm        - A permutation of the mesh points in the chart
4371adc21957SMatthew G. Knepley - blockStarts - A high bit is set for the point that begins every block, or NULL for default blocking
4372adc21957SMatthew G. Knepley 
4373adc21957SMatthew G. Knepley   Level: developer
4374adc21957SMatthew G. Knepley 
4375adc21957SMatthew G. Knepley .seealso: [](ch_dmbase), `DM`, `PetscSection`, `DMGetLocalSection()`, `DMGetGlobalSection()`
4376adc21957SMatthew G. Knepley @*/
4377adc21957SMatthew G. Knepley PetscErrorCode DMCreateSectionPermutation(DM dm, IS *perm, PetscBT *blockStarts)
4378adc21957SMatthew G. Knepley {
4379adc21957SMatthew G. Knepley   PetscFunctionBegin;
4380adc21957SMatthew G. Knepley   *perm        = NULL;
4381adc21957SMatthew G. Knepley   *blockStarts = NULL;
4382adc21957SMatthew G. Knepley   PetscTryTypeMethod(dm, createsectionpermutation, perm, blockStarts);
4383adc21957SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
4384adc21957SMatthew G. Knepley }
4385adc21957SMatthew G. Knepley 
43869435951eSToby Isaac /*@
4387bb7acecfSBarry Smith   DMGetDefaultConstraints - Get the `PetscSection` and `Mat` that specify the local constraint interpolation. See `DMSetDefaultConstraints()` for a description of the purpose of constraint interpolation.
43889435951eSToby Isaac 
438920f4b53cSBarry Smith   not Collective
4390e228b242SToby Isaac 
43919435951eSToby Isaac   Input Parameter:
4392bb7acecfSBarry Smith . dm - The `DM`
43939435951eSToby Isaac 
4394d8d19677SJose E. Roman   Output Parameters:
439520f4b53cSBarry Smith + section - The `PetscSection` describing the range of the constraint matrix: relates rows of the constraint matrix to dofs of the default section.  Returns `NULL` if there are no local constraints.
439620f4b53cSBarry Smith . mat     - The `Mat` that interpolates local constraints: its width should be the layout size of the default section.  Returns `NULL` if there are no local constraints.
439779769bd5SJed Brown - bias    - Vector containing bias to be added to constrained dofs
43989435951eSToby Isaac 
43999435951eSToby Isaac   Level: advanced
44009435951eSToby Isaac 
4401bb7acecfSBarry Smith   Note:
4402bb7acecfSBarry Smith   This gets borrowed references, so the user should not destroy the `PetscSection`, `Mat`, or `Vec`.
44039435951eSToby Isaac 
44041cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetDefaultConstraints()`
44059435951eSToby Isaac @*/
4406d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetDefaultConstraints(DM dm, PetscSection *section, Mat *mat, Vec *bias)
4407d71ae5a4SJacob Faibussowitsch {
44089435951eSToby Isaac   PetscFunctionBegin;
44099435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4410dbbe0bcdSBarry Smith   if (!dm->defaultConstraint.section && !dm->defaultConstraint.mat && dm->ops->createdefaultconstraints) PetscUseTypeMethod(dm, createdefaultconstraints);
44113b8ba7d1SJed Brown   if (section) *section = dm->defaultConstraint.section;
44123b8ba7d1SJed Brown   if (mat) *mat = dm->defaultConstraint.mat;
441379769bd5SJed Brown   if (bias) *bias = dm->defaultConstraint.bias;
44143ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
44159435951eSToby Isaac }
44169435951eSToby Isaac 
44179435951eSToby Isaac /*@
4418bb7acecfSBarry Smith   DMSetDefaultConstraints - Set the `PetscSection` and `Mat` that specify the local constraint interpolation.
44199435951eSToby Isaac 
442020f4b53cSBarry Smith   Collective
4421e228b242SToby Isaac 
44229435951eSToby Isaac   Input Parameters:
4423bb7acecfSBarry Smith + dm      - The `DM`
4424bb7acecfSBarry Smith . section - The `PetscSection` describing the range of the constraint matrix: relates rows of the constraint matrix to dofs of the default section.  Must have a local communicator (`PETSC_COMM_SELF` or derivative).
442520f4b53cSBarry Smith . mat     - The `Mat` that interpolates local constraints: its width should be the layout size of the default section:  `NULL` indicates no constraints.  Must have a local communicator (`PETSC_COMM_SELF` or derivative).
442620f4b53cSBarry Smith - bias    - A bias vector to be added to constrained values in the local vector.  `NULL` indicates no bias.  Must have a local communicator (`PETSC_COMM_SELF` or derivative).
44279435951eSToby Isaac 
44289435951eSToby Isaac   Level: advanced
44299435951eSToby Isaac 
443020f4b53cSBarry Smith   Notes:
443120f4b53cSBarry Smith   If a constraint matrix is specified, then it is applied during `DMGlobalToLocalEnd()` when mode is `INSERT_VALUES`, `INSERT_BC_VALUES`, or `INSERT_ALL_VALUES`.  Without a constraint matrix, the local vector l returned by `DMGlobalToLocalEnd()` contains values that have been scattered from a global vector without modification; with a constraint matrix A, l is modified by computing c = A * l + bias, l[s[i]] = c[i], where the scatter s is defined by the `PetscSection` returned by `DMGetDefaultConstraints()`.
443220f4b53cSBarry Smith 
443320f4b53cSBarry Smith   If a constraint matrix is specified, then its adjoint is applied during `DMLocalToGlobalBegin()` when mode is `ADD_VALUES`, `ADD_BC_VALUES`, or `ADD_ALL_VALUES`.  Without a constraint matrix, the local vector l is accumulated into a global vector without modification; with a constraint matrix A, l is first modified by computing c[i] = l[s[i]], l[s[i]] = 0, l = l + A'*c, which is the adjoint of the operation described above.  Any bias, if specified, is ignored when accumulating.
443420f4b53cSBarry Smith 
4435bb7acecfSBarry Smith   This increments the references of the `PetscSection`, `Mat`, and `Vec`, so they user can destroy them.
44369435951eSToby Isaac 
44371cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetDefaultConstraints()`
44389435951eSToby Isaac @*/
4439d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetDefaultConstraints(DM dm, PetscSection section, Mat mat, Vec bias)
4440d71ae5a4SJacob Faibussowitsch {
4441e228b242SToby Isaac   PetscMPIInt result;
44429435951eSToby Isaac 
44439435951eSToby Isaac   PetscFunctionBegin;
44449435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4445e228b242SToby Isaac   if (section) {
4446e228b242SToby Isaac     PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
44479566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Comm_compare(PETSC_COMM_SELF, PetscObjectComm((PetscObject)section), &result));
44487a8be351SBarry Smith     PetscCheck(result == MPI_CONGRUENT || result == MPI_IDENT, PETSC_COMM_SELF, PETSC_ERR_ARG_NOTSAMECOMM, "constraint section must have local communicator");
4449e228b242SToby Isaac   }
4450e228b242SToby Isaac   if (mat) {
4451e228b242SToby Isaac     PetscValidHeaderSpecific(mat, MAT_CLASSID, 3);
44529566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Comm_compare(PETSC_COMM_SELF, PetscObjectComm((PetscObject)mat), &result));
44537a8be351SBarry Smith     PetscCheck(result == MPI_CONGRUENT || result == MPI_IDENT, PETSC_COMM_SELF, PETSC_ERR_ARG_NOTSAMECOMM, "constraint matrix must have local communicator");
4454e228b242SToby Isaac   }
445579769bd5SJed Brown   if (bias) {
445679769bd5SJed Brown     PetscValidHeaderSpecific(bias, VEC_CLASSID, 4);
44579566063dSJacob Faibussowitsch     PetscCallMPI(MPI_Comm_compare(PETSC_COMM_SELF, PetscObjectComm((PetscObject)bias), &result));
445879769bd5SJed Brown     PetscCheck(result == MPI_CONGRUENT || result == MPI_IDENT, PETSC_COMM_SELF, PETSC_ERR_ARG_NOTSAMECOMM, "constraint bias must have local communicator");
445979769bd5SJed Brown   }
44609566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)section));
44619566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&dm->defaultConstraint.section));
44623b8ba7d1SJed Brown   dm->defaultConstraint.section = section;
44639566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)mat));
44649566063dSJacob Faibussowitsch   PetscCall(MatDestroy(&dm->defaultConstraint.mat));
44653b8ba7d1SJed Brown   dm->defaultConstraint.mat = mat;
44669566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)bias));
44679566063dSJacob Faibussowitsch   PetscCall(VecDestroy(&dm->defaultConstraint.bias));
446879769bd5SJed Brown   dm->defaultConstraint.bias = bias;
44693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
44709435951eSToby Isaac }
44719435951eSToby Isaac 
4472497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
4473507e4973SMatthew G. Knepley /*
4474bb7acecfSBarry Smith   DMDefaultSectionCheckConsistency - Check the consistentcy of the global and local sections. Generates and error if they are not consistent.
4475507e4973SMatthew G. Knepley 
4476507e4973SMatthew G. Knepley   Input Parameters:
4477bb7acecfSBarry Smith + dm - The `DM`
4478bb7acecfSBarry Smith . localSection - `PetscSection` describing the local data layout
4479bb7acecfSBarry Smith - globalSection - `PetscSection` describing the global data layout
4480507e4973SMatthew G. Knepley 
4481507e4973SMatthew G. Knepley   Level: intermediate
4482507e4973SMatthew G. Knepley 
44831cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetSectionSF()`, `DMSetSectionSF()`
4484507e4973SMatthew G. Knepley */
4485d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMDefaultSectionCheckConsistency_Internal(DM dm, PetscSection localSection, PetscSection globalSection)
4486d71ae5a4SJacob Faibussowitsch {
4487507e4973SMatthew G. Knepley   MPI_Comm        comm;
4488507e4973SMatthew G. Knepley   PetscLayout     layout;
4489507e4973SMatthew G. Knepley   const PetscInt *ranges;
4490507e4973SMatthew G. Knepley   PetscInt        pStart, pEnd, p, nroots;
4491507e4973SMatthew G. Knepley   PetscMPIInt     size, rank;
4492507e4973SMatthew G. Knepley   PetscBool       valid = PETSC_TRUE, gvalid;
4493507e4973SMatthew G. Knepley 
4494507e4973SMatthew G. Knepley   PetscFunctionBegin;
44959566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
4496507e4973SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
44979566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_size(comm, &size));
44989566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
44999566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetChart(globalSection, &pStart, &pEnd));
45009566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetConstrainedStorageSize(globalSection, &nroots));
45019566063dSJacob Faibussowitsch   PetscCall(PetscLayoutCreate(comm, &layout));
45029566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetBlockSize(layout, 1));
45039566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetLocalSize(layout, nroots));
45049566063dSJacob Faibussowitsch   PetscCall(PetscLayoutSetUp(layout));
45059566063dSJacob Faibussowitsch   PetscCall(PetscLayoutGetRanges(layout, &ranges));
4506507e4973SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
4507f741bcd2SMatthew G. Knepley     PetscInt dof, cdof, off, gdof, gcdof, goff, gsize, d;
4508507e4973SMatthew G. Knepley 
45099566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetDof(localSection, p, &dof));
45109566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetOffset(localSection, p, &off));
45119566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetConstraintDof(localSection, p, &cdof));
45129566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetDof(globalSection, p, &gdof));
45139566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetConstraintDof(globalSection, p, &gcdof));
45149566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetOffset(globalSection, p, &goff));
4515507e4973SMatthew G. Knepley     if (!gdof) continue; /* Censored point */
45169371c9d4SSatish Balay     if ((gdof < 0 ? -(gdof + 1) : gdof) != dof) {
45179371c9d4SSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "[%d]Global dof %" PetscInt_FMT " for point %" PetscInt_FMT " not equal to local dof %" PetscInt_FMT "\n", rank, gdof, p, dof));
45189371c9d4SSatish Balay       valid = PETSC_FALSE;
45199371c9d4SSatish Balay     }
45209371c9d4SSatish Balay     if (gcdof && (gcdof != cdof)) {
45219371c9d4SSatish Balay       PetscCall(PetscSynchronizedPrintf(comm, "[%d]Global constraints %" PetscInt_FMT " for point %" PetscInt_FMT " not equal to local constraints %" PetscInt_FMT "\n", rank, gcdof, p, cdof));
45229371c9d4SSatish Balay       valid = PETSC_FALSE;
45239371c9d4SSatish Balay     }
4524507e4973SMatthew G. Knepley     if (gdof < 0) {
4525507e4973SMatthew G. Knepley       gsize = gdof < 0 ? -(gdof + 1) - gcdof : gdof - gcdof;
4526507e4973SMatthew G. Knepley       for (d = 0; d < gsize; ++d) {
4527507e4973SMatthew G. Knepley         PetscInt offset = -(goff + 1) + d, r;
4528507e4973SMatthew G. Knepley 
45299566063dSJacob Faibussowitsch         PetscCall(PetscFindInt(offset, size + 1, ranges, &r));
4530507e4973SMatthew G. Knepley         if (r < 0) r = -(r + 2);
45319371c9d4SSatish Balay         if ((r < 0) || (r >= size)) {
45329371c9d4SSatish Balay           PetscCall(PetscSynchronizedPrintf(comm, "[%d]Point %" PetscInt_FMT " mapped to invalid process %" PetscInt_FMT " (%" PetscInt_FMT ", %" PetscInt_FMT ")\n", rank, p, r, gdof, goff));
45339371c9d4SSatish Balay           valid = PETSC_FALSE;
45349371c9d4SSatish Balay           break;
45359371c9d4SSatish Balay         }
4536507e4973SMatthew G. Knepley       }
4537507e4973SMatthew G. Knepley     }
4538507e4973SMatthew G. Knepley   }
45399566063dSJacob Faibussowitsch   PetscCall(PetscLayoutDestroy(&layout));
45409566063dSJacob Faibussowitsch   PetscCall(PetscSynchronizedFlush(comm, NULL));
45411c2dc1cbSBarry Smith   PetscCall(MPIU_Allreduce(&valid, &gvalid, 1, MPIU_BOOL, MPI_LAND, comm));
4542507e4973SMatthew G. Knepley   if (!gvalid) {
45439566063dSJacob Faibussowitsch     PetscCall(DMView(dm, NULL));
4544507e4973SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Inconsistent local and global sections");
4545507e4973SMatthew G. Knepley   }
45463ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4547507e4973SMatthew G. Knepley }
4548f741bcd2SMatthew G. Knepley #endif
4549507e4973SMatthew G. Knepley 
45505f06a3ddSJed Brown static PetscErrorCode DMGetIsoperiodicPointSF_Internal(DM dm, PetscSF *sf)
45516725e60dSJed Brown {
45526725e60dSJed Brown   PetscErrorCode (*f)(DM, PetscSF *);
45536725e60dSJed Brown   PetscFunctionBegin;
45546725e60dSJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
45554f572ea9SToby Isaac   PetscAssertPointer(sf, 2);
45565f06a3ddSJed Brown   PetscCall(PetscObjectQueryFunction((PetscObject)dm, "DMGetIsoperiodicPointSF_C", &f));
45576725e60dSJed Brown   if (f) PetscCall(f(dm, sf));
45586725e60dSJed Brown   else *sf = dm->sf;
45593ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
45606725e60dSJed Brown }
45616725e60dSJed Brown 
456288ed4aceSMatthew G Knepley /*@
4563bb7acecfSBarry Smith   DMGetGlobalSection - Get the `PetscSection` encoding the global data layout for the `DM`.
456488ed4aceSMatthew G Knepley 
456520f4b53cSBarry Smith   Collective
45668b1ab98fSJed Brown 
456788ed4aceSMatthew G Knepley   Input Parameter:
4568bb7acecfSBarry Smith . dm - The `DM`
456988ed4aceSMatthew G Knepley 
457088ed4aceSMatthew G Knepley   Output Parameter:
4571bb7acecfSBarry Smith . section - The `PetscSection`
457288ed4aceSMatthew G Knepley 
457388ed4aceSMatthew G Knepley   Level: intermediate
457488ed4aceSMatthew G Knepley 
4575bb7acecfSBarry Smith   Note:
4576bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSection`.
457788ed4aceSMatthew G Knepley 
45781cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetLocalSection()`, `DMGetLocalSection()`
457988ed4aceSMatthew G Knepley @*/
4580d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetGlobalSection(DM dm, PetscSection *section)
4581d71ae5a4SJacob Faibussowitsch {
458288ed4aceSMatthew G Knepley   PetscFunctionBegin;
458388ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
45844f572ea9SToby Isaac   PetscAssertPointer(section, 2);
45851bb6d2a8SBarry Smith   if (!dm->globalSection) {
4586fd59a867SMatthew G. Knepley     PetscSection s;
45876725e60dSJed Brown     PetscSF      sf;
4588fd59a867SMatthew G. Knepley 
45899566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &s));
45907a8be351SBarry Smith     PetscCheck(s, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM must have a default PetscSection in order to create a global PetscSection");
45917a8be351SBarry Smith     PetscCheck(dm->sf, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM must have a point PetscSF in order to create a global PetscSection");
45925f06a3ddSJed Brown     PetscCall(DMGetIsoperiodicPointSF_Internal(dm, &sf));
45936725e60dSJed Brown     PetscCall(PetscSectionCreateGlobalSection(s, sf, PETSC_FALSE, PETSC_FALSE, &dm->globalSection));
45949566063dSJacob Faibussowitsch     PetscCall(PetscLayoutDestroy(&dm->map));
45959566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetValueLayout(PetscObjectComm((PetscObject)dm), dm->globalSection, &dm->map));
45969566063dSJacob Faibussowitsch     PetscCall(PetscSectionViewFromOptions(dm->globalSection, NULL, "-global_section_view"));
459788ed4aceSMatthew G Knepley   }
45981bb6d2a8SBarry Smith   *section = dm->globalSection;
45993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
460088ed4aceSMatthew G Knepley }
460188ed4aceSMatthew G Knepley 
4602b21d0597SMatthew G Knepley /*@
4603bb7acecfSBarry Smith   DMSetGlobalSection - Set the `PetscSection` encoding the global data layout for the `DM`.
4604b21d0597SMatthew G Knepley 
4605b21d0597SMatthew G Knepley   Input Parameters:
4606bb7acecfSBarry Smith + dm      - The `DM`
46072fe279fdSBarry Smith - section - The PetscSection, or `NULL`
4608b21d0597SMatthew G Knepley 
4609b21d0597SMatthew G Knepley   Level: intermediate
4610b21d0597SMatthew G Knepley 
4611bb7acecfSBarry Smith   Note:
4612bb7acecfSBarry Smith   Any existing `PetscSection` will be destroyed
4613b21d0597SMatthew G Knepley 
46141cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetGlobalSection()`, `DMSetLocalSection()`
4615b21d0597SMatthew G Knepley @*/
4616d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetGlobalSection(DM dm, PetscSection section)
4617d71ae5a4SJacob Faibussowitsch {
4618b21d0597SMatthew G Knepley   PetscFunctionBegin;
4619b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
46205080bbdbSMatthew G Knepley   if (section) PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
46219566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)section));
46229566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&dm->globalSection));
46231bb6d2a8SBarry Smith   dm->globalSection = section;
4624497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
46259566063dSJacob Faibussowitsch   if (section) PetscCall(DMDefaultSectionCheckConsistency_Internal(dm, dm->localSection, section));
4626507e4973SMatthew G. Knepley #endif
46273ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4628b21d0597SMatthew G Knepley }
4629b21d0597SMatthew G Knepley 
463088ed4aceSMatthew G Knepley /*@
4631bb7acecfSBarry Smith   DMGetSectionSF - Get the `PetscSF` encoding the parallel dof overlap for the `DM`. If it has not been set,
4632bb7acecfSBarry Smith   it is created from the default `PetscSection` layouts in the `DM`.
463388ed4aceSMatthew G Knepley 
463488ed4aceSMatthew G Knepley   Input Parameter:
4635bb7acecfSBarry Smith . dm - The `DM`
463688ed4aceSMatthew G Knepley 
463788ed4aceSMatthew G Knepley   Output Parameter:
4638bb7acecfSBarry Smith . sf - The `PetscSF`
463988ed4aceSMatthew G Knepley 
464088ed4aceSMatthew G Knepley   Level: intermediate
464188ed4aceSMatthew G Knepley 
4642bb7acecfSBarry Smith   Note:
4643bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSF`.
464488ed4aceSMatthew G Knepley 
46451cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetSectionSF()`, `DMCreateSectionSF()`
464688ed4aceSMatthew G Knepley @*/
4647d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetSectionSF(DM dm, PetscSF *sf)
4648d71ae5a4SJacob Faibussowitsch {
464988ed4aceSMatthew G Knepley   PetscInt nroots;
465088ed4aceSMatthew G Knepley 
465188ed4aceSMatthew G Knepley   PetscFunctionBegin;
465288ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
46534f572ea9SToby Isaac   PetscAssertPointer(sf, 2);
465448a46eb9SPierre Jolivet   if (!dm->sectionSF) PetscCall(PetscSFCreate(PetscObjectComm((PetscObject)dm), &dm->sectionSF));
46559566063dSJacob Faibussowitsch   PetscCall(PetscSFGetGraph(dm->sectionSF, &nroots, NULL, NULL, NULL));
465688ed4aceSMatthew G Knepley   if (nroots < 0) {
465788ed4aceSMatthew G Knepley     PetscSection section, gSection;
465888ed4aceSMatthew G Knepley 
46599566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dm, &section));
466031ea6d37SMatthew G Knepley     if (section) {
46619566063dSJacob Faibussowitsch       PetscCall(DMGetGlobalSection(dm, &gSection));
46629566063dSJacob Faibussowitsch       PetscCall(DMCreateSectionSF(dm, section, gSection));
466331ea6d37SMatthew G Knepley     } else {
46640298fd71SBarry Smith       *sf = NULL;
46653ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
466631ea6d37SMatthew G Knepley     }
466788ed4aceSMatthew G Knepley   }
46681bb6d2a8SBarry Smith   *sf = dm->sectionSF;
46693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
467088ed4aceSMatthew G Knepley }
467188ed4aceSMatthew G Knepley 
467288ed4aceSMatthew G Knepley /*@
4673bb7acecfSBarry Smith   DMSetSectionSF - Set the `PetscSF` encoding the parallel dof overlap for the `DM`
467488ed4aceSMatthew G Knepley 
467588ed4aceSMatthew G Knepley   Input Parameters:
4676bb7acecfSBarry Smith + dm - The `DM`
4677bb7acecfSBarry Smith - sf - The `PetscSF`
467888ed4aceSMatthew G Knepley 
467988ed4aceSMatthew G Knepley   Level: intermediate
468088ed4aceSMatthew G Knepley 
4681bb7acecfSBarry Smith   Note:
4682bb7acecfSBarry Smith   Any previous `PetscSF` is destroyed
468388ed4aceSMatthew G Knepley 
46841cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetSectionSF()`, `DMCreateSectionSF()`
468588ed4aceSMatthew G Knepley @*/
4686d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetSectionSF(DM dm, PetscSF sf)
4687d71ae5a4SJacob Faibussowitsch {
468888ed4aceSMatthew G Knepley   PetscFunctionBegin;
468988ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4690b9d85ea2SLisandro Dalcin   if (sf) PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
46919566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)sf));
46929566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&dm->sectionSF));
46931bb6d2a8SBarry Smith   dm->sectionSF = sf;
46943ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
469588ed4aceSMatthew G Knepley }
469688ed4aceSMatthew G Knepley 
469788ed4aceSMatthew G Knepley /*@C
4698bb7acecfSBarry Smith   DMCreateSectionSF - Create the `PetscSF` encoding the parallel dof overlap for the `DM` based upon the `PetscSection`s
469988ed4aceSMatthew G Knepley   describing the data layout.
470088ed4aceSMatthew G Knepley 
470188ed4aceSMatthew G Knepley   Input Parameters:
4702bb7acecfSBarry Smith + dm            - The `DM`
4703bb7acecfSBarry Smith . localSection  - `PetscSection` describing the local data layout
4704bb7acecfSBarry Smith - globalSection - `PetscSection` describing the global data layout
470588ed4aceSMatthew G Knepley 
47061bb6d2a8SBarry Smith   Level: developer
47071bb6d2a8SBarry Smith 
4708bb7acecfSBarry Smith   Note:
4709bb7acecfSBarry Smith   One usually uses `DMGetSectionSF()` to obtain the `PetscSF`
4710bb7acecfSBarry Smith 
471160225df5SJacob Faibussowitsch   Developer Notes:
4712bb7acecfSBarry Smith   Since this routine has for arguments the two sections from the `DM` and puts the resulting `PetscSF`
4713bb7acecfSBarry Smith   directly into the `DM`, perhaps this function should not take the local and global sections as
4714bb7acecfSBarry Smith   input and should just obtain them from the `DM`?
47151bb6d2a8SBarry Smith 
47161cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetSectionSF()`, `DMSetSectionSF()`, `DMGetLocalSection()`, `DMGetGlobalSection()`
471788ed4aceSMatthew G Knepley @*/
4718d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateSectionSF(DM dm, PetscSection localSection, PetscSection globalSection)
4719d71ae5a4SJacob Faibussowitsch {
472088ed4aceSMatthew G Knepley   PetscFunctionBegin;
472188ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
47229566063dSJacob Faibussowitsch   PetscCall(PetscSFSetGraphSection(dm->sectionSF, localSection, globalSection));
47233ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
472488ed4aceSMatthew G Knepley }
4725af122d2aSMatthew G Knepley 
4726b21d0597SMatthew G Knepley /*@
4727bb7acecfSBarry Smith   DMGetPointSF - Get the `PetscSF` encoding the parallel section point overlap for the `DM`.
4728bb7acecfSBarry Smith 
4729bb7acecfSBarry Smith   Not collective but the resulting `PetscSF` is collective
4730b21d0597SMatthew G Knepley 
4731b21d0597SMatthew G Knepley   Input Parameter:
4732bb7acecfSBarry Smith . dm - The `DM`
4733b21d0597SMatthew G Knepley 
4734b21d0597SMatthew G Knepley   Output Parameter:
4735bb7acecfSBarry Smith . sf - The `PetscSF`
4736b21d0597SMatthew G Knepley 
4737b21d0597SMatthew G Knepley   Level: intermediate
4738b21d0597SMatthew G Knepley 
4739bb7acecfSBarry Smith   Note:
4740bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSF`.
4741b21d0597SMatthew G Knepley 
47421cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetPointSF()`, `DMGetSectionSF()`, `DMSetSectionSF()`, `DMCreateSectionSF()`
4743b21d0597SMatthew G Knepley @*/
4744d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetPointSF(DM dm, PetscSF *sf)
4745d71ae5a4SJacob Faibussowitsch {
4746b21d0597SMatthew G Knepley   PetscFunctionBegin;
4747b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
47484f572ea9SToby Isaac   PetscAssertPointer(sf, 2);
4749b21d0597SMatthew G Knepley   *sf = dm->sf;
47503ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4751b21d0597SMatthew G Knepley }
4752b21d0597SMatthew G Knepley 
4753057b4bcdSMatthew G Knepley /*@
4754bb7acecfSBarry Smith   DMSetPointSF - Set the `PetscSF` encoding the parallel section point overlap for the `DM`.
4755bb7acecfSBarry Smith 
475620f4b53cSBarry Smith   Collective
4757057b4bcdSMatthew G Knepley 
4758057b4bcdSMatthew G Knepley   Input Parameters:
4759bb7acecfSBarry Smith + dm - The `DM`
4760bb7acecfSBarry Smith - sf - The `PetscSF`
4761057b4bcdSMatthew G Knepley 
4762057b4bcdSMatthew G Knepley   Level: intermediate
4763057b4bcdSMatthew G Knepley 
47641cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetPointSF()`, `DMGetSectionSF()`, `DMSetSectionSF()`, `DMCreateSectionSF()`
4765057b4bcdSMatthew G Knepley @*/
4766d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetPointSF(DM dm, PetscSF sf)
4767d71ae5a4SJacob Faibussowitsch {
4768057b4bcdSMatthew G Knepley   PetscFunctionBegin;
4769057b4bcdSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4770b9d85ea2SLisandro Dalcin   if (sf) PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
47719566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)sf));
47729566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&dm->sf));
4773057b4bcdSMatthew G Knepley   dm->sf = sf;
47743ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4775057b4bcdSMatthew G Knepley }
4776057b4bcdSMatthew G Knepley 
47774f37162bSMatthew G. Knepley /*@
4778bb7acecfSBarry Smith   DMGetNaturalSF - Get the `PetscSF` encoding the map back to the original mesh ordering
47794f37162bSMatthew G. Knepley 
47804f37162bSMatthew G. Knepley   Input Parameter:
4781bb7acecfSBarry Smith . dm - The `DM`
47824f37162bSMatthew G. Knepley 
47834f37162bSMatthew G. Knepley   Output Parameter:
4784bb7acecfSBarry Smith . sf - The `PetscSF`
47854f37162bSMatthew G. Knepley 
47864f37162bSMatthew G. Knepley   Level: intermediate
47874f37162bSMatthew G. Knepley 
4788bb7acecfSBarry Smith   Note:
4789bb7acecfSBarry Smith   This gets a borrowed reference, so the user should not destroy this `PetscSF`.
47904f37162bSMatthew G. Knepley 
47911cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetNaturalSF()`, `DMSetUseNatural()`, `DMGetUseNatural()`, `DMPlexCreateGlobalToNaturalSF()`, `DMPlexDistribute()`
47924f37162bSMatthew G. Knepley @*/
4793d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNaturalSF(DM dm, PetscSF *sf)
4794d71ae5a4SJacob Faibussowitsch {
47954f37162bSMatthew G. Knepley   PetscFunctionBegin;
47964f37162bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
47974f572ea9SToby Isaac   PetscAssertPointer(sf, 2);
47984f37162bSMatthew G. Knepley   *sf = dm->sfNatural;
47993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
48004f37162bSMatthew G. Knepley }
48014f37162bSMatthew G. Knepley 
48024f37162bSMatthew G. Knepley /*@
48034f37162bSMatthew G. Knepley   DMSetNaturalSF - Set the PetscSF encoding the map back to the original mesh ordering
48044f37162bSMatthew G. Knepley 
48054f37162bSMatthew G. Knepley   Input Parameters:
48064f37162bSMatthew G. Knepley + dm - The DM
48074f37162bSMatthew G. Knepley - sf - The PetscSF
48084f37162bSMatthew G. Knepley 
48094f37162bSMatthew G. Knepley   Level: intermediate
48104f37162bSMatthew G. Knepley 
48111cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetNaturalSF()`, `DMSetUseNatural()`, `DMGetUseNatural()`, `DMPlexCreateGlobalToNaturalSF()`, `DMPlexDistribute()`
48124f37162bSMatthew G. Knepley @*/
4813d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetNaturalSF(DM dm, PetscSF sf)
4814d71ae5a4SJacob Faibussowitsch {
48154f37162bSMatthew G. Knepley   PetscFunctionBegin;
48164f37162bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
48174f37162bSMatthew G. Knepley   if (sf) PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
48189566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)sf));
48199566063dSJacob Faibussowitsch   PetscCall(PetscSFDestroy(&dm->sfNatural));
48204f37162bSMatthew G. Knepley   dm->sfNatural = sf;
48213ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
48224f37162bSMatthew G. Knepley }
48234f37162bSMatthew G. Knepley 
4824d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMSetDefaultAdjacency_Private(DM dm, PetscInt f, PetscObject disc)
4825d71ae5a4SJacob Faibussowitsch {
482634aa8a36SMatthew G. Knepley   PetscClassId id;
482734aa8a36SMatthew G. Knepley 
482834aa8a36SMatthew G. Knepley   PetscFunctionBegin;
48299566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetClassId(disc, &id));
483034aa8a36SMatthew G. Knepley   if (id == PETSCFE_CLASSID) {
48319566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE));
483234aa8a36SMatthew G. Knepley   } else if (id == PETSCFV_CLASSID) {
48339566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(dm, f, PETSC_TRUE, PETSC_FALSE));
483417c1d62eSMatthew G. Knepley   } else {
48359566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE));
483634aa8a36SMatthew G. Knepley   }
48373ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
483834aa8a36SMatthew G. Knepley }
483934aa8a36SMatthew G. Knepley 
4840d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMFieldEnlarge_Static(DM dm, PetscInt NfNew)
4841d71ae5a4SJacob Faibussowitsch {
484244a7f3ddSMatthew G. Knepley   RegionField *tmpr;
484344a7f3ddSMatthew G. Knepley   PetscInt     Nf = dm->Nf, f;
484444a7f3ddSMatthew G. Knepley 
484544a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
48463ba16761SJacob Faibussowitsch   if (Nf >= NfNew) PetscFunctionReturn(PETSC_SUCCESS);
48479566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(NfNew, &tmpr));
484844a7f3ddSMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpr[f] = dm->fields[f];
48499371c9d4SSatish Balay   for (f = Nf; f < NfNew; ++f) {
48509371c9d4SSatish Balay     tmpr[f].disc        = NULL;
48519371c9d4SSatish Balay     tmpr[f].label       = NULL;
48529371c9d4SSatish Balay     tmpr[f].avoidTensor = PETSC_FALSE;
48539371c9d4SSatish Balay   }
48549566063dSJacob Faibussowitsch   PetscCall(PetscFree(dm->fields));
485544a7f3ddSMatthew G. Knepley   dm->Nf     = NfNew;
485644a7f3ddSMatthew G. Knepley   dm->fields = tmpr;
48573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
485844a7f3ddSMatthew G. Knepley }
485944a7f3ddSMatthew G. Knepley 
486044a7f3ddSMatthew G. Knepley /*@
486120f4b53cSBarry Smith   DMClearFields - Remove all fields from the `DM`
486244a7f3ddSMatthew G. Knepley 
486320f4b53cSBarry Smith   Logically Collective
486444a7f3ddSMatthew G. Knepley 
486544a7f3ddSMatthew G. Knepley   Input Parameter:
486620f4b53cSBarry Smith . dm - The `DM`
486744a7f3ddSMatthew G. Knepley 
486844a7f3ddSMatthew G. Knepley   Level: intermediate
486944a7f3ddSMatthew G. Knepley 
48701cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetNumFields()`, `DMSetNumFields()`, `DMSetField()`
487144a7f3ddSMatthew G. Knepley @*/
4872d71ae5a4SJacob Faibussowitsch PetscErrorCode DMClearFields(DM dm)
4873d71ae5a4SJacob Faibussowitsch {
487444a7f3ddSMatthew G. Knepley   PetscInt f;
487544a7f3ddSMatthew G. Knepley 
487644a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
487744a7f3ddSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
487844a7f3ddSMatthew G. Knepley   for (f = 0; f < dm->Nf; ++f) {
48799566063dSJacob Faibussowitsch     PetscCall(PetscObjectDestroy(&dm->fields[f].disc));
48809566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&dm->fields[f].label));
488144a7f3ddSMatthew G. Knepley   }
48829566063dSJacob Faibussowitsch   PetscCall(PetscFree(dm->fields));
488344a7f3ddSMatthew G. Knepley   dm->fields = NULL;
488444a7f3ddSMatthew G. Knepley   dm->Nf     = 0;
48853ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
488644a7f3ddSMatthew G. Knepley }
488744a7f3ddSMatthew G. Knepley 
4888689b5837SMatthew G. Knepley /*@
488920f4b53cSBarry Smith   DMGetNumFields - Get the number of fields in the `DM`
4890689b5837SMatthew G. Knepley 
489120f4b53cSBarry Smith   Not Collective
4892689b5837SMatthew G. Knepley 
4893689b5837SMatthew G. Knepley   Input Parameter:
489420f4b53cSBarry Smith . dm - The `DM`
4895689b5837SMatthew G. Knepley 
4896689b5837SMatthew G. Knepley   Output Parameter:
489760225df5SJacob Faibussowitsch . numFields - The number of fields
4898689b5837SMatthew G. Knepley 
4899689b5837SMatthew G. Knepley   Level: intermediate
4900689b5837SMatthew G. Knepley 
49011cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetNumFields()`, `DMSetField()`
4902689b5837SMatthew G. Knepley @*/
4903d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNumFields(DM dm, PetscInt *numFields)
4904d71ae5a4SJacob Faibussowitsch {
49050f21e855SMatthew G. Knepley   PetscFunctionBegin;
49060f21e855SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
49074f572ea9SToby Isaac   PetscAssertPointer(numFields, 2);
490844a7f3ddSMatthew G. Knepley   *numFields = dm->Nf;
49093ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4910af122d2aSMatthew G Knepley }
4911af122d2aSMatthew G Knepley 
4912689b5837SMatthew G. Knepley /*@
491320f4b53cSBarry Smith   DMSetNumFields - Set the number of fields in the `DM`
4914689b5837SMatthew G. Knepley 
491520f4b53cSBarry Smith   Logically Collective
4916689b5837SMatthew G. Knepley 
4917689b5837SMatthew G. Knepley   Input Parameters:
491820f4b53cSBarry Smith + dm        - The `DM`
491960225df5SJacob Faibussowitsch - numFields - The number of fields
4920689b5837SMatthew G. Knepley 
4921689b5837SMatthew G. Knepley   Level: intermediate
4922689b5837SMatthew G. Knepley 
49231cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetNumFields()`, `DMSetField()`
4924689b5837SMatthew G. Knepley @*/
4925d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetNumFields(DM dm, PetscInt numFields)
4926d71ae5a4SJacob Faibussowitsch {
49270f21e855SMatthew G. Knepley   PetscInt Nf, f;
4928af122d2aSMatthew G Knepley 
4929af122d2aSMatthew G Knepley   PetscFunctionBegin;
4930af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
49319566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
49320f21e855SMatthew G. Knepley   for (f = Nf; f < numFields; ++f) {
49330f21e855SMatthew G. Knepley     PetscContainer obj;
49340f21e855SMatthew G. Knepley 
49359566063dSJacob Faibussowitsch     PetscCall(PetscContainerCreate(PetscObjectComm((PetscObject)dm), &obj));
49369566063dSJacob Faibussowitsch     PetscCall(DMAddField(dm, NULL, (PetscObject)obj));
49379566063dSJacob Faibussowitsch     PetscCall(PetscContainerDestroy(&obj));
4938af122d2aSMatthew G Knepley   }
49393ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4940af122d2aSMatthew G Knepley }
4941af122d2aSMatthew G Knepley 
4942c1929be8SMatthew G. Knepley /*@
4943bb7acecfSBarry Smith   DMGetField - Return the `DMLabel` and discretization object for a given `DM` field
4944c1929be8SMatthew G. Knepley 
494520f4b53cSBarry Smith   Not Collective
4946c1929be8SMatthew G. Knepley 
4947c1929be8SMatthew G. Knepley   Input Parameters:
4948bb7acecfSBarry Smith + dm - The `DM`
4949c1929be8SMatthew G. Knepley - f  - The field number
4950c1929be8SMatthew G. Knepley 
495144a7f3ddSMatthew G. Knepley   Output Parameters:
495220f4b53cSBarry Smith + label - The label indicating the support of the field, or `NULL` for the entire mesh (pass in `NULL` if not needed)
495320f4b53cSBarry Smith - disc  - The discretization object (pass in `NULL` if not needed)
4954c1929be8SMatthew G. Knepley 
495544a7f3ddSMatthew G. Knepley   Level: intermediate
4956c1929be8SMatthew G. Knepley 
49571cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMSetField()`
4958c1929be8SMatthew G. Knepley @*/
4959d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetField(DM dm, PetscInt f, DMLabel *label, PetscObject *disc)
4960d71ae5a4SJacob Faibussowitsch {
4961af122d2aSMatthew G Knepley   PetscFunctionBegin;
4962af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
49634f572ea9SToby Isaac   PetscAssertPointer(disc, 4);
49647a8be351SBarry Smith   PetscCheck((f >= 0) && (f < dm->Nf), PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %" PetscInt_FMT " must be in [0, %" PetscInt_FMT ")", f, dm->Nf);
496544a7f3ddSMatthew G. Knepley   if (label) *label = dm->fields[f].label;
4966bb7acecfSBarry Smith   if (disc) *disc = dm->fields[f].disc;
49673ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4968decb47aaSMatthew G. Knepley }
4969decb47aaSMatthew G. Knepley 
4970083401c6SMatthew G. Knepley /* Does not clear the DS */
4971d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetField_Internal(DM dm, PetscInt f, DMLabel label, PetscObject disc)
4972d71ae5a4SJacob Faibussowitsch {
4973083401c6SMatthew G. Knepley   PetscFunctionBegin;
49749566063dSJacob Faibussowitsch   PetscCall(DMFieldEnlarge_Static(dm, f + 1));
49759566063dSJacob Faibussowitsch   PetscCall(DMLabelDestroy(&dm->fields[f].label));
49769566063dSJacob Faibussowitsch   PetscCall(PetscObjectDestroy(&dm->fields[f].disc));
4977083401c6SMatthew G. Knepley   dm->fields[f].label = label;
4978bb7acecfSBarry Smith   dm->fields[f].disc  = disc;
49799566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)label));
4980bb7acecfSBarry Smith   PetscCall(PetscObjectReference((PetscObject)disc));
49813ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4982083401c6SMatthew G. Knepley }
4983083401c6SMatthew G. Knepley 
498446560f82SMatthew G. Knepley /*@C
4985bb7acecfSBarry Smith   DMSetField - Set the discretization object for a given `DM` field. Usually one would call `DMAddField()` which automatically handles
4986bb7acecfSBarry Smith   the field numbering.
4987c1929be8SMatthew G. Knepley 
498820f4b53cSBarry Smith   Logically Collective
4989c1929be8SMatthew G. Knepley 
4990c1929be8SMatthew G. Knepley   Input Parameters:
4991bb7acecfSBarry Smith + dm    - The `DM`
4992c1929be8SMatthew G. Knepley . f     - The field number
499320f4b53cSBarry Smith . label - The label indicating the support of the field, or `NULL` for the entire mesh
4994bb7acecfSBarry Smith - disc  - The discretization object
4995c1929be8SMatthew G. Knepley 
499644a7f3ddSMatthew G. Knepley   Level: intermediate
4997c1929be8SMatthew G. Knepley 
49981cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMGetField()`
4999c1929be8SMatthew G. Knepley @*/
5000d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetField(DM dm, PetscInt f, DMLabel label, PetscObject disc)
5001d71ae5a4SJacob Faibussowitsch {
5002decb47aaSMatthew G. Knepley   PetscFunctionBegin;
5003decb47aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5004e5e52638SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3);
5005bb7acecfSBarry Smith   PetscValidHeader(disc, 4);
50067a8be351SBarry Smith   PetscCheck(f >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %" PetscInt_FMT " must be non-negative", f);
5007bb7acecfSBarry Smith   PetscCall(DMSetField_Internal(dm, f, label, disc));
5008bb7acecfSBarry Smith   PetscCall(DMSetDefaultAdjacency_Private(dm, f, disc));
50099566063dSJacob Faibussowitsch   PetscCall(DMClearDS(dm));
50103ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
501144a7f3ddSMatthew G. Knepley }
501244a7f3ddSMatthew G. Knepley 
501346560f82SMatthew G. Knepley /*@C
5014bb7acecfSBarry Smith   DMAddField - Add a field to a `DM` object. A field is a function space defined by of a set of discretization points (geometric entities)
5015bb7acecfSBarry Smith   and a discretization object that defines the function space associated with those points.
501644a7f3ddSMatthew G. Knepley 
501720f4b53cSBarry Smith   Logically Collective
501844a7f3ddSMatthew G. Knepley 
501944a7f3ddSMatthew G. Knepley   Input Parameters:
5020bb7acecfSBarry Smith + dm    - The `DM`
502120f4b53cSBarry Smith . label - The label indicating the support of the field, or `NULL` for the entire mesh
5022bb7acecfSBarry Smith - disc  - The discretization object
502344a7f3ddSMatthew G. Knepley 
502444a7f3ddSMatthew G. Knepley   Level: intermediate
502544a7f3ddSMatthew G. Knepley 
5026bb7acecfSBarry Smith   Notes:
5027bb7acecfSBarry Smith   The label already exists or will be added to the `DM` with `DMSetLabel()`.
5028bb7acecfSBarry Smith 
5029da81f932SPierre Jolivet   For example, a piecewise continuous pressure field can be defined by coefficients at the cell centers of a mesh and piecewise constant functions
5030bb7acecfSBarry Smith   within each cell. Thus a specific function in the space is defined by the combination of a `Vec` containing the coefficients, a `DM` defining the
5031bb7acecfSBarry Smith   geometry entities, a `DMLabel` indicating a subset of those geometric entities, and a discretization object, such as a `PetscFE`.
5032bb7acecfSBarry Smith 
50331cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetLabel()`, `DMSetField()`, `DMGetField()`, `PetscFE`
503444a7f3ddSMatthew G. Knepley @*/
5035d71ae5a4SJacob Faibussowitsch PetscErrorCode DMAddField(DM dm, DMLabel label, PetscObject disc)
5036d71ae5a4SJacob Faibussowitsch {
503744a7f3ddSMatthew G. Knepley   PetscInt Nf = dm->Nf;
503844a7f3ddSMatthew G. Knepley 
503944a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
504044a7f3ddSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5041064a246eSJacob Faibussowitsch   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
5042bb7acecfSBarry Smith   PetscValidHeader(disc, 3);
50439566063dSJacob Faibussowitsch   PetscCall(DMFieldEnlarge_Static(dm, Nf + 1));
504444a7f3ddSMatthew G. Knepley   dm->fields[Nf].label = label;
5045bb7acecfSBarry Smith   dm->fields[Nf].disc  = disc;
50469566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)label));
5047bb7acecfSBarry Smith   PetscCall(PetscObjectReference((PetscObject)disc));
5048bb7acecfSBarry Smith   PetscCall(DMSetDefaultAdjacency_Private(dm, Nf, disc));
50499566063dSJacob Faibussowitsch   PetscCall(DMClearDS(dm));
50503ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5051af122d2aSMatthew G Knepley }
50526636e97aSMatthew G Knepley 
5053e5e52638SMatthew G. Knepley /*@
5054e0b68406SMatthew Knepley   DMSetFieldAvoidTensor - Set flag to avoid defining the field on tensor cells
5055e0b68406SMatthew Knepley 
505620f4b53cSBarry Smith   Logically Collective
5057e0b68406SMatthew Knepley 
5058e0b68406SMatthew Knepley   Input Parameters:
5059bb7acecfSBarry Smith + dm          - The `DM`
5060e0b68406SMatthew Knepley . f           - The field index
5061bb7acecfSBarry Smith - avoidTensor - `PETSC_TRUE` to skip defining the field on tensor cells
5062e0b68406SMatthew Knepley 
5063e0b68406SMatthew Knepley   Level: intermediate
5064e0b68406SMatthew Knepley 
50651cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetFieldAvoidTensor()`, `DMSetField()`, `DMGetField()`
5066e0b68406SMatthew Knepley @*/
5067d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetFieldAvoidTensor(DM dm, PetscInt f, PetscBool avoidTensor)
5068d71ae5a4SJacob Faibussowitsch {
5069e0b68406SMatthew Knepley   PetscFunctionBegin;
507063a3b9bcSJacob Faibussowitsch   PetscCheck((f >= 0) && (f < dm->Nf), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Field %" PetscInt_FMT " is not in [0, %" PetscInt_FMT ")", f, dm->Nf);
5071e0b68406SMatthew Knepley   dm->fields[f].avoidTensor = avoidTensor;
50723ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5073e0b68406SMatthew Knepley }
5074e0b68406SMatthew Knepley 
5075e0b68406SMatthew Knepley /*@
5076e0b68406SMatthew Knepley   DMGetFieldAvoidTensor - Get flag to avoid defining the field on tensor cells
5077e0b68406SMatthew Knepley 
507820f4b53cSBarry Smith   Not Collective
5079e0b68406SMatthew Knepley 
5080e0b68406SMatthew Knepley   Input Parameters:
5081bb7acecfSBarry Smith + dm - The `DM`
5082e0b68406SMatthew Knepley - f  - The field index
5083e0b68406SMatthew Knepley 
5084e0b68406SMatthew Knepley   Output Parameter:
5085e0b68406SMatthew Knepley . avoidTensor - The flag to avoid defining the field on tensor cells
5086e0b68406SMatthew Knepley 
5087e0b68406SMatthew Knepley   Level: intermediate
5088e0b68406SMatthew Knepley 
508960225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMAddField()`, `DMSetField()`, `DMGetField()`, `DMSetFieldAvoidTensor()`
5090e0b68406SMatthew Knepley @*/
5091d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetFieldAvoidTensor(DM dm, PetscInt f, PetscBool *avoidTensor)
5092d71ae5a4SJacob Faibussowitsch {
5093e0b68406SMatthew Knepley   PetscFunctionBegin;
509463a3b9bcSJacob Faibussowitsch   PetscCheck((f >= 0) && (f < dm->Nf), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Field %" PetscInt_FMT " is not in [0, %" PetscInt_FMT ")", f, dm->Nf);
5095e0b68406SMatthew Knepley   *avoidTensor = dm->fields[f].avoidTensor;
50963ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5097e0b68406SMatthew Knepley }
5098e0b68406SMatthew Knepley 
5099e0b68406SMatthew Knepley /*@
5100bb7acecfSBarry Smith   DMCopyFields - Copy the discretizations for the `DM` into another `DM`
5101e5e52638SMatthew G. Knepley 
510220f4b53cSBarry Smith   Collective
5103e5e52638SMatthew G. Knepley 
5104e5e52638SMatthew G. Knepley   Input Parameter:
5105bb7acecfSBarry Smith . dm - The `DM`
5106e5e52638SMatthew G. Knepley 
5107e5e52638SMatthew G. Knepley   Output Parameter:
5108bb7acecfSBarry Smith . newdm - The `DM`
5109e5e52638SMatthew G. Knepley 
5110e5e52638SMatthew G. Knepley   Level: advanced
5111e5e52638SMatthew G. Knepley 
51121cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetField()`, `DMSetField()`, `DMAddField()`, `DMCopyDS()`, `DMGetDS()`, `DMGetCellDS()`
5113e5e52638SMatthew G. Knepley @*/
5114d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyFields(DM dm, DM newdm)
5115d71ae5a4SJacob Faibussowitsch {
5116e5e52638SMatthew G. Knepley   PetscInt Nf, f;
5117e5e52638SMatthew G. Knepley 
5118e5e52638SMatthew G. Knepley   PetscFunctionBegin;
51193ba16761SJacob Faibussowitsch   if (dm == newdm) PetscFunctionReturn(PETSC_SUCCESS);
51209566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
51219566063dSJacob Faibussowitsch   PetscCall(DMClearFields(newdm));
5122e5e52638SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
5123e5e52638SMatthew G. Knepley     DMLabel     label;
5124e5e52638SMatthew G. Knepley     PetscObject field;
512534aa8a36SMatthew G. Knepley     PetscBool   useCone, useClosure;
5126e5e52638SMatthew G. Knepley 
51279566063dSJacob Faibussowitsch     PetscCall(DMGetField(dm, f, &label, &field));
51289566063dSJacob Faibussowitsch     PetscCall(DMSetField(newdm, f, label, field));
51299566063dSJacob Faibussowitsch     PetscCall(DMGetAdjacency(dm, f, &useCone, &useClosure));
51309566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(newdm, f, useCone, useClosure));
513134aa8a36SMatthew G. Knepley   }
51323ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
513334aa8a36SMatthew G. Knepley }
513434aa8a36SMatthew G. Knepley 
513534aa8a36SMatthew G. Knepley /*@
513634aa8a36SMatthew G. Knepley   DMGetAdjacency - Returns the flags for determining variable influence
513734aa8a36SMatthew G. Knepley 
513820f4b53cSBarry Smith   Not Collective
513934aa8a36SMatthew G. Knepley 
514034aa8a36SMatthew G. Knepley   Input Parameters:
514120f4b53cSBarry Smith + dm - The `DM` object
514220f4b53cSBarry Smith - f  - The field number, or `PETSC_DEFAULT` for the default adjacency
514334aa8a36SMatthew G. Knepley 
5144d8d19677SJose E. Roman   Output Parameters:
514534aa8a36SMatthew G. Knepley + useCone    - Flag for variable influence starting with the cone operation
514634aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
514734aa8a36SMatthew G. Knepley 
514834aa8a36SMatthew G. Knepley   Level: developer
514934aa8a36SMatthew G. Knepley 
515020f4b53cSBarry Smith   Notes:
515120f4b53cSBarry Smith .vb
515220f4b53cSBarry Smith      FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
515320f4b53cSBarry Smith      FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
515420f4b53cSBarry Smith      FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
515520f4b53cSBarry Smith .ve
515620f4b53cSBarry Smith   Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another.
515720f4b53cSBarry Smith 
51581cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetAdjacency()`, `DMGetField()`, `DMSetField()`
515934aa8a36SMatthew G. Knepley @*/
5160d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetAdjacency(DM dm, PetscInt f, PetscBool *useCone, PetscBool *useClosure)
5161d71ae5a4SJacob Faibussowitsch {
516234aa8a36SMatthew G. Knepley   PetscFunctionBegin;
516334aa8a36SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
51644f572ea9SToby Isaac   if (useCone) PetscAssertPointer(useCone, 3);
51654f572ea9SToby Isaac   if (useClosure) PetscAssertPointer(useClosure, 4);
516634aa8a36SMatthew G. Knepley   if (f < 0) {
516734aa8a36SMatthew G. Knepley     if (useCone) *useCone = dm->adjacency[0];
516834aa8a36SMatthew G. Knepley     if (useClosure) *useClosure = dm->adjacency[1];
516934aa8a36SMatthew G. Knepley   } else {
517034aa8a36SMatthew G. Knepley     PetscInt Nf;
517134aa8a36SMatthew G. Knepley 
51729566063dSJacob Faibussowitsch     PetscCall(DMGetNumFields(dm, &Nf));
51737a8be351SBarry Smith     PetscCheck(f < Nf, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %" PetscInt_FMT " must be in [0, %" PetscInt_FMT ")", f, Nf);
517434aa8a36SMatthew G. Knepley     if (useCone) *useCone = dm->fields[f].adjacency[0];
517534aa8a36SMatthew G. Knepley     if (useClosure) *useClosure = dm->fields[f].adjacency[1];
517634aa8a36SMatthew G. Knepley   }
51773ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
517834aa8a36SMatthew G. Knepley }
517934aa8a36SMatthew G. Knepley 
518034aa8a36SMatthew G. Knepley /*@
518134aa8a36SMatthew G. Knepley   DMSetAdjacency - Set the flags for determining variable influence
518234aa8a36SMatthew G. Knepley 
518320f4b53cSBarry Smith   Not Collective
518434aa8a36SMatthew G. Knepley 
518534aa8a36SMatthew G. Knepley   Input Parameters:
518620f4b53cSBarry Smith + dm         - The `DM` object
518734aa8a36SMatthew G. Knepley . f          - The field number
518834aa8a36SMatthew G. Knepley . useCone    - Flag for variable influence starting with the cone operation
518934aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
519034aa8a36SMatthew G. Knepley 
519134aa8a36SMatthew G. Knepley   Level: developer
519234aa8a36SMatthew G. Knepley 
519320f4b53cSBarry Smith   Notes:
519420f4b53cSBarry Smith .vb
519520f4b53cSBarry Smith      FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
519620f4b53cSBarry Smith      FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
519720f4b53cSBarry Smith      FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
519820f4b53cSBarry Smith .ve
519920f4b53cSBarry Smith   Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another.
520020f4b53cSBarry Smith 
52011cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetAdjacency()`, `DMGetField()`, `DMSetField()`
520234aa8a36SMatthew G. Knepley @*/
5203d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetAdjacency(DM dm, PetscInt f, PetscBool useCone, PetscBool useClosure)
5204d71ae5a4SJacob Faibussowitsch {
520534aa8a36SMatthew G. Knepley   PetscFunctionBegin;
520634aa8a36SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
520734aa8a36SMatthew G. Knepley   if (f < 0) {
520834aa8a36SMatthew G. Knepley     dm->adjacency[0] = useCone;
520934aa8a36SMatthew G. Knepley     dm->adjacency[1] = useClosure;
521034aa8a36SMatthew G. Knepley   } else {
521134aa8a36SMatthew G. Knepley     PetscInt Nf;
521234aa8a36SMatthew G. Knepley 
52139566063dSJacob Faibussowitsch     PetscCall(DMGetNumFields(dm, &Nf));
52147a8be351SBarry Smith     PetscCheck(f < Nf, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %" PetscInt_FMT " must be in [0, %" PetscInt_FMT ")", f, Nf);
521534aa8a36SMatthew G. Knepley     dm->fields[f].adjacency[0] = useCone;
521634aa8a36SMatthew G. Knepley     dm->fields[f].adjacency[1] = useClosure;
5217e5e52638SMatthew G. Knepley   }
52183ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5219e5e52638SMatthew G. Knepley }
5220e5e52638SMatthew G. Knepley 
5221b0441da4SMatthew G. Knepley /*@
5222b0441da4SMatthew G. Knepley   DMGetBasicAdjacency - Returns the flags for determining variable influence, using either the default or field 0 if it is defined
5223b0441da4SMatthew G. Knepley 
5224b0441da4SMatthew G. Knepley   Not collective
5225b0441da4SMatthew G. Knepley 
5226f899ff85SJose E. Roman   Input Parameter:
522720f4b53cSBarry Smith . dm - The `DM` object
5228b0441da4SMatthew G. Knepley 
5229d8d19677SJose E. Roman   Output Parameters:
5230b0441da4SMatthew G. Knepley + useCone    - Flag for variable influence starting with the cone operation
5231b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
5232b0441da4SMatthew G. Knepley 
5233b0441da4SMatthew G. Knepley   Level: developer
5234b0441da4SMatthew G. Knepley 
523520f4b53cSBarry Smith   Notes:
523620f4b53cSBarry Smith .vb
523720f4b53cSBarry Smith      FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
523820f4b53cSBarry Smith      FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
523920f4b53cSBarry Smith      FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
524020f4b53cSBarry Smith .ve
524120f4b53cSBarry Smith 
52421cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetBasicAdjacency()`, `DMGetField()`, `DMSetField()`
5243b0441da4SMatthew G. Knepley @*/
5244d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetBasicAdjacency(DM dm, PetscBool *useCone, PetscBool *useClosure)
5245d71ae5a4SJacob Faibussowitsch {
5246b0441da4SMatthew G. Knepley   PetscInt Nf;
5247b0441da4SMatthew G. Knepley 
5248b0441da4SMatthew G. Knepley   PetscFunctionBegin;
5249b0441da4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
52504f572ea9SToby Isaac   if (useCone) PetscAssertPointer(useCone, 2);
52514f572ea9SToby Isaac   if (useClosure) PetscAssertPointer(useClosure, 3);
52529566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
5253b0441da4SMatthew G. Knepley   if (!Nf) {
52549566063dSJacob Faibussowitsch     PetscCall(DMGetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure));
5255b0441da4SMatthew G. Knepley   } else {
52569566063dSJacob Faibussowitsch     PetscCall(DMGetAdjacency(dm, 0, useCone, useClosure));
5257b0441da4SMatthew G. Knepley   }
52583ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5259b0441da4SMatthew G. Knepley }
5260b0441da4SMatthew G. Knepley 
5261b0441da4SMatthew G. Knepley /*@
5262b0441da4SMatthew G. Knepley   DMSetBasicAdjacency - Set the flags for determining variable influence, using either the default or field 0 if it is defined
5263b0441da4SMatthew G. Knepley 
526420f4b53cSBarry Smith   Not Collective
5265b0441da4SMatthew G. Knepley 
5266b0441da4SMatthew G. Knepley   Input Parameters:
526720f4b53cSBarry Smith + dm         - The `DM` object
5268b0441da4SMatthew G. Knepley . useCone    - Flag for variable influence starting with the cone operation
5269b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
5270b0441da4SMatthew G. Knepley 
5271b0441da4SMatthew G. Knepley   Level: developer
5272b0441da4SMatthew G. Knepley 
527320f4b53cSBarry Smith   Notes:
527420f4b53cSBarry Smith .vb
527520f4b53cSBarry Smith      FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
527620f4b53cSBarry Smith      FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
527720f4b53cSBarry Smith      FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
527820f4b53cSBarry Smith .ve
527920f4b53cSBarry Smith 
52801cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetBasicAdjacency()`, `DMGetField()`, `DMSetField()`
5281b0441da4SMatthew G. Knepley @*/
5282d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetBasicAdjacency(DM dm, PetscBool useCone, PetscBool useClosure)
5283d71ae5a4SJacob Faibussowitsch {
5284b0441da4SMatthew G. Knepley   PetscInt Nf;
5285b0441da4SMatthew G. Knepley 
5286b0441da4SMatthew G. Knepley   PetscFunctionBegin;
5287b0441da4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
52889566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
5289b0441da4SMatthew G. Knepley   if (!Nf) {
52909566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure));
5291b0441da4SMatthew G. Knepley   } else {
52929566063dSJacob Faibussowitsch     PetscCall(DMSetAdjacency(dm, 0, useCone, useClosure));
5293e5e52638SMatthew G. Knepley   }
52943ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5295e5e52638SMatthew G. Knepley }
5296e5e52638SMatthew G. Knepley 
5297d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCompleteBCLabels_Internal(DM dm)
5298d71ae5a4SJacob Faibussowitsch {
5299799db056SMatthew G. Knepley   DM           plex;
5300799db056SMatthew G. Knepley   DMLabel     *labels, *glabels;
5301799db056SMatthew G. Knepley   const char **names;
5302799db056SMatthew G. Knepley   char        *sendNames, *recvNames;
5303799db056SMatthew G. Knepley   PetscInt     Nds, s, maxLabels = 0, maxLen = 0, gmaxLen, Nl = 0, gNl, l, gl, m;
5304799db056SMatthew G. Knepley   size_t       len;
5305799db056SMatthew G. Knepley   MPI_Comm     comm;
5306799db056SMatthew G. Knepley   PetscMPIInt  rank, size, p, *counts, *displs;
5307783e2ec8SMatthew G. Knepley 
5308783e2ec8SMatthew G. Knepley   PetscFunctionBegin;
5309799db056SMatthew G. Knepley   PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
5310799db056SMatthew G. Knepley   PetscCallMPI(MPI_Comm_size(comm, &size));
5311799db056SMatthew G. Knepley   PetscCallMPI(MPI_Comm_rank(comm, &rank));
5312799db056SMatthew G. Knepley   PetscCall(DMGetNumDS(dm, &Nds));
5313799db056SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
5314799db056SMatthew G. Knepley     PetscDS  dsBC;
5315799db056SMatthew G. Knepley     PetscInt numBd;
5316799db056SMatthew G. Knepley 
531707218a29SMatthew G. Knepley     PetscCall(DMGetRegionNumDS(dm, s, NULL, NULL, &dsBC, NULL));
5318799db056SMatthew G. Knepley     PetscCall(PetscDSGetNumBoundary(dsBC, &numBd));
5319799db056SMatthew G. Knepley     maxLabels += numBd;
5320799db056SMatthew G. Knepley   }
5321799db056SMatthew G. Knepley   PetscCall(PetscCalloc1(maxLabels, &labels));
5322799db056SMatthew G. Knepley   /* Get list of labels to be completed */
5323799db056SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
5324799db056SMatthew G. Knepley     PetscDS  dsBC;
5325799db056SMatthew G. Knepley     PetscInt numBd, bd;
5326799db056SMatthew G. Knepley 
532707218a29SMatthew G. Knepley     PetscCall(DMGetRegionNumDS(dm, s, NULL, NULL, &dsBC, NULL));
5328799db056SMatthew G. Knepley     PetscCall(PetscDSGetNumBoundary(dsBC, &numBd));
5329799db056SMatthew G. Knepley     for (bd = 0; bd < numBd; ++bd) {
5330799db056SMatthew G. Knepley       DMLabel      label;
5331799db056SMatthew G. Knepley       PetscInt     field;
5332799db056SMatthew G. Knepley       PetscObject  obj;
5333799db056SMatthew G. Knepley       PetscClassId id;
5334799db056SMatthew G. Knepley 
5335799db056SMatthew G. Knepley       PetscCall(PetscDSGetBoundary(dsBC, bd, NULL, NULL, NULL, &label, NULL, NULL, &field, NULL, NULL, NULL, NULL, NULL));
53369566063dSJacob Faibussowitsch       PetscCall(DMGetField(dm, field, NULL, &obj));
53379566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetClassId(obj, &id));
5338799db056SMatthew G. Knepley       if (!(id == PETSCFE_CLASSID) || !label) continue;
53399371c9d4SSatish Balay       for (l = 0; l < Nl; ++l)
53409371c9d4SSatish Balay         if (labels[l] == label) break;
5341799db056SMatthew G. Knepley       if (l == Nl) labels[Nl++] = label;
5342783e2ec8SMatthew G. Knepley     }
5343799db056SMatthew G. Knepley   }
5344799db056SMatthew G. Knepley   /* Get label names */
5345799db056SMatthew G. Knepley   PetscCall(PetscMalloc1(Nl, &names));
5346799db056SMatthew G. Knepley   for (l = 0; l < Nl; ++l) PetscCall(PetscObjectGetName((PetscObject)labels[l], &names[l]));
53479371c9d4SSatish Balay   for (l = 0; l < Nl; ++l) {
53489371c9d4SSatish Balay     PetscCall(PetscStrlen(names[l], &len));
53499371c9d4SSatish Balay     maxLen = PetscMax(maxLen, (PetscInt)len + 2);
53509371c9d4SSatish Balay   }
5351799db056SMatthew G. Knepley   PetscCall(PetscFree(labels));
5352712fec58SPierre Jolivet   PetscCall(MPIU_Allreduce(&maxLen, &gmaxLen, 1, MPIU_INT, MPI_MAX, comm));
5353799db056SMatthew G. Knepley   PetscCall(PetscCalloc1(Nl * gmaxLen, &sendNames));
5354c6a7a370SJeremy L Thompson   for (l = 0; l < Nl; ++l) PetscCall(PetscStrncpy(&sendNames[gmaxLen * l], names[l], gmaxLen));
5355799db056SMatthew G. Knepley   PetscCall(PetscFree(names));
5356799db056SMatthew G. Knepley   /* Put all names on all processes */
5357799db056SMatthew G. Knepley   PetscCall(PetscCalloc2(size, &counts, size + 1, &displs));
5358799db056SMatthew G. Knepley   PetscCallMPI(MPI_Allgather(&Nl, 1, MPI_INT, counts, 1, MPI_INT, comm));
5359799db056SMatthew G. Knepley   for (p = 0; p < size; ++p) displs[p + 1] = displs[p] + counts[p];
5360799db056SMatthew G. Knepley   gNl = displs[size];
53619371c9d4SSatish Balay   for (p = 0; p < size; ++p) {
53629371c9d4SSatish Balay     counts[p] *= gmaxLen;
53639371c9d4SSatish Balay     displs[p] *= gmaxLen;
53649371c9d4SSatish Balay   }
5365799db056SMatthew G. Knepley   PetscCall(PetscCalloc2(gNl * gmaxLen, &recvNames, gNl, &glabels));
5366799db056SMatthew G. Knepley   PetscCallMPI(MPI_Allgatherv(sendNames, counts[rank], MPI_CHAR, recvNames, counts, displs, MPI_CHAR, comm));
5367799db056SMatthew G. Knepley   PetscCall(PetscFree2(counts, displs));
5368799db056SMatthew G. Knepley   PetscCall(PetscFree(sendNames));
5369799db056SMatthew G. Knepley   for (l = 0, gl = 0; l < gNl; ++l) {
5370799db056SMatthew G. Knepley     PetscCall(DMGetLabel(dm, &recvNames[l * gmaxLen], &glabels[gl]));
5371799db056SMatthew G. Knepley     PetscCheck(glabels[gl], PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Label %s missing on rank %d", &recvNames[l * gmaxLen], rank);
53729371c9d4SSatish Balay     for (m = 0; m < gl; ++m)
53739371c9d4SSatish Balay       if (glabels[m] == glabels[gl]) continue;
53749566063dSJacob Faibussowitsch     PetscCall(DMConvert(dm, DMPLEX, &plex));
5375799db056SMatthew G. Knepley     PetscCall(DMPlexLabelComplete(plex, glabels[gl]));
53769566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&plex));
5377799db056SMatthew G. Knepley     ++gl;
5378783e2ec8SMatthew G. Knepley   }
5379799db056SMatthew G. Knepley   PetscCall(PetscFree2(recvNames, glabels));
53803ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5381783e2ec8SMatthew G. Knepley }
5382783e2ec8SMatthew G. Knepley 
5383d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMDSEnlarge_Static(DM dm, PetscInt NdsNew)
5384d71ae5a4SJacob Faibussowitsch {
5385e5e52638SMatthew G. Knepley   DMSpace *tmpd;
5386e5e52638SMatthew G. Knepley   PetscInt Nds = dm->Nds, s;
5387e5e52638SMatthew G. Knepley 
5388e5e52638SMatthew G. Knepley   PetscFunctionBegin;
53893ba16761SJacob Faibussowitsch   if (Nds >= NdsNew) PetscFunctionReturn(PETSC_SUCCESS);
53909566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(NdsNew, &tmpd));
5391e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) tmpd[s] = dm->probs[s];
53929371c9d4SSatish Balay   for (s = Nds; s < NdsNew; ++s) {
53939371c9d4SSatish Balay     tmpd[s].ds     = NULL;
53949371c9d4SSatish Balay     tmpd[s].label  = NULL;
53959371c9d4SSatish Balay     tmpd[s].fields = NULL;
53969371c9d4SSatish Balay   }
53979566063dSJacob Faibussowitsch   PetscCall(PetscFree(dm->probs));
5398e5e52638SMatthew G. Knepley   dm->Nds   = NdsNew;
5399e5e52638SMatthew G. Knepley   dm->probs = tmpd;
54003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5401e5e52638SMatthew G. Knepley }
5402e5e52638SMatthew G. Knepley 
5403e5e52638SMatthew G. Knepley /*@
540420f4b53cSBarry Smith   DMGetNumDS - Get the number of discrete systems in the `DM`
5405e5e52638SMatthew G. Knepley 
540620f4b53cSBarry Smith   Not Collective
5407e5e52638SMatthew G. Knepley 
5408e5e52638SMatthew G. Knepley   Input Parameter:
540920f4b53cSBarry Smith . dm - The `DM`
5410e5e52638SMatthew G. Knepley 
5411e5e52638SMatthew G. Knepley   Output Parameter:
541220f4b53cSBarry Smith . Nds - The number of `PetscDS` objects
5413e5e52638SMatthew G. Knepley 
5414e5e52638SMatthew G. Knepley   Level: intermediate
5415e5e52638SMatthew G. Knepley 
54161cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetDS()`, `DMGetCellDS()`
5417e5e52638SMatthew G. Knepley @*/
5418d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNumDS(DM dm, PetscInt *Nds)
5419d71ae5a4SJacob Faibussowitsch {
5420e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5421e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
54224f572ea9SToby Isaac   PetscAssertPointer(Nds, 2);
5423e5e52638SMatthew G. Knepley   *Nds = dm->Nds;
54243ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5425e5e52638SMatthew G. Knepley }
5426e5e52638SMatthew G. Knepley 
5427e5e52638SMatthew G. Knepley /*@
542820f4b53cSBarry Smith   DMClearDS - Remove all discrete systems from the `DM`
5429e5e52638SMatthew G. Knepley 
543020f4b53cSBarry Smith   Logically Collective
5431e5e52638SMatthew G. Knepley 
5432e5e52638SMatthew G. Knepley   Input Parameter:
543320f4b53cSBarry Smith . dm - The `DM`
5434e5e52638SMatthew G. Knepley 
5435e5e52638SMatthew G. Knepley   Level: intermediate
5436e5e52638SMatthew G. Knepley 
54371cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetNumDS()`, `DMGetDS()`, `DMSetField()`
5438e5e52638SMatthew G. Knepley @*/
5439d71ae5a4SJacob Faibussowitsch PetscErrorCode DMClearDS(DM dm)
5440d71ae5a4SJacob Faibussowitsch {
5441e5e52638SMatthew G. Knepley   PetscInt s;
5442e5e52638SMatthew G. Knepley 
5443e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5444e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5445e5e52638SMatthew G. Knepley   for (s = 0; s < dm->Nds; ++s) {
54469566063dSJacob Faibussowitsch     PetscCall(PetscDSDestroy(&dm->probs[s].ds));
544707218a29SMatthew G. Knepley     PetscCall(PetscDSDestroy(&dm->probs[s].dsIn));
54489566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&dm->probs[s].label));
54499566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&dm->probs[s].fields));
5450e5e52638SMatthew G. Knepley   }
54519566063dSJacob Faibussowitsch   PetscCall(PetscFree(dm->probs));
5452e5e52638SMatthew G. Knepley   dm->probs = NULL;
5453e5e52638SMatthew G. Knepley   dm->Nds   = 0;
54543ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5455e5e52638SMatthew G. Knepley }
5456e5e52638SMatthew G. Knepley 
5457e5e52638SMatthew G. Knepley /*@
545820f4b53cSBarry Smith   DMGetDS - Get the default `PetscDS`
5459e5e52638SMatthew G. Knepley 
546020f4b53cSBarry Smith   Not Collective
5461e5e52638SMatthew G. Knepley 
5462e5e52638SMatthew G. Knepley   Input Parameter:
546320f4b53cSBarry Smith . dm - The `DM`
5464e5e52638SMatthew G. Knepley 
5465e5e52638SMatthew G. Knepley   Output Parameter:
546607218a29SMatthew G. Knepley . ds - The default `PetscDS`
5467e5e52638SMatthew G. Knepley 
5468e5e52638SMatthew G. Knepley   Level: intermediate
5469e5e52638SMatthew G. Knepley 
54701cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetCellDS()`, `DMGetRegionDS()`
5471e5e52638SMatthew G. Knepley @*/
547207218a29SMatthew G. Knepley PetscErrorCode DMGetDS(DM dm, PetscDS *ds)
5473d71ae5a4SJacob Faibussowitsch {
5474e5e52638SMatthew G. Knepley   PetscFunctionBeginHot;
5475e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
54764f572ea9SToby Isaac   PetscAssertPointer(ds, 2);
547707218a29SMatthew G. Knepley   PetscCheck(dm->Nds > 0, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Need to call DMCreateDS() before calling DMGetDS()");
547807218a29SMatthew G. Knepley   *ds = dm->probs[0].ds;
54793ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5480e5e52638SMatthew G. Knepley }
5481e5e52638SMatthew G. Knepley 
5482e5e52638SMatthew G. Knepley /*@
548320f4b53cSBarry Smith   DMGetCellDS - Get the `PetscDS` defined on a given cell
5484e5e52638SMatthew G. Knepley 
548520f4b53cSBarry Smith   Not Collective
5486e5e52638SMatthew G. Knepley 
5487e5e52638SMatthew G. Knepley   Input Parameters:
548820f4b53cSBarry Smith + dm    - The `DM`
548920f4b53cSBarry Smith - point - Cell for the `PetscDS`
5490e5e52638SMatthew G. Knepley 
549107218a29SMatthew G. Knepley   Output Parameters:
549207218a29SMatthew G. Knepley + ds   - The `PetscDS` defined on the given cell
549307218a29SMatthew G. Knepley - dsIn - The `PetscDS` for input on the given cell, or NULL if the same ds
5494e5e52638SMatthew G. Knepley 
5495e5e52638SMatthew G. Knepley   Level: developer
5496e5e52638SMatthew G. Knepley 
54971cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetDS()`, `DMSetRegionDS()`
5498e5e52638SMatthew G. Knepley @*/
549907218a29SMatthew G. Knepley PetscErrorCode DMGetCellDS(DM dm, PetscInt point, PetscDS *ds, PetscDS *dsIn)
5500d71ae5a4SJacob Faibussowitsch {
550107218a29SMatthew G. Knepley   PetscDS  dsDef = NULL;
5502e5e52638SMatthew G. Knepley   PetscInt s;
5503e5e52638SMatthew G. Knepley 
5504e5e52638SMatthew G. Knepley   PetscFunctionBeginHot;
5505e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
55064f572ea9SToby Isaac   if (ds) PetscAssertPointer(ds, 3);
55074f572ea9SToby Isaac   if (dsIn) PetscAssertPointer(dsIn, 4);
550863a3b9bcSJacob Faibussowitsch   PetscCheck(point >= 0, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Mesh point cannot be negative: %" PetscInt_FMT, point);
550907218a29SMatthew G. Knepley   if (ds) *ds = NULL;
551007218a29SMatthew G. Knepley   if (dsIn) *dsIn = NULL;
5511e5e52638SMatthew G. Knepley   for (s = 0; s < dm->Nds; ++s) {
5512e5e52638SMatthew G. Knepley     PetscInt val;
5513e5e52638SMatthew G. Knepley 
55149371c9d4SSatish Balay     if (!dm->probs[s].label) {
551507218a29SMatthew G. Knepley       dsDef = dm->probs[s].ds;
55169371c9d4SSatish Balay     } else {
55179566063dSJacob Faibussowitsch       PetscCall(DMLabelGetValue(dm->probs[s].label, point, &val));
55189371c9d4SSatish Balay       if (val >= 0) {
551907218a29SMatthew G. Knepley         if (ds) *ds = dm->probs[s].ds;
552007218a29SMatthew G. Knepley         if (dsIn) *dsIn = dm->probs[s].dsIn;
55219371c9d4SSatish Balay         break;
55229371c9d4SSatish Balay       }
5523e5e52638SMatthew G. Knepley     }
5524e5e52638SMatthew G. Knepley   }
552507218a29SMatthew G. Knepley   if (ds && !*ds) *ds = dsDef;
55263ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5527e5e52638SMatthew G. Knepley }
5528e5e52638SMatthew G. Knepley 
5529e5e52638SMatthew G. Knepley /*@
553020f4b53cSBarry Smith   DMGetRegionDS - Get the `PetscDS` for a given mesh region, defined by a `DMLabel`
5531e5e52638SMatthew G. Knepley 
553220f4b53cSBarry Smith   Not Collective
5533e5e52638SMatthew G. Knepley 
5534e5e52638SMatthew G. Knepley   Input Parameters:
553520f4b53cSBarry Smith + dm    - The `DM`
553620f4b53cSBarry Smith - label - The `DMLabel` defining the mesh region, or `NULL` for the entire mesh
5537e5e52638SMatthew G. Knepley 
5538b3cf3223SMatthew G. Knepley   Output Parameters:
553920f4b53cSBarry Smith + fields - The `IS` containing the `DM` field numbers for the fields in this `PetscDS`, or `NULL`
554007218a29SMatthew G. Knepley . ds     - The `PetscDS` defined on the given region, or `NULL`
554107218a29SMatthew G. Knepley - dsIn   - The `PetscDS` for input in the given region, or `NULL`
5542e5e52638SMatthew G. Knepley 
5543e5e52638SMatthew G. Knepley   Level: advanced
5544e5e52638SMatthew G. Knepley 
554520f4b53cSBarry Smith   Note:
554620f4b53cSBarry Smith   If a non-`NULL` label is given, but there is no `PetscDS` on that specific label,
554720f4b53cSBarry Smith   the `PetscDS` for the full domain (if present) is returned. Returns with
554807218a29SMatthew G. Knepley   fields = `NULL` and ds = `NULL` if there is no `PetscDS` for the full domain.
554920f4b53cSBarry Smith 
55501cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRegionNumDS()`, `DMSetRegionDS()`, `DMGetDS()`, `DMGetCellDS()`
5551e5e52638SMatthew G. Knepley @*/
555207218a29SMatthew G. Knepley PetscErrorCode DMGetRegionDS(DM dm, DMLabel label, IS *fields, PetscDS *ds, PetscDS *dsIn)
5553d71ae5a4SJacob Faibussowitsch {
5554e5e52638SMatthew G. Knepley   PetscInt Nds = dm->Nds, s;
5555e5e52638SMatthew G. Knepley 
5556e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5557e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5558e5e52638SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
55599371c9d4SSatish Balay   if (fields) {
55604f572ea9SToby Isaac     PetscAssertPointer(fields, 3);
55619371c9d4SSatish Balay     *fields = NULL;
55629371c9d4SSatish Balay   }
55639371c9d4SSatish Balay   if (ds) {
55644f572ea9SToby Isaac     PetscAssertPointer(ds, 4);
55659371c9d4SSatish Balay     *ds = NULL;
55669371c9d4SSatish Balay   }
556707218a29SMatthew G. Knepley   if (dsIn) {
55684f572ea9SToby Isaac     PetscAssertPointer(dsIn, 5);
556907218a29SMatthew G. Knepley     *dsIn = NULL;
557007218a29SMatthew G. Knepley   }
5571e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
5572154ca461SJed Brown     if (dm->probs[s].label == label || !dm->probs[s].label) {
5573b3cf3223SMatthew G. Knepley       if (fields) *fields = dm->probs[s].fields;
5574b3cf3223SMatthew G. Knepley       if (ds) *ds = dm->probs[s].ds;
557507218a29SMatthew G. Knepley       if (dsIn) *dsIn = dm->probs[s].dsIn;
55763ba16761SJacob Faibussowitsch       if (dm->probs[s].label) PetscFunctionReturn(PETSC_SUCCESS);
5577b3cf3223SMatthew G. Knepley     }
5578e5e52638SMatthew G. Knepley   }
55793ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5580e5e52638SMatthew G. Knepley }
5581e5e52638SMatthew G. Knepley 
5582e5e52638SMatthew G. Knepley /*@
5583bb7acecfSBarry Smith   DMSetRegionDS - Set the `PetscDS` for a given mesh region, defined by a `DMLabel`
5584083401c6SMatthew G. Knepley 
558520f4b53cSBarry Smith   Collective
5586083401c6SMatthew G. Knepley 
5587083401c6SMatthew G. Knepley   Input Parameters:
5588bb7acecfSBarry Smith + dm     - The `DM`
558920f4b53cSBarry Smith . label  - The `DMLabel` defining the mesh region, or `NULL` for the entire mesh
559007218a29SMatthew G. Knepley . fields - The `IS` containing the `DM` field numbers for the fields in this `PetscDS`, or `NULL` for all fields
559107218a29SMatthew G. Knepley . ds     - The `PetscDS` defined on the given region
559207218a29SMatthew G. Knepley - dsIn   - The `PetscDS` for input on the given cell, or `NULL` if it is the same `PetscDS`
5593083401c6SMatthew G. Knepley 
559420f4b53cSBarry Smith   Level: advanced
559520f4b53cSBarry Smith 
5596bb7acecfSBarry Smith   Note:
5597bb7acecfSBarry Smith   If the label has a `PetscDS` defined, it will be replaced. Otherwise, it will be added to the `DM`. If the `PetscDS` is replaced,
5598083401c6SMatthew G. Knepley   the fields argument is ignored.
5599083401c6SMatthew G. Knepley 
56001cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRegionDS()`, `DMSetRegionNumDS()`, `DMGetDS()`, `DMGetCellDS()`
5601083401c6SMatthew G. Knepley @*/
560207218a29SMatthew G. Knepley PetscErrorCode DMSetRegionDS(DM dm, DMLabel label, IS fields, PetscDS ds, PetscDS dsIn)
5603d71ae5a4SJacob Faibussowitsch {
5604083401c6SMatthew G. Knepley   PetscInt Nds = dm->Nds, s;
5605083401c6SMatthew G. Knepley 
5606083401c6SMatthew G. Knepley   PetscFunctionBegin;
5607083401c6SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5608083401c6SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
560907218a29SMatthew G. Knepley   if (fields) PetscValidHeaderSpecific(fields, IS_CLASSID, 3);
5610064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(ds, PETSCDS_CLASSID, 4);
561107218a29SMatthew G. Knepley   if (dsIn) PetscValidHeaderSpecific(dsIn, PETSCDS_CLASSID, 5);
5612083401c6SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
5613083401c6SMatthew G. Knepley     if (dm->probs[s].label == label) {
56149566063dSJacob Faibussowitsch       PetscCall(PetscDSDestroy(&dm->probs[s].ds));
561507218a29SMatthew G. Knepley       PetscCall(PetscDSDestroy(&dm->probs[s].dsIn));
5616083401c6SMatthew G. Knepley       dm->probs[s].ds   = ds;
561707218a29SMatthew G. Knepley       dm->probs[s].dsIn = dsIn;
56183ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
5619083401c6SMatthew G. Knepley     }
5620083401c6SMatthew G. Knepley   }
56219566063dSJacob Faibussowitsch   PetscCall(DMDSEnlarge_Static(dm, Nds + 1));
56229566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)label));
56239566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)fields));
56249566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)ds));
562507218a29SMatthew G. Knepley   PetscCall(PetscObjectReference((PetscObject)dsIn));
5626083401c6SMatthew G. Knepley   if (!label) {
5627083401c6SMatthew G. Knepley     /* Put the NULL label at the front, so it is returned as the default */
5628083401c6SMatthew G. Knepley     for (s = Nds - 1; s >= 0; --s) dm->probs[s + 1] = dm->probs[s];
5629083401c6SMatthew G. Knepley     Nds = 0;
5630083401c6SMatthew G. Knepley   }
5631083401c6SMatthew G. Knepley   dm->probs[Nds].label  = label;
5632083401c6SMatthew G. Knepley   dm->probs[Nds].fields = fields;
5633083401c6SMatthew G. Knepley   dm->probs[Nds].ds     = ds;
563407218a29SMatthew G. Knepley   dm->probs[Nds].dsIn   = dsIn;
56353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5636083401c6SMatthew G. Knepley }
5637083401c6SMatthew G. Knepley 
5638083401c6SMatthew G. Knepley /*@
563920f4b53cSBarry Smith   DMGetRegionNumDS - Get the `PetscDS` for a given mesh region, defined by the region number
5640e5e52638SMatthew G. Knepley 
564120f4b53cSBarry Smith   Not Collective
5642e5e52638SMatthew G. Knepley 
5643e5e52638SMatthew G. Knepley   Input Parameters:
564420f4b53cSBarry Smith + dm  - The `DM`
5645e5e52638SMatthew G. Knepley - num - The region number, in [0, Nds)
5646e5e52638SMatthew G. Knepley 
5647e5e52638SMatthew G. Knepley   Output Parameters:
564820f4b53cSBarry Smith + label  - The region label, or `NULL`
564920f4b53cSBarry Smith . fields - The `IS` containing the `DM` field numbers for the fields in this `PetscDS`, or `NULL`
565007218a29SMatthew G. Knepley . ds     - The `PetscDS` defined on the given region, or `NULL`
565107218a29SMatthew G. Knepley - dsIn   - The `PetscDS` for input in the given region, or `NULL`
5652e5e52638SMatthew G. Knepley 
5653e5e52638SMatthew G. Knepley   Level: advanced
5654e5e52638SMatthew G. Knepley 
56551cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRegionDS()`, `DMSetRegionDS()`, `DMGetDS()`, `DMGetCellDS()`
5656e5e52638SMatthew G. Knepley @*/
565707218a29SMatthew G. Knepley PetscErrorCode DMGetRegionNumDS(DM dm, PetscInt num, DMLabel *label, IS *fields, PetscDS *ds, PetscDS *dsIn)
5658d71ae5a4SJacob Faibussowitsch {
5659e5e52638SMatthew G. Knepley   PetscInt Nds;
5660e5e52638SMatthew G. Knepley 
5661e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5662e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
56639566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
566463a3b9bcSJacob Faibussowitsch   PetscCheck((num >= 0) && (num < Nds), PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Region number %" PetscInt_FMT " is not in [0, %" PetscInt_FMT ")", num, Nds);
5665e5e52638SMatthew G. Knepley   if (label) {
56664f572ea9SToby Isaac     PetscAssertPointer(label, 3);
5667e5e52638SMatthew G. Knepley     *label = dm->probs[num].label;
5668e5e52638SMatthew G. Knepley   }
5669b3cf3223SMatthew G. Knepley   if (fields) {
56704f572ea9SToby Isaac     PetscAssertPointer(fields, 4);
5671b3cf3223SMatthew G. Knepley     *fields = dm->probs[num].fields;
5672b3cf3223SMatthew G. Knepley   }
5673e5e52638SMatthew G. Knepley   if (ds) {
56744f572ea9SToby Isaac     PetscAssertPointer(ds, 5);
5675e5e52638SMatthew G. Knepley     *ds = dm->probs[num].ds;
5676e5e52638SMatthew G. Knepley   }
567707218a29SMatthew G. Knepley   if (dsIn) {
56784f572ea9SToby Isaac     PetscAssertPointer(dsIn, 6);
567907218a29SMatthew G. Knepley     *dsIn = dm->probs[num].dsIn;
568007218a29SMatthew G. Knepley   }
56813ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5682e5e52638SMatthew G. Knepley }
5683e5e52638SMatthew G. Knepley 
5684e5e52638SMatthew G. Knepley /*@
568520f4b53cSBarry Smith   DMSetRegionNumDS - Set the `PetscDS` for a given mesh region, defined by the region number
5686e5e52638SMatthew G. Knepley 
568720f4b53cSBarry Smith   Not Collective
5688e5e52638SMatthew G. Knepley 
5689e5e52638SMatthew G. Knepley   Input Parameters:
569020f4b53cSBarry Smith + dm     - The `DM`
5691083401c6SMatthew G. Knepley . num    - The region number, in [0, Nds)
569220f4b53cSBarry Smith . label  - The region label, or `NULL`
569307218a29SMatthew G. Knepley . fields - The `IS` containing the `DM` field numbers for the fields in this `PetscDS`, or `NULL` to prevent setting
569407218a29SMatthew G. Knepley . ds     - The `PetscDS` defined on the given region, or `NULL` to prevent setting
569507218a29SMatthew G. Knepley - dsIn   - The `PetscDS` for input on the given cell, or `NULL` if it is the same `PetscDS`
5696e5e52638SMatthew G. Knepley 
5697e5e52638SMatthew G. Knepley   Level: advanced
5698e5e52638SMatthew G. Knepley 
56991cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRegionDS()`, `DMSetRegionDS()`, `DMGetDS()`, `DMGetCellDS()`
5700e5e52638SMatthew G. Knepley @*/
570107218a29SMatthew G. Knepley PetscErrorCode DMSetRegionNumDS(DM dm, PetscInt num, DMLabel label, IS fields, PetscDS ds, PetscDS dsIn)
5702d71ae5a4SJacob Faibussowitsch {
5703083401c6SMatthew G. Knepley   PetscInt Nds;
5704e5e52638SMatthew G. Knepley 
5705e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5706e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5707ad540459SPierre Jolivet   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3);
57089566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
570963a3b9bcSJacob Faibussowitsch   PetscCheck((num >= 0) && (num < Nds), PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Region number %" PetscInt_FMT " is not in [0, %" PetscInt_FMT ")", num, Nds);
57109566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)label));
57119566063dSJacob Faibussowitsch   PetscCall(DMLabelDestroy(&dm->probs[num].label));
5712083401c6SMatthew G. Knepley   dm->probs[num].label = label;
5713083401c6SMatthew G. Knepley   if (fields) {
5714083401c6SMatthew G. Knepley     PetscValidHeaderSpecific(fields, IS_CLASSID, 4);
57159566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)fields));
57169566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&dm->probs[num].fields));
5717083401c6SMatthew G. Knepley     dm->probs[num].fields = fields;
5718e5e52638SMatthew G. Knepley   }
5719083401c6SMatthew G. Knepley   if (ds) {
5720083401c6SMatthew G. Knepley     PetscValidHeaderSpecific(ds, PETSCDS_CLASSID, 5);
57219566063dSJacob Faibussowitsch     PetscCall(PetscObjectReference((PetscObject)ds));
57229566063dSJacob Faibussowitsch     PetscCall(PetscDSDestroy(&dm->probs[num].ds));
5723083401c6SMatthew G. Knepley     dm->probs[num].ds = ds;
5724083401c6SMatthew G. Knepley   }
572507218a29SMatthew G. Knepley   if (dsIn) {
572607218a29SMatthew G. Knepley     PetscValidHeaderSpecific(dsIn, PETSCDS_CLASSID, 6);
572707218a29SMatthew G. Knepley     PetscCall(PetscObjectReference((PetscObject)dsIn));
572807218a29SMatthew G. Knepley     PetscCall(PetscDSDestroy(&dm->probs[num].dsIn));
572907218a29SMatthew G. Knepley     dm->probs[num].dsIn = dsIn;
573007218a29SMatthew G. Knepley   }
57313ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5732e5e52638SMatthew G. Knepley }
5733e5e52638SMatthew G. Knepley 
5734e5e52638SMatthew G. Knepley /*@
573520f4b53cSBarry Smith   DMFindRegionNum - Find the region number for a given `PetscDS`, or -1 if it is not found.
57361d3af9e0SMatthew G. Knepley 
573720f4b53cSBarry Smith   Not Collective
57381d3af9e0SMatthew G. Knepley 
57391d3af9e0SMatthew G. Knepley   Input Parameters:
574020f4b53cSBarry Smith + dm - The `DM`
574120f4b53cSBarry Smith - ds - The `PetscDS` defined on the given region
57421d3af9e0SMatthew G. Knepley 
57431d3af9e0SMatthew G. Knepley   Output Parameter:
57441d3af9e0SMatthew G. Knepley . num - The region number, in [0, Nds), or -1 if not found
57451d3af9e0SMatthew G. Knepley 
57461d3af9e0SMatthew G. Knepley   Level: advanced
57471d3af9e0SMatthew G. Knepley 
57481cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetRegionNumDS()`, `DMGetRegionDS()`, `DMSetRegionDS()`, `DMGetDS()`, `DMGetCellDS()`
57491d3af9e0SMatthew G. Knepley @*/
5750d71ae5a4SJacob Faibussowitsch PetscErrorCode DMFindRegionNum(DM dm, PetscDS ds, PetscInt *num)
5751d71ae5a4SJacob Faibussowitsch {
57521d3af9e0SMatthew G. Knepley   PetscInt Nds, n;
57531d3af9e0SMatthew G. Knepley 
57541d3af9e0SMatthew G. Knepley   PetscFunctionBegin;
57551d3af9e0SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
57561d3af9e0SMatthew G. Knepley   PetscValidHeaderSpecific(ds, PETSCDS_CLASSID, 2);
57574f572ea9SToby Isaac   PetscAssertPointer(num, 3);
57589566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
57599371c9d4SSatish Balay   for (n = 0; n < Nds; ++n)
57609371c9d4SSatish Balay     if (ds == dm->probs[n].ds) break;
57611d3af9e0SMatthew G. Knepley   if (n >= Nds) *num = -1;
57621d3af9e0SMatthew G. Knepley   else *num = n;
57633ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
57641d3af9e0SMatthew G. Knepley }
57651d3af9e0SMatthew G. Knepley 
57662df84da0SMatthew G. Knepley /*@C
5767bb7acecfSBarry Smith   DMCreateFEDefault - Create a `PetscFE` based on the celltype for the mesh
57682df84da0SMatthew G. Knepley 
576920f4b53cSBarry Smith   Not Collective
57702df84da0SMatthew G. Knepley 
5771f1a722f8SMatthew G. Knepley   Input Parameters:
5772bb7acecfSBarry Smith + dm     - The `DM`
57732df84da0SMatthew G. Knepley . Nc     - The number of components for the field
577420f4b53cSBarry Smith . prefix - The options prefix for the output `PetscFE`, or `NULL`
5775bb7acecfSBarry Smith - qorder - The quadrature order or `PETSC_DETERMINE` to use `PetscSpace` polynomial degree
57762df84da0SMatthew G. Knepley 
57772df84da0SMatthew G. Knepley   Output Parameter:
5778bb7acecfSBarry Smith . fem - The `PetscFE`
57792df84da0SMatthew G. Knepley 
578020f4b53cSBarry Smith   Level: intermediate
578120f4b53cSBarry Smith 
5782bb7acecfSBarry Smith   Note:
5783bb7acecfSBarry Smith   This is a convenience method that just calls `PetscFECreateByCell()` underneath.
57842df84da0SMatthew G. Knepley 
57851cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscFECreateByCell()`, `DMAddField()`, `DMCreateDS()`, `DMGetCellDS()`, `DMGetRegionDS()`
57862df84da0SMatthew G. Knepley @*/
5787d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateFEDefault(DM dm, PetscInt Nc, const char prefix[], PetscInt qorder, PetscFE *fem)
5788d71ae5a4SJacob Faibussowitsch {
57892df84da0SMatthew G. Knepley   DMPolytopeType ct;
57902df84da0SMatthew G. Knepley   PetscInt       dim, cStart;
57912df84da0SMatthew G. Knepley 
57922df84da0SMatthew G. Knepley   PetscFunctionBegin;
57932df84da0SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
57942df84da0SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, Nc, 2);
57954f572ea9SToby Isaac   if (prefix) PetscAssertPointer(prefix, 3);
57962df84da0SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, qorder, 4);
57974f572ea9SToby Isaac   PetscAssertPointer(fem, 5);
57989566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &dim));
57999566063dSJacob Faibussowitsch   PetscCall(DMPlexGetHeightStratum(dm, 0, &cStart, NULL));
58009566063dSJacob Faibussowitsch   PetscCall(DMPlexGetCellType(dm, cStart, &ct));
58019566063dSJacob Faibussowitsch   PetscCall(PetscFECreateByCell(PETSC_COMM_SELF, dim, Nc, ct, prefix, qorder, fem));
58023ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
58032df84da0SMatthew G. Knepley }
58042df84da0SMatthew G. Knepley 
58051d3af9e0SMatthew G. Knepley /*@
5806bb7acecfSBarry Smith   DMCreateDS - Create the discrete systems for the `DM` based upon the fields added to the `DM`
5807e5e52638SMatthew G. Knepley 
580820f4b53cSBarry Smith   Collective
5809e5e52638SMatthew G. Knepley 
5810e5e52638SMatthew G. Knepley   Input Parameter:
5811bb7acecfSBarry Smith . dm - The `DM`
5812e5e52638SMatthew G. Knepley 
581320f4b53cSBarry Smith   Options Database Key:
5814bb7acecfSBarry Smith . -dm_petscds_view - View all the `PetscDS` objects in this `DM`
581545480ffeSMatthew G. Knepley 
581620f4b53cSBarry Smith   Level: intermediate
581720f4b53cSBarry Smith 
58181cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetField`, `DMAddField()`, `DMGetDS()`, `DMGetCellDS()`, `DMGetRegionDS()`, `DMSetRegionDS()`
5819e5e52638SMatthew G. Knepley @*/
5820d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateDS(DM dm)
5821d71ae5a4SJacob Faibussowitsch {
5822e5e52638SMatthew G. Knepley   MPI_Comm  comm;
5823083401c6SMatthew G. Knepley   PetscDS   dsDef;
5824083401c6SMatthew G. Knepley   DMLabel  *labelSet;
5825f9244615SMatthew G. Knepley   PetscInt  dE, Nf = dm->Nf, f, s, Nl, l, Ndef, k;
5826f9244615SMatthew G. Knepley   PetscBool doSetup = PETSC_TRUE, flg;
5827e5e52638SMatthew G. Knepley 
5828e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5829e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
58303ba16761SJacob Faibussowitsch   if (!dm->fields) PetscFunctionReturn(PETSC_SUCCESS);
58319566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)dm, &comm));
58329566063dSJacob Faibussowitsch   PetscCall(DMGetCoordinateDim(dm, &dE));
5833083401c6SMatthew G. Knepley   /* Determine how many regions we have */
58349566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(Nf, &labelSet));
5835083401c6SMatthew G. Knepley   Nl   = 0;
5836083401c6SMatthew G. Knepley   Ndef = 0;
5837083401c6SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
5838083401c6SMatthew G. Knepley     DMLabel  label = dm->fields[f].label;
5839083401c6SMatthew G. Knepley     PetscInt l;
5840083401c6SMatthew G. Knepley 
5841f918ec44SMatthew G. Knepley #ifdef PETSC_HAVE_LIBCEED
5842f918ec44SMatthew G. Knepley     /* Move CEED context to discretizations */
5843f918ec44SMatthew G. Knepley     {
5844f918ec44SMatthew G. Knepley       PetscClassId id;
5845f918ec44SMatthew G. Knepley 
58469566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetClassId(dm->fields[f].disc, &id));
5847f918ec44SMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
5848f918ec44SMatthew G. Knepley         Ceed ceed;
5849f918ec44SMatthew G. Knepley 
58509566063dSJacob Faibussowitsch         PetscCall(DMGetCeed(dm, &ceed));
58519566063dSJacob Faibussowitsch         PetscCall(PetscFESetCeed((PetscFE)dm->fields[f].disc, ceed));
5852f918ec44SMatthew G. Knepley       }
5853f918ec44SMatthew G. Knepley     }
5854f918ec44SMatthew G. Knepley #endif
58559371c9d4SSatish Balay     if (!label) {
58569371c9d4SSatish Balay       ++Ndef;
58579371c9d4SSatish Balay       continue;
58589371c9d4SSatish Balay     }
58599371c9d4SSatish Balay     for (l = 0; l < Nl; ++l)
58609371c9d4SSatish Balay       if (label == labelSet[l]) break;
5861083401c6SMatthew G. Knepley     if (l < Nl) continue;
5862083401c6SMatthew G. Knepley     labelSet[Nl++] = label;
5863083401c6SMatthew G. Knepley   }
5864083401c6SMatthew G. Knepley   /* Create default DS if there are no labels to intersect with */
586507218a29SMatthew G. Knepley   PetscCall(DMGetRegionDS(dm, NULL, NULL, &dsDef, NULL));
5866083401c6SMatthew G. Knepley   if (!dsDef && Ndef && !Nl) {
5867b3cf3223SMatthew G. Knepley     IS        fields;
5868b3cf3223SMatthew G. Knepley     PetscInt *fld, nf;
5869b3cf3223SMatthew G. Knepley 
58709371c9d4SSatish Balay     for (f = 0, nf = 0; f < Nf; ++f)
58719371c9d4SSatish Balay       if (!dm->fields[f].label) ++nf;
58727a8be351SBarry Smith     PetscCheck(nf, comm, PETSC_ERR_PLIB, "All fields have labels, but we are trying to create a default DS");
58739566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(nf, &fld));
58749371c9d4SSatish Balay     for (f = 0, nf = 0; f < Nf; ++f)
58759371c9d4SSatish Balay       if (!dm->fields[f].label) fld[nf++] = f;
58769566063dSJacob Faibussowitsch     PetscCall(ISCreate(PETSC_COMM_SELF, &fields));
58779566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)fields, "dm_fields_"));
58789566063dSJacob Faibussowitsch     PetscCall(ISSetType(fields, ISGENERAL));
58799566063dSJacob Faibussowitsch     PetscCall(ISGeneralSetIndices(fields, nf, fld, PETSC_OWN_POINTER));
588088f0c812SMatthew G. Knepley 
58819566063dSJacob Faibussowitsch     PetscCall(PetscDSCreate(PETSC_COMM_SELF, &dsDef));
588207218a29SMatthew G. Knepley     PetscCall(DMSetRegionDS(dm, NULL, fields, dsDef, NULL));
58839566063dSJacob Faibussowitsch     PetscCall(PetscDSDestroy(&dsDef));
58849566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&fields));
58852df9ee95SMatthew G. Knepley   }
588607218a29SMatthew G. Knepley   PetscCall(DMGetRegionDS(dm, NULL, NULL, &dsDef, NULL));
58879566063dSJacob Faibussowitsch   if (dsDef) PetscCall(PetscDSSetCoordinateDimension(dsDef, dE));
5888083401c6SMatthew G. Knepley   /* Intersect labels with default fields */
5889083401c6SMatthew G. Knepley   if (Ndef && Nl) {
58900122748bSMatthew G. Knepley     DM              plex;
5891083401c6SMatthew G. Knepley     DMLabel         cellLabel;
5892083401c6SMatthew G. Knepley     IS              fieldIS, allcellIS, defcellIS = NULL;
5893083401c6SMatthew G. Knepley     PetscInt       *fields;
5894083401c6SMatthew G. Knepley     const PetscInt *cells;
5895083401c6SMatthew G. Knepley     PetscInt        depth, nf = 0, n, c;
58960122748bSMatthew G. Knepley 
58979566063dSJacob Faibussowitsch     PetscCall(DMConvert(dm, DMPLEX, &plex));
58989566063dSJacob Faibussowitsch     PetscCall(DMPlexGetDepth(plex, &depth));
58999566063dSJacob Faibussowitsch     PetscCall(DMGetStratumIS(plex, "dim", depth, &allcellIS));
59009566063dSJacob Faibussowitsch     if (!allcellIS) PetscCall(DMGetStratumIS(plex, "depth", depth, &allcellIS));
59015fedec97SMatthew G. Knepley     /* TODO This looks like it only works for one label */
5902083401c6SMatthew G. Knepley     for (l = 0; l < Nl; ++l) {
5903083401c6SMatthew G. Knepley       DMLabel label = labelSet[l];
5904083401c6SMatthew G. Knepley       IS      pointIS;
5905083401c6SMatthew G. Knepley 
59069566063dSJacob Faibussowitsch       PetscCall(ISDestroy(&defcellIS));
59079566063dSJacob Faibussowitsch       PetscCall(DMLabelGetStratumIS(label, 1, &pointIS));
59089566063dSJacob Faibussowitsch       PetscCall(ISDifference(allcellIS, pointIS, &defcellIS));
59099566063dSJacob Faibussowitsch       PetscCall(ISDestroy(&pointIS));
5910083401c6SMatthew G. Knepley     }
59119566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&allcellIS));
5912083401c6SMatthew G. Knepley 
59139566063dSJacob Faibussowitsch     PetscCall(DMLabelCreate(PETSC_COMM_SELF, "defaultCells", &cellLabel));
59149566063dSJacob Faibussowitsch     PetscCall(ISGetLocalSize(defcellIS, &n));
59159566063dSJacob Faibussowitsch     PetscCall(ISGetIndices(defcellIS, &cells));
59169566063dSJacob Faibussowitsch     for (c = 0; c < n; ++c) PetscCall(DMLabelSetValue(cellLabel, cells[c], 1));
59179566063dSJacob Faibussowitsch     PetscCall(ISRestoreIndices(defcellIS, &cells));
59189566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&defcellIS));
59199566063dSJacob Faibussowitsch     PetscCall(DMPlexLabelComplete(plex, cellLabel));
5920083401c6SMatthew G. Knepley 
59219566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(Ndef, &fields));
59229371c9d4SSatish Balay     for (f = 0; f < Nf; ++f)
59239371c9d4SSatish Balay       if (!dm->fields[f].label) fields[nf++] = f;
59249566063dSJacob Faibussowitsch     PetscCall(ISCreate(PETSC_COMM_SELF, &fieldIS));
59259566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)fieldIS, "dm_fields_"));
59269566063dSJacob Faibussowitsch     PetscCall(ISSetType(fieldIS, ISGENERAL));
59279566063dSJacob Faibussowitsch     PetscCall(ISGeneralSetIndices(fieldIS, nf, fields, PETSC_OWN_POINTER));
5928083401c6SMatthew G. Knepley 
59299566063dSJacob Faibussowitsch     PetscCall(PetscDSCreate(PETSC_COMM_SELF, &dsDef));
593007218a29SMatthew G. Knepley     PetscCall(DMSetRegionDS(dm, cellLabel, fieldIS, dsDef, NULL));
59319566063dSJacob Faibussowitsch     PetscCall(PetscDSSetCoordinateDimension(dsDef, dE));
59329566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&cellLabel));
59339566063dSJacob Faibussowitsch     PetscCall(PetscDSDestroy(&dsDef));
59349566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&fieldIS));
59359566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&plex));
5936083401c6SMatthew G. Knepley   }
5937083401c6SMatthew G. Knepley   /* Create label DSes
5938083401c6SMatthew G. Knepley      - WE ONLY SUPPORT IDENTICAL OR DISJOINT LABELS
5939083401c6SMatthew G. Knepley   */
5940083401c6SMatthew G. Knepley   /* TODO Should check that labels are disjoint */
5941083401c6SMatthew G. Knepley   for (l = 0; l < Nl; ++l) {
5942083401c6SMatthew G. Knepley     DMLabel   label = labelSet[l];
594307218a29SMatthew G. Knepley     PetscDS   ds, dsIn = NULL;
5944083401c6SMatthew G. Knepley     IS        fields;
5945083401c6SMatthew G. Knepley     PetscInt *fld, nf;
5946083401c6SMatthew G. Knepley 
59479566063dSJacob Faibussowitsch     PetscCall(PetscDSCreate(PETSC_COMM_SELF, &ds));
59489371c9d4SSatish Balay     for (f = 0, nf = 0; f < Nf; ++f)
59499371c9d4SSatish Balay       if (label == dm->fields[f].label || !dm->fields[f].label) ++nf;
59509566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(nf, &fld));
59519371c9d4SSatish Balay     for (f = 0, nf = 0; f < Nf; ++f)
59529371c9d4SSatish Balay       if (label == dm->fields[f].label || !dm->fields[f].label) fld[nf++] = f;
59539566063dSJacob Faibussowitsch     PetscCall(ISCreate(PETSC_COMM_SELF, &fields));
59549566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)fields, "dm_fields_"));
59559566063dSJacob Faibussowitsch     PetscCall(ISSetType(fields, ISGENERAL));
59569566063dSJacob Faibussowitsch     PetscCall(ISGeneralSetIndices(fields, nf, fld, PETSC_OWN_POINTER));
59579566063dSJacob Faibussowitsch     PetscCall(PetscDSSetCoordinateDimension(ds, dE));
5958083401c6SMatthew G. Knepley     {
5959083401c6SMatthew G. Knepley       DMPolytopeType ct;
5960083401c6SMatthew G. Knepley       PetscInt       lStart, lEnd;
59615fedec97SMatthew G. Knepley       PetscBool      isCohesiveLocal = PETSC_FALSE, isCohesive;
59620122748bSMatthew G. Knepley 
59639566063dSJacob Faibussowitsch       PetscCall(DMLabelGetBounds(label, &lStart, &lEnd));
5964665f567fSMatthew G. Knepley       if (lStart >= 0) {
59659566063dSJacob Faibussowitsch         PetscCall(DMPlexGetCellType(dm, lStart, &ct));
5966412e9a14SMatthew G. Knepley         switch (ct) {
5967412e9a14SMatthew G. Knepley         case DM_POLYTOPE_POINT_PRISM_TENSOR:
5968412e9a14SMatthew G. Knepley         case DM_POLYTOPE_SEG_PRISM_TENSOR:
5969412e9a14SMatthew G. Knepley         case DM_POLYTOPE_TRI_PRISM_TENSOR:
5970d71ae5a4SJacob Faibussowitsch         case DM_POLYTOPE_QUAD_PRISM_TENSOR:
5971d71ae5a4SJacob Faibussowitsch           isCohesiveLocal = PETSC_TRUE;
5972d71ae5a4SJacob Faibussowitsch           break;
5973d71ae5a4SJacob Faibussowitsch         default:
5974d71ae5a4SJacob Faibussowitsch           break;
5975412e9a14SMatthew G. Knepley         }
5976665f567fSMatthew G. Knepley       }
5977712fec58SPierre Jolivet       PetscCall(MPIU_Allreduce(&isCohesiveLocal, &isCohesive, 1, MPIU_BOOL, MPI_LOR, comm));
597807218a29SMatthew G. Knepley       if (isCohesive) {
597907218a29SMatthew G. Knepley         PetscCall(PetscDSCreate(PETSC_COMM_SELF, &dsIn));
598007218a29SMatthew G. Knepley         PetscCall(PetscDSSetCoordinateDimension(dsIn, dE));
598107218a29SMatthew G. Knepley       }
59825fedec97SMatthew G. Knepley       for (f = 0, nf = 0; f < Nf; ++f) {
59835fedec97SMatthew G. Knepley         if (label == dm->fields[f].label || !dm->fields[f].label) {
59845fedec97SMatthew G. Knepley           if (label == dm->fields[f].label) {
59859566063dSJacob Faibussowitsch             PetscCall(PetscDSSetDiscretization(ds, nf, NULL));
59869566063dSJacob Faibussowitsch             PetscCall(PetscDSSetCohesive(ds, nf, isCohesive));
598707218a29SMatthew G. Knepley             if (dsIn) {
598807218a29SMatthew G. Knepley               PetscCall(PetscDSSetDiscretization(dsIn, nf, NULL));
598907218a29SMatthew G. Knepley               PetscCall(PetscDSSetCohesive(dsIn, nf, isCohesive));
599007218a29SMatthew G. Knepley             }
59915fedec97SMatthew G. Knepley           }
59925fedec97SMatthew G. Knepley           ++nf;
59935fedec97SMatthew G. Knepley         }
59945fedec97SMatthew G. Knepley       }
5995e5e52638SMatthew G. Knepley     }
599607218a29SMatthew G. Knepley     PetscCall(DMSetRegionDS(dm, label, fields, ds, dsIn));
599707218a29SMatthew G. Knepley     PetscCall(ISDestroy(&fields));
59989566063dSJacob Faibussowitsch     PetscCall(PetscDSDestroy(&ds));
599907218a29SMatthew G. Knepley     PetscCall(PetscDSDestroy(&dsIn));
6000e5e52638SMatthew G. Knepley   }
60019566063dSJacob Faibussowitsch   PetscCall(PetscFree(labelSet));
6002e5e52638SMatthew G. Knepley   /* Set fields in DSes */
6003083401c6SMatthew G. Knepley   for (s = 0; s < dm->Nds; ++s) {
6004083401c6SMatthew G. Knepley     PetscDS         ds     = dm->probs[s].ds;
600507218a29SMatthew G. Knepley     PetscDS         dsIn   = dm->probs[s].dsIn;
6006083401c6SMatthew G. Knepley     IS              fields = dm->probs[s].fields;
6007083401c6SMatthew G. Knepley     const PetscInt *fld;
60085fedec97SMatthew G. Knepley     PetscInt        nf, dsnf;
60095fedec97SMatthew G. Knepley     PetscBool       isCohesive;
6010e5e52638SMatthew G. Knepley 
60119566063dSJacob Faibussowitsch     PetscCall(PetscDSGetNumFields(ds, &dsnf));
60129566063dSJacob Faibussowitsch     PetscCall(PetscDSIsCohesive(ds, &isCohesive));
60139566063dSJacob Faibussowitsch     PetscCall(ISGetLocalSize(fields, &nf));
60149566063dSJacob Faibussowitsch     PetscCall(ISGetIndices(fields, &fld));
6015083401c6SMatthew G. Knepley     for (f = 0; f < nf; ++f) {
6016083401c6SMatthew G. Knepley       PetscObject  disc = dm->fields[fld[f]].disc;
60175fedec97SMatthew G. Knepley       PetscBool    isCohesiveField;
6018e5e52638SMatthew G. Knepley       PetscClassId id;
6019e5e52638SMatthew G. Knepley 
60205fedec97SMatthew G. Knepley       /* Handle DS with no fields */
60219566063dSJacob Faibussowitsch       if (dsnf) PetscCall(PetscDSGetCohesive(ds, f, &isCohesiveField));
60225fedec97SMatthew G. Knepley       /* If this is a cohesive cell, then regular fields need the lower dimensional discretization */
602307218a29SMatthew G. Knepley       if (isCohesive) {
602407218a29SMatthew G. Knepley         if (!isCohesiveField) {
602507218a29SMatthew G. Knepley           PetscObject bdDisc;
602607218a29SMatthew G. Knepley 
602707218a29SMatthew G. Knepley           PetscCall(PetscFEGetHeightSubspace((PetscFE)disc, 1, (PetscFE *)&bdDisc));
602807218a29SMatthew G. Knepley           PetscCall(PetscDSSetDiscretization(ds, f, bdDisc));
602907218a29SMatthew G. Knepley           PetscCall(PetscDSSetDiscretization(dsIn, f, disc));
603007218a29SMatthew G. Knepley         } else {
60319566063dSJacob Faibussowitsch           PetscCall(PetscDSSetDiscretization(ds, f, disc));
603207218a29SMatthew G. Knepley           PetscCall(PetscDSSetDiscretization(dsIn, f, disc));
603307218a29SMatthew G. Knepley         }
603407218a29SMatthew G. Knepley       } else {
603507218a29SMatthew G. Knepley         PetscCall(PetscDSSetDiscretization(ds, f, disc));
603607218a29SMatthew G. Knepley       }
6037083401c6SMatthew G. Knepley       /* We allow people to have placeholder fields and construct the Section by hand */
60389566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetClassId(disc, &id));
6039e5e52638SMatthew G. Knepley       if ((id != PETSCFE_CLASSID) && (id != PETSCFV_CLASSID)) doSetup = PETSC_FALSE;
6040e5e52638SMatthew G. Knepley     }
60419566063dSJacob Faibussowitsch     PetscCall(ISRestoreIndices(fields, &fld));
6042e5e52638SMatthew G. Knepley   }
6043f9244615SMatthew G. Knepley   /* Allow k-jet tabulation */
60449566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetInt(NULL, ((PetscObject)dm)->prefix, "-dm_ds_jet_degree", &k, &flg));
6045f9244615SMatthew G. Knepley   if (flg) {
60463b4aee56SMatthew G. Knepley     for (s = 0; s < dm->Nds; ++s) {
60473b4aee56SMatthew G. Knepley       PetscDS  ds   = dm->probs[s].ds;
604807218a29SMatthew G. Knepley       PetscDS  dsIn = dm->probs[s].dsIn;
60493b4aee56SMatthew G. Knepley       PetscInt Nf, f;
60503b4aee56SMatthew G. Knepley 
60519566063dSJacob Faibussowitsch       PetscCall(PetscDSGetNumFields(ds, &Nf));
605207218a29SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
605307218a29SMatthew G. Knepley         PetscCall(PetscDSSetJetDegree(ds, f, k));
605407218a29SMatthew G. Knepley         if (dsIn) PetscCall(PetscDSSetJetDegree(dsIn, f, k));
605507218a29SMatthew G. Knepley       }
60563b4aee56SMatthew G. Knepley     }
6057f9244615SMatthew G. Knepley   }
6058e5e52638SMatthew G. Knepley   /* Setup DSes */
6059e5e52638SMatthew G. Knepley   if (doSetup) {
606007218a29SMatthew G. Knepley     for (s = 0; s < dm->Nds; ++s) {
6061cf1363e4SMatthew G. Knepley       if (dm->setfromoptionscalled) {
6062cf1363e4SMatthew G. Knepley         PetscCall(PetscDSSetFromOptions(dm->probs[s].ds));
6063cf1363e4SMatthew G. Knepley         if (dm->probs[s].dsIn) PetscCall(PetscDSSetFromOptions(dm->probs[s].dsIn));
6064cf1363e4SMatthew G. Knepley       }
606507218a29SMatthew G. Knepley       PetscCall(PetscDSSetUp(dm->probs[s].ds));
606607218a29SMatthew G. Knepley       if (dm->probs[s].dsIn) PetscCall(PetscDSSetUp(dm->probs[s].dsIn));
606707218a29SMatthew G. Knepley     }
6068e5e52638SMatthew G. Knepley   }
60693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6070e5e52638SMatthew G. Knepley }
6071e5e52638SMatthew G. Knepley 
6072e5e52638SMatthew G. Knepley /*@
6073d2b2dc1eSMatthew G. Knepley   DMUseTensorOrder - Use a tensor product closure ordering for the default section
6074d2b2dc1eSMatthew G. Knepley 
6075d2b2dc1eSMatthew G. Knepley   Input Parameters:
6076d2b2dc1eSMatthew G. Knepley + dm     - The DM
6077d2b2dc1eSMatthew G. Knepley - tensor - Flag for tensor order
6078d2b2dc1eSMatthew G. Knepley 
6079d2b2dc1eSMatthew G. Knepley   Level: developer
6080d2b2dc1eSMatthew G. Knepley 
6081d2b2dc1eSMatthew G. Knepley .seealso: `DMPlexSetClosurePermutationTensor()`, `PetscSectionResetClosurePermutation()`
6082d2b2dc1eSMatthew G. Knepley @*/
6083d2b2dc1eSMatthew G. Knepley PetscErrorCode DMUseTensorOrder(DM dm, PetscBool tensor)
6084d2b2dc1eSMatthew G. Knepley {
6085d2b2dc1eSMatthew G. Knepley   PetscInt  Nf;
6086d2b2dc1eSMatthew G. Knepley   PetscBool reorder = PETSC_TRUE, isPlex;
6087d2b2dc1eSMatthew G. Knepley 
6088d2b2dc1eSMatthew G. Knepley   PetscFunctionBegin;
6089d2b2dc1eSMatthew G. Knepley   PetscCall(PetscObjectTypeCompare((PetscObject)dm, DMPLEX, &isPlex));
6090d2b2dc1eSMatthew G. Knepley   PetscCall(DMGetNumFields(dm, &Nf));
6091d2b2dc1eSMatthew G. Knepley   for (PetscInt f = 0; f < Nf; ++f) {
6092d2b2dc1eSMatthew G. Knepley     PetscObject  obj;
6093d2b2dc1eSMatthew G. Knepley     PetscClassId id;
6094d2b2dc1eSMatthew G. Knepley 
6095d2b2dc1eSMatthew G. Knepley     PetscCall(DMGetField(dm, f, NULL, &obj));
6096d2b2dc1eSMatthew G. Knepley     PetscCall(PetscObjectGetClassId(obj, &id));
6097d2b2dc1eSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
6098d2b2dc1eSMatthew G. Knepley       PetscSpace sp;
6099d2b2dc1eSMatthew G. Knepley       PetscBool  tensor;
6100d2b2dc1eSMatthew G. Knepley 
6101d2b2dc1eSMatthew G. Knepley       PetscCall(PetscFEGetBasisSpace((PetscFE)obj, &sp));
6102d2b2dc1eSMatthew G. Knepley       PetscCall(PetscSpacePolynomialGetTensor(sp, &tensor));
6103d2b2dc1eSMatthew G. Knepley       reorder = reorder && tensor ? PETSC_TRUE : PETSC_FALSE;
6104d2b2dc1eSMatthew G. Knepley     } else reorder = PETSC_FALSE;
6105d2b2dc1eSMatthew G. Knepley   }
6106d2b2dc1eSMatthew G. Knepley   if (tensor) {
6107d2b2dc1eSMatthew G. Knepley     if (reorder && isPlex) PetscCall(DMPlexSetClosurePermutationTensor(dm, PETSC_DETERMINE, NULL));
6108d2b2dc1eSMatthew G. Knepley   } else {
6109d2b2dc1eSMatthew G. Knepley     PetscSection s;
6110d2b2dc1eSMatthew G. Knepley 
6111d2b2dc1eSMatthew G. Knepley     PetscCall(DMGetLocalSection(dm, &s));
6112d2b2dc1eSMatthew G. Knepley     if (s) PetscCall(PetscSectionResetClosurePermutation(s));
6113d2b2dc1eSMatthew G. Knepley   }
6114d2b2dc1eSMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
6115d2b2dc1eSMatthew G. Knepley }
6116d2b2dc1eSMatthew G. Knepley 
6117d2b2dc1eSMatthew G. Knepley /*@
6118bb7acecfSBarry Smith   DMComputeExactSolution - Compute the exact solution for a given `DM`, using the `PetscDS` information.
61197f96f943SMatthew G. Knepley 
612020f4b53cSBarry Smith   Collective
6121f2cacb80SMatthew G. Knepley 
61227f96f943SMatthew G. Knepley   Input Parameters:
6123bb7acecfSBarry Smith + dm   - The `DM`
61247f96f943SMatthew G. Knepley - time - The time
61257f96f943SMatthew G. Knepley 
61267f96f943SMatthew G. Knepley   Output Parameters:
612720f4b53cSBarry Smith + u   - The vector will be filled with exact solution values, or `NULL`
612820f4b53cSBarry Smith - u_t - The vector will be filled with the time derivative of exact solution values, or `NULL`
612920f4b53cSBarry Smith 
613020f4b53cSBarry Smith   Level: developer
61317f96f943SMatthew G. Knepley 
6132bb7acecfSBarry Smith   Note:
6133bb7acecfSBarry Smith   The user must call `PetscDSSetExactSolution()` before using this routine
61347f96f943SMatthew G. Knepley 
61351cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscDSSetExactSolution()`
61367f96f943SMatthew G. Knepley @*/
6137d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeExactSolution(DM dm, PetscReal time, Vec u, Vec u_t)
6138d71ae5a4SJacob Faibussowitsch {
61397f96f943SMatthew G. Knepley   PetscErrorCode (**exacts)(PetscInt, PetscReal, const PetscReal x[], PetscInt, PetscScalar *u, void *ctx);
61407f96f943SMatthew G. Knepley   void   **ectxs;
6141f60fa741SMatthew G. Knepley   Vec      locu, locu_t;
61427f96f943SMatthew G. Knepley   PetscInt Nf, Nds, s;
61437f96f943SMatthew G. Knepley 
61447f96f943SMatthew G. Knepley   PetscFunctionBegin;
6145f2cacb80SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6146f60fa741SMatthew G. Knepley   if (u) {
6147f60fa741SMatthew G. Knepley     PetscValidHeaderSpecific(u, VEC_CLASSID, 3);
6148f60fa741SMatthew G. Knepley     PetscCall(DMGetLocalVector(dm, &locu));
6149f60fa741SMatthew G. Knepley     PetscCall(VecSet(locu, 0.));
6150f60fa741SMatthew G. Knepley   }
6151f60fa741SMatthew G. Knepley   if (u_t) {
6152f60fa741SMatthew G. Knepley     PetscValidHeaderSpecific(u_t, VEC_CLASSID, 4);
6153f60fa741SMatthew G. Knepley     PetscCall(DMGetLocalVector(dm, &locu_t));
6154f60fa741SMatthew G. Knepley     PetscCall(VecSet(locu_t, 0.));
6155f60fa741SMatthew G. Knepley   }
61569566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
61579566063dSJacob Faibussowitsch   PetscCall(PetscMalloc2(Nf, &exacts, Nf, &ectxs));
61589566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
61597f96f943SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
61607f96f943SMatthew G. Knepley     PetscDS         ds;
61617f96f943SMatthew G. Knepley     DMLabel         label;
61627f96f943SMatthew G. Knepley     IS              fieldIS;
61637f96f943SMatthew G. Knepley     const PetscInt *fields, id = 1;
61647f96f943SMatthew G. Knepley     PetscInt        dsNf, f;
61657f96f943SMatthew G. Knepley 
616607218a29SMatthew G. Knepley     PetscCall(DMGetRegionNumDS(dm, s, &label, &fieldIS, &ds, NULL));
61679566063dSJacob Faibussowitsch     PetscCall(PetscDSGetNumFields(ds, &dsNf));
61689566063dSJacob Faibussowitsch     PetscCall(ISGetIndices(fieldIS, &fields));
61699566063dSJacob Faibussowitsch     PetscCall(PetscArrayzero(exacts, Nf));
61709566063dSJacob Faibussowitsch     PetscCall(PetscArrayzero(ectxs, Nf));
6171f2cacb80SMatthew G. Knepley     if (u) {
6172f60fa741SMatthew G. Knepley       for (f = 0; f < dsNf; ++f) PetscCall(PetscDSGetExactSolution(ds, fields[f], &exacts[fields[f]], &ectxs[fields[f]]));
6173f60fa741SMatthew G. Knepley       if (label) PetscCall(DMProjectFunctionLabelLocal(dm, time, label, 1, &id, 0, NULL, exacts, ectxs, INSERT_ALL_VALUES, locu));
6174f60fa741SMatthew G. Knepley       else PetscCall(DMProjectFunctionLocal(dm, time, exacts, ectxs, INSERT_ALL_VALUES, locu));
61757f96f943SMatthew G. Knepley     }
6176f2cacb80SMatthew G. Knepley     if (u_t) {
61779566063dSJacob Faibussowitsch       PetscCall(PetscArrayzero(exacts, Nf));
61789566063dSJacob Faibussowitsch       PetscCall(PetscArrayzero(ectxs, Nf));
6179f60fa741SMatthew G. Knepley       for (f = 0; f < dsNf; ++f) PetscCall(PetscDSGetExactSolutionTimeDerivative(ds, fields[f], &exacts[fields[f]], &ectxs[fields[f]]));
6180f60fa741SMatthew G. Knepley       if (label) PetscCall(DMProjectFunctionLabelLocal(dm, time, label, 1, &id, 0, NULL, exacts, ectxs, INSERT_ALL_VALUES, locu_t));
6181f60fa741SMatthew G. Knepley       else PetscCall(DMProjectFunctionLocal(dm, time, exacts, ectxs, INSERT_ALL_VALUES, locu_t));
6182f2cacb80SMatthew G. Knepley     }
61839566063dSJacob Faibussowitsch     PetscCall(ISRestoreIndices(fieldIS, &fields));
6184f2cacb80SMatthew G. Knepley   }
6185f2cacb80SMatthew G. Knepley   if (u) {
61869566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)u, "Exact Solution"));
61879566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)u, "exact_"));
6188f2cacb80SMatthew G. Knepley   }
6189f2cacb80SMatthew G. Knepley   if (u_t) {
61909566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)u, "Exact Solution Time Derivative"));
61919566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetOptionsPrefix((PetscObject)u_t, "exact_t_"));
6192f2cacb80SMatthew G. Knepley   }
61939566063dSJacob Faibussowitsch   PetscCall(PetscFree2(exacts, ectxs));
6194f60fa741SMatthew G. Knepley   if (u) {
6195f60fa741SMatthew G. Knepley     PetscCall(DMLocalToGlobalBegin(dm, locu, INSERT_ALL_VALUES, u));
6196f60fa741SMatthew G. Knepley     PetscCall(DMLocalToGlobalEnd(dm, locu, INSERT_ALL_VALUES, u));
6197f60fa741SMatthew G. Knepley     PetscCall(DMRestoreLocalVector(dm, &locu));
6198f60fa741SMatthew G. Knepley   }
6199f60fa741SMatthew G. Knepley   if (u_t) {
6200f60fa741SMatthew G. Knepley     PetscCall(DMLocalToGlobalBegin(dm, locu_t, INSERT_ALL_VALUES, u_t));
6201f60fa741SMatthew G. Knepley     PetscCall(DMLocalToGlobalEnd(dm, locu_t, INSERT_ALL_VALUES, u_t));
6202f60fa741SMatthew G. Knepley     PetscCall(DMRestoreLocalVector(dm, &locu_t));
6203f60fa741SMatthew G. Knepley   }
62043ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
62057f96f943SMatthew G. Knepley }
62067f96f943SMatthew G. Knepley 
620707218a29SMatthew G. Knepley static PetscErrorCode DMTransferDS_Internal(DM dm, DMLabel label, IS fields, PetscDS ds, PetscDS dsIn)
6208d71ae5a4SJacob Faibussowitsch {
620907218a29SMatthew G. Knepley   PetscDS dsNew, dsInNew = NULL;
621045480ffeSMatthew G. Knepley 
621145480ffeSMatthew G. Knepley   PetscFunctionBegin;
62129566063dSJacob Faibussowitsch   PetscCall(PetscDSCreate(PetscObjectComm((PetscObject)ds), &dsNew));
621307218a29SMatthew G. Knepley   PetscCall(PetscDSCopy(ds, dm, dsNew));
621407218a29SMatthew G. Knepley   if (dsIn) {
621507218a29SMatthew G. Knepley     PetscCall(PetscDSCreate(PetscObjectComm((PetscObject)dsIn), &dsInNew));
621607218a29SMatthew G. Knepley     PetscCall(PetscDSCopy(dsIn, dm, dsInNew));
621745480ffeSMatthew G. Knepley   }
621807218a29SMatthew G. Knepley   PetscCall(DMSetRegionDS(dm, label, fields, dsNew, dsInNew));
62199566063dSJacob Faibussowitsch   PetscCall(PetscDSDestroy(&dsNew));
622007218a29SMatthew G. Knepley   PetscCall(PetscDSDestroy(&dsInNew));
62213ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
622245480ffeSMatthew G. Knepley }
622345480ffeSMatthew G. Knepley 
62247f96f943SMatthew G. Knepley /*@
6225bb7acecfSBarry Smith   DMCopyDS - Copy the discrete systems for the `DM` into another `DM`
6226e5e52638SMatthew G. Knepley 
622720f4b53cSBarry Smith   Collective
6228e5e52638SMatthew G. Knepley 
6229e5e52638SMatthew G. Knepley   Input Parameter:
6230bb7acecfSBarry Smith . dm - The `DM`
6231e5e52638SMatthew G. Knepley 
6232e5e52638SMatthew G. Knepley   Output Parameter:
6233bb7acecfSBarry Smith . newdm - The `DM`
6234e5e52638SMatthew G. Knepley 
6235e5e52638SMatthew G. Knepley   Level: advanced
6236e5e52638SMatthew G. Knepley 
62371cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCopyFields()`, `DMAddField()`, `DMGetDS()`, `DMGetCellDS()`, `DMGetRegionDS()`, `DMSetRegionDS()`
6238e5e52638SMatthew G. Knepley @*/
6239d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyDS(DM dm, DM newdm)
6240d71ae5a4SJacob Faibussowitsch {
6241e5e52638SMatthew G. Knepley   PetscInt Nds, s;
6242e5e52638SMatthew G. Knepley 
6243e5e52638SMatthew G. Knepley   PetscFunctionBegin;
62443ba16761SJacob Faibussowitsch   if (dm == newdm) PetscFunctionReturn(PETSC_SUCCESS);
62459566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
62469566063dSJacob Faibussowitsch   PetscCall(DMClearDS(newdm));
6247e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
6248e5e52638SMatthew G. Knepley     DMLabel  label;
6249b3cf3223SMatthew G. Knepley     IS       fields;
625007218a29SMatthew G. Knepley     PetscDS  ds, dsIn, newds;
6251783e2ec8SMatthew G. Knepley     PetscInt Nbd, bd;
6252e5e52638SMatthew G. Knepley 
625307218a29SMatthew G. Knepley     PetscCall(DMGetRegionNumDS(dm, s, &label, &fields, &ds, &dsIn));
6254b8025e53SMatthew G. Knepley     /* TODO: We need to change all keys from labels in the old DM to labels in the new DM */
625507218a29SMatthew G. Knepley     PetscCall(DMTransferDS_Internal(newdm, label, fields, ds, dsIn));
6256d5b43468SJose E. Roman     /* Complete new labels in the new DS */
625707218a29SMatthew G. Knepley     PetscCall(DMGetRegionDS(newdm, label, NULL, &newds, NULL));
62589566063dSJacob Faibussowitsch     PetscCall(PetscDSGetNumBoundary(newds, &Nbd));
6259783e2ec8SMatthew G. Knepley     for (bd = 0; bd < Nbd; ++bd) {
6260b8025e53SMatthew G. Knepley       PetscWeakForm wf;
626145480ffeSMatthew G. Knepley       DMLabel       label;
6262783e2ec8SMatthew G. Knepley       PetscInt      field;
6263783e2ec8SMatthew G. Knepley 
62649566063dSJacob Faibussowitsch       PetscCall(PetscDSGetBoundary(newds, bd, &wf, NULL, NULL, &label, NULL, NULL, &field, NULL, NULL, NULL, NULL, NULL));
62659566063dSJacob Faibussowitsch       PetscCall(PetscWeakFormReplaceLabel(wf, label));
6266783e2ec8SMatthew G. Knepley     }
6267e5e52638SMatthew G. Knepley   }
6268799db056SMatthew G. Knepley   PetscCall(DMCompleteBCLabels_Internal(newdm));
62693ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6270e5e52638SMatthew G. Knepley }
6271e5e52638SMatthew G. Knepley 
6272e5e52638SMatthew G. Knepley /*@
6273bb7acecfSBarry Smith   DMCopyDisc - Copy the fields and discrete systems for the `DM` into another `DM`
6274e5e52638SMatthew G. Knepley 
627520f4b53cSBarry Smith   Collective
6276e5e52638SMatthew G. Knepley 
6277e5e52638SMatthew G. Knepley   Input Parameter:
6278bb7acecfSBarry Smith . dm - The `DM`
6279e5e52638SMatthew G. Knepley 
6280e5e52638SMatthew G. Knepley   Output Parameter:
6281bb7acecfSBarry Smith . newdm - The `DM`
6282e5e52638SMatthew G. Knepley 
6283e5e52638SMatthew G. Knepley   Level: advanced
6284e5e52638SMatthew G. Knepley 
628560225df5SJacob Faibussowitsch   Developer Notes:
6286bb7acecfSBarry Smith   Really ugly name, nothing in PETSc is called a `Disc` plus it is an ugly abbreviation
6287bb7acecfSBarry Smith 
62881cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCopyFields()`, `DMCopyDS()`
6289e5e52638SMatthew G. Knepley @*/
6290d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyDisc(DM dm, DM newdm)
6291d71ae5a4SJacob Faibussowitsch {
6292e5e52638SMatthew G. Knepley   PetscFunctionBegin;
62939566063dSJacob Faibussowitsch   PetscCall(DMCopyFields(dm, newdm));
62949566063dSJacob Faibussowitsch   PetscCall(DMCopyDS(dm, newdm));
62953ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6296e5e52638SMatthew G. Knepley }
6297e5e52638SMatthew G. Knepley 
6298c73cfb54SMatthew G. Knepley /*@
6299bb7acecfSBarry Smith   DMGetDimension - Return the topological dimension of the `DM`
6300c73cfb54SMatthew G. Knepley 
630120f4b53cSBarry Smith   Not Collective
6302c73cfb54SMatthew G. Knepley 
6303c73cfb54SMatthew G. Knepley   Input Parameter:
6304bb7acecfSBarry Smith . dm - The `DM`
6305c73cfb54SMatthew G. Knepley 
6306c73cfb54SMatthew G. Knepley   Output Parameter:
6307c73cfb54SMatthew G. Knepley . dim - The topological dimension
6308c73cfb54SMatthew G. Knepley 
6309c73cfb54SMatthew G. Knepley   Level: beginner
6310c73cfb54SMatthew G. Knepley 
63111cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetDimension()`, `DMCreate()`
6312c73cfb54SMatthew G. Knepley @*/
6313d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetDimension(DM dm, PetscInt *dim)
6314d71ae5a4SJacob Faibussowitsch {
6315c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
6316c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
63174f572ea9SToby Isaac   PetscAssertPointer(dim, 2);
6318c73cfb54SMatthew G. Knepley   *dim = dm->dim;
63193ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6320c73cfb54SMatthew G. Knepley }
6321c73cfb54SMatthew G. Knepley 
6322c73cfb54SMatthew G. Knepley /*@
6323bb7acecfSBarry Smith   DMSetDimension - Set the topological dimension of the `DM`
6324c73cfb54SMatthew G. Knepley 
632520f4b53cSBarry Smith   Collective
6326c73cfb54SMatthew G. Knepley 
6327c73cfb54SMatthew G. Knepley   Input Parameters:
6328bb7acecfSBarry Smith + dm  - The `DM`
6329c73cfb54SMatthew G. Knepley - dim - The topological dimension
6330c73cfb54SMatthew G. Knepley 
6331c73cfb54SMatthew G. Knepley   Level: beginner
6332c73cfb54SMatthew G. Knepley 
63331cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetDimension()`, `DMCreate()`
6334c73cfb54SMatthew G. Knepley @*/
6335d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetDimension(DM dm, PetscInt dim)
6336d71ae5a4SJacob Faibussowitsch {
6337e5e52638SMatthew G. Knepley   PetscDS  ds;
633845480ffeSMatthew G. Knepley   PetscInt Nds, n;
6339f17e8794SMatthew G. Knepley 
6340c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
6341c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6342c73cfb54SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, dim, 2);
6343c73cfb54SMatthew G. Knepley   dm->dim = dim;
6344d17bd122SMatthew G. Knepley   if (dm->dim >= 0) {
63459566063dSJacob Faibussowitsch     PetscCall(DMGetNumDS(dm, &Nds));
634645480ffeSMatthew G. Knepley     for (n = 0; n < Nds; ++n) {
634707218a29SMatthew G. Knepley       PetscCall(DMGetRegionNumDS(dm, n, NULL, NULL, &ds, NULL));
63489566063dSJacob Faibussowitsch       if (ds->dimEmbed < 0) PetscCall(PetscDSSetCoordinateDimension(ds, dim));
634945480ffeSMatthew G. Knepley     }
6350d17bd122SMatthew G. Knepley   }
63513ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6352c73cfb54SMatthew G. Knepley }
6353c73cfb54SMatthew G. Knepley 
6354793f3fe5SMatthew G. Knepley /*@
6355793f3fe5SMatthew G. Knepley   DMGetDimPoints - Get the half-open interval for all points of a given dimension
6356793f3fe5SMatthew G. Knepley 
635720f4b53cSBarry Smith   Collective
6358793f3fe5SMatthew G. Knepley 
6359793f3fe5SMatthew G. Knepley   Input Parameters:
6360bb7acecfSBarry Smith + dm  - the `DM`
6361793f3fe5SMatthew G. Knepley - dim - the dimension
6362793f3fe5SMatthew G. Knepley 
6363793f3fe5SMatthew G. Knepley   Output Parameters:
6364793f3fe5SMatthew G. Knepley + pStart - The first point of the given dimension
6365aa049354SPatrick Sanan - pEnd   - The first point following points of the given dimension
6366793f3fe5SMatthew G. Knepley 
636720f4b53cSBarry Smith   Level: intermediate
636820f4b53cSBarry Smith 
6369793f3fe5SMatthew G. Knepley   Note:
6370793f3fe5SMatthew G. Knepley   The points are vertices in the Hasse diagram encoding the topology. This is explained in
6371a8d69d7bSBarry Smith   https://arxiv.org/abs/0908.4427. If no points exist of this dimension in the storage scheme,
6372793f3fe5SMatthew G. Knepley   then the interval is empty.
6373793f3fe5SMatthew G. Knepley 
63741cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPLEX`, `DMPlexGetDepthStratum()`, `DMPlexGetHeightStratum()`
6375793f3fe5SMatthew G. Knepley @*/
6376d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetDimPoints(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd)
6377d71ae5a4SJacob Faibussowitsch {
6378793f3fe5SMatthew G. Knepley   PetscInt d;
6379793f3fe5SMatthew G. Knepley 
6380793f3fe5SMatthew G. Knepley   PetscFunctionBegin;
6381793f3fe5SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
63829566063dSJacob Faibussowitsch   PetscCall(DMGetDimension(dm, &d));
63837a8be351SBarry Smith   PetscCheck((dim >= 0) && (dim <= d), PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid dimension %" PetscInt_FMT, dim);
6384dbbe0bcdSBarry Smith   PetscUseTypeMethod(dm, getdimpoints, dim, pStart, pEnd);
63853ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6386793f3fe5SMatthew G. Knepley }
6387793f3fe5SMatthew G. Knepley 
63886636e97aSMatthew G Knepley /*@
6389bb7acecfSBarry Smith   DMGetOutputDM - Retrieve the `DM` associated with the layout for output
6390f4d763aaSMatthew G. Knepley 
639120f4b53cSBarry Smith   Collective
63928f700142SStefano Zampini 
6393f4d763aaSMatthew G. Knepley   Input Parameter:
6394bb7acecfSBarry Smith . dm - The original `DM`
6395f4d763aaSMatthew G. Knepley 
6396f4d763aaSMatthew G. Knepley   Output Parameter:
6397bb7acecfSBarry Smith . odm - The `DM` which provides the layout for output
6398f4d763aaSMatthew G. Knepley 
6399f4d763aaSMatthew G. Knepley   Level: intermediate
6400f4d763aaSMatthew G. Knepley 
6401bb7acecfSBarry Smith   Note:
6402bb7acecfSBarry Smith   In some situations the vector obtained with `DMCreateGlobalVector()` excludes points for degrees of freedom that are associated with fixed (Dirichelet) boundary
6403bb7acecfSBarry Smith   conditions since the algebraic solver does not solve for those variables. The output `DM` includes these excluded points and its global vector contains the
6404bb7acecfSBarry Smith   locations for those dof so that they can be output to a file or other viewer along with the unconstrained dof.
6405bb7acecfSBarry Smith 
64061cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `VecView()`, `DMGetGlobalSection()`, `DMCreateGlobalVector()`, `PetscSectionHasConstraints()`, `DMSetGlobalSection()`
6407f4d763aaSMatthew G. Knepley @*/
6408d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetOutputDM(DM dm, DM *odm)
6409d71ae5a4SJacob Faibussowitsch {
6410c26acbdeSMatthew G. Knepley   PetscSection section;
64112d4e4a49SMatthew G. Knepley   PetscBool    hasConstraints, ghasConstraints;
641214f150ffSMatthew G. Knepley 
641314f150ffSMatthew G. Knepley   PetscFunctionBegin;
641414f150ffSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64154f572ea9SToby Isaac   PetscAssertPointer(odm, 2);
64169566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &section));
64179566063dSJacob Faibussowitsch   PetscCall(PetscSectionHasConstraints(section, &hasConstraints));
6418712fec58SPierre Jolivet   PetscCall(MPIU_Allreduce(&hasConstraints, &ghasConstraints, 1, MPIU_BOOL, MPI_LOR, PetscObjectComm((PetscObject)dm)));
64192d4e4a49SMatthew G. Knepley   if (!ghasConstraints) {
6420c26acbdeSMatthew G. Knepley     *odm = dm;
64213ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
6422c26acbdeSMatthew G. Knepley   }
642314f150ffSMatthew G. Knepley   if (!dm->dmBC) {
6424c26acbdeSMatthew G. Knepley     PetscSection newSection, gsection;
642514f150ffSMatthew G. Knepley     PetscSF      sf;
642614f150ffSMatthew G. Knepley 
64279566063dSJacob Faibussowitsch     PetscCall(DMClone(dm, &dm->dmBC));
64289566063dSJacob Faibussowitsch     PetscCall(DMCopyDisc(dm, dm->dmBC));
64299566063dSJacob Faibussowitsch     PetscCall(PetscSectionClone(section, &newSection));
64309566063dSJacob Faibussowitsch     PetscCall(DMSetLocalSection(dm->dmBC, newSection));
64319566063dSJacob Faibussowitsch     PetscCall(PetscSectionDestroy(&newSection));
64329566063dSJacob Faibussowitsch     PetscCall(DMGetPointSF(dm->dmBC, &sf));
64339566063dSJacob Faibussowitsch     PetscCall(PetscSectionCreateGlobalSection(section, sf, PETSC_TRUE, PETSC_FALSE, &gsection));
64349566063dSJacob Faibussowitsch     PetscCall(DMSetGlobalSection(dm->dmBC, gsection));
64359566063dSJacob Faibussowitsch     PetscCall(PetscSectionDestroy(&gsection));
643614f150ffSMatthew G. Knepley   }
643714f150ffSMatthew G. Knepley   *odm = dm->dmBC;
64383ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
643914f150ffSMatthew G. Knepley }
6440f4d763aaSMatthew G. Knepley 
6441f4d763aaSMatthew G. Knepley /*@
6442cdb7a50dSMatthew G. Knepley   DMGetOutputSequenceNumber - Retrieve the sequence number/value for output
6443f4d763aaSMatthew G. Knepley 
6444f4d763aaSMatthew G. Knepley   Input Parameter:
6445bb7acecfSBarry Smith . dm - The original `DM`
6446f4d763aaSMatthew G. Knepley 
6447cdb7a50dSMatthew G. Knepley   Output Parameters:
6448cdb7a50dSMatthew G. Knepley + num - The output sequence number
6449cdb7a50dSMatthew G. Knepley - val - The output sequence value
6450f4d763aaSMatthew G. Knepley 
6451f4d763aaSMatthew G. Knepley   Level: intermediate
6452f4d763aaSMatthew G. Knepley 
6453bb7acecfSBarry Smith   Note:
6454bb7acecfSBarry Smith   This is intended for output that should appear in sequence, for instance
6455bb7acecfSBarry Smith   a set of timesteps in an `PETSCVIEWERHDF5` file, or a set of realizations of a stochastic system.
6456bb7acecfSBarry Smith 
645760225df5SJacob Faibussowitsch   Developer Notes:
6458bb7acecfSBarry Smith   The `DM` serves as a convenient place to store the current iteration value. The iteration is not
6459bb7acecfSBarry Smith   not directly related to the `DM`.
6460f4d763aaSMatthew G. Knepley 
64611cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `VecView()`
6462f4d763aaSMatthew G. Knepley @*/
6463d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetOutputSequenceNumber(DM dm, PetscInt *num, PetscReal *val)
6464d71ae5a4SJacob Faibussowitsch {
6465f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
6466f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64679371c9d4SSatish Balay   if (num) {
64684f572ea9SToby Isaac     PetscAssertPointer(num, 2);
64699371c9d4SSatish Balay     *num = dm->outputSequenceNum;
64709371c9d4SSatish Balay   }
64719371c9d4SSatish Balay   if (val) {
64724f572ea9SToby Isaac     PetscAssertPointer(val, 3);
64739371c9d4SSatish Balay     *val = dm->outputSequenceVal;
64749371c9d4SSatish Balay   }
64753ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6476f4d763aaSMatthew G. Knepley }
6477f4d763aaSMatthew G. Knepley 
6478f4d763aaSMatthew G. Knepley /*@
6479cdb7a50dSMatthew G. Knepley   DMSetOutputSequenceNumber - Set the sequence number/value for output
6480f4d763aaSMatthew G. Knepley 
6481f4d763aaSMatthew G. Knepley   Input Parameters:
6482bb7acecfSBarry Smith + dm  - The original `DM`
6483cdb7a50dSMatthew G. Knepley . num - The output sequence number
6484cdb7a50dSMatthew G. Knepley - val - The output sequence value
6485f4d763aaSMatthew G. Knepley 
6486f4d763aaSMatthew G. Knepley   Level: intermediate
6487f4d763aaSMatthew G. Knepley 
6488bb7acecfSBarry Smith   Note:
6489bb7acecfSBarry Smith   This is intended for output that should appear in sequence, for instance
6490bb7acecfSBarry Smith   a set of timesteps in an `PETSCVIEWERHDF5` file, or a set of realizations of a stochastic system.
6491f4d763aaSMatthew G. Knepley 
64921cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `VecView()`
6493f4d763aaSMatthew G. Knepley @*/
6494d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetOutputSequenceNumber(DM dm, PetscInt num, PetscReal val)
6495d71ae5a4SJacob Faibussowitsch {
6496f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
6497f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6498f4d763aaSMatthew G. Knepley   dm->outputSequenceNum = num;
6499cdb7a50dSMatthew G. Knepley   dm->outputSequenceVal = val;
65003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6501cdb7a50dSMatthew G. Knepley }
6502cdb7a50dSMatthew G. Knepley 
6503cdb7a50dSMatthew G. Knepley /*@C
6504bb7acecfSBarry Smith   DMOutputSequenceLoad - Retrieve the sequence value from a `PetscViewer`
6505cdb7a50dSMatthew G. Knepley 
6506cdb7a50dSMatthew G. Knepley   Input Parameters:
6507bb7acecfSBarry Smith + dm     - The original `DM`
6508a4e35b19SJacob Faibussowitsch . viewer - The viewer to get it from
6509cdb7a50dSMatthew G. Knepley . name   - The sequence name
6510cdb7a50dSMatthew G. Knepley - num    - The output sequence number
6511cdb7a50dSMatthew G. Knepley 
6512cdb7a50dSMatthew G. Knepley   Output Parameter:
6513cdb7a50dSMatthew G. Knepley . val - The output sequence value
6514cdb7a50dSMatthew G. Knepley 
6515cdb7a50dSMatthew G. Knepley   Level: intermediate
6516cdb7a50dSMatthew G. Knepley 
6517bb7acecfSBarry Smith   Note:
6518bb7acecfSBarry Smith   This is intended for output that should appear in sequence, for instance
6519bb7acecfSBarry Smith   a set of timesteps in an `PETSCVIEWERHDF5` file, or a set of realizations of a stochastic system.
6520bb7acecfSBarry Smith 
652160225df5SJacob Faibussowitsch   Developer Notes:
6522bb7acecfSBarry Smith   It is unclear at the user API level why a `DM` is needed as input
6523cdb7a50dSMatthew G. Knepley 
65241cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetOutputSequenceNumber()`, `DMSetOutputSequenceNumber()`, `VecView()`
6525cdb7a50dSMatthew G. Knepley @*/
6526d71ae5a4SJacob Faibussowitsch PetscErrorCode DMOutputSequenceLoad(DM dm, PetscViewer viewer, const char *name, PetscInt num, PetscReal *val)
6527d71ae5a4SJacob Faibussowitsch {
6528cdb7a50dSMatthew G. Knepley   PetscBool ishdf5;
6529cdb7a50dSMatthew G. Knepley 
6530cdb7a50dSMatthew G. Knepley   PetscFunctionBegin;
6531cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6532cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
65334f572ea9SToby Isaac   PetscAssertPointer(val, 5);
65349566063dSJacob Faibussowitsch   PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERHDF5, &ishdf5));
6535cdb7a50dSMatthew G. Knepley   if (ishdf5) {
6536cdb7a50dSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
6537cdb7a50dSMatthew G. Knepley     PetscScalar value;
6538cdb7a50dSMatthew G. Knepley 
65399566063dSJacob Faibussowitsch     PetscCall(DMSequenceLoad_HDF5_Internal(dm, name, num, &value, viewer));
65404aeb217fSMatthew G. Knepley     *val = PetscRealPart(value);
6541cdb7a50dSMatthew G. Knepley #endif
6542cdb7a50dSMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid viewer; open viewer with PetscViewerHDF5Open()");
65433ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6544f4d763aaSMatthew G. Knepley }
65458e4ac7eaSMatthew G. Knepley 
65468e4ac7eaSMatthew G. Knepley /*@
6547bb7acecfSBarry Smith   DMGetUseNatural - Get the flag for creating a mapping to the natural order when a `DM` is (re)distributed in parallel
65488e4ac7eaSMatthew G. Knepley 
654920f4b53cSBarry Smith   Not Collective
65508e4ac7eaSMatthew G. Knepley 
65518e4ac7eaSMatthew G. Knepley   Input Parameter:
6552bb7acecfSBarry Smith . dm - The `DM`
65538e4ac7eaSMatthew G. Knepley 
65548e4ac7eaSMatthew G. Knepley   Output Parameter:
6555bb7acecfSBarry Smith . useNatural - `PETSC_TRUE` to build the mapping to a natural order during distribution
65568e4ac7eaSMatthew G. Knepley 
65578e4ac7eaSMatthew G. Knepley   Level: beginner
65588e4ac7eaSMatthew G. Knepley 
65591cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetUseNatural()`, `DMCreate()`
65608e4ac7eaSMatthew G. Knepley @*/
6561d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetUseNatural(DM dm, PetscBool *useNatural)
6562d71ae5a4SJacob Faibussowitsch {
65638e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
65648e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
65654f572ea9SToby Isaac   PetscAssertPointer(useNatural, 2);
65668e4ac7eaSMatthew G. Knepley   *useNatural = dm->useNatural;
65673ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
65688e4ac7eaSMatthew G. Knepley }
65698e4ac7eaSMatthew G. Knepley 
65708e4ac7eaSMatthew G. Knepley /*@
6571bb7acecfSBarry Smith   DMSetUseNatural - Set the flag for creating a mapping to the natural order when a `DM` is (re)distributed in parallel
65728e4ac7eaSMatthew G. Knepley 
657320f4b53cSBarry Smith   Collective
65748e4ac7eaSMatthew G. Knepley 
65758e4ac7eaSMatthew G. Knepley   Input Parameters:
6576bb7acecfSBarry Smith + dm         - The `DM`
6577bb7acecfSBarry Smith - useNatural - `PETSC_TRUE` to build the mapping to a natural order during distribution
65788e4ac7eaSMatthew G. Knepley 
6579bb7acecfSBarry Smith   Note:
6580bb7acecfSBarry Smith   This also causes the map to be build after `DMCreateSubDM()` and `DMCreateSuperDM()`
65815d3b26e6SMatthew G. Knepley 
65828e4ac7eaSMatthew G. Knepley   Level: beginner
65838e4ac7eaSMatthew G. Knepley 
65841cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetUseNatural()`, `DMCreate()`, `DMPlexDistribute()`, `DMCreateSubDM()`, `DMCreateSuperDM()`
65858e4ac7eaSMatthew G. Knepley @*/
6586d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetUseNatural(DM dm, PetscBool useNatural)
6587d71ae5a4SJacob Faibussowitsch {
65888e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
65898e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
65908833efb5SBlaise Bourdin   PetscValidLogicalCollectiveBool(dm, useNatural, 2);
65918e4ac7eaSMatthew G. Knepley   dm->useNatural = useNatural;
65923ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
65938e4ac7eaSMatthew G. Knepley }
6594c58f1c22SToby Isaac 
6595c58f1c22SToby Isaac /*@C
6596bb7acecfSBarry Smith   DMCreateLabel - Create a label of the given name if it does not already exist in the `DM`
6597c58f1c22SToby Isaac 
6598c58f1c22SToby Isaac   Not Collective
6599c58f1c22SToby Isaac 
6600c58f1c22SToby Isaac   Input Parameters:
6601bb7acecfSBarry Smith + dm   - The `DM` object
6602c58f1c22SToby Isaac - name - The label name
6603c58f1c22SToby Isaac 
6604c58f1c22SToby Isaac   Level: intermediate
6605c58f1c22SToby Isaac 
66061cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelCreate()`, `DMHasLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
6607c58f1c22SToby Isaac @*/
6608d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateLabel(DM dm, const char name[])
6609d71ae5a4SJacob Faibussowitsch {
66105d80c0bfSVaclav Hapla   PetscBool flg;
66115d80c0bfSVaclav Hapla   DMLabel   label;
6612c58f1c22SToby Isaac 
6613c58f1c22SToby Isaac   PetscFunctionBegin;
6614c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
66154f572ea9SToby Isaac   PetscAssertPointer(name, 2);
66169566063dSJacob Faibussowitsch   PetscCall(DMHasLabel(dm, name, &flg));
6617c58f1c22SToby Isaac   if (!flg) {
66189566063dSJacob Faibussowitsch     PetscCall(DMLabelCreate(PETSC_COMM_SELF, name, &label));
66199566063dSJacob Faibussowitsch     PetscCall(DMAddLabel(dm, label));
66209566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&label));
6621c58f1c22SToby Isaac   }
66223ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6623c58f1c22SToby Isaac }
6624c58f1c22SToby Isaac 
6625c58f1c22SToby Isaac /*@C
6626bb7acecfSBarry Smith   DMCreateLabelAtIndex - Create a label of the given name at the given index. If it already exists in the `DM`, move it to this index.
66270fdc7489SMatthew Knepley 
66280fdc7489SMatthew Knepley   Not Collective
66290fdc7489SMatthew Knepley 
66300fdc7489SMatthew Knepley   Input Parameters:
6631bb7acecfSBarry Smith + dm   - The `DM` object
66320fdc7489SMatthew Knepley . l    - The index for the label
66330fdc7489SMatthew Knepley - name - The label name
66340fdc7489SMatthew Knepley 
66350fdc7489SMatthew Knepley   Level: intermediate
66360fdc7489SMatthew Knepley 
66371cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMCreateLabel()`, `DMLabelCreate()`, `DMHasLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
66380fdc7489SMatthew Knepley @*/
6639d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateLabelAtIndex(DM dm, PetscInt l, const char name[])
6640d71ae5a4SJacob Faibussowitsch {
66410fdc7489SMatthew Knepley   DMLabelLink orig, prev = NULL;
66420fdc7489SMatthew Knepley   DMLabel     label;
66430fdc7489SMatthew Knepley   PetscInt    Nl, m;
66440fdc7489SMatthew Knepley   PetscBool   flg, match;
66450fdc7489SMatthew Knepley   const char *lname;
66460fdc7489SMatthew Knepley 
66470fdc7489SMatthew Knepley   PetscFunctionBegin;
66480fdc7489SMatthew Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
66494f572ea9SToby Isaac   PetscAssertPointer(name, 3);
66509566063dSJacob Faibussowitsch   PetscCall(DMHasLabel(dm, name, &flg));
66510fdc7489SMatthew Knepley   if (!flg) {
66529566063dSJacob Faibussowitsch     PetscCall(DMLabelCreate(PETSC_COMM_SELF, name, &label));
66539566063dSJacob Faibussowitsch     PetscCall(DMAddLabel(dm, label));
66549566063dSJacob Faibussowitsch     PetscCall(DMLabelDestroy(&label));
66550fdc7489SMatthew Knepley   }
66569566063dSJacob Faibussowitsch   PetscCall(DMGetNumLabels(dm, &Nl));
665763a3b9bcSJacob Faibussowitsch   PetscCheck(l < Nl, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label index %" PetscInt_FMT " must be in [0, %" PetscInt_FMT ")", l, Nl);
66580fdc7489SMatthew Knepley   for (m = 0, orig = dm->labels; m < Nl; ++m, prev = orig, orig = orig->next) {
66599566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)orig->label, &lname));
66609566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &match));
66610fdc7489SMatthew Knepley     if (match) break;
66620fdc7489SMatthew Knepley   }
66633ba16761SJacob Faibussowitsch   if (m == l) PetscFunctionReturn(PETSC_SUCCESS);
66640fdc7489SMatthew Knepley   if (!m) dm->labels = orig->next;
66650fdc7489SMatthew Knepley   else prev->next = orig->next;
66660fdc7489SMatthew Knepley   if (!l) {
66670fdc7489SMatthew Knepley     orig->next = dm->labels;
66680fdc7489SMatthew Knepley     dm->labels = orig;
66690fdc7489SMatthew Knepley   } else {
66709371c9d4SSatish Balay     for (m = 0, prev = dm->labels; m < l - 1; ++m, prev = prev->next)
66719371c9d4SSatish Balay       ;
66720fdc7489SMatthew Knepley     orig->next = prev->next;
66730fdc7489SMatthew Knepley     prev->next = orig;
66740fdc7489SMatthew Knepley   }
66753ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
66760fdc7489SMatthew Knepley }
66770fdc7489SMatthew Knepley 
66780fdc7489SMatthew Knepley /*@C
6679bb7acecfSBarry Smith   DMGetLabelValue - Get the value in a `DMLabel` for the given point, with -1 as the default
6680c58f1c22SToby Isaac 
6681c58f1c22SToby Isaac   Not Collective
6682c58f1c22SToby Isaac 
6683c58f1c22SToby Isaac   Input Parameters:
6684bb7acecfSBarry Smith + dm    - The `DM` object
6685c58f1c22SToby Isaac . name  - The label name
6686c58f1c22SToby Isaac - point - The mesh point
6687c58f1c22SToby Isaac 
6688c58f1c22SToby Isaac   Output Parameter:
6689c58f1c22SToby Isaac . value - The label value for this point, or -1 if the point is not in the label
6690c58f1c22SToby Isaac 
6691c58f1c22SToby Isaac   Level: beginner
6692c58f1c22SToby Isaac 
66931cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelGetValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
6694c58f1c22SToby Isaac @*/
6695d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelValue(DM dm, const char name[], PetscInt point, PetscInt *value)
6696d71ae5a4SJacob Faibussowitsch {
6697c58f1c22SToby Isaac   DMLabel label;
6698c58f1c22SToby Isaac 
6699c58f1c22SToby Isaac   PetscFunctionBegin;
6700c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
67014f572ea9SToby Isaac   PetscAssertPointer(name, 2);
67029566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
67037a8be351SBarry Smith   PetscCheck(label, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "No label named %s was found", name);
67049566063dSJacob Faibussowitsch   PetscCall(DMLabelGetValue(label, point, value));
67053ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6706c58f1c22SToby Isaac }
6707c58f1c22SToby Isaac 
6708c58f1c22SToby Isaac /*@C
6709bb7acecfSBarry Smith   DMSetLabelValue - Add a point to a `DMLabel` with given value
6710c58f1c22SToby Isaac 
6711c58f1c22SToby Isaac   Not Collective
6712c58f1c22SToby Isaac 
6713c58f1c22SToby Isaac   Input Parameters:
6714bb7acecfSBarry Smith + dm    - The `DM` object
6715c58f1c22SToby Isaac . name  - The label name
6716c58f1c22SToby Isaac . point - The mesh point
6717c58f1c22SToby Isaac - value - The label value for this point
6718c58f1c22SToby Isaac 
6719c58f1c22SToby Isaac   Output Parameter:
6720c58f1c22SToby Isaac 
6721c58f1c22SToby Isaac   Level: beginner
6722c58f1c22SToby Isaac 
67231cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelSetValue()`, `DMGetStratumIS()`, `DMClearLabelValue()`
6724c58f1c22SToby Isaac @*/
6725d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
6726d71ae5a4SJacob Faibussowitsch {
6727c58f1c22SToby Isaac   DMLabel label;
6728c58f1c22SToby Isaac 
6729c58f1c22SToby Isaac   PetscFunctionBegin;
6730c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
67314f572ea9SToby Isaac   PetscAssertPointer(name, 2);
67329566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
6733c58f1c22SToby Isaac   if (!label) {
67349566063dSJacob Faibussowitsch     PetscCall(DMCreateLabel(dm, name));
67359566063dSJacob Faibussowitsch     PetscCall(DMGetLabel(dm, name, &label));
6736c58f1c22SToby Isaac   }
67379566063dSJacob Faibussowitsch   PetscCall(DMLabelSetValue(label, point, value));
67383ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6739c58f1c22SToby Isaac }
6740c58f1c22SToby Isaac 
6741c58f1c22SToby Isaac /*@C
6742bb7acecfSBarry Smith   DMClearLabelValue - Remove a point from a `DMLabel` with given value
6743c58f1c22SToby Isaac 
6744c58f1c22SToby Isaac   Not Collective
6745c58f1c22SToby Isaac 
6746c58f1c22SToby Isaac   Input Parameters:
6747bb7acecfSBarry Smith + dm    - The `DM` object
6748c58f1c22SToby Isaac . name  - The label name
6749c58f1c22SToby Isaac . point - The mesh point
6750c58f1c22SToby Isaac - value - The label value for this point
6751c58f1c22SToby Isaac 
6752c58f1c22SToby Isaac   Level: beginner
6753c58f1c22SToby Isaac 
67541cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelClearValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
6755c58f1c22SToby Isaac @*/
6756d71ae5a4SJacob Faibussowitsch PetscErrorCode DMClearLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
6757d71ae5a4SJacob Faibussowitsch {
6758c58f1c22SToby Isaac   DMLabel label;
6759c58f1c22SToby Isaac 
6760c58f1c22SToby Isaac   PetscFunctionBegin;
6761c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
67624f572ea9SToby Isaac   PetscAssertPointer(name, 2);
67639566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
67643ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
67659566063dSJacob Faibussowitsch   PetscCall(DMLabelClearValue(label, point, value));
67663ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6767c58f1c22SToby Isaac }
6768c58f1c22SToby Isaac 
6769c58f1c22SToby Isaac /*@C
6770bb7acecfSBarry Smith   DMGetLabelSize - Get the value of `DMLabelGetNumValues()` of a `DMLabel` in the `DM`
6771c58f1c22SToby Isaac 
6772c58f1c22SToby Isaac   Not Collective
6773c58f1c22SToby Isaac 
6774c58f1c22SToby Isaac   Input Parameters:
6775bb7acecfSBarry Smith + dm   - The `DM` object
6776c58f1c22SToby Isaac - name - The label name
6777c58f1c22SToby Isaac 
6778c58f1c22SToby Isaac   Output Parameter:
6779c58f1c22SToby Isaac . size - The number of different integer ids, or 0 if the label does not exist
6780c58f1c22SToby Isaac 
6781c58f1c22SToby Isaac   Level: beginner
6782c58f1c22SToby Isaac 
678360225df5SJacob Faibussowitsch   Developer Notes:
6784bb7acecfSBarry Smith   This should be renamed to something like `DMGetLabelNumValues()` or removed.
6785bb7acecfSBarry Smith 
67861cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelGetNumValues()`, `DMSetLabelValue()`, `DMGetLabel()`
6787c58f1c22SToby Isaac @*/
6788d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelSize(DM dm, const char name[], PetscInt *size)
6789d71ae5a4SJacob Faibussowitsch {
6790c58f1c22SToby Isaac   DMLabel label;
6791c58f1c22SToby Isaac 
6792c58f1c22SToby Isaac   PetscFunctionBegin;
6793c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
67944f572ea9SToby Isaac   PetscAssertPointer(name, 2);
67954f572ea9SToby Isaac   PetscAssertPointer(size, 3);
67969566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
6797c58f1c22SToby Isaac   *size = 0;
67983ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
67999566063dSJacob Faibussowitsch   PetscCall(DMLabelGetNumValues(label, size));
68003ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6801c58f1c22SToby Isaac }
6802c58f1c22SToby Isaac 
6803c58f1c22SToby Isaac /*@C
6804bb7acecfSBarry Smith   DMGetLabelIdIS - Get the `DMLabelGetValueIS()` from a `DMLabel` in the `DM`
6805c58f1c22SToby Isaac 
6806c58f1c22SToby Isaac   Not Collective
6807c58f1c22SToby Isaac 
6808c58f1c22SToby Isaac   Input Parameters:
680960225df5SJacob Faibussowitsch + dm   - The `DM` object
6810c58f1c22SToby Isaac - name - The label name
6811c58f1c22SToby Isaac 
6812c58f1c22SToby Isaac   Output Parameter:
681320f4b53cSBarry Smith . ids - The integer ids, or `NULL` if the label does not exist
6814c58f1c22SToby Isaac 
6815c58f1c22SToby Isaac   Level: beginner
6816c58f1c22SToby Isaac 
68171cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelGetValueIS()`, `DMGetLabelSize()`
6818c58f1c22SToby Isaac @*/
6819d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelIdIS(DM dm, const char name[], IS *ids)
6820d71ae5a4SJacob Faibussowitsch {
6821c58f1c22SToby Isaac   DMLabel label;
6822c58f1c22SToby Isaac 
6823c58f1c22SToby Isaac   PetscFunctionBegin;
6824c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
68254f572ea9SToby Isaac   PetscAssertPointer(name, 2);
68264f572ea9SToby Isaac   PetscAssertPointer(ids, 3);
68279566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
6828c58f1c22SToby Isaac   *ids = NULL;
6829dab2e251SBlaise Bourdin   if (label) {
68309566063dSJacob Faibussowitsch     PetscCall(DMLabelGetValueIS(label, ids));
6831dab2e251SBlaise Bourdin   } else {
6832dab2e251SBlaise Bourdin     /* returning an empty IS */
68339566063dSJacob Faibussowitsch     PetscCall(ISCreateGeneral(PETSC_COMM_SELF, 0, NULL, PETSC_USE_POINTER, ids));
6834dab2e251SBlaise Bourdin   }
68353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6836c58f1c22SToby Isaac }
6837c58f1c22SToby Isaac 
6838c58f1c22SToby Isaac /*@C
6839c58f1c22SToby Isaac   DMGetStratumSize - Get the number of points in a label stratum
6840c58f1c22SToby Isaac 
6841c58f1c22SToby Isaac   Not Collective
6842c58f1c22SToby Isaac 
6843c58f1c22SToby Isaac   Input Parameters:
6844bb7acecfSBarry Smith + dm    - The `DM` object
6845c58f1c22SToby Isaac . name  - The label name
6846c58f1c22SToby Isaac - value - The stratum value
6847c58f1c22SToby Isaac 
6848c58f1c22SToby Isaac   Output Parameter:
6849bb7acecfSBarry Smith . size - The number of points, also called the stratum size
6850c58f1c22SToby Isaac 
6851c58f1c22SToby Isaac   Level: beginner
6852c58f1c22SToby Isaac 
68531cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelGetStratumSize()`, `DMGetLabelSize()`, `DMGetLabelIds()`
6854c58f1c22SToby Isaac @*/
6855d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetStratumSize(DM dm, const char name[], PetscInt value, PetscInt *size)
6856d71ae5a4SJacob Faibussowitsch {
6857c58f1c22SToby Isaac   DMLabel label;
6858c58f1c22SToby Isaac 
6859c58f1c22SToby Isaac   PetscFunctionBegin;
6860c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
68614f572ea9SToby Isaac   PetscAssertPointer(name, 2);
68624f572ea9SToby Isaac   PetscAssertPointer(size, 4);
68639566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
6864c58f1c22SToby Isaac   *size = 0;
68653ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
68669566063dSJacob Faibussowitsch   PetscCall(DMLabelGetStratumSize(label, value, size));
68673ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6868c58f1c22SToby Isaac }
6869c58f1c22SToby Isaac 
6870c58f1c22SToby Isaac /*@C
6871c58f1c22SToby Isaac   DMGetStratumIS - Get the points in a label stratum
6872c58f1c22SToby Isaac 
6873c58f1c22SToby Isaac   Not Collective
6874c58f1c22SToby Isaac 
6875c58f1c22SToby Isaac   Input Parameters:
6876bb7acecfSBarry Smith + dm    - The `DM` object
6877c58f1c22SToby Isaac . name  - The label name
6878c58f1c22SToby Isaac - value - The stratum value
6879c58f1c22SToby Isaac 
6880c58f1c22SToby Isaac   Output Parameter:
688120f4b53cSBarry Smith . points - The stratum points, or `NULL` if the label does not exist or does not have that value
6882c58f1c22SToby Isaac 
6883c58f1c22SToby Isaac   Level: beginner
6884c58f1c22SToby Isaac 
68851cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabelGetStratumIS()`, `DMGetStratumSize()`
6886c58f1c22SToby Isaac @*/
6887d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetStratumIS(DM dm, const char name[], PetscInt value, IS *points)
6888d71ae5a4SJacob Faibussowitsch {
6889c58f1c22SToby Isaac   DMLabel label;
6890c58f1c22SToby Isaac 
6891c58f1c22SToby Isaac   PetscFunctionBegin;
6892c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
68934f572ea9SToby Isaac   PetscAssertPointer(name, 2);
68944f572ea9SToby Isaac   PetscAssertPointer(points, 4);
68959566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
6896c58f1c22SToby Isaac   *points = NULL;
68973ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
68989566063dSJacob Faibussowitsch   PetscCall(DMLabelGetStratumIS(label, value, points));
68993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6900c58f1c22SToby Isaac }
6901c58f1c22SToby Isaac 
69024de306b1SToby Isaac /*@C
69039044fa66SMatthew G. Knepley   DMSetStratumIS - Set the points in a label stratum
69044de306b1SToby Isaac 
69054de306b1SToby Isaac   Not Collective
69064de306b1SToby Isaac 
69074de306b1SToby Isaac   Input Parameters:
6908bb7acecfSBarry Smith + dm     - The `DM` object
69094de306b1SToby Isaac . name   - The label name
69104de306b1SToby Isaac . value  - The stratum value
69114de306b1SToby Isaac - points - The stratum points
69124de306b1SToby Isaac 
69134de306b1SToby Isaac   Level: beginner
69144de306b1SToby Isaac 
69151cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMClearLabelStratum()`, `DMLabelClearStratum()`, `DMLabelSetStratumIS()`, `DMGetStratumSize()`
69164de306b1SToby Isaac @*/
6917d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetStratumIS(DM dm, const char name[], PetscInt value, IS points)
6918d71ae5a4SJacob Faibussowitsch {
69194de306b1SToby Isaac   DMLabel label;
69204de306b1SToby Isaac 
69214de306b1SToby Isaac   PetscFunctionBegin;
69224de306b1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
69234f572ea9SToby Isaac   PetscAssertPointer(name, 2);
6924292bffcbSToby Isaac   PetscValidHeaderSpecific(points, IS_CLASSID, 4);
69259566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
69263ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
69279566063dSJacob Faibussowitsch   PetscCall(DMLabelSetStratumIS(label, value, points));
69283ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
69294de306b1SToby Isaac }
69304de306b1SToby Isaac 
6931c58f1c22SToby Isaac /*@C
6932bb7acecfSBarry Smith   DMClearLabelStratum - Remove all points from a stratum from a `DMLabel`
6933c58f1c22SToby Isaac 
6934c58f1c22SToby Isaac   Not Collective
6935c58f1c22SToby Isaac 
6936c58f1c22SToby Isaac   Input Parameters:
6937bb7acecfSBarry Smith + dm    - The `DM` object
6938c58f1c22SToby Isaac . name  - The label name
6939c58f1c22SToby Isaac - value - The label value for this point
6940c58f1c22SToby Isaac 
6941c58f1c22SToby Isaac   Output Parameter:
6942c58f1c22SToby Isaac 
6943c58f1c22SToby Isaac   Level: beginner
6944c58f1c22SToby Isaac 
69451cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMLabelClearStratum()`, `DMSetLabelValue()`, `DMGetStratumIS()`, `DMClearLabelValue()`
6946c58f1c22SToby Isaac @*/
6947d71ae5a4SJacob Faibussowitsch PetscErrorCode DMClearLabelStratum(DM dm, const char name[], PetscInt value)
6948d71ae5a4SJacob Faibussowitsch {
6949c58f1c22SToby Isaac   DMLabel label;
6950c58f1c22SToby Isaac 
6951c58f1c22SToby Isaac   PetscFunctionBegin;
6952c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
69534f572ea9SToby Isaac   PetscAssertPointer(name, 2);
69549566063dSJacob Faibussowitsch   PetscCall(DMGetLabel(dm, name, &label));
69553ba16761SJacob Faibussowitsch   if (!label) PetscFunctionReturn(PETSC_SUCCESS);
69569566063dSJacob Faibussowitsch   PetscCall(DMLabelClearStratum(label, value));
69573ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6958c58f1c22SToby Isaac }
6959c58f1c22SToby Isaac 
6960c58f1c22SToby Isaac /*@
6961bb7acecfSBarry Smith   DMGetNumLabels - Return the number of labels defined by on the `DM`
6962c58f1c22SToby Isaac 
6963c58f1c22SToby Isaac   Not Collective
6964c58f1c22SToby Isaac 
6965c58f1c22SToby Isaac   Input Parameter:
6966bb7acecfSBarry Smith . dm - The `DM` object
6967c58f1c22SToby Isaac 
6968c58f1c22SToby Isaac   Output Parameter:
6969c58f1c22SToby Isaac . numLabels - the number of Labels
6970c58f1c22SToby Isaac 
6971c58f1c22SToby Isaac   Level: intermediate
6972c58f1c22SToby Isaac 
69731cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMGetLabelByNum()`, `DMGetLabelName()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
6974c58f1c22SToby Isaac @*/
6975d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNumLabels(DM dm, PetscInt *numLabels)
6976d71ae5a4SJacob Faibussowitsch {
69775d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
6978c58f1c22SToby Isaac   PetscInt    n    = 0;
6979c58f1c22SToby Isaac 
6980c58f1c22SToby Isaac   PetscFunctionBegin;
6981c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
69824f572ea9SToby Isaac   PetscAssertPointer(numLabels, 2);
69839371c9d4SSatish Balay   while (next) {
69849371c9d4SSatish Balay     ++n;
69859371c9d4SSatish Balay     next = next->next;
69869371c9d4SSatish Balay   }
6987c58f1c22SToby Isaac   *numLabels = n;
69883ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6989c58f1c22SToby Isaac }
6990c58f1c22SToby Isaac 
6991c58f1c22SToby Isaac /*@C
6992c58f1c22SToby Isaac   DMGetLabelName - Return the name of nth label
6993c58f1c22SToby Isaac 
6994c58f1c22SToby Isaac   Not Collective
6995c58f1c22SToby Isaac 
6996c58f1c22SToby Isaac   Input Parameters:
6997bb7acecfSBarry Smith + dm - The `DM` object
6998c58f1c22SToby Isaac - n  - the label number
6999c58f1c22SToby Isaac 
7000c58f1c22SToby Isaac   Output Parameter:
7001c58f1c22SToby Isaac . name - the label name
7002c58f1c22SToby Isaac 
7003c58f1c22SToby Isaac   Level: intermediate
7004c58f1c22SToby Isaac 
700560225df5SJacob Faibussowitsch   Developer Notes:
7006bb7acecfSBarry Smith   Some of the functions that appropriate on labels using their number have the suffix ByNum, others do not.
7007bb7acecfSBarry Smith 
70081cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMGetLabelByNum()`, `DMGetLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7009c58f1c22SToby Isaac @*/
7010d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelName(DM dm, PetscInt n, const char **name)
7011d71ae5a4SJacob Faibussowitsch {
70125d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7013c58f1c22SToby Isaac   PetscInt    l    = 0;
7014c58f1c22SToby Isaac 
7015c58f1c22SToby Isaac   PetscFunctionBegin;
7016c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
70174f572ea9SToby Isaac   PetscAssertPointer(name, 3);
7018c58f1c22SToby Isaac   while (next) {
7019c58f1c22SToby Isaac     if (l == n) {
70209566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetName((PetscObject)next->label, name));
70213ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
7022c58f1c22SToby Isaac     }
7023c58f1c22SToby Isaac     ++l;
7024c58f1c22SToby Isaac     next = next->next;
7025c58f1c22SToby Isaac   }
702663a3b9bcSJacob Faibussowitsch   SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %" PetscInt_FMT " does not exist in this DM", n);
7027c58f1c22SToby Isaac }
7028c58f1c22SToby Isaac 
7029c58f1c22SToby Isaac /*@C
7030bb7acecfSBarry Smith   DMHasLabel - Determine whether the `DM` has a label of a given name
7031c58f1c22SToby Isaac 
7032c58f1c22SToby Isaac   Not Collective
7033c58f1c22SToby Isaac 
7034c58f1c22SToby Isaac   Input Parameters:
7035bb7acecfSBarry Smith + dm   - The `DM` object
7036c58f1c22SToby Isaac - name - The label name
7037c58f1c22SToby Isaac 
7038c58f1c22SToby Isaac   Output Parameter:
7039bb7acecfSBarry Smith . hasLabel - `PETSC_TRUE` if the label is present
7040c58f1c22SToby Isaac 
7041c58f1c22SToby Isaac   Level: intermediate
7042c58f1c22SToby Isaac 
70431cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMGetLabel()`, `DMGetLabelByNum()`, `DMCreateLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7044c58f1c22SToby Isaac @*/
7045d71ae5a4SJacob Faibussowitsch PetscErrorCode DMHasLabel(DM dm, const char name[], PetscBool *hasLabel)
7046d71ae5a4SJacob Faibussowitsch {
70475d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7048d67d17b1SMatthew G. Knepley   const char *lname;
7049c58f1c22SToby Isaac 
7050c58f1c22SToby Isaac   PetscFunctionBegin;
7051c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
70524f572ea9SToby Isaac   PetscAssertPointer(name, 2);
70534f572ea9SToby Isaac   PetscAssertPointer(hasLabel, 3);
7054c58f1c22SToby Isaac   *hasLabel = PETSC_FALSE;
7055c58f1c22SToby Isaac   while (next) {
70569566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)next->label, &lname));
70579566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, hasLabel));
7058c58f1c22SToby Isaac     if (*hasLabel) break;
7059c58f1c22SToby Isaac     next = next->next;
7060c58f1c22SToby Isaac   }
70613ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7062c58f1c22SToby Isaac }
7063c58f1c22SToby Isaac 
7064a4e35b19SJacob Faibussowitsch // PetscClangLinter pragma ignore: -fdoc-section-header-unknown
7065c58f1c22SToby Isaac /*@C
706620f4b53cSBarry Smith   DMGetLabel - Return the label of a given name, or `NULL`, from a `DM`
7067c58f1c22SToby Isaac 
7068c58f1c22SToby Isaac   Not Collective
7069c58f1c22SToby Isaac 
7070c58f1c22SToby Isaac   Input Parameters:
7071bb7acecfSBarry Smith + dm   - The `DM` object
7072c58f1c22SToby Isaac - name - The label name
7073c58f1c22SToby Isaac 
7074c58f1c22SToby Isaac   Output Parameter:
707520f4b53cSBarry Smith . label - The `DMLabel`, or `NULL` if the label is absent
7076c58f1c22SToby Isaac 
7077bb7acecfSBarry Smith   Default labels in a `DMPLEX`:
7078bb7acecfSBarry Smith + "depth"       - Holds the depth (co-dimension) of each mesh point
7079bb7acecfSBarry Smith . "celltype"    - Holds the topological type of each cell
7080bb7acecfSBarry Smith . "ghost"       - If the DM is distributed with overlap, this marks the cells and faces in the overlap
7081bb7acecfSBarry Smith . "Cell Sets"   - Mirrors the cell sets defined by GMsh and ExodusII
7082bb7acecfSBarry Smith . "Face Sets"   - Mirrors the face sets defined by GMsh and ExodusII
7083bb7acecfSBarry Smith - "Vertex Sets" - Mirrors the vertex sets defined by GMsh
70846d7c9049SMatthew G. Knepley 
7085c58f1c22SToby Isaac   Level: intermediate
7086c58f1c22SToby Isaac 
708760225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMHasLabel()`, `DMGetLabelByNum()`, `DMAddLabel()`, `DMCreateLabel()`, `DMPlexGetDepthLabel()`, `DMPlexGetCellType()`
7088c58f1c22SToby Isaac @*/
7089d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabel(DM dm, const char name[], DMLabel *label)
7090d71ae5a4SJacob Faibussowitsch {
70915d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7092c58f1c22SToby Isaac   PetscBool   hasLabel;
7093d67d17b1SMatthew G. Knepley   const char *lname;
7094c58f1c22SToby Isaac 
7095c58f1c22SToby Isaac   PetscFunctionBegin;
7096c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
70974f572ea9SToby Isaac   PetscAssertPointer(name, 2);
70984f572ea9SToby Isaac   PetscAssertPointer(label, 3);
7099c58f1c22SToby Isaac   *label = NULL;
7100c58f1c22SToby Isaac   while (next) {
71019566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)next->label, &lname));
71029566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &hasLabel));
7103c58f1c22SToby Isaac     if (hasLabel) {
7104c58f1c22SToby Isaac       *label = next->label;
7105c58f1c22SToby Isaac       break;
7106c58f1c22SToby Isaac     }
7107c58f1c22SToby Isaac     next = next->next;
7108c58f1c22SToby Isaac   }
71093ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7110c58f1c22SToby Isaac }
7111c58f1c22SToby Isaac 
7112c58f1c22SToby Isaac /*@C
7113bb7acecfSBarry Smith   DMGetLabelByNum - Return the nth label on a `DM`
7114c58f1c22SToby Isaac 
7115c58f1c22SToby Isaac   Not Collective
7116c58f1c22SToby Isaac 
7117c58f1c22SToby Isaac   Input Parameters:
7118bb7acecfSBarry Smith + dm - The `DM` object
7119c58f1c22SToby Isaac - n  - the label number
7120c58f1c22SToby Isaac 
7121c58f1c22SToby Isaac   Output Parameter:
7122c58f1c22SToby Isaac . label - the label
7123c58f1c22SToby Isaac 
7124c58f1c22SToby Isaac   Level: intermediate
7125c58f1c22SToby Isaac 
71261cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMAddLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7127c58f1c22SToby Isaac @*/
7128d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelByNum(DM dm, PetscInt n, DMLabel *label)
7129d71ae5a4SJacob Faibussowitsch {
71305d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7131c58f1c22SToby Isaac   PetscInt    l    = 0;
7132c58f1c22SToby Isaac 
7133c58f1c22SToby Isaac   PetscFunctionBegin;
7134c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
71354f572ea9SToby Isaac   PetscAssertPointer(label, 3);
7136c58f1c22SToby Isaac   while (next) {
7137c58f1c22SToby Isaac     if (l == n) {
7138c58f1c22SToby Isaac       *label = next->label;
71393ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
7140c58f1c22SToby Isaac     }
7141c58f1c22SToby Isaac     ++l;
7142c58f1c22SToby Isaac     next = next->next;
7143c58f1c22SToby Isaac   }
714463a3b9bcSJacob Faibussowitsch   SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %" PetscInt_FMT " does not exist in this DM", n);
7145c58f1c22SToby Isaac }
7146c58f1c22SToby Isaac 
7147c58f1c22SToby Isaac /*@C
7148bb7acecfSBarry Smith   DMAddLabel - Add the label to this `DM`
7149c58f1c22SToby Isaac 
7150c58f1c22SToby Isaac   Not Collective
7151c58f1c22SToby Isaac 
7152c58f1c22SToby Isaac   Input Parameters:
7153bb7acecfSBarry Smith + dm    - The `DM` object
7154bb7acecfSBarry Smith - label - The `DMLabel`
7155c58f1c22SToby Isaac 
7156c58f1c22SToby Isaac   Level: developer
7157c58f1c22SToby Isaac 
715860225df5SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMCreateLabel()`, `DMHasLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7159c58f1c22SToby Isaac @*/
7160d71ae5a4SJacob Faibussowitsch PetscErrorCode DMAddLabel(DM dm, DMLabel label)
7161d71ae5a4SJacob Faibussowitsch {
71625d80c0bfSVaclav Hapla   DMLabelLink l, *p, tmpLabel;
7163c58f1c22SToby Isaac   PetscBool   hasLabel;
7164d67d17b1SMatthew G. Knepley   const char *lname;
71655d80c0bfSVaclav Hapla   PetscBool   flg;
7166c58f1c22SToby Isaac 
7167c58f1c22SToby Isaac   PetscFunctionBegin;
7168c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
71699566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetName((PetscObject)label, &lname));
71709566063dSJacob Faibussowitsch   PetscCall(DMHasLabel(dm, lname, &hasLabel));
71717a8be351SBarry Smith   PetscCheck(!hasLabel, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %s already exists in this DM", lname);
71729566063dSJacob Faibussowitsch   PetscCall(PetscCalloc1(1, &tmpLabel));
7173c58f1c22SToby Isaac   tmpLabel->label  = label;
7174c58f1c22SToby Isaac   tmpLabel->output = PETSC_TRUE;
71755d80c0bfSVaclav Hapla   for (p = &dm->labels; (l = *p); p = &l->next) { }
71765d80c0bfSVaclav Hapla   *p = tmpLabel;
71779566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)label));
71789566063dSJacob Faibussowitsch   PetscCall(PetscStrcmp(lname, "depth", &flg));
71795d80c0bfSVaclav Hapla   if (flg) dm->depthLabel = label;
71809566063dSJacob Faibussowitsch   PetscCall(PetscStrcmp(lname, "celltype", &flg));
7181ba2698f1SMatthew G. Knepley   if (flg) dm->celltypeLabel = label;
71823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7183c58f1c22SToby Isaac }
7184c58f1c22SToby Isaac 
7185a4e35b19SJacob Faibussowitsch // PetscClangLinter pragma ignore: -fdoc-section-header-unknown
7186c58f1c22SToby Isaac /*@C
71874a7ee7d0SMatthew G. Knepley   DMSetLabel - Replaces the label of a given name, or ignores it if the name is not present
71884a7ee7d0SMatthew G. Knepley 
71894a7ee7d0SMatthew G. Knepley   Not Collective
71904a7ee7d0SMatthew G. Knepley 
71914a7ee7d0SMatthew G. Knepley   Input Parameters:
7192bb7acecfSBarry Smith + dm    - The `DM` object
7193bb7acecfSBarry Smith - label - The `DMLabel`, having the same name, to substitute
71944a7ee7d0SMatthew G. Knepley 
7195bb7acecfSBarry Smith   Default labels in a `DMPLEX`:
7196bb7acecfSBarry Smith + "depth"       - Holds the depth (co-dimension) of each mesh point
7197bb7acecfSBarry Smith . "celltype"    - Holds the topological type of each cell
7198bb7acecfSBarry Smith . "ghost"       - If the DM is distributed with overlap, this marks the cells and faces in the overlap
7199bb7acecfSBarry Smith . "Cell Sets"   - Mirrors the cell sets defined by GMsh and ExodusII
7200bb7acecfSBarry Smith . "Face Sets"   - Mirrors the face sets defined by GMsh and ExodusII
7201bb7acecfSBarry Smith - "Vertex Sets" - Mirrors the vertex sets defined by GMsh
72024a7ee7d0SMatthew G. Knepley 
72034a7ee7d0SMatthew G. Knepley   Level: intermediate
72044a7ee7d0SMatthew G. Knepley 
72051cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMCreateLabel()`, `DMHasLabel()`, `DMPlexGetDepthLabel()`, `DMPlexGetCellType()`
72064a7ee7d0SMatthew G. Knepley @*/
7207d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetLabel(DM dm, DMLabel label)
7208d71ae5a4SJacob Faibussowitsch {
72094a7ee7d0SMatthew G. Knepley   DMLabelLink next = dm->labels;
72104a7ee7d0SMatthew G. Knepley   PetscBool   hasLabel, flg;
72114a7ee7d0SMatthew G. Knepley   const char *name, *lname;
72124a7ee7d0SMatthew G. Knepley 
72134a7ee7d0SMatthew G. Knepley   PetscFunctionBegin;
72144a7ee7d0SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
72154a7ee7d0SMatthew G. Knepley   PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
72169566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetName((PetscObject)label, &name));
72174a7ee7d0SMatthew G. Knepley   while (next) {
72189566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)next->label, &lname));
72199566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &hasLabel));
72204a7ee7d0SMatthew G. Knepley     if (hasLabel) {
72219566063dSJacob Faibussowitsch       PetscCall(PetscObjectReference((PetscObject)label));
72229566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(lname, "depth", &flg));
72234a7ee7d0SMatthew G. Knepley       if (flg) dm->depthLabel = label;
72249566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(lname, "celltype", &flg));
72254a7ee7d0SMatthew G. Knepley       if (flg) dm->celltypeLabel = label;
72269566063dSJacob Faibussowitsch       PetscCall(DMLabelDestroy(&next->label));
72274a7ee7d0SMatthew G. Knepley       next->label = label;
72284a7ee7d0SMatthew G. Knepley       break;
72294a7ee7d0SMatthew G. Knepley     }
72304a7ee7d0SMatthew G. Knepley     next = next->next;
72314a7ee7d0SMatthew G. Knepley   }
72323ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
72334a7ee7d0SMatthew G. Knepley }
72344a7ee7d0SMatthew G. Knepley 
72354a7ee7d0SMatthew G. Knepley /*@C
7236bb7acecfSBarry Smith   DMRemoveLabel - Remove the label given by name from this `DM`
7237c58f1c22SToby Isaac 
7238c58f1c22SToby Isaac   Not Collective
7239c58f1c22SToby Isaac 
7240c58f1c22SToby Isaac   Input Parameters:
7241bb7acecfSBarry Smith + dm   - The `DM` object
7242c58f1c22SToby Isaac - name - The label name
7243c58f1c22SToby Isaac 
7244c58f1c22SToby Isaac   Output Parameter:
724520f4b53cSBarry Smith . label - The `DMLabel`, or `NULL` if the label is absent. Pass in `NULL` to call `DMLabelDestroy()` on the label, otherwise the
7246bb7acecfSBarry Smith           caller is responsible for calling `DMLabelDestroy()`.
7247c58f1c22SToby Isaac 
7248c58f1c22SToby Isaac   Level: developer
7249c58f1c22SToby Isaac 
72501cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMCreateLabel()`, `DMHasLabel()`, `DMGetLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMLabelDestroy()`, `DMRemoveLabelBySelf()`
7251c58f1c22SToby Isaac @*/
7252d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRemoveLabel(DM dm, const char name[], DMLabel *label)
7253d71ae5a4SJacob Faibussowitsch {
725495d578d6SVaclav Hapla   DMLabelLink link, *pnext;
7255c58f1c22SToby Isaac   PetscBool   hasLabel;
7256d67d17b1SMatthew G. Knepley   const char *lname;
7257c58f1c22SToby Isaac 
7258c58f1c22SToby Isaac   PetscFunctionBegin;
7259c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
72604f572ea9SToby Isaac   PetscAssertPointer(name, 2);
7261e5472504SVaclav Hapla   if (label) {
72624f572ea9SToby Isaac     PetscAssertPointer(label, 3);
7263c58f1c22SToby Isaac     *label = NULL;
7264e5472504SVaclav Hapla   }
72655d80c0bfSVaclav Hapla   for (pnext = &dm->labels; (link = *pnext); pnext = &link->next) {
72669566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)link->label, &lname));
72679566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &hasLabel));
7268c58f1c22SToby Isaac     if (hasLabel) {
726995d578d6SVaclav Hapla       *pnext = link->next; /* Remove from list */
72709566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, "depth", &hasLabel));
727195d578d6SVaclav Hapla       if (hasLabel) dm->depthLabel = NULL;
72729566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, "celltype", &hasLabel));
7273ba2698f1SMatthew G. Knepley       if (hasLabel) dm->celltypeLabel = NULL;
727495d578d6SVaclav Hapla       if (label) *label = link->label;
72759566063dSJacob Faibussowitsch       else PetscCall(DMLabelDestroy(&link->label));
72769566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
7277c58f1c22SToby Isaac       break;
7278c58f1c22SToby Isaac     }
7279c58f1c22SToby Isaac   }
72803ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7281c58f1c22SToby Isaac }
7282c58f1c22SToby Isaac 
7283306894acSVaclav Hapla /*@
7284bb7acecfSBarry Smith   DMRemoveLabelBySelf - Remove the label from this `DM`
7285306894acSVaclav Hapla 
7286306894acSVaclav Hapla   Not Collective
7287306894acSVaclav Hapla 
7288306894acSVaclav Hapla   Input Parameters:
7289bb7acecfSBarry Smith + dm           - The `DM` object
7290bb7acecfSBarry Smith . label        - The `DMLabel` to be removed from the `DM`
729120f4b53cSBarry Smith - failNotFound - Should it fail if the label is not found in the `DM`?
7292306894acSVaclav Hapla 
7293306894acSVaclav Hapla   Level: developer
7294306894acSVaclav Hapla 
7295bb7acecfSBarry Smith   Note:
7296306894acSVaclav Hapla   Only exactly the same instance is removed if found, name match is ignored.
7297bb7acecfSBarry Smith   If the `DM` has an exclusive reference to the label, the label gets destroyed and
7298306894acSVaclav Hapla   *label nullified.
7299306894acSVaclav Hapla 
73001cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMCreateLabel()`, `DMHasLabel()`, `DMGetLabel()` `DMGetLabelValue()`, `DMSetLabelValue()`, `DMLabelDestroy()`, `DMRemoveLabel()`
7301306894acSVaclav Hapla @*/
7302d71ae5a4SJacob Faibussowitsch PetscErrorCode DMRemoveLabelBySelf(DM dm, DMLabel *label, PetscBool failNotFound)
7303d71ae5a4SJacob Faibussowitsch {
730443e45a93SVaclav Hapla   DMLabelLink link, *pnext;
7305306894acSVaclav Hapla   PetscBool   hasLabel = PETSC_FALSE;
7306306894acSVaclav Hapla 
7307306894acSVaclav Hapla   PetscFunctionBegin;
7308306894acSVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
73094f572ea9SToby Isaac   PetscAssertPointer(label, 2);
73103ba16761SJacob Faibussowitsch   if (!*label && !failNotFound) PetscFunctionReturn(PETSC_SUCCESS);
7311306894acSVaclav Hapla   PetscValidHeaderSpecific(*label, DMLABEL_CLASSID, 2);
7312306894acSVaclav Hapla   PetscValidLogicalCollectiveBool(dm, failNotFound, 3);
73135d80c0bfSVaclav Hapla   for (pnext = &dm->labels; (link = *pnext); pnext = &link->next) {
731443e45a93SVaclav Hapla     if (*label == link->label) {
7315306894acSVaclav Hapla       hasLabel = PETSC_TRUE;
731643e45a93SVaclav Hapla       *pnext   = link->next; /* Remove from list */
7317306894acSVaclav Hapla       if (*label == dm->depthLabel) dm->depthLabel = NULL;
7318ba2698f1SMatthew G. Knepley       if (*label == dm->celltypeLabel) dm->celltypeLabel = NULL;
731943e45a93SVaclav Hapla       if (((PetscObject)link->label)->refct < 2) *label = NULL; /* nullify if exclusive reference */
73209566063dSJacob Faibussowitsch       PetscCall(DMLabelDestroy(&link->label));
73219566063dSJacob Faibussowitsch       PetscCall(PetscFree(link));
7322306894acSVaclav Hapla       break;
7323306894acSVaclav Hapla     }
7324306894acSVaclav Hapla   }
73257a8be351SBarry Smith   PetscCheck(hasLabel || !failNotFound, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Given label not found in DM");
73263ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7327306894acSVaclav Hapla }
7328306894acSVaclav Hapla 
7329c58f1c22SToby Isaac /*@C
7330c58f1c22SToby Isaac   DMGetLabelOutput - Get the output flag for a given label
7331c58f1c22SToby Isaac 
7332c58f1c22SToby Isaac   Not Collective
7333c58f1c22SToby Isaac 
7334c58f1c22SToby Isaac   Input Parameters:
7335bb7acecfSBarry Smith + dm   - The `DM` object
7336c58f1c22SToby Isaac - name - The label name
7337c58f1c22SToby Isaac 
7338c58f1c22SToby Isaac   Output Parameter:
7339c58f1c22SToby Isaac . output - The flag for output
7340c58f1c22SToby Isaac 
7341c58f1c22SToby Isaac   Level: developer
7342c58f1c22SToby Isaac 
73431cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMSetLabelOutput()`, `DMCreateLabel()`, `DMHasLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7344c58f1c22SToby Isaac @*/
7345d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetLabelOutput(DM dm, const char name[], PetscBool *output)
7346d71ae5a4SJacob Faibussowitsch {
73475d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7348d67d17b1SMatthew G. Knepley   const char *lname;
7349c58f1c22SToby Isaac 
7350c58f1c22SToby Isaac   PetscFunctionBegin;
7351c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
73524f572ea9SToby Isaac   PetscAssertPointer(name, 2);
73534f572ea9SToby Isaac   PetscAssertPointer(output, 3);
7354c58f1c22SToby Isaac   while (next) {
7355c58f1c22SToby Isaac     PetscBool flg;
7356c58f1c22SToby Isaac 
73579566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)next->label, &lname));
73589566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &flg));
73599371c9d4SSatish Balay     if (flg) {
73609371c9d4SSatish Balay       *output = next->output;
73613ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
73629371c9d4SSatish Balay     }
7363c58f1c22SToby Isaac     next = next->next;
7364c58f1c22SToby Isaac   }
736598921bdaSJacob Faibussowitsch   SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
7366c58f1c22SToby Isaac }
7367c58f1c22SToby Isaac 
7368c58f1c22SToby Isaac /*@C
7369bb7acecfSBarry Smith   DMSetLabelOutput - Set if a given label should be saved to a `PetscViewer` in calls to `DMView()`
7370c58f1c22SToby Isaac 
7371c58f1c22SToby Isaac   Not Collective
7372c58f1c22SToby Isaac 
7373c58f1c22SToby Isaac   Input Parameters:
7374bb7acecfSBarry Smith + dm     - The `DM` object
7375c58f1c22SToby Isaac . name   - The label name
7376bb7acecfSBarry Smith - output - `PETSC_TRUE` to save the label to the viewer
7377c58f1c22SToby Isaac 
7378c58f1c22SToby Isaac   Level: developer
7379c58f1c22SToby Isaac 
73801cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMGetOutputFlag()`, `DMGetLabelOutput()`, `DMCreateLabel()`, `DMHasLabel()`, `DMGetLabelValue()`, `DMSetLabelValue()`, `DMGetStratumIS()`
7381c58f1c22SToby Isaac @*/
7382d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetLabelOutput(DM dm, const char name[], PetscBool output)
7383d71ae5a4SJacob Faibussowitsch {
73845d80c0bfSVaclav Hapla   DMLabelLink next = dm->labels;
7385d67d17b1SMatthew G. Knepley   const char *lname;
7386c58f1c22SToby Isaac 
7387c58f1c22SToby Isaac   PetscFunctionBegin;
7388c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
73894f572ea9SToby Isaac   PetscAssertPointer(name, 2);
7390c58f1c22SToby Isaac   while (next) {
7391c58f1c22SToby Isaac     PetscBool flg;
7392c58f1c22SToby Isaac 
73939566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)next->label, &lname));
73949566063dSJacob Faibussowitsch     PetscCall(PetscStrcmp(name, lname, &flg));
73959371c9d4SSatish Balay     if (flg) {
73969371c9d4SSatish Balay       next->output = output;
73973ba16761SJacob Faibussowitsch       PetscFunctionReturn(PETSC_SUCCESS);
73989371c9d4SSatish Balay     }
7399c58f1c22SToby Isaac     next = next->next;
7400c58f1c22SToby Isaac   }
740198921bdaSJacob Faibussowitsch   SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
7402c58f1c22SToby Isaac }
7403c58f1c22SToby Isaac 
7404c58f1c22SToby Isaac /*@
7405bb7acecfSBarry Smith   DMCopyLabels - Copy labels from one `DM` mesh to another `DM` with a superset of the points
7406c58f1c22SToby Isaac 
740720f4b53cSBarry Smith   Collective
7408c58f1c22SToby Isaac 
7409d8d19677SJose E. Roman   Input Parameters:
7410bb7acecfSBarry Smith + dmA   - The `DM` object with initial labels
7411bb7acecfSBarry Smith . dmB   - The `DM` object to which labels are copied
7412bb7acecfSBarry Smith . mode  - Copy labels by pointers (`PETSC_OWN_POINTER`) or duplicate them (`PETSC_COPY_VALUES`)
7413bb7acecfSBarry Smith . all   - Copy all labels including "depth", "dim", and "celltype" (`PETSC_TRUE`) which are otherwise ignored (`PETSC_FALSE`)
7414bb7acecfSBarry Smith - emode - How to behave when a `DMLabel` in the source and destination `DM`s with the same name is encountered (see `DMCopyLabelsMode`)
7415c58f1c22SToby Isaac 
7416c58f1c22SToby Isaac   Level: intermediate
7417c58f1c22SToby Isaac 
7418bb7acecfSBarry Smith   Note:
74192cbb9b06SVaclav Hapla   This is typically used when interpolating or otherwise adding to a mesh, or testing.
7420c58f1c22SToby Isaac 
74211cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMAddLabel()`, `DMCopyLabelsMode`
7422c58f1c22SToby Isaac @*/
7423d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyLabels(DM dmA, DM dmB, PetscCopyMode mode, PetscBool all, DMCopyLabelsMode emode)
7424d71ae5a4SJacob Faibussowitsch {
74252cbb9b06SVaclav Hapla   DMLabel     label, labelNew, labelOld;
7426c58f1c22SToby Isaac   const char *name;
7427c58f1c22SToby Isaac   PetscBool   flg;
74285d80c0bfSVaclav Hapla   DMLabelLink link;
7429c58f1c22SToby Isaac 
74305d80c0bfSVaclav Hapla   PetscFunctionBegin;
74315d80c0bfSVaclav Hapla   PetscValidHeaderSpecific(dmA, DM_CLASSID, 1);
74325d80c0bfSVaclav Hapla   PetscValidHeaderSpecific(dmB, DM_CLASSID, 2);
74335d80c0bfSVaclav Hapla   PetscValidLogicalCollectiveEnum(dmA, mode, 3);
74345d80c0bfSVaclav Hapla   PetscValidLogicalCollectiveBool(dmA, all, 4);
74357a8be351SBarry Smith   PetscCheck(mode != PETSC_USE_POINTER, PetscObjectComm((PetscObject)dmA), PETSC_ERR_SUP, "PETSC_USE_POINTER not supported for objects");
74363ba16761SJacob Faibussowitsch   if (dmA == dmB) PetscFunctionReturn(PETSC_SUCCESS);
74375d80c0bfSVaclav Hapla   for (link = dmA->labels; link; link = link->next) {
74385d80c0bfSVaclav Hapla     label = link->label;
74399566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)label, &name));
74405d80c0bfSVaclav Hapla     if (!all) {
74419566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, "depth", &flg));
7442c58f1c22SToby Isaac       if (flg) continue;
74439566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, "dim", &flg));
74447d5acc75SStefano Zampini       if (flg) continue;
74459566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, "celltype", &flg));
7446ba2698f1SMatthew G. Knepley       if (flg) continue;
74475d80c0bfSVaclav Hapla     }
74489566063dSJacob Faibussowitsch     PetscCall(DMGetLabel(dmB, name, &labelOld));
74492cbb9b06SVaclav Hapla     if (labelOld) {
74502cbb9b06SVaclav Hapla       switch (emode) {
7451d71ae5a4SJacob Faibussowitsch       case DM_COPY_LABELS_KEEP:
7452d71ae5a4SJacob Faibussowitsch         continue;
7453d71ae5a4SJacob Faibussowitsch       case DM_COPY_LABELS_REPLACE:
7454d71ae5a4SJacob Faibussowitsch         PetscCall(DMRemoveLabelBySelf(dmB, &labelOld, PETSC_TRUE));
7455d71ae5a4SJacob Faibussowitsch         break;
7456d71ae5a4SJacob Faibussowitsch       case DM_COPY_LABELS_FAIL:
7457d71ae5a4SJacob Faibussowitsch         SETERRQ(PetscObjectComm((PetscObject)dmA), PETSC_ERR_ARG_OUTOFRANGE, "Label %s already exists in destination DM", name);
7458d71ae5a4SJacob Faibussowitsch       default:
7459d71ae5a4SJacob Faibussowitsch         SETERRQ(PetscObjectComm((PetscObject)dmA), PETSC_ERR_ARG_OUTOFRANGE, "Unhandled DMCopyLabelsMode %d", (int)emode);
74602cbb9b06SVaclav Hapla       }
74612cbb9b06SVaclav Hapla     }
74625d80c0bfSVaclav Hapla     if (mode == PETSC_COPY_VALUES) {
74639566063dSJacob Faibussowitsch       PetscCall(DMLabelDuplicate(label, &labelNew));
74645d80c0bfSVaclav Hapla     } else {
74655d80c0bfSVaclav Hapla       labelNew = label;
74665d80c0bfSVaclav Hapla     }
74679566063dSJacob Faibussowitsch     PetscCall(DMAddLabel(dmB, labelNew));
74689566063dSJacob Faibussowitsch     if (mode == PETSC_COPY_VALUES) PetscCall(DMLabelDestroy(&labelNew));
7469c58f1c22SToby Isaac   }
74703ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7471c58f1c22SToby Isaac }
7472461a15a0SLisandro Dalcin 
7473609dae6eSVaclav Hapla /*@C
7474b4028c23SStefano Zampini   DMCompareLabels - Compare labels between two `DM` objects
7475609dae6eSVaclav Hapla 
747620f4b53cSBarry Smith   Collective; No Fortran Support
7477609dae6eSVaclav Hapla 
7478609dae6eSVaclav Hapla   Input Parameters:
7479bb7acecfSBarry Smith + dm0 - First `DM` object
7480bb7acecfSBarry Smith - dm1 - Second `DM` object
7481609dae6eSVaclav Hapla 
7482a4e35b19SJacob Faibussowitsch   Output Parameters:
74835efe38ccSVaclav Hapla + equal   - (Optional) Flag whether labels of dm0 and dm1 are the same
748420f4b53cSBarry Smith - message - (Optional) Message describing the difference, or `NULL` if there is no difference
7485609dae6eSVaclav Hapla 
7486609dae6eSVaclav Hapla   Level: intermediate
7487609dae6eSVaclav Hapla 
7488609dae6eSVaclav Hapla   Notes:
7489bb7acecfSBarry Smith   The output flag equal will be the same on all processes.
7490bb7acecfSBarry Smith 
749120f4b53cSBarry Smith   If equal is passed as `NULL` and difference is found, an error is thrown on all processes.
7492bb7acecfSBarry Smith 
749320f4b53cSBarry Smith   Make sure to pass equal is `NULL` on all processes or none of them.
7494609dae6eSVaclav Hapla 
74955efe38ccSVaclav Hapla   The output message is set independently on each rank.
7496bb7acecfSBarry Smith 
7497bb7acecfSBarry Smith   message must be freed with `PetscFree()`
7498bb7acecfSBarry Smith 
749920f4b53cSBarry Smith   If message is passed as `NULL` and a difference is found, the difference description is printed to stderr in synchronized manner.
7500bb7acecfSBarry Smith 
750120f4b53cSBarry Smith   Make sure to pass message as `NULL` on all processes or no processes.
7502609dae6eSVaclav Hapla 
7503609dae6eSVaclav Hapla   Labels are matched by name. If the number of labels and their names are equal,
7504bb7acecfSBarry Smith   `DMLabelCompare()` is used to compare each pair of labels with the same name.
7505609dae6eSVaclav Hapla 
75061cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMLabel`, `DMAddLabel()`, `DMCopyLabelsMode`, `DMLabelCompare()`
7507609dae6eSVaclav Hapla @*/
7508d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCompareLabels(DM dm0, DM dm1, PetscBool *equal, char **message)
7509d71ae5a4SJacob Faibussowitsch {
75105efe38ccSVaclav Hapla   PetscInt    n, i;
7511609dae6eSVaclav Hapla   char        msg[PETSC_MAX_PATH_LEN] = "";
75125efe38ccSVaclav Hapla   PetscBool   eq;
7513609dae6eSVaclav Hapla   MPI_Comm    comm;
75145efe38ccSVaclav Hapla   PetscMPIInt rank;
7515609dae6eSVaclav Hapla 
7516609dae6eSVaclav Hapla   PetscFunctionBegin;
7517609dae6eSVaclav Hapla   PetscValidHeaderSpecific(dm0, DM_CLASSID, 1);
7518609dae6eSVaclav Hapla   PetscValidHeaderSpecific(dm1, DM_CLASSID, 2);
7519609dae6eSVaclav Hapla   PetscCheckSameComm(dm0, 1, dm1, 2);
75204f572ea9SToby Isaac   if (equal) PetscAssertPointer(equal, 3);
75214f572ea9SToby Isaac   if (message) PetscAssertPointer(message, 4);
75229566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)dm0, &comm));
75239566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(comm, &rank));
75245efe38ccSVaclav Hapla   {
75255efe38ccSVaclav Hapla     PetscInt n1;
75265efe38ccSVaclav Hapla 
75279566063dSJacob Faibussowitsch     PetscCall(DMGetNumLabels(dm0, &n));
75289566063dSJacob Faibussowitsch     PetscCall(DMGetNumLabels(dm1, &n1));
75295efe38ccSVaclav Hapla     eq = (PetscBool)(n == n1);
753048a46eb9SPierre Jolivet     if (!eq) PetscCall(PetscSNPrintf(msg, sizeof(msg), "Number of labels in dm0 = %" PetscInt_FMT " != %" PetscInt_FMT " = Number of labels in dm1", n, n1));
7531712fec58SPierre Jolivet     PetscCall(MPIU_Allreduce(MPI_IN_PLACE, &eq, 1, MPIU_BOOL, MPI_LAND, comm));
75325efe38ccSVaclav Hapla     if (!eq) goto finish;
75335efe38ccSVaclav Hapla   }
75345efe38ccSVaclav Hapla   for (i = 0; i < n; i++) {
7535609dae6eSVaclav Hapla     DMLabel     l0, l1;
7536609dae6eSVaclav Hapla     const char *name;
7537609dae6eSVaclav Hapla     char       *msgInner;
7538609dae6eSVaclav Hapla 
7539609dae6eSVaclav Hapla     /* Ignore label order */
75409566063dSJacob Faibussowitsch     PetscCall(DMGetLabelByNum(dm0, i, &l0));
75419566063dSJacob Faibussowitsch     PetscCall(PetscObjectGetName((PetscObject)l0, &name));
75429566063dSJacob Faibussowitsch     PetscCall(DMGetLabel(dm1, name, &l1));
7543609dae6eSVaclav Hapla     if (!l1) {
754463a3b9bcSJacob Faibussowitsch       PetscCall(PetscSNPrintf(msg, sizeof(msg), "Label \"%s\" (#%" PetscInt_FMT " in dm0) not found in dm1", name, i));
75455efe38ccSVaclav Hapla       eq = PETSC_FALSE;
75465efe38ccSVaclav Hapla       break;
7547609dae6eSVaclav Hapla     }
75489566063dSJacob Faibussowitsch     PetscCall(DMLabelCompare(comm, l0, l1, &eq, &msgInner));
75499566063dSJacob Faibussowitsch     PetscCall(PetscStrncpy(msg, msgInner, sizeof(msg)));
75509566063dSJacob Faibussowitsch     PetscCall(PetscFree(msgInner));
75515efe38ccSVaclav Hapla     if (!eq) break;
7552609dae6eSVaclav Hapla   }
7553712fec58SPierre Jolivet   PetscCall(MPIU_Allreduce(MPI_IN_PLACE, &eq, 1, MPIU_BOOL, MPI_LAND, comm));
7554609dae6eSVaclav Hapla finish:
75555efe38ccSVaclav Hapla   /* If message output arg not set, print to stderr */
7556609dae6eSVaclav Hapla   if (message) {
7557609dae6eSVaclav Hapla     *message = NULL;
755848a46eb9SPierre Jolivet     if (msg[0]) PetscCall(PetscStrallocpy(msg, message));
75595efe38ccSVaclav Hapla   } else {
756048a46eb9SPierre Jolivet     if (msg[0]) PetscCall(PetscSynchronizedFPrintf(comm, PETSC_STDERR, "[%d] %s\n", rank, msg));
75619566063dSJacob Faibussowitsch     PetscCall(PetscSynchronizedFlush(comm, PETSC_STDERR));
75625efe38ccSVaclav Hapla   }
75635efe38ccSVaclav Hapla   /* If same output arg not ser and labels are not equal, throw error */
75645efe38ccSVaclav Hapla   if (equal) *equal = eq;
75657a8be351SBarry Smith   else PetscCheck(eq, comm, PETSC_ERR_ARG_INCOMP, "DMLabels are not the same in dm0 and dm1");
75663ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7567609dae6eSVaclav Hapla }
7568609dae6eSVaclav Hapla 
7569d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetLabelValue_Fast(DM dm, DMLabel *label, const char name[], PetscInt point, PetscInt value)
7570d71ae5a4SJacob Faibussowitsch {
7571461a15a0SLisandro Dalcin   PetscFunctionBegin;
75724f572ea9SToby Isaac   PetscAssertPointer(label, 2);
7573461a15a0SLisandro Dalcin   if (!*label) {
75749566063dSJacob Faibussowitsch     PetscCall(DMCreateLabel(dm, name));
75759566063dSJacob Faibussowitsch     PetscCall(DMGetLabel(dm, name, label));
7576461a15a0SLisandro Dalcin   }
75779566063dSJacob Faibussowitsch   PetscCall(DMLabelSetValue(*label, point, value));
75783ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7579461a15a0SLisandro Dalcin }
7580461a15a0SLisandro Dalcin 
75810fdc7489SMatthew Knepley /*
75820fdc7489SMatthew Knepley   Many mesh programs, such as Triangle and TetGen, allow only a single label for each mesh point. Therefore, we would
75830fdc7489SMatthew Knepley   like to encode all label IDs using a single, universal label. We can do this by assigning an integer to every
75840fdc7489SMatthew Knepley   (label, id) pair in the DM.
75850fdc7489SMatthew Knepley 
75860fdc7489SMatthew Knepley   However, a mesh point can have multiple labels, so we must separate all these values. We will assign a bit range to
75870fdc7489SMatthew Knepley   each label.
75880fdc7489SMatthew Knepley */
7589d71ae5a4SJacob Faibussowitsch PetscErrorCode DMUniversalLabelCreate(DM dm, DMUniversalLabel *universal)
7590d71ae5a4SJacob Faibussowitsch {
75910fdc7489SMatthew Knepley   DMUniversalLabel ul;
75920fdc7489SMatthew Knepley   PetscBool       *active;
75930fdc7489SMatthew Knepley   PetscInt         pStart, pEnd, p, Nl, l, m;
75940fdc7489SMatthew Knepley 
75950fdc7489SMatthew Knepley   PetscFunctionBegin;
75969566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(1, &ul));
75979566063dSJacob Faibussowitsch   PetscCall(DMLabelCreate(PETSC_COMM_SELF, "universal", &ul->label));
75989566063dSJacob Faibussowitsch   PetscCall(DMGetNumLabels(dm, &Nl));
75999566063dSJacob Faibussowitsch   PetscCall(PetscCalloc1(Nl, &active));
76000fdc7489SMatthew Knepley   ul->Nl = 0;
76010fdc7489SMatthew Knepley   for (l = 0; l < Nl; ++l) {
76020fdc7489SMatthew Knepley     PetscBool   isdepth, iscelltype;
76030fdc7489SMatthew Knepley     const char *name;
76040fdc7489SMatthew Knepley 
76059566063dSJacob Faibussowitsch     PetscCall(DMGetLabelName(dm, l, &name));
76069566063dSJacob Faibussowitsch     PetscCall(PetscStrncmp(name, "depth", 6, &isdepth));
76079566063dSJacob Faibussowitsch     PetscCall(PetscStrncmp(name, "celltype", 9, &iscelltype));
76080fdc7489SMatthew Knepley     active[l] = !(isdepth || iscelltype) ? PETSC_TRUE : PETSC_FALSE;
76090fdc7489SMatthew Knepley     if (active[l]) ++ul->Nl;
76100fdc7489SMatthew Knepley   }
76119566063dSJacob Faibussowitsch   PetscCall(PetscCalloc5(ul->Nl, &ul->names, ul->Nl, &ul->indices, ul->Nl + 1, &ul->offsets, ul->Nl + 1, &ul->bits, ul->Nl, &ul->masks));
76120fdc7489SMatthew Knepley   ul->Nv = 0;
76130fdc7489SMatthew Knepley   for (l = 0, m = 0; l < Nl; ++l) {
76140fdc7489SMatthew Knepley     DMLabel     label;
76150fdc7489SMatthew Knepley     PetscInt    nv;
76160fdc7489SMatthew Knepley     const char *name;
76170fdc7489SMatthew Knepley 
76180fdc7489SMatthew Knepley     if (!active[l]) continue;
76199566063dSJacob Faibussowitsch     PetscCall(DMGetLabelName(dm, l, &name));
76209566063dSJacob Faibussowitsch     PetscCall(DMGetLabelByNum(dm, l, &label));
76219566063dSJacob Faibussowitsch     PetscCall(DMLabelGetNumValues(label, &nv));
76229566063dSJacob Faibussowitsch     PetscCall(PetscStrallocpy(name, &ul->names[m]));
76230fdc7489SMatthew Knepley     ul->indices[m] = l;
76240fdc7489SMatthew Knepley     ul->Nv += nv;
76250fdc7489SMatthew Knepley     ul->offsets[m + 1] = nv;
76260fdc7489SMatthew Knepley     ul->bits[m + 1]    = PetscCeilReal(PetscLog2Real(nv + 1));
76270fdc7489SMatthew Knepley     ++m;
76280fdc7489SMatthew Knepley   }
76290fdc7489SMatthew Knepley   for (l = 1; l <= ul->Nl; ++l) {
76300fdc7489SMatthew Knepley     ul->offsets[l] = ul->offsets[l - 1] + ul->offsets[l];
76310fdc7489SMatthew Knepley     ul->bits[l]    = ul->bits[l - 1] + ul->bits[l];
76320fdc7489SMatthew Knepley   }
76330fdc7489SMatthew Knepley   for (l = 0; l < ul->Nl; ++l) {
76340fdc7489SMatthew Knepley     PetscInt b;
76350fdc7489SMatthew Knepley 
76360fdc7489SMatthew Knepley     ul->masks[l] = 0;
76370fdc7489SMatthew Knepley     for (b = ul->bits[l]; b < ul->bits[l + 1]; ++b) ul->masks[l] |= 1 << b;
76380fdc7489SMatthew Knepley   }
76399566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(ul->Nv, &ul->values));
76400fdc7489SMatthew Knepley   for (l = 0, m = 0; l < Nl; ++l) {
76410fdc7489SMatthew Knepley     DMLabel         label;
76420fdc7489SMatthew Knepley     IS              valueIS;
76430fdc7489SMatthew Knepley     const PetscInt *varr;
76440fdc7489SMatthew Knepley     PetscInt        nv, v;
76450fdc7489SMatthew Knepley 
76460fdc7489SMatthew Knepley     if (!active[l]) continue;
76479566063dSJacob Faibussowitsch     PetscCall(DMGetLabelByNum(dm, l, &label));
76489566063dSJacob Faibussowitsch     PetscCall(DMLabelGetNumValues(label, &nv));
76499566063dSJacob Faibussowitsch     PetscCall(DMLabelGetValueIS(label, &valueIS));
76509566063dSJacob Faibussowitsch     PetscCall(ISGetIndices(valueIS, &varr));
7651ad540459SPierre Jolivet     for (v = 0; v < nv; ++v) ul->values[ul->offsets[m] + v] = varr[v];
76529566063dSJacob Faibussowitsch     PetscCall(ISRestoreIndices(valueIS, &varr));
76539566063dSJacob Faibussowitsch     PetscCall(ISDestroy(&valueIS));
76549566063dSJacob Faibussowitsch     PetscCall(PetscSortInt(nv, &ul->values[ul->offsets[m]]));
76550fdc7489SMatthew Knepley     ++m;
76560fdc7489SMatthew Knepley   }
76579566063dSJacob Faibussowitsch   PetscCall(DMPlexGetChart(dm, &pStart, &pEnd));
76580fdc7489SMatthew Knepley   for (p = pStart; p < pEnd; ++p) {
76590fdc7489SMatthew Knepley     PetscInt  uval   = 0;
76600fdc7489SMatthew Knepley     PetscBool marked = PETSC_FALSE;
76610fdc7489SMatthew Knepley 
76620fdc7489SMatthew Knepley     for (l = 0, m = 0; l < Nl; ++l) {
76630fdc7489SMatthew Knepley       DMLabel  label;
76640649b39aSStefano Zampini       PetscInt val, defval, loc, nv;
76650fdc7489SMatthew Knepley 
76660fdc7489SMatthew Knepley       if (!active[l]) continue;
76679566063dSJacob Faibussowitsch       PetscCall(DMGetLabelByNum(dm, l, &label));
76689566063dSJacob Faibussowitsch       PetscCall(DMLabelGetValue(label, p, &val));
76699566063dSJacob Faibussowitsch       PetscCall(DMLabelGetDefaultValue(label, &defval));
76709371c9d4SSatish Balay       if (val == defval) {
76719371c9d4SSatish Balay         ++m;
76729371c9d4SSatish Balay         continue;
76739371c9d4SSatish Balay       }
76740649b39aSStefano Zampini       nv     = ul->offsets[m + 1] - ul->offsets[m];
76750fdc7489SMatthew Knepley       marked = PETSC_TRUE;
76769566063dSJacob Faibussowitsch       PetscCall(PetscFindInt(val, nv, &ul->values[ul->offsets[m]], &loc));
767763a3b9bcSJacob Faibussowitsch       PetscCheck(loc >= 0, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Label value %" PetscInt_FMT " not found in compression array", val);
76780fdc7489SMatthew Knepley       uval += (loc + 1) << ul->bits[m];
76790fdc7489SMatthew Knepley       ++m;
76800fdc7489SMatthew Knepley     }
76819566063dSJacob Faibussowitsch     if (marked) PetscCall(DMLabelSetValue(ul->label, p, uval));
76820fdc7489SMatthew Knepley   }
76839566063dSJacob Faibussowitsch   PetscCall(PetscFree(active));
76840fdc7489SMatthew Knepley   *universal = ul;
76853ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
76860fdc7489SMatthew Knepley }
76870fdc7489SMatthew Knepley 
7688d71ae5a4SJacob Faibussowitsch PetscErrorCode DMUniversalLabelDestroy(DMUniversalLabel *universal)
7689d71ae5a4SJacob Faibussowitsch {
76900fdc7489SMatthew Knepley   PetscInt l;
76910fdc7489SMatthew Knepley 
76920fdc7489SMatthew Knepley   PetscFunctionBegin;
76939566063dSJacob Faibussowitsch   for (l = 0; l < (*universal)->Nl; ++l) PetscCall(PetscFree((*universal)->names[l]));
76949566063dSJacob Faibussowitsch   PetscCall(DMLabelDestroy(&(*universal)->label));
76959566063dSJacob Faibussowitsch   PetscCall(PetscFree5((*universal)->names, (*universal)->indices, (*universal)->offsets, (*universal)->bits, (*universal)->masks));
76969566063dSJacob Faibussowitsch   PetscCall(PetscFree((*universal)->values));
76979566063dSJacob Faibussowitsch   PetscCall(PetscFree(*universal));
76980fdc7489SMatthew Knepley   *universal = NULL;
76993ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
77000fdc7489SMatthew Knepley }
77010fdc7489SMatthew Knepley 
7702d71ae5a4SJacob Faibussowitsch PetscErrorCode DMUniversalLabelGetLabel(DMUniversalLabel ul, DMLabel *ulabel)
7703d71ae5a4SJacob Faibussowitsch {
77040fdc7489SMatthew Knepley   PetscFunctionBegin;
77054f572ea9SToby Isaac   PetscAssertPointer(ulabel, 2);
77060fdc7489SMatthew Knepley   *ulabel = ul->label;
77073ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
77080fdc7489SMatthew Knepley }
77090fdc7489SMatthew Knepley 
7710d71ae5a4SJacob Faibussowitsch PetscErrorCode DMUniversalLabelCreateLabels(DMUniversalLabel ul, PetscBool preserveOrder, DM dm)
7711d71ae5a4SJacob Faibussowitsch {
77120fdc7489SMatthew Knepley   PetscInt Nl = ul->Nl, l;
77130fdc7489SMatthew Knepley 
77140fdc7489SMatthew Knepley   PetscFunctionBegin;
7715064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(dm, DM_CLASSID, 3);
77160fdc7489SMatthew Knepley   for (l = 0; l < Nl; ++l) {
77179566063dSJacob Faibussowitsch     if (preserveOrder) PetscCall(DMCreateLabelAtIndex(dm, ul->indices[l], ul->names[l]));
77189566063dSJacob Faibussowitsch     else PetscCall(DMCreateLabel(dm, ul->names[l]));
77190fdc7489SMatthew Knepley   }
77200fdc7489SMatthew Knepley   if (preserveOrder) {
77210fdc7489SMatthew Knepley     for (l = 0; l < ul->Nl; ++l) {
77220fdc7489SMatthew Knepley       const char *name;
77230fdc7489SMatthew Knepley       PetscBool   match;
77240fdc7489SMatthew Knepley 
77259566063dSJacob Faibussowitsch       PetscCall(DMGetLabelName(dm, ul->indices[l], &name));
77269566063dSJacob Faibussowitsch       PetscCall(PetscStrcmp(name, ul->names[l], &match));
772763a3b9bcSJacob Faibussowitsch       PetscCheck(match, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Label %" PetscInt_FMT " name %s does not match new name %s", l, name, ul->names[l]);
77280fdc7489SMatthew Knepley     }
77290fdc7489SMatthew Knepley   }
77303ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
77310fdc7489SMatthew Knepley }
77320fdc7489SMatthew Knepley 
7733d71ae5a4SJacob Faibussowitsch PetscErrorCode DMUniversalLabelSetLabelValue(DMUniversalLabel ul, DM dm, PetscBool useIndex, PetscInt p, PetscInt value)
7734d71ae5a4SJacob Faibussowitsch {
77350fdc7489SMatthew Knepley   PetscInt l;
77360fdc7489SMatthew Knepley 
77370fdc7489SMatthew Knepley   PetscFunctionBegin;
77380fdc7489SMatthew Knepley   for (l = 0; l < ul->Nl; ++l) {
77390fdc7489SMatthew Knepley     DMLabel  label;
77400fdc7489SMatthew Knepley     PetscInt lval = (value & ul->masks[l]) >> ul->bits[l];
77410fdc7489SMatthew Knepley 
77420fdc7489SMatthew Knepley     if (lval) {
77439566063dSJacob Faibussowitsch       if (useIndex) PetscCall(DMGetLabelByNum(dm, ul->indices[l], &label));
77449566063dSJacob Faibussowitsch       else PetscCall(DMGetLabel(dm, ul->names[l], &label));
77459566063dSJacob Faibussowitsch       PetscCall(DMLabelSetValue(label, p, ul->values[ul->offsets[l] + lval - 1]));
77460fdc7489SMatthew Knepley     }
77470fdc7489SMatthew Knepley   }
77483ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
77490fdc7489SMatthew Knepley }
7750a8fb8f29SToby Isaac 
7751a8fb8f29SToby Isaac /*@
7752bb7acecfSBarry Smith   DMGetCoarseDM - Get the coarse `DM`from which this `DM` was obtained by refinement
7753bb7acecfSBarry Smith 
775420f4b53cSBarry Smith   Not Collective
7755a8fb8f29SToby Isaac 
7756a8fb8f29SToby Isaac   Input Parameter:
7757bb7acecfSBarry Smith . dm - The `DM` object
7758a8fb8f29SToby Isaac 
7759a8fb8f29SToby Isaac   Output Parameter:
7760bb7acecfSBarry Smith . cdm - The coarse `DM`
7761a8fb8f29SToby Isaac 
7762a8fb8f29SToby Isaac   Level: intermediate
7763a8fb8f29SToby Isaac 
77641cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetCoarseDM()`, `DMCoarsen()`
7765a8fb8f29SToby Isaac @*/
7766d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetCoarseDM(DM dm, DM *cdm)
7767d71ae5a4SJacob Faibussowitsch {
7768a8fb8f29SToby Isaac   PetscFunctionBegin;
7769a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
77704f572ea9SToby Isaac   PetscAssertPointer(cdm, 2);
7771a8fb8f29SToby Isaac   *cdm = dm->coarseMesh;
77723ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7773a8fb8f29SToby Isaac }
7774a8fb8f29SToby Isaac 
7775a8fb8f29SToby Isaac /*@
7776bb7acecfSBarry Smith   DMSetCoarseDM - Set the coarse `DM` from which this `DM` was obtained by refinement
7777a8fb8f29SToby Isaac 
7778a8fb8f29SToby Isaac   Input Parameters:
7779bb7acecfSBarry Smith + dm  - The `DM` object
7780bb7acecfSBarry Smith - cdm - The coarse `DM`
7781a8fb8f29SToby Isaac 
7782a8fb8f29SToby Isaac   Level: intermediate
7783a8fb8f29SToby Isaac 
7784bb7acecfSBarry Smith   Note:
7785bb7acecfSBarry Smith   Normally this is set automatically by `DMRefine()`
7786bb7acecfSBarry Smith 
77871cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetCoarseDM()`, `DMCoarsen()`, `DMSetRefine()`, `DMSetFineDM()`
7788a8fb8f29SToby Isaac @*/
7789d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetCoarseDM(DM dm, DM cdm)
7790d71ae5a4SJacob Faibussowitsch {
7791a8fb8f29SToby Isaac   PetscFunctionBegin;
7792a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7793a8fb8f29SToby Isaac   if (cdm) PetscValidHeaderSpecific(cdm, DM_CLASSID, 2);
779489d734beSBarry Smith   if (dm == cdm) cdm = NULL;
77959566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)cdm));
77969566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&dm->coarseMesh));
7797a8fb8f29SToby Isaac   dm->coarseMesh = cdm;
77983ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7799a8fb8f29SToby Isaac }
7800a8fb8f29SToby Isaac 
780188bdff64SToby Isaac /*@
7802bb7acecfSBarry Smith   DMGetFineDM - Get the fine mesh from which this `DM` was obtained by coarsening
780388bdff64SToby Isaac 
780488bdff64SToby Isaac   Input Parameter:
7805bb7acecfSBarry Smith . dm - The `DM` object
780688bdff64SToby Isaac 
780788bdff64SToby Isaac   Output Parameter:
7808bb7acecfSBarry Smith . fdm - The fine `DM`
780988bdff64SToby Isaac 
781088bdff64SToby Isaac   Level: intermediate
781188bdff64SToby Isaac 
78121cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMSetFineDM()`, `DMCoarsen()`, `DMRefine()`
781388bdff64SToby Isaac @*/
7814d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetFineDM(DM dm, DM *fdm)
7815d71ae5a4SJacob Faibussowitsch {
781688bdff64SToby Isaac   PetscFunctionBegin;
781788bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
78184f572ea9SToby Isaac   PetscAssertPointer(fdm, 2);
781988bdff64SToby Isaac   *fdm = dm->fineMesh;
78203ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
782188bdff64SToby Isaac }
782288bdff64SToby Isaac 
782388bdff64SToby Isaac /*@
7824bb7acecfSBarry Smith   DMSetFineDM - Set the fine mesh from which this was obtained by coarsening
782588bdff64SToby Isaac 
782688bdff64SToby Isaac   Input Parameters:
7827bb7acecfSBarry Smith + dm  - The `DM` object
7828bb7acecfSBarry Smith - fdm - The fine `DM`
782988bdff64SToby Isaac 
7830bb7acecfSBarry Smith   Level: developer
783188bdff64SToby Isaac 
7832bb7acecfSBarry Smith   Note:
7833bb7acecfSBarry Smith   Normally this is set automatically by `DMCoarsen()`
7834bb7acecfSBarry Smith 
78351cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMGetFineDM()`, `DMCoarsen()`, `DMRefine()`
783688bdff64SToby Isaac @*/
7837d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetFineDM(DM dm, DM fdm)
7838d71ae5a4SJacob Faibussowitsch {
783988bdff64SToby Isaac   PetscFunctionBegin;
784088bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
784188bdff64SToby Isaac   if (fdm) PetscValidHeaderSpecific(fdm, DM_CLASSID, 2);
784289d734beSBarry Smith   if (dm == fdm) fdm = NULL;
78439566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)fdm));
78449566063dSJacob Faibussowitsch   PetscCall(DMDestroy(&dm->fineMesh));
784588bdff64SToby Isaac   dm->fineMesh = fdm;
78463ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
784788bdff64SToby Isaac }
784888bdff64SToby Isaac 
7849a6ba4734SToby Isaac /*@C
7850bb7acecfSBarry Smith   DMAddBoundary - Add a boundary condition to a model represented by a `DM`
7851a6ba4734SToby Isaac 
785220f4b53cSBarry Smith   Collective
7853783e2ec8SMatthew G. Knepley 
7854a6ba4734SToby Isaac   Input Parameters:
7855bb7acecfSBarry Smith + dm       - The `DM`, with a `PetscDS` that matches the problem being constrained
7856bb7acecfSBarry Smith . type     - The type of condition, e.g. `DM_BC_ESSENTIAL_ANALYTIC`, `DM_BC_ESSENTIAL_FIELD` (Dirichlet), or `DM_BC_NATURAL` (Neumann)
7857a6ba4734SToby Isaac . name     - The BC name
785845480ffeSMatthew G. Knepley . label    - The label defining constrained points
7859bb7acecfSBarry Smith . Nv       - The number of `DMLabel` values for constrained points
786045480ffeSMatthew G. Knepley . values   - An array of values for constrained points
7861a6ba4734SToby Isaac . field    - The field to constrain
786245480ffeSMatthew G. Knepley . Nc       - The number of constrained field components (0 will constrain all fields)
7863a6ba4734SToby Isaac . comps    - An array of constrained component numbers
7864a6ba4734SToby Isaac . bcFunc   - A pointwise function giving boundary values
786556cf3b9cSMatthew G. Knepley . bcFunc_t - A pointwise function giving the time deriative of the boundary values, or NULL
7866a6ba4734SToby Isaac - ctx      - An optional user context for bcFunc
7867a6ba4734SToby Isaac 
786845480ffeSMatthew G. Knepley   Output Parameter:
786945480ffeSMatthew G. Knepley . bd - (Optional) Boundary number
787045480ffeSMatthew G. Knepley 
7871a6ba4734SToby Isaac   Options Database Keys:
7872a6ba4734SToby Isaac + -bc_<boundary name> <num>      - Overrides the boundary ids
7873a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components
7874a6ba4734SToby Isaac 
787520f4b53cSBarry Smith   Level: intermediate
787620f4b53cSBarry Smith 
7877bb7acecfSBarry Smith   Notes:
787837fdd005SBarry Smith   Both bcFunc abd bcFunc_t will depend on the boundary condition type. If the type if `DM_BC_ESSENTIAL`, then the calling sequence is\:
787956cf3b9cSMatthew G. Knepley 
788020f4b53cSBarry Smith $ void bcFunc(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar bcval[])
788156cf3b9cSMatthew G. Knepley 
7882a4e35b19SJacob Faibussowitsch   If the type is `DM_BC_ESSENTIAL_FIELD` or other _FIELD value, then the calling sequence is\:
788356cf3b9cSMatthew G. Knepley 
788420f4b53cSBarry Smith .vb
788520f4b53cSBarry Smith   void bcFunc(PetscInt dim, PetscInt Nf, PetscInt NfAux,
788620f4b53cSBarry Smith               const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[],
788720f4b53cSBarry Smith               const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[],
788820f4b53cSBarry Smith               PetscReal time, const PetscReal x[], PetscScalar bcval[])
788920f4b53cSBarry Smith .ve
789056cf3b9cSMatthew G. Knepley + dim - the spatial dimension
789156cf3b9cSMatthew G. Knepley . Nf - the number of fields
789256cf3b9cSMatthew G. Knepley . uOff - the offset into u[] and u_t[] for each field
789356cf3b9cSMatthew G. Knepley . uOff_x - the offset into u_x[] for each field
789456cf3b9cSMatthew G. Knepley . u - each field evaluated at the current point
789556cf3b9cSMatthew G. Knepley . u_t - the time derivative of each field evaluated at the current point
789656cf3b9cSMatthew G. Knepley . u_x - the gradient of each field evaluated at the current point
789756cf3b9cSMatthew G. Knepley . aOff - the offset into a[] and a_t[] for each auxiliary field
789856cf3b9cSMatthew G. Knepley . aOff_x - the offset into a_x[] for each auxiliary field
789956cf3b9cSMatthew G. Knepley . a - each auxiliary field evaluated at the current point
790056cf3b9cSMatthew G. Knepley . a_t - the time derivative of each auxiliary field evaluated at the current point
790156cf3b9cSMatthew G. Knepley . a_x - the gradient of auxiliary each field evaluated at the current point
790256cf3b9cSMatthew G. Knepley . t - current time
790356cf3b9cSMatthew G. Knepley . x - coordinates of the current point
790456cf3b9cSMatthew G. Knepley . numConstants - number of constant parameters
790556cf3b9cSMatthew G. Knepley . constants - constant parameters
790656cf3b9cSMatthew G. Knepley - bcval - output values at the current point
790756cf3b9cSMatthew G. Knepley 
79081cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DSGetBoundary()`, `PetscDSAddBoundary()`
7909a6ba4734SToby Isaac @*/
7910d71ae5a4SJacob Faibussowitsch PetscErrorCode DMAddBoundary(DM dm, DMBoundaryConditionType type, const char name[], DMLabel label, PetscInt Nv, const PetscInt values[], PetscInt field, PetscInt Nc, const PetscInt comps[], void (*bcFunc)(void), void (*bcFunc_t)(void), void *ctx, PetscInt *bd)
7911d71ae5a4SJacob Faibussowitsch {
7912e5e52638SMatthew G. Knepley   PetscDS ds;
7913a6ba4734SToby Isaac 
7914a6ba4734SToby Isaac   PetscFunctionBegin;
7915a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7916783e2ec8SMatthew G. Knepley   PetscValidLogicalCollectiveEnum(dm, type, 2);
791745480ffeSMatthew G. Knepley   PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 4);
791845480ffeSMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, Nv, 5);
791945480ffeSMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, field, 7);
792045480ffeSMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, Nc, 8);
792101a5d20dSJed Brown   PetscCheck(!dm->localSection, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Cannot add boundary to DM after creating local section");
79229566063dSJacob Faibussowitsch   PetscCall(DMGetDS(dm, &ds));
7923799db056SMatthew G. Knepley   /* Complete label */
7924799db056SMatthew G. Knepley   if (label) {
7925799db056SMatthew G. Knepley     PetscObject  obj;
7926799db056SMatthew G. Knepley     PetscClassId id;
7927799db056SMatthew G. Knepley 
7928799db056SMatthew G. Knepley     PetscCall(DMGetField(dm, field, NULL, &obj));
7929799db056SMatthew G. Knepley     PetscCall(PetscObjectGetClassId(obj, &id));
7930799db056SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
7931799db056SMatthew G. Knepley       DM plex;
7932799db056SMatthew G. Knepley 
7933799db056SMatthew G. Knepley       PetscCall(DMConvert(dm, DMPLEX, &plex));
7934799db056SMatthew G. Knepley       if (plex) PetscCall(DMPlexLabelComplete(plex, label));
7935799db056SMatthew G. Knepley       PetscCall(DMDestroy(&plex));
7936799db056SMatthew G. Knepley     }
7937799db056SMatthew G. Knepley   }
79389566063dSJacob Faibussowitsch   PetscCall(PetscDSAddBoundary(ds, type, name, label, Nv, values, field, Nc, comps, bcFunc, bcFunc_t, ctx, bd));
79393ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7940a6ba4734SToby Isaac }
7941a6ba4734SToby Isaac 
794245480ffeSMatthew G. Knepley /* TODO Remove this since now the structures are the same */
7943d71ae5a4SJacob Faibussowitsch static PetscErrorCode DMPopulateBoundary(DM dm)
7944d71ae5a4SJacob Faibussowitsch {
7945e5e52638SMatthew G. Knepley   PetscDS     ds;
7946dff059c6SToby Isaac   DMBoundary *lastnext;
7947e6f8dbb6SToby Isaac   DSBoundary  dsbound;
7948e6f8dbb6SToby Isaac 
7949e6f8dbb6SToby Isaac   PetscFunctionBegin;
79509566063dSJacob Faibussowitsch   PetscCall(DMGetDS(dm, &ds));
7951e5e52638SMatthew G. Knepley   dsbound = ds->boundary;
795247a1f5adSToby Isaac   if (dm->boundary) {
795347a1f5adSToby Isaac     DMBoundary next = dm->boundary;
795447a1f5adSToby Isaac 
795547a1f5adSToby Isaac     /* quick check to see if the PetscDS has changed */
79563ba16761SJacob Faibussowitsch     if (next->dsboundary == dsbound) PetscFunctionReturn(PETSC_SUCCESS);
795747a1f5adSToby Isaac     /* the PetscDS has changed: tear down and rebuild */
795847a1f5adSToby Isaac     while (next) {
795947a1f5adSToby Isaac       DMBoundary b = next;
796047a1f5adSToby Isaac 
796147a1f5adSToby Isaac       next = b->next;
79629566063dSJacob Faibussowitsch       PetscCall(PetscFree(b));
7963a6ba4734SToby Isaac     }
796447a1f5adSToby Isaac     dm->boundary = NULL;
7965a6ba4734SToby Isaac   }
796647a1f5adSToby Isaac 
7967dff059c6SToby Isaac   lastnext = &(dm->boundary);
7968e6f8dbb6SToby Isaac   while (dsbound) {
7969e6f8dbb6SToby Isaac     DMBoundary dmbound;
7970e6f8dbb6SToby Isaac 
79719566063dSJacob Faibussowitsch     PetscCall(PetscNew(&dmbound));
7972e6f8dbb6SToby Isaac     dmbound->dsboundary = dsbound;
797345480ffeSMatthew G. Knepley     dmbound->label      = dsbound->label;
797447a1f5adSToby Isaac     /* push on the back instead of the front so that it is in the same order as in the PetscDS */
7975dff059c6SToby Isaac     *lastnext = dmbound;
7976dff059c6SToby Isaac     lastnext  = &(dmbound->next);
7977dff059c6SToby Isaac     dsbound   = dsbound->next;
7978a6ba4734SToby Isaac   }
79793ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
7980a6ba4734SToby Isaac }
7981a6ba4734SToby Isaac 
7982bb7acecfSBarry Smith /* TODO: missing manual page */
7983d71ae5a4SJacob Faibussowitsch PetscErrorCode DMIsBoundaryPoint(DM dm, PetscInt point, PetscBool *isBd)
7984d71ae5a4SJacob Faibussowitsch {
7985b95f2879SToby Isaac   DMBoundary b;
7986a6ba4734SToby Isaac 
7987a6ba4734SToby Isaac   PetscFunctionBegin;
7988a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
79894f572ea9SToby Isaac   PetscAssertPointer(isBd, 3);
7990a6ba4734SToby Isaac   *isBd = PETSC_FALSE;
79919566063dSJacob Faibussowitsch   PetscCall(DMPopulateBoundary(dm));
7992b95f2879SToby Isaac   b = dm->boundary;
7993a6ba4734SToby Isaac   while (b && !(*isBd)) {
7994e6f8dbb6SToby Isaac     DMLabel    label = b->label;
7995e6f8dbb6SToby Isaac     DSBoundary dsb   = b->dsboundary;
7996a6ba4734SToby Isaac     PetscInt   i;
7997a6ba4734SToby Isaac 
799845480ffeSMatthew G. Knepley     if (label) {
79999566063dSJacob Faibussowitsch       for (i = 0; i < dsb->Nv && !(*isBd); ++i) PetscCall(DMLabelStratumHasPoint(label, dsb->values[i], point, isBd));
8000a6ba4734SToby Isaac     }
8001a6ba4734SToby Isaac     b = b->next;
8002a6ba4734SToby Isaac   }
80033ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8004a6ba4734SToby Isaac }
80054d6f44ffSToby Isaac 
80064d6f44ffSToby Isaac /*@C
8007bb7acecfSBarry Smith   DMProjectFunction - This projects the given function into the function space provided by a `DM`, putting the coefficients in a global vector.
8008a6e0b375SMatthew G. Knepley 
800920f4b53cSBarry Smith   Collective
80104d6f44ffSToby Isaac 
80114d6f44ffSToby Isaac   Input Parameters:
8012bb7acecfSBarry Smith + dm    - The `DM`
80130709b2feSToby Isaac . time  - The time
80144d6f44ffSToby Isaac . funcs - The coordinate functions to evaluate, one per field
80154d6f44ffSToby Isaac . ctxs  - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
80164d6f44ffSToby Isaac - mode  - The insertion mode for values
80174d6f44ffSToby Isaac 
80184d6f44ffSToby Isaac   Output Parameter:
80194d6f44ffSToby Isaac . X - vector
80204d6f44ffSToby Isaac 
802120f4b53cSBarry Smith   Calling sequence of `funcs`:
80224d6f44ffSToby Isaac + dim  - The spatial dimension
80238ec8862eSJed Brown . time - The time at which to sample
80244d6f44ffSToby Isaac . x    - The coordinates
802577b739a6SMatthew Knepley . Nc   - The number of components
80264d6f44ffSToby Isaac . u    - The output field values
80274d6f44ffSToby Isaac - ctx  - optional user-defined function context
80284d6f44ffSToby Isaac 
80294d6f44ffSToby Isaac   Level: developer
80304d6f44ffSToby Isaac 
8031bb7acecfSBarry Smith   Developer Notes:
8032bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8033bb7acecfSBarry Smith 
8034bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8035bb7acecfSBarry Smith 
80361cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunctionLocal()`, `DMProjectFunctionLabel()`, `DMComputeL2Diff()`
80374d6f44ffSToby Isaac @*/
8038a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFunction(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, void *ctx), void **ctxs, InsertMode mode, Vec X)
8039d71ae5a4SJacob Faibussowitsch {
80404d6f44ffSToby Isaac   Vec localX;
80414d6f44ffSToby Isaac 
80424d6f44ffSToby Isaac   PetscFunctionBegin;
80434d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8044708be2fdSJed Brown   PetscCall(PetscLogEventBegin(DM_ProjectFunction, dm, X, 0, 0));
80459566063dSJacob Faibussowitsch   PetscCall(DMGetLocalVector(dm, &localX));
8046f60fa741SMatthew G. Knepley   PetscCall(VecSet(localX, 0.));
80479566063dSJacob Faibussowitsch   PetscCall(DMProjectFunctionLocal(dm, time, funcs, ctxs, mode, localX));
80489566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalBegin(dm, localX, mode, X));
80499566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalEnd(dm, localX, mode, X));
80509566063dSJacob Faibussowitsch   PetscCall(DMRestoreLocalVector(dm, &localX));
8051708be2fdSJed Brown   PetscCall(PetscLogEventEnd(DM_ProjectFunction, dm, X, 0, 0));
80523ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
80534d6f44ffSToby Isaac }
80544d6f44ffSToby Isaac 
8055a6e0b375SMatthew G. Knepley /*@C
8056bb7acecfSBarry Smith   DMProjectFunctionLocal - This projects the given function into the function space provided by a `DM`, putting the coefficients in a local vector.
8057a6e0b375SMatthew G. Knepley 
805820f4b53cSBarry Smith   Not Collective
8059a6e0b375SMatthew G. Knepley 
8060a6e0b375SMatthew G. Knepley   Input Parameters:
8061bb7acecfSBarry Smith + dm    - The `DM`
8062a6e0b375SMatthew G. Knepley . time  - The time
8063a6e0b375SMatthew G. Knepley . funcs - The coordinate functions to evaluate, one per field
8064a6e0b375SMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
8065a6e0b375SMatthew G. Knepley - mode  - The insertion mode for values
8066a6e0b375SMatthew G. Knepley 
8067a6e0b375SMatthew G. Knepley   Output Parameter:
8068a6e0b375SMatthew G. Knepley . localX - vector
8069a6e0b375SMatthew G. Knepley 
807020f4b53cSBarry Smith   Calling sequence of `funcs`:
8071a6e0b375SMatthew G. Knepley + dim  - The spatial dimension
8072a4e35b19SJacob Faibussowitsch . time - The current timestep
8073a6e0b375SMatthew G. Knepley . x    - The coordinates
807477b739a6SMatthew Knepley . Nc   - The number of components
8075a6e0b375SMatthew G. Knepley . u    - The output field values
8076a6e0b375SMatthew G. Knepley - ctx  - optional user-defined function context
8077a6e0b375SMatthew G. Knepley 
8078a6e0b375SMatthew G. Knepley   Level: developer
8079a6e0b375SMatthew G. Knepley 
8080bb7acecfSBarry Smith   Developer Notes:
8081bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8082bb7acecfSBarry Smith 
8083bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8084bb7acecfSBarry Smith 
80851cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMProjectFunctionLabel()`, `DMComputeL2Diff()`
8086a6e0b375SMatthew G. Knepley @*/
8087a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFunctionLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, void *ctx), void **ctxs, InsertMode mode, Vec localX)
8088d71ae5a4SJacob Faibussowitsch {
80894d6f44ffSToby Isaac   PetscFunctionBegin;
80904d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8091064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localX, VEC_CLASSID, 6);
8092fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, projectfunctionlocal, time, funcs, ctxs, mode, localX);
80933ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
80944d6f44ffSToby Isaac }
80954d6f44ffSToby Isaac 
8096a6e0b375SMatthew G. Knepley /*@C
8097bb7acecfSBarry Smith   DMProjectFunctionLabel - This projects the given function into the function space provided by the `DM`, putting the coefficients in a global vector, setting values only for points in the given label.
8098a6e0b375SMatthew G. Knepley 
809920f4b53cSBarry Smith   Collective
8100a6e0b375SMatthew G. Knepley 
8101a6e0b375SMatthew G. Knepley   Input Parameters:
8102bb7acecfSBarry Smith + dm     - The `DM`
8103a6e0b375SMatthew G. Knepley . time   - The time
8104a4e35b19SJacob Faibussowitsch . numIds - The number of ids
8105a4e35b19SJacob Faibussowitsch . ids    - The ids
8106a4e35b19SJacob Faibussowitsch . Nc     - The number of components
8107a4e35b19SJacob Faibussowitsch . comps  - The components
8108bb7acecfSBarry Smith . label  - The `DMLabel` selecting the portion of the mesh for projection
8109a6e0b375SMatthew G. Knepley . funcs  - The coordinate functions to evaluate, one per field
8110bb7acecfSBarry Smith . ctxs   - Optional array of contexts to pass to each coordinate function.  ctxs may be null.
8111a6e0b375SMatthew G. Knepley - mode   - The insertion mode for values
8112a6e0b375SMatthew G. Knepley 
8113a6e0b375SMatthew G. Knepley   Output Parameter:
8114a6e0b375SMatthew G. Knepley . X - vector
8115a6e0b375SMatthew G. Knepley 
811620f4b53cSBarry Smith   Calling sequence of `funcs`:
8117a6e0b375SMatthew G. Knepley + dim  - The spatial dimension
8118a4e35b19SJacob Faibussowitsch . time - The current timestep
8119a6e0b375SMatthew G. Knepley . x    - The coordinates
812077b739a6SMatthew Knepley . Nc   - The number of components
8121a6e0b375SMatthew G. Knepley . u    - The output field values
8122a6e0b375SMatthew G. Knepley - ctx  - optional user-defined function context
8123a6e0b375SMatthew G. Knepley 
8124a6e0b375SMatthew G. Knepley   Level: developer
8125a6e0b375SMatthew G. Knepley 
8126bb7acecfSBarry Smith   Developer Notes:
8127bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8128bb7acecfSBarry Smith 
8129bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8130bb7acecfSBarry Smith 
81311cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMProjectFunctionLocal()`, `DMProjectFunctionLabelLocal()`, `DMComputeL2Diff()`
8132a6e0b375SMatthew G. Knepley @*/
8133a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFunctionLabel(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], PetscErrorCode (**funcs)(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, void *ctx), void **ctxs, InsertMode mode, Vec X)
8134d71ae5a4SJacob Faibussowitsch {
81352c53366bSMatthew G. Knepley   Vec localX;
81362c53366bSMatthew G. Knepley 
81372c53366bSMatthew G. Knepley   PetscFunctionBegin;
81382c53366bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
81399566063dSJacob Faibussowitsch   PetscCall(DMGetLocalVector(dm, &localX));
8140f60fa741SMatthew G. Knepley   PetscCall(VecSet(localX, 0.));
81419566063dSJacob Faibussowitsch   PetscCall(DMProjectFunctionLabelLocal(dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX));
81429566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalBegin(dm, localX, mode, X));
81439566063dSJacob Faibussowitsch   PetscCall(DMLocalToGlobalEnd(dm, localX, mode, X));
81449566063dSJacob Faibussowitsch   PetscCall(DMRestoreLocalVector(dm, &localX));
81453ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
81462c53366bSMatthew G. Knepley }
81472c53366bSMatthew G. Knepley 
8148a6e0b375SMatthew G. Knepley /*@C
8149bb7acecfSBarry Smith   DMProjectFunctionLabelLocal - This projects the given function into the function space provided by the `DM`, putting the coefficients in a local vector, setting values only for points in the given label.
8150a6e0b375SMatthew G. Knepley 
815120f4b53cSBarry Smith   Not Collective
8152a6e0b375SMatthew G. Knepley 
8153a6e0b375SMatthew G. Knepley   Input Parameters:
8154bb7acecfSBarry Smith + dm     - The `DM`
8155a6e0b375SMatthew G. Knepley . time   - The time
8156bb7acecfSBarry Smith . label  - The `DMLabel` selecting the portion of the mesh for projection
8157a4e35b19SJacob Faibussowitsch . numIds - The number of ids
8158a4e35b19SJacob Faibussowitsch . ids    - The ids
8159a4e35b19SJacob Faibussowitsch . Nc     - The number of components
8160a4e35b19SJacob Faibussowitsch . comps  - The components
8161a6e0b375SMatthew G. Knepley . funcs  - The coordinate functions to evaluate, one per field
8162a6e0b375SMatthew G. Knepley . ctxs   - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
8163a6e0b375SMatthew G. Knepley - mode   - The insertion mode for values
8164a6e0b375SMatthew G. Knepley 
8165a6e0b375SMatthew G. Knepley   Output Parameter:
8166a6e0b375SMatthew G. Knepley . localX - vector
8167a6e0b375SMatthew G. Knepley 
816820f4b53cSBarry Smith   Calling sequence of `funcs`:
8169a6e0b375SMatthew G. Knepley + dim  - The spatial dimension
8170a4e35b19SJacob Faibussowitsch . time - The current time
8171a6e0b375SMatthew G. Knepley . x    - The coordinates
817277b739a6SMatthew Knepley . Nc   - The number of components
8173a6e0b375SMatthew G. Knepley . u    - The output field values
8174a6e0b375SMatthew G. Knepley - ctx  - optional user-defined function context
8175a6e0b375SMatthew G. Knepley 
8176a6e0b375SMatthew G. Knepley   Level: developer
8177a6e0b375SMatthew G. Knepley 
8178bb7acecfSBarry Smith   Developer Notes:
8179bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8180bb7acecfSBarry Smith 
8181bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8182bb7acecfSBarry Smith 
81831cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMProjectFunctionLocal()`, `DMProjectFunctionLabel()`, `DMComputeL2Diff()`
8184a6e0b375SMatthew G. Knepley @*/
8185a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFunctionLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], PetscErrorCode (**funcs)(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, void *ctx), void **ctxs, InsertMode mode, Vec localX)
8186d71ae5a4SJacob Faibussowitsch {
81874d6f44ffSToby Isaac   PetscFunctionBegin;
81884d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8189064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localX, VEC_CLASSID, 11);
8190fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, projectfunctionlabellocal, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);
81913ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
81924d6f44ffSToby Isaac }
81932716604bSToby Isaac 
8194a6e0b375SMatthew G. Knepley /*@C
8195bb7acecfSBarry Smith   DMProjectFieldLocal - This projects the given function of the input fields into the function space provided by the `DM`, putting the coefficients in a local vector.
8196a6e0b375SMatthew G. Knepley 
819720f4b53cSBarry Smith   Not Collective
8198a6e0b375SMatthew G. Knepley 
8199a6e0b375SMatthew G. Knepley   Input Parameters:
8200bb7acecfSBarry Smith + dm     - The `DM`
8201a6e0b375SMatthew G. Knepley . time   - The time
820220f4b53cSBarry Smith . localU - The input field vector; may be `NULL` if projection is defined purely by coordinates
8203a6e0b375SMatthew G. Knepley . funcs  - The functions to evaluate, one per field
8204a6e0b375SMatthew G. Knepley - mode   - The insertion mode for values
8205a6e0b375SMatthew G. Knepley 
8206a6e0b375SMatthew G. Knepley   Output Parameter:
8207a6e0b375SMatthew G. Knepley . localX - The output vector
8208a6e0b375SMatthew G. Knepley 
820920f4b53cSBarry Smith   Calling sequence of `funcs`:
8210a6e0b375SMatthew G. Knepley + dim          - The spatial dimension
8211a6e0b375SMatthew G. Knepley . Nf           - The number of input fields
8212a6e0b375SMatthew G. Knepley . NfAux        - The number of input auxiliary fields
8213a6e0b375SMatthew G. Knepley . uOff         - The offset of each field in u[]
8214a6e0b375SMatthew G. Knepley . uOff_x       - The offset of each field in u_x[]
8215a6e0b375SMatthew G. Knepley . u            - The field values at this point in space
8216a6e0b375SMatthew G. Knepley . u_t          - The field time derivative at this point in space (or NULL)
8217a6e0b375SMatthew G. Knepley . u_x          - The field derivatives at this point in space
8218a6e0b375SMatthew G. Knepley . aOff         - The offset of each auxiliary field in u[]
8219a6e0b375SMatthew G. Knepley . aOff_x       - The offset of each auxiliary field in u_x[]
8220a6e0b375SMatthew G. Knepley . a            - The auxiliary field values at this point in space
8221a6e0b375SMatthew G. Knepley . a_t          - The auxiliary field time derivative at this point in space (or NULL)
8222a6e0b375SMatthew G. Knepley . a_x          - The auxiliary field derivatives at this point in space
8223a6e0b375SMatthew G. Knepley . t            - The current time
8224a6e0b375SMatthew G. Knepley . x            - The coordinates of this point
8225a6e0b375SMatthew G. Knepley . numConstants - The number of constants
8226a6e0b375SMatthew G. Knepley . constants    - The value of each constant
8227a6e0b375SMatthew G. Knepley - f            - The value of the function at this point in space
8228a6e0b375SMatthew G. Knepley 
8229bb7acecfSBarry Smith   Note:
8230bb7acecfSBarry Smith   There are three different `DM`s that potentially interact in this function. The output `DM`, dm, specifies the layout of the values calculates by funcs.
8231bb7acecfSBarry Smith   The input `DM`, attached to U, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or
8232bb7acecfSBarry Smith   a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary `DM`, attached to the
8233a6e0b375SMatthew G. Knepley   auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations.
8234a6e0b375SMatthew G. Knepley 
8235a6e0b375SMatthew G. Knepley   Level: intermediate
8236a6e0b375SMatthew G. Knepley 
8237bb7acecfSBarry Smith   Developer Notes:
8238bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8239bb7acecfSBarry Smith 
8240bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8241bb7acecfSBarry Smith 
8242a4e35b19SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMProjectField()`, `DMProjectFieldLabelLocal()`,
8243a4e35b19SJacob Faibussowitsch `DMProjectFunction()`, `DMComputeL2Diff()`
8244a6e0b375SMatthew G. Knepley @*/
8245a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFieldLocal(DM dm, PetscReal time, Vec localU, void (**funcs)(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]), InsertMode mode, Vec localX)
8246d71ae5a4SJacob Faibussowitsch {
82478c6c5593SMatthew G. Knepley   PetscFunctionBegin;
82488c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8249eb8f539aSJed Brown   if (localU) PetscValidHeaderSpecific(localU, VEC_CLASSID, 3);
82508c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localX, VEC_CLASSID, 6);
8251fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, projectfieldlocal, time, localU, funcs, mode, localX);
82523ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
82538c6c5593SMatthew G. Knepley }
82548c6c5593SMatthew G. Knepley 
8255a6e0b375SMatthew G. Knepley /*@C
8256a6e0b375SMatthew G. Knepley   DMProjectFieldLabelLocal - This projects the given function of the input fields into the function space provided, putting the coefficients in a local vector, calculating only over the portion of the domain specified by the label.
8257a6e0b375SMatthew G. Knepley 
825820f4b53cSBarry Smith   Not Collective
8259a6e0b375SMatthew G. Knepley 
8260a6e0b375SMatthew G. Knepley   Input Parameters:
8261bb7acecfSBarry Smith + dm     - The `DM`
8262a6e0b375SMatthew G. Knepley . time   - The time
8263bb7acecfSBarry Smith . label  - The `DMLabel` marking the portion of the domain to output
8264a6e0b375SMatthew G. Knepley . numIds - The number of label ids to use
8265a6e0b375SMatthew G. Knepley . ids    - The label ids to use for marking
8266bb7acecfSBarry Smith . Nc     - The number of components to set in the output, or `PETSC_DETERMINE` for all components
826720f4b53cSBarry Smith . comps  - The components to set in the output, or `NULL` for all components
8268a6e0b375SMatthew G. Knepley . localU - The input field vector
8269a6e0b375SMatthew G. Knepley . funcs  - The functions to evaluate, one per field
8270a6e0b375SMatthew G. Knepley - mode   - The insertion mode for values
8271a6e0b375SMatthew G. Knepley 
8272a6e0b375SMatthew G. Knepley   Output Parameter:
8273a6e0b375SMatthew G. Knepley . localX - The output vector
8274a6e0b375SMatthew G. Knepley 
827520f4b53cSBarry Smith   Calling sequence of `funcs`:
8276a6e0b375SMatthew G. Knepley + dim          - The spatial dimension
8277a6e0b375SMatthew G. Knepley . Nf           - The number of input fields
8278a6e0b375SMatthew G. Knepley . NfAux        - The number of input auxiliary fields
8279a6e0b375SMatthew G. Knepley . uOff         - The offset of each field in u[]
8280a6e0b375SMatthew G. Knepley . uOff_x       - The offset of each field in u_x[]
8281a6e0b375SMatthew G. Knepley . u            - The field values at this point in space
8282a6e0b375SMatthew G. Knepley . u_t          - The field time derivative at this point in space (or NULL)
8283a6e0b375SMatthew G. Knepley . u_x          - The field derivatives at this point in space
8284a6e0b375SMatthew G. Knepley . aOff         - The offset of each auxiliary field in u[]
8285a6e0b375SMatthew G. Knepley . aOff_x       - The offset of each auxiliary field in u_x[]
8286a6e0b375SMatthew G. Knepley . a            - The auxiliary field values at this point in space
8287a6e0b375SMatthew G. Knepley . a_t          - The auxiliary field time derivative at this point in space (or NULL)
8288a6e0b375SMatthew G. Knepley . a_x          - The auxiliary field derivatives at this point in space
8289a6e0b375SMatthew G. Knepley . t            - The current time
8290a6e0b375SMatthew G. Knepley . x            - The coordinates of this point
8291a6e0b375SMatthew G. Knepley . numConstants - The number of constants
8292a6e0b375SMatthew G. Knepley . constants    - The value of each constant
8293a6e0b375SMatthew G. Knepley - f            - The value of the function at this point in space
8294a6e0b375SMatthew G. Knepley 
8295bb7acecfSBarry Smith   Note:
8296bb7acecfSBarry Smith   There are three different `DM`s that potentially interact in this function. The output `DM`, dm, specifies the layout of the values calculates by funcs.
8297bb7acecfSBarry Smith   The input `DM`, attached to localU, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or
8298bb7acecfSBarry Smith   a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary `DM`, attached to the
8299a6e0b375SMatthew G. Knepley   auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations.
8300a6e0b375SMatthew G. Knepley 
8301a6e0b375SMatthew G. Knepley   Level: intermediate
8302a6e0b375SMatthew G. Knepley 
8303bb7acecfSBarry Smith   Developer Notes:
8304bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8305bb7acecfSBarry Smith 
8306bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8307bb7acecfSBarry Smith 
83081cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectField()`, `DMProjectFieldLabel()`, `DMProjectFunction()`, `DMComputeL2Diff()`
8309a6e0b375SMatthew G. Knepley @*/
8310a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFieldLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec localU, void (**funcs)(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]), InsertMode mode, Vec localX)
8311d71ae5a4SJacob Faibussowitsch {
83128c6c5593SMatthew G. Knepley   PetscFunctionBegin;
83138c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8314064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localU, VEC_CLASSID, 8);
8315064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localX, VEC_CLASSID, 11);
8316fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, projectfieldlabellocal, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX);
83173ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
83188c6c5593SMatthew G. Knepley }
83198c6c5593SMatthew G. Knepley 
83202716604bSToby Isaac /*@C
8321d29d7c6eSMatthew G. Knepley   DMProjectFieldLabel - This projects the given function of the input fields into the function space provided, putting the coefficients in a global vector, calculating only over the portion of the domain specified by the label.
8322d29d7c6eSMatthew G. Knepley 
832320f4b53cSBarry Smith   Not Collective
8324d29d7c6eSMatthew G. Knepley 
8325d29d7c6eSMatthew G. Knepley   Input Parameters:
8326bb7acecfSBarry Smith + dm     - The `DM`
8327d29d7c6eSMatthew G. Knepley . time   - The time
8328bb7acecfSBarry Smith . label  - The `DMLabel` marking the portion of the domain to output
8329d29d7c6eSMatthew G. Knepley . numIds - The number of label ids to use
8330d29d7c6eSMatthew G. Knepley . ids    - The label ids to use for marking
8331bb7acecfSBarry Smith . Nc     - The number of components to set in the output, or `PETSC_DETERMINE` for all components
833220f4b53cSBarry Smith . comps  - The components to set in the output, or `NULL` for all components
8333d29d7c6eSMatthew G. Knepley . U      - The input field vector
8334d29d7c6eSMatthew G. Knepley . funcs  - The functions to evaluate, one per field
8335d29d7c6eSMatthew G. Knepley - mode   - The insertion mode for values
8336d29d7c6eSMatthew G. Knepley 
8337d29d7c6eSMatthew G. Knepley   Output Parameter:
8338d29d7c6eSMatthew G. Knepley . X - The output vector
8339d29d7c6eSMatthew G. Knepley 
834020f4b53cSBarry Smith   Calling sequence of `funcs`:
8341d29d7c6eSMatthew G. Knepley + dim          - The spatial dimension
8342d29d7c6eSMatthew G. Knepley . Nf           - The number of input fields
8343d29d7c6eSMatthew G. Knepley . NfAux        - The number of input auxiliary fields
8344d29d7c6eSMatthew G. Knepley . uOff         - The offset of each field in u[]
8345d29d7c6eSMatthew G. Knepley . uOff_x       - The offset of each field in u_x[]
8346d29d7c6eSMatthew G. Knepley . u            - The field values at this point in space
8347d29d7c6eSMatthew G. Knepley . u_t          - The field time derivative at this point in space (or NULL)
8348d29d7c6eSMatthew G. Knepley . u_x          - The field derivatives at this point in space
8349d29d7c6eSMatthew G. Knepley . aOff         - The offset of each auxiliary field in u[]
8350d29d7c6eSMatthew G. Knepley . aOff_x       - The offset of each auxiliary field in u_x[]
8351d29d7c6eSMatthew G. Knepley . a            - The auxiliary field values at this point in space
8352d29d7c6eSMatthew G. Knepley . a_t          - The auxiliary field time derivative at this point in space (or NULL)
8353d29d7c6eSMatthew G. Knepley . a_x          - The auxiliary field derivatives at this point in space
8354d29d7c6eSMatthew G. Knepley . t            - The current time
8355d29d7c6eSMatthew G. Knepley . x            - The coordinates of this point
8356d29d7c6eSMatthew G. Knepley . numConstants - The number of constants
8357d29d7c6eSMatthew G. Knepley . constants    - The value of each constant
8358d29d7c6eSMatthew G. Knepley - f            - The value of the function at this point in space
8359d29d7c6eSMatthew G. Knepley 
8360bb7acecfSBarry Smith   Note:
8361bb7acecfSBarry Smith   There are three different `DM`s that potentially interact in this function. The output `DM`, dm, specifies the layout of the values calculates by funcs.
8362bb7acecfSBarry Smith   The input `DM`, attached to U, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or
8363bb7acecfSBarry Smith   a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary `DM`, attached to the
8364d29d7c6eSMatthew G. Knepley   auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations.
8365d29d7c6eSMatthew G. Knepley 
8366d29d7c6eSMatthew G. Knepley   Level: intermediate
8367d29d7c6eSMatthew G. Knepley 
8368bb7acecfSBarry Smith   Developer Notes:
8369bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8370bb7acecfSBarry Smith 
8371bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8372bb7acecfSBarry Smith 
83731cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectField()`, `DMProjectFieldLabelLocal()`, `DMProjectFunction()`, `DMComputeL2Diff()`
8374d29d7c6eSMatthew G. Knepley @*/
8375a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectFieldLabel(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec U, void (**funcs)(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]), InsertMode mode, Vec X)
8376d71ae5a4SJacob Faibussowitsch {
8377d29d7c6eSMatthew G. Knepley   DM  dmIn;
8378d29d7c6eSMatthew G. Knepley   Vec localU, localX;
8379d29d7c6eSMatthew G. Knepley 
8380d29d7c6eSMatthew G. Knepley   PetscFunctionBegin;
8381d29d7c6eSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8382d29d7c6eSMatthew G. Knepley   PetscCall(VecGetDM(U, &dmIn));
8383d29d7c6eSMatthew G. Knepley   PetscCall(DMGetLocalVector(dmIn, &localU));
8384d29d7c6eSMatthew G. Knepley   PetscCall(DMGetLocalVector(dm, &localX));
8385f60fa741SMatthew G. Knepley   PetscCall(VecSet(localX, 0.));
838672fc1ce5SMatthew G. Knepley   PetscCall(DMGlobalToLocalBegin(dmIn, U, mode, localU));
838772fc1ce5SMatthew G. Knepley   PetscCall(DMGlobalToLocalEnd(dmIn, U, mode, localU));
8388d29d7c6eSMatthew G. Knepley   PetscCall(DMProjectFieldLabelLocal(dm, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX));
8389d29d7c6eSMatthew G. Knepley   PetscCall(DMLocalToGlobalBegin(dm, localX, mode, X));
8390d29d7c6eSMatthew G. Knepley   PetscCall(DMLocalToGlobalEnd(dm, localX, mode, X));
8391d29d7c6eSMatthew G. Knepley   PetscCall(DMRestoreLocalVector(dm, &localX));
8392d29d7c6eSMatthew G. Knepley   PetscCall(DMRestoreLocalVector(dmIn, &localU));
83933ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8394d29d7c6eSMatthew G. Knepley }
8395d29d7c6eSMatthew G. Knepley 
8396d29d7c6eSMatthew G. Knepley /*@C
8397ece3a9fcSMatthew G. Knepley   DMProjectBdFieldLabelLocal - This projects the given function of the input fields into the function space provided, putting the coefficients in a local vector, calculating only over the portion of the domain boundary specified by the label.
8398ece3a9fcSMatthew G. Knepley 
839920f4b53cSBarry Smith   Not Collective
8400ece3a9fcSMatthew G. Knepley 
8401ece3a9fcSMatthew G. Knepley   Input Parameters:
8402bb7acecfSBarry Smith + dm     - The `DM`
8403ece3a9fcSMatthew G. Knepley . time   - The time
8404bb7acecfSBarry Smith . label  - The `DMLabel` marking the portion of the domain boundary to output
8405ece3a9fcSMatthew G. Knepley . numIds - The number of label ids to use
8406ece3a9fcSMatthew G. Knepley . ids    - The label ids to use for marking
8407bb7acecfSBarry Smith . Nc     - The number of components to set in the output, or `PETSC_DETERMINE` for all components
840820f4b53cSBarry Smith . comps  - The components to set in the output, or `NULL` for all components
8409ece3a9fcSMatthew G. Knepley . localU - The input field vector
8410ece3a9fcSMatthew G. Knepley . funcs  - The functions to evaluate, one per field
8411ece3a9fcSMatthew G. Knepley - mode   - The insertion mode for values
8412ece3a9fcSMatthew G. Knepley 
8413ece3a9fcSMatthew G. Knepley   Output Parameter:
8414ece3a9fcSMatthew G. Knepley . localX - The output vector
8415ece3a9fcSMatthew G. Knepley 
841620f4b53cSBarry Smith   Calling sequence of `funcs`:
8417ece3a9fcSMatthew G. Knepley + dim          - The spatial dimension
8418ece3a9fcSMatthew G. Knepley . Nf           - The number of input fields
8419ece3a9fcSMatthew G. Knepley . NfAux        - The number of input auxiliary fields
8420ece3a9fcSMatthew G. Knepley . uOff         - The offset of each field in u[]
8421ece3a9fcSMatthew G. Knepley . uOff_x       - The offset of each field in u_x[]
8422ece3a9fcSMatthew G. Knepley . u            - The field values at this point in space
8423ece3a9fcSMatthew G. Knepley . u_t          - The field time derivative at this point in space (or NULL)
8424ece3a9fcSMatthew G. Knepley . u_x          - The field derivatives at this point in space
8425ece3a9fcSMatthew G. Knepley . aOff         - The offset of each auxiliary field in u[]
8426ece3a9fcSMatthew G. Knepley . aOff_x       - The offset of each auxiliary field in u_x[]
8427ece3a9fcSMatthew G. Knepley . a            - The auxiliary field values at this point in space
8428ece3a9fcSMatthew G. Knepley . a_t          - The auxiliary field time derivative at this point in space (or NULL)
8429ece3a9fcSMatthew G. Knepley . a_x          - The auxiliary field derivatives at this point in space
8430ece3a9fcSMatthew G. Knepley . t            - The current time
8431ece3a9fcSMatthew G. Knepley . x            - The coordinates of this point
8432ece3a9fcSMatthew G. Knepley . n            - The face normal
8433ece3a9fcSMatthew G. Knepley . numConstants - The number of constants
8434ece3a9fcSMatthew G. Knepley . constants    - The value of each constant
8435ece3a9fcSMatthew G. Knepley - f            - The value of the function at this point in space
8436ece3a9fcSMatthew G. Knepley 
8437ece3a9fcSMatthew G. Knepley   Note:
8438bb7acecfSBarry Smith   There are three different `DM`s that potentially interact in this function. The output `DM`, dm, specifies the layout of the values calculates by funcs.
8439bb7acecfSBarry Smith   The input `DM`, attached to U, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or
8440bb7acecfSBarry Smith   a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary `DM`, attached to the
8441ece3a9fcSMatthew G. Knepley   auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations.
8442ece3a9fcSMatthew G. Knepley 
8443ece3a9fcSMatthew G. Knepley   Level: intermediate
8444ece3a9fcSMatthew G. Knepley 
8445bb7acecfSBarry Smith   Developer Notes:
8446bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8447bb7acecfSBarry Smith 
8448bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8449bb7acecfSBarry Smith 
84501cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectField()`, `DMProjectFieldLabelLocal()`, `DMProjectFunction()`, `DMComputeL2Diff()`
8451ece3a9fcSMatthew G. Knepley @*/
8452a4e35b19SJacob Faibussowitsch PetscErrorCode DMProjectBdFieldLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec localU, void (**funcs)(PetscInt dim, PetscInt Nf, PetscInt NfAux, const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], PetscReal t, const PetscReal x[], const PetscReal n[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]), InsertMode mode, Vec localX)
8453d71ae5a4SJacob Faibussowitsch {
8454ece3a9fcSMatthew G. Knepley   PetscFunctionBegin;
8455ece3a9fcSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8456064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localU, VEC_CLASSID, 8);
8457064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(localX, VEC_CLASSID, 11);
8458fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, projectbdfieldlabellocal, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX);
84593ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8460ece3a9fcSMatthew G. Knepley }
8461ece3a9fcSMatthew G. Knepley 
8462ece3a9fcSMatthew G. Knepley /*@C
84632716604bSToby Isaac   DMComputeL2Diff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h.
84642716604bSToby Isaac 
846520f4b53cSBarry Smith   Collective
8466bb7acecfSBarry Smith 
84672716604bSToby Isaac   Input Parameters:
8468bb7acecfSBarry Smith + dm    - The `DM`
84690709b2feSToby Isaac . time  - The time
84702716604bSToby Isaac . funcs - The functions to evaluate for each field component
84712716604bSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
8472574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
84732716604bSToby Isaac 
84742716604bSToby Isaac   Output Parameter:
84752716604bSToby Isaac . diff - The diff ||u - u_h||_2
84762716604bSToby Isaac 
84772716604bSToby Isaac   Level: developer
84782716604bSToby Isaac 
8479bb7acecfSBarry Smith   Developer Notes:
8480bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8481bb7acecfSBarry Smith 
8482bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8483bb7acecfSBarry Smith 
84841cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMComputeL2FieldDiff()`, `DMComputeL2GradientDiff()`
84852716604bSToby Isaac @*/
8486d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeL2Diff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
8487d71ae5a4SJacob Faibussowitsch {
84882716604bSToby Isaac   PetscFunctionBegin;
84892716604bSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8490b698f381SToby Isaac   PetscValidHeaderSpecific(X, VEC_CLASSID, 5);
8491fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, computel2diff, time, funcs, ctxs, X, diff);
84923ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
84932716604bSToby Isaac }
8494b698f381SToby Isaac 
8495b698f381SToby Isaac /*@C
8496b698f381SToby Isaac   DMComputeL2GradientDiff - This function computes the L_2 difference between the gradient of a function u and an FEM interpolant solution grad u_h.
8497b698f381SToby Isaac 
849820f4b53cSBarry Smith   Collective
8499d083f849SBarry Smith 
8500b698f381SToby Isaac   Input Parameters:
8501bb7acecfSBarry Smith + dm    - The `DM`
8502a4e35b19SJacob Faibussowitsch . time  - The time
8503b698f381SToby Isaac . funcs - The gradient functions to evaluate for each field component
8504b698f381SToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
8505574a98acSMatthew G. Knepley . X     - The coefficient vector u_h, a global vector
8506b698f381SToby Isaac - n     - The vector to project along
8507b698f381SToby Isaac 
8508b698f381SToby Isaac   Output Parameter:
8509b698f381SToby Isaac . diff - The diff ||(grad u - grad u_h) . n||_2
8510b698f381SToby Isaac 
8511b698f381SToby Isaac   Level: developer
8512b698f381SToby Isaac 
8513bb7acecfSBarry Smith   Developer Notes:
8514bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8515bb7acecfSBarry Smith 
8516bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8517bb7acecfSBarry Smith 
85181cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMComputeL2Diff()`, `DMComputeL2FieldDiff()`
8519b698f381SToby Isaac @*/
8520d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeL2GradientDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal[], const PetscReal[], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, const PetscReal n[], PetscReal *diff)
8521d71ae5a4SJacob Faibussowitsch {
8522b698f381SToby Isaac   PetscFunctionBegin;
8523b698f381SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8524b698f381SToby Isaac   PetscValidHeaderSpecific(X, VEC_CLASSID, 5);
8525fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, computel2gradientdiff, time, funcs, ctxs, X, n, diff);
85263ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8527b698f381SToby Isaac }
8528b698f381SToby Isaac 
85292a16baeaSToby Isaac /*@C
85302a16baeaSToby Isaac   DMComputeL2FieldDiff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h, separated into field components.
85312a16baeaSToby Isaac 
853220f4b53cSBarry Smith   Collective
8533d083f849SBarry Smith 
85342a16baeaSToby Isaac   Input Parameters:
8535bb7acecfSBarry Smith + dm    - The `DM`
85362a16baeaSToby Isaac . time  - The time
85372a16baeaSToby Isaac . funcs - The functions to evaluate for each field component
85382a16baeaSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
8539574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
85402a16baeaSToby Isaac 
85412a16baeaSToby Isaac   Output Parameter:
85422a16baeaSToby Isaac . diff - The array of differences, ||u^f - u^f_h||_2
85432a16baeaSToby Isaac 
85442a16baeaSToby Isaac   Level: developer
85452a16baeaSToby Isaac 
8546bb7acecfSBarry Smith   Developer Notes:
8547bb7acecfSBarry Smith   This API is specific to only particular usage of `DM`
8548bb7acecfSBarry Smith 
8549bb7acecfSBarry Smith   The notes need to provide some information about what has to be provided to the `DM` to be able to perform the computation.
8550bb7acecfSBarry Smith 
855142747ad1SJacob Faibussowitsch .seealso: [](ch_dmbase), `DM`, `DMProjectFunction()`, `DMComputeL2GradientDiff()`
85522a16baeaSToby Isaac @*/
8553d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeL2FieldDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal diff[])
8554d71ae5a4SJacob Faibussowitsch {
85552a16baeaSToby Isaac   PetscFunctionBegin;
85562a16baeaSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
85572a16baeaSToby Isaac   PetscValidHeaderSpecific(X, VEC_CLASSID, 5);
8558fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, computel2fielddiff, time, funcs, ctxs, X, diff);
85593ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
85602a16baeaSToby Isaac }
85612a16baeaSToby Isaac 
8562df0b854cSToby Isaac /*@C
8563bb7acecfSBarry Smith   DMGetNeighbors - Gets an array containing the MPI ranks of all the processes neighbors
8564502a2867SDave May 
8565502a2867SDave May   Not Collective
8566502a2867SDave May 
8567502a2867SDave May   Input Parameter:
8568bb7acecfSBarry Smith . dm - The `DM`
8569502a2867SDave May 
85700a19bb7dSprj-   Output Parameters:
85710a19bb7dSprj- + nranks - the number of neighbours
85720a19bb7dSprj- - ranks  - the neighbors ranks
8573502a2867SDave May 
85749bdbcad8SBarry Smith   Level: beginner
85759bdbcad8SBarry Smith 
8576bb7acecfSBarry Smith   Note:
8577bb7acecfSBarry Smith   Do not free the array, it is freed when the `DM` is destroyed.
8578502a2867SDave May 
85791cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDAGetNeighbors()`, `PetscSFGetRootRanks()`
8580502a2867SDave May @*/
8581d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNeighbors(DM dm, PetscInt *nranks, const PetscMPIInt *ranks[])
8582d71ae5a4SJacob Faibussowitsch {
8583502a2867SDave May   PetscFunctionBegin;
8584502a2867SDave May   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8585fa1e479aSStefano Zampini   PetscUseTypeMethod(dm, getneighbors, nranks, ranks);
85863ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8587502a2867SDave May }
8588502a2867SDave May 
8589531c7667SBarry Smith #include <petsc/private/matimpl.h> /* Needed because of coloring->ctype below */
8590531c7667SBarry Smith 
8591531c7667SBarry Smith /*
8592531c7667SBarry Smith     Converts the input vector to a ghosted vector and then calls the standard coloring code.
85932b6f951bSStefano Zampini     This must be a different function because it requires DM which is not defined in the Mat library
8594531c7667SBarry Smith */
859566976f2fSJacob Faibussowitsch static PetscErrorCode MatFDColoringApply_AIJDM(Mat J, MatFDColoring coloring, Vec x1, void *sctx)
8596d71ae5a4SJacob Faibussowitsch {
8597531c7667SBarry Smith   PetscFunctionBegin;
8598531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
8599531c7667SBarry Smith     Vec x1local;
8600531c7667SBarry Smith     DM  dm;
86019566063dSJacob Faibussowitsch     PetscCall(MatGetDM(J, &dm));
86027a8be351SBarry Smith     PetscCheck(dm, PetscObjectComm((PetscObject)J), PETSC_ERR_ARG_INCOMP, "IS_COLORING_LOCAL requires a DM");
86039566063dSJacob Faibussowitsch     PetscCall(DMGetLocalVector(dm, &x1local));
86049566063dSJacob Faibussowitsch     PetscCall(DMGlobalToLocalBegin(dm, x1, INSERT_VALUES, x1local));
86059566063dSJacob Faibussowitsch     PetscCall(DMGlobalToLocalEnd(dm, x1, INSERT_VALUES, x1local));
8606531c7667SBarry Smith     x1 = x1local;
8607531c7667SBarry Smith   }
86089566063dSJacob Faibussowitsch   PetscCall(MatFDColoringApply_AIJ(J, coloring, x1, sctx));
8609531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
8610531c7667SBarry Smith     DM dm;
86119566063dSJacob Faibussowitsch     PetscCall(MatGetDM(J, &dm));
86129566063dSJacob Faibussowitsch     PetscCall(DMRestoreLocalVector(dm, &x1));
8613531c7667SBarry Smith   }
86143ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8615531c7667SBarry Smith }
8616531c7667SBarry Smith 
8617531c7667SBarry Smith /*@
8618bb7acecfSBarry Smith   MatFDColoringUseDM - allows a `MatFDColoring` object to use the `DM` associated with the matrix to compute a `IS_COLORING_LOCAL` coloring
8619531c7667SBarry Smith 
8620a4e35b19SJacob Faibussowitsch   Input Parameters:
8621a4e35b19SJacob Faibussowitsch + coloring   - The matrix to get the `DM` from
8622a4e35b19SJacob Faibussowitsch - fdcoloring - the `MatFDColoring` object
8623531c7667SBarry Smith 
86249bdbcad8SBarry Smith   Level: advanced
86259bdbcad8SBarry Smith 
862660225df5SJacob Faibussowitsch   Developer Notes:
8627bb7acecfSBarry Smith   this routine exists because the PETSc `Mat` library does not know about the `DM` objects
8628531c7667SBarry Smith 
86291cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `MatFDColoring`, `MatFDColoringCreate()`, `ISColoringType`
8630531c7667SBarry Smith @*/
8631d71ae5a4SJacob Faibussowitsch PetscErrorCode MatFDColoringUseDM(Mat coloring, MatFDColoring fdcoloring)
8632d71ae5a4SJacob Faibussowitsch {
8633531c7667SBarry Smith   PetscFunctionBegin;
8634531c7667SBarry Smith   coloring->ops->fdcoloringapply = MatFDColoringApply_AIJDM;
86353ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8636531c7667SBarry Smith }
86378320bc6fSPatrick Sanan 
86388320bc6fSPatrick Sanan /*@
8639bb7acecfSBarry Smith   DMGetCompatibility - determine if two `DM`s are compatible
86408320bc6fSPatrick Sanan 
86418320bc6fSPatrick Sanan   Collective
86428320bc6fSPatrick Sanan 
86438320bc6fSPatrick Sanan   Input Parameters:
8644bb7acecfSBarry Smith + dm1 - the first `DM`
8645bb7acecfSBarry Smith - dm2 - the second `DM`
86468320bc6fSPatrick Sanan 
86478320bc6fSPatrick Sanan   Output Parameters:
8648bb7acecfSBarry Smith + compatible - whether or not the two `DM`s are compatible
8649bb7acecfSBarry Smith - set        - whether or not the compatible value was actually determined and set
86508320bc6fSPatrick Sanan 
865120f4b53cSBarry Smith   Level: advanced
865220f4b53cSBarry Smith 
86538320bc6fSPatrick Sanan   Notes:
8654bb7acecfSBarry Smith   Two `DM`s are deemed compatible if they represent the same parallel decomposition
86553d862458SPatrick Sanan   of the same topology. This implies that the section (field data) on one
86568320bc6fSPatrick Sanan   "makes sense" with respect to the topology and parallel decomposition of the other.
8657bb7acecfSBarry Smith   Loosely speaking, compatible `DM`s represent the same domain and parallel
86583d862458SPatrick Sanan   decomposition, but hold different data.
86598320bc6fSPatrick Sanan 
86608320bc6fSPatrick Sanan   Typically, one would confirm compatibility if intending to simultaneously iterate
8661bb7acecfSBarry Smith   over a pair of vectors obtained from different `DM`s.
86628320bc6fSPatrick Sanan 
8663bb7acecfSBarry Smith   For example, two `DMDA` objects are compatible if they have the same local
86648320bc6fSPatrick Sanan   and global sizes and the same stencil width. They can have different numbers
86658320bc6fSPatrick Sanan   of degrees of freedom per node. Thus, one could use the node numbering from
8666bb7acecfSBarry Smith   either `DM` in bounds for a loop over vectors derived from either `DM`.
86678320bc6fSPatrick Sanan 
8668bb7acecfSBarry Smith   Consider the operation of summing data living on a 2-dof `DMDA` to data living
8669bb7acecfSBarry Smith   on a 1-dof `DMDA`, which should be compatible, as in the following snippet.
86708320bc6fSPatrick Sanan .vb
86718320bc6fSPatrick Sanan   ...
86729566063dSJacob Faibussowitsch   PetscCall(DMGetCompatibility(da1,da2,&compatible,&set));
86738320bc6fSPatrick Sanan   if (set && compatible)  {
86749566063dSJacob Faibussowitsch     PetscCall(DMDAVecGetArrayDOF(da1,vec1,&arr1));
86759566063dSJacob Faibussowitsch     PetscCall(DMDAVecGetArrayDOF(da2,vec2,&arr2));
86769566063dSJacob Faibussowitsch     PetscCall(DMDAGetCorners(da1,&x,&y,NULL,&m,&n,NULL));
86778320bc6fSPatrick Sanan     for (j=y; j<y+n; ++j) {
86788320bc6fSPatrick Sanan       for (i=x; i<x+m, ++i) {
86798320bc6fSPatrick Sanan         arr1[j][i][0] = arr2[j][i][0] + arr2[j][i][1];
86808320bc6fSPatrick Sanan       }
86818320bc6fSPatrick Sanan     }
86829566063dSJacob Faibussowitsch     PetscCall(DMDAVecRestoreArrayDOF(da1,vec1,&arr1));
86839566063dSJacob Faibussowitsch     PetscCall(DMDAVecRestoreArrayDOF(da2,vec2,&arr2));
86848320bc6fSPatrick Sanan   } else {
86858320bc6fSPatrick Sanan     SETERRQ(PetscObjectComm((PetscObject)da1,PETSC_ERR_ARG_INCOMP,"DMDA objects incompatible");
86868320bc6fSPatrick Sanan   }
86878320bc6fSPatrick Sanan   ...
86888320bc6fSPatrick Sanan .ve
86898320bc6fSPatrick Sanan 
8690bb7acecfSBarry Smith   Checking compatibility might be expensive for a given implementation of `DM`,
86918320bc6fSPatrick Sanan   or might be impossible to unambiguously confirm or deny. For this reason,
86928320bc6fSPatrick Sanan   this function may decline to determine compatibility, and hence users should
86938320bc6fSPatrick Sanan   always check the "set" output parameter.
86948320bc6fSPatrick Sanan 
8695bb7acecfSBarry Smith   A `DM` is always compatible with itself.
86968320bc6fSPatrick Sanan 
8697bb7acecfSBarry Smith   In the current implementation, `DM`s which live on "unequal" communicators
86988320bc6fSPatrick Sanan   (MPI_UNEQUAL in the terminology of MPI_Comm_compare()) are always deemed
86998320bc6fSPatrick Sanan   incompatible.
87008320bc6fSPatrick Sanan 
87018320bc6fSPatrick Sanan   This function is labeled "Collective," as information about all subdomains
8702bb7acecfSBarry Smith   is required on each rank. However, in `DM` implementations which store all this
87038320bc6fSPatrick Sanan   information locally, this function may be merely "Logically Collective".
87048320bc6fSPatrick Sanan 
870560225df5SJacob Faibussowitsch   Developer Notes:
8706bb7acecfSBarry Smith   Compatibility is assumed to be a symmetric concept; `DM` A is compatible with `DM` B
87073d862458SPatrick Sanan   iff B is compatible with A. Thus, this function checks the implementations
8708a5bc1bf3SBarry Smith   of both dm and dmc (if they are of different types), attempting to determine
8709bb7acecfSBarry Smith   compatibility. It is left to `DM` implementers to ensure that symmetry is
87108320bc6fSPatrick Sanan   preserved. The simplest way to do this is, when implementing type-specific
87113d862458SPatrick Sanan   logic for this function, is to check for existing logic in the implementation
8712bb7acecfSBarry Smith   of other `DM` types and let *set = PETSC_FALSE if found.
87138320bc6fSPatrick Sanan 
87141cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMDACreateCompatibleDMDA()`, `DMStagCreateCompatibleDMStag()`
87158320bc6fSPatrick Sanan @*/
8716d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetCompatibility(DM dm1, DM dm2, PetscBool *compatible, PetscBool *set)
8717d71ae5a4SJacob Faibussowitsch {
87188320bc6fSPatrick Sanan   PetscMPIInt compareResult;
87198320bc6fSPatrick Sanan   DMType      type, type2;
87208320bc6fSPatrick Sanan   PetscBool   sameType;
87218320bc6fSPatrick Sanan 
87228320bc6fSPatrick Sanan   PetscFunctionBegin;
8723a5bc1bf3SBarry Smith   PetscValidHeaderSpecific(dm1, DM_CLASSID, 1);
87248320bc6fSPatrick Sanan   PetscValidHeaderSpecific(dm2, DM_CLASSID, 2);
87258320bc6fSPatrick Sanan 
87268320bc6fSPatrick Sanan   /* Declare a DM compatible with itself */
8727a5bc1bf3SBarry Smith   if (dm1 == dm2) {
87288320bc6fSPatrick Sanan     *set        = PETSC_TRUE;
87298320bc6fSPatrick Sanan     *compatible = PETSC_TRUE;
87303ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
87318320bc6fSPatrick Sanan   }
87328320bc6fSPatrick Sanan 
87338320bc6fSPatrick Sanan   /* Declare a DM incompatible with a DM that lives on an "unequal"
87348320bc6fSPatrick Sanan      communicator. Note that this does not preclude compatibility with
87358320bc6fSPatrick Sanan      DMs living on "congruent" or "similar" communicators, but this must be
87368320bc6fSPatrick Sanan      determined by the implementation-specific logic */
87379566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_compare(PetscObjectComm((PetscObject)dm1), PetscObjectComm((PetscObject)dm2), &compareResult));
87388320bc6fSPatrick Sanan   if (compareResult == MPI_UNEQUAL) {
87398320bc6fSPatrick Sanan     *set        = PETSC_TRUE;
87408320bc6fSPatrick Sanan     *compatible = PETSC_FALSE;
87413ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
87428320bc6fSPatrick Sanan   }
87438320bc6fSPatrick Sanan 
87448320bc6fSPatrick Sanan   /* Pass to the implementation-specific routine, if one exists. */
8745a5bc1bf3SBarry Smith   if (dm1->ops->getcompatibility) {
8746dbbe0bcdSBarry Smith     PetscUseTypeMethod(dm1, getcompatibility, dm2, compatible, set);
87473ba16761SJacob Faibussowitsch     if (*set) PetscFunctionReturn(PETSC_SUCCESS);
87488320bc6fSPatrick Sanan   }
87498320bc6fSPatrick Sanan 
8750a5bc1bf3SBarry Smith   /* If dm1 and dm2 are of different types, then attempt to check compatibility
87518320bc6fSPatrick Sanan      with an implementation of this function from dm2 */
87529566063dSJacob Faibussowitsch   PetscCall(DMGetType(dm1, &type));
87539566063dSJacob Faibussowitsch   PetscCall(DMGetType(dm2, &type2));
87549566063dSJacob Faibussowitsch   PetscCall(PetscStrcmp(type, type2, &sameType));
87558320bc6fSPatrick Sanan   if (!sameType && dm2->ops->getcompatibility) {
8756dbbe0bcdSBarry Smith     PetscUseTypeMethod(dm2, getcompatibility, dm1, compatible, set); /* Note argument order */
87578320bc6fSPatrick Sanan   } else {
87588320bc6fSPatrick Sanan     *set = PETSC_FALSE;
87598320bc6fSPatrick Sanan   }
87603ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
87618320bc6fSPatrick Sanan }
8762c0f0dcc3SMatthew G. Knepley 
8763c0f0dcc3SMatthew G. Knepley /*@C
8764bb7acecfSBarry Smith   DMMonitorSet - Sets an additional monitor function that is to be used after a solve to monitor discretization performance.
8765c0f0dcc3SMatthew G. Knepley 
876620f4b53cSBarry Smith   Logically Collective
8767c0f0dcc3SMatthew G. Knepley 
8768c0f0dcc3SMatthew G. Knepley   Input Parameters:
876960225df5SJacob Faibussowitsch + dm             - the `DM`
8770c0f0dcc3SMatthew G. Knepley . f              - the monitor function
877120f4b53cSBarry Smith . mctx           - [optional] user-defined context for private data for the monitor routine (use `NULL` if no context is desired)
877220f4b53cSBarry Smith - monitordestroy - [optional] routine that frees monitor context (may be `NULL`)
8773c0f0dcc3SMatthew G. Knepley 
877420f4b53cSBarry Smith   Options Database Key:
877560225df5SJacob Faibussowitsch . -dm_monitor_cancel - cancels all monitors that have been hardwired into a code by calls to `DMMonitorSet()`, but
8776c0f0dcc3SMatthew G. Knepley                             does not cancel those set via the options database.
8777c0f0dcc3SMatthew G. Knepley 
87789bdbcad8SBarry Smith   Level: intermediate
87799bdbcad8SBarry Smith 
8780bb7acecfSBarry Smith   Note:
8781c0f0dcc3SMatthew G. Knepley   Several different monitoring routines may be set by calling
8782bb7acecfSBarry Smith   `DMMonitorSet()` multiple times or with `DMMonitorSetFromOptions()`; all will be called in the
8783c0f0dcc3SMatthew G. Knepley   order in which they were set.
8784c0f0dcc3SMatthew G. Knepley 
878560225df5SJacob Faibussowitsch   Fortran Notes:
8786bb7acecfSBarry Smith   Only a single monitor function can be set for each `DM` object
8787bb7acecfSBarry Smith 
878860225df5SJacob Faibussowitsch   Developer Notes:
8789bb7acecfSBarry Smith   This API has a generic name but seems specific to a very particular aspect of the use of `DM`
8790c0f0dcc3SMatthew G. Knepley 
87911cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMMonitorCancel()`, `DMMonitorSetFromOptions()`, `DMMonitor()`
8792c0f0dcc3SMatthew G. Knepley @*/
8793d71ae5a4SJacob Faibussowitsch PetscErrorCode DMMonitorSet(DM dm, PetscErrorCode (*f)(DM, void *), void *mctx, PetscErrorCode (*monitordestroy)(void **))
8794d71ae5a4SJacob Faibussowitsch {
8795c0f0dcc3SMatthew G. Knepley   PetscInt m;
8796c0f0dcc3SMatthew G. Knepley 
8797c0f0dcc3SMatthew G. Knepley   PetscFunctionBegin;
8798c0f0dcc3SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8799c0f0dcc3SMatthew G. Knepley   for (m = 0; m < dm->numbermonitors; ++m) {
8800c0f0dcc3SMatthew G. Knepley     PetscBool identical;
8801c0f0dcc3SMatthew G. Knepley 
88029566063dSJacob Faibussowitsch     PetscCall(PetscMonitorCompare((PetscErrorCode(*)(void))f, mctx, monitordestroy, (PetscErrorCode(*)(void))dm->monitor[m], dm->monitorcontext[m], dm->monitordestroy[m], &identical));
88033ba16761SJacob Faibussowitsch     if (identical) PetscFunctionReturn(PETSC_SUCCESS);
8804c0f0dcc3SMatthew G. Knepley   }
88057a8be351SBarry Smith   PetscCheck(dm->numbermonitors < MAXDMMONITORS, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Too many monitors set");
8806c0f0dcc3SMatthew G. Knepley   dm->monitor[dm->numbermonitors]          = f;
8807c0f0dcc3SMatthew G. Knepley   dm->monitordestroy[dm->numbermonitors]   = monitordestroy;
8808c0f0dcc3SMatthew G. Knepley   dm->monitorcontext[dm->numbermonitors++] = (void *)mctx;
88093ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8810c0f0dcc3SMatthew G. Knepley }
8811c0f0dcc3SMatthew G. Knepley 
8812c0f0dcc3SMatthew G. Knepley /*@
8813bb7acecfSBarry Smith   DMMonitorCancel - Clears all the monitor functions for a `DM` object.
8814c0f0dcc3SMatthew G. Knepley 
881520f4b53cSBarry Smith   Logically Collective
8816c0f0dcc3SMatthew G. Knepley 
8817c0f0dcc3SMatthew G. Knepley   Input Parameter:
8818c0f0dcc3SMatthew G. Knepley . dm - the DM
8819c0f0dcc3SMatthew G. Knepley 
8820c0f0dcc3SMatthew G. Knepley   Options Database Key:
8821c0f0dcc3SMatthew G. Knepley . -dm_monitor_cancel - cancels all monitors that have been hardwired
8822bb7acecfSBarry Smith   into a code by calls to `DMonitorSet()`, but does not cancel those
8823c0f0dcc3SMatthew G. Knepley   set via the options database
8824c0f0dcc3SMatthew G. Knepley 
88259bdbcad8SBarry Smith   Level: intermediate
88269bdbcad8SBarry Smith 
8827bb7acecfSBarry Smith   Note:
8828bb7acecfSBarry Smith   There is no way to clear one specific monitor from a `DM` object.
8829c0f0dcc3SMatthew G. Knepley 
88301cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMMonitorSet()`, `DMMonitorSetFromOptions()`, `DMMonitor()`
8831c0f0dcc3SMatthew G. Knepley @*/
8832d71ae5a4SJacob Faibussowitsch PetscErrorCode DMMonitorCancel(DM dm)
8833d71ae5a4SJacob Faibussowitsch {
8834c0f0dcc3SMatthew G. Knepley   PetscInt m;
8835c0f0dcc3SMatthew G. Knepley 
8836c0f0dcc3SMatthew G. Knepley   PetscFunctionBegin;
8837c0f0dcc3SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8838c0f0dcc3SMatthew G. Knepley   for (m = 0; m < dm->numbermonitors; ++m) {
88399566063dSJacob Faibussowitsch     if (dm->monitordestroy[m]) PetscCall((*dm->monitordestroy[m])(&dm->monitorcontext[m]));
8840c0f0dcc3SMatthew G. Knepley   }
8841c0f0dcc3SMatthew G. Knepley   dm->numbermonitors = 0;
88423ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8843c0f0dcc3SMatthew G. Knepley }
8844c0f0dcc3SMatthew G. Knepley 
8845c0f0dcc3SMatthew G. Knepley /*@C
8846c0f0dcc3SMatthew G. Knepley   DMMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user
8847c0f0dcc3SMatthew G. Knepley 
884820f4b53cSBarry Smith   Collective
8849c0f0dcc3SMatthew G. Knepley 
8850c0f0dcc3SMatthew G. Knepley   Input Parameters:
8851bb7acecfSBarry Smith + dm           - `DM` object you wish to monitor
8852c0f0dcc3SMatthew G. Knepley . name         - the monitor type one is seeking
8853c0f0dcc3SMatthew G. Knepley . help         - message indicating what monitoring is done
8854c0f0dcc3SMatthew G. Knepley . manual       - manual page for the monitor
8855c0f0dcc3SMatthew G. Knepley . monitor      - the monitor function
8856bb7acecfSBarry Smith - monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the `DM` or `PetscViewer` objects
8857c0f0dcc3SMatthew G. Knepley 
8858c0f0dcc3SMatthew G. Knepley   Output Parameter:
8859c0f0dcc3SMatthew G. Knepley . flg - Flag set if the monitor was created
8860c0f0dcc3SMatthew G. Knepley 
8861c0f0dcc3SMatthew G. Knepley   Level: developer
8862c0f0dcc3SMatthew G. Knepley 
88631cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `PetscOptionsGetViewer()`, `PetscOptionsGetReal()`, `PetscOptionsHasName()`, `PetscOptionsGetString()`,
8864db781477SPatrick Sanan           `PetscOptionsGetIntArray()`, `PetscOptionsGetRealArray()`, `PetscOptionsBool()`
886560225df5SJacob Faibussowitsch           `PetscOptionsInt()`, `PetscOptionsString()`, `PetscOptionsReal()`,
8866db781477SPatrick Sanan           `PetscOptionsName()`, `PetscOptionsBegin()`, `PetscOptionsEnd()`, `PetscOptionsHeadBegin()`,
8867c2e3fba1SPatrick Sanan           `PetscOptionsStringArray()`, `PetscOptionsRealArray()`, `PetscOptionsScalar()`,
8868db781477SPatrick Sanan           `PetscOptionsBoolGroupBegin()`, `PetscOptionsBoolGroup()`, `PetscOptionsBoolGroupEnd()`,
8869bb7acecfSBarry Smith           `PetscOptionsFList()`, `PetscOptionsEList()`, `DMMonitor()`, `DMMonitorSet()`
8870c0f0dcc3SMatthew G. Knepley @*/
8871d71ae5a4SJacob Faibussowitsch PetscErrorCode DMMonitorSetFromOptions(DM dm, const char name[], const char help[], const char manual[], PetscErrorCode (*monitor)(DM, void *), PetscErrorCode (*monitorsetup)(DM, PetscViewerAndFormat *), PetscBool *flg)
8872d71ae5a4SJacob Faibussowitsch {
8873c0f0dcc3SMatthew G. Knepley   PetscViewer       viewer;
8874c0f0dcc3SMatthew G. Knepley   PetscViewerFormat format;
8875c0f0dcc3SMatthew G. Knepley 
8876c0f0dcc3SMatthew G. Knepley   PetscFunctionBegin;
8877c0f0dcc3SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
88789566063dSJacob Faibussowitsch   PetscCall(PetscOptionsGetViewer(PetscObjectComm((PetscObject)dm), ((PetscObject)dm)->options, ((PetscObject)dm)->prefix, name, &viewer, &format, flg));
8879c0f0dcc3SMatthew G. Knepley   if (*flg) {
8880c0f0dcc3SMatthew G. Knepley     PetscViewerAndFormat *vf;
8881c0f0dcc3SMatthew G. Knepley 
88829566063dSJacob Faibussowitsch     PetscCall(PetscViewerAndFormatCreate(viewer, format, &vf));
8883cd791dc2SBarry Smith     PetscCall(PetscOptionsRestoreViewer(&viewer));
88849566063dSJacob Faibussowitsch     if (monitorsetup) PetscCall((*monitorsetup)(dm, vf));
88859566063dSJacob Faibussowitsch     PetscCall(DMMonitorSet(dm, (PetscErrorCode(*)(DM, void *))monitor, vf, (PetscErrorCode(*)(void **))PetscViewerAndFormatDestroy));
8886c0f0dcc3SMatthew G. Knepley   }
88873ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8888c0f0dcc3SMatthew G. Knepley }
8889c0f0dcc3SMatthew G. Knepley 
8890c0f0dcc3SMatthew G. Knepley /*@
8891c0f0dcc3SMatthew G. Knepley   DMMonitor - runs the user provided monitor routines, if they exist
8892c0f0dcc3SMatthew G. Knepley 
889320f4b53cSBarry Smith   Collective
8894c0f0dcc3SMatthew G. Knepley 
88952fe279fdSBarry Smith   Input Parameter:
8896bb7acecfSBarry Smith . dm - The `DM`
8897c0f0dcc3SMatthew G. Knepley 
8898c0f0dcc3SMatthew G. Knepley   Level: developer
8899c0f0dcc3SMatthew G. Knepley 
8900a4e35b19SJacob Faibussowitsch   Developer Notes:
8901a4e35b19SJacob Faibussowitsch   Note should indicate when during the life of the `DM` the monitor is run. It appears to be
8902a4e35b19SJacob Faibussowitsch   related to the discretization process seems rather specialized since some `DM` have no
8903a4e35b19SJacob Faibussowitsch   concept of discretization.
8904bb7acecfSBarry Smith 
89051cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMMonitorSet()`, `DMMonitorSetFromOptions()`
8906c0f0dcc3SMatthew G. Knepley @*/
8907d71ae5a4SJacob Faibussowitsch PetscErrorCode DMMonitor(DM dm)
8908d71ae5a4SJacob Faibussowitsch {
8909c0f0dcc3SMatthew G. Knepley   PetscInt m;
8910c0f0dcc3SMatthew G. Knepley 
8911c0f0dcc3SMatthew G. Knepley   PetscFunctionBegin;
89123ba16761SJacob Faibussowitsch   if (!dm) PetscFunctionReturn(PETSC_SUCCESS);
8913c0f0dcc3SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
891448a46eb9SPierre Jolivet   for (m = 0; m < dm->numbermonitors; ++m) PetscCall((*dm->monitor[m])(dm, dm->monitorcontext[m]));
89153ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8916c0f0dcc3SMatthew G. Knepley }
89172e4af2aeSMatthew G. Knepley 
89182e4af2aeSMatthew G. Knepley /*@
8919bb7acecfSBarry Smith   DMComputeError - Computes the error assuming the user has provided the exact solution functions
89202e4af2aeSMatthew G. Knepley 
892120f4b53cSBarry Smith   Collective
89222e4af2aeSMatthew G. Knepley 
89232e4af2aeSMatthew G. Knepley   Input Parameters:
8924bb7acecfSBarry Smith + dm  - The `DM`
89256b867d5aSJose E. Roman - sol - The solution vector
89262e4af2aeSMatthew G. Knepley 
89276b867d5aSJose E. Roman   Input/Output Parameter:
892820f4b53cSBarry Smith . errors - An array of length Nf, the number of fields, or `NULL` for no output; on output
89296b867d5aSJose E. Roman            contains the error in each field
89306b867d5aSJose E. Roman 
89316b867d5aSJose E. Roman   Output Parameter:
893220f4b53cSBarry Smith . errorVec - A vector to hold the cellwise error (may be `NULL`)
893320f4b53cSBarry Smith 
893420f4b53cSBarry Smith   Level: developer
89352e4af2aeSMatthew G. Knepley 
8936bb7acecfSBarry Smith   Note:
8937bb7acecfSBarry Smith   The exact solutions come from the `PetscDS` object, and the time comes from `DMGetOutputSequenceNumber()`.
89382e4af2aeSMatthew G. Knepley 
89391cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMMonitorSet()`, `DMGetRegionNumDS()`, `PetscDSGetExactSolution()`, `DMGetOutputSequenceNumber()`
89402e4af2aeSMatthew G. Knepley @*/
8941d71ae5a4SJacob Faibussowitsch PetscErrorCode DMComputeError(DM dm, Vec sol, PetscReal errors[], Vec *errorVec)
8942d71ae5a4SJacob Faibussowitsch {
89432e4af2aeSMatthew G. Knepley   PetscErrorCode (**exactSol)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar[], void *);
89442e4af2aeSMatthew G. Knepley   void    **ctxs;
89452e4af2aeSMatthew G. Knepley   PetscReal time;
89462e4af2aeSMatthew G. Knepley   PetscInt  Nf, f, Nds, s;
89472e4af2aeSMatthew G. Knepley 
89482e4af2aeSMatthew G. Knepley   PetscFunctionBegin;
89499566063dSJacob Faibussowitsch   PetscCall(DMGetNumFields(dm, &Nf));
89509566063dSJacob Faibussowitsch   PetscCall(PetscCalloc2(Nf, &exactSol, Nf, &ctxs));
89519566063dSJacob Faibussowitsch   PetscCall(DMGetNumDS(dm, &Nds));
89522e4af2aeSMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
89532e4af2aeSMatthew G. Knepley     PetscDS         ds;
89542e4af2aeSMatthew G. Knepley     DMLabel         label;
89552e4af2aeSMatthew G. Knepley     IS              fieldIS;
89562e4af2aeSMatthew G. Knepley     const PetscInt *fields;
89572e4af2aeSMatthew G. Knepley     PetscInt        dsNf;
89582e4af2aeSMatthew G. Knepley 
895907218a29SMatthew G. Knepley     PetscCall(DMGetRegionNumDS(dm, s, &label, &fieldIS, &ds, NULL));
89609566063dSJacob Faibussowitsch     PetscCall(PetscDSGetNumFields(ds, &dsNf));
89619566063dSJacob Faibussowitsch     if (fieldIS) PetscCall(ISGetIndices(fieldIS, &fields));
89622e4af2aeSMatthew G. Knepley     for (f = 0; f < dsNf; ++f) {
89632e4af2aeSMatthew G. Knepley       const PetscInt field = fields[f];
89649566063dSJacob Faibussowitsch       PetscCall(PetscDSGetExactSolution(ds, field, &exactSol[field], &ctxs[field]));
89652e4af2aeSMatthew G. Knepley     }
89669566063dSJacob Faibussowitsch     if (fieldIS) PetscCall(ISRestoreIndices(fieldIS, &fields));
89672e4af2aeSMatthew G. Knepley   }
8968ad540459SPierre Jolivet   for (f = 0; f < Nf; ++f) PetscCheck(exactSol[f], PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "DS must contain exact solution functions in order to calculate error, missing for field %" PetscInt_FMT, f);
89699566063dSJacob Faibussowitsch   PetscCall(DMGetOutputSequenceNumber(dm, NULL, &time));
89709566063dSJacob Faibussowitsch   if (errors) PetscCall(DMComputeL2FieldDiff(dm, time, exactSol, ctxs, sol, errors));
89712e4af2aeSMatthew G. Knepley   if (errorVec) {
89722e4af2aeSMatthew G. Knepley     DM             edm;
89732e4af2aeSMatthew G. Knepley     DMPolytopeType ct;
89742e4af2aeSMatthew G. Knepley     PetscBool      simplex;
89752e4af2aeSMatthew G. Knepley     PetscInt       dim, cStart, Nf;
89762e4af2aeSMatthew G. Knepley 
89779566063dSJacob Faibussowitsch     PetscCall(DMClone(dm, &edm));
89789566063dSJacob Faibussowitsch     PetscCall(DMGetDimension(edm, &dim));
89799566063dSJacob Faibussowitsch     PetscCall(DMPlexGetHeightStratum(dm, 0, &cStart, NULL));
89809566063dSJacob Faibussowitsch     PetscCall(DMPlexGetCellType(dm, cStart, &ct));
89812e4af2aeSMatthew G. Knepley     simplex = DMPolytopeTypeGetNumVertices(ct) == DMPolytopeTypeGetDim(ct) + 1 ? PETSC_TRUE : PETSC_FALSE;
89829566063dSJacob Faibussowitsch     PetscCall(DMGetNumFields(dm, &Nf));
89832e4af2aeSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
89842e4af2aeSMatthew G. Knepley       PetscFE         fe, efe;
89852e4af2aeSMatthew G. Knepley       PetscQuadrature q;
89862e4af2aeSMatthew G. Knepley       const char     *name;
89872e4af2aeSMatthew G. Knepley 
89889566063dSJacob Faibussowitsch       PetscCall(DMGetField(dm, f, NULL, (PetscObject *)&fe));
89899566063dSJacob Faibussowitsch       PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, dim, Nf, simplex, 0, PETSC_DETERMINE, &efe));
89909566063dSJacob Faibussowitsch       PetscCall(PetscObjectGetName((PetscObject)fe, &name));
89919566063dSJacob Faibussowitsch       PetscCall(PetscObjectSetName((PetscObject)efe, name));
89929566063dSJacob Faibussowitsch       PetscCall(PetscFEGetQuadrature(fe, &q));
89939566063dSJacob Faibussowitsch       PetscCall(PetscFESetQuadrature(efe, q));
89949566063dSJacob Faibussowitsch       PetscCall(DMSetField(edm, f, NULL, (PetscObject)efe));
89959566063dSJacob Faibussowitsch       PetscCall(PetscFEDestroy(&efe));
89962e4af2aeSMatthew G. Knepley     }
89979566063dSJacob Faibussowitsch     PetscCall(DMCreateDS(edm));
89982e4af2aeSMatthew G. Knepley 
89999566063dSJacob Faibussowitsch     PetscCall(DMCreateGlobalVector(edm, errorVec));
90009566063dSJacob Faibussowitsch     PetscCall(PetscObjectSetName((PetscObject)*errorVec, "Error"));
90019566063dSJacob Faibussowitsch     PetscCall(DMPlexComputeL2DiffVec(dm, time, exactSol, ctxs, sol, *errorVec));
90029566063dSJacob Faibussowitsch     PetscCall(DMDestroy(&edm));
90032e4af2aeSMatthew G. Knepley   }
90049566063dSJacob Faibussowitsch   PetscCall(PetscFree2(exactSol, ctxs));
90053ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
90062e4af2aeSMatthew G. Knepley }
90079a2a23afSMatthew G. Knepley 
90089a2a23afSMatthew G. Knepley /*@
9009bb7acecfSBarry Smith   DMGetNumAuxiliaryVec - Get the number of auxiliary vectors associated with this `DM`
90109a2a23afSMatthew G. Knepley 
901120f4b53cSBarry Smith   Not Collective
90129a2a23afSMatthew G. Knepley 
90139a2a23afSMatthew G. Knepley   Input Parameter:
9014bb7acecfSBarry Smith . dm - The `DM`
90159a2a23afSMatthew G. Knepley 
90169a2a23afSMatthew G. Knepley   Output Parameter:
9017a5b23f4aSJose E. Roman . numAux - The number of auxiliary data vectors
90189a2a23afSMatthew G. Knepley 
90199a2a23afSMatthew G. Knepley   Level: advanced
90209a2a23afSMatthew G. Knepley 
9021e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMClearAuxiliaryVec()`, `DMSetAuxiliaryVec()`, `DMGetAuxiliaryLabels()`, `DMGetAuxiliaryVec()`
90229a2a23afSMatthew G. Knepley @*/
9023d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetNumAuxiliaryVec(DM dm, PetscInt *numAux)
9024d71ae5a4SJacob Faibussowitsch {
90259a2a23afSMatthew G. Knepley   PetscFunctionBegin;
90269a2a23afSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
90279566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxGetSize(dm->auxData, numAux));
90283ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
90299a2a23afSMatthew G. Knepley }
90309a2a23afSMatthew G. Knepley 
90319a2a23afSMatthew G. Knepley /*@
9032ac17215fSMatthew G. Knepley   DMGetAuxiliaryVec - Get the auxiliary vector for region specified by the given label and value, and equation part
90339a2a23afSMatthew G. Knepley 
903420f4b53cSBarry Smith   Not Collective
90359a2a23afSMatthew G. Knepley 
90369a2a23afSMatthew G. Knepley   Input Parameters:
9037bb7acecfSBarry Smith + dm    - The `DM`
9038bb7acecfSBarry Smith . label - The `DMLabel`
9039ac17215fSMatthew G. Knepley . value - The label value indicating the region
9040ac17215fSMatthew G. Knepley - part  - The equation part, or 0 if unused
90419a2a23afSMatthew G. Knepley 
90429a2a23afSMatthew G. Knepley   Output Parameter:
9043bb7acecfSBarry Smith . aux - The `Vec` holding auxiliary field data
90449a2a23afSMatthew G. Knepley 
90459bdbcad8SBarry Smith   Level: advanced
90469bdbcad8SBarry Smith 
9047bb7acecfSBarry Smith   Note:
9048bb7acecfSBarry Smith   If no auxiliary vector is found for this (label, value), (NULL, 0, 0) is checked as well.
904904c51a94SMatthew G. Knepley 
9050e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMClearAuxiliaryVec()`, `DMSetAuxiliaryVec()`, `DMGetNumAuxiliaryVec()`, `DMGetAuxiliaryLabels()`
90519a2a23afSMatthew G. Knepley @*/
9052d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetAuxiliaryVec(DM dm, DMLabel label, PetscInt value, PetscInt part, Vec *aux)
9053d71ae5a4SJacob Faibussowitsch {
9054ac17215fSMatthew G. Knepley   PetscHashAuxKey key, wild = {NULL, 0, 0};
905504c51a94SMatthew G. Knepley   PetscBool       has;
90569a2a23afSMatthew G. Knepley 
90579a2a23afSMatthew G. Knepley   PetscFunctionBegin;
90589a2a23afSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
90599a2a23afSMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
90609a2a23afSMatthew G. Knepley   key.label = label;
90619a2a23afSMatthew G. Knepley   key.value = value;
9062ac17215fSMatthew G. Knepley   key.part  = part;
90639566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxHas(dm->auxData, key, &has));
90649566063dSJacob Faibussowitsch   if (has) PetscCall(PetscHMapAuxGet(dm->auxData, key, aux));
90659566063dSJacob Faibussowitsch   else PetscCall(PetscHMapAuxGet(dm->auxData, wild, aux));
90663ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
90679a2a23afSMatthew G. Knepley }
90689a2a23afSMatthew G. Knepley 
90699a2a23afSMatthew G. Knepley /*@
9070bb7acecfSBarry Smith   DMSetAuxiliaryVec - Set an auxiliary vector for region specified by the given label and value, and equation part
90719a2a23afSMatthew G. Knepley 
907220f4b53cSBarry Smith   Not Collective because auxiliary vectors are not parallel
90739a2a23afSMatthew G. Knepley 
90749a2a23afSMatthew G. Knepley   Input Parameters:
9075bb7acecfSBarry Smith + dm    - The `DM`
9076bb7acecfSBarry Smith . label - The `DMLabel`
90779a2a23afSMatthew G. Knepley . value - The label value indicating the region
9078ac17215fSMatthew G. Knepley . part  - The equation part, or 0 if unused
9079bb7acecfSBarry Smith - aux   - The `Vec` holding auxiliary field data
90809a2a23afSMatthew G. Knepley 
90819a2a23afSMatthew G. Knepley   Level: advanced
90829a2a23afSMatthew G. Knepley 
9083e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMClearAuxiliaryVec()`, `DMGetAuxiliaryVec()`, `DMGetAuxiliaryLabels()`, `DMCopyAuxiliaryVec()`
90849a2a23afSMatthew G. Knepley @*/
9085d71ae5a4SJacob Faibussowitsch PetscErrorCode DMSetAuxiliaryVec(DM dm, DMLabel label, PetscInt value, PetscInt part, Vec aux)
9086d71ae5a4SJacob Faibussowitsch {
90879a2a23afSMatthew G. Knepley   Vec             old;
90889a2a23afSMatthew G. Knepley   PetscHashAuxKey key;
90899a2a23afSMatthew G. Knepley 
90909a2a23afSMatthew G. Knepley   PetscFunctionBegin;
90919a2a23afSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
90929a2a23afSMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
90939a2a23afSMatthew G. Knepley   key.label = label;
90949a2a23afSMatthew G. Knepley   key.value = value;
9095ac17215fSMatthew G. Knepley   key.part  = part;
90969566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxGet(dm->auxData, key, &old));
90979566063dSJacob Faibussowitsch   PetscCall(PetscObjectReference((PetscObject)aux));
90989566063dSJacob Faibussowitsch   if (!aux) PetscCall(PetscHMapAuxDel(dm->auxData, key));
90999566063dSJacob Faibussowitsch   else PetscCall(PetscHMapAuxSet(dm->auxData, key, aux));
9100d705d0eaSStefano Zampini   PetscCall(VecDestroy(&old));
91013ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
91029a2a23afSMatthew G. Knepley }
91039a2a23afSMatthew G. Knepley 
91049a2a23afSMatthew G. Knepley /*@C
9105bb7acecfSBarry Smith   DMGetAuxiliaryLabels - Get the labels, values, and parts for all auxiliary vectors in this `DM`
91069a2a23afSMatthew G. Knepley 
910720f4b53cSBarry Smith   Not Collective
91089a2a23afSMatthew G. Knepley 
91099a2a23afSMatthew G. Knepley   Input Parameter:
9110bb7acecfSBarry Smith . dm - The `DM`
91119a2a23afSMatthew G. Knepley 
91129a2a23afSMatthew G. Knepley   Output Parameters:
9113bb7acecfSBarry Smith + labels - The `DMLabel`s for each `Vec`
9114bb7acecfSBarry Smith . values - The label values for each `Vec`
9115bb7acecfSBarry Smith - parts  - The equation parts for each `Vec`
91169a2a23afSMatthew G. Knepley 
91179bdbcad8SBarry Smith   Level: advanced
91189bdbcad8SBarry Smith 
9119bb7acecfSBarry Smith   Note:
9120bb7acecfSBarry Smith   The arrays passed in must be at least as large as `DMGetNumAuxiliaryVec()`.
91219a2a23afSMatthew G. Knepley 
9122e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMClearAuxiliaryVec()`, `DMGetNumAuxiliaryVec()`, `DMGetAuxiliaryVec()`, `DMSetAuxiliaryVec()`, `DMCopyAuxiliaryVec()`
91239a2a23afSMatthew G. Knepley @*/
9124d71ae5a4SJacob Faibussowitsch PetscErrorCode DMGetAuxiliaryLabels(DM dm, DMLabel labels[], PetscInt values[], PetscInt parts[])
9125d71ae5a4SJacob Faibussowitsch {
91269a2a23afSMatthew G. Knepley   PetscHashAuxKey *keys;
91279a2a23afSMatthew G. Knepley   PetscInt         n, i, off = 0;
91289a2a23afSMatthew G. Knepley 
91299a2a23afSMatthew G. Knepley   PetscFunctionBegin;
91309a2a23afSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
91314f572ea9SToby Isaac   PetscAssertPointer(labels, 2);
91324f572ea9SToby Isaac   PetscAssertPointer(values, 3);
91334f572ea9SToby Isaac   PetscAssertPointer(parts, 4);
91349566063dSJacob Faibussowitsch   PetscCall(DMGetNumAuxiliaryVec(dm, &n));
91359566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(n, &keys));
91369566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxGetKeys(dm->auxData, &off, keys));
91379371c9d4SSatish Balay   for (i = 0; i < n; ++i) {
91389371c9d4SSatish Balay     labels[i] = keys[i].label;
91399371c9d4SSatish Balay     values[i] = keys[i].value;
91409371c9d4SSatish Balay     parts[i]  = keys[i].part;
91419371c9d4SSatish Balay   }
91429566063dSJacob Faibussowitsch   PetscCall(PetscFree(keys));
91433ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
91449a2a23afSMatthew G. Knepley }
91459a2a23afSMatthew G. Knepley 
91469a2a23afSMatthew G. Knepley /*@
9147bb7acecfSBarry Smith   DMCopyAuxiliaryVec - Copy the auxiliary vector data on a `DM` to a new `DM`
91489a2a23afSMatthew G. Knepley 
914920f4b53cSBarry Smith   Not Collective
91509a2a23afSMatthew G. Knepley 
91519a2a23afSMatthew G. Knepley   Input Parameter:
9152bb7acecfSBarry Smith . dm - The `DM`
91539a2a23afSMatthew G. Knepley 
91549a2a23afSMatthew G. Knepley   Output Parameter:
9155bb7acecfSBarry Smith . dmNew - The new `DM`, now with the same auxiliary data
91569a2a23afSMatthew G. Knepley 
91579a2a23afSMatthew G. Knepley   Level: advanced
91589a2a23afSMatthew G. Knepley 
9159bb7acecfSBarry Smith   Note:
9160bb7acecfSBarry Smith   This is a shallow copy of the auxiliary vectors
9161bb7acecfSBarry Smith 
9162e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMClearAuxiliaryVec()`, `DMGetNumAuxiliaryVec()`, `DMGetAuxiliaryVec()`, `DMSetAuxiliaryVec()`
91639a2a23afSMatthew G. Knepley @*/
9164d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCopyAuxiliaryVec(DM dm, DM dmNew)
9165d71ae5a4SJacob Faibussowitsch {
91669a2a23afSMatthew G. Knepley   PetscFunctionBegin;
91679a2a23afSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9168d705d0eaSStefano Zampini   PetscValidHeaderSpecific(dmNew, DM_CLASSID, 2);
9169d705d0eaSStefano Zampini   if (dm == dmNew) PetscFunctionReturn(PETSC_SUCCESS);
9170e4d5475eSStefano Zampini   PetscCall(DMClearAuxiliaryVec(dmNew));
9171e4d5475eSStefano Zampini 
9172e4d5475eSStefano Zampini   PetscCall(PetscHMapAuxDestroy(&dmNew->auxData));
91739566063dSJacob Faibussowitsch   PetscCall(PetscHMapAuxDuplicate(dm->auxData, &dmNew->auxData));
9174d705d0eaSStefano Zampini   {
9175d705d0eaSStefano Zampini     Vec     *auxData;
9176d705d0eaSStefano Zampini     PetscInt n, i, off = 0;
9177d705d0eaSStefano Zampini 
9178d705d0eaSStefano Zampini     PetscCall(PetscHMapAuxGetSize(dmNew->auxData, &n));
9179d705d0eaSStefano Zampini     PetscCall(PetscMalloc1(n, &auxData));
9180d705d0eaSStefano Zampini     PetscCall(PetscHMapAuxGetVals(dmNew->auxData, &off, auxData));
9181d705d0eaSStefano Zampini     for (i = 0; i < n; ++i) PetscCall(PetscObjectReference((PetscObject)auxData[i]));
9182d705d0eaSStefano Zampini     PetscCall(PetscFree(auxData));
9183e4d5475eSStefano Zampini   }
9184e4d5475eSStefano Zampini   PetscFunctionReturn(PETSC_SUCCESS);
9185e4d5475eSStefano Zampini }
9186e4d5475eSStefano Zampini 
9187e4d5475eSStefano Zampini /*@
9188e4d5475eSStefano Zampini   DMClearAuxiliaryVec - Destroys the auxiliary vector information and creates a new empty one
9189e4d5475eSStefano Zampini 
9190e4d5475eSStefano Zampini   Not Collective
9191e4d5475eSStefano Zampini 
9192e4d5475eSStefano Zampini   Input Parameter:
9193e4d5475eSStefano Zampini . dm - The `DM`
9194e4d5475eSStefano Zampini 
9195e4d5475eSStefano Zampini   Level: advanced
9196e4d5475eSStefano Zampini 
9197e4d5475eSStefano Zampini .seealso: [](ch_dmbase), `DM`, `DMCopyAuxiliaryVec()`, `DMGetNumAuxiliaryVec()`, `DMGetAuxiliaryVec()`, `DMSetAuxiliaryVec()`
9198e4d5475eSStefano Zampini @*/
9199e4d5475eSStefano Zampini PetscErrorCode DMClearAuxiliaryVec(DM dm)
9200e4d5475eSStefano Zampini {
9201e4d5475eSStefano Zampini   Vec     *auxData;
9202e4d5475eSStefano Zampini   PetscInt n, i, off = 0;
9203e4d5475eSStefano Zampini 
9204e4d5475eSStefano Zampini   PetscFunctionBegin;
9205e4d5475eSStefano Zampini   PetscCall(PetscHMapAuxGetSize(dm->auxData, &n));
9206d705d0eaSStefano Zampini   PetscCall(PetscMalloc1(n, &auxData));
9207e4d5475eSStefano Zampini   PetscCall(PetscHMapAuxGetVals(dm->auxData, &off, auxData));
9208d705d0eaSStefano Zampini   for (i = 0; i < n; ++i) PetscCall(VecDestroy(&auxData[i]));
9209d705d0eaSStefano Zampini   PetscCall(PetscFree(auxData));
9210e4d5475eSStefano Zampini   PetscCall(PetscHMapAuxDestroy(&dm->auxData));
9211e4d5475eSStefano Zampini   PetscCall(PetscHMapAuxCreate(&dm->auxData));
92123ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
92139a2a23afSMatthew G. Knepley }
9214b5a892a1SMatthew G. Knepley 
9215b5a892a1SMatthew G. Knepley /*@C
9216bb7acecfSBarry Smith   DMPolytopeMatchOrientation - Determine an orientation (transformation) that takes the source face arrangement to the target face arrangement
9217b5a892a1SMatthew G. Knepley 
921820f4b53cSBarry Smith   Not Collective
9219b5a892a1SMatthew G. Knepley 
9220b5a892a1SMatthew G. Knepley   Input Parameters:
9221bb7acecfSBarry Smith + ct         - The `DMPolytopeType`
9222b5a892a1SMatthew G. Knepley . sourceCone - The source arrangement of faces
9223b5a892a1SMatthew G. Knepley - targetCone - The target arrangement of faces
9224b5a892a1SMatthew G. Knepley 
9225b5a892a1SMatthew G. Knepley   Output Parameters:
9226bb7acecfSBarry Smith + ornt  - The orientation (transformation) which will take the source arrangement to the target arrangement
9227b5a892a1SMatthew G. Knepley - found - Flag indicating that a suitable orientation was found
9228b5a892a1SMatthew G. Knepley 
9229b5a892a1SMatthew G. Knepley   Level: advanced
9230b5a892a1SMatthew G. Knepley 
9231bb7acecfSBarry Smith   Note:
9232bb7acecfSBarry Smith   An arrangement is a face order combined with an orientation for each face
9233bb7acecfSBarry Smith 
923485036b15SMatthew G. Knepley   Each orientation (transformation) is labeled with an integer from negative `DMPolytopeTypeGetNumArrangements(ct)`/2 to `DMPolytopeTypeGetNumArrangements(ct)`/2
9235bb7acecfSBarry Smith   that labels each arrangement (face ordering plus orientation for each face).
9236bb7acecfSBarry Smith 
9237bb7acecfSBarry Smith   See `DMPolytopeMatchVertexOrientation()` to find a new vertex orientation that takes the source vertex arrangement to the target vertex arrangement
9238bb7acecfSBarry Smith 
92391cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPolytopeGetOrientation()`, `DMPolytopeMatchVertexOrientation()`, `DMPolytopeGetVertexOrientation()`
9240b5a892a1SMatthew G. Knepley @*/
9241d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPolytopeMatchOrientation(DMPolytopeType ct, const PetscInt sourceCone[], const PetscInt targetCone[], PetscInt *ornt, PetscBool *found)
9242d71ae5a4SJacob Faibussowitsch {
9243b5a892a1SMatthew G. Knepley   const PetscInt cS = DMPolytopeTypeGetConeSize(ct);
924485036b15SMatthew G. Knepley   const PetscInt nO = DMPolytopeTypeGetNumArrangements(ct) / 2;
9245b5a892a1SMatthew G. Knepley   PetscInt       o, c;
9246b5a892a1SMatthew G. Knepley 
9247b5a892a1SMatthew G. Knepley   PetscFunctionBegin;
92489371c9d4SSatish Balay   if (!nO) {
92499371c9d4SSatish Balay     *ornt  = 0;
92509371c9d4SSatish Balay     *found = PETSC_TRUE;
92513ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
92529371c9d4SSatish Balay   }
9253b5a892a1SMatthew G. Knepley   for (o = -nO; o < nO; ++o) {
925485036b15SMatthew G. Knepley     const PetscInt *arr = DMPolytopeTypeGetArrangement(ct, o);
9255b5a892a1SMatthew G. Knepley 
92569371c9d4SSatish Balay     for (c = 0; c < cS; ++c)
92579371c9d4SSatish Balay       if (sourceCone[arr[c * 2]] != targetCone[c]) break;
92589371c9d4SSatish Balay     if (c == cS) {
92599371c9d4SSatish Balay       *ornt = o;
92609371c9d4SSatish Balay       break;
92619371c9d4SSatish Balay     }
9262b5a892a1SMatthew G. Knepley   }
9263b5a892a1SMatthew G. Knepley   *found = o == nO ? PETSC_FALSE : PETSC_TRUE;
92643ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
9265b5a892a1SMatthew G. Knepley }
9266b5a892a1SMatthew G. Knepley 
9267b5a892a1SMatthew G. Knepley /*@C
9268bb7acecfSBarry Smith   DMPolytopeGetOrientation - Determine an orientation (transformation) that takes the source face arrangement to the target face arrangement
9269b5a892a1SMatthew G. Knepley 
927020f4b53cSBarry Smith   Not Collective
9271b5a892a1SMatthew G. Knepley 
9272b5a892a1SMatthew G. Knepley   Input Parameters:
9273bb7acecfSBarry Smith + ct         - The `DMPolytopeType`
9274b5a892a1SMatthew G. Knepley . sourceCone - The source arrangement of faces
9275b5a892a1SMatthew G. Knepley - targetCone - The target arrangement of faces
9276b5a892a1SMatthew G. Knepley 
92772fe279fdSBarry Smith   Output Parameter:
9278bb7acecfSBarry Smith . ornt - The orientation (transformation) which will take the source arrangement to the target arrangement
9279b5a892a1SMatthew G. Knepley 
9280b5a892a1SMatthew G. Knepley   Level: advanced
9281b5a892a1SMatthew G. Knepley 
9282bb7acecfSBarry Smith   Note:
9283bb7acecfSBarry Smith   This function is the same as `DMPolytopeMatchOrientation()` except it will generate an error if no suitable orientation can be found.
9284bb7acecfSBarry Smith 
928560225df5SJacob Faibussowitsch   Developer Notes:
9286bb7acecfSBarry Smith   It is unclear why this function needs to exist since one can simply call `DMPolytopeMatchOrientation()` and error if none is found
9287bb7acecfSBarry Smith 
92881cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPolytopeType`, `DMPolytopeMatchOrientation()`, `DMPolytopeGetVertexOrientation()`, `DMPolytopeMatchVertexOrientation()`
9289b5a892a1SMatthew G. Knepley @*/
9290d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPolytopeGetOrientation(DMPolytopeType ct, const PetscInt sourceCone[], const PetscInt targetCone[], PetscInt *ornt)
9291d71ae5a4SJacob Faibussowitsch {
9292b5a892a1SMatthew G. Knepley   PetscBool found;
9293b5a892a1SMatthew G. Knepley 
9294b5a892a1SMatthew G. Knepley   PetscFunctionBegin;
92959566063dSJacob Faibussowitsch   PetscCall(DMPolytopeMatchOrientation(ct, sourceCone, targetCone, ornt, &found));
92967a8be351SBarry Smith   PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Could not find orientation for %s", DMPolytopeTypes[ct]);
92973ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
9298b5a892a1SMatthew G. Knepley }
9299b5a892a1SMatthew G. Knepley 
9300b5a892a1SMatthew G. Knepley /*@C
9301bb7acecfSBarry Smith   DMPolytopeMatchVertexOrientation - Determine an orientation (transformation) that takes the source vertex arrangement to the target vertex arrangement
9302b5a892a1SMatthew G. Knepley 
930320f4b53cSBarry Smith   Not Collective
9304b5a892a1SMatthew G. Knepley 
9305b5a892a1SMatthew G. Knepley   Input Parameters:
9306bb7acecfSBarry Smith + ct         - The `DMPolytopeType`
9307b5a892a1SMatthew G. Knepley . sourceVert - The source arrangement of vertices
9308b5a892a1SMatthew G. Knepley - targetVert - The target arrangement of vertices
9309b5a892a1SMatthew G. Knepley 
9310b5a892a1SMatthew G. Knepley   Output Parameters:
9311bb7acecfSBarry Smith + ornt  - The orientation (transformation) which will take the source arrangement to the target arrangement
9312b5a892a1SMatthew G. Knepley - found - Flag indicating that a suitable orientation was found
9313b5a892a1SMatthew G. Knepley 
9314b5a892a1SMatthew G. Knepley   Level: advanced
9315b5a892a1SMatthew G. Knepley 
9316bb7acecfSBarry Smith   Note:
9317bb7acecfSBarry Smith   An arrangement is a vertex order
9318bb7acecfSBarry Smith 
931985036b15SMatthew G. Knepley   Each orientation (transformation) is labeled with an integer from negative `DMPolytopeTypeGetNumArrangements(ct)`/2 to `DMPolytopeTypeGetNumArrangements(ct)`/2
9320bb7acecfSBarry Smith   that labels each arrangement (vertex ordering).
9321bb7acecfSBarry Smith 
9322bb7acecfSBarry Smith   See `DMPolytopeMatchOrientation()` to find a new face orientation that takes the source face arrangement to the target face arrangement
9323bb7acecfSBarry Smith 
932485036b15SMatthew G. Knepley .seealso: [](ch_dmbase), `DM`, `DMPolytopeType`, `DMPolytopeGetOrientation()`, `DMPolytopeMatchOrientation()`, `DMPolytopeTypeGetNumVertices()`, `DMPolytopeTypeGetVertexArrangement()`
9325b5a892a1SMatthew G. Knepley @*/
9326d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPolytopeMatchVertexOrientation(DMPolytopeType ct, const PetscInt sourceVert[], const PetscInt targetVert[], PetscInt *ornt, PetscBool *found)
9327d71ae5a4SJacob Faibussowitsch {
9328b5a892a1SMatthew G. Knepley   const PetscInt cS = DMPolytopeTypeGetNumVertices(ct);
932985036b15SMatthew G. Knepley   const PetscInt nO = DMPolytopeTypeGetNumArrangements(ct) / 2;
9330b5a892a1SMatthew G. Knepley   PetscInt       o, c;
9331b5a892a1SMatthew G. Knepley 
9332b5a892a1SMatthew G. Knepley   PetscFunctionBegin;
93339371c9d4SSatish Balay   if (!nO) {
93349371c9d4SSatish Balay     *ornt  = 0;
93359371c9d4SSatish Balay     *found = PETSC_TRUE;
93363ba16761SJacob Faibussowitsch     PetscFunctionReturn(PETSC_SUCCESS);
93379371c9d4SSatish Balay   }
9338b5a892a1SMatthew G. Knepley   for (o = -nO; o < nO; ++o) {
933985036b15SMatthew G. Knepley     const PetscInt *arr = DMPolytopeTypeGetVertexArrangement(ct, o);
9340b5a892a1SMatthew G. Knepley 
93419371c9d4SSatish Balay     for (c = 0; c < cS; ++c)
93429371c9d4SSatish Balay       if (sourceVert[arr[c]] != targetVert[c]) break;
93439371c9d4SSatish Balay     if (c == cS) {
93449371c9d4SSatish Balay       *ornt = o;
93459371c9d4SSatish Balay       break;
93469371c9d4SSatish Balay     }
9347b5a892a1SMatthew G. Knepley   }
9348b5a892a1SMatthew G. Knepley   *found = o == nO ? PETSC_FALSE : PETSC_TRUE;
93493ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
9350b5a892a1SMatthew G. Knepley }
9351b5a892a1SMatthew G. Knepley 
9352b5a892a1SMatthew G. Knepley /*@C
9353bb7acecfSBarry Smith   DMPolytopeGetVertexOrientation - Determine an orientation (transformation) that takes the source vertex arrangement to the target vertex arrangement
9354b5a892a1SMatthew G. Knepley 
935520f4b53cSBarry Smith   Not Collective
9356b5a892a1SMatthew G. Knepley 
9357b5a892a1SMatthew G. Knepley   Input Parameters:
9358bb7acecfSBarry Smith + ct         - The `DMPolytopeType`
9359b5a892a1SMatthew G. Knepley . sourceCone - The source arrangement of vertices
9360b5a892a1SMatthew G. Knepley - targetCone - The target arrangement of vertices
9361b5a892a1SMatthew G. Knepley 
93622fe279fdSBarry Smith   Output Parameter:
9363bb7acecfSBarry Smith . ornt - The orientation (transformation) which will take the source arrangement to the target arrangement
9364b5a892a1SMatthew G. Knepley 
9365b5a892a1SMatthew G. Knepley   Level: advanced
9366b5a892a1SMatthew G. Knepley 
9367bb7acecfSBarry Smith   Note:
9368bb7acecfSBarry Smith   This function is the same as `DMPolytopeMatchVertexOrientation()` except it errors if not orientation is possible.
9369bb7acecfSBarry Smith 
937060225df5SJacob Faibussowitsch   Developer Notes:
9371bb7acecfSBarry Smith   It is unclear why this function needs to exist since one can simply call `DMPolytopeMatchVertexOrientation()` and error if none is found
9372bb7acecfSBarry Smith 
93731cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPolytopeType`, `DMPolytopeMatchVertexOrientation()`, `DMPolytopeGetOrientation()`
9374b5a892a1SMatthew G. Knepley @*/
9375d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPolytopeGetVertexOrientation(DMPolytopeType ct, const PetscInt sourceCone[], const PetscInt targetCone[], PetscInt *ornt)
9376d71ae5a4SJacob Faibussowitsch {
9377b5a892a1SMatthew G. Knepley   PetscBool found;
9378b5a892a1SMatthew G. Knepley 
9379b5a892a1SMatthew G. Knepley   PetscFunctionBegin;
93809566063dSJacob Faibussowitsch   PetscCall(DMPolytopeMatchVertexOrientation(ct, sourceCone, targetCone, ornt, &found));
93817a8be351SBarry Smith   PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Could not find orientation for %s", DMPolytopeTypes[ct]);
93823ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
9383b5a892a1SMatthew G. Knepley }
9384012bc364SMatthew G. Knepley 
9385012bc364SMatthew G. Knepley /*@C
9386012bc364SMatthew G. Knepley   DMPolytopeInCellTest - Check whether a point lies inside the reference cell of given type
9387012bc364SMatthew G. Knepley 
938820f4b53cSBarry Smith   Not Collective
9389012bc364SMatthew G. Knepley 
9390012bc364SMatthew G. Knepley   Input Parameters:
9391bb7acecfSBarry Smith + ct    - The `DMPolytopeType`
9392012bc364SMatthew G. Knepley - point - Coordinates of the point
9393012bc364SMatthew G. Knepley 
93942fe279fdSBarry Smith   Output Parameter:
9395012bc364SMatthew G. Knepley . inside - Flag indicating whether the point is inside the reference cell of given type
9396012bc364SMatthew G. Knepley 
9397012bc364SMatthew G. Knepley   Level: advanced
9398012bc364SMatthew G. Knepley 
93991cc06b55SBarry Smith .seealso: [](ch_dmbase), `DM`, `DMPolytopeType`, `DMLocatePoints()`
9400012bc364SMatthew G. Knepley @*/
9401d71ae5a4SJacob Faibussowitsch PetscErrorCode DMPolytopeInCellTest(DMPolytopeType ct, const PetscReal point[], PetscBool *inside)
9402d71ae5a4SJacob Faibussowitsch {
9403012bc364SMatthew G. Knepley   PetscReal sum = 0.0;
9404012bc364SMatthew G. Knepley   PetscInt  d;
9405012bc364SMatthew G. Knepley 
9406012bc364SMatthew G. Knepley   PetscFunctionBegin;
9407012bc364SMatthew G. Knepley   *inside = PETSC_TRUE;
9408012bc364SMatthew G. Knepley   switch (ct) {
9409012bc364SMatthew G. Knepley   case DM_POLYTOPE_TRIANGLE:
9410012bc364SMatthew G. Knepley   case DM_POLYTOPE_TETRAHEDRON:
9411012bc364SMatthew G. Knepley     for (d = 0; d < DMPolytopeTypeGetDim(ct); ++d) {
94129371c9d4SSatish Balay       if (point[d] < -1.0) {
94139371c9d4SSatish Balay         *inside = PETSC_FALSE;
94149371c9d4SSatish Balay         break;
94159371c9d4SSatish Balay       }
9416012bc364SMatthew G. Knepley       sum += point[d];
9417012bc364SMatthew G. Knepley     }
94189371c9d4SSatish Balay     if (sum > PETSC_SMALL) {
94199371c9d4SSatish Balay       *inside = PETSC_FALSE;
94209371c9d4SSatish Balay       break;
94219371c9d4SSatish Balay     }
9422012bc364SMatthew G. Knepley     break;
9423012bc364SMatthew G. Knepley   case DM_POLYTOPE_QUADRILATERAL:
9424012bc364SMatthew G. Knepley   case DM_POLYTOPE_HEXAHEDRON:
9425012bc364SMatthew G. Knepley     for (d = 0; d < DMPolytopeTypeGetDim(ct); ++d)
94269371c9d4SSatish Balay       if (PetscAbsReal(point[d]) > 1. + PETSC_SMALL) {
94279371c9d4SSatish Balay         *inside = PETSC_FALSE;
9428012bc364SMatthew G. Knepley         break;
94299371c9d4SSatish Balay       }
94309371c9d4SSatish Balay     break;
9431d71ae5a4SJacob Faibussowitsch   default:
9432d71ae5a4SJacob Faibussowitsch     SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unsupported polytope type %s", DMPolytopeTypes[ct]);
9433012bc364SMatthew G. Knepley   }
94343ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
9435012bc364SMatthew G. Knepley }
9436adc21957SMatthew G. Knepley 
9437adc21957SMatthew G. Knepley /*@
9438adc21957SMatthew G. Knepley   DMReorderSectionSetDefault - Set flag indicating whether the local section should be reordered by default
9439adc21957SMatthew G. Knepley 
9440adc21957SMatthew G. Knepley   Logically collective
9441adc21957SMatthew G. Knepley 
9442adc21957SMatthew G. Knepley   Input Parameters:
9443adc21957SMatthew G. Knepley + dm      - The DM
9444adc21957SMatthew G. Knepley - reorder - Flag for reordering
9445adc21957SMatthew G. Knepley 
9446adc21957SMatthew G. Knepley   Level: intermediate
9447adc21957SMatthew G. Knepley 
9448adc21957SMatthew G. Knepley .seealso: `DMReorderSectionGetDefault()`
9449adc21957SMatthew G. Knepley @*/
9450adc21957SMatthew G. Knepley PetscErrorCode DMReorderSectionSetDefault(DM dm, DMReorderDefaultFlag reorder)
9451adc21957SMatthew G. Knepley {
9452adc21957SMatthew G. Knepley   PetscFunctionBegin;
9453adc21957SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9454adc21957SMatthew G. Knepley   PetscTryMethod(dm, "DMReorderSectionSetDefault_C", (DM, DMReorderDefaultFlag), (dm, reorder));
9455adc21957SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
9456adc21957SMatthew G. Knepley }
9457adc21957SMatthew G. Knepley 
9458adc21957SMatthew G. Knepley /*@
9459adc21957SMatthew G. Knepley   DMReorderSectionGetDefault - Get flag indicating whether the local section should be reordered by default
9460adc21957SMatthew G. Knepley 
9461adc21957SMatthew G. Knepley   Not collective
9462adc21957SMatthew G. Knepley 
9463adc21957SMatthew G. Knepley   Input Parameter:
9464adc21957SMatthew G. Knepley . dm - The DM
9465adc21957SMatthew G. Knepley 
9466adc21957SMatthew G. Knepley   Output Parameter:
9467adc21957SMatthew G. Knepley . reorder - Flag for reordering
9468adc21957SMatthew G. Knepley 
9469adc21957SMatthew G. Knepley   Level: intermediate
9470adc21957SMatthew G. Knepley 
9471adc21957SMatthew G. Knepley .seealso: `DMReorderSetDefault()`
9472adc21957SMatthew G. Knepley @*/
9473adc21957SMatthew G. Knepley PetscErrorCode DMReorderSectionGetDefault(DM dm, DMReorderDefaultFlag *reorder)
9474adc21957SMatthew G. Knepley {
9475adc21957SMatthew G. Knepley   PetscFunctionBegin;
9476adc21957SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9477adc21957SMatthew G. Knepley   PetscAssertPointer(reorder, 2);
9478adc21957SMatthew G. Knepley   *reorder = DM_REORDER_DEFAULT_NOTSET;
9479adc21957SMatthew G. Knepley   PetscTryMethod(dm, "DMReorderSectionGetDefault_C", (DM, DMReorderDefaultFlag *), (dm, reorder));
9480adc21957SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
9481adc21957SMatthew G. Knepley }
9482adc21957SMatthew G. Knepley 
9483adc21957SMatthew G. Knepley /*@C
9484adc21957SMatthew G. Knepley   DMReorderSectionSetType - Set the type of local section reordering
9485adc21957SMatthew G. Knepley 
9486adc21957SMatthew G. Knepley   Logically collective
9487adc21957SMatthew G. Knepley 
9488adc21957SMatthew G. Knepley   Input Parameters:
9489adc21957SMatthew G. Knepley + dm      - The DM
9490adc21957SMatthew G. Knepley - reorder - The reordering method
9491adc21957SMatthew G. Knepley 
9492adc21957SMatthew G. Knepley   Level: intermediate
9493adc21957SMatthew G. Knepley 
9494adc21957SMatthew G. Knepley .seealso: `DMReorderSectionGetType()`, `DMReorderSectionSetDefault()`
9495adc21957SMatthew G. Knepley @*/
9496adc21957SMatthew G. Knepley PetscErrorCode DMReorderSectionSetType(DM dm, MatOrderingType reorder)
9497adc21957SMatthew G. Knepley {
9498adc21957SMatthew G. Knepley   PetscFunctionBegin;
9499adc21957SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9500adc21957SMatthew G. Knepley   PetscTryMethod(dm, "DMReorderSectionSetType_C", (DM, MatOrderingType), (dm, reorder));
9501adc21957SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
9502adc21957SMatthew G. Knepley }
9503adc21957SMatthew G. Knepley 
9504adc21957SMatthew G. Knepley /*@C
9505adc21957SMatthew G. Knepley   DMReorderSectionGetType - Get the reordering type for the local section
9506adc21957SMatthew G. Knepley 
9507adc21957SMatthew G. Knepley   Not collective
9508adc21957SMatthew G. Knepley 
9509adc21957SMatthew G. Knepley   Input Parameter:
9510adc21957SMatthew G. Knepley . dm - The DM
9511adc21957SMatthew G. Knepley 
9512adc21957SMatthew G. Knepley   Output Parameter:
9513adc21957SMatthew G. Knepley . reorder - The reordering method
9514adc21957SMatthew G. Knepley 
9515adc21957SMatthew G. Knepley   Level: intermediate
9516adc21957SMatthew G. Knepley 
9517adc21957SMatthew G. Knepley .seealso: `DMReorderSetDefault()`, `DMReorderSectionGetDefault()`
9518adc21957SMatthew G. Knepley @*/
9519adc21957SMatthew G. Knepley PetscErrorCode DMReorderSectionGetType(DM dm, MatOrderingType *reorder)
9520adc21957SMatthew G. Knepley {
9521adc21957SMatthew G. Knepley   PetscFunctionBegin;
9522adc21957SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9523adc21957SMatthew G. Knepley   PetscAssertPointer(reorder, 2);
9524adc21957SMatthew G. Knepley   *reorder = NULL;
9525adc21957SMatthew G. Knepley   PetscTryMethod(dm, "DMReorderSectionGetType_C", (DM, MatOrderingType *), (dm, reorder));
9526adc21957SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
9527adc21957SMatthew G. Knepley }
9528