xref: /petsc/src/dm/impls/plex/plex.c (revision 6ed19f2fa432093f1e149c0818a339cf74604c13)
1af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h>   /*I      "petscdmplex.h"   I*/
2af0996ceSBarry Smith #include <petsc/private/isimpl.h>
3e5c6e791SKarl Rupp #include <petsc/private/vecimpl.h>
48135c375SStefano Zampini #include <petsc/private/glvisvecimpl.h>
50c312b8eSJed Brown #include <petscsf.h>
6e228b242SToby Isaac #include <petscds.h>
7e412dcbdSMatthew G. Knepley #include <petscdraw.h>
8f19dbd58SToby Isaac #include <petscdmfield.h>
9552f7358SJed Brown 
10552f7358SJed Brown /* Logging support */
11cadf77a0SMark Adams PetscLogEvent DMPLEX_Interpolate, DMPLEX_Partition, DMPLEX_Distribute, DMPLEX_DistributeCones, DMPLEX_DistributeLabels, DMPLEX_DistributeSF, DMPLEX_DistributeOverlap, DMPLEX_DistributeField, DMPLEX_DistributeData, DMPLEX_Migrate, DMPLEX_InterpolateSF, DMPLEX_GlobalToNaturalBegin, DMPLEX_GlobalToNaturalEnd, DMPLEX_NaturalToGlobalBegin, DMPLEX_NaturalToGlobalEnd, DMPLEX_Stratify, DMPLEX_Symmetrize, DMPLEX_Preallocate, DMPLEX_ResidualFEM, DMPLEX_JacobianFEM, DMPLEX_InterpolatorFEM, DMPLEX_InjectorFEM, DMPLEX_IntegralFEM, DMPLEX_CreateGmsh, DMPLEX_RebalanceSharedPoints, DMPLEX_PartSelf, DMPLEX_PartLabelInvert, DMPLEX_PartLabelCreateSF, DMPLEX_PartStratSF, DMPLEX_CreatePointSF,DMPLEX_LocatePoints;
12552f7358SJed Brown 
135a576424SJed Brown PETSC_EXTERN PetscErrorCode VecView_MPI(Vec, PetscViewer);
14552f7358SJed Brown 
15e5337592SStefano Zampini /*@
169318fe57SMatthew G. Knepley   DMPlexIsSimplex - Is the first cell in this mesh a simplex?
179318fe57SMatthew G. Knepley 
189318fe57SMatthew G. Knepley   Input Parameter:
199318fe57SMatthew G. Knepley . dm      - The DMPlex object
209318fe57SMatthew G. Knepley 
219318fe57SMatthew G. Knepley   Output Parameter:
229318fe57SMatthew G. Knepley . simplex - Flag checking for a simplex
239318fe57SMatthew G. Knepley 
249318fe57SMatthew G. Knepley   Note: This just gives the first range of cells found. If the mesh has several cell types, it will only give the first.
259318fe57SMatthew G. Knepley   If the mesh has no cells, this returns PETSC_FALSE.
269318fe57SMatthew G. Knepley 
279318fe57SMatthew G. Knepley   Level: intermediate
289318fe57SMatthew G. Knepley 
299318fe57SMatthew G. Knepley .seealso DMPlexGetSimplexOrBoxCells(), DMPlexGetCellType(), DMPlexGetHeightStratum(), DMPolytopeTypeGetNumVertices()
309318fe57SMatthew G. Knepley @*/
319318fe57SMatthew G. Knepley PetscErrorCode DMPlexIsSimplex(DM dm, PetscBool *simplex)
329318fe57SMatthew G. Knepley {
339318fe57SMatthew G. Knepley   DMPolytopeType ct;
349318fe57SMatthew G. Knepley   PetscInt       cStart, cEnd;
359318fe57SMatthew G. Knepley   PetscErrorCode ierr;
369318fe57SMatthew G. Knepley 
379318fe57SMatthew G. Knepley   PetscFunctionBegin;
389318fe57SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
399318fe57SMatthew G. Knepley   if (cEnd <= cStart) {*simplex = PETSC_FALSE; PetscFunctionReturn(0);}
409318fe57SMatthew G. Knepley   ierr = DMPlexGetCellType(dm, cStart, &ct);CHKERRQ(ierr);
419318fe57SMatthew G. Knepley   *simplex = DMPolytopeTypeGetNumVertices(ct) == DMPolytopeTypeGetDim(ct)+1 ? PETSC_TRUE : PETSC_FALSE;
429318fe57SMatthew G. Knepley   PetscFunctionReturn(0);
439318fe57SMatthew G. Knepley }
449318fe57SMatthew G. Knepley 
459318fe57SMatthew G. Knepley /*@
46412e9a14SMatthew G. Knepley   DMPlexGetSimplexOrBoxCells - Get the range of cells which are neither prisms nor ghost FV cells
47e5337592SStefano Zampini 
48412e9a14SMatthew G. Knepley   Input Parameter:
49412e9a14SMatthew G. Knepley + dm     - The DMPlex object
50412e9a14SMatthew G. Knepley - height - The cell height in the Plex, 0 is the default
51e5337592SStefano Zampini 
52e5337592SStefano Zampini   Output Parameters:
53412e9a14SMatthew G. Knepley + cStart - The first "normal" cell
54412e9a14SMatthew G. Knepley - cEnd   - The upper bound on "normal"" cells
55e5337592SStefano Zampini 
56412e9a14SMatthew G. Knepley   Note: This just gives the first range of cells found. If the mesh has several cell types, it will only give the first.
57e5337592SStefano Zampini 
58412e9a14SMatthew G. Knepley   Level: developer
59e5337592SStefano Zampini 
608065b584SMatthew Knepley .seealso DMPlexConstructGhostCells(), DMPlexGetGhostCellStratum()
61e5337592SStefano Zampini @*/
62412e9a14SMatthew G. Knepley PetscErrorCode DMPlexGetSimplexOrBoxCells(DM dm, PetscInt height, PetscInt *cStart, PetscInt *cEnd)
63e5337592SStefano Zampini {
64412e9a14SMatthew G. Knepley   DMPolytopeType ct = DM_POLYTOPE_UNKNOWN;
65412e9a14SMatthew G. Knepley   PetscInt       cS, cE, c;
66e5337592SStefano Zampini   PetscErrorCode ierr;
67e5337592SStefano Zampini 
68e5337592SStefano Zampini   PetscFunctionBegin;
69412e9a14SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, PetscMax(height, 0), &cS, &cE);CHKERRQ(ierr);
70412e9a14SMatthew G. Knepley   for (c = cS; c < cE; ++c) {
71412e9a14SMatthew G. Knepley     DMPolytopeType cct;
72412e9a14SMatthew G. Knepley 
73412e9a14SMatthew G. Knepley     ierr = DMPlexGetCellType(dm, c, &cct);CHKERRQ(ierr);
74412e9a14SMatthew G. Knepley     if ((PetscInt) cct < 0) break;
75412e9a14SMatthew G. Knepley     switch (cct) {
76ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_POINT:
77ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_SEGMENT:
78ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_TRIANGLE:
79ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_QUADRILATERAL:
80ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_TETRAHEDRON:
81ba2698f1SMatthew G. Knepley       case DM_POLYTOPE_HEXAHEDRON:
82412e9a14SMatthew G. Knepley         ct = cct;
83e5337592SStefano Zampini         break;
84412e9a14SMatthew G. Knepley       default: break;
85e5337592SStefano Zampini     }
86412e9a14SMatthew G. Knepley     if (ct != DM_POLYTOPE_UNKNOWN) break;
87e5337592SStefano Zampini   }
88412e9a14SMatthew G. Knepley   if (ct != DM_POLYTOPE_UNKNOWN) {
89412e9a14SMatthew G. Knepley     DMLabel ctLabel;
90412e9a14SMatthew G. Knepley 
91412e9a14SMatthew G. Knepley     ierr = DMPlexGetCellTypeLabel(dm, &ctLabel);CHKERRQ(ierr);
92412e9a14SMatthew G. Knepley     ierr = DMLabelGetStratumBounds(ctLabel, ct, &cS, &cE);CHKERRQ(ierr);
93e5337592SStefano Zampini   }
94412e9a14SMatthew G. Knepley   if (cStart) *cStart = cS;
95412e9a14SMatthew G. Knepley   if (cEnd)   *cEnd   = cE;
96e5337592SStefano Zampini   PetscFunctionReturn(0);
97e5337592SStefano Zampini }
98e5337592SStefano Zampini 
997afe7537SMatthew G. Knepley PetscErrorCode DMPlexGetFieldType_Internal(DM dm, PetscSection section, PetscInt field, PetscInt *sStart, PetscInt *sEnd, PetscViewerVTKFieldType *ft)
1007e42fee7SMatthew G. Knepley {
101412e9a14SMatthew G. Knepley   PetscInt       cdim, pStart, pEnd, vStart, vEnd, cStart, cEnd;
102a99a26bcSAdrian Croucher   PetscInt       vcdof[2] = {0,0}, globalvcdof[2];
1037e42fee7SMatthew G. Knepley   PetscErrorCode ierr;
1047e42fee7SMatthew G. Knepley 
1057e42fee7SMatthew G. Knepley   PetscFunctionBegin;
106e630c359SToby Isaac   *ft  = PETSC_VTK_INVALID;
107f094498dSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
1087e42fee7SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
109412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1107e42fee7SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
1117e42fee7SMatthew G. Knepley   if (field >= 0) {
112a99a26bcSAdrian Croucher     if ((vStart >= pStart) && (vStart < pEnd)) {ierr = PetscSectionGetFieldDof(section, vStart, field, &vcdof[0]);CHKERRQ(ierr);}
113a99a26bcSAdrian Croucher     if ((cStart >= pStart) && (cStart < pEnd)) {ierr = PetscSectionGetFieldDof(section, cStart, field, &vcdof[1]);CHKERRQ(ierr);}
1147e42fee7SMatthew G. Knepley   } else {
115a99a26bcSAdrian Croucher     if ((vStart >= pStart) && (vStart < pEnd)) {ierr = PetscSectionGetDof(section, vStart, &vcdof[0]);CHKERRQ(ierr);}
116a99a26bcSAdrian Croucher     if ((cStart >= pStart) && (cStart < pEnd)) {ierr = PetscSectionGetDof(section, cStart, &vcdof[1]);CHKERRQ(ierr);}
1177e42fee7SMatthew G. Knepley   }
118ffc4695bSBarry Smith   ierr = MPI_Allreduce(vcdof, globalvcdof, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
119a99a26bcSAdrian Croucher   if (globalvcdof[0]) {
1207e42fee7SMatthew G. Knepley     *sStart = vStart;
1217e42fee7SMatthew G. Knepley     *sEnd   = vEnd;
122f094498dSMatthew G. Knepley     if (globalvcdof[0] == cdim) *ft = PETSC_VTK_POINT_VECTOR_FIELD;
1237e42fee7SMatthew G. Knepley     else                        *ft = PETSC_VTK_POINT_FIELD;
124a99a26bcSAdrian Croucher   } else if (globalvcdof[1]) {
1257e42fee7SMatthew G. Knepley     *sStart = cStart;
1267e42fee7SMatthew G. Knepley     *sEnd   = cEnd;
127f094498dSMatthew G. Knepley     if (globalvcdof[1] == cdim) *ft = PETSC_VTK_CELL_VECTOR_FIELD;
1287e42fee7SMatthew G. Knepley     else                        *ft = PETSC_VTK_CELL_FIELD;
129e630c359SToby Isaac   } else {
130e630c359SToby Isaac     if (field >= 0) {
131e630c359SToby Isaac       const char *fieldname;
132e630c359SToby Isaac 
133e630c359SToby Isaac       ierr = PetscSectionGetFieldName(section, field, &fieldname);CHKERRQ(ierr);
134e630c359SToby Isaac       ierr = PetscInfo2((PetscObject) dm, "Could not classify VTK output type of section field %D \"%s\"\n", field, fieldname);CHKERRQ(ierr);
135e630c359SToby Isaac     } else {
1366823f3c5SBlaise Bourdin       ierr = PetscInfo((PetscObject) dm, "Could not classify VTK output type of section\"%s\"\n");CHKERRQ(ierr);
137e630c359SToby Isaac     }
138e630c359SToby Isaac   }
1397e42fee7SMatthew G. Knepley   PetscFunctionReturn(0);
1407e42fee7SMatthew G. Knepley }
1417e42fee7SMatthew G. Knepley 
1427cd05799SMatthew G. Knepley static PetscErrorCode VecView_Plex_Local_Draw(Vec v, PetscViewer viewer)
143e412dcbdSMatthew G. Knepley {
144e412dcbdSMatthew G. Knepley   DM                 dm;
145d1df6f1dSMatthew G. Knepley   PetscSection       s;
146e412dcbdSMatthew G. Knepley   PetscDraw          draw, popup;
147e412dcbdSMatthew G. Knepley   DM                 cdm;
148e412dcbdSMatthew G. Knepley   PetscSection       coordSection;
149e412dcbdSMatthew G. Knepley   Vec                coordinates;
150e412dcbdSMatthew G. Knepley   const PetscScalar *coords, *array;
151e412dcbdSMatthew G. Knepley   PetscReal          bound[4] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL};
152339e3443SMatthew G. Knepley   PetscReal          vbound[2], time;
153339e3443SMatthew G. Knepley   PetscBool          isnull, flg;
154d1df6f1dSMatthew G. Knepley   PetscInt           dim, Nf, f, Nc, comp, vStart, vEnd, cStart, cEnd, c, N, level, step, w = 0;
155e412dcbdSMatthew G. Knepley   const char        *name;
156339e3443SMatthew G. Knepley   char               title[PETSC_MAX_PATH_LEN];
157e412dcbdSMatthew G. Knepley   PetscErrorCode     ierr;
158e412dcbdSMatthew G. Knepley 
159e412dcbdSMatthew G. Knepley   PetscFunctionBegin;
160d1df6f1dSMatthew G. Knepley   ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr);
161d1df6f1dSMatthew G. Knepley   ierr = PetscDrawIsNull(draw, &isnull);CHKERRQ(ierr);
162d1df6f1dSMatthew G. Knepley   if (isnull) PetscFunctionReturn(0);
163d1df6f1dSMatthew G. Knepley 
164e412dcbdSMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
165e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
1668135c375SStefano Zampini   if (dim != 2) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Cannot draw meshes of dimension %D. Use PETSCVIEWERGLVIS", dim);
16792fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr);
168d1df6f1dSMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
169e412dcbdSMatthew G. Knepley   ierr = DMGetCoarsenLevel(dm, &level);CHKERRQ(ierr);
170e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
17192fd8e1eSJed Brown   ierr = DMGetLocalSection(cdm, &coordSection);CHKERRQ(ierr);
172e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
173e412dcbdSMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
174e412dcbdSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
175e412dcbdSMatthew G. Knepley 
176e412dcbdSMatthew G. Knepley   ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
177339e3443SMatthew G. Knepley   ierr = DMGetOutputSequenceNumber(dm, &step, &time);CHKERRQ(ierr);
178e412dcbdSMatthew G. Knepley 
179e412dcbdSMatthew G. Knepley   ierr = VecGetLocalSize(coordinates, &N);CHKERRQ(ierr);
180e412dcbdSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &coords);CHKERRQ(ierr);
181e412dcbdSMatthew G. Knepley   for (c = 0; c < N; c += dim) {
1820c81f2a8SMatthew G. Knepley     bound[0] = PetscMin(bound[0], PetscRealPart(coords[c]));   bound[2] = PetscMax(bound[2], PetscRealPart(coords[c]));
1830c81f2a8SMatthew G. Knepley     bound[1] = PetscMin(bound[1], PetscRealPart(coords[c+1])); bound[3] = PetscMax(bound[3], PetscRealPart(coords[c+1]));
184e412dcbdSMatthew G. Knepley   }
185e412dcbdSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &coords);CHKERRQ(ierr);
186e412dcbdSMatthew G. Knepley   ierr = PetscDrawClear(draw);CHKERRQ(ierr);
187e412dcbdSMatthew G. Knepley 
188d1df6f1dSMatthew G. Knepley   /* Could implement something like DMDASelectFields() */
189d1df6f1dSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
190d1df6f1dSMatthew G. Knepley     DM   fdm = dm;
191d1df6f1dSMatthew G. Knepley     Vec  fv  = v;
192d1df6f1dSMatthew G. Knepley     IS   fis;
193d1df6f1dSMatthew G. Knepley     char prefix[PETSC_MAX_PATH_LEN];
194d1df6f1dSMatthew G. Knepley     const char *fname;
195d1df6f1dSMatthew G. Knepley 
196d1df6f1dSMatthew G. Knepley     ierr = PetscSectionGetFieldComponents(s, f, &Nc);CHKERRQ(ierr);
197d1df6f1dSMatthew G. Knepley     ierr = PetscSectionGetFieldName(s, f, &fname);CHKERRQ(ierr);
198d1df6f1dSMatthew G. Knepley 
199a126751eSBarry Smith     if (v->hdr.prefix) {ierr = PetscStrncpy(prefix, v->hdr.prefix,sizeof(prefix));CHKERRQ(ierr);}
200d1df6f1dSMatthew G. Knepley     else               {prefix[0] = '\0';}
201d1df6f1dSMatthew G. Knepley     if (Nf > 1) {
202d1df6f1dSMatthew G. Knepley       ierr = DMCreateSubDM(dm, 1, &f, &fis, &fdm);CHKERRQ(ierr);
203d1df6f1dSMatthew G. Knepley       ierr = VecGetSubVector(v, fis, &fv);CHKERRQ(ierr);
204a126751eSBarry Smith       ierr = PetscStrlcat(prefix, fname,sizeof(prefix));CHKERRQ(ierr);
205a126751eSBarry Smith       ierr = PetscStrlcat(prefix, "_",sizeof(prefix));CHKERRQ(ierr);
206d1df6f1dSMatthew G. Knepley     }
207d1df6f1dSMatthew G. Knepley     for (comp = 0; comp < Nc; ++comp, ++w) {
208d1df6f1dSMatthew G. Knepley       PetscInt nmax = 2;
209d1df6f1dSMatthew G. Knepley 
210d1df6f1dSMatthew G. Knepley       ierr = PetscViewerDrawGetDraw(viewer, w, &draw);CHKERRQ(ierr);
211d1df6f1dSMatthew G. Knepley       if (Nc > 1) {ierr = PetscSNPrintf(title, sizeof(title), "%s:%s_%D Step: %D Time: %.4g", name, fname, comp, step, time);CHKERRQ(ierr);}
212d1df6f1dSMatthew G. Knepley       else        {ierr = PetscSNPrintf(title, sizeof(title), "%s:%s Step: %D Time: %.4g", name, fname, step, time);CHKERRQ(ierr);}
213d1df6f1dSMatthew G. Knepley       ierr = PetscDrawSetTitle(draw, title);CHKERRQ(ierr);
214d1df6f1dSMatthew G. Knepley 
215d1df6f1dSMatthew G. Knepley       /* TODO Get max and min only for this component */
216d1df6f1dSMatthew G. Knepley       ierr = PetscOptionsGetRealArray(NULL, prefix, "-vec_view_bounds", vbound, &nmax, &flg);CHKERRQ(ierr);
217339e3443SMatthew G. Knepley       if (!flg) {
218d1df6f1dSMatthew G. Knepley         ierr = VecMin(fv, NULL, &vbound[0]);CHKERRQ(ierr);
219d1df6f1dSMatthew G. Knepley         ierr = VecMax(fv, NULL, &vbound[1]);CHKERRQ(ierr);
220d1df6f1dSMatthew G. Knepley         if (vbound[1] <= vbound[0]) vbound[1] = vbound[0] + 1.0;
221339e3443SMatthew G. Knepley       }
222e412dcbdSMatthew G. Knepley       ierr = PetscDrawGetPopup(draw, &popup);CHKERRQ(ierr);
223339e3443SMatthew G. Knepley       ierr = PetscDrawScalePopup(popup, vbound[0], vbound[1]);CHKERRQ(ierr);
224d1df6f1dSMatthew G. Knepley       ierr = PetscDrawSetCoordinates(draw, bound[0], bound[1], bound[2], bound[3]);CHKERRQ(ierr);
225e412dcbdSMatthew G. Knepley 
226d1df6f1dSMatthew G. Knepley       ierr = VecGetArrayRead(fv, &array);CHKERRQ(ierr);
227e412dcbdSMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {
22899a2f7bcSMatthew G. Knepley         PetscScalar *coords = NULL, *a = NULL;
229e56f9228SJed Brown         PetscInt     numCoords, color[4] = {-1,-1,-1,-1};
230e412dcbdSMatthew G. Knepley 
231d1df6f1dSMatthew G. Knepley         ierr = DMPlexPointLocalRead(fdm, c, array, &a);CHKERRQ(ierr);
232339e3443SMatthew G. Knepley         if (a) {
233d1df6f1dSMatthew G. Knepley           color[0] = PetscDrawRealToColor(PetscRealPart(a[comp]), vbound[0], vbound[1]);
234339e3443SMatthew G. Knepley           color[1] = color[2] = color[3] = color[0];
235339e3443SMatthew G. Knepley         } else {
236339e3443SMatthew G. Knepley           PetscScalar *vals = NULL;
237339e3443SMatthew G. Knepley           PetscInt     numVals, va;
238339e3443SMatthew G. Knepley 
239d1df6f1dSMatthew G. Knepley           ierr = DMPlexVecGetClosure(fdm, NULL, fv, c, &numVals, &vals);CHKERRQ(ierr);
240d1df6f1dSMatthew G. Knepley           if (numVals % Nc) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "The number of components %D does not divide the number of values in the closure %D", Nc, numVals);
241d1df6f1dSMatthew G. Knepley           switch (numVals/Nc) {
242d1df6f1dSMatthew G. Knepley           case 3: /* P1 Triangle */
243d1df6f1dSMatthew G. Knepley           case 4: /* P1 Quadrangle */
244d1df6f1dSMatthew G. Knepley             for (va = 0; va < numVals/Nc; ++va) color[va] = PetscDrawRealToColor(PetscRealPart(vals[va*Nc+comp]), vbound[0], vbound[1]);
245339e3443SMatthew G. Knepley             break;
246d1df6f1dSMatthew G. Knepley           case 6: /* P2 Triangle */
247d1df6f1dSMatthew G. Knepley           case 8: /* P2 Quadrangle */
248d1df6f1dSMatthew G. Knepley             for (va = 0; va < numVals/(Nc*2); ++va) color[va] = PetscDrawRealToColor(PetscRealPart(vals[va*Nc+comp + numVals/(Nc*2)]), vbound[0], vbound[1]);
249d1df6f1dSMatthew G. Knepley             break;
250d1df6f1dSMatthew G. Knepley           default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of values for cell closure %D cannot be handled", numVals/Nc);
251339e3443SMatthew G. Knepley           }
252d1df6f1dSMatthew G. Knepley           ierr = DMPlexVecRestoreClosure(fdm, NULL, fv, c, &numVals, &vals);CHKERRQ(ierr);
253339e3443SMatthew G. Knepley         }
254e412dcbdSMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
255e412dcbdSMatthew G. Knepley         switch (numCoords) {
256e412dcbdSMatthew G. Knepley         case 6:
257339e3443SMatthew G. Knepley           ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), color[0], color[1], color[2]);CHKERRQ(ierr);
258e412dcbdSMatthew G. Knepley           break;
259e412dcbdSMatthew G. Knepley         case 8:
260339e3443SMatthew G. Knepley           ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), color[0], color[1], color[2]);CHKERRQ(ierr);
261339e3443SMatthew G. Knepley           ierr = PetscDrawTriangle(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[6]), PetscRealPart(coords[7]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), color[2], color[3], color[0]);CHKERRQ(ierr);
262e412dcbdSMatthew G. Knepley           break;
263e412dcbdSMatthew G. Knepley         default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells with %D coordinates", numCoords);
264e412dcbdSMatthew G. Knepley         }
265e412dcbdSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
266e412dcbdSMatthew G. Knepley       }
267d1df6f1dSMatthew G. Knepley       ierr = VecRestoreArrayRead(fv, &array);CHKERRQ(ierr);
268e412dcbdSMatthew G. Knepley       ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
269e412dcbdSMatthew G. Knepley       ierr = PetscDrawPause(draw);CHKERRQ(ierr);
270e412dcbdSMatthew G. Knepley       ierr = PetscDrawSave(draw);CHKERRQ(ierr);
271d1df6f1dSMatthew G. Knepley     }
272d1df6f1dSMatthew G. Knepley     if (Nf > 1) {
273d1df6f1dSMatthew G. Knepley       ierr = VecRestoreSubVector(v, fis, &fv);CHKERRQ(ierr);
274d1df6f1dSMatthew G. Knepley       ierr = ISDestroy(&fis);CHKERRQ(ierr);
275d1df6f1dSMatthew G. Knepley       ierr = DMDestroy(&fdm);CHKERRQ(ierr);
276d1df6f1dSMatthew G. Knepley     }
277d1df6f1dSMatthew G. Knepley   }
278e412dcbdSMatthew G. Knepley   PetscFunctionReturn(0);
279e412dcbdSMatthew G. Knepley }
280e412dcbdSMatthew G. Knepley 
281684b87d9SLisandro Dalcin static PetscErrorCode VecView_Plex_Local_VTK(Vec v, PetscViewer viewer)
282684b87d9SLisandro Dalcin {
283684b87d9SLisandro Dalcin   DM                      dm;
284684b87d9SLisandro Dalcin   Vec                     locv;
285684b87d9SLisandro Dalcin   const char              *name;
286684b87d9SLisandro Dalcin   PetscSection            section;
287684b87d9SLisandro Dalcin   PetscInt                pStart, pEnd;
288e630c359SToby Isaac   PetscInt                numFields;
289684b87d9SLisandro Dalcin   PetscViewerVTKFieldType ft;
290684b87d9SLisandro Dalcin   PetscErrorCode          ierr;
291684b87d9SLisandro Dalcin 
292684b87d9SLisandro Dalcin   PetscFunctionBegin;
293684b87d9SLisandro Dalcin   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
294684b87d9SLisandro Dalcin   ierr = DMCreateLocalVector(dm, &locv);CHKERRQ(ierr); /* VTK viewer requires exclusive ownership of the vector */
295684b87d9SLisandro Dalcin   ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
296684b87d9SLisandro Dalcin   ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
297684b87d9SLisandro Dalcin   ierr = VecCopy(v, locv);CHKERRQ(ierr);
29892fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
299e630c359SToby Isaac   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
300e630c359SToby Isaac   if (!numFields) {
301684b87d9SLisandro Dalcin     ierr = DMPlexGetFieldType_Internal(dm, section, PETSC_DETERMINE, &pStart, &pEnd, &ft);CHKERRQ(ierr);
302e630c359SToby Isaac     ierr = PetscViewerVTKAddField(viewer, (PetscObject) dm, DMPlexVTKWriteAll, PETSC_DEFAULT, ft, PETSC_TRUE,(PetscObject) locv);CHKERRQ(ierr);
303e630c359SToby Isaac   } else {
304e630c359SToby Isaac     PetscInt f;
305e630c359SToby Isaac 
306e630c359SToby Isaac     for (f = 0; f < numFields; f++) {
307e630c359SToby Isaac       ierr = DMPlexGetFieldType_Internal(dm, section, f, &pStart, &pEnd, &ft);CHKERRQ(ierr);
308e630c359SToby Isaac       if (ft == PETSC_VTK_INVALID) continue;
309e630c359SToby Isaac       ierr = PetscObjectReference((PetscObject)locv);CHKERRQ(ierr);
310e630c359SToby Isaac       ierr = PetscViewerVTKAddField(viewer, (PetscObject) dm, DMPlexVTKWriteAll, f, ft, PETSC_TRUE,(PetscObject) locv);CHKERRQ(ierr);
311e630c359SToby Isaac     }
312e630c359SToby Isaac     ierr = VecDestroy(&locv);CHKERRQ(ierr);
313e630c359SToby Isaac   }
314684b87d9SLisandro Dalcin   PetscFunctionReturn(0);
315684b87d9SLisandro Dalcin }
316684b87d9SLisandro Dalcin 
317552f7358SJed Brown PetscErrorCode VecView_Plex_Local(Vec v, PetscViewer viewer)
318552f7358SJed Brown {
319552f7358SJed Brown   DM             dm;
320684b87d9SLisandro Dalcin   PetscBool      isvtk, ishdf5, isdraw, isglvis;
321552f7358SJed Brown   PetscErrorCode ierr;
322552f7358SJed Brown 
323552f7358SJed Brown   PetscFunctionBegin;
324552f7358SJed Brown   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
32582f516ccSBarry Smith   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
326552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,   &isvtk);CHKERRQ(ierr);
327b136c2c9SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,  &ishdf5);CHKERRQ(ierr);
328f13a32a3SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,  &isdraw);CHKERRQ(ierr);
3298135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS, &isglvis);CHKERRQ(ierr);
330684b87d9SLisandro Dalcin   if (isvtk || ishdf5 || isdraw || isglvis) {
331684b87d9SLisandro Dalcin     PetscInt    i,numFields;
332684b87d9SLisandro Dalcin     PetscObject fe;
333ef31f671SMatthew G. Knepley     PetscBool   fem = PETSC_FALSE;
334684b87d9SLisandro Dalcin     Vec         locv = v;
335684b87d9SLisandro Dalcin     const char  *name;
336684b87d9SLisandro Dalcin     PetscInt    step;
337684b87d9SLisandro Dalcin     PetscReal   time;
338ef31f671SMatthew G. Knepley 
339ef31f671SMatthew G. Knepley     ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
340684b87d9SLisandro Dalcin     for (i=0; i<numFields; i++) {
34144a7f3ddSMatthew G. Knepley       ierr = DMGetField(dm, i, NULL, &fe);CHKERRQ(ierr);
342684b87d9SLisandro Dalcin       if (fe->classid == PETSCFE_CLASSID) { fem = PETSC_TRUE; break; }
343ef31f671SMatthew G. Knepley     }
344684b87d9SLisandro Dalcin     if (fem) {
345798534f6SMatthew G. Knepley       PetscObject isZero;
346798534f6SMatthew G. Knepley 
347684b87d9SLisandro Dalcin       ierr = DMGetLocalVector(dm, &locv);CHKERRQ(ierr);
348684b87d9SLisandro Dalcin       ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
349684b87d9SLisandro Dalcin       ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
350798534f6SMatthew G. Knepley       ierr = PetscObjectQuery((PetscObject) v, "__Vec_bc_zero__", &isZero);CHKERRQ(ierr);
351798534f6SMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) locv, "__Vec_bc_zero__", isZero);CHKERRQ(ierr);
352684b87d9SLisandro Dalcin       ierr = VecCopy(v, locv);CHKERRQ(ierr);
353684b87d9SLisandro Dalcin       ierr = DMGetOutputSequenceNumber(dm, NULL, &time);CHKERRQ(ierr);
354684b87d9SLisandro Dalcin       ierr = DMPlexInsertBoundaryValues(dm, PETSC_TRUE, locv, time, NULL, NULL, NULL);CHKERRQ(ierr);
355ef31f671SMatthew G. Knepley     }
356552f7358SJed Brown     if (isvtk) {
357684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_VTK(locv, viewer);CHKERRQ(ierr);
358b136c2c9SMatthew G. Knepley     } else if (ishdf5) {
359b136c2c9SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
360684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_HDF5_Internal(locv, viewer);CHKERRQ(ierr);
361b136c2c9SMatthew G. Knepley #else
362b136c2c9SMatthew G. Knepley       SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
363b136c2c9SMatthew G. Knepley #endif
364f13a32a3SMatthew G. Knepley     } else if (isdraw) {
365684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_Draw(locv, viewer);CHKERRQ(ierr);
366684b87d9SLisandro Dalcin     } else if (isglvis) {
367684b87d9SLisandro Dalcin       ierr = DMGetOutputSequenceNumber(dm, &step, NULL);CHKERRQ(ierr);
368684b87d9SLisandro Dalcin       ierr = PetscViewerGLVisSetSnapId(viewer, step);CHKERRQ(ierr);
369684b87d9SLisandro Dalcin       ierr = VecView_GLVis(locv, viewer);CHKERRQ(ierr);
370684b87d9SLisandro Dalcin     }
371798534f6SMatthew G. Knepley     if (fem) {
372798534f6SMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) locv, "__Vec_bc_zero__", NULL);CHKERRQ(ierr);
373798534f6SMatthew G. Knepley       ierr = DMRestoreLocalVector(dm, &locv);CHKERRQ(ierr);
374798534f6SMatthew G. Knepley     }
375552f7358SJed Brown   } else {
376684b87d9SLisandro Dalcin     PetscBool isseq;
377684b87d9SLisandro Dalcin 
378684b87d9SLisandro Dalcin     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
37955f2e967SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
38055f2e967SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
381552f7358SJed Brown   }
382552f7358SJed Brown   PetscFunctionReturn(0);
383552f7358SJed Brown }
384552f7358SJed Brown 
385552f7358SJed Brown PetscErrorCode VecView_Plex(Vec v, PetscViewer viewer)
386552f7358SJed Brown {
387552f7358SJed Brown   DM             dm;
3886823f3c5SBlaise Bourdin   PetscBool      isvtk, ishdf5, isdraw, isglvis, isexodusii;
389552f7358SJed Brown   PetscErrorCode ierr;
390552f7358SJed Brown 
391552f7358SJed Brown   PetscFunctionBegin;
392552f7358SJed Brown   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
39382f516ccSBarry Smith   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
394552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,      &isvtk);CHKERRQ(ierr);
39533c3e6b4SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,     &ishdf5);CHKERRQ(ierr);
396e412dcbdSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,     &isdraw);CHKERRQ(ierr);
3978135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS,    &isglvis);CHKERRQ(ierr);
3986823f3c5SBlaise Bourdin   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWEREXODUSII, &isexodusii);CHKERRQ(ierr);
399684b87d9SLisandro Dalcin   if (isvtk || isdraw || isglvis) {
400552f7358SJed Brown     Vec         locv;
401798534f6SMatthew G. Knepley     PetscObject isZero;
402552f7358SJed Brown     const char *name;
403552f7358SJed Brown 
404c8dd51e9SBarry Smith     ierr = DMGetLocalVector(dm, &locv);CHKERRQ(ierr);
405552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
406552f7358SJed Brown     ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
407552f7358SJed Brown     ierr = DMGlobalToLocalBegin(dm, v, INSERT_VALUES, locv);CHKERRQ(ierr);
408552f7358SJed Brown     ierr = DMGlobalToLocalEnd(dm, v, INSERT_VALUES, locv);CHKERRQ(ierr);
409798534f6SMatthew G. Knepley     ierr = PetscObjectQuery((PetscObject) v, "__Vec_bc_zero__", &isZero);CHKERRQ(ierr);
410798534f6SMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) locv, "__Vec_bc_zero__", isZero);CHKERRQ(ierr);
411552f7358SJed Brown     ierr = VecView_Plex_Local(locv, viewer);CHKERRQ(ierr);
412798534f6SMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) locv, "__Vec_bc_zero__", NULL);CHKERRQ(ierr);
413c8dd51e9SBarry Smith     ierr = DMRestoreLocalVector(dm, &locv);CHKERRQ(ierr);
414b136c2c9SMatthew G. Knepley   } else if (ishdf5) {
415b136c2c9SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
41639d25373SMatthew G. Knepley     ierr = VecView_Plex_HDF5_Internal(v, viewer);CHKERRQ(ierr);
417b136c2c9SMatthew G. Knepley #else
418b136c2c9SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
419b136c2c9SMatthew G. Knepley #endif
4206823f3c5SBlaise Bourdin   } else if (isexodusii) {
4216823f3c5SBlaise Bourdin #if defined(PETSC_HAVE_EXODUSII)
4226823f3c5SBlaise Bourdin     ierr = VecView_PlexExodusII_Internal(v, viewer);CHKERRQ(ierr);
4236823f3c5SBlaise Bourdin #else
4246823f3c5SBlaise Bourdin     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "ExodusII not supported in this build.\nPlease reconfigure using --download-exodusii");
4256823f3c5SBlaise Bourdin #endif
426552f7358SJed Brown   } else {
427684b87d9SLisandro Dalcin     PetscBool isseq;
428684b87d9SLisandro Dalcin 
429684b87d9SLisandro Dalcin     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
43055f2e967SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
43155f2e967SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
432552f7358SJed Brown   }
433552f7358SJed Brown   PetscFunctionReturn(0);
434552f7358SJed Brown }
435552f7358SJed Brown 
436d930f514SMatthew G. Knepley PetscErrorCode VecView_Plex_Native(Vec originalv, PetscViewer viewer)
437d930f514SMatthew G. Knepley {
438d930f514SMatthew G. Knepley   DM                dm;
439d930f514SMatthew G. Knepley   MPI_Comm          comm;
440d930f514SMatthew G. Knepley   PetscViewerFormat format;
441d930f514SMatthew G. Knepley   Vec               v;
442d930f514SMatthew G. Knepley   PetscBool         isvtk, ishdf5;
443d930f514SMatthew G. Knepley   PetscErrorCode    ierr;
444d930f514SMatthew G. Knepley 
445d930f514SMatthew G. Knepley   PetscFunctionBegin;
446d930f514SMatthew G. Knepley   ierr = VecGetDM(originalv, &dm);CHKERRQ(ierr);
447d930f514SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject) originalv, &comm);CHKERRQ(ierr);
4482c4c0c81SMatthew G. Knepley   if (!dm) SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
449d930f514SMatthew G. Knepley   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
450d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
451d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,  &isvtk);CHKERRQ(ierr);
452d930f514SMatthew G. Knepley   if (format == PETSC_VIEWER_NATIVE) {
453a8ad634aSStefano Zampini     /* Natural ordering is the common case for DMDA, NATIVE means plain vector, for PLEX is the opposite */
454a8ad634aSStefano Zampini     /* this need a better fix */
455a8ad634aSStefano Zampini     if (dm->useNatural) {
456a8ad634aSStefano Zampini       if (dm->sfNatural) {
457d930f514SMatthew G. Knepley         const char *vecname;
458d930f514SMatthew G. Knepley         PetscInt    n, nroots;
459d930f514SMatthew G. Knepley 
460ca43db0aSBarry Smith         ierr = VecGetLocalSize(originalv, &n);CHKERRQ(ierr);
461d930f514SMatthew G. Knepley         ierr = PetscSFGetGraph(dm->sfNatural, &nroots, NULL, NULL, NULL);CHKERRQ(ierr);
462d930f514SMatthew G. Knepley         if (n == nroots) {
463d930f514SMatthew G. Knepley           ierr = DMGetGlobalVector(dm, &v);CHKERRQ(ierr);
464d930f514SMatthew G. Knepley           ierr = DMPlexGlobalToNaturalBegin(dm, originalv, v);CHKERRQ(ierr);
465d930f514SMatthew G. Knepley           ierr = DMPlexGlobalToNaturalEnd(dm, originalv, v);CHKERRQ(ierr);
466d930f514SMatthew G. Knepley           ierr = PetscObjectGetName((PetscObject) originalv, &vecname);CHKERRQ(ierr);
467d930f514SMatthew G. Knepley           ierr = PetscObjectSetName((PetscObject) v, vecname);CHKERRQ(ierr);
468d930f514SMatthew G. Knepley         } else SETERRQ(comm, PETSC_ERR_ARG_WRONG, "DM global to natural SF only handles global vectors");
469d930f514SMatthew G. Knepley       } else SETERRQ(comm, PETSC_ERR_ARG_WRONGSTATE, "DM global to natural SF was not created");
470a8ad634aSStefano Zampini     } else v = originalv;
471a8ad634aSStefano Zampini   } else v = originalv;
472a8ad634aSStefano Zampini 
473d930f514SMatthew G. Knepley   if (ishdf5) {
474d930f514SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
47539d25373SMatthew G. Knepley     ierr = VecView_Plex_HDF5_Native_Internal(v, viewer);CHKERRQ(ierr);
476d930f514SMatthew G. Knepley #else
477d930f514SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
478d930f514SMatthew G. Knepley #endif
479d930f514SMatthew G. Knepley   } else if (isvtk) {
480d930f514SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_SUP, "VTK format does not support viewing in natural order. Please switch to HDF5.");
481d930f514SMatthew G. Knepley   } else {
482d930f514SMatthew G. Knepley     PetscBool isseq;
483d930f514SMatthew G. Knepley 
484d930f514SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
485d930f514SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
486d930f514SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
487d930f514SMatthew G. Knepley   }
488a8ad634aSStefano Zampini   if (v != originalv) {ierr = DMRestoreGlobalVector(dm, &v);CHKERRQ(ierr);}
489d930f514SMatthew G. Knepley   PetscFunctionReturn(0);
490d930f514SMatthew G. Knepley }
491d930f514SMatthew G. Knepley 
4922c40f234SMatthew G. Knepley PetscErrorCode VecLoad_Plex_Local(Vec v, PetscViewer viewer)
4932c40f234SMatthew G. Knepley {
4942c40f234SMatthew G. Knepley   DM             dm;
4952c40f234SMatthew G. Knepley   PetscBool      ishdf5;
4962c40f234SMatthew G. Knepley   PetscErrorCode ierr;
4972c40f234SMatthew G. Knepley 
4982c40f234SMatthew G. Knepley   PetscFunctionBegin;
4992c40f234SMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
5002c40f234SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
5012c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
5022c40f234SMatthew G. Knepley   if (ishdf5) {
5032c40f234SMatthew G. Knepley     DM          dmBC;
5042c40f234SMatthew G. Knepley     Vec         gv;
5052c40f234SMatthew G. Knepley     const char *name;
5062c40f234SMatthew G. Knepley 
5072c40f234SMatthew G. Knepley     ierr = DMGetOutputDM(dm, &dmBC);CHKERRQ(ierr);
5082c40f234SMatthew G. Knepley     ierr = DMGetGlobalVector(dmBC, &gv);CHKERRQ(ierr);
5092c40f234SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
5102c40f234SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) gv, name);CHKERRQ(ierr);
5112c40f234SMatthew G. Knepley     ierr = VecLoad_Default(gv, viewer);CHKERRQ(ierr);
5122c40f234SMatthew G. Knepley     ierr = DMGlobalToLocalBegin(dmBC, gv, INSERT_VALUES, v);CHKERRQ(ierr);
5132c40f234SMatthew G. Knepley     ierr = DMGlobalToLocalEnd(dmBC, gv, INSERT_VALUES, v);CHKERRQ(ierr);
5142c40f234SMatthew G. Knepley     ierr = DMRestoreGlobalVector(dmBC, &gv);CHKERRQ(ierr);
5152c40f234SMatthew G. Knepley   } else {
5162c40f234SMatthew G. Knepley     ierr = VecLoad_Default(v, viewer);CHKERRQ(ierr);
5172c40f234SMatthew G. Knepley   }
5182c40f234SMatthew G. Knepley   PetscFunctionReturn(0);
5192c40f234SMatthew G. Knepley }
5202c40f234SMatthew G. Knepley 
5212c40f234SMatthew G. Knepley PetscErrorCode VecLoad_Plex(Vec v, PetscViewer viewer)
5222c40f234SMatthew G. Knepley {
5232c40f234SMatthew G. Knepley   DM             dm;
5246823f3c5SBlaise Bourdin   PetscBool      ishdf5,isexodusii;
5252c40f234SMatthew G. Knepley   PetscErrorCode ierr;
5262c40f234SMatthew G. Knepley 
5272c40f234SMatthew G. Knepley   PetscFunctionBegin;
5282c40f234SMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
5292c40f234SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
5302c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,     &ishdf5);CHKERRQ(ierr);
5316823f3c5SBlaise Bourdin   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWEREXODUSII, &isexodusii);CHKERRQ(ierr);
5322c40f234SMatthew G. Knepley   if (ishdf5) {
533878b459fSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
53439d25373SMatthew G. Knepley     ierr = VecLoad_Plex_HDF5_Internal(v, viewer);CHKERRQ(ierr);
535b136c2c9SMatthew G. Knepley #else
536b136c2c9SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
537878b459fSMatthew G. Knepley #endif
5386823f3c5SBlaise Bourdin   } else if (isexodusii) {
5396823f3c5SBlaise Bourdin #if defined(PETSC_HAVE_EXODUSII)
5406823f3c5SBlaise Bourdin     ierr = VecLoad_PlexExodusII_Internal(v, viewer);CHKERRQ(ierr);
5416823f3c5SBlaise Bourdin #else
5426823f3c5SBlaise Bourdin     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "ExodusII not supported in this build.\nPlease reconfigure using --download-exodusii");
5436823f3c5SBlaise Bourdin #endif
5442c40f234SMatthew G. Knepley   } else {
5452c40f234SMatthew G. Knepley     ierr = VecLoad_Default(v, viewer);CHKERRQ(ierr);
546552f7358SJed Brown   }
547552f7358SJed Brown   PetscFunctionReturn(0);
548552f7358SJed Brown }
549552f7358SJed Brown 
550d930f514SMatthew G. Knepley PetscErrorCode VecLoad_Plex_Native(Vec originalv, PetscViewer viewer)
551d930f514SMatthew G. Knepley {
552d930f514SMatthew G. Knepley   DM                dm;
553d930f514SMatthew G. Knepley   PetscViewerFormat format;
554d930f514SMatthew G. Knepley   PetscBool         ishdf5;
555d930f514SMatthew G. Knepley   PetscErrorCode    ierr;
556d930f514SMatthew G. Knepley 
557d930f514SMatthew G. Knepley   PetscFunctionBegin;
558d930f514SMatthew G. Knepley   ierr = VecGetDM(originalv, &dm);CHKERRQ(ierr);
559d930f514SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject) originalv), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
560d930f514SMatthew G. Knepley   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
561d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
562d930f514SMatthew G. Knepley   if (format == PETSC_VIEWER_NATIVE) {
563a8ad634aSStefano Zampini     if (dm->useNatural) {
564d930f514SMatthew G. Knepley       if (dm->sfNatural) {
565d930f514SMatthew G. Knepley         if (ishdf5) {
566d930f514SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
567d930f514SMatthew G. Knepley           Vec         v;
568d930f514SMatthew G. Knepley           const char *vecname;
569d930f514SMatthew G. Knepley 
570d930f514SMatthew G. Knepley           ierr = DMGetGlobalVector(dm, &v);CHKERRQ(ierr);
571d930f514SMatthew G. Knepley           ierr = PetscObjectGetName((PetscObject) originalv, &vecname);CHKERRQ(ierr);
572d930f514SMatthew G. Knepley           ierr = PetscObjectSetName((PetscObject) v, vecname);CHKERRQ(ierr);
57339d25373SMatthew G. Knepley           ierr = VecLoad_Plex_HDF5_Native_Internal(v, viewer);CHKERRQ(ierr);
574d930f514SMatthew G. Knepley           ierr = DMPlexNaturalToGlobalBegin(dm, v, originalv);CHKERRQ(ierr);
575d930f514SMatthew G. Knepley           ierr = DMPlexNaturalToGlobalEnd(dm, v, originalv);CHKERRQ(ierr);
576d930f514SMatthew G. Knepley           ierr = DMRestoreGlobalVector(dm, &v);CHKERRQ(ierr);
577d930f514SMatthew G. Knepley #else
578d930f514SMatthew G. Knepley           SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
579d930f514SMatthew G. Knepley #endif
580d930f514SMatthew G. Knepley         } else SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Reading in natural order is not supported for anything but HDF5.");
581d930f514SMatthew G. Knepley       }
582a8ad634aSStefano Zampini     } else {
583a8ad634aSStefano Zampini       ierr = VecLoad_Default(originalv, viewer);CHKERRQ(ierr);
584a8ad634aSStefano Zampini     }
585d930f514SMatthew G. Knepley   }
586d930f514SMatthew G. Knepley   PetscFunctionReturn(0);
587d930f514SMatthew G. Knepley }
588d930f514SMatthew G. Knepley 
5897cd05799SMatthew G. Knepley PETSC_UNUSED static PetscErrorCode DMPlexView_Ascii_Geometry(DM dm, PetscViewer viewer)
590731e8ddeSMatthew G. Knepley {
591731e8ddeSMatthew G. Knepley   PetscSection       coordSection;
592731e8ddeSMatthew G. Knepley   Vec                coordinates;
593ba2698f1SMatthew G. Knepley   DMLabel            depthLabel, celltypeLabel;
594731e8ddeSMatthew G. Knepley   const char        *name[4];
595731e8ddeSMatthew G. Knepley   const PetscScalar *a;
596731e8ddeSMatthew G. Knepley   PetscInt           dim, pStart, pEnd, cStart, cEnd, c;
597731e8ddeSMatthew G. Knepley   PetscErrorCode     ierr;
598731e8ddeSMatthew G. Knepley 
599731e8ddeSMatthew G. Knepley   PetscFunctionBegin;
600731e8ddeSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
601731e8ddeSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
602731e8ddeSMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
603731e8ddeSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
604ba2698f1SMatthew G. Knepley   ierr = DMPlexGetCellTypeLabel(dm, &celltypeLabel);CHKERRQ(ierr);
605731e8ddeSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
606731e8ddeSMatthew G. Knepley   ierr = PetscSectionGetChart(coordSection, &pStart, &pEnd);CHKERRQ(ierr);
607731e8ddeSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &a);CHKERRQ(ierr);
608731e8ddeSMatthew G. Knepley   name[0]     = "vertex";
609731e8ddeSMatthew G. Knepley   name[1]     = "edge";
610731e8ddeSMatthew G. Knepley   name[dim-1] = "face";
611731e8ddeSMatthew G. Knepley   name[dim]   = "cell";
612731e8ddeSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
613731e8ddeSMatthew G. Knepley     PetscInt *closure = NULL;
614ba2698f1SMatthew G. Knepley     PetscInt  closureSize, cl, ct;
615731e8ddeSMatthew G. Knepley 
616ba2698f1SMatthew G. Knepley     ierr = DMLabelGetValue(celltypeLabel, c, &ct);CHKERRQ(ierr);
617ba2698f1SMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Geometry for cell %D polytope type %s:\n", c, DMPolytopeTypes[ct]);CHKERRQ(ierr);
618731e8ddeSMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
619731e8ddeSMatthew G. Knepley     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
620731e8ddeSMatthew G. Knepley     for (cl = 0; cl < closureSize*2; cl += 2) {
621731e8ddeSMatthew G. Knepley       PetscInt point = closure[cl], depth, dof, off, d, p;
622731e8ddeSMatthew G. Knepley 
623731e8ddeSMatthew G. Knepley       if ((point < pStart) || (point >= pEnd)) continue;
624731e8ddeSMatthew G. Knepley       ierr = PetscSectionGetDof(coordSection, point, &dof);CHKERRQ(ierr);
625731e8ddeSMatthew G. Knepley       if (!dof) continue;
626731e8ddeSMatthew G. Knepley       ierr = DMLabelGetValue(depthLabel, point, &depth);CHKERRQ(ierr);
627731e8ddeSMatthew G. Knepley       ierr = PetscSectionGetOffset(coordSection, point, &off);CHKERRQ(ierr);
628f347f43bSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer, "%s %D coords:", name[depth], point);CHKERRQ(ierr);
629731e8ddeSMatthew G. Knepley       for (p = 0; p < dof/dim; ++p) {
630731e8ddeSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, " (");CHKERRQ(ierr);
631731e8ddeSMatthew G. Knepley         for (d = 0; d < dim; ++d) {
632731e8ddeSMatthew G. Knepley           if (d > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);}
633087ef6b2SMatthew G. Knepley           ierr = PetscViewerASCIIPrintf(viewer, "%g", (double) PetscRealPart(a[off+p*dim+d]));CHKERRQ(ierr);
634731e8ddeSMatthew G. Knepley         }
635731e8ddeSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, ")");CHKERRQ(ierr);
636731e8ddeSMatthew G. Knepley       }
637731e8ddeSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
638731e8ddeSMatthew G. Knepley     }
639731e8ddeSMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
640731e8ddeSMatthew G. Knepley     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
641731e8ddeSMatthew G. Knepley   }
642731e8ddeSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &a);CHKERRQ(ierr);
643731e8ddeSMatthew G. Knepley   PetscFunctionReturn(0);
644731e8ddeSMatthew G. Knepley }
645731e8ddeSMatthew G. Knepley 
6467cd05799SMatthew G. Knepley static PetscErrorCode DMPlexView_Ascii(DM dm, PetscViewer viewer)
647552f7358SJed Brown {
648552f7358SJed Brown   DM_Plex          *mesh = (DM_Plex*) dm->data;
649552f7358SJed Brown   DM                cdm;
650552f7358SJed Brown   PetscSection      coordSection;
651552f7358SJed Brown   Vec               coordinates;
652552f7358SJed Brown   PetscViewerFormat format;
653552f7358SJed Brown   PetscErrorCode    ierr;
654552f7358SJed Brown 
655552f7358SJed Brown   PetscFunctionBegin;
656552f7358SJed Brown   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
65792fd8e1eSJed Brown   ierr = DMGetLocalSection(cdm, &coordSection);CHKERRQ(ierr);
658552f7358SJed Brown   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
659552f7358SJed Brown   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
660552f7358SJed Brown   if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
661552f7358SJed Brown     const char *name;
662f73eea6eSMatthew G. Knepley     PetscInt    dim, cellHeight, maxConeSize, maxSupportSize;
6639318fe57SMatthew G. Knepley     PetscInt    pStart, pEnd, p, numLabels, l;
664552f7358SJed Brown     PetscMPIInt rank, size;
665552f7358SJed Brown 
666ffc4695bSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRMPI(ierr);
667ffc4695bSBarry Smith     ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size);CHKERRMPI(ierr);
668552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
669552f7358SJed Brown     ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
670552f7358SJed Brown     ierr = DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize);CHKERRQ(ierr);
671f73eea6eSMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
672f73eea6eSMatthew G. Knepley     ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
673f73eea6eSMatthew G. Knepley     if (name) {ierr = PetscViewerASCIIPrintf(viewer, "%s in %D dimension%s:\n", name, dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
674f73eea6eSMatthew G. Knepley     else      {ierr = PetscViewerASCIIPrintf(viewer, "Mesh in %D dimension%s:\n", dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
675f73eea6eSMatthew G. Knepley     if (cellHeight) {ierr = PetscViewerASCIIPrintf(viewer, "  Cells are at height %D\n", cellHeight);CHKERRQ(ierr);}
676e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Supports:\n", name);CHKERRQ(ierr);
6774d4c343aSBarry Smith     ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr);
678e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d] Max support size: %D\n", rank, maxSupportSize);CHKERRQ(ierr);
679552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
680552f7358SJed Brown       PetscInt dof, off, s;
681552f7358SJed Brown 
682552f7358SJed Brown       ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
683552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
684552f7358SJed Brown       for (s = off; s < off+dof; ++s) {
685e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d]: %D ----> %D\n", rank, p, mesh->supports[s]);CHKERRQ(ierr);
686552f7358SJed Brown       }
687552f7358SJed Brown     }
688552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
689e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Cones:\n", name);CHKERRQ(ierr);
690e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d] Max cone size: %D\n", rank, maxConeSize);CHKERRQ(ierr);
691552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
692552f7358SJed Brown       PetscInt dof, off, c;
693552f7358SJed Brown 
694552f7358SJed Brown       ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
695552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
696552f7358SJed Brown       for (c = off; c < off+dof; ++c) {
697e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d]: %D <---- %D (%D)\n", rank, p, mesh->cones[c], mesh->coneOrientations[c]);CHKERRQ(ierr);
698552f7358SJed Brown       }
699552f7358SJed Brown     }
700552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
7014d4c343aSBarry Smith     ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr);
7023d2e540fSStefano Zampini     if (coordSection && coordinates) {
70380180ce3SStefano Zampini       ierr = PetscSectionVecView(coordSection, coordinates, viewer);CHKERRQ(ierr);
7043d2e540fSStefano Zampini     }
7059318fe57SMatthew G. Knepley     ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr);
7069318fe57SMatthew G. Knepley     if (numLabels) {ierr = PetscViewerASCIIPrintf(viewer, "Labels:\n");CHKERRQ(ierr);}
7079318fe57SMatthew G. Knepley     for (l = 0; l < numLabels; ++l) {
7089318fe57SMatthew G. Knepley       DMLabel     label;
7099318fe57SMatthew G. Knepley       PetscBool   isdepth;
7109318fe57SMatthew G. Knepley       const char *name;
7119318fe57SMatthew G. Knepley 
7129318fe57SMatthew G. Knepley       ierr = DMGetLabelName(dm, l, &name);CHKERRQ(ierr);
7139318fe57SMatthew G. Knepley       ierr = PetscStrcmp(name, "depth", &isdepth);CHKERRQ(ierr);
7149318fe57SMatthew G. Knepley       if (isdepth) continue;
7159318fe57SMatthew G. Knepley       ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
7169318fe57SMatthew G. Knepley       ierr = DMLabelView(label, viewer);CHKERRQ(ierr);
7179318fe57SMatthew G. Knepley     }
718552f7358SJed Brown     if (size > 1) {
719552f7358SJed Brown       PetscSF sf;
720552f7358SJed Brown 
721552f7358SJed Brown       ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
722552f7358SJed Brown       ierr = PetscSFView(sf, viewer);CHKERRQ(ierr);
723552f7358SJed Brown     }
724552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
725552f7358SJed Brown   } else if (format == PETSC_VIEWER_ASCII_LATEX) {
7260588280cSMatthew G. Knepley     const char  *name, *color;
7270588280cSMatthew G. Knepley     const char  *defcolors[3]  = {"gray", "orange", "green"};
7280588280cSMatthew G. Knepley     const char  *deflcolors[4] = {"blue", "cyan", "red", "magenta"};
729fe1cc32dSStefano Zampini     char         lname[PETSC_MAX_PATH_LEN];
730552f7358SJed Brown     PetscReal    scale         = 2.0;
73178081901SStefano Zampini     PetscReal    tikzscale     = 1.0;
7320588280cSMatthew G. Knepley     PetscBool    useNumbers    = PETSC_TRUE, useLabels, useColors;
7330588280cSMatthew G. Knepley     double       tcoords[3];
734552f7358SJed Brown     PetscScalar *coords;
7350588280cSMatthew G. Knepley     PetscInt     numLabels, l, numColors, numLColors, dim, depth, cStart, cEnd, c, vStart, vEnd, v, eStart = 0, eEnd = 0, e, p;
736552f7358SJed Brown     PetscMPIInt  rank, size;
7370588280cSMatthew G. Knepley     char         **names, **colors, **lcolors;
738fe1cc32dSStefano Zampini     PetscBool    plotEdges, flg, lflg;
739fe1cc32dSStefano Zampini     PetscBT      wp = NULL;
740fe1cc32dSStefano Zampini     PetscInt     pEnd, pStart;
741552f7358SJed Brown 
7420588280cSMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
743552f7358SJed Brown     ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
744c58f1c22SToby Isaac     ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr);
7450588280cSMatthew G. Knepley     numLabels  = PetscMax(numLabels, 10);
7460588280cSMatthew G. Knepley     numColors  = 10;
7470588280cSMatthew G. Knepley     numLColors = 10;
7480588280cSMatthew G. Knepley     ierr = PetscCalloc3(numLabels, &names, numColors, &colors, numLColors, &lcolors);CHKERRQ(ierr);
749c5929fdfSBarry Smith     ierr = PetscOptionsGetReal(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_scale", &scale, NULL);CHKERRQ(ierr);
75078081901SStefano Zampini     ierr = PetscOptionsGetReal(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_tikzscale", &tikzscale, NULL);CHKERRQ(ierr);
751c5929fdfSBarry Smith     ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_numbers", &useNumbers, NULL);CHKERRQ(ierr);
752c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_labels", names, &numLabels, &useLabels);CHKERRQ(ierr);
7530588280cSMatthew G. Knepley     if (!useLabels) numLabels = 0;
754c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_colors", colors, &numColors, &useColors);CHKERRQ(ierr);
7550588280cSMatthew G. Knepley     if (!useColors) {
7560588280cSMatthew G. Knepley       numColors = 3;
7570588280cSMatthew G. Knepley       for (c = 0; c < numColors; ++c) {ierr = PetscStrallocpy(defcolors[c], &colors[c]);CHKERRQ(ierr);}
7580588280cSMatthew G. Knepley     }
759c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_lcolors", lcolors, &numLColors, &useColors);CHKERRQ(ierr);
7600588280cSMatthew G. Knepley     if (!useColors) {
7610588280cSMatthew G. Knepley       numLColors = 4;
7620588280cSMatthew G. Knepley       for (c = 0; c < numLColors; ++c) {ierr = PetscStrallocpy(deflcolors[c], &lcolors[c]);CHKERRQ(ierr);}
7630588280cSMatthew G. Knepley     }
764589a23caSBarry Smith     ierr = PetscOptionsGetString(((PetscObject) viewer)->options, ((PetscObject) viewer)->prefix, "-dm_plex_view_label_filter", lname, sizeof(lname), &lflg);CHKERRQ(ierr);
765202fd40aSStefano Zampini     plotEdges = (PetscBool)(depth > 1 && useNumbers && dim < 3);
766202fd40aSStefano Zampini     ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_edges", &plotEdges, &flg);CHKERRQ(ierr);
767202fd40aSStefano Zampini     if (flg && plotEdges && depth < dim) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Mesh must be interpolated");
768202fd40aSStefano Zampini     if (depth < dim) plotEdges = PETSC_FALSE;
769fe1cc32dSStefano Zampini 
770fe1cc32dSStefano Zampini     /* filter points with labelvalue != labeldefaultvalue */
771fe1cc32dSStefano Zampini     ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
772fe1cc32dSStefano Zampini     if (lflg) {
773fe1cc32dSStefano Zampini       DMLabel lbl;
774fe1cc32dSStefano Zampini 
775fe1cc32dSStefano Zampini       ierr = DMGetLabel(dm, lname, &lbl);CHKERRQ(ierr);
776fe1cc32dSStefano Zampini       if (lbl) {
777fe1cc32dSStefano Zampini         PetscInt val, defval;
778fe1cc32dSStefano Zampini 
779fe1cc32dSStefano Zampini         ierr = DMLabelGetDefaultValue(lbl, &defval);CHKERRQ(ierr);
780fe1cc32dSStefano Zampini         ierr = PetscBTCreate(pEnd-pStart, &wp);CHKERRQ(ierr);
781fe1cc32dSStefano Zampini         for (c = pStart;  c < pEnd; c++) {
782fe1cc32dSStefano Zampini           PetscInt *closure = NULL;
783fe1cc32dSStefano Zampini           PetscInt  closureSize;
784fe1cc32dSStefano Zampini 
785fe1cc32dSStefano Zampini           ierr = DMLabelGetValue(lbl, c, &val);CHKERRQ(ierr);
786fe1cc32dSStefano Zampini           if (val == defval) continue;
787fe1cc32dSStefano Zampini 
788fe1cc32dSStefano Zampini           ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
789fe1cc32dSStefano Zampini           for (p = 0; p < closureSize*2; p += 2) {
790fe1cc32dSStefano Zampini             ierr = PetscBTSet(wp, closure[p] - pStart);CHKERRQ(ierr);
791fe1cc32dSStefano Zampini           }
792fe1cc32dSStefano Zampini           ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
793fe1cc32dSStefano Zampini         }
794fe1cc32dSStefano Zampini       }
795fe1cc32dSStefano Zampini     }
796fe1cc32dSStefano Zampini 
797ffc4695bSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRMPI(ierr);
798ffc4695bSBarry Smith     ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size);CHKERRMPI(ierr);
799552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
800770b213bSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\
8010588280cSMatthew G. Knepley \\documentclass[tikz]{standalone}\n\n\
802552f7358SJed Brown \\usepackage{pgflibraryshapes}\n\
803552f7358SJed Brown \\usetikzlibrary{backgrounds}\n\
804552f7358SJed Brown \\usetikzlibrary{arrows}\n\
8050588280cSMatthew G. Knepley \\begin{document}\n");CHKERRQ(ierr);
8060588280cSMatthew G. Knepley     if (size > 1) {
807f738dd31SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "%s for process ", name);CHKERRQ(ierr);
808770b213bSMatthew G Knepley       for (p = 0; p < size; ++p) {
809770b213bSMatthew G Knepley         if (p > 0 && p == size-1) {
810770b213bSMatthew G Knepley           ierr = PetscViewerASCIIPrintf(viewer, ", and ", colors[p%numColors], p);CHKERRQ(ierr);
811770b213bSMatthew G Knepley         } else if (p > 0) {
812770b213bSMatthew G Knepley           ierr = PetscViewerASCIIPrintf(viewer, ", ", colors[p%numColors], p);CHKERRQ(ierr);
813770b213bSMatthew G Knepley         }
814770b213bSMatthew G Knepley         ierr = PetscViewerASCIIPrintf(viewer, "{\\textcolor{%s}%D}", colors[p%numColors], p);CHKERRQ(ierr);
815770b213bSMatthew G Knepley       }
8160588280cSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, ".\n\n\n");CHKERRQ(ierr);
8170588280cSMatthew G. Knepley     }
818087ef6b2SMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\\begin{tikzpicture}[scale = %g,font=\\fontsize{8}{8}\\selectfont]\n", (double) tikzscale);CHKERRQ(ierr);
819fe1cc32dSStefano Zampini 
820552f7358SJed Brown     /* Plot vertices */
821552f7358SJed Brown     ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
822552f7358SJed Brown     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
8234d4c343aSBarry Smith     ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr);
824552f7358SJed Brown     for (v = vStart; v < vEnd; ++v) {
825552f7358SJed Brown       PetscInt  off, dof, d;
8260588280cSMatthew G. Knepley       PetscBool isLabeled = PETSC_FALSE;
827552f7358SJed Brown 
828fe1cc32dSStefano Zampini       if (wp && !PetscBTLookup(wp,v - pStart)) continue;
829552f7358SJed Brown       ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
830552f7358SJed Brown       ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr);
8310588280cSMatthew G. Knepley       ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\path (");CHKERRQ(ierr);
832f6dae198SJed Brown       if (PetscUnlikely(dof > 3)) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"coordSection vertex %D has dof %D > 3",v,dof);
8330588280cSMatthew G. Knepley       for (d = 0; d < dof; ++d) {
8340588280cSMatthew G. Knepley         tcoords[d] = (double) (scale*PetscRealPart(coords[off+d]));
835c068d9bbSLisandro Dalcin         tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
8360588280cSMatthew G. Knepley       }
8370588280cSMatthew G. Knepley       /* Rotate coordinates since PGF makes z point out of the page instead of up */
8380588280cSMatthew G. Knepley       if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
839552f7358SJed Brown       for (d = 0; d < dof; ++d) {
840552f7358SJed Brown         if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
841087ef6b2SMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", (double) tcoords[d]);CHKERRQ(ierr);
842552f7358SJed Brown       }
8430588280cSMatthew G. Knepley       color = colors[rank%numColors];
8440588280cSMatthew G. Knepley       for (l = 0; l < numLabels; ++l) {
8450588280cSMatthew G. Knepley         PetscInt val;
846c58f1c22SToby Isaac         ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr);
8470588280cSMatthew G. Knepley         if (val >= 0) {color = lcolors[l%numLColors]; isLabeled = PETSC_TRUE; break;}
8480588280cSMatthew G. Knepley       }
8490588280cSMatthew G. Knepley       if (useNumbers) {
850e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D};\n", v, rank, color, v);CHKERRQ(ierr);
8510588280cSMatthew G. Knepley       } else {
852e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [fill,inner sep=%dpt,shape=circle,color=%s] {};\n", v, rank, !isLabeled ? 1 : 2, color);CHKERRQ(ierr);
8530588280cSMatthew G. Knepley       }
854552f7358SJed Brown     }
855552f7358SJed Brown     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
856552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
857846a3e8bSMatthew G. Knepley     /* Plot cells */
858846a3e8bSMatthew G. Knepley     ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
85978081901SStefano Zampini     ierr = DMPlexGetDepthStratum(dm, 1, &eStart, &eEnd);CHKERRQ(ierr);
860846a3e8bSMatthew G. Knepley     if (dim == 3 || !useNumbers) {
861846a3e8bSMatthew G. Knepley       for (e = eStart; e < eEnd; ++e) {
862846a3e8bSMatthew G. Knepley         const PetscInt *cone;
863846a3e8bSMatthew G. Knepley 
864fe1cc32dSStefano Zampini         if (wp && !PetscBTLookup(wp,e - pStart)) continue;
865846a3e8bSMatthew G. Knepley         color = colors[rank%numColors];
866846a3e8bSMatthew G. Knepley         for (l = 0; l < numLabels; ++l) {
867846a3e8bSMatthew G. Knepley           PetscInt val;
868846a3e8bSMatthew G. Knepley           ierr = DMGetLabelValue(dm, names[l], e, &val);CHKERRQ(ierr);
869846a3e8bSMatthew G. Knepley           if (val >= 0) {color = lcolors[l%numLColors]; break;}
870846a3e8bSMatthew G. Knepley         }
871846a3e8bSMatthew G. Knepley         ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr);
872846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] (%D_%d) -- (%D_%d);\n", color, cone[0], rank, cone[1], rank);CHKERRQ(ierr);
873846a3e8bSMatthew G. Knepley       }
874846a3e8bSMatthew G. Knepley     } else {
875846a3e8bSMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {
876846a3e8bSMatthew G. Knepley         PetscInt *closure = NULL;
877846a3e8bSMatthew G. Knepley         PetscInt  closureSize, firstPoint = -1;
878846a3e8bSMatthew G. Knepley 
879fe1cc32dSStefano Zampini         if (wp && !PetscBTLookup(wp,c - pStart)) continue;
880846a3e8bSMatthew G. Knepley         ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
881846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] ", colors[rank%numColors]);CHKERRQ(ierr);
882846a3e8bSMatthew G. Knepley         for (p = 0; p < closureSize*2; p += 2) {
883846a3e8bSMatthew G. Knepley           const PetscInt point = closure[p];
884846a3e8bSMatthew G. Knepley 
885846a3e8bSMatthew G. Knepley           if ((point < vStart) || (point >= vEnd)) continue;
886846a3e8bSMatthew G. Knepley           if (firstPoint >= 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- ");CHKERRQ(ierr);}
887846a3e8bSMatthew G. Knepley           ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(%D_%d)", point, rank);CHKERRQ(ierr);
888846a3e8bSMatthew G. Knepley           if (firstPoint < 0) firstPoint = point;
889846a3e8bSMatthew G. Knepley         }
890846a3e8bSMatthew G. Knepley         /* Why doesn't this work? ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- cycle;\n");CHKERRQ(ierr); */
891846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- (%D_%d);\n", firstPoint, rank);CHKERRQ(ierr);
892846a3e8bSMatthew G. Knepley         ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
893846a3e8bSMatthew G. Knepley       }
894846a3e8bSMatthew G. Knepley     }
895846a3e8bSMatthew G. Knepley     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
896846a3e8bSMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
897846a3e8bSMatthew G. Knepley       double    ccoords[3] = {0.0, 0.0, 0.0};
898846a3e8bSMatthew G. Knepley       PetscBool isLabeled  = PETSC_FALSE;
899846a3e8bSMatthew G. Knepley       PetscInt *closure    = NULL;
900846a3e8bSMatthew G. Knepley       PetscInt  closureSize, dof, d, n = 0;
901846a3e8bSMatthew G. Knepley 
902fe1cc32dSStefano Zampini       if (wp && !PetscBTLookup(wp,c - pStart)) continue;
903846a3e8bSMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
904846a3e8bSMatthew G. Knepley       ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\path (");CHKERRQ(ierr);
905846a3e8bSMatthew G. Knepley       for (p = 0; p < closureSize*2; p += 2) {
906846a3e8bSMatthew G. Knepley         const PetscInt point = closure[p];
907846a3e8bSMatthew G. Knepley         PetscInt       off;
908846a3e8bSMatthew G. Knepley 
909846a3e8bSMatthew G. Knepley         if ((point < vStart) || (point >= vEnd)) continue;
910846a3e8bSMatthew G. Knepley         ierr = PetscSectionGetDof(coordSection, point, &dof);CHKERRQ(ierr);
911846a3e8bSMatthew G. Knepley         ierr = PetscSectionGetOffset(coordSection, point, &off);CHKERRQ(ierr);
912846a3e8bSMatthew G. Knepley         for (d = 0; d < dof; ++d) {
913846a3e8bSMatthew G. Knepley           tcoords[d] = (double) (scale*PetscRealPart(coords[off+d]));
914846a3e8bSMatthew G. Knepley           tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
915846a3e8bSMatthew G. Knepley         }
916846a3e8bSMatthew G. Knepley         /* Rotate coordinates since PGF makes z point out of the page instead of up */
917846a3e8bSMatthew G. Knepley         if (dof == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
918846a3e8bSMatthew G. Knepley         for (d = 0; d < dof; ++d) {ccoords[d] += tcoords[d];}
919846a3e8bSMatthew G. Knepley         ++n;
920846a3e8bSMatthew G. Knepley       }
921846a3e8bSMatthew G. Knepley       for (d = 0; d < dof; ++d) {ccoords[d] /= n;}
922846a3e8bSMatthew G. Knepley       ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
923846a3e8bSMatthew G. Knepley       for (d = 0; d < dof; ++d) {
924846a3e8bSMatthew G. Knepley         if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
925087ef6b2SMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", (double) ccoords[d]);CHKERRQ(ierr);
926846a3e8bSMatthew G. Knepley       }
927846a3e8bSMatthew G. Knepley       color = colors[rank%numColors];
928846a3e8bSMatthew G. Knepley       for (l = 0; l < numLabels; ++l) {
929846a3e8bSMatthew G. Knepley         PetscInt val;
930846a3e8bSMatthew G. Knepley         ierr = DMGetLabelValue(dm, names[l], c, &val);CHKERRQ(ierr);
931846a3e8bSMatthew G. Knepley         if (val >= 0) {color = lcolors[l%numLColors]; isLabeled = PETSC_TRUE; break;}
932846a3e8bSMatthew G. Knepley       }
933846a3e8bSMatthew G. Knepley       if (useNumbers) {
934846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D};\n", c, rank, color, c);CHKERRQ(ierr);
935846a3e8bSMatthew G. Knepley       } else {
936846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [fill,inner sep=%dpt,shape=circle,color=%s] {};\n", c, rank, !isLabeled ? 1 : 2, color);CHKERRQ(ierr);
937846a3e8bSMatthew G. Knepley       }
938846a3e8bSMatthew G. Knepley     }
939846a3e8bSMatthew G. Knepley     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
940552f7358SJed Brown     /* Plot edges */
941202fd40aSStefano Zampini     if (plotEdges) {
942552f7358SJed Brown       ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
943552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "\\path\n");CHKERRQ(ierr);
944552f7358SJed Brown       for (e = eStart; e < eEnd; ++e) {
945552f7358SJed Brown         const PetscInt *cone;
946552f7358SJed Brown         PetscInt        coneSize, offA, offB, dof, d;
947552f7358SJed Brown 
948fe1cc32dSStefano Zampini         if (wp && !PetscBTLookup(wp,e - pStart)) continue;
949552f7358SJed Brown         ierr = DMPlexGetConeSize(dm, e, &coneSize);CHKERRQ(ierr);
950f347f43bSBarry Smith         if (coneSize != 2) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Edge %D cone should have two vertices, not %D", e, coneSize);
951552f7358SJed Brown         ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr);
952552f7358SJed Brown         ierr = PetscSectionGetDof(coordSection, cone[0], &dof);CHKERRQ(ierr);
953552f7358SJed Brown         ierr = PetscSectionGetOffset(coordSection, cone[0], &offA);CHKERRQ(ierr);
954552f7358SJed Brown         ierr = PetscSectionGetOffset(coordSection, cone[1], &offB);CHKERRQ(ierr);
955552f7358SJed Brown         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(");CHKERRQ(ierr);
956552f7358SJed Brown         for (d = 0; d < dof; ++d) {
957202fd40aSStefano Zampini           tcoords[d] = (double) (0.5*scale*PetscRealPart(coords[offA+d]+coords[offB+d]));
958c068d9bbSLisandro Dalcin           tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
959552f7358SJed Brown         }
9600588280cSMatthew G. Knepley         /* Rotate coordinates since PGF makes z point out of the page instead of up */
9610588280cSMatthew G. Knepley         if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
9620588280cSMatthew G. Knepley         for (d = 0; d < dof; ++d) {
9630588280cSMatthew G. Knepley           if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
964f347f43bSBarry Smith           ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", (double)tcoords[d]);CHKERRQ(ierr);
9650588280cSMatthew G. Knepley         }
9660588280cSMatthew G. Knepley         color = colors[rank%numColors];
9670588280cSMatthew G. Knepley         for (l = 0; l < numLabels; ++l) {
9680588280cSMatthew G. Knepley           PetscInt val;
969c58f1c22SToby Isaac           ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr);
9700750fff4SMatthew G. Knepley           if (val >= 0) {color = lcolors[l%numLColors]; break;}
9710588280cSMatthew G. Knepley         }
972e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D} --\n", e, rank, color, e);CHKERRQ(ierr);
973552f7358SJed Brown       }
974552f7358SJed Brown       ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
975552f7358SJed Brown       ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
976552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "(0,0);\n");CHKERRQ(ierr);
9770588280cSMatthew G. Knepley     }
978552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
9794d4c343aSBarry Smith     ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr);
9800588280cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\\end{tikzpicture}\n");CHKERRQ(ierr);
981770b213bSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\\end{document}\n", name);CHKERRQ(ierr);
9820588280cSMatthew G. Knepley     for (l = 0; l < numLabels;  ++l) {ierr = PetscFree(names[l]);CHKERRQ(ierr);}
9830588280cSMatthew G. Knepley     for (c = 0; c < numColors;  ++c) {ierr = PetscFree(colors[c]);CHKERRQ(ierr);}
9840588280cSMatthew G. Knepley     for (c = 0; c < numLColors; ++c) {ierr = PetscFree(lcolors[c]);CHKERRQ(ierr);}
9850588280cSMatthew G. Knepley     ierr = PetscFree3(names, colors, lcolors);CHKERRQ(ierr);
986fe1cc32dSStefano Zampini     ierr = PetscBTDestroy(&wp);CHKERRQ(ierr);
9870f7d6e4aSStefano Zampini   } else if (format == PETSC_VIEWER_LOAD_BALANCE) {
9880f7d6e4aSStefano Zampini     Vec                    cown,acown;
9890f7d6e4aSStefano Zampini     VecScatter             sct;
9900f7d6e4aSStefano Zampini     ISLocalToGlobalMapping g2l;
9910f7d6e4aSStefano Zampini     IS                     gid,acis;
9920f7d6e4aSStefano Zampini     MPI_Comm               comm,ncomm = MPI_COMM_NULL;
9930f7d6e4aSStefano Zampini     MPI_Group              ggroup,ngroup;
9940f7d6e4aSStefano Zampini     PetscScalar            *array,nid;
9950f7d6e4aSStefano Zampini     const PetscInt         *idxs;
9960f7d6e4aSStefano Zampini     PetscInt               *idxs2,*start,*adjacency,*work;
9970f7d6e4aSStefano Zampini     PetscInt64             lm[3],gm[3];
9980f7d6e4aSStefano Zampini     PetscInt               i,c,cStart,cEnd,cum,numVertices,ect,ectn,cellHeight;
9990f7d6e4aSStefano Zampini     PetscMPIInt            d1,d2,rank;
10000f7d6e4aSStefano Zampini 
10010f7d6e4aSStefano Zampini     ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
1002ffc4695bSBarry Smith     ierr = MPI_Comm_rank(comm,&rank);CHKERRMPI(ierr);
1003b674149eSJunchao Zhang #if defined(PETSC_HAVE_MPI_PROCESS_SHARED_MEMORY)
1004ffc4695bSBarry Smith     ierr = MPI_Comm_split_type(comm,MPI_COMM_TYPE_SHARED,rank,MPI_INFO_NULL,&ncomm);CHKERRMPI(ierr);
10050f7d6e4aSStefano Zampini #endif
10060f7d6e4aSStefano Zampini     if (ncomm != MPI_COMM_NULL) {
1007ffc4695bSBarry Smith       ierr = MPI_Comm_group(comm,&ggroup);CHKERRMPI(ierr);
1008ffc4695bSBarry Smith       ierr = MPI_Comm_group(ncomm,&ngroup);CHKERRMPI(ierr);
10090f7d6e4aSStefano Zampini       d1   = 0;
1010ffc4695bSBarry Smith       ierr = MPI_Group_translate_ranks(ngroup,1,&d1,ggroup,&d2);CHKERRMPI(ierr);
10110f7d6e4aSStefano Zampini       nid  = d2;
1012ffc4695bSBarry Smith       ierr = MPI_Group_free(&ggroup);CHKERRMPI(ierr);
1013ffc4695bSBarry Smith       ierr = MPI_Group_free(&ngroup);CHKERRMPI(ierr);
1014ffc4695bSBarry Smith       ierr = MPI_Comm_free(&ncomm);CHKERRMPI(ierr);
10150f7d6e4aSStefano Zampini     } else nid = 0.0;
10160f7d6e4aSStefano Zampini 
10170f7d6e4aSStefano Zampini     /* Get connectivity */
10180f7d6e4aSStefano Zampini     ierr = DMPlexGetVTKCellHeight(dm,&cellHeight);CHKERRQ(ierr);
10190f7d6e4aSStefano Zampini     ierr = DMPlexCreatePartitionerGraph(dm,cellHeight,&numVertices,&start,&adjacency,&gid);CHKERRQ(ierr);
10200f7d6e4aSStefano Zampini 
10210f7d6e4aSStefano Zampini     /* filter overlapped local cells */
10220f7d6e4aSStefano Zampini     ierr = DMPlexGetHeightStratum(dm,cellHeight,&cStart,&cEnd);CHKERRQ(ierr);
10230f7d6e4aSStefano Zampini     ierr = ISGetIndices(gid,&idxs);CHKERRQ(ierr);
10240f7d6e4aSStefano Zampini     ierr = ISGetLocalSize(gid,&cum);CHKERRQ(ierr);
10250f7d6e4aSStefano Zampini     ierr = PetscMalloc1(cum,&idxs2);CHKERRQ(ierr);
10260f7d6e4aSStefano Zampini     for (c = cStart, cum = 0; c < cEnd; c++) {
10270f7d6e4aSStefano Zampini       if (idxs[c-cStart] < 0) continue;
10280f7d6e4aSStefano Zampini       idxs2[cum++] = idxs[c-cStart];
10290f7d6e4aSStefano Zampini     }
10300f7d6e4aSStefano Zampini     ierr = ISRestoreIndices(gid,&idxs);CHKERRQ(ierr);
10310f7d6e4aSStefano Zampini     if (numVertices != cum) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Unexpected %D != %D",numVertices,cum);
10320f7d6e4aSStefano Zampini     ierr = ISDestroy(&gid);CHKERRQ(ierr);
10330f7d6e4aSStefano Zampini     ierr = ISCreateGeneral(comm,numVertices,idxs2,PETSC_OWN_POINTER,&gid);CHKERRQ(ierr);
10340f7d6e4aSStefano Zampini 
10350f7d6e4aSStefano Zampini     /* support for node-aware cell locality */
10360f7d6e4aSStefano Zampini     ierr = ISCreateGeneral(comm,start[numVertices],adjacency,PETSC_USE_POINTER,&acis);CHKERRQ(ierr);
10370f7d6e4aSStefano Zampini     ierr = VecCreateSeq(PETSC_COMM_SELF,start[numVertices],&acown);CHKERRQ(ierr);
10380f7d6e4aSStefano Zampini     ierr = VecCreateMPI(comm,numVertices,PETSC_DECIDE,&cown);CHKERRQ(ierr);
10390f7d6e4aSStefano Zampini     ierr = VecGetArray(cown,&array);CHKERRQ(ierr);
10400f7d6e4aSStefano Zampini     for (c = 0; c < numVertices; c++) array[c] = nid;
10410f7d6e4aSStefano Zampini     ierr = VecRestoreArray(cown,&array);CHKERRQ(ierr);
10420f7d6e4aSStefano Zampini     ierr = VecScatterCreate(cown,acis,acown,NULL,&sct);CHKERRQ(ierr);
10430f7d6e4aSStefano Zampini     ierr = VecScatterBegin(sct,cown,acown,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
10440f7d6e4aSStefano Zampini     ierr = VecScatterEnd(sct,cown,acown,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
10450f7d6e4aSStefano Zampini     ierr = ISDestroy(&acis);CHKERRQ(ierr);
10460f7d6e4aSStefano Zampini     ierr = VecScatterDestroy(&sct);CHKERRQ(ierr);
10470f7d6e4aSStefano Zampini     ierr = VecDestroy(&cown);CHKERRQ(ierr);
10480f7d6e4aSStefano Zampini 
10490f7d6e4aSStefano Zampini     /* compute edgeCut */
10500f7d6e4aSStefano Zampini     for (c = 0, cum = 0; c < numVertices; c++) cum = PetscMax(cum,start[c+1]-start[c]);
10510f7d6e4aSStefano Zampini     ierr = PetscMalloc1(cum,&work);CHKERRQ(ierr);
10520f7d6e4aSStefano Zampini     ierr = ISLocalToGlobalMappingCreateIS(gid,&g2l);CHKERRQ(ierr);
10530f7d6e4aSStefano Zampini     ierr = ISLocalToGlobalMappingSetType(g2l,ISLOCALTOGLOBALMAPPINGHASH);CHKERRQ(ierr);
10540f7d6e4aSStefano Zampini     ierr = ISDestroy(&gid);CHKERRQ(ierr);
10550f7d6e4aSStefano Zampini     ierr = VecGetArray(acown,&array);CHKERRQ(ierr);
10560f7d6e4aSStefano Zampini     for (c = 0, ect = 0, ectn = 0; c < numVertices; c++) {
10570f7d6e4aSStefano Zampini       PetscInt totl;
10580f7d6e4aSStefano Zampini 
10590f7d6e4aSStefano Zampini       totl = start[c+1]-start[c];
10600f7d6e4aSStefano Zampini       ierr = ISGlobalToLocalMappingApply(g2l,IS_GTOLM_MASK,totl,adjacency+start[c],NULL,work);CHKERRQ(ierr);
10610f7d6e4aSStefano Zampini       for (i = 0; i < totl; i++) {
10620f7d6e4aSStefano Zampini         if (work[i] < 0) {
10630f7d6e4aSStefano Zampini           ect  += 1;
10640f7d6e4aSStefano Zampini           ectn += (array[i + start[c]] != nid) ? 0 : 1;
10650f7d6e4aSStefano Zampini         }
10660f7d6e4aSStefano Zampini       }
10670f7d6e4aSStefano Zampini     }
10680f7d6e4aSStefano Zampini     ierr  = PetscFree(work);CHKERRQ(ierr);
10690f7d6e4aSStefano Zampini     ierr  = VecRestoreArray(acown,&array);CHKERRQ(ierr);
10700f7d6e4aSStefano Zampini     lm[0] = numVertices > 0 ?  numVertices : PETSC_MAX_INT;
10710f7d6e4aSStefano Zampini     lm[1] = -numVertices;
1072820f2d46SBarry Smith     ierr  = MPIU_Allreduce(lm,gm,2,MPIU_INT64,MPI_MIN,comm);CHKERRMPI(ierr);
10730f7d6e4aSStefano Zampini     ierr  = PetscViewerASCIIPrintf(viewer,"  Cell balance: %.2f (max %D, min %D",-((double)gm[1])/((double)gm[0]),-(PetscInt)gm[1],(PetscInt)gm[0]);CHKERRQ(ierr);
10740f7d6e4aSStefano Zampini     lm[0] = ect; /* edgeCut */
10750f7d6e4aSStefano Zampini     lm[1] = ectn; /* node-aware edgeCut */
10760f7d6e4aSStefano Zampini     lm[2] = numVertices > 0 ? 0 : 1; /* empty processes */
1077820f2d46SBarry Smith     ierr  = MPIU_Allreduce(lm,gm,3,MPIU_INT64,MPI_SUM,comm);CHKERRMPI(ierr);
10780f7d6e4aSStefano Zampini     ierr  = PetscViewerASCIIPrintf(viewer,", empty %D)\n",(PetscInt)gm[2]);CHKERRQ(ierr);
1079b674149eSJunchao Zhang #if defined(PETSC_HAVE_MPI_PROCESS_SHARED_MEMORY)
10800f7d6e4aSStefano Zampini     ierr  = PetscViewerASCIIPrintf(viewer,"  Edge Cut: %D (on node %.3f)\n",(PetscInt)(gm[0]/2),gm[0] ? ((double)(gm[1]))/((double)gm[0]) : 1.);CHKERRQ(ierr);
10810f7d6e4aSStefano Zampini #else
10820f7d6e4aSStefano Zampini     ierr  = PetscViewerASCIIPrintf(viewer,"  Edge Cut: %D (on node %.3f)\n",(PetscInt)(gm[0]/2),0.0);CHKERRQ(ierr);
10830f7d6e4aSStefano Zampini #endif
10840f7d6e4aSStefano Zampini     ierr  = ISLocalToGlobalMappingDestroy(&g2l);CHKERRQ(ierr);
10850f7d6e4aSStefano Zampini     ierr  = PetscFree(start);CHKERRQ(ierr);
10860f7d6e4aSStefano Zampini     ierr  = PetscFree(adjacency);CHKERRQ(ierr);
10870f7d6e4aSStefano Zampini     ierr  = VecDestroy(&acown);CHKERRQ(ierr);
1088552f7358SJed Brown   } else {
1089412e9a14SMatthew G. Knepley     const char    *name;
1090d80ece95SMatthew G. Knepley     PetscInt      *sizes, *hybsizes, *ghostsizes;
1091412e9a14SMatthew G. Knepley     PetscInt       locDepth, depth, cellHeight, dim, d;
1092d80ece95SMatthew G. Knepley     PetscInt       pStart, pEnd, p, gcStart, gcEnd, gcNum;
1093a57dd577SMatthew G Knepley     PetscInt       numLabels, l;
10949318fe57SMatthew G. Knepley     DMPolytopeType ct0 = DM_POLYTOPE_UNKNOWN;
1095412e9a14SMatthew G. Knepley     MPI_Comm       comm;
1096412e9a14SMatthew G. Knepley     PetscMPIInt    size, rank;
1097552f7358SJed Brown 
109882f516ccSBarry Smith     ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
1099ffc4695bSBarry Smith     ierr = MPI_Comm_size(comm, &size);CHKERRMPI(ierr);
1100ffc4695bSBarry Smith     ierr = MPI_Comm_rank(comm, &rank);CHKERRMPI(ierr);
1101c73cfb54SMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1102f73eea6eSMatthew G. Knepley     ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
11035f64d76eSMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
1104f73eea6eSMatthew G. Knepley     if (name) {ierr = PetscViewerASCIIPrintf(viewer, "%s in %D dimension%s:\n", name, dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
1105f73eea6eSMatthew G. Knepley     else      {ierr = PetscViewerASCIIPrintf(viewer, "Mesh in %D dimension%s:\n", dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
1106f73eea6eSMatthew G. Knepley     if (cellHeight) {ierr = PetscViewerASCIIPrintf(viewer, "  Cells are at height %D\n", cellHeight);CHKERRQ(ierr);}
1107552f7358SJed Brown     ierr = DMPlexGetDepth(dm, &locDepth);CHKERRQ(ierr);
1108820f2d46SBarry Smith     ierr = MPIU_Allreduce(&locDepth, &depth, 1, MPIU_INT, MPI_MAX, comm);CHKERRMPI(ierr);
1109d80ece95SMatthew G. Knepley     ierr = DMPlexGetGhostCellStratum(dm, &gcStart, &gcEnd);CHKERRQ(ierr);
1110d80ece95SMatthew G. Knepley     gcNum = gcEnd - gcStart;
1111d80ece95SMatthew G. Knepley     ierr = PetscCalloc3(size,&sizes,size,&hybsizes,size,&ghostsizes);CHKERRQ(ierr);
1112412e9a14SMatthew G. Knepley     for (d = 0; d <= depth; d++) {
1113412e9a14SMatthew G. Knepley       PetscInt Nc[2] = {0, 0}, ict;
1114412e9a14SMatthew G. Knepley 
1115552f7358SJed Brown       ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr);
11169318fe57SMatthew G. Knepley       if (pStart < pEnd) {ierr = DMPlexGetCellType(dm, pStart, &ct0);CHKERRQ(ierr);}
1117412e9a14SMatthew G. Knepley       ict  = ct0;
1118ffc4695bSBarry Smith       ierr = MPI_Bcast(&ict, 1, MPIU_INT, 0, comm);CHKERRMPI(ierr);
1119412e9a14SMatthew G. Knepley       ct0  = (DMPolytopeType) ict;
1120412e9a14SMatthew G. Knepley       for (p = pStart; p < pEnd; ++p) {
1121412e9a14SMatthew G. Knepley         DMPolytopeType ct;
1122412e9a14SMatthew G. Knepley 
1123412e9a14SMatthew G. Knepley         ierr = DMPlexGetCellType(dm, p, &ct);CHKERRQ(ierr);
1124412e9a14SMatthew G. Knepley         if (ct == ct0) ++Nc[0];
1125412e9a14SMatthew G. Knepley         else           ++Nc[1];
1126412e9a14SMatthew G. Knepley       }
1127ffc4695bSBarry Smith       ierr = MPI_Gather(&Nc[0], 1, MPIU_INT, sizes,    1, MPIU_INT, 0, comm);CHKERRMPI(ierr);
1128ffc4695bSBarry Smith       ierr = MPI_Gather(&Nc[1], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRMPI(ierr);
1129ffc4695bSBarry Smith       if (d == depth) {ierr = MPI_Gather(&gcNum, 1, MPIU_INT, ghostsizes, 1, MPIU_INT, 0, comm);CHKERRMPI(ierr);}
1130412e9a14SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "  %D-cells:", (depth == 1) && d ? dim : d);CHKERRQ(ierr);
1131834065abSMatthew G. Knepley       for (p = 0; p < size; ++p) {
1132cbb7f117SMark Adams         if (!rank) {
1133412e9a14SMatthew G. Knepley           ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]+hybsizes[p]);CHKERRQ(ierr);
1134412e9a14SMatthew G. Knepley           if (hybsizes[p]   > 0) {ierr = PetscViewerASCIIPrintf(viewer, " (%D)", hybsizes[p]);CHKERRQ(ierr);}
1135412e9a14SMatthew G. Knepley           if (ghostsizes[p] > 0) {ierr = PetscViewerASCIIPrintf(viewer, " [%D]", ghostsizes[p]);CHKERRQ(ierr);}
1136834065abSMatthew G. Knepley         }
1137cbb7f117SMark Adams       }
1138552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
1139552f7358SJed Brown     }
1140d80ece95SMatthew G. Knepley     ierr = PetscFree3(sizes,hybsizes,ghostsizes);CHKERRQ(ierr);
11419318fe57SMatthew G. Knepley     {
11429318fe57SMatthew G. Knepley       const PetscReal      *maxCell;
11439318fe57SMatthew G. Knepley       const PetscReal      *L;
11449318fe57SMatthew G. Knepley       const DMBoundaryType *bd;
11459318fe57SMatthew G. Knepley       PetscBool             per, localized;
11469318fe57SMatthew G. Knepley 
11479318fe57SMatthew G. Knepley       ierr = DMGetPeriodicity(dm, &per, &maxCell, &L, &bd);CHKERRQ(ierr);
11489318fe57SMatthew G. Knepley       ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr);
11499318fe57SMatthew G. Knepley       if (per) {
11509318fe57SMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, "Periodic mesh (");CHKERRQ(ierr);
11519318fe57SMatthew G. Knepley         ierr = PetscViewerASCIIUseTabs(viewer, PETSC_FALSE);CHKERRQ(ierr);
11529318fe57SMatthew G. Knepley         for (d = 0; d < dim; ++d) {
11539318fe57SMatthew G. Knepley           if (bd && d > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);}
11549318fe57SMatthew G. Knepley           if (bd)    {ierr = PetscViewerASCIIPrintf(viewer, "%s", DMBoundaryTypes[bd[d]]);CHKERRQ(ierr);}
11559318fe57SMatthew G. Knepley         }
11569318fe57SMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, ") coordinates %s\n", localized ? "localized" : "not localized");CHKERRQ(ierr);
11579318fe57SMatthew G. Knepley         ierr = PetscViewerASCIIUseTabs(viewer, PETSC_TRUE);CHKERRQ(ierr);
11589318fe57SMatthew G. Knepley       }
11599318fe57SMatthew G. Knepley     }
1160c58f1c22SToby Isaac     ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr);
1161a57dd577SMatthew G Knepley     if (numLabels) {ierr = PetscViewerASCIIPrintf(viewer, "Labels:\n");CHKERRQ(ierr);}
1162a57dd577SMatthew G Knepley     for (l = 0; l < numLabels; ++l) {
1163a57dd577SMatthew G Knepley       DMLabel         label;
1164a57dd577SMatthew G Knepley       const char     *name;
1165a57dd577SMatthew G Knepley       IS              valueIS;
1166a57dd577SMatthew G Knepley       const PetscInt *values;
1167a57dd577SMatthew G Knepley       PetscInt        numValues, v;
1168a57dd577SMatthew G Knepley 
1169c58f1c22SToby Isaac       ierr = DMGetLabelName(dm, l, &name);CHKERRQ(ierr);
1170c58f1c22SToby Isaac       ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
1171a57dd577SMatthew G Knepley       ierr = DMLabelGetNumValues(label, &numValues);CHKERRQ(ierr);
1172d72f73ffSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "  %s: %D strata with value/size (", name, numValues);CHKERRQ(ierr);
1173a57dd577SMatthew G Knepley       ierr = DMLabelGetValueIS(label, &valueIS);CHKERRQ(ierr);
1174a57dd577SMatthew G Knepley       ierr = ISGetIndices(valueIS, &values);CHKERRQ(ierr);
1175120dea56SMatthew G. Knepley       ierr = PetscViewerASCIIUseTabs(viewer, PETSC_FALSE);CHKERRQ(ierr);
1176a57dd577SMatthew G Knepley       for (v = 0; v < numValues; ++v) {
1177a57dd577SMatthew G Knepley         PetscInt size;
1178a57dd577SMatthew G Knepley 
1179a57dd577SMatthew G Knepley         ierr = DMLabelGetStratumSize(label, values[v], &size);CHKERRQ(ierr);
1180a57dd577SMatthew G Knepley         if (v > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);}
1181d72f73ffSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, "%D (%D)", values[v], size);CHKERRQ(ierr);
1182a57dd577SMatthew G Knepley       }
1183a57dd577SMatthew G Knepley       ierr = PetscViewerASCIIPrintf(viewer, ")\n");CHKERRQ(ierr);
1184120dea56SMatthew G. Knepley       ierr = PetscViewerASCIIUseTabs(viewer, PETSC_TRUE);CHKERRQ(ierr);
1185a57dd577SMatthew G Knepley       ierr = ISRestoreIndices(valueIS, &values);CHKERRQ(ierr);
11864d41221fSMatthew G Knepley       ierr = ISDestroy(&valueIS);CHKERRQ(ierr);
1187a57dd577SMatthew G Knepley     }
118834aa8a36SMatthew G. Knepley     /* If no fields are specified, people do not want to see adjacency */
118934aa8a36SMatthew G. Knepley     if (dm->Nf) {
119034aa8a36SMatthew G. Knepley       PetscInt f;
119134aa8a36SMatthew G. Knepley 
119234aa8a36SMatthew G. Knepley       for (f = 0; f < dm->Nf; ++f) {
119334aa8a36SMatthew G. Knepley         const char *name;
119434aa8a36SMatthew G. Knepley 
119534aa8a36SMatthew G. Knepley         ierr = PetscObjectGetName(dm->fields[f].disc, &name);CHKERRQ(ierr);
119634aa8a36SMatthew G. Knepley         if (numLabels) {ierr = PetscViewerASCIIPrintf(viewer, "Field %s:\n", name);CHKERRQ(ierr);}
119734aa8a36SMatthew G. Knepley         ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
119834aa8a36SMatthew G. Knepley         if (dm->fields[f].label) {ierr = DMLabelView(dm->fields[f].label, viewer);CHKERRQ(ierr);}
119934aa8a36SMatthew G. Knepley         if (dm->fields[f].adjacency[0]) {
120034aa8a36SMatthew G. Knepley           if (dm->fields[f].adjacency[1]) {ierr = PetscViewerASCIIPrintf(viewer, "adjacency FVM++\n");CHKERRQ(ierr);}
1201ed59e46eSMatthew G. Knepley           else                            {ierr = PetscViewerASCIIPrintf(viewer, "adjacency FVM\n");CHKERRQ(ierr);}
120234aa8a36SMatthew G. Knepley         } else {
120334aa8a36SMatthew G. Knepley           if (dm->fields[f].adjacency[1]) {ierr = PetscViewerASCIIPrintf(viewer, "adjacency FEM\n");CHKERRQ(ierr);}
120434aa8a36SMatthew G. Knepley           else                            {ierr = PetscViewerASCIIPrintf(viewer, "adjacency FUNKY\n");CHKERRQ(ierr);}
120534aa8a36SMatthew G. Knepley         }
120634aa8a36SMatthew G. Knepley         ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
120734aa8a36SMatthew G. Knepley       }
120834aa8a36SMatthew G. Knepley     }
1209a8fb8f29SToby Isaac     ierr = DMGetCoarseDM(dm, &cdm);CHKERRQ(ierr);
12108e7ff633SMatthew G. Knepley     if (cdm) {
12118e7ff633SMatthew G. Knepley       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
12128e7ff633SMatthew G. Knepley       ierr = DMPlexView_Ascii(cdm, viewer);CHKERRQ(ierr);
12138e7ff633SMatthew G. Knepley       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
12148e7ff633SMatthew G. Knepley     }
1215552f7358SJed Brown   }
1216552f7358SJed Brown   PetscFunctionReturn(0);
1217552f7358SJed Brown }
1218552f7358SJed Brown 
1219e5c487bfSMatthew G. Knepley static PetscErrorCode DMPlexDrawCell(DM dm, PetscDraw draw, PetscInt cell, const PetscScalar coords[])
1220e5c487bfSMatthew G. Knepley {
1221e5c487bfSMatthew G. Knepley   DMPolytopeType ct;
1222e5c487bfSMatthew G. Knepley   PetscMPIInt    rank;
1223e5c487bfSMatthew G. Knepley   PetscErrorCode ierr;
1224e5c487bfSMatthew G. Knepley 
1225e5c487bfSMatthew G. Knepley   PetscFunctionBegin;
1226ffc4695bSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRMPI(ierr);
1227e5c487bfSMatthew G. Knepley   ierr = DMPlexGetCellType(dm, cell, &ct);CHKERRQ(ierr);
1228e5c487bfSMatthew G. Knepley   switch (ct) {
1229e5c487bfSMatthew G. Knepley   case DM_POLYTOPE_TRIANGLE:
1230e5c487bfSMatthew G. Knepley     ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]),
1231e5c487bfSMatthew G. Knepley                              PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1232e5c487bfSMatthew G. Knepley                              PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1233e5c487bfSMatthew G. Knepley                              PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2);CHKERRQ(ierr);
1234e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1235e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1236e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1237e5c487bfSMatthew G. Knepley     break;
1238e5c487bfSMatthew G. Knepley   case DM_POLYTOPE_QUADRILATERAL:
1239e5c487bfSMatthew G. Knepley     ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]),
1240e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1241e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1242e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2);CHKERRQ(ierr);
1243e5c487bfSMatthew G. Knepley     ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[6]), PetscRealPart(coords[7]),
1244e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1245e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1246e5c487bfSMatthew G. Knepley                               PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2);CHKERRQ(ierr);
1247e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1248e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1249e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[6]), PetscRealPart(coords[7]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1250e5c487bfSMatthew G. Knepley     ierr = PetscDrawLine(draw, PetscRealPart(coords[6]), PetscRealPart(coords[7]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1251e5c487bfSMatthew G. Knepley     break;
1252e5c487bfSMatthew G. Knepley   default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells of type %s", DMPolytopeTypes[ct]);
1253e5c487bfSMatthew G. Knepley   }
1254e5c487bfSMatthew G. Knepley   PetscFunctionReturn(0);
1255e5c487bfSMatthew G. Knepley }
1256e5c487bfSMatthew G. Knepley 
1257e5c487bfSMatthew G. Knepley static PetscErrorCode DMPlexDrawCellHighOrder(DM dm, PetscDraw draw, PetscInt cell, const PetscScalar coords[], PetscInt edgeDiv, PetscReal refCoords[], PetscReal edgeCoords[])
1258e5c487bfSMatthew G. Knepley {
1259e5c487bfSMatthew G. Knepley   DMPolytopeType ct;
1260e5c487bfSMatthew G. Knepley   PetscReal      centroid[2] = {0., 0.};
1261e5c487bfSMatthew G. Knepley   PetscMPIInt    rank;
1262e5c487bfSMatthew G. Knepley   PetscInt       fillColor, v, e, d;
1263e5c487bfSMatthew G. Knepley   PetscErrorCode ierr;
1264e5c487bfSMatthew G. Knepley 
1265e5c487bfSMatthew G. Knepley   PetscFunctionBegin;
1266ffc4695bSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRMPI(ierr);
1267e5c487bfSMatthew G. Knepley   ierr = DMPlexGetCellType(dm, cell, &ct);CHKERRQ(ierr);
1268e5c487bfSMatthew G. Knepley   fillColor = PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2;
1269e5c487bfSMatthew G. Knepley   switch (ct) {
1270e5c487bfSMatthew G. Knepley   case DM_POLYTOPE_TRIANGLE:
1271e5c487bfSMatthew G. Knepley     {
1272e5c487bfSMatthew G. Knepley       PetscReal refVertices[6] = {-1., -1., 1., -1., -1., 1.};
1273e5c487bfSMatthew G. Knepley 
1274e5c487bfSMatthew G. Knepley       for (v = 0; v < 3; ++v) {centroid[0] += PetscRealPart(coords[v*2+0])/3.;centroid[1] += PetscRealPart(coords[v*2+1])/3.;}
1275e5c487bfSMatthew G. Knepley       for (e = 0; e < 3; ++e) {
1276e5c487bfSMatthew G. Knepley         refCoords[0] = refVertices[e*2+0];
1277e5c487bfSMatthew G. Knepley         refCoords[1] = refVertices[e*2+1];
1278e5c487bfSMatthew G. Knepley         for (d = 1; d <= edgeDiv; ++d) {
1279e5c487bfSMatthew G. Knepley           refCoords[d*2+0] = refCoords[0] + (refVertices[(e+1)%3 * 2 + 0] - refCoords[0])*d/edgeDiv;
1280e5c487bfSMatthew G. Knepley           refCoords[d*2+1] = refCoords[1] + (refVertices[(e+1)%3 * 2 + 1] - refCoords[1])*d/edgeDiv;
1281e5c487bfSMatthew G. Knepley         }
1282e5c487bfSMatthew G. Knepley         ierr = DMPlexReferenceToCoordinates(dm, cell, edgeDiv+1, refCoords, edgeCoords);CHKERRQ(ierr);
1283e5c487bfSMatthew G. Knepley         for (d = 0; d < edgeDiv; ++d) {
1284e5c487bfSMatthew G. Knepley           ierr = PetscDrawTriangle(draw, centroid[0], centroid[1], edgeCoords[d*2+0], edgeCoords[d*2+1], edgeCoords[(d+1)*2+0], edgeCoords[(d+1)*2+1], fillColor, fillColor, fillColor);CHKERRQ(ierr);
1285e5c487bfSMatthew G. Knepley           ierr = PetscDrawLine(draw, edgeCoords[d*2+0], edgeCoords[d*2+1], edgeCoords[(d+1)*2+0], edgeCoords[(d+1)*2+1], PETSC_DRAW_BLACK);CHKERRQ(ierr);
1286e5c487bfSMatthew G. Knepley         }
1287e5c487bfSMatthew G. Knepley       }
1288e5c487bfSMatthew G. Knepley     }
1289e5c487bfSMatthew G. Knepley     break;
1290e5c487bfSMatthew G. Knepley   default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells of type %s", DMPolytopeTypes[ct]);
1291e5c487bfSMatthew G. Knepley   }
1292e5c487bfSMatthew G. Knepley   PetscFunctionReturn(0);
1293e5c487bfSMatthew G. Knepley }
1294e5c487bfSMatthew G. Knepley 
12957cd05799SMatthew G. Knepley static PetscErrorCode DMPlexView_Draw(DM dm, PetscViewer viewer)
1296e412dcbdSMatthew G. Knepley {
1297e412dcbdSMatthew G. Knepley   PetscDraw          draw;
1298e412dcbdSMatthew G. Knepley   DM                 cdm;
1299e412dcbdSMatthew G. Knepley   PetscSection       coordSection;
1300e412dcbdSMatthew G. Knepley   Vec                coordinates;
1301e412dcbdSMatthew G. Knepley   const PetscScalar *coords;
130229494db1SLisandro Dalcin   PetscReal          xyl[2],xyr[2],bound[4] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL};
1303e5c487bfSMatthew G. Knepley   PetscReal         *refCoords, *edgeCoords;
1304e5c487bfSMatthew G. Knepley   PetscBool          isnull, drawAffine = PETSC_TRUE;
1305e5c487bfSMatthew G. Knepley   PetscInt           dim, vStart, vEnd, cStart, cEnd, c, N, edgeDiv = 4;
1306e412dcbdSMatthew G. Knepley   PetscErrorCode     ierr;
1307e412dcbdSMatthew G. Knepley 
1308e412dcbdSMatthew G. Knepley   PetscFunctionBegin;
1309e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
1310e412dcbdSMatthew G. Knepley   if (dim != 2) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Cannot draw meshes of dimension %D", dim);
1311e5c487bfSMatthew G. Knepley   ierr = PetscOptionsGetBool(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_view_draw_affine", &drawAffine, NULL);CHKERRQ(ierr);
1312e5c487bfSMatthew G. Knepley   if (!drawAffine) {ierr = PetscMalloc2((edgeDiv+1)*dim, &refCoords, (edgeDiv+1)*dim, &edgeCoords);CHKERRQ(ierr);}
1313e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
131492fd8e1eSJed Brown   ierr = DMGetLocalSection(cdm, &coordSection);CHKERRQ(ierr);
1315e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
1316e412dcbdSMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
1317e412dcbdSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1318e412dcbdSMatthew G. Knepley 
1319e412dcbdSMatthew G. Knepley   ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr);
1320e412dcbdSMatthew G. Knepley   ierr = PetscDrawIsNull(draw, &isnull);CHKERRQ(ierr);
1321e412dcbdSMatthew G. Knepley   if (isnull) PetscFunctionReturn(0);
1322e412dcbdSMatthew G. Knepley   ierr = PetscDrawSetTitle(draw, "Mesh");CHKERRQ(ierr);
1323e412dcbdSMatthew G. Knepley 
1324e412dcbdSMatthew G. Knepley   ierr = VecGetLocalSize(coordinates, &N);CHKERRQ(ierr);
1325e412dcbdSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &coords);CHKERRQ(ierr);
1326e412dcbdSMatthew G. Knepley   for (c = 0; c < N; c += dim) {
13270c81f2a8SMatthew G. Knepley     bound[0] = PetscMin(bound[0], PetscRealPart(coords[c]));   bound[2] = PetscMax(bound[2], PetscRealPart(coords[c]));
13280c81f2a8SMatthew G. Knepley     bound[1] = PetscMin(bound[1], PetscRealPart(coords[c+1])); bound[3] = PetscMax(bound[3], PetscRealPart(coords[c+1]));
1329e412dcbdSMatthew G. Knepley   }
1330e412dcbdSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &coords);CHKERRQ(ierr);
1331820f2d46SBarry Smith   ierr = MPIU_Allreduce(&bound[0],xyl,2,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
1332820f2d46SBarry Smith   ierr = MPIU_Allreduce(&bound[2],xyr,2,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
133329494db1SLisandro Dalcin   ierr = PetscDrawSetCoordinates(draw, xyl[0], xyl[1], xyr[0], xyr[1]);CHKERRQ(ierr);
1334e412dcbdSMatthew G. Knepley   ierr = PetscDrawClear(draw);CHKERRQ(ierr);
1335e412dcbdSMatthew G. Knepley 
1336cf3064d3SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1337cf3064d3SMatthew G. Knepley     PetscScalar *coords = NULL;
1338ba2698f1SMatthew G. Knepley     PetscInt     numCoords;
1339cf3064d3SMatthew G. Knepley 
1340e5c487bfSMatthew G. Knepley     ierr = DMPlexVecGetClosureAtDepth_Internal(dm, coordSection, coordinates, c, 0, &numCoords, &coords);CHKERRQ(ierr);
1341e5c487bfSMatthew G. Knepley     if (drawAffine) {
1342e5c487bfSMatthew G. Knepley       ierr = DMPlexDrawCell(dm, draw, c, coords);CHKERRQ(ierr);
1343e5c487bfSMatthew G. Knepley     } else {
1344e5c487bfSMatthew G. Knepley       ierr = DMPlexDrawCellHighOrder(dm, draw, c, coords, edgeDiv, refCoords, edgeCoords);CHKERRQ(ierr);
1345cf3064d3SMatthew G. Knepley     }
1346cf3064d3SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
1347cf3064d3SMatthew G. Knepley   }
1348e5c487bfSMatthew G. Knepley   if (!drawAffine) {ierr = PetscFree2(refCoords, edgeCoords);CHKERRQ(ierr);}
1349e412dcbdSMatthew G. Knepley   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
1350e412dcbdSMatthew G. Knepley   ierr = PetscDrawPause(draw);CHKERRQ(ierr);
1351e412dcbdSMatthew G. Knepley   ierr = PetscDrawSave(draw);CHKERRQ(ierr);
1352e412dcbdSMatthew G. Knepley   PetscFunctionReturn(0);
1353e412dcbdSMatthew G. Knepley }
1354e412dcbdSMatthew G. Knepley 
13551e50132fSMatthew G. Knepley #if defined(PETSC_HAVE_EXODUSII)
13561e50132fSMatthew G. Knepley #include <exodusII.h>
13576823f3c5SBlaise Bourdin #include <petscviewerexodusii.h>
13581e50132fSMatthew G. Knepley #endif
13591e50132fSMatthew G. Knepley 
1360552f7358SJed Brown PetscErrorCode DMView_Plex(DM dm, PetscViewer viewer)
1361552f7358SJed Brown {
13621e50132fSMatthew G. Knepley   PetscBool      iascii, ishdf5, isvtk, isdraw, flg, isglvis, isexodus;
1363002a2709SMatthew G. Knepley   char           name[PETSC_MAX_PATH_LEN];
1364552f7358SJed Brown   PetscErrorCode ierr;
1365552f7358SJed Brown 
1366552f7358SJed Brown   PetscFunctionBegin;
1367552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1368552f7358SJed Brown   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1369552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERASCII,    &iascii);CHKERRQ(ierr);
1370fcf6c8fdSToby Isaac   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,      &isvtk);CHKERRQ(ierr);
1371c6ccd67eSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,     &ishdf5);CHKERRQ(ierr);
1372e412dcbdSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,     &isdraw);CHKERRQ(ierr);
13738135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS,    &isglvis);CHKERRQ(ierr);
13741e50132fSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWEREXODUSII, &isexodus);CHKERRQ(ierr);
1375552f7358SJed Brown   if (iascii) {
13768135c375SStefano Zampini     PetscViewerFormat format;
13778135c375SStefano Zampini     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
13788135c375SStefano Zampini     if (format == PETSC_VIEWER_ASCII_GLVIS) {
13798135c375SStefano Zampini       ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr);
13808135c375SStefano Zampini     } else {
1381552f7358SJed Brown       ierr = DMPlexView_Ascii(dm, viewer);CHKERRQ(ierr);
13828135c375SStefano Zampini     }
1383c6ccd67eSMatthew G. Knepley   } else if (ishdf5) {
1384c6ccd67eSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
138539d25373SMatthew G. Knepley     ierr = DMPlexView_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
1386c6ccd67eSMatthew G. Knepley #else
1387c6ccd67eSMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1388552f7358SJed Brown #endif
1389e412dcbdSMatthew G. Knepley   } else if (isvtk) {
1390fcf6c8fdSToby Isaac     ierr = DMPlexVTKWriteAll((PetscObject) dm,viewer);CHKERRQ(ierr);
1391e412dcbdSMatthew G. Knepley   } else if (isdraw) {
1392e412dcbdSMatthew G. Knepley     ierr = DMPlexView_Draw(dm, viewer);CHKERRQ(ierr);
13938135c375SStefano Zampini   } else if (isglvis) {
13948135c375SStefano Zampini     ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr);
13951e50132fSMatthew G. Knepley #if defined(PETSC_HAVE_EXODUSII)
13961e50132fSMatthew G. Knepley   } else if (isexodus) {
13976823f3c5SBlaise Bourdin /*
13986823f3c5SBlaise Bourdin       exodusII requires that all sets be part of exactly one cell set.
13996823f3c5SBlaise Bourdin       If the dm does not have a "Cell Sets" label defined, we create one
14006823f3c5SBlaise Bourdin       with ID 1, containig all cells.
14016823f3c5SBlaise Bourdin       Note that if the Cell Sets label is defined but does not cover all cells,
14026823f3c5SBlaise Bourdin       we may still have a problem. This should probably be checked here or in the viewer;
14036823f3c5SBlaise Bourdin     */
14046823f3c5SBlaise Bourdin     PetscInt numCS;
14056823f3c5SBlaise Bourdin     ierr = DMGetLabelSize(dm,"Cell Sets",&numCS);CHKERRQ(ierr);
14066823f3c5SBlaise Bourdin     if (!numCS){
14071e50132fSMatthew G. Knepley       PetscInt cStart, cEnd, c;
14081e50132fSMatthew G. Knepley       ierr = DMCreateLabel(dm, "Cell Sets");CHKERRQ(ierr);
14091e50132fSMatthew G. Knepley       ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
14101e50132fSMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {ierr = DMSetLabelValue(dm, "Cell Sets", c, 1);CHKERRQ(ierr);}
14116823f3c5SBlaise Bourdin     }
14126823f3c5SBlaise Bourdin     ierr = DMView_PlexExodusII(dm, viewer);CHKERRQ(ierr);
14131e50132fSMatthew G. Knepley #endif
141462201deeSVaclav Hapla   } else {
1415a94aea51SVaclav Hapla     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex writing", ((PetscObject)viewer)->type_name);
1416fcf6c8fdSToby Isaac   }
1417cb3ba0daSMatthew G. Knepley   /* Optionally view the partition */
1418cb3ba0daSMatthew G. Knepley   ierr = PetscOptionsHasName(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_partition_view", &flg);CHKERRQ(ierr);
1419cb3ba0daSMatthew G. Knepley   if (flg) {
1420cb3ba0daSMatthew G. Knepley     Vec ranks;
1421cb3ba0daSMatthew G. Knepley     ierr = DMPlexCreateRankField(dm, &ranks);CHKERRQ(ierr);
1422cb3ba0daSMatthew G. Knepley     ierr = VecView(ranks, viewer);CHKERRQ(ierr);
1423cb3ba0daSMatthew G. Knepley     ierr = VecDestroy(&ranks);CHKERRQ(ierr);
1424cb3ba0daSMatthew G. Knepley   }
1425002a2709SMatthew G. Knepley   /* Optionally view a label */
1426589a23caSBarry Smith   ierr = PetscOptionsGetString(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_label_view", name, sizeof(name), &flg);CHKERRQ(ierr);
1427002a2709SMatthew G. Knepley   if (flg) {
1428002a2709SMatthew G. Knepley     DMLabel label;
1429002a2709SMatthew G. Knepley     Vec     val;
1430002a2709SMatthew G. Knepley 
1431002a2709SMatthew G. Knepley     ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
1432002a2709SMatthew G. Knepley     if (!label) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Label %s provided to -dm_label_view does not exist in this DM", name);
1433002a2709SMatthew G. Knepley     ierr = DMPlexCreateLabelField(dm, label, &val);CHKERRQ(ierr);
1434002a2709SMatthew G. Knepley     ierr = VecView(val, viewer);CHKERRQ(ierr);
1435002a2709SMatthew G. Knepley     ierr = VecDestroy(&val);CHKERRQ(ierr);
1436002a2709SMatthew G. Knepley   }
1437552f7358SJed Brown   PetscFunctionReturn(0);
1438552f7358SJed Brown }
1439552f7358SJed Brown 
14402c40f234SMatthew G. Knepley PetscErrorCode DMLoad_Plex(DM dm, PetscViewer viewer)
14412c40f234SMatthew G. Knepley {
1442d4f5a9a0SVaclav Hapla   PetscBool      ishdf5;
14432c40f234SMatthew G. Knepley   PetscErrorCode ierr;
14442c40f234SMatthew G. Knepley 
14452c40f234SMatthew G. Knepley   PetscFunctionBegin;
14462c40f234SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
14472c40f234SMatthew G. Knepley   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
14482c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,   &ishdf5);CHKERRQ(ierr);
1449d4f5a9a0SVaclav Hapla   if (ishdf5) {
14502c40f234SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
14519c48423bSVaclav Hapla     PetscViewerFormat format;
14529c48423bSVaclav Hapla     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
14539c48423bSVaclav Hapla     if (format == PETSC_VIEWER_HDF5_XDMF || format == PETSC_VIEWER_HDF5_VIZ) {
14549c48423bSVaclav Hapla       ierr = DMPlexLoad_HDF5_Xdmf_Internal(dm, viewer);CHKERRQ(ierr);
1455509517efSVaclav Hapla     } else if (format == PETSC_VIEWER_HDF5_PETSC || format == PETSC_VIEWER_DEFAULT || format == PETSC_VIEWER_NATIVE) {
145639d25373SMatthew G. Knepley       ierr = DMPlexLoad_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
1457509517efSVaclav Hapla     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "PetscViewerFormat %s not supported for HDF5 input.", PetscViewerFormats[format]);
1458b458e8f1SJose E. Roman     PetscFunctionReturn(0);
14592c40f234SMatthew G. Knepley #else
14602c40f234SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1461552f7358SJed Brown #endif
1462b458e8f1SJose E. Roman   } else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex loading", ((PetscObject)viewer)->type_name);
1463552f7358SJed Brown }
1464552f7358SJed Brown 
1465ea8e1828Sksagiyam /*@
1466ea8e1828Sksagiyam   DMPlexTopologyLoad - Loads a topology into a DMPlex
1467ea8e1828Sksagiyam 
1468ea8e1828Sksagiyam   Collective on DM
1469ea8e1828Sksagiyam 
1470ea8e1828Sksagiyam   Input Parameters:
1471ea8e1828Sksagiyam + dm     - The DM into which the topology is loaded
1472ea8e1828Sksagiyam - viewer - The PetscViewer for the saved topology
1473ea8e1828Sksagiyam 
1474dec9e869Sksagiyam   Output Parameters:
1475dec9e869Sksagiyam . sf     - The PetscSF that pushes points in [0, N) to the associated points in the loaded plex, where N is the global number of points; NULL if unneeded
1476dec9e869Sksagiyam 
1477ea8e1828Sksagiyam   Level: advanced
1478ea8e1828Sksagiyam 
1479b08ad5deSksagiyam .seealso: DMLoad(), DMPlexCoordinatesLoad(), DMPlexLabelsLoad(), DMView(), PetscViewerHDF5Open(), PetscViewerPushFormat()
1480ea8e1828Sksagiyam @*/
1481dec9e869Sksagiyam PetscErrorCode DMPlexTopologyLoad(DM dm, PetscViewer viewer, PetscSF *sf)
1482ea8e1828Sksagiyam {
1483ea8e1828Sksagiyam   PetscBool      ishdf5;
1484ea8e1828Sksagiyam   PetscErrorCode ierr;
1485ea8e1828Sksagiyam 
1486ea8e1828Sksagiyam   PetscFunctionBegin;
1487ea8e1828Sksagiyam   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1488ea8e1828Sksagiyam   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1489ea8e1828Sksagiyam   PetscValidPointer(sf, 3);
1490ea8e1828Sksagiyam   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
1491ea8e1828Sksagiyam   if (ishdf5) {
1492ea8e1828Sksagiyam #if defined(PETSC_HAVE_HDF5)
1493ea8e1828Sksagiyam     PetscViewerFormat format;
1494ea8e1828Sksagiyam     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
1495ea8e1828Sksagiyam     if (format == PETSC_VIEWER_HDF5_PETSC || format == PETSC_VIEWER_DEFAULT || format == PETSC_VIEWER_NATIVE) {
1496dec9e869Sksagiyam       ierr = DMPlexTopologyLoad_HDF5_Internal(dm, viewer, sf);CHKERRQ(ierr);
1497ea8e1828Sksagiyam     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "PetscViewerFormat %s not supported for HDF5 input.", PetscViewerFormats[format]);
1498ea8e1828Sksagiyam #else
1499ea8e1828Sksagiyam     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1500ea8e1828Sksagiyam #endif
1501ea8e1828Sksagiyam   }
1502ea8e1828Sksagiyam   PetscFunctionReturn(0);
1503ea8e1828Sksagiyam }
1504ea8e1828Sksagiyam 
15053e701f1cSksagiyam /*@
15063e701f1cSksagiyam   DMPlexCoordinatesLoad - Loads coordinates into a DMPlex
15073e701f1cSksagiyam 
15083e701f1cSksagiyam   Collective on DM
15093e701f1cSksagiyam 
15103e701f1cSksagiyam   Input Parameters:
15113e701f1cSksagiyam + dm     - The DM into which the coordinates are loaded
15123e701f1cSksagiyam - viewer - The PetscViewer for the saved coordinates
15133e701f1cSksagiyam 
15143e701f1cSksagiyam   Level: advanced
15153e701f1cSksagiyam 
1516b08ad5deSksagiyam .seealso: DMLoad(), DMPlexTopologyLoad(), DMPlexLabelsLoad(), DMView(), PetscViewerHDF5Open(), PetscViewerPushFormat()
15173e701f1cSksagiyam @*/
15183e701f1cSksagiyam PetscErrorCode DMPlexCoordinatesLoad(DM dm, PetscViewer viewer)
15193e701f1cSksagiyam {
15203e701f1cSksagiyam   PetscBool      ishdf5;
15213e701f1cSksagiyam   PetscErrorCode ierr;
15223e701f1cSksagiyam 
15233e701f1cSksagiyam   PetscFunctionBegin;
15243e701f1cSksagiyam   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
15253e701f1cSksagiyam   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
15263e701f1cSksagiyam   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
15273e701f1cSksagiyam   if (ishdf5) {
15283e701f1cSksagiyam #if defined(PETSC_HAVE_HDF5)
15293e701f1cSksagiyam     PetscViewerFormat format;
15303e701f1cSksagiyam     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
15313e701f1cSksagiyam     if (format == PETSC_VIEWER_HDF5_PETSC || format == PETSC_VIEWER_DEFAULT || format == PETSC_VIEWER_NATIVE) {
15323e701f1cSksagiyam       ierr = DMPlexCoordinatesLoad_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
15333e701f1cSksagiyam     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "PetscViewerFormat %s not supported for HDF5 input.", PetscViewerFormats[format]);
15343e701f1cSksagiyam #else
15353e701f1cSksagiyam     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
15363e701f1cSksagiyam #endif
15373e701f1cSksagiyam   }
15383e701f1cSksagiyam   PetscFunctionReturn(0);
15393e701f1cSksagiyam }
15403e701f1cSksagiyam 
1541b08ad5deSksagiyam /*@
1542b08ad5deSksagiyam   DMPlexLabelsLoad - Loads labels into a DMPlex
1543b08ad5deSksagiyam 
1544b08ad5deSksagiyam   Collective on DM
1545b08ad5deSksagiyam 
1546b08ad5deSksagiyam   Input Parameters:
1547b08ad5deSksagiyam + dm     - The DM into which the labels are loaded
1548b08ad5deSksagiyam - viewer - The PetscViewer for the saved labels
1549b08ad5deSksagiyam 
1550b08ad5deSksagiyam   Level: advanced
1551b08ad5deSksagiyam 
1552b08ad5deSksagiyam .seealso: DMLoad(), DMPlexTopologyLoad(), DMPlexCoordinatesLoad(), DMView(), PetscViewerHDF5Open(), PetscViewerPushFormat()
1553b08ad5deSksagiyam @*/
1554b08ad5deSksagiyam PetscErrorCode DMPlexLabelsLoad(DM dm, PetscViewer viewer)
1555b08ad5deSksagiyam {
1556b08ad5deSksagiyam   PetscBool      ishdf5;
1557b08ad5deSksagiyam   PetscErrorCode ierr;
1558b08ad5deSksagiyam 
1559b08ad5deSksagiyam   PetscFunctionBegin;
1560b08ad5deSksagiyam   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1561b08ad5deSksagiyam   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1562b08ad5deSksagiyam   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
1563b08ad5deSksagiyam   if (ishdf5) {
1564b08ad5deSksagiyam #if defined(PETSC_HAVE_HDF5)
1565b08ad5deSksagiyam     PetscViewerFormat format;
1566b08ad5deSksagiyam 
1567b08ad5deSksagiyam     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
1568b08ad5deSksagiyam     if (format == PETSC_VIEWER_HDF5_PETSC || format == PETSC_VIEWER_DEFAULT || format == PETSC_VIEWER_NATIVE) {
1569b08ad5deSksagiyam       ierr = DMPlexLabelsLoad_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
1570b08ad5deSksagiyam     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "PetscViewerFormat %s not supported for HDF5 input.", PetscViewerFormats[format]);
1571b08ad5deSksagiyam #else
1572b08ad5deSksagiyam     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1573b08ad5deSksagiyam #endif
1574b08ad5deSksagiyam   }
1575b08ad5deSksagiyam   PetscFunctionReturn(0);
1576b08ad5deSksagiyam }
1577b08ad5deSksagiyam 
1578552f7358SJed Brown PetscErrorCode DMDestroy_Plex(DM dm)
1579552f7358SJed Brown {
1580552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1581552f7358SJed Brown   PetscErrorCode ierr;
1582552f7358SJed Brown 
1583552f7358SJed Brown   PetscFunctionBegin;
15848135c375SStefano Zampini   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMSetUpGLVisViewer_C",NULL);CHKERRQ(ierr);
15858135c375SStefano Zampini   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertBoundaryValues_C", NULL);CHKERRQ(ierr);
158628d58a37SPierre Jolivet   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMCreateNeumannOverlap_C", NULL);CHKERRQ(ierr);
15871eb70e55SToby Isaac   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMInterpolateSolution_C", NULL);CHKERRQ(ierr);
15880d644c17SKarl Rupp   if (--mesh->refct > 0) PetscFunctionReturn(0);
1589552f7358SJed Brown   ierr = PetscSectionDestroy(&mesh->coneSection);CHKERRQ(ierr);
1590552f7358SJed Brown   ierr = PetscFree(mesh->cones);CHKERRQ(ierr);
1591552f7358SJed Brown   ierr = PetscFree(mesh->coneOrientations);CHKERRQ(ierr);
1592552f7358SJed Brown   ierr = PetscSectionDestroy(&mesh->supportSection);CHKERRQ(ierr);
1593be36d101SStefano Zampini   ierr = PetscSectionDestroy(&mesh->subdomainSection);CHKERRQ(ierr);
1594552f7358SJed Brown   ierr = PetscFree(mesh->supports);CHKERRQ(ierr);
1595552f7358SJed Brown   ierr = PetscFree(mesh->facesTmp);CHKERRQ(ierr);
1596d9deefdfSMatthew G. Knepley   ierr = PetscFree(mesh->tetgenOpts);CHKERRQ(ierr);
1597d9deefdfSMatthew G. Knepley   ierr = PetscFree(mesh->triangleOpts);CHKERRQ(ierr);
159877623264SMatthew G. Knepley   ierr = PetscPartitionerDestroy(&mesh->partitioner);CHKERRQ(ierr);
1599a89082eeSMatthew G Knepley   ierr = DMLabelDestroy(&mesh->subpointMap);CHKERRQ(ierr);
160097d8846cSMatthew Knepley   ierr = ISDestroy(&mesh->subpointIS);CHKERRQ(ierr);
1601552f7358SJed Brown   ierr = ISDestroy(&mesh->globalVertexNumbers);CHKERRQ(ierr);
1602552f7358SJed Brown   ierr = ISDestroy(&mesh->globalCellNumbers);CHKERRQ(ierr);
1603a68b90caSToby Isaac   ierr = PetscSectionDestroy(&mesh->anchorSection);CHKERRQ(ierr);
1604a68b90caSToby Isaac   ierr = ISDestroy(&mesh->anchorIS);CHKERRQ(ierr);
1605d961a43aSToby Isaac   ierr = PetscSectionDestroy(&mesh->parentSection);CHKERRQ(ierr);
1606d961a43aSToby Isaac   ierr = PetscFree(mesh->parents);CHKERRQ(ierr);
1607d961a43aSToby Isaac   ierr = PetscFree(mesh->childIDs);CHKERRQ(ierr);
1608d961a43aSToby Isaac   ierr = PetscSectionDestroy(&mesh->childSection);CHKERRQ(ierr);
1609d961a43aSToby Isaac   ierr = PetscFree(mesh->children);CHKERRQ(ierr);
1610d6a7ad0dSToby Isaac   ierr = DMDestroy(&mesh->referenceTree);CHKERRQ(ierr);
1611fec49543SMatthew G. Knepley   ierr = PetscGridHashDestroy(&mesh->lbox);CHKERRQ(ierr);
16120a19bb7dSprj-   ierr = PetscFree(mesh->neighbors);CHKERRQ(ierr);
1613552f7358SJed Brown   /* This was originally freed in DMDestroy(), but that prevents reference counting of backend objects */
1614552f7358SJed Brown   ierr = PetscFree(mesh);CHKERRQ(ierr);
1615552f7358SJed Brown   PetscFunctionReturn(0);
1616552f7358SJed Brown }
1617552f7358SJed Brown 
1618b412c318SBarry Smith PetscErrorCode DMCreateMatrix_Plex(DM dm, Mat *J)
1619552f7358SJed Brown {
16208d1174e4SMatthew G. Knepley   PetscSection           sectionGlobal;
1621acd755d7SMatthew G. Knepley   PetscInt               bs = -1, mbs;
1622552f7358SJed Brown   PetscInt               localSize;
1623837628f4SStefano Zampini   PetscBool              isShell, isBlock, isSeqBlock, isMPIBlock, isSymBlock, isSymSeqBlock, isSymMPIBlock, isMatIS;
1624552f7358SJed Brown   PetscErrorCode         ierr;
1625b412c318SBarry Smith   MatType                mtype;
16261428887cSShri Abhyankar   ISLocalToGlobalMapping ltog;
1627552f7358SJed Brown 
1628552f7358SJed Brown   PetscFunctionBegin;
1629607a6623SBarry Smith   ierr = MatInitializePackage();CHKERRQ(ierr);
1630b412c318SBarry Smith   mtype = dm->mattype;
1631e87a4003SBarry Smith   ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
1632552f7358SJed Brown   /* ierr = PetscSectionGetStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr); */
1633552f7358SJed Brown   ierr = PetscSectionGetConstrainedStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr);
163482f516ccSBarry Smith   ierr = MatCreate(PetscObjectComm((PetscObject)dm), J);CHKERRQ(ierr);
1635552f7358SJed Brown   ierr = MatSetSizes(*J, localSize, localSize, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
1636552f7358SJed Brown   ierr = MatSetType(*J, mtype);CHKERRQ(ierr);
1637552f7358SJed Brown   ierr = MatSetFromOptions(*J);CHKERRQ(ierr);
1638acd755d7SMatthew G. Knepley   ierr = MatGetBlockSize(*J, &mbs);CHKERRQ(ierr);
1639acd755d7SMatthew G. Knepley   if (mbs > 1) bs = mbs;
1640552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSHELL, &isShell);CHKERRQ(ierr);
1641552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATBAIJ, &isBlock);CHKERRQ(ierr);
1642552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSEQBAIJ, &isSeqBlock);CHKERRQ(ierr);
1643552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATMPIBAIJ, &isMPIBlock);CHKERRQ(ierr);
1644552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSBAIJ, &isSymBlock);CHKERRQ(ierr);
1645552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSEQSBAIJ, &isSymSeqBlock);CHKERRQ(ierr);
1646552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATMPISBAIJ, &isSymMPIBlock);CHKERRQ(ierr);
1647837628f4SStefano Zampini   ierr = PetscStrcmp(mtype, MATIS, &isMatIS);CHKERRQ(ierr);
1648552f7358SJed Brown   if (!isShell) {
1649be36d101SStefano Zampini     PetscSection subSection;
1650837628f4SStefano Zampini     PetscBool    fillMatrix = (PetscBool)(!dm->prealloc_only && !isMatIS);
16510be3e97aSMatthew G. Knepley     PetscInt    *dnz, *onz, *dnzu, *onzu, bsLocal[2], bsMinMax[2], *ltogidx, lsize;
1652fad22124SMatthew G Knepley     PetscInt     pStart, pEnd, p, dof, cdof;
1653552f7358SJed Brown 
165400140cc3SStefano Zampini     /* Set localtoglobalmapping on the matrix for MatSetValuesLocal() to work (it also creates the local matrices in case of MATIS) */
1655be36d101SStefano Zampini     if (isMatIS) { /* need a different l2g map than the one computed by DMGetLocalToGlobalMapping */
1656be36d101SStefano Zampini       PetscSection section;
1657be36d101SStefano Zampini       PetscInt     size;
1658be36d101SStefano Zampini 
165992fd8e1eSJed Brown       ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
1660be36d101SStefano Zampini       ierr = PetscSectionGetStorageSize(section, &size);CHKERRQ(ierr);
1661be36d101SStefano Zampini       ierr = PetscMalloc1(size,&ltogidx);CHKERRQ(ierr);
1662be36d101SStefano Zampini       ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr);
1663be36d101SStefano Zampini     } else {
166400140cc3SStefano Zampini       ierr = DMGetLocalToGlobalMapping(dm,&ltog);CHKERRQ(ierr);
1665be36d101SStefano Zampini     }
1666552f7358SJed Brown     ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr);
1667be36d101SStefano Zampini     for (p = pStart, lsize = 0; p < pEnd; ++p) {
1668a9d99c84SMatthew G. Knepley       PetscInt bdof;
1669a9d99c84SMatthew G. Knepley 
1670552f7358SJed Brown       ierr = PetscSectionGetDof(sectionGlobal, p, &dof);CHKERRQ(ierr);
1671fad22124SMatthew G Knepley       ierr = PetscSectionGetConstraintDof(sectionGlobal, p, &cdof);CHKERRQ(ierr);
16721d17a0a3SMatthew G. Knepley       dof  = dof < 0 ? -(dof+1) : dof;
16731d17a0a3SMatthew G. Knepley       bdof = cdof && (dof-cdof) ? 1 : dof;
16741d17a0a3SMatthew G. Knepley       if (dof) {
16751d17a0a3SMatthew G. Knepley         if (bs < 0)          {bs = bdof;}
1676be36d101SStefano Zampini         else if (bs != bdof) {bs = 1; if (!isMatIS) break;}
1677be36d101SStefano Zampini       }
1678be36d101SStefano Zampini       if (isMatIS) {
1679be36d101SStefano Zampini         PetscInt loff,c,off;
1680be36d101SStefano Zampini         ierr = PetscSectionGetOffset(subSection, p, &loff);CHKERRQ(ierr);
1681be36d101SStefano Zampini         ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr);
1682be36d101SStefano Zampini         for (c = 0; c < dof-cdof; ++c, ++lsize) ltogidx[loff+c] = off > -1 ? off+c : -(off+1)+c;
1683552f7358SJed Brown       }
16842a28c762SMatthew G Knepley     }
16852a28c762SMatthew G Knepley     /* Must have same blocksize on all procs (some might have no points) */
16860be3e97aSMatthew G. Knepley     bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
16870be3e97aSMatthew G. Knepley     ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
16880be3e97aSMatthew G. Knepley     if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
16890be3e97aSMatthew G. Knepley     else                            {bs = bsMinMax[0];}
16906fd5c86aSStefano Zampini     bs = PetscMax(1,bs);
16916fd5c86aSStefano Zampini     if (isMatIS) { /* Must reduce indices by blocksize */
16924fa26246SMatthew G. Knepley       PetscInt l;
16936fd5c86aSStefano Zampini 
16946fd5c86aSStefano Zampini       lsize = lsize/bs;
16956fd5c86aSStefano Zampini       if (bs > 1) for (l = 0; l < lsize; ++l) ltogidx[l] = ltogidx[l*bs]/bs;
16964fa26246SMatthew G. Knepley       ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, lsize, ltogidx, PETSC_OWN_POINTER, &ltog);CHKERRQ(ierr);
1697be36d101SStefano Zampini     }
1698be36d101SStefano Zampini     ierr = MatSetLocalToGlobalMapping(*J,ltog,ltog);CHKERRQ(ierr);
1699be36d101SStefano Zampini     if (isMatIS) {
1700be36d101SStefano Zampini       ierr = ISLocalToGlobalMappingDestroy(&ltog);CHKERRQ(ierr);
1701be36d101SStefano Zampini     }
17021795a4d1SJed Brown     ierr = PetscCalloc4(localSize/bs, &dnz, localSize/bs, &onz, localSize/bs, &dnzu, localSize/bs, &onzu);CHKERRQ(ierr);
17038d1174e4SMatthew G. Knepley     ierr = DMPlexPreallocateOperator(dm, bs, dnz, onz, dnzu, onzu, *J, fillMatrix);CHKERRQ(ierr);
1704552f7358SJed Brown     ierr = PetscFree4(dnz, onz, dnzu, onzu);CHKERRQ(ierr);
1705552f7358SJed Brown   }
1706b1f74addSMatthew G. Knepley   ierr = MatSetDM(*J, dm);CHKERRQ(ierr);
1707552f7358SJed Brown   PetscFunctionReturn(0);
1708552f7358SJed Brown }
1709552f7358SJed Brown 
17107cd05799SMatthew G. Knepley /*@
1711a8f00d21SMatthew G. Knepley   DMPlexGetSubdomainSection - Returns the section associated with the subdomain
1712be36d101SStefano Zampini 
1713be36d101SStefano Zampini   Not collective
1714be36d101SStefano Zampini 
1715be36d101SStefano Zampini   Input Parameter:
1716be36d101SStefano Zampini . mesh - The DMPlex
1717be36d101SStefano Zampini 
1718be36d101SStefano Zampini   Output Parameters:
1719be36d101SStefano Zampini . subsection - The subdomain section
1720be36d101SStefano Zampini 
1721be36d101SStefano Zampini   Level: developer
1722be36d101SStefano Zampini 
1723be36d101SStefano Zampini .seealso:
17247cd05799SMatthew G. Knepley @*/
1725be36d101SStefano Zampini PetscErrorCode DMPlexGetSubdomainSection(DM dm, PetscSection *subsection)
1726be36d101SStefano Zampini {
1727be36d101SStefano Zampini   DM_Plex       *mesh = (DM_Plex*) dm->data;
1728be36d101SStefano Zampini   PetscErrorCode ierr;
1729be36d101SStefano Zampini 
1730be36d101SStefano Zampini   PetscFunctionBegin;
1731be36d101SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1732be36d101SStefano Zampini   if (!mesh->subdomainSection) {
1733be36d101SStefano Zampini     PetscSection section;
1734be36d101SStefano Zampini     PetscSF      sf;
1735be36d101SStefano Zampini 
1736be36d101SStefano Zampini     ierr = PetscSFCreate(PETSC_COMM_SELF,&sf);CHKERRQ(ierr);
173792fd8e1eSJed Brown     ierr = DMGetLocalSection(dm,&section);CHKERRQ(ierr);
1738be36d101SStefano Zampini     ierr = PetscSectionCreateGlobalSection(section,sf,PETSC_FALSE,PETSC_TRUE,&mesh->subdomainSection);CHKERRQ(ierr);
1739be36d101SStefano Zampini     ierr = PetscSFDestroy(&sf);CHKERRQ(ierr);
1740be36d101SStefano Zampini   }
1741be36d101SStefano Zampini   *subsection = mesh->subdomainSection;
1742be36d101SStefano Zampini   PetscFunctionReturn(0);
1743be36d101SStefano Zampini }
1744be36d101SStefano Zampini 
1745552f7358SJed Brown /*@
1746552f7358SJed Brown   DMPlexGetChart - Return the interval for all mesh points [pStart, pEnd)
1747552f7358SJed Brown 
1748552f7358SJed Brown   Not collective
1749552f7358SJed Brown 
1750552f7358SJed Brown   Input Parameter:
1751552f7358SJed Brown . mesh - The DMPlex
1752552f7358SJed Brown 
1753552f7358SJed Brown   Output Parameters:
1754552f7358SJed Brown + pStart - The first mesh point
1755552f7358SJed Brown - pEnd   - The upper bound for mesh points
1756552f7358SJed Brown 
1757552f7358SJed Brown   Level: beginner
1758552f7358SJed Brown 
1759552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart()
1760552f7358SJed Brown @*/
1761552f7358SJed Brown PetscErrorCode DMPlexGetChart(DM dm, PetscInt *pStart, PetscInt *pEnd)
1762552f7358SJed Brown {
1763552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1764552f7358SJed Brown   PetscErrorCode ierr;
1765552f7358SJed Brown 
1766552f7358SJed Brown   PetscFunctionBegin;
1767552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1768552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr);
1769552f7358SJed Brown   PetscFunctionReturn(0);
1770552f7358SJed Brown }
1771552f7358SJed Brown 
1772552f7358SJed Brown /*@
1773552f7358SJed Brown   DMPlexSetChart - Set the interval for all mesh points [pStart, pEnd)
1774552f7358SJed Brown 
1775552f7358SJed Brown   Not collective
1776552f7358SJed Brown 
1777552f7358SJed Brown   Input Parameters:
1778552f7358SJed Brown + mesh - The DMPlex
1779552f7358SJed Brown . pStart - The first mesh point
1780552f7358SJed Brown - pEnd   - The upper bound for mesh points
1781552f7358SJed Brown 
1782552f7358SJed Brown   Output Parameters:
1783552f7358SJed Brown 
1784552f7358SJed Brown   Level: beginner
1785552f7358SJed Brown 
1786552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetChart()
1787552f7358SJed Brown @*/
1788552f7358SJed Brown PetscErrorCode DMPlexSetChart(DM dm, PetscInt pStart, PetscInt pEnd)
1789552f7358SJed Brown {
1790552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1791552f7358SJed Brown   PetscErrorCode ierr;
1792552f7358SJed Brown 
1793552f7358SJed Brown   PetscFunctionBegin;
1794552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1795552f7358SJed Brown   ierr = PetscSectionSetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr);
1796552f7358SJed Brown   ierr = PetscSectionSetChart(mesh->supportSection, pStart, pEnd);CHKERRQ(ierr);
1797552f7358SJed Brown   PetscFunctionReturn(0);
1798552f7358SJed Brown }
1799552f7358SJed Brown 
1800552f7358SJed Brown /*@
1801eaf898f9SPatrick Sanan   DMPlexGetConeSize - Return the number of in-edges for this point in the DAG
1802552f7358SJed Brown 
1803552f7358SJed Brown   Not collective
1804552f7358SJed Brown 
1805552f7358SJed Brown   Input Parameters:
1806552f7358SJed Brown + mesh - The DMPlex
1807eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1808552f7358SJed Brown 
1809552f7358SJed Brown   Output Parameter:
1810552f7358SJed Brown . size - The cone size for point p
1811552f7358SJed Brown 
1812552f7358SJed Brown   Level: beginner
1813552f7358SJed Brown 
1814552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart()
1815552f7358SJed Brown @*/
1816552f7358SJed Brown PetscErrorCode DMPlexGetConeSize(DM dm, PetscInt p, PetscInt *size)
1817552f7358SJed Brown {
1818552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1819552f7358SJed Brown   PetscErrorCode ierr;
1820552f7358SJed Brown 
1821552f7358SJed Brown   PetscFunctionBegin;
1822552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1823552f7358SJed Brown   PetscValidPointer(size, 3);
1824552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, size);CHKERRQ(ierr);
1825552f7358SJed Brown   PetscFunctionReturn(0);
1826552f7358SJed Brown }
1827552f7358SJed Brown 
1828552f7358SJed Brown /*@
1829eaf898f9SPatrick Sanan   DMPlexSetConeSize - Set the number of in-edges for this point in the DAG
1830552f7358SJed Brown 
1831552f7358SJed Brown   Not collective
1832552f7358SJed Brown 
1833552f7358SJed Brown   Input Parameters:
1834552f7358SJed Brown + mesh - The DMPlex
1835eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1836552f7358SJed Brown - size - The cone size for point p
1837552f7358SJed Brown 
1838552f7358SJed Brown   Output Parameter:
1839552f7358SJed Brown 
1840552f7358SJed Brown   Note:
1841552f7358SJed Brown   This should be called after DMPlexSetChart().
1842552f7358SJed Brown 
1843552f7358SJed Brown   Level: beginner
1844552f7358SJed Brown 
1845552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeSize(), DMPlexSetChart()
1846552f7358SJed Brown @*/
1847552f7358SJed Brown PetscErrorCode DMPlexSetConeSize(DM dm, PetscInt p, PetscInt size)
1848552f7358SJed Brown {
1849552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1850552f7358SJed Brown   PetscErrorCode ierr;
1851552f7358SJed Brown 
1852552f7358SJed Brown   PetscFunctionBegin;
1853552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1854552f7358SJed Brown   ierr = PetscSectionSetDof(mesh->coneSection, p, size);CHKERRQ(ierr);
18550d644c17SKarl Rupp 
1856552f7358SJed Brown   mesh->maxConeSize = PetscMax(mesh->maxConeSize, size);
1857552f7358SJed Brown   PetscFunctionReturn(0);
1858552f7358SJed Brown }
1859552f7358SJed Brown 
1860f5a469b9SMatthew G. Knepley /*@
1861eaf898f9SPatrick Sanan   DMPlexAddConeSize - Add the given number of in-edges to this point in the DAG
1862f5a469b9SMatthew G. Knepley 
1863f5a469b9SMatthew G. Knepley   Not collective
1864f5a469b9SMatthew G. Knepley 
1865f5a469b9SMatthew G. Knepley   Input Parameters:
1866f5a469b9SMatthew G. Knepley + mesh - The DMPlex
1867eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1868f5a469b9SMatthew G. Knepley - size - The additional cone size for point p
1869f5a469b9SMatthew G. Knepley 
1870f5a469b9SMatthew G. Knepley   Output Parameter:
1871f5a469b9SMatthew G. Knepley 
1872f5a469b9SMatthew G. Knepley   Note:
1873f5a469b9SMatthew G. Knepley   This should be called after DMPlexSetChart().
1874f5a469b9SMatthew G. Knepley 
1875f5a469b9SMatthew G. Knepley   Level: beginner
1876f5a469b9SMatthew G. Knepley 
1877f5a469b9SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexGetConeSize(), DMPlexSetChart()
1878f5a469b9SMatthew G. Knepley @*/
1879f5a469b9SMatthew G. Knepley PetscErrorCode DMPlexAddConeSize(DM dm, PetscInt p, PetscInt size)
1880f5a469b9SMatthew G. Knepley {
1881f5a469b9SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
1882f5a469b9SMatthew G. Knepley   PetscInt       csize;
1883f5a469b9SMatthew G. Knepley   PetscErrorCode ierr;
1884f5a469b9SMatthew G. Knepley 
1885f5a469b9SMatthew G. Knepley   PetscFunctionBegin;
1886f5a469b9SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1887f5a469b9SMatthew G. Knepley   ierr = PetscSectionAddDof(mesh->coneSection, p, size);CHKERRQ(ierr);
1888f5a469b9SMatthew G. Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &csize);CHKERRQ(ierr);
1889f5a469b9SMatthew G. Knepley 
1890f5a469b9SMatthew G. Knepley   mesh->maxConeSize = PetscMax(mesh->maxConeSize, csize);
1891f5a469b9SMatthew G. Knepley   PetscFunctionReturn(0);
1892f5a469b9SMatthew G. Knepley }
1893f5a469b9SMatthew G. Knepley 
1894552f7358SJed Brown /*@C
1895eaf898f9SPatrick Sanan   DMPlexGetCone - Return the points on the in-edges for this point in the DAG
1896552f7358SJed Brown 
1897552f7358SJed Brown   Not collective
1898552f7358SJed Brown 
1899552f7358SJed Brown   Input Parameters:
1900833c876bSVaclav Hapla + dm - The DMPlex
1901eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1902552f7358SJed Brown 
1903552f7358SJed Brown   Output Parameter:
1904552f7358SJed Brown . cone - An array of points which are on the in-edges for point p
1905552f7358SJed Brown 
1906552f7358SJed Brown   Level: beginner
1907552f7358SJed Brown 
19083813dfbdSMatthew G Knepley   Fortran Notes:
19093813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
19103813dfbdSMatthew G Knepley   include petsc.h90 in your code.
1911922102d1SVaclav Hapla   You must also call DMPlexRestoreCone() after you finish using the returned array.
1912922102d1SVaclav Hapla   DMPlexRestoreCone() is not needed/available in C.
19133813dfbdSMatthew G Knepley 
1914e45f02b0SMatthew G. Knepley .seealso: DMPlexGetConeSize(), DMPlexSetCone(), DMPlexGetConeTuple(), DMPlexSetChart()
1915552f7358SJed Brown @*/
1916552f7358SJed Brown PetscErrorCode DMPlexGetCone(DM dm, PetscInt p, const PetscInt *cone[])
1917552f7358SJed Brown {
1918552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1919552f7358SJed Brown   PetscInt       off;
1920552f7358SJed Brown   PetscErrorCode ierr;
1921552f7358SJed Brown 
1922552f7358SJed Brown   PetscFunctionBegin;
1923552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1924552f7358SJed Brown   PetscValidPointer(cone, 3);
1925552f7358SJed Brown   ierr  = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
1926552f7358SJed Brown   *cone = &mesh->cones[off];
1927552f7358SJed Brown   PetscFunctionReturn(0);
1928552f7358SJed Brown }
1929552f7358SJed Brown 
19300ce7577fSVaclav Hapla /*@C
19310ce7577fSVaclav Hapla   DMPlexGetConeTuple - Return the points on the in-edges of several points in the DAG
19320ce7577fSVaclav Hapla 
19330ce7577fSVaclav Hapla   Not collective
19340ce7577fSVaclav Hapla 
19350ce7577fSVaclav Hapla   Input Parameters:
19360ce7577fSVaclav Hapla + dm - The DMPlex
19370ce7577fSVaclav Hapla - p - The IS of points, which must lie in the chart set with DMPlexSetChart()
19380ce7577fSVaclav Hapla 
19390ce7577fSVaclav Hapla   Output Parameter:
19400ce7577fSVaclav Hapla + pConesSection - PetscSection describing the layout of pCones
19410ce7577fSVaclav Hapla - pCones - An array of points which are on the in-edges for the point set p
19420ce7577fSVaclav Hapla 
19430ce7577fSVaclav Hapla   Level: intermediate
19440ce7577fSVaclav Hapla 
1945d4636a37SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeRecursive(), DMPlexSetChart()
19460ce7577fSVaclav Hapla @*/
19470ce7577fSVaclav Hapla PetscErrorCode DMPlexGetConeTuple(DM dm, IS p, PetscSection *pConesSection, IS *pCones)
19480ce7577fSVaclav Hapla {
19490ce7577fSVaclav Hapla   PetscSection        cs, newcs;
19500ce7577fSVaclav Hapla   PetscInt            *cones;
19510ce7577fSVaclav Hapla   PetscInt            *newarr=NULL;
19520ce7577fSVaclav Hapla   PetscInt            n;
19530ce7577fSVaclav Hapla   PetscErrorCode      ierr;
19540ce7577fSVaclav Hapla 
19550ce7577fSVaclav Hapla   PetscFunctionBegin;
19560ce7577fSVaclav Hapla   ierr = DMPlexGetCones(dm, &cones);CHKERRQ(ierr);
19570ce7577fSVaclav Hapla   ierr = DMPlexGetConeSection(dm, &cs);CHKERRQ(ierr);
19580ce7577fSVaclav Hapla   ierr = PetscSectionExtractDofsFromArray(cs, MPIU_INT, cones, p, &newcs, pCones ? ((void**)&newarr) : NULL);CHKERRQ(ierr);
19590ce7577fSVaclav Hapla   if (pConesSection) *pConesSection = newcs;
19600ce7577fSVaclav Hapla   if (pCones) {
19610ce7577fSVaclav Hapla     ierr = PetscSectionGetStorageSize(newcs, &n);CHKERRQ(ierr);
19620ce7577fSVaclav Hapla     ierr = ISCreateGeneral(PetscObjectComm((PetscObject)p), n, newarr, PETSC_OWN_POINTER, pCones);CHKERRQ(ierr);
19630ce7577fSVaclav Hapla   }
19640ce7577fSVaclav Hapla   PetscFunctionReturn(0);
19650ce7577fSVaclav Hapla }
19660ce7577fSVaclav Hapla 
1967af9eab45SVaclav Hapla /*@
1968af9eab45SVaclav Hapla   DMPlexGetConeRecursiveVertices - Expand each given point into its cone points and do that recursively until we end up just with vertices.
1969d4636a37SVaclav Hapla 
1970d4636a37SVaclav Hapla   Not collective
1971d4636a37SVaclav Hapla 
1972d4636a37SVaclav Hapla   Input Parameters:
1973d4636a37SVaclav Hapla + dm - The DMPlex
1974af9eab45SVaclav Hapla - points - The IS of points, which must lie in the chart set with DMPlexSetChart()
1975d4636a37SVaclav Hapla 
1976d4636a37SVaclav Hapla   Output Parameter:
1977af9eab45SVaclav Hapla . expandedPoints - An array of vertices recursively expanded from input points
1978d4636a37SVaclav Hapla 
1979d4636a37SVaclav Hapla   Level: advanced
1980d4636a37SVaclav Hapla 
1981af9eab45SVaclav Hapla   Notes:
1982af9eab45SVaclav Hapla   Like DMPlexGetConeRecursive but returns only the 0-depth IS (i.e. vertices only) and no sections.
1983af9eab45SVaclav Hapla   There is no corresponding Restore function, just call ISDestroy() on the returned IS to deallocate.
1984af9eab45SVaclav Hapla 
1985af9eab45SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeTuple(), DMPlexGetConeRecursive(), DMPlexRestoreConeRecursive(), DMPlexGetDepth()
1986d4636a37SVaclav Hapla @*/
1987af9eab45SVaclav Hapla PetscErrorCode DMPlexGetConeRecursiveVertices(DM dm, IS points, IS *expandedPoints)
1988d4636a37SVaclav Hapla {
1989af9eab45SVaclav Hapla   IS                  *expandedPointsAll;
1990af9eab45SVaclav Hapla   PetscInt            depth;
1991d4636a37SVaclav Hapla   PetscErrorCode      ierr;
1992d4636a37SVaclav Hapla 
1993d4636a37SVaclav Hapla   PetscFunctionBegin;
1994af9eab45SVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1995af9eab45SVaclav Hapla   PetscValidHeaderSpecific(points, IS_CLASSID, 2);
1996af9eab45SVaclav Hapla   PetscValidPointer(expandedPoints, 3);
1997af9eab45SVaclav Hapla   ierr = DMPlexGetConeRecursive(dm, points, &depth, &expandedPointsAll, NULL);CHKERRQ(ierr);
1998af9eab45SVaclav Hapla   *expandedPoints = expandedPointsAll[0];
1999af9eab45SVaclav Hapla   ierr = PetscObjectReference((PetscObject)expandedPointsAll[0]);
2000af9eab45SVaclav Hapla   ierr = DMPlexRestoreConeRecursive(dm, points, &depth, &expandedPointsAll, NULL);CHKERRQ(ierr);
2001af9eab45SVaclav Hapla   PetscFunctionReturn(0);
2002af9eab45SVaclav Hapla }
2003af9eab45SVaclav Hapla 
2004af9eab45SVaclav Hapla /*@
2005af9eab45SVaclav Hapla   DMPlexGetConeRecursive - Expand each given point into its cone points and do that recursively until we end up just with vertices (DAG points of depth 0, i.e. without cones).
2006af9eab45SVaclav Hapla 
2007af9eab45SVaclav Hapla   Not collective
2008af9eab45SVaclav Hapla 
2009af9eab45SVaclav Hapla   Input Parameters:
2010af9eab45SVaclav Hapla + dm - The DMPlex
2011af9eab45SVaclav Hapla - points - The IS of points, which must lie in the chart set with DMPlexSetChart()
2012af9eab45SVaclav Hapla 
2013af9eab45SVaclav Hapla   Output Parameter:
2014af9eab45SVaclav Hapla + depth - (optional) Size of the output arrays, equal to DMPlex depth, returned by DMPlexGetDepth()
2015af9eab45SVaclav Hapla . expandedPoints - (optional) An array of index sets with recursively expanded cones
2016af9eab45SVaclav Hapla - sections - (optional) An array of sections which describe mappings from points to their cone points
2017af9eab45SVaclav Hapla 
2018af9eab45SVaclav Hapla   Level: advanced
2019af9eab45SVaclav Hapla 
2020af9eab45SVaclav Hapla   Notes:
2021af9eab45SVaclav Hapla   Like DMPlexGetConeTuple() but recursive.
2022af9eab45SVaclav Hapla 
2023af9eab45SVaclav Hapla   Array expandedPoints has size equal to depth. Each expandedPoints[d] contains DAG points with maximum depth d, recursively cone-wise expanded from the input points.
2024af9eab45SVaclav Hapla   For example, for d=0 it contains only vertices, for d=1 it can contain vertices and edges, etc.
2025af9eab45SVaclav Hapla 
2026af9eab45SVaclav Hapla   Array section has size equal to depth.  Each PetscSection sections[d] realizes mapping from expandedPoints[d+1] (section points) to expandedPoints[d] (section dofs) as follows:
2027af9eab45SVaclav Hapla   (1) DAG points in expandedPoints[d+1] with depth d+1 to their cone points in expandedPoints[d];
2028af9eab45SVaclav Hapla   (2) DAG points in expandedPoints[d+1] with depth in [0,d] to the same points in expandedPoints[d].
2029af9eab45SVaclav Hapla 
2030af9eab45SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeTuple(), DMPlexRestoreConeRecursive(), DMPlexGetConeRecursiveVertices(), DMPlexGetDepth()
2031af9eab45SVaclav Hapla @*/
2032af9eab45SVaclav Hapla PetscErrorCode DMPlexGetConeRecursive(DM dm, IS points, PetscInt *depth, IS *expandedPoints[], PetscSection *sections[])
2033af9eab45SVaclav Hapla {
2034af9eab45SVaclav Hapla   const PetscInt      *arr0=NULL, *cone=NULL;
2035af9eab45SVaclav Hapla   PetscInt            *arr=NULL, *newarr=NULL;
2036af9eab45SVaclav Hapla   PetscInt            d, depth_, i, n, newn, cn, co, start, end;
2037af9eab45SVaclav Hapla   IS                  *expandedPoints_;
2038af9eab45SVaclav Hapla   PetscSection        *sections_;
2039af9eab45SVaclav Hapla   PetscErrorCode      ierr;
2040af9eab45SVaclav Hapla 
2041af9eab45SVaclav Hapla   PetscFunctionBegin;
2042af9eab45SVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2043af9eab45SVaclav Hapla   PetscValidHeaderSpecific(points, IS_CLASSID, 2);
2044af9eab45SVaclav Hapla   if (depth) PetscValidIntPointer(depth, 3);
2045af9eab45SVaclav Hapla   if (expandedPoints) PetscValidPointer(expandedPoints, 4);
2046af9eab45SVaclav Hapla   if (sections) PetscValidPointer(sections, 5);
2047af9eab45SVaclav Hapla   ierr = ISGetLocalSize(points, &n);CHKERRQ(ierr);
2048af9eab45SVaclav Hapla   ierr = ISGetIndices(points, &arr0);CHKERRQ(ierr);
2049af9eab45SVaclav Hapla   ierr = DMPlexGetDepth(dm, &depth_);CHKERRQ(ierr);
2050af9eab45SVaclav Hapla   ierr = PetscCalloc1(depth_, &expandedPoints_);CHKERRQ(ierr);
2051af9eab45SVaclav Hapla   ierr = PetscCalloc1(depth_, &sections_);CHKERRQ(ierr);
2052af9eab45SVaclav Hapla   arr = (PetscInt*) arr0; /* this is ok because first generation of arr is not modified */
2053af9eab45SVaclav Hapla   for (d=depth_-1; d>=0; d--) {
2054af9eab45SVaclav Hapla     ierr = PetscSectionCreate(PETSC_COMM_SELF, &sections_[d]);CHKERRQ(ierr);
2055af9eab45SVaclav Hapla     ierr = PetscSectionSetChart(sections_[d], 0, n);CHKERRQ(ierr);
2056af9eab45SVaclav Hapla     for (i=0; i<n; i++) {
2057af9eab45SVaclav Hapla       ierr = DMPlexGetDepthStratum(dm, d+1, &start, &end);CHKERRQ(ierr);
2058af9eab45SVaclav Hapla       if (arr[i] >= start && arr[i] < end) {
2059af9eab45SVaclav Hapla         ierr = DMPlexGetConeSize(dm, arr[i], &cn);CHKERRQ(ierr);
2060af9eab45SVaclav Hapla         ierr = PetscSectionSetDof(sections_[d], i, cn);CHKERRQ(ierr);
2061af9eab45SVaclav Hapla       } else {
2062af9eab45SVaclav Hapla         ierr = PetscSectionSetDof(sections_[d], i, 1);CHKERRQ(ierr);
2063af9eab45SVaclav Hapla       }
2064af9eab45SVaclav Hapla     }
2065af9eab45SVaclav Hapla     ierr = PetscSectionSetUp(sections_[d]);CHKERRQ(ierr);
2066af9eab45SVaclav Hapla     ierr = PetscSectionGetStorageSize(sections_[d], &newn);CHKERRQ(ierr);
2067af9eab45SVaclav Hapla     ierr = PetscMalloc1(newn, &newarr);CHKERRQ(ierr);
2068af9eab45SVaclav Hapla     for (i=0; i<n; i++) {
2069af9eab45SVaclav Hapla       ierr = PetscSectionGetDof(sections_[d], i, &cn);CHKERRQ(ierr);
2070af9eab45SVaclav Hapla       ierr = PetscSectionGetOffset(sections_[d], i, &co);CHKERRQ(ierr);
2071af9eab45SVaclav Hapla       if (cn > 1) {
2072af9eab45SVaclav Hapla         ierr = DMPlexGetCone(dm, arr[i], &cone);CHKERRQ(ierr);
2073af9eab45SVaclav Hapla         ierr = PetscMemcpy(&newarr[co], cone, cn*sizeof(PetscInt));CHKERRQ(ierr);
2074af9eab45SVaclav Hapla       } else {
2075af9eab45SVaclav Hapla         newarr[co] = arr[i];
2076af9eab45SVaclav Hapla       }
2077af9eab45SVaclav Hapla     }
2078af9eab45SVaclav Hapla     ierr = ISCreateGeneral(PETSC_COMM_SELF, newn, newarr, PETSC_OWN_POINTER, &expandedPoints_[d]);CHKERRQ(ierr);
2079af9eab45SVaclav Hapla     arr = newarr;
2080af9eab45SVaclav Hapla     n = newn;
2081af9eab45SVaclav Hapla   }
2082ba2698f1SMatthew G. Knepley   ierr = ISRestoreIndices(points, &arr0);CHKERRQ(ierr);
2083af9eab45SVaclav Hapla   *depth = depth_;
2084af9eab45SVaclav Hapla   if (expandedPoints) *expandedPoints = expandedPoints_;
2085af9eab45SVaclav Hapla   else {
2086af9eab45SVaclav Hapla     for (d=0; d<depth_; d++) {ierr = ISDestroy(&expandedPoints_[d]);CHKERRQ(ierr);}
2087af9eab45SVaclav Hapla     ierr = PetscFree(expandedPoints_);CHKERRQ(ierr);
2088af9eab45SVaclav Hapla   }
2089af9eab45SVaclav Hapla   if (sections) *sections = sections_;
2090af9eab45SVaclav Hapla   else {
2091af9eab45SVaclav Hapla     for (d=0; d<depth_; d++) {ierr = PetscSectionDestroy(&sections_[d]);CHKERRQ(ierr);}
2092af9eab45SVaclav Hapla     ierr = PetscFree(sections_);CHKERRQ(ierr);
2093af9eab45SVaclav Hapla   }
2094af9eab45SVaclav Hapla   PetscFunctionReturn(0);
2095af9eab45SVaclav Hapla }
2096af9eab45SVaclav Hapla 
2097af9eab45SVaclav Hapla /*@
2098af9eab45SVaclav Hapla   DMPlexRestoreConeRecursive - Deallocates arrays created by DMPlexGetConeRecursive
2099af9eab45SVaclav Hapla 
2100af9eab45SVaclav Hapla   Not collective
2101af9eab45SVaclav Hapla 
2102af9eab45SVaclav Hapla   Input Parameters:
2103af9eab45SVaclav Hapla + dm - The DMPlex
2104af9eab45SVaclav Hapla - points - The IS of points, which must lie in the chart set with DMPlexSetChart()
2105af9eab45SVaclav Hapla 
2106af9eab45SVaclav Hapla   Output Parameter:
2107af9eab45SVaclav Hapla + depth - (optional) Size of the output arrays, equal to DMPlex depth, returned by DMPlexGetDepth()
2108af9eab45SVaclav Hapla . expandedPoints - (optional) An array of recursively expanded cones
2109af9eab45SVaclav Hapla - sections - (optional) An array of sections which describe mappings from points to their cone points
2110af9eab45SVaclav Hapla 
2111af9eab45SVaclav Hapla   Level: advanced
2112af9eab45SVaclav Hapla 
2113af9eab45SVaclav Hapla   Notes:
2114af9eab45SVaclav Hapla   See DMPlexGetConeRecursive() for details.
2115af9eab45SVaclav Hapla 
2116af9eab45SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeTuple(), DMPlexGetConeRecursive(), DMPlexGetConeRecursiveVertices(), DMPlexGetDepth()
2117af9eab45SVaclav Hapla @*/
2118af9eab45SVaclav Hapla PetscErrorCode DMPlexRestoreConeRecursive(DM dm, IS points, PetscInt *depth, IS *expandedPoints[], PetscSection *sections[])
2119af9eab45SVaclav Hapla {
2120af9eab45SVaclav Hapla   PetscInt            d, depth_;
2121af9eab45SVaclav Hapla   PetscErrorCode      ierr;
2122af9eab45SVaclav Hapla 
2123af9eab45SVaclav Hapla   PetscFunctionBegin;
2124af9eab45SVaclav Hapla   ierr = DMPlexGetDepth(dm, &depth_);CHKERRQ(ierr);
2125af9eab45SVaclav Hapla   if (depth && *depth != depth_) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "depth changed since last call to DMPlexGetConeRecursive");
2126af9eab45SVaclav Hapla   if (depth) *depth = 0;
2127af9eab45SVaclav Hapla   if (expandedPoints) {
2128af9eab45SVaclav Hapla     for (d=0; d<depth_; d++) {ierr = ISDestroy(&((*expandedPoints)[d]));CHKERRQ(ierr);}
2129af9eab45SVaclav Hapla     ierr = PetscFree(*expandedPoints);CHKERRQ(ierr);
2130af9eab45SVaclav Hapla   }
2131af9eab45SVaclav Hapla   if (sections)  {
2132af9eab45SVaclav Hapla     for (d=0; d<depth_; d++) {ierr = PetscSectionDestroy(&((*sections)[d]));CHKERRQ(ierr);}
2133af9eab45SVaclav Hapla     ierr = PetscFree(*sections);CHKERRQ(ierr);
2134af9eab45SVaclav Hapla   }
2135d4636a37SVaclav Hapla   PetscFunctionReturn(0);
2136d4636a37SVaclav Hapla }
2137d4636a37SVaclav Hapla 
2138552f7358SJed Brown /*@
213992371b87SBarry Smith   DMPlexSetCone - Set the points on the in-edges for this point in the DAG; that is these are the points that cover the specific point
2140552f7358SJed Brown 
2141552f7358SJed Brown   Not collective
2142552f7358SJed Brown 
2143552f7358SJed Brown   Input Parameters:
2144552f7358SJed Brown + mesh - The DMPlex
2145eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2146552f7358SJed Brown - cone - An array of points which are on the in-edges for point p
2147552f7358SJed Brown 
2148552f7358SJed Brown   Output Parameter:
2149552f7358SJed Brown 
2150552f7358SJed Brown   Note:
2151552f7358SJed Brown   This should be called after all calls to DMPlexSetConeSize() and DMSetUp().
2152552f7358SJed Brown 
215392371b87SBarry Smith   Developer Note: Why not call this DMPlexSetCover()
215492371b87SBarry Smith 
2155552f7358SJed Brown   Level: beginner
2156552f7358SJed Brown 
215792371b87SBarry Smith .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp(), DMPlexSetSupport(), DMPlexSetSupportSize()
2158552f7358SJed Brown @*/
2159552f7358SJed Brown PetscErrorCode DMPlexSetCone(DM dm, PetscInt p, const PetscInt cone[])
2160552f7358SJed Brown {
2161552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2162552f7358SJed Brown   PetscInt       pStart, pEnd;
2163552f7358SJed Brown   PetscInt       dof, off, c;
2164552f7358SJed Brown   PetscErrorCode ierr;
2165552f7358SJed Brown 
2166552f7358SJed Brown   PetscFunctionBegin;
2167552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2168552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
2169552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2170552f7358SJed Brown   if (dof) PetscValidPointer(cone, 3);
2171552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
217282f516ccSBarry Smith   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
2173552f7358SJed Brown   for (c = 0; c < dof; ++c) {
217482f516ccSBarry Smith     if ((cone[c] < pStart) || (cone[c] >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cone point %D is not in the valid range [%D, %D)", cone[c], pStart, pEnd);
2175552f7358SJed Brown     mesh->cones[off+c] = cone[c];
2176552f7358SJed Brown   }
2177552f7358SJed Brown   PetscFunctionReturn(0);
2178552f7358SJed Brown }
2179552f7358SJed Brown 
2180552f7358SJed Brown /*@C
2181eaf898f9SPatrick Sanan   DMPlexGetConeOrientation - Return the orientations on the in-edges for this point in the DAG
2182552f7358SJed Brown 
2183552f7358SJed Brown   Not collective
2184552f7358SJed Brown 
2185552f7358SJed Brown   Input Parameters:
2186552f7358SJed Brown + mesh - The DMPlex
2187eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
2188552f7358SJed Brown 
2189552f7358SJed Brown   Output Parameter:
2190552f7358SJed Brown . coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an
2191552f7358SJed Brown                     integer giving the prescription for cone traversal. If it is negative, the cone is
2192552f7358SJed Brown                     traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives
2193552f7358SJed Brown                     the index of the cone point on which to start.
2194552f7358SJed Brown 
2195552f7358SJed Brown   Level: beginner
2196552f7358SJed Brown 
21973813dfbdSMatthew G Knepley   Fortran Notes:
21983813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
21993813dfbdSMatthew G Knepley   include petsc.h90 in your code.
22003b12b3d8SVaclav Hapla   You must also call DMPlexRestoreConeOrientation() after you finish using the returned array.
2201922102d1SVaclav Hapla   DMPlexRestoreConeOrientation() is not needed/available in C.
22023813dfbdSMatthew G Knepley 
2203552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetCone(), DMPlexSetChart()
2204552f7358SJed Brown @*/
2205552f7358SJed Brown PetscErrorCode DMPlexGetConeOrientation(DM dm, PetscInt p, const PetscInt *coneOrientation[])
2206552f7358SJed Brown {
2207552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2208552f7358SJed Brown   PetscInt       off;
2209552f7358SJed Brown   PetscErrorCode ierr;
2210552f7358SJed Brown 
2211552f7358SJed Brown   PetscFunctionBegin;
2212552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
221376bd3646SJed Brown   if (PetscDefined(USE_DEBUG)) {
2214552f7358SJed Brown     PetscInt dof;
2215552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2216552f7358SJed Brown     if (dof) PetscValidPointer(coneOrientation, 3);
2217552f7358SJed Brown   }
2218552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
22190d644c17SKarl Rupp 
2220552f7358SJed Brown   *coneOrientation = &mesh->coneOrientations[off];
2221552f7358SJed Brown   PetscFunctionReturn(0);
2222552f7358SJed Brown }
2223552f7358SJed Brown 
2224552f7358SJed Brown /*@
2225eaf898f9SPatrick Sanan   DMPlexSetConeOrientation - Set the orientations on the in-edges for this point in the DAG
2226552f7358SJed Brown 
2227552f7358SJed Brown   Not collective
2228552f7358SJed Brown 
2229552f7358SJed Brown   Input Parameters:
2230552f7358SJed Brown + mesh - The DMPlex
2231eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2232552f7358SJed Brown - coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an
2233552f7358SJed Brown                     integer giving the prescription for cone traversal. If it is negative, the cone is
2234552f7358SJed Brown                     traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives
2235552f7358SJed Brown                     the index of the cone point on which to start.
2236552f7358SJed Brown 
2237552f7358SJed Brown   Output Parameter:
2238552f7358SJed Brown 
2239552f7358SJed Brown   Note:
2240552f7358SJed Brown   This should be called after all calls to DMPlexSetConeSize() and DMSetUp().
2241552f7358SJed Brown 
2242552f7358SJed Brown   Level: beginner
2243552f7358SJed Brown 
2244552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeOrientation(), DMPlexSetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
2245552f7358SJed Brown @*/
2246552f7358SJed Brown PetscErrorCode DMPlexSetConeOrientation(DM dm, PetscInt p, const PetscInt coneOrientation[])
2247552f7358SJed Brown {
2248552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2249552f7358SJed Brown   PetscInt       pStart, pEnd;
2250552f7358SJed Brown   PetscInt       dof, off, c;
2251552f7358SJed Brown   PetscErrorCode ierr;
2252552f7358SJed Brown 
2253552f7358SJed Brown   PetscFunctionBegin;
2254552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2255552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
2256552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2257552f7358SJed Brown   if (dof) PetscValidPointer(coneOrientation, 3);
2258552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
225982f516ccSBarry Smith   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
2260552f7358SJed Brown   for (c = 0; c < dof; ++c) {
2261552f7358SJed Brown     PetscInt cdof, o = coneOrientation[c];
2262552f7358SJed Brown 
2263552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, mesh->cones[off+c], &cdof);CHKERRQ(ierr);
226482f516ccSBarry Smith     if (o && ((o < -(cdof+1)) || (o >= cdof))) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cone orientation %D is not in the valid range [%D. %D)", o, -(cdof+1), cdof);
2265552f7358SJed Brown     mesh->coneOrientations[off+c] = o;
2266552f7358SJed Brown   }
2267552f7358SJed Brown   PetscFunctionReturn(0);
2268552f7358SJed Brown }
2269552f7358SJed Brown 
22707cd05799SMatthew G. Knepley /*@
2271eaf898f9SPatrick Sanan   DMPlexInsertCone - Insert a point into the in-edges for the point p in the DAG
22727cd05799SMatthew G. Knepley 
22737cd05799SMatthew G. Knepley   Not collective
22747cd05799SMatthew G. Knepley 
22757cd05799SMatthew G. Knepley   Input Parameters:
22767cd05799SMatthew G. Knepley + mesh - The DMPlex
2277eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
22787cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put
22797cd05799SMatthew G. Knepley - conePoint - The mesh point to insert
22807cd05799SMatthew G. Knepley 
22817cd05799SMatthew G. Knepley   Level: beginner
22827cd05799SMatthew G. Knepley 
22837cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
22847cd05799SMatthew G. Knepley @*/
2285552f7358SJed Brown PetscErrorCode DMPlexInsertCone(DM dm, PetscInt p, PetscInt conePos, PetscInt conePoint)
2286552f7358SJed Brown {
2287552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2288552f7358SJed Brown   PetscInt       pStart, pEnd;
2289552f7358SJed Brown   PetscInt       dof, off;
2290552f7358SJed Brown   PetscErrorCode ierr;
2291552f7358SJed Brown 
2292552f7358SJed Brown   PetscFunctionBegin;
2293552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2294552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
229582f516ccSBarry Smith   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
229682f516ccSBarry Smith   if ((conePoint < pStart) || (conePoint >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cone point %D is not in the valid range [%D, %D)", conePoint, pStart, pEnd);
229777c88f5bSMatthew G Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
229877c88f5bSMatthew G Knepley   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
229977c88f5bSMatthew G Knepley   if ((conePos < 0) || (conePos >= dof)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cone position %D of point %D is not in the valid range [0, %D)", conePos, p, dof);
2300552f7358SJed Brown   mesh->cones[off+conePos] = conePoint;
2301552f7358SJed Brown   PetscFunctionReturn(0);
2302552f7358SJed Brown }
2303552f7358SJed Brown 
23047cd05799SMatthew G. Knepley /*@
2305eaf898f9SPatrick Sanan   DMPlexInsertConeOrientation - Insert a point orientation for the in-edge for the point p in the DAG
23067cd05799SMatthew G. Knepley 
23077cd05799SMatthew G. Knepley   Not collective
23087cd05799SMatthew G. Knepley 
23097cd05799SMatthew G. Knepley   Input Parameters:
23107cd05799SMatthew G. Knepley + mesh - The DMPlex
2311eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
23127cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put
23137cd05799SMatthew G. Knepley - coneOrientation - The point orientation to insert
23147cd05799SMatthew G. Knepley 
23157cd05799SMatthew G. Knepley   Level: beginner
23167cd05799SMatthew G. Knepley 
23177cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
23187cd05799SMatthew G. Knepley @*/
231977c88f5bSMatthew G Knepley PetscErrorCode DMPlexInsertConeOrientation(DM dm, PetscInt p, PetscInt conePos, PetscInt coneOrientation)
232077c88f5bSMatthew G Knepley {
232177c88f5bSMatthew G Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
232277c88f5bSMatthew G Knepley   PetscInt       pStart, pEnd;
232377c88f5bSMatthew G Knepley   PetscInt       dof, off;
232477c88f5bSMatthew G Knepley   PetscErrorCode ierr;
232577c88f5bSMatthew G Knepley 
232677c88f5bSMatthew G Knepley   PetscFunctionBegin;
232777c88f5bSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
232877c88f5bSMatthew G Knepley   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
232977c88f5bSMatthew G Knepley   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
233077c88f5bSMatthew G Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
233177c88f5bSMatthew G Knepley   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
233277c88f5bSMatthew G Knepley   if ((conePos < 0) || (conePos >= dof)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cone position %D of point %D is not in the valid range [0, %D)", conePos, p, dof);
233377c88f5bSMatthew G Knepley   mesh->coneOrientations[off+conePos] = coneOrientation;
233477c88f5bSMatthew G Knepley   PetscFunctionReturn(0);
233577c88f5bSMatthew G Knepley }
233677c88f5bSMatthew G Knepley 
2337552f7358SJed Brown /*@
2338eaf898f9SPatrick Sanan   DMPlexGetSupportSize - Return the number of out-edges for this point in the DAG
2339552f7358SJed Brown 
2340552f7358SJed Brown   Not collective
2341552f7358SJed Brown 
2342552f7358SJed Brown   Input Parameters:
2343552f7358SJed Brown + mesh - The DMPlex
2344eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
2345552f7358SJed Brown 
2346552f7358SJed Brown   Output Parameter:
2347552f7358SJed Brown . size - The support size for point p
2348552f7358SJed Brown 
2349552f7358SJed Brown   Level: beginner
2350552f7358SJed Brown 
2351552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart(), DMPlexGetConeSize()
2352552f7358SJed Brown @*/
2353552f7358SJed Brown PetscErrorCode DMPlexGetSupportSize(DM dm, PetscInt p, PetscInt *size)
2354552f7358SJed Brown {
2355552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2356552f7358SJed Brown   PetscErrorCode ierr;
2357552f7358SJed Brown 
2358552f7358SJed Brown   PetscFunctionBegin;
2359552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2360552f7358SJed Brown   PetscValidPointer(size, 3);
2361552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, size);CHKERRQ(ierr);
2362552f7358SJed Brown   PetscFunctionReturn(0);
2363552f7358SJed Brown }
2364552f7358SJed Brown 
2365552f7358SJed Brown /*@
2366eaf898f9SPatrick Sanan   DMPlexSetSupportSize - Set the number of out-edges for this point in the DAG
2367552f7358SJed Brown 
2368552f7358SJed Brown   Not collective
2369552f7358SJed Brown 
2370552f7358SJed Brown   Input Parameters:
2371552f7358SJed Brown + mesh - The DMPlex
2372eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2373552f7358SJed Brown - size - The support size for point p
2374552f7358SJed Brown 
2375552f7358SJed Brown   Output Parameter:
2376552f7358SJed Brown 
2377552f7358SJed Brown   Note:
2378552f7358SJed Brown   This should be called after DMPlexSetChart().
2379552f7358SJed Brown 
2380552f7358SJed Brown   Level: beginner
2381552f7358SJed Brown 
2382552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetSupportSize(), DMPlexSetChart()
2383552f7358SJed Brown @*/
2384552f7358SJed Brown PetscErrorCode DMPlexSetSupportSize(DM dm, PetscInt p, PetscInt size)
2385552f7358SJed Brown {
2386552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2387552f7358SJed Brown   PetscErrorCode ierr;
2388552f7358SJed Brown 
2389552f7358SJed Brown   PetscFunctionBegin;
2390552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2391552f7358SJed Brown   ierr = PetscSectionSetDof(mesh->supportSection, p, size);CHKERRQ(ierr);
23920d644c17SKarl Rupp 
2393552f7358SJed Brown   mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, size);
2394552f7358SJed Brown   PetscFunctionReturn(0);
2395552f7358SJed Brown }
2396552f7358SJed Brown 
2397552f7358SJed Brown /*@C
2398eaf898f9SPatrick Sanan   DMPlexGetSupport - Return the points on the out-edges for this point in the DAG
2399552f7358SJed Brown 
2400552f7358SJed Brown   Not collective
2401552f7358SJed Brown 
2402552f7358SJed Brown   Input Parameters:
2403552f7358SJed Brown + mesh - The DMPlex
2404eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
2405552f7358SJed Brown 
2406552f7358SJed Brown   Output Parameter:
2407552f7358SJed Brown . support - An array of points which are on the out-edges for point p
2408552f7358SJed Brown 
2409552f7358SJed Brown   Level: beginner
2410552f7358SJed Brown 
24113813dfbdSMatthew G Knepley   Fortran Notes:
24123813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
24133813dfbdSMatthew G Knepley   include petsc.h90 in your code.
24143b12b3d8SVaclav Hapla   You must also call DMPlexRestoreSupport() after you finish using the returned array.
2415922102d1SVaclav Hapla   DMPlexRestoreSupport() is not needed/available in C.
24163813dfbdSMatthew G Knepley 
2417e45f02b0SMatthew G. Knepley .seealso: DMPlexGetSupportSize(), DMPlexSetSupport(), DMPlexGetCone(), DMPlexSetChart()
2418552f7358SJed Brown @*/
2419552f7358SJed Brown PetscErrorCode DMPlexGetSupport(DM dm, PetscInt p, const PetscInt *support[])
2420552f7358SJed Brown {
2421552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2422552f7358SJed Brown   PetscInt       off;
2423552f7358SJed Brown   PetscErrorCode ierr;
2424552f7358SJed Brown 
2425552f7358SJed Brown   PetscFunctionBegin;
2426552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2427552f7358SJed Brown   PetscValidPointer(support, 3);
2428552f7358SJed Brown   ierr     = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
2429552f7358SJed Brown   *support = &mesh->supports[off];
2430552f7358SJed Brown   PetscFunctionReturn(0);
2431552f7358SJed Brown }
2432552f7358SJed Brown 
2433552f7358SJed Brown /*@
243492371b87SBarry Smith   DMPlexSetSupport - Set the points on the out-edges for this point in the DAG, that is the list of points that this point covers
2435552f7358SJed Brown 
2436552f7358SJed Brown   Not collective
2437552f7358SJed Brown 
2438552f7358SJed Brown   Input Parameters:
2439552f7358SJed Brown + mesh - The DMPlex
2440eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
244192371b87SBarry Smith - support - An array of points which are on the out-edges for point p
2442552f7358SJed Brown 
2443552f7358SJed Brown   Output Parameter:
2444552f7358SJed Brown 
2445552f7358SJed Brown   Note:
2446552f7358SJed Brown   This should be called after all calls to DMPlexSetSupportSize() and DMSetUp().
2447552f7358SJed Brown 
2448552f7358SJed Brown   Level: beginner
2449552f7358SJed Brown 
245092371b87SBarry Smith .seealso: DMPlexSetCone(), DMPlexSetConeSize(), DMPlexCreate(), DMPlexGetSupport(), DMPlexSetChart(), DMPlexSetSupportSize(), DMSetUp()
2451552f7358SJed Brown @*/
2452552f7358SJed Brown PetscErrorCode DMPlexSetSupport(DM dm, PetscInt p, const PetscInt support[])
2453552f7358SJed Brown {
2454552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2455552f7358SJed Brown   PetscInt       pStart, pEnd;
2456552f7358SJed Brown   PetscInt       dof, off, c;
2457552f7358SJed Brown   PetscErrorCode ierr;
2458552f7358SJed Brown 
2459552f7358SJed Brown   PetscFunctionBegin;
2460552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2461552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr);
2462552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
2463552f7358SJed Brown   if (dof) PetscValidPointer(support, 3);
2464552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
246582f516ccSBarry Smith   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
2466552f7358SJed Brown   for (c = 0; c < dof; ++c) {
246782f516ccSBarry Smith     if ((support[c] < pStart) || (support[c] >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Support point %D is not in the valid range [%D, %D)", support[c], pStart, pEnd);
2468552f7358SJed Brown     mesh->supports[off+c] = support[c];
2469552f7358SJed Brown   }
2470552f7358SJed Brown   PetscFunctionReturn(0);
2471552f7358SJed Brown }
2472552f7358SJed Brown 
24737cd05799SMatthew G. Knepley /*@
2474eaf898f9SPatrick Sanan   DMPlexInsertSupport - Insert a point into the out-edges for the point p in the DAG
24757cd05799SMatthew G. Knepley 
24767cd05799SMatthew G. Knepley   Not collective
24777cd05799SMatthew G. Knepley 
24787cd05799SMatthew G. Knepley   Input Parameters:
24797cd05799SMatthew G. Knepley + mesh - The DMPlex
2480eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
24817cd05799SMatthew G. Knepley . supportPos - The local index in the cone where the point should be put
24827cd05799SMatthew G. Knepley - supportPoint - The mesh point to insert
24837cd05799SMatthew G. Knepley 
24847cd05799SMatthew G. Knepley   Level: beginner
24857cd05799SMatthew G. Knepley 
24867cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
24877cd05799SMatthew G. Knepley @*/
2488552f7358SJed Brown PetscErrorCode DMPlexInsertSupport(DM dm, PetscInt p, PetscInt supportPos, PetscInt supportPoint)
2489552f7358SJed Brown {
2490552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2491552f7358SJed Brown   PetscInt       pStart, pEnd;
2492552f7358SJed Brown   PetscInt       dof, off;
2493552f7358SJed Brown   PetscErrorCode ierr;
2494552f7358SJed Brown 
2495552f7358SJed Brown   PetscFunctionBegin;
2496552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2497552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr);
2498552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
2499552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
250082f516ccSBarry Smith   if ((p < pStart) || (p >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D is not in the valid range [%D, %D)", p, pStart, pEnd);
250182f516ccSBarry Smith   if ((supportPoint < pStart) || (supportPoint >= pEnd)) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Support point %D is not in the valid range [%D, %D)", supportPoint, pStart, pEnd);
250282f516ccSBarry Smith   if (supportPos >= dof) SETERRQ3(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Support position %D of point %D is not in the valid range [0, %D)", supportPos, p, dof);
2503552f7358SJed Brown   mesh->supports[off+supportPos] = supportPoint;
2504552f7358SJed Brown   PetscFunctionReturn(0);
2505552f7358SJed Brown }
2506552f7358SJed Brown 
2507552f7358SJed Brown /*@C
2508eaf898f9SPatrick Sanan   DMPlexGetTransitiveClosure - Return the points on the transitive closure of the in-edges or out-edges for this point in the DAG
2509552f7358SJed Brown 
2510552f7358SJed Brown   Not collective
2511552f7358SJed Brown 
2512552f7358SJed Brown   Input Parameters:
2513552f7358SJed Brown + mesh - The DMPlex
2514eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2515552f7358SJed Brown . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
25160298fd71SBarry Smith - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used
2517552f7358SJed Brown 
2518552f7358SJed Brown   Output Parameters:
2519552f7358SJed Brown + numPoints - The number of points in the closure, so points[] is of size 2*numPoints
2520552f7358SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...]
2521552f7358SJed Brown 
2522552f7358SJed Brown   Note:
25230298fd71SBarry Smith   If using internal storage (points is NULL on input), each call overwrites the last output.
2524552f7358SJed Brown 
25253813dfbdSMatthew G Knepley   Fortran Notes:
25263813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
25273813dfbdSMatthew G Knepley   include petsc.h90 in your code.
25283813dfbdSMatthew G Knepley 
25293813dfbdSMatthew G Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
25303813dfbdSMatthew G Knepley 
2531552f7358SJed Brown   Level: beginner
2532552f7358SJed Brown 
2533552f7358SJed Brown .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
2534552f7358SJed Brown @*/
2535552f7358SJed Brown PetscErrorCode DMPlexGetTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
2536552f7358SJed Brown {
2537552f7358SJed Brown   DM_Plex        *mesh = (DM_Plex*) dm->data;
2538552f7358SJed Brown   PetscInt       *closure, *fifo;
25390298fd71SBarry Smith   const PetscInt *tmp = NULL, *tmpO = NULL;
2540552f7358SJed Brown   PetscInt        tmpSize, t;
2541552f7358SJed Brown   PetscInt        depth       = 0, maxSize;
2542552f7358SJed Brown   PetscInt        closureSize = 2, fifoSize = 0, fifoStart = 0;
2543552f7358SJed Brown   PetscErrorCode  ierr;
2544552f7358SJed Brown 
2545552f7358SJed Brown   PetscFunctionBegin;
2546552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2547552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
2548552f7358SJed Brown   /* This is only 1-level */
2549552f7358SJed Brown   if (useCone) {
2550552f7358SJed Brown     ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr);
2551552f7358SJed Brown     ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr);
2552552f7358SJed Brown     ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr);
2553552f7358SJed Brown   } else {
2554552f7358SJed Brown     ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr);
2555552f7358SJed Brown     ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr);
2556552f7358SJed Brown   }
2557bfbcdd7aSMatthew G. Knepley   if (depth == 1) {
2558bfbcdd7aSMatthew G. Knepley     if (*points) {
2559bfbcdd7aSMatthew G. Knepley       closure = *points;
2560bfbcdd7aSMatthew G. Knepley     } else {
2561bfbcdd7aSMatthew G. Knepley       maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1);
256269291d52SBarry Smith       ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
2563bfbcdd7aSMatthew G. Knepley     }
2564bfbcdd7aSMatthew G. Knepley     closure[0] = p; closure[1] = 0;
2565bfbcdd7aSMatthew G. Knepley     for (t = 0; t < tmpSize; ++t, closureSize += 2) {
2566bfbcdd7aSMatthew G. Knepley       closure[closureSize]   = tmp[t];
2567bfbcdd7aSMatthew G. Knepley       closure[closureSize+1] = tmpO ? tmpO[t] : 0;
2568bfbcdd7aSMatthew G. Knepley     }
2569bfbcdd7aSMatthew G. Knepley     if (numPoints) *numPoints = closureSize/2;
2570bfbcdd7aSMatthew G. Knepley     if (points)    *points    = closure;
2571bfbcdd7aSMatthew G. Knepley     PetscFunctionReturn(0);
2572bfbcdd7aSMatthew G. Knepley   }
257324c766afSToby Isaac   {
257424c766afSToby Isaac     PetscInt c, coneSeries, s,supportSeries;
257524c766afSToby Isaac 
257624c766afSToby Isaac     c = mesh->maxConeSize;
257724c766afSToby Isaac     coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1;
257824c766afSToby Isaac     s = mesh->maxSupportSize;
257924c766afSToby Isaac     supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1;
258024c766afSToby Isaac     maxSize = 2*PetscMax(coneSeries,supportSeries);
258124c766afSToby Isaac   }
258269291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
2583bfbcdd7aSMatthew G. Knepley   if (*points) {
2584bfbcdd7aSMatthew G. Knepley     closure = *points;
2585bfbcdd7aSMatthew G. Knepley   } else {
258669291d52SBarry Smith     ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
2587bfbcdd7aSMatthew G. Knepley   }
2588bfbcdd7aSMatthew G. Knepley   closure[0] = p; closure[1] = 0;
2589552f7358SJed Brown   for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) {
2590552f7358SJed Brown     const PetscInt cp = tmp[t];
2591552f7358SJed Brown     const PetscInt co = tmpO ? tmpO[t] : 0;
2592552f7358SJed Brown 
2593552f7358SJed Brown     closure[closureSize]   = cp;
2594552f7358SJed Brown     closure[closureSize+1] = co;
2595552f7358SJed Brown     fifo[fifoSize]         = cp;
2596552f7358SJed Brown     fifo[fifoSize+1]       = co;
2597552f7358SJed Brown   }
2598bfbcdd7aSMatthew G. Knepley   /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */
2599552f7358SJed Brown   while (fifoSize - fifoStart) {
2600552f7358SJed Brown     const PetscInt q   = fifo[fifoStart];
2601552f7358SJed Brown     const PetscInt o   = fifo[fifoStart+1];
2602552f7358SJed Brown     const PetscInt rev = o >= 0 ? 0 : 1;
2603552f7358SJed Brown     const PetscInt off = rev ? -(o+1) : o;
2604552f7358SJed Brown 
2605552f7358SJed Brown     if (useCone) {
2606552f7358SJed Brown       ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr);
2607552f7358SJed Brown       ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr);
2608552f7358SJed Brown       ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr);
2609552f7358SJed Brown     } else {
2610552f7358SJed Brown       ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr);
2611552f7358SJed Brown       ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr);
26120298fd71SBarry Smith       tmpO = NULL;
2613552f7358SJed Brown     }
2614552f7358SJed Brown     for (t = 0; t < tmpSize; ++t) {
2615552f7358SJed Brown       const PetscInt i  = ((rev ? tmpSize-t : t) + off)%tmpSize;
2616552f7358SJed Brown       const PetscInt cp = tmp[i];
26172e1b13c2SMatthew G. Knepley       /* Must propogate orientation: When we reverse orientation, we both reverse the direction of iteration and start at the other end of the chain. */
26182e1b13c2SMatthew G. Knepley       /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1)
26192e1b13c2SMatthew G. Knepley        const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */
26202e1b13c2SMatthew G. Knepley       PetscInt       co = tmpO ? tmpO[i] : 0;
2621552f7358SJed Brown       PetscInt       c;
2622552f7358SJed Brown 
26232e1b13c2SMatthew G. Knepley       if (rev) {
26242e1b13c2SMatthew G. Knepley         PetscInt childSize, coff;
26252e1b13c2SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
26262e1b13c2SMatthew G. Knepley         coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i];
26272e1b13c2SMatthew G. Knepley         co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
26282e1b13c2SMatthew G. Knepley       }
2629552f7358SJed Brown       /* Check for duplicate */
2630552f7358SJed Brown       for (c = 0; c < closureSize; c += 2) {
2631552f7358SJed Brown         if (closure[c] == cp) break;
2632552f7358SJed Brown       }
2633552f7358SJed Brown       if (c == closureSize) {
2634552f7358SJed Brown         closure[closureSize]   = cp;
2635552f7358SJed Brown         closure[closureSize+1] = co;
2636552f7358SJed Brown         fifo[fifoSize]         = cp;
2637552f7358SJed Brown         fifo[fifoSize+1]       = co;
2638552f7358SJed Brown         closureSize           += 2;
2639552f7358SJed Brown         fifoSize              += 2;
2640552f7358SJed Brown       }
2641552f7358SJed Brown     }
2642552f7358SJed Brown     fifoStart += 2;
2643552f7358SJed Brown   }
2644552f7358SJed Brown   if (numPoints) *numPoints = closureSize/2;
2645552f7358SJed Brown   if (points)    *points    = closure;
264669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
2647552f7358SJed Brown   PetscFunctionReturn(0);
2648552f7358SJed Brown }
2649552f7358SJed Brown 
26509bf0dad6SMatthew G. Knepley /*@C
2651eaf898f9SPatrick Sanan   DMPlexGetTransitiveClosure_Internal - Return the points on the transitive closure of the in-edges or out-edges for this point in the DAG with a specified initial orientation
26529bf0dad6SMatthew G. Knepley 
26539bf0dad6SMatthew G. Knepley   Not collective
26549bf0dad6SMatthew G. Knepley 
26559bf0dad6SMatthew G. Knepley   Input Parameters:
26569bf0dad6SMatthew G. Knepley + mesh - The DMPlex
2657eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
26589bf0dad6SMatthew G. Knepley . orientation - The orientation of the point
26599bf0dad6SMatthew G. Knepley . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
26609bf0dad6SMatthew G. Knepley - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used
26619bf0dad6SMatthew G. Knepley 
26629bf0dad6SMatthew G. Knepley   Output Parameters:
26639bf0dad6SMatthew G. Knepley + numPoints - The number of points in the closure, so points[] is of size 2*numPoints
26649bf0dad6SMatthew G. Knepley - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...]
26659bf0dad6SMatthew G. Knepley 
26669bf0dad6SMatthew G. Knepley   Note:
26679bf0dad6SMatthew G. Knepley   If using internal storage (points is NULL on input), each call overwrites the last output.
26689bf0dad6SMatthew G. Knepley 
26699bf0dad6SMatthew G. Knepley   Fortran Notes:
26709bf0dad6SMatthew G. Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
26719bf0dad6SMatthew G. Knepley   include petsc.h90 in your code.
26729bf0dad6SMatthew G. Knepley 
26739bf0dad6SMatthew G. Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
26749bf0dad6SMatthew G. Knepley 
26759bf0dad6SMatthew G. Knepley   Level: beginner
26769bf0dad6SMatthew G. Knepley 
26779bf0dad6SMatthew G. Knepley .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
26789bf0dad6SMatthew G. Knepley @*/
26799bf0dad6SMatthew G. Knepley PetscErrorCode DMPlexGetTransitiveClosure_Internal(DM dm, PetscInt p, PetscInt ornt, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
26809bf0dad6SMatthew G. Knepley {
26819bf0dad6SMatthew G. Knepley   DM_Plex        *mesh = (DM_Plex*) dm->data;
26829bf0dad6SMatthew G. Knepley   PetscInt       *closure, *fifo;
26839bf0dad6SMatthew G. Knepley   const PetscInt *tmp = NULL, *tmpO = NULL;
26849bf0dad6SMatthew G. Knepley   PetscInt        tmpSize, t;
26859bf0dad6SMatthew G. Knepley   PetscInt        depth       = 0, maxSize;
26869bf0dad6SMatthew G. Knepley   PetscInt        closureSize = 2, fifoSize = 0, fifoStart = 0;
26879bf0dad6SMatthew G. Knepley   PetscErrorCode  ierr;
26889bf0dad6SMatthew G. Knepley 
26899bf0dad6SMatthew G. Knepley   PetscFunctionBegin;
26909bf0dad6SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
26919bf0dad6SMatthew G. Knepley   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
26929bf0dad6SMatthew G. Knepley   /* This is only 1-level */
26939bf0dad6SMatthew G. Knepley   if (useCone) {
26949bf0dad6SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr);
26959bf0dad6SMatthew G. Knepley     ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr);
26969bf0dad6SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr);
26979bf0dad6SMatthew G. Knepley   } else {
26989bf0dad6SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr);
26999bf0dad6SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr);
27009bf0dad6SMatthew G. Knepley   }
27019bf0dad6SMatthew G. Knepley   if (depth == 1) {
27029bf0dad6SMatthew G. Knepley     if (*points) {
27039bf0dad6SMatthew G. Knepley       closure = *points;
27049bf0dad6SMatthew G. Knepley     } else {
27059bf0dad6SMatthew G. Knepley       maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1);
270669291d52SBarry Smith       ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
27079bf0dad6SMatthew G. Knepley     }
27089bf0dad6SMatthew G. Knepley     closure[0] = p; closure[1] = ornt;
27099bf0dad6SMatthew G. Knepley     for (t = 0; t < tmpSize; ++t, closureSize += 2) {
27109bf0dad6SMatthew G. Knepley       const PetscInt i = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize;
27119bf0dad6SMatthew G. Knepley       closure[closureSize]   = tmp[i];
27129bf0dad6SMatthew G. Knepley       closure[closureSize+1] = tmpO ? tmpO[i] : 0;
27139bf0dad6SMatthew G. Knepley     }
27149bf0dad6SMatthew G. Knepley     if (numPoints) *numPoints = closureSize/2;
27159bf0dad6SMatthew G. Knepley     if (points)    *points    = closure;
27169bf0dad6SMatthew G. Knepley     PetscFunctionReturn(0);
27179bf0dad6SMatthew G. Knepley   }
271824c766afSToby Isaac   {
271924c766afSToby Isaac     PetscInt c, coneSeries, s,supportSeries;
272024c766afSToby Isaac 
272124c766afSToby Isaac     c = mesh->maxConeSize;
272224c766afSToby Isaac     coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1;
272324c766afSToby Isaac     s = mesh->maxSupportSize;
272424c766afSToby Isaac     supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1;
272524c766afSToby Isaac     maxSize = 2*PetscMax(coneSeries,supportSeries);
272624c766afSToby Isaac   }
272769291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
27289bf0dad6SMatthew G. Knepley   if (*points) {
27299bf0dad6SMatthew G. Knepley     closure = *points;
27309bf0dad6SMatthew G. Knepley   } else {
273169291d52SBarry Smith     ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
27329bf0dad6SMatthew G. Knepley   }
27339bf0dad6SMatthew G. Knepley   closure[0] = p; closure[1] = ornt;
27349bf0dad6SMatthew G. Knepley   for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) {
27359bf0dad6SMatthew G. Knepley     const PetscInt i  = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize;
27369bf0dad6SMatthew G. Knepley     const PetscInt cp = tmp[i];
27379bf0dad6SMatthew G. Knepley     PetscInt       co = tmpO ? tmpO[i] : 0;
27389bf0dad6SMatthew G. Knepley 
27399bf0dad6SMatthew G. Knepley     if (ornt < 0) {
27409bf0dad6SMatthew G. Knepley       PetscInt childSize, coff;
27419bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
274286b63641SMatthew G. Knepley       coff = co < 0 ? -(tmpO[i]+1) : tmpO[i];
27439bf0dad6SMatthew G. Knepley       co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
27449bf0dad6SMatthew G. Knepley     }
27459bf0dad6SMatthew G. Knepley     closure[closureSize]   = cp;
27469bf0dad6SMatthew G. Knepley     closure[closureSize+1] = co;
27479bf0dad6SMatthew G. Knepley     fifo[fifoSize]         = cp;
27489bf0dad6SMatthew G. Knepley     fifo[fifoSize+1]       = co;
27499bf0dad6SMatthew G. Knepley   }
27509bf0dad6SMatthew G. Knepley   /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */
27519bf0dad6SMatthew G. Knepley   while (fifoSize - fifoStart) {
27529bf0dad6SMatthew G. Knepley     const PetscInt q   = fifo[fifoStart];
27539bf0dad6SMatthew G. Knepley     const PetscInt o   = fifo[fifoStart+1];
27549bf0dad6SMatthew G. Knepley     const PetscInt rev = o >= 0 ? 0 : 1;
27559bf0dad6SMatthew G. Knepley     const PetscInt off = rev ? -(o+1) : o;
27569bf0dad6SMatthew G. Knepley 
27579bf0dad6SMatthew G. Knepley     if (useCone) {
27589bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr);
27599bf0dad6SMatthew G. Knepley       ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr);
27609bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr);
27619bf0dad6SMatthew G. Knepley     } else {
27629bf0dad6SMatthew G. Knepley       ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr);
27639bf0dad6SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr);
27649bf0dad6SMatthew G. Knepley       tmpO = NULL;
27659bf0dad6SMatthew G. Knepley     }
27669bf0dad6SMatthew G. Knepley     for (t = 0; t < tmpSize; ++t) {
27679bf0dad6SMatthew G. Knepley       const PetscInt i  = ((rev ? tmpSize-t : t) + off)%tmpSize;
27689bf0dad6SMatthew G. Knepley       const PetscInt cp = tmp[i];
27699bf0dad6SMatthew G. Knepley       /* Must propogate orientation: When we reverse orientation, we both reverse the direction of iteration and start at the other end of the chain. */
27709bf0dad6SMatthew G. Knepley       /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1)
27719bf0dad6SMatthew G. Knepley        const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */
27729bf0dad6SMatthew G. Knepley       PetscInt       co = tmpO ? tmpO[i] : 0;
27739bf0dad6SMatthew G. Knepley       PetscInt       c;
27749bf0dad6SMatthew G. Knepley 
27759bf0dad6SMatthew G. Knepley       if (rev) {
27769bf0dad6SMatthew G. Knepley         PetscInt childSize, coff;
27779bf0dad6SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
27789bf0dad6SMatthew G. Knepley         coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i];
27799bf0dad6SMatthew G. Knepley         co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
27809bf0dad6SMatthew G. Knepley       }
27819bf0dad6SMatthew G. Knepley       /* Check for duplicate */
27829bf0dad6SMatthew G. Knepley       for (c = 0; c < closureSize; c += 2) {
27839bf0dad6SMatthew G. Knepley         if (closure[c] == cp) break;
27849bf0dad6SMatthew G. Knepley       }
27859bf0dad6SMatthew G. Knepley       if (c == closureSize) {
27869bf0dad6SMatthew G. Knepley         closure[closureSize]   = cp;
27879bf0dad6SMatthew G. Knepley         closure[closureSize+1] = co;
27889bf0dad6SMatthew G. Knepley         fifo[fifoSize]         = cp;
27899bf0dad6SMatthew G. Knepley         fifo[fifoSize+1]       = co;
27909bf0dad6SMatthew G. Knepley         closureSize           += 2;
27919bf0dad6SMatthew G. Knepley         fifoSize              += 2;
27929bf0dad6SMatthew G. Knepley       }
27939bf0dad6SMatthew G. Knepley     }
27949bf0dad6SMatthew G. Knepley     fifoStart += 2;
27959bf0dad6SMatthew G. Knepley   }
27969bf0dad6SMatthew G. Knepley   if (numPoints) *numPoints = closureSize/2;
27979bf0dad6SMatthew G. Knepley   if (points)    *points    = closure;
279869291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
27999bf0dad6SMatthew G. Knepley   PetscFunctionReturn(0);
28009bf0dad6SMatthew G. Knepley }
28019bf0dad6SMatthew G. Knepley 
2802552f7358SJed Brown /*@C
2803eaf898f9SPatrick Sanan   DMPlexRestoreTransitiveClosure - Restore the array of points on the transitive closure of the in-edges or out-edges for this point in the DAG
2804552f7358SJed Brown 
2805552f7358SJed Brown   Not collective
2806552f7358SJed Brown 
2807552f7358SJed Brown   Input Parameters:
2808552f7358SJed Brown + mesh - The DMPlex
2809eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2810552f7358SJed Brown . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
2811e5c84f05SJed Brown . numPoints - The number of points in the closure, so points[] is of size 2*numPoints, zeroed on exit
2812e5c84f05SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...], zeroed on exit
2813552f7358SJed Brown 
2814552f7358SJed Brown   Note:
28150298fd71SBarry Smith   If not using internal storage (points is not NULL on input), this call is unnecessary
2816552f7358SJed Brown 
28173813dfbdSMatthew G Knepley   Fortran Notes:
28183813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
28193813dfbdSMatthew G Knepley   include petsc.h90 in your code.
28203813dfbdSMatthew G Knepley 
28213813dfbdSMatthew G Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
28223813dfbdSMatthew G Knepley 
2823552f7358SJed Brown   Level: beginner
2824552f7358SJed Brown 
2825552f7358SJed Brown .seealso: DMPlexGetTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
2826552f7358SJed Brown @*/
2827552f7358SJed Brown PetscErrorCode DMPlexRestoreTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
2828552f7358SJed Brown {
2829552f7358SJed Brown   PetscErrorCode ierr;
2830552f7358SJed Brown 
2831552f7358SJed Brown   PetscFunctionBegin;
2832552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2833e5c84f05SJed Brown   if (numPoints) PetscValidIntPointer(numPoints,4);
2834e5c84f05SJed Brown   if (points) PetscValidPointer(points,5);
283569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, points);CHKERRQ(ierr);
28364ff43b2cSJed Brown   if (numPoints) *numPoints = 0;
2837552f7358SJed Brown   PetscFunctionReturn(0);
2838552f7358SJed Brown }
2839552f7358SJed Brown 
2840552f7358SJed Brown /*@
2841eaf898f9SPatrick Sanan   DMPlexGetMaxSizes - Return the maximum number of in-edges (cone) and out-edges (support) for any point in the DAG
2842552f7358SJed Brown 
2843552f7358SJed Brown   Not collective
2844552f7358SJed Brown 
2845552f7358SJed Brown   Input Parameter:
2846552f7358SJed Brown . mesh - The DMPlex
2847552f7358SJed Brown 
2848552f7358SJed Brown   Output Parameters:
2849552f7358SJed Brown + maxConeSize - The maximum number of in-edges
2850552f7358SJed Brown - maxSupportSize - The maximum number of out-edges
2851552f7358SJed Brown 
2852552f7358SJed Brown   Level: beginner
2853552f7358SJed Brown 
2854552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart()
2855552f7358SJed Brown @*/
2856552f7358SJed Brown PetscErrorCode DMPlexGetMaxSizes(DM dm, PetscInt *maxConeSize, PetscInt *maxSupportSize)
2857552f7358SJed Brown {
2858552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
2859552f7358SJed Brown 
2860552f7358SJed Brown   PetscFunctionBegin;
2861552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2862552f7358SJed Brown   if (maxConeSize)    *maxConeSize    = mesh->maxConeSize;
2863552f7358SJed Brown   if (maxSupportSize) *maxSupportSize = mesh->maxSupportSize;
2864552f7358SJed Brown   PetscFunctionReturn(0);
2865552f7358SJed Brown }
2866552f7358SJed Brown 
2867552f7358SJed Brown PetscErrorCode DMSetUp_Plex(DM dm)
2868552f7358SJed Brown {
2869552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2870552f7358SJed Brown   PetscInt       size;
2871552f7358SJed Brown   PetscErrorCode ierr;
2872552f7358SJed Brown 
2873552f7358SJed Brown   PetscFunctionBegin;
2874552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2875552f7358SJed Brown   ierr = PetscSectionSetUp(mesh->coneSection);CHKERRQ(ierr);
2876552f7358SJed Brown   ierr = PetscSectionGetStorageSize(mesh->coneSection, &size);CHKERRQ(ierr);
28771795a4d1SJed Brown   ierr = PetscMalloc1(size, &mesh->cones);CHKERRQ(ierr);
28781795a4d1SJed Brown   ierr = PetscCalloc1(size, &mesh->coneOrientations);CHKERRQ(ierr);
2879ef1259faSMatthew G. Knepley   ierr = PetscLogObjectMemory((PetscObject) dm, size*2*sizeof(PetscInt));CHKERRQ(ierr);
2880552f7358SJed Brown   if (mesh->maxSupportSize) {
2881552f7358SJed Brown     ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr);
2882552f7358SJed Brown     ierr = PetscSectionGetStorageSize(mesh->supportSection, &size);CHKERRQ(ierr);
28831795a4d1SJed Brown     ierr = PetscMalloc1(size, &mesh->supports);CHKERRQ(ierr);
2884ef1259faSMatthew G. Knepley     ierr = PetscLogObjectMemory((PetscObject) dm, size*sizeof(PetscInt));CHKERRQ(ierr);
2885552f7358SJed Brown   }
2886552f7358SJed Brown   PetscFunctionReturn(0);
2887552f7358SJed Brown }
2888552f7358SJed Brown 
2889276c5506SMatthew G. Knepley PetscErrorCode DMCreateSubDM_Plex(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm)
2890552f7358SJed Brown {
2891552f7358SJed Brown   PetscErrorCode ierr;
2892552f7358SJed Brown 
2893552f7358SJed Brown   PetscFunctionBegin;
28944d9407bcSMatthew G. Knepley   if (subdm) {ierr = DMClone(dm, subdm);CHKERRQ(ierr);}
2895792b654fSMatthew G. Knepley   ierr = DMCreateSectionSubDM(dm, numFields, fields, is, subdm);CHKERRQ(ierr);
2896c2939958SSatish Balay   if (subdm) {(*subdm)->useNatural = dm->useNatural;}
2897736995cdSBlaise Bourdin   if (dm->useNatural && dm->sfMigration) {
2898f94b4a02SBlaise Bourdin     PetscSF        sfMigrationInv,sfNatural;
2899f94b4a02SBlaise Bourdin     PetscSection   section, sectionSeq;
2900f94b4a02SBlaise Bourdin 
29013dcd263cSBlaise Bourdin     (*subdm)->sfMigration = dm->sfMigration;
29023dcd263cSBlaise Bourdin     ierr = PetscObjectReference((PetscObject) dm->sfMigration);CHKERRQ(ierr);
2903c3b366b1Sprj-     ierr = DMGetLocalSection((*subdm), &section);CHKERRQ(ierr);
2904f94b4a02SBlaise Bourdin     ierr = PetscSFCreateInverseSF((*subdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr);
2905f94b4a02SBlaise Bourdin     ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*subdm)), &sectionSeq);CHKERRQ(ierr);
2906f94b4a02SBlaise Bourdin     ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr);
2907f94b4a02SBlaise Bourdin 
2908f94b4a02SBlaise Bourdin     ierr = DMPlexCreateGlobalToNaturalSF(*subdm, sectionSeq, (*subdm)->sfMigration, &sfNatural);CHKERRQ(ierr);
2909c40e9495SBlaise Bourdin     (*subdm)->sfNatural = sfNatural;
2910f94b4a02SBlaise Bourdin     ierr = PetscSectionDestroy(&sectionSeq);CHKERRQ(ierr);
2911f94b4a02SBlaise Bourdin     ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr);
2912f94b4a02SBlaise Bourdin   }
2913552f7358SJed Brown   PetscFunctionReturn(0);
2914552f7358SJed Brown }
2915552f7358SJed Brown 
29162adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM_Plex(DM dms[], PetscInt len, IS **is, DM *superdm)
29172adcc780SMatthew G. Knepley {
29182adcc780SMatthew G. Knepley   PetscErrorCode ierr;
29193dcd263cSBlaise Bourdin   PetscInt       i = 0;
29202adcc780SMatthew G. Knepley 
29212adcc780SMatthew G. Knepley   PetscFunctionBegin;
2922435bcee1SStefano Zampini   ierr = DMClone(dms[0], superdm);CHKERRQ(ierr);
2923792b654fSMatthew G. Knepley   ierr = DMCreateSectionSuperDM(dms, len, is, superdm);CHKERRQ(ierr);
2924c40e9495SBlaise Bourdin   (*superdm)->useNatural = PETSC_FALSE;
29253dcd263cSBlaise Bourdin   for (i = 0; i < len; i++){
29263dcd263cSBlaise Bourdin     if (dms[i]->useNatural && dms[i]->sfMigration) {
29273dcd263cSBlaise Bourdin       PetscSF        sfMigrationInv,sfNatural;
29283dcd263cSBlaise Bourdin       PetscSection   section, sectionSeq;
29293dcd263cSBlaise Bourdin 
29303dcd263cSBlaise Bourdin       (*superdm)->sfMigration = dms[i]->sfMigration;
29313dcd263cSBlaise Bourdin       ierr = PetscObjectReference((PetscObject) dms[i]->sfMigration);CHKERRQ(ierr);
2932c40e9495SBlaise Bourdin       (*superdm)->useNatural = PETSC_TRUE;
293392fd8e1eSJed Brown       ierr = DMGetLocalSection((*superdm), &section);CHKERRQ(ierr);
29343dcd263cSBlaise Bourdin       ierr = PetscSFCreateInverseSF((*superdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr);
29353dcd263cSBlaise Bourdin       ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*superdm)), &sectionSeq);CHKERRQ(ierr);
29363dcd263cSBlaise Bourdin       ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr);
29373dcd263cSBlaise Bourdin 
29383dcd263cSBlaise Bourdin       ierr = DMPlexCreateGlobalToNaturalSF(*superdm, sectionSeq, (*superdm)->sfMigration, &sfNatural);CHKERRQ(ierr);
2939c40e9495SBlaise Bourdin       (*superdm)->sfNatural = sfNatural;
29403dcd263cSBlaise Bourdin       ierr = PetscSectionDestroy(&sectionSeq);CHKERRQ(ierr);
29413dcd263cSBlaise Bourdin       ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr);
29423dcd263cSBlaise Bourdin       break;
29433dcd263cSBlaise Bourdin     }
29443dcd263cSBlaise Bourdin   }
29452adcc780SMatthew G. Knepley   PetscFunctionReturn(0);
29462adcc780SMatthew G. Knepley }
29472adcc780SMatthew G. Knepley 
2948552f7358SJed Brown /*@
2949eaf898f9SPatrick Sanan   DMPlexSymmetrize - Create support (out-edge) information from cone (in-edge) information
2950552f7358SJed Brown 
2951552f7358SJed Brown   Not collective
2952552f7358SJed Brown 
2953552f7358SJed Brown   Input Parameter:
2954552f7358SJed Brown . mesh - The DMPlex
2955552f7358SJed Brown 
2956552f7358SJed Brown   Output Parameter:
2957552f7358SJed Brown 
2958552f7358SJed Brown   Note:
2959552f7358SJed Brown   This should be called after all calls to DMPlexSetCone()
2960552f7358SJed Brown 
2961552f7358SJed Brown   Level: beginner
2962552f7358SJed Brown 
2963552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart(), DMPlexSetConeSize(), DMPlexSetCone()
2964552f7358SJed Brown @*/
2965552f7358SJed Brown PetscErrorCode DMPlexSymmetrize(DM dm)
2966552f7358SJed Brown {
2967552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2968552f7358SJed Brown   PetscInt      *offsets;
2969552f7358SJed Brown   PetscInt       supportSize;
2970552f7358SJed Brown   PetscInt       pStart, pEnd, p;
2971552f7358SJed Brown   PetscErrorCode ierr;
2972552f7358SJed Brown 
2973552f7358SJed Brown   PetscFunctionBegin;
2974552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
297582f516ccSBarry Smith   if (mesh->supports) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Supports were already setup in this DMPlex");
297630b0ce1bSStefano Zampini   ierr = PetscLogEventBegin(DMPLEX_Symmetrize,dm,0,0,0);CHKERRQ(ierr);
2977552f7358SJed Brown   /* Calculate support sizes */
2978552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
2979552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2980552f7358SJed Brown     PetscInt dof, off, c;
2981552f7358SJed Brown 
2982552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2983552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
2984552f7358SJed Brown     for (c = off; c < off+dof; ++c) {
2985552f7358SJed Brown       ierr = PetscSectionAddDof(mesh->supportSection, mesh->cones[c], 1);CHKERRQ(ierr);
2986552f7358SJed Brown     }
2987552f7358SJed Brown   }
2988552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2989552f7358SJed Brown     PetscInt dof;
2990552f7358SJed Brown 
2991552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
29920d644c17SKarl Rupp 
2993552f7358SJed Brown     mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, dof);
2994552f7358SJed Brown   }
2995552f7358SJed Brown   ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr);
2996552f7358SJed Brown   /* Calculate supports */
2997552f7358SJed Brown   ierr = PetscSectionGetStorageSize(mesh->supportSection, &supportSize);CHKERRQ(ierr);
29981795a4d1SJed Brown   ierr = PetscMalloc1(supportSize, &mesh->supports);CHKERRQ(ierr);
29991795a4d1SJed Brown   ierr = PetscCalloc1(pEnd - pStart, &offsets);CHKERRQ(ierr);
3000552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
3001552f7358SJed Brown     PetscInt dof, off, c;
3002552f7358SJed Brown 
3003552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
3004552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
3005552f7358SJed Brown     for (c = off; c < off+dof; ++c) {
3006552f7358SJed Brown       const PetscInt q = mesh->cones[c];
3007552f7358SJed Brown       PetscInt       offS;
3008552f7358SJed Brown 
3009552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->supportSection, q, &offS);CHKERRQ(ierr);
30100d644c17SKarl Rupp 
3011552f7358SJed Brown       mesh->supports[offS+offsets[q]] = p;
3012552f7358SJed Brown       ++offsets[q];
3013552f7358SJed Brown     }
3014552f7358SJed Brown   }
3015552f7358SJed Brown   ierr = PetscFree(offsets);CHKERRQ(ierr);
301630b0ce1bSStefano Zampini   ierr = PetscLogEventEnd(DMPLEX_Symmetrize,dm,0,0,0);CHKERRQ(ierr);
3017552f7358SJed Brown   PetscFunctionReturn(0);
3018552f7358SJed Brown }
3019552f7358SJed Brown 
3020277ea44aSLisandro Dalcin static PetscErrorCode DMPlexCreateDepthStratum(DM dm, DMLabel label, PetscInt depth, PetscInt pStart, PetscInt pEnd)
3021277ea44aSLisandro Dalcin {
3022277ea44aSLisandro Dalcin   IS             stratumIS;
3023277ea44aSLisandro Dalcin   PetscErrorCode ierr;
3024277ea44aSLisandro Dalcin 
3025277ea44aSLisandro Dalcin   PetscFunctionBegin;
3026277ea44aSLisandro Dalcin   if (pStart >= pEnd) PetscFunctionReturn(0);
302776bd3646SJed Brown   if (PetscDefined(USE_DEBUG)) {
3028277ea44aSLisandro Dalcin     PetscInt  qStart, qEnd, numLevels, level;
3029277ea44aSLisandro Dalcin     PetscBool overlap = PETSC_FALSE;
3030277ea44aSLisandro Dalcin     ierr = DMLabelGetNumValues(label, &numLevels);CHKERRQ(ierr);
3031277ea44aSLisandro Dalcin     for (level = 0; level < numLevels; level++) {
3032277ea44aSLisandro Dalcin       ierr = DMLabelGetStratumBounds(label, level, &qStart, &qEnd);CHKERRQ(ierr);
3033277ea44aSLisandro Dalcin       if ((pStart >= qStart && pStart < qEnd) || (pEnd > qStart && pEnd <= qEnd)) {overlap = PETSC_TRUE; break;}
3034277ea44aSLisandro Dalcin     }
3035277ea44aSLisandro Dalcin     if (overlap) SETERRQ6(PETSC_COMM_SELF, PETSC_ERR_PLIB, "New depth %D range [%D,%D) overlaps with depth %D range [%D,%D)", depth, pStart, pEnd, level, qStart, qEnd);
3036277ea44aSLisandro Dalcin   }
3037277ea44aSLisandro Dalcin   ierr = ISCreateStride(PETSC_COMM_SELF, pEnd-pStart, pStart, 1, &stratumIS);CHKERRQ(ierr);
3038277ea44aSLisandro Dalcin   ierr = DMLabelSetStratumIS(label, depth, stratumIS);CHKERRQ(ierr);
3039277ea44aSLisandro Dalcin   ierr = ISDestroy(&stratumIS);CHKERRQ(ierr);
3040277ea44aSLisandro Dalcin   PetscFunctionReturn(0);
3041277ea44aSLisandro Dalcin }
3042277ea44aSLisandro Dalcin 
3043552f7358SJed Brown /*@
3044a8d69d7bSBarry Smith   DMPlexStratify - The DAG for most topologies is a graded poset (https://en.wikipedia.org/wiki/Graded_poset), and
30456dd80730SBarry Smith   can be illustrated by a Hasse Diagram (https://en.wikipedia.org/wiki/Hasse_diagram). The strata group all points of the
3046552f7358SJed Brown   same grade, and this function calculates the strata. This grade can be seen as the height (or depth) of the point in
3047552f7358SJed Brown   the DAG.
3048552f7358SJed Brown 
3049bf4602e4SToby Isaac   Collective on dm
3050552f7358SJed Brown 
3051552f7358SJed Brown   Input Parameter:
3052552f7358SJed Brown . mesh - The DMPlex
3053552f7358SJed Brown 
3054552f7358SJed Brown   Output Parameter:
3055552f7358SJed Brown 
3056552f7358SJed Brown   Notes:
3057b1bb481bSMatthew Knepley   Concretely, DMPlexStratify() creates a new label named "depth" containing the depth in the DAG of each point. For cell-vertex
3058b1bb481bSMatthew Knepley   meshes, vertices are depth 0 and cells are depth 1. For fully interpolated meshes, depth 0 for vertices, 1 for edges, and so on
3059b1bb481bSMatthew Knepley   until cells have depth equal to the dimension of the mesh. The depth label can be accessed through DMPlexGetDepthLabel() or DMPlexGetDepthStratum(), or
3060c58f1c22SToby Isaac   manually via DMGetLabel().  The height is defined implicitly by height = maxDimension - depth, and can be accessed
3061150b719bSJed Brown   via DMPlexGetHeightStratum().  For example, cells have height 0 and faces have height 1.
3062552f7358SJed Brown 
3063b1bb481bSMatthew Knepley   The depth of a point is calculated by executing a breadth-first search (BFS) on the DAG. This could produce surprising results
3064b1bb481bSMatthew Knepley   if run on a partially interpolated mesh, meaning one that had some edges and faces, but not others. For example, suppose that
3065b1bb481bSMatthew Knepley   we had a mesh consisting of one triangle (c0) and three vertices (v0, v1, v2), and only one edge is on the boundary so we choose
3066b1bb481bSMatthew Knepley   to interpolate only that one (e0), so that
3067b1bb481bSMatthew Knepley $  cone(c0) = {e0, v2}
3068b1bb481bSMatthew Knepley $  cone(e0) = {v0, v1}
3069b1bb481bSMatthew Knepley   If DMPlexStratify() is run on this mesh, it will give depths
3070b1bb481bSMatthew Knepley $  depth 0 = {v0, v1, v2}
3071b1bb481bSMatthew Knepley $  depth 1 = {e0, c0}
3072b1bb481bSMatthew Knepley   where the triangle has been given depth 1, instead of 2, because it is reachable from vertex v2.
3073b1bb481bSMatthew Knepley 
3074150b719bSJed Brown   DMPlexStratify() should be called after all calls to DMPlexSymmetrize()
3075552f7358SJed Brown 
3076552f7358SJed Brown   Level: beginner
3077552f7358SJed Brown 
3078ba2698f1SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexSymmetrize(), DMPlexComputeCellTypes()
3079552f7358SJed Brown @*/
3080552f7358SJed Brown PetscErrorCode DMPlexStratify(DM dm)
3081552f7358SJed Brown {
3082df0420ecSMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
3083aa50250dSMatthew G. Knepley   DMLabel        label;
3084552f7358SJed Brown   PetscInt       pStart, pEnd, p;
3085552f7358SJed Brown   PetscInt       numRoots = 0, numLeaves = 0;
3086552f7358SJed Brown   PetscErrorCode ierr;
3087552f7358SJed Brown 
3088552f7358SJed Brown   PetscFunctionBegin;
3089552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3090552f7358SJed Brown   ierr = PetscLogEventBegin(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr);
3091277ea44aSLisandro Dalcin 
3092277ea44aSLisandro Dalcin   /* Create depth label */
3093aa50250dSMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
3094c58f1c22SToby Isaac   ierr = DMCreateLabel(dm, "depth");CHKERRQ(ierr);
3095aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
3096277ea44aSLisandro Dalcin 
3097277ea44aSLisandro Dalcin   {
3098552f7358SJed Brown     /* Initialize roots and count leaves */
3099277ea44aSLisandro Dalcin     PetscInt sMin = PETSC_MAX_INT;
3100277ea44aSLisandro Dalcin     PetscInt sMax = PETSC_MIN_INT;
3101552f7358SJed Brown     PetscInt coneSize, supportSize;
3102552f7358SJed Brown 
3103277ea44aSLisandro Dalcin     for (p = pStart; p < pEnd; ++p) {
3104552f7358SJed Brown       ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
3105552f7358SJed Brown       ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
3106552f7358SJed Brown       if (!coneSize && supportSize) {
3107277ea44aSLisandro Dalcin         sMin = PetscMin(p, sMin);
3108277ea44aSLisandro Dalcin         sMax = PetscMax(p, sMax);
3109552f7358SJed Brown         ++numRoots;
3110552f7358SJed Brown       } else if (!supportSize && coneSize) {
3111552f7358SJed Brown         ++numLeaves;
3112552f7358SJed Brown       } else if (!supportSize && !coneSize) {
3113552f7358SJed Brown         /* Isolated points */
3114277ea44aSLisandro Dalcin         sMin = PetscMin(p, sMin);
3115277ea44aSLisandro Dalcin         sMax = PetscMax(p, sMax);
3116552f7358SJed Brown       }
3117552f7358SJed Brown     }
3118277ea44aSLisandro Dalcin     ierr = DMPlexCreateDepthStratum(dm, label, 0, sMin, sMax+1);CHKERRQ(ierr);
3119277ea44aSLisandro Dalcin   }
3120277ea44aSLisandro Dalcin 
3121552f7358SJed Brown   if (numRoots + numLeaves == (pEnd - pStart)) {
3122277ea44aSLisandro Dalcin     PetscInt sMin = PETSC_MAX_INT;
3123277ea44aSLisandro Dalcin     PetscInt sMax = PETSC_MIN_INT;
3124552f7358SJed Brown     PetscInt coneSize, supportSize;
3125552f7358SJed Brown 
3126277ea44aSLisandro Dalcin     for (p = pStart; p < pEnd; ++p) {
3127552f7358SJed Brown       ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
3128552f7358SJed Brown       ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
3129552f7358SJed Brown       if (!supportSize && coneSize) {
3130277ea44aSLisandro Dalcin         sMin = PetscMin(p, sMin);
3131277ea44aSLisandro Dalcin         sMax = PetscMax(p, sMax);
3132552f7358SJed Brown       }
3133552f7358SJed Brown     }
3134277ea44aSLisandro Dalcin     ierr = DMPlexCreateDepthStratum(dm, label, 1, sMin, sMax+1);CHKERRQ(ierr);
3135552f7358SJed Brown   } else {
3136277ea44aSLisandro Dalcin     PetscInt level = 0;
3137277ea44aSLisandro Dalcin     PetscInt qStart, qEnd, q;
3138552f7358SJed Brown 
3139277ea44aSLisandro Dalcin     ierr = DMLabelGetStratumBounds(label, level, &qStart, &qEnd);CHKERRQ(ierr);
3140277ea44aSLisandro Dalcin     while (qEnd > qStart) {
3141277ea44aSLisandro Dalcin       PetscInt sMin = PETSC_MAX_INT;
3142277ea44aSLisandro Dalcin       PetscInt sMax = PETSC_MIN_INT;
314374ef644bSMatthew G. Knepley 
3144277ea44aSLisandro Dalcin       for (q = qStart; q < qEnd; ++q) {
314574ef644bSMatthew G. Knepley         const PetscInt *support;
314674ef644bSMatthew G. Knepley         PetscInt        supportSize, s;
314774ef644bSMatthew G. Knepley 
3148277ea44aSLisandro Dalcin         ierr = DMPlexGetSupportSize(dm, q, &supportSize);CHKERRQ(ierr);
3149277ea44aSLisandro Dalcin         ierr = DMPlexGetSupport(dm, q, &support);CHKERRQ(ierr);
315074ef644bSMatthew G. Knepley         for (s = 0; s < supportSize; ++s) {
3151277ea44aSLisandro Dalcin           sMin = PetscMin(support[s], sMin);
3152277ea44aSLisandro Dalcin           sMax = PetscMax(support[s], sMax);
3153552f7358SJed Brown         }
3154552f7358SJed Brown       }
3155277ea44aSLisandro Dalcin       ierr = DMLabelGetNumValues(label, &level);CHKERRQ(ierr);
3156277ea44aSLisandro Dalcin       ierr = DMPlexCreateDepthStratum(dm, label, level, sMin, sMax+1);CHKERRQ(ierr);
3157277ea44aSLisandro Dalcin       ierr = DMLabelGetStratumBounds(label, level, &qStart, &qEnd);CHKERRQ(ierr);
315874ef644bSMatthew G. Knepley     }
315974ef644bSMatthew G. Knepley   }
3160bf4602e4SToby Isaac   { /* just in case there is an empty process */
3161bf4602e4SToby Isaac     PetscInt numValues, maxValues = 0, v;
3162bf4602e4SToby Isaac 
3163bf4602e4SToby Isaac     ierr = DMLabelGetNumValues(label, &numValues);CHKERRQ(ierr);
3164ffc4695bSBarry Smith     ierr = MPI_Allreduce(&numValues,&maxValues,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
3165bf4602e4SToby Isaac     for (v = numValues; v < maxValues; v++) {
3166367003a6SStefano Zampini       ierr = DMLabelAddStratum(label, v);CHKERRQ(ierr);
3167bf4602e4SToby Isaac     }
3168bf4602e4SToby Isaac   }
3169d67d17b1SMatthew G. Knepley   ierr = PetscObjectStateGet((PetscObject) label, &mesh->depthState);CHKERRQ(ierr);
3170552f7358SJed Brown   ierr = PetscLogEventEnd(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr);
3171552f7358SJed Brown   PetscFunctionReturn(0);
3172552f7358SJed Brown }
3173552f7358SJed Brown 
3174412e9a14SMatthew G. Knepley PetscErrorCode DMPlexComputeCellType_Internal(DM dm, PetscInt p, PetscInt pdepth, DMPolytopeType *pt)
3175ba2698f1SMatthew G. Knepley {
3176412e9a14SMatthew G. Knepley   DMPolytopeType ct = DM_POLYTOPE_UNKNOWN;
3177412e9a14SMatthew G. Knepley   PetscInt       dim, depth, pheight, coneSize;
3178ba2698f1SMatthew G. Knepley   PetscErrorCode ierr;
3179ba2698f1SMatthew G. Knepley 
3180412e9a14SMatthew G. Knepley   PetscFunctionBeginHot;
3181ba2698f1SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
3182ba2698f1SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
3183ba2698f1SMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
3184ba2698f1SMatthew G. Knepley   pheight = depth - pdepth;
3185ba2698f1SMatthew G. Knepley   if (depth <= 1) {
3186ba2698f1SMatthew G. Knepley     switch (pdepth) {
3187ba2698f1SMatthew G. Knepley       case 0: ct = DM_POLYTOPE_POINT;break;
3188ba2698f1SMatthew G. Knepley       case 1:
3189ba2698f1SMatthew G. Knepley         switch (coneSize) {
3190ba2698f1SMatthew G. Knepley           case 2: ct = DM_POLYTOPE_SEGMENT;break;
3191ba2698f1SMatthew G. Knepley           case 3: ct = DM_POLYTOPE_TRIANGLE;break;
3192ba2698f1SMatthew G. Knepley           case 4:
3193ba2698f1SMatthew G. Knepley           switch (dim) {
3194ba2698f1SMatthew G. Knepley             case 2: ct = DM_POLYTOPE_QUADRILATERAL;break;
3195ba2698f1SMatthew G. Knepley             case 3: ct = DM_POLYTOPE_TETRAHEDRON;break;
3196ba2698f1SMatthew G. Knepley             default: break;
3197ba2698f1SMatthew G. Knepley           }
3198ba2698f1SMatthew G. Knepley           break;
3199da9060c4SMatthew G. Knepley         case 5: ct = DM_POLYTOPE_PYRAMID;break;
3200ba2698f1SMatthew G. Knepley         case 6: ct = DM_POLYTOPE_TRI_PRISM_TENSOR;break;
3201ba2698f1SMatthew G. Knepley         case 8: ct = DM_POLYTOPE_HEXAHEDRON;break;
3202ba2698f1SMatthew G. Knepley         default: break;
3203ba2698f1SMatthew G. Knepley       }
3204ba2698f1SMatthew G. Knepley     }
3205ba2698f1SMatthew G. Knepley   } else {
3206ba2698f1SMatthew G. Knepley     if (pdepth == 0) {
3207ba2698f1SMatthew G. Knepley       ct = DM_POLYTOPE_POINT;
3208ba2698f1SMatthew G. Knepley     } else if (pheight == 0) {
3209ba2698f1SMatthew G. Knepley       switch (dim) {
3210ba2698f1SMatthew G. Knepley         case 1:
3211ba2698f1SMatthew G. Knepley           switch (coneSize) {
3212ba2698f1SMatthew G. Knepley             case 2: ct = DM_POLYTOPE_SEGMENT;break;
3213ba2698f1SMatthew G. Knepley             default: break;
3214ba2698f1SMatthew G. Knepley           }
3215ba2698f1SMatthew G. Knepley           break;
3216ba2698f1SMatthew G. Knepley         case 2:
3217ba2698f1SMatthew G. Knepley           switch (coneSize) {
3218ba2698f1SMatthew G. Knepley             case 3: ct = DM_POLYTOPE_TRIANGLE;break;
3219ba2698f1SMatthew G. Knepley             case 4: ct = DM_POLYTOPE_QUADRILATERAL;break;
3220ba2698f1SMatthew G. Knepley             default: break;
3221ba2698f1SMatthew G. Knepley           }
3222ba2698f1SMatthew G. Knepley           break;
3223ba2698f1SMatthew G. Knepley         case 3:
3224ba2698f1SMatthew G. Knepley           switch (coneSize) {
3225ba2698f1SMatthew G. Knepley             case 4: ct = DM_POLYTOPE_TETRAHEDRON;break;
3226da9060c4SMatthew G. Knepley             case 5:
3227da9060c4SMatthew G. Knepley             {
3228da9060c4SMatthew G. Knepley               const PetscInt *cone;
3229da9060c4SMatthew G. Knepley               PetscInt        faceConeSize;
3230da9060c4SMatthew G. Knepley 
3231da9060c4SMatthew G. Knepley               ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
3232da9060c4SMatthew G. Knepley               ierr = DMPlexGetConeSize(dm, cone[0], &faceConeSize);CHKERRQ(ierr);
3233da9060c4SMatthew G. Knepley               switch (faceConeSize) {
3234da9060c4SMatthew G. Knepley                 case 3: ct = DM_POLYTOPE_TRI_PRISM_TENSOR;break;
3235da9060c4SMatthew G. Knepley                 case 4: ct = DM_POLYTOPE_PYRAMID;break;
3236da9060c4SMatthew G. Knepley               }
3237da9060c4SMatthew G. Knepley             }
3238da9060c4SMatthew G. Knepley             break;
3239ba2698f1SMatthew G. Knepley             case 6: ct = DM_POLYTOPE_HEXAHEDRON;break;
3240ba2698f1SMatthew G. Knepley             default: break;
3241ba2698f1SMatthew G. Knepley           }
3242ba2698f1SMatthew G. Knepley           break;
3243ba2698f1SMatthew G. Knepley         default: break;
3244ba2698f1SMatthew G. Knepley       }
3245ba2698f1SMatthew G. Knepley     } else if (pheight > 0) {
3246ba2698f1SMatthew G. Knepley       switch (coneSize) {
3247ba2698f1SMatthew G. Knepley         case 2: ct = DM_POLYTOPE_SEGMENT;break;
3248ba2698f1SMatthew G. Knepley         case 3: ct = DM_POLYTOPE_TRIANGLE;break;
3249ba2698f1SMatthew G. Knepley         case 4: ct = DM_POLYTOPE_QUADRILATERAL;break;
3250ba2698f1SMatthew G. Knepley         default: break;
3251ba2698f1SMatthew G. Knepley       }
3252ba2698f1SMatthew G. Knepley     }
3253ba2698f1SMatthew G. Knepley   }
3254412e9a14SMatthew G. Knepley   *pt = ct;
3255412e9a14SMatthew G. Knepley   PetscFunctionReturn(0);
3256ba2698f1SMatthew G. Knepley }
3257412e9a14SMatthew G. Knepley 
3258412e9a14SMatthew G. Knepley /*@
3259412e9a14SMatthew G. Knepley   DMPlexComputeCellTypes - Infer the polytope type of every cell using its dimension and cone size.
3260412e9a14SMatthew G. Knepley 
3261412e9a14SMatthew G. Knepley   Collective on dm
3262412e9a14SMatthew G. Knepley 
3263412e9a14SMatthew G. Knepley   Input Parameter:
3264412e9a14SMatthew G. Knepley . mesh - The DMPlex
3265412e9a14SMatthew G. Knepley 
3266412e9a14SMatthew G. Knepley   DMPlexComputeCellTypes() should be called after all calls to DMPlexSymmetrize() and DMPlexStratify()
3267412e9a14SMatthew G. Knepley 
3268412e9a14SMatthew G. Knepley   Level: developer
3269412e9a14SMatthew G. Knepley 
3270412e9a14SMatthew G. Knepley   Note: This function is normally called automatically by Plex when a cell type is requested. It creates an
3271412e9a14SMatthew G. Knepley   internal DMLabel named "celltype" which can be directly accessed using DMGetLabel(). A user may disable
3272412e9a14SMatthew G. Knepley   automatic creation by creating the label manually, using DMCreateLabel(dm, "celltype").
3273412e9a14SMatthew G. Knepley 
3274412e9a14SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexSymmetrize(), DMPlexStratify(), DMGetLabel(), DMCreateLabel()
3275412e9a14SMatthew G. Knepley @*/
3276412e9a14SMatthew G. Knepley PetscErrorCode DMPlexComputeCellTypes(DM dm)
3277412e9a14SMatthew G. Knepley {
3278412e9a14SMatthew G. Knepley   DM_Plex       *mesh;
3279412e9a14SMatthew G. Knepley   DMLabel        ctLabel;
3280412e9a14SMatthew G. Knepley   PetscInt       pStart, pEnd, p;
3281412e9a14SMatthew G. Knepley   PetscErrorCode ierr;
3282412e9a14SMatthew G. Knepley 
3283412e9a14SMatthew G. Knepley   PetscFunctionBegin;
3284412e9a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3285412e9a14SMatthew G. Knepley   mesh = (DM_Plex *) dm->data;
3286412e9a14SMatthew G. Knepley   ierr = DMCreateLabel(dm, "celltype");CHKERRQ(ierr);
3287412e9a14SMatthew G. Knepley   ierr = DMPlexGetCellTypeLabel(dm, &ctLabel);CHKERRQ(ierr);
3288412e9a14SMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
3289412e9a14SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
3290327c2912SStefano Zampini     DMPolytopeType ct = DM_POLYTOPE_UNKNOWN;
3291412e9a14SMatthew G. Knepley     PetscInt       pdepth;
3292412e9a14SMatthew G. Knepley 
3293412e9a14SMatthew G. Knepley     ierr = DMPlexGetPointDepth(dm, p, &pdepth);CHKERRQ(ierr);
3294412e9a14SMatthew G. Knepley     ierr = DMPlexComputeCellType_Internal(dm, p, pdepth, &ct);CHKERRQ(ierr);
3295412e9a14SMatthew G. Knepley     if (ct == DM_POLYTOPE_UNKNOWN) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Point %D is screwed up", p);
3296412e9a14SMatthew G. Knepley     ierr = DMLabelSetValue(ctLabel, p, ct);CHKERRQ(ierr);
3297412e9a14SMatthew G. Knepley   }
3298412e9a14SMatthew G. Knepley   ierr = PetscObjectStateGet((PetscObject) ctLabel, &mesh->celltypeState);CHKERRQ(ierr);
3299412e9a14SMatthew G. Knepley   ierr = PetscObjectViewFromOptions((PetscObject) ctLabel, NULL, "-dm_plex_celltypes_view");CHKERRQ(ierr);
3300ba2698f1SMatthew G. Knepley   PetscFunctionReturn(0);
3301ba2698f1SMatthew G. Knepley }
3302ba2698f1SMatthew G. Knepley 
3303552f7358SJed Brown /*@C
3304552f7358SJed Brown   DMPlexGetJoin - Get an array for the join of the set of points
3305552f7358SJed Brown 
3306552f7358SJed Brown   Not Collective
3307552f7358SJed Brown 
3308552f7358SJed Brown   Input Parameters:
3309552f7358SJed Brown + dm - The DMPlex object
3310552f7358SJed Brown . numPoints - The number of input points for the join
3311552f7358SJed Brown - points - The input points
3312552f7358SJed Brown 
3313552f7358SJed Brown   Output Parameters:
3314552f7358SJed Brown + numCoveredPoints - The number of points in the join
3315552f7358SJed Brown - coveredPoints - The points in the join
3316552f7358SJed Brown 
3317552f7358SJed Brown   Level: intermediate
3318552f7358SJed Brown 
3319552f7358SJed Brown   Note: Currently, this is restricted to a single level join
3320552f7358SJed Brown 
33213813dfbdSMatthew G Knepley   Fortran Notes:
33223813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
33233813dfbdSMatthew G Knepley   include petsc.h90 in your code.
33243813dfbdSMatthew G Knepley 
33253813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
33263813dfbdSMatthew G Knepley 
3327552f7358SJed Brown .seealso: DMPlexRestoreJoin(), DMPlexGetMeet()
3328552f7358SJed Brown @*/
3329552f7358SJed Brown PetscErrorCode DMPlexGetJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3330552f7358SJed Brown {
3331552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
3332552f7358SJed Brown   PetscInt      *join[2];
3333552f7358SJed Brown   PetscInt       joinSize, i = 0;
3334552f7358SJed Brown   PetscInt       dof, off, p, c, m;
3335552f7358SJed Brown   PetscErrorCode ierr;
3336552f7358SJed Brown 
3337552f7358SJed Brown   PetscFunctionBegin;
3338552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
333948bb261cSVaclav Hapla   PetscValidIntPointer(points, 3);
334048bb261cSVaclav Hapla   PetscValidIntPointer(numCoveredPoints, 4);
334148bb261cSVaclav Hapla   PetscValidPointer(coveredPoints, 5);
334269291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[0]);CHKERRQ(ierr);
334369291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1]);CHKERRQ(ierr);
3344552f7358SJed Brown   /* Copy in support of first point */
3345552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, points[0], &dof);CHKERRQ(ierr);
3346552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, points[0], &off);CHKERRQ(ierr);
3347552f7358SJed Brown   for (joinSize = 0; joinSize < dof; ++joinSize) {
3348552f7358SJed Brown     join[i][joinSize] = mesh->supports[off+joinSize];
3349552f7358SJed Brown   }
3350552f7358SJed Brown   /* Check each successive support */
3351552f7358SJed Brown   for (p = 1; p < numPoints; ++p) {
3352552f7358SJed Brown     PetscInt newJoinSize = 0;
3353552f7358SJed Brown 
3354552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->supportSection, points[p], &dof);CHKERRQ(ierr);
3355552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->supportSection, points[p], &off);CHKERRQ(ierr);
3356552f7358SJed Brown     for (c = 0; c < dof; ++c) {
3357552f7358SJed Brown       const PetscInt point = mesh->supports[off+c];
3358552f7358SJed Brown 
3359552f7358SJed Brown       for (m = 0; m < joinSize; ++m) {
3360552f7358SJed Brown         if (point == join[i][m]) {
3361552f7358SJed Brown           join[1-i][newJoinSize++] = point;
3362552f7358SJed Brown           break;
3363552f7358SJed Brown         }
3364552f7358SJed Brown       }
3365552f7358SJed Brown     }
3366552f7358SJed Brown     joinSize = newJoinSize;
3367552f7358SJed Brown     i        = 1-i;
3368552f7358SJed Brown   }
3369552f7358SJed Brown   *numCoveredPoints = joinSize;
3370552f7358SJed Brown   *coveredPoints    = join[i];
337169291d52SBarry Smith   ierr              = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr);
3372552f7358SJed Brown   PetscFunctionReturn(0);
3373552f7358SJed Brown }
3374552f7358SJed Brown 
3375552f7358SJed Brown /*@C
3376552f7358SJed Brown   DMPlexRestoreJoin - Restore an array for the join of the set of points
3377552f7358SJed Brown 
3378552f7358SJed Brown   Not Collective
3379552f7358SJed Brown 
3380552f7358SJed Brown   Input Parameters:
3381552f7358SJed Brown + dm - The DMPlex object
3382552f7358SJed Brown . numPoints - The number of input points for the join
3383552f7358SJed Brown - points - The input points
3384552f7358SJed Brown 
3385552f7358SJed Brown   Output Parameters:
3386552f7358SJed Brown + numCoveredPoints - The number of points in the join
3387552f7358SJed Brown - coveredPoints - The points in the join
3388552f7358SJed Brown 
33893813dfbdSMatthew G Knepley   Fortran Notes:
33903813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
33913813dfbdSMatthew G Knepley   include petsc.h90 in your code.
33923813dfbdSMatthew G Knepley 
33933813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
33943813dfbdSMatthew G Knepley 
3395552f7358SJed Brown   Level: intermediate
3396552f7358SJed Brown 
3397552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexGetFullJoin(), DMPlexGetMeet()
3398552f7358SJed Brown @*/
3399552f7358SJed Brown PetscErrorCode DMPlexRestoreJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3400552f7358SJed Brown {
3401552f7358SJed Brown   PetscErrorCode ierr;
3402552f7358SJed Brown 
3403552f7358SJed Brown   PetscFunctionBegin;
3404552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3405d7902bd2SMatthew G. Knepley   if (points) PetscValidIntPointer(points,3);
3406d7902bd2SMatthew G. Knepley   if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4);
3407d7902bd2SMatthew G. Knepley   PetscValidPointer(coveredPoints, 5);
340869291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr);
3409d7902bd2SMatthew G. Knepley   if (numCoveredPoints) *numCoveredPoints = 0;
3410552f7358SJed Brown   PetscFunctionReturn(0);
3411552f7358SJed Brown }
3412552f7358SJed Brown 
3413552f7358SJed Brown /*@C
3414552f7358SJed Brown   DMPlexGetFullJoin - Get an array for the join of the set of points
3415552f7358SJed Brown 
3416552f7358SJed Brown   Not Collective
3417552f7358SJed Brown 
3418552f7358SJed Brown   Input Parameters:
3419552f7358SJed Brown + dm - The DMPlex object
3420552f7358SJed Brown . numPoints - The number of input points for the join
3421552f7358SJed Brown - points - The input points
3422552f7358SJed Brown 
3423552f7358SJed Brown   Output Parameters:
3424552f7358SJed Brown + numCoveredPoints - The number of points in the join
3425552f7358SJed Brown - coveredPoints - The points in the join
3426552f7358SJed Brown 
34273813dfbdSMatthew G Knepley   Fortran Notes:
34283813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
34293813dfbdSMatthew G Knepley   include petsc.h90 in your code.
34303813dfbdSMatthew G Knepley 
34313813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
34323813dfbdSMatthew G Knepley 
3433552f7358SJed Brown   Level: intermediate
3434552f7358SJed Brown 
3435552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexRestoreJoin(), DMPlexGetMeet()
3436552f7358SJed Brown @*/
3437552f7358SJed Brown PetscErrorCode DMPlexGetFullJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3438552f7358SJed Brown {
3439552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
3440552f7358SJed Brown   PetscInt      *offsets, **closures;
3441552f7358SJed Brown   PetscInt      *join[2];
3442552f7358SJed Brown   PetscInt       depth = 0, maxSize, joinSize = 0, i = 0;
344324c766afSToby Isaac   PetscInt       p, d, c, m, ms;
3444552f7358SJed Brown   PetscErrorCode ierr;
3445552f7358SJed Brown 
3446552f7358SJed Brown   PetscFunctionBegin;
3447552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
344848bb261cSVaclav Hapla   PetscValidIntPointer(points, 3);
344948bb261cSVaclav Hapla   PetscValidIntPointer(numCoveredPoints, 4);
345048bb261cSVaclav Hapla   PetscValidPointer(coveredPoints, 5);
3451552f7358SJed Brown 
3452552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
34531795a4d1SJed Brown   ierr    = PetscCalloc1(numPoints, &closures);CHKERRQ(ierr);
345469291d52SBarry Smith   ierr    = DMGetWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr);
345524c766afSToby Isaac   ms      = mesh->maxSupportSize;
345624c766afSToby Isaac   maxSize = (ms > 1) ? ((PetscPowInt(ms,depth+1)-1)/(ms-1)) : depth + 1;
345769291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[0]);CHKERRQ(ierr);
345869291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[1]);CHKERRQ(ierr);
3459552f7358SJed Brown 
3460552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
3461552f7358SJed Brown     PetscInt closureSize;
3462552f7358SJed Brown 
3463552f7358SJed Brown     ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_FALSE, &closureSize, &closures[p]);CHKERRQ(ierr);
34640d644c17SKarl Rupp 
3465552f7358SJed Brown     offsets[p*(depth+2)+0] = 0;
3466552f7358SJed Brown     for (d = 0; d < depth+1; ++d) {
3467552f7358SJed Brown       PetscInt pStart, pEnd, i;
3468552f7358SJed Brown 
3469552f7358SJed Brown       ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr);
3470552f7358SJed Brown       for (i = offsets[p*(depth+2)+d]; i < closureSize; ++i) {
3471552f7358SJed Brown         if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) {
3472552f7358SJed Brown           offsets[p*(depth+2)+d+1] = i;
3473552f7358SJed Brown           break;
3474552f7358SJed Brown         }
3475552f7358SJed Brown       }
3476552f7358SJed Brown       if (i == closureSize) offsets[p*(depth+2)+d+1] = i;
3477552f7358SJed Brown     }
347882f516ccSBarry Smith     if (offsets[p*(depth+2)+depth+1] != closureSize) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Total size of closure %D should be %D", offsets[p*(depth+2)+depth+1], closureSize);
3479552f7358SJed Brown   }
3480552f7358SJed Brown   for (d = 0; d < depth+1; ++d) {
3481552f7358SJed Brown     PetscInt dof;
3482552f7358SJed Brown 
3483552f7358SJed Brown     /* Copy in support of first point */
3484552f7358SJed Brown     dof = offsets[d+1] - offsets[d];
3485552f7358SJed Brown     for (joinSize = 0; joinSize < dof; ++joinSize) {
3486552f7358SJed Brown       join[i][joinSize] = closures[0][(offsets[d]+joinSize)*2];
3487552f7358SJed Brown     }
3488552f7358SJed Brown     /* Check each successive cone */
3489552f7358SJed Brown     for (p = 1; p < numPoints && joinSize; ++p) {
3490552f7358SJed Brown       PetscInt newJoinSize = 0;
3491552f7358SJed Brown 
3492552f7358SJed Brown       dof = offsets[p*(depth+2)+d+1] - offsets[p*(depth+2)+d];
3493552f7358SJed Brown       for (c = 0; c < dof; ++c) {
3494552f7358SJed Brown         const PetscInt point = closures[p][(offsets[p*(depth+2)+d]+c)*2];
3495552f7358SJed Brown 
3496552f7358SJed Brown         for (m = 0; m < joinSize; ++m) {
3497552f7358SJed Brown           if (point == join[i][m]) {
3498552f7358SJed Brown             join[1-i][newJoinSize++] = point;
3499552f7358SJed Brown             break;
3500552f7358SJed Brown           }
3501552f7358SJed Brown         }
3502552f7358SJed Brown       }
3503552f7358SJed Brown       joinSize = newJoinSize;
3504552f7358SJed Brown       i        = 1-i;
3505552f7358SJed Brown     }
3506552f7358SJed Brown     if (joinSize) break;
3507552f7358SJed Brown   }
3508552f7358SJed Brown   *numCoveredPoints = joinSize;
3509552f7358SJed Brown   *coveredPoints    = join[i];
3510552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
35110298fd71SBarry Smith     ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_FALSE, NULL, &closures[p]);CHKERRQ(ierr);
3512552f7358SJed Brown   }
3513552f7358SJed Brown   ierr = PetscFree(closures);CHKERRQ(ierr);
351469291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr);
351569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr);
3516552f7358SJed Brown   PetscFunctionReturn(0);
3517552f7358SJed Brown }
3518552f7358SJed Brown 
3519552f7358SJed Brown /*@C
3520552f7358SJed Brown   DMPlexGetMeet - Get an array for the meet of the set of points
3521552f7358SJed Brown 
3522552f7358SJed Brown   Not Collective
3523552f7358SJed Brown 
3524552f7358SJed Brown   Input Parameters:
3525552f7358SJed Brown + dm - The DMPlex object
3526552f7358SJed Brown . numPoints - The number of input points for the meet
3527552f7358SJed Brown - points - The input points
3528552f7358SJed Brown 
3529552f7358SJed Brown   Output Parameters:
3530552f7358SJed Brown + numCoveredPoints - The number of points in the meet
3531552f7358SJed Brown - coveredPoints - The points in the meet
3532552f7358SJed Brown 
3533552f7358SJed Brown   Level: intermediate
3534552f7358SJed Brown 
3535552f7358SJed Brown   Note: Currently, this is restricted to a single level meet
3536552f7358SJed Brown 
35373813dfbdSMatthew G Knepley   Fortran Notes:
35383813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
35393813dfbdSMatthew G Knepley   include petsc.h90 in your code.
35403813dfbdSMatthew G Knepley 
35413813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
35423813dfbdSMatthew G Knepley 
3543552f7358SJed Brown .seealso: DMPlexRestoreMeet(), DMPlexGetJoin()
3544552f7358SJed Brown @*/
3545552f7358SJed Brown PetscErrorCode DMPlexGetMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveringPoints, const PetscInt **coveringPoints)
3546552f7358SJed Brown {
3547552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
3548552f7358SJed Brown   PetscInt      *meet[2];
3549552f7358SJed Brown   PetscInt       meetSize, i = 0;
3550552f7358SJed Brown   PetscInt       dof, off, p, c, m;
3551552f7358SJed Brown   PetscErrorCode ierr;
3552552f7358SJed Brown 
3553552f7358SJed Brown   PetscFunctionBegin;
3554552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3555064a246eSJacob Faibussowitsch   PetscValidPointer(points, 3);
3556064a246eSJacob Faibussowitsch   PetscValidPointer(numCoveringPoints, 4);
3557064a246eSJacob Faibussowitsch   PetscValidPointer(coveringPoints, 5);
355869291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[0]);CHKERRQ(ierr);
355969291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1]);CHKERRQ(ierr);
3560552f7358SJed Brown   /* Copy in cone of first point */
3561552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, points[0], &dof);CHKERRQ(ierr);
3562552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, points[0], &off);CHKERRQ(ierr);
3563552f7358SJed Brown   for (meetSize = 0; meetSize < dof; ++meetSize) {
3564552f7358SJed Brown     meet[i][meetSize] = mesh->cones[off+meetSize];
3565552f7358SJed Brown   }
3566552f7358SJed Brown   /* Check each successive cone */
3567552f7358SJed Brown   for (p = 1; p < numPoints; ++p) {
3568552f7358SJed Brown     PetscInt newMeetSize = 0;
3569552f7358SJed Brown 
3570552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, points[p], &dof);CHKERRQ(ierr);
3571552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, points[p], &off);CHKERRQ(ierr);
3572552f7358SJed Brown     for (c = 0; c < dof; ++c) {
3573552f7358SJed Brown       const PetscInt point = mesh->cones[off+c];
3574552f7358SJed Brown 
3575552f7358SJed Brown       for (m = 0; m < meetSize; ++m) {
3576552f7358SJed Brown         if (point == meet[i][m]) {
3577552f7358SJed Brown           meet[1-i][newMeetSize++] = point;
3578552f7358SJed Brown           break;
3579552f7358SJed Brown         }
3580552f7358SJed Brown       }
3581552f7358SJed Brown     }
3582552f7358SJed Brown     meetSize = newMeetSize;
3583552f7358SJed Brown     i        = 1-i;
3584552f7358SJed Brown   }
3585552f7358SJed Brown   *numCoveringPoints = meetSize;
3586552f7358SJed Brown   *coveringPoints    = meet[i];
358769291d52SBarry Smith   ierr               = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr);
3588552f7358SJed Brown   PetscFunctionReturn(0);
3589552f7358SJed Brown }
3590552f7358SJed Brown 
3591552f7358SJed Brown /*@C
3592552f7358SJed Brown   DMPlexRestoreMeet - Restore an array for the meet of the set of points
3593552f7358SJed Brown 
3594552f7358SJed Brown   Not Collective
3595552f7358SJed Brown 
3596552f7358SJed Brown   Input Parameters:
3597552f7358SJed Brown + dm - The DMPlex object
3598552f7358SJed Brown . numPoints - The number of input points for the meet
3599552f7358SJed Brown - points - The input points
3600552f7358SJed Brown 
3601552f7358SJed Brown   Output Parameters:
3602552f7358SJed Brown + numCoveredPoints - The number of points in the meet
3603552f7358SJed Brown - coveredPoints - The points in the meet
3604552f7358SJed Brown 
3605552f7358SJed Brown   Level: intermediate
3606552f7358SJed Brown 
36073813dfbdSMatthew G Knepley   Fortran Notes:
36083813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
36093813dfbdSMatthew G Knepley   include petsc.h90 in your code.
36103813dfbdSMatthew G Knepley 
36113813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
36123813dfbdSMatthew G Knepley 
3613552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexGetFullMeet(), DMPlexGetJoin()
3614552f7358SJed Brown @*/
3615552f7358SJed Brown PetscErrorCode DMPlexRestoreMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3616552f7358SJed Brown {
3617552f7358SJed Brown   PetscErrorCode ierr;
3618552f7358SJed Brown 
3619552f7358SJed Brown   PetscFunctionBegin;
3620552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3621d7902bd2SMatthew G. Knepley   if (points) PetscValidIntPointer(points,3);
3622d7902bd2SMatthew G. Knepley   if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4);
3623d7902bd2SMatthew G. Knepley   PetscValidPointer(coveredPoints,5);
362469291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr);
3625d7902bd2SMatthew G. Knepley   if (numCoveredPoints) *numCoveredPoints = 0;
3626552f7358SJed Brown   PetscFunctionReturn(0);
3627552f7358SJed Brown }
3628552f7358SJed Brown 
3629552f7358SJed Brown /*@C
3630552f7358SJed Brown   DMPlexGetFullMeet - Get an array for the meet of the set of points
3631552f7358SJed Brown 
3632552f7358SJed Brown   Not Collective
3633552f7358SJed Brown 
3634552f7358SJed Brown   Input Parameters:
3635552f7358SJed Brown + dm - The DMPlex object
3636552f7358SJed Brown . numPoints - The number of input points for the meet
3637552f7358SJed Brown - points - The input points
3638552f7358SJed Brown 
3639552f7358SJed Brown   Output Parameters:
3640552f7358SJed Brown + numCoveredPoints - The number of points in the meet
3641552f7358SJed Brown - coveredPoints - The points in the meet
3642552f7358SJed Brown 
3643552f7358SJed Brown   Level: intermediate
3644552f7358SJed Brown 
36453813dfbdSMatthew G Knepley   Fortran Notes:
36463813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
36473813dfbdSMatthew G Knepley   include petsc.h90 in your code.
36483813dfbdSMatthew G Knepley 
36493813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
36503813dfbdSMatthew G Knepley 
3651552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexRestoreMeet(), DMPlexGetJoin()
3652552f7358SJed Brown @*/
3653552f7358SJed Brown PetscErrorCode DMPlexGetFullMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3654552f7358SJed Brown {
3655552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
3656552f7358SJed Brown   PetscInt      *offsets, **closures;
3657552f7358SJed Brown   PetscInt      *meet[2];
3658552f7358SJed Brown   PetscInt       height = 0, maxSize, meetSize = 0, i = 0;
365924c766afSToby Isaac   PetscInt       p, h, c, m, mc;
3660552f7358SJed Brown   PetscErrorCode ierr;
3661552f7358SJed Brown 
3662552f7358SJed Brown   PetscFunctionBegin;
3663552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3664064a246eSJacob Faibussowitsch   PetscValidPointer(points, 3);
3665064a246eSJacob Faibussowitsch   PetscValidPointer(numCoveredPoints, 4);
3666064a246eSJacob Faibussowitsch   PetscValidPointer(coveredPoints, 5);
3667552f7358SJed Brown 
3668552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &height);CHKERRQ(ierr);
3669785e854fSJed Brown   ierr    = PetscMalloc1(numPoints, &closures);CHKERRQ(ierr);
367069291d52SBarry Smith   ierr    = DMGetWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr);
367124c766afSToby Isaac   mc      = mesh->maxConeSize;
367224c766afSToby Isaac   maxSize = (mc > 1) ? ((PetscPowInt(mc,height+1)-1)/(mc-1)) : height + 1;
367369291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[0]);CHKERRQ(ierr);
367469291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[1]);CHKERRQ(ierr);
3675552f7358SJed Brown 
3676552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
3677552f7358SJed Brown     PetscInt closureSize;
3678552f7358SJed Brown 
3679552f7358SJed Brown     ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_TRUE, &closureSize, &closures[p]);CHKERRQ(ierr);
36800d644c17SKarl Rupp 
3681552f7358SJed Brown     offsets[p*(height+2)+0] = 0;
3682552f7358SJed Brown     for (h = 0; h < height+1; ++h) {
3683552f7358SJed Brown       PetscInt pStart, pEnd, i;
3684552f7358SJed Brown 
3685552f7358SJed Brown       ierr = DMPlexGetHeightStratum(dm, h, &pStart, &pEnd);CHKERRQ(ierr);
3686552f7358SJed Brown       for (i = offsets[p*(height+2)+h]; i < closureSize; ++i) {
3687552f7358SJed Brown         if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) {
3688552f7358SJed Brown           offsets[p*(height+2)+h+1] = i;
3689552f7358SJed Brown           break;
3690552f7358SJed Brown         }
3691552f7358SJed Brown       }
3692552f7358SJed Brown       if (i == closureSize) offsets[p*(height+2)+h+1] = i;
3693552f7358SJed Brown     }
369482f516ccSBarry Smith     if (offsets[p*(height+2)+height+1] != closureSize) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Total size of closure %D should be %D", offsets[p*(height+2)+height+1], closureSize);
3695552f7358SJed Brown   }
3696552f7358SJed Brown   for (h = 0; h < height+1; ++h) {
3697552f7358SJed Brown     PetscInt dof;
3698552f7358SJed Brown 
3699552f7358SJed Brown     /* Copy in cone of first point */
3700552f7358SJed Brown     dof = offsets[h+1] - offsets[h];
3701552f7358SJed Brown     for (meetSize = 0; meetSize < dof; ++meetSize) {
3702552f7358SJed Brown       meet[i][meetSize] = closures[0][(offsets[h]+meetSize)*2];
3703552f7358SJed Brown     }
3704552f7358SJed Brown     /* Check each successive cone */
3705552f7358SJed Brown     for (p = 1; p < numPoints && meetSize; ++p) {
3706552f7358SJed Brown       PetscInt newMeetSize = 0;
3707552f7358SJed Brown 
3708552f7358SJed Brown       dof = offsets[p*(height+2)+h+1] - offsets[p*(height+2)+h];
3709552f7358SJed Brown       for (c = 0; c < dof; ++c) {
3710552f7358SJed Brown         const PetscInt point = closures[p][(offsets[p*(height+2)+h]+c)*2];
3711552f7358SJed Brown 
3712552f7358SJed Brown         for (m = 0; m < meetSize; ++m) {
3713552f7358SJed Brown           if (point == meet[i][m]) {
3714552f7358SJed Brown             meet[1-i][newMeetSize++] = point;
3715552f7358SJed Brown             break;
3716552f7358SJed Brown           }
3717552f7358SJed Brown         }
3718552f7358SJed Brown       }
3719552f7358SJed Brown       meetSize = newMeetSize;
3720552f7358SJed Brown       i        = 1-i;
3721552f7358SJed Brown     }
3722552f7358SJed Brown     if (meetSize) break;
3723552f7358SJed Brown   }
3724552f7358SJed Brown   *numCoveredPoints = meetSize;
3725552f7358SJed Brown   *coveredPoints    = meet[i];
3726552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
37270298fd71SBarry Smith     ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_TRUE, NULL, &closures[p]);CHKERRQ(ierr);
3728552f7358SJed Brown   }
3729552f7358SJed Brown   ierr = PetscFree(closures);CHKERRQ(ierr);
373069291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr);
373169291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr);
3732552f7358SJed Brown   PetscFunctionReturn(0);
3733552f7358SJed Brown }
3734552f7358SJed Brown 
37354e3744c5SMatthew G. Knepley /*@C
37364e3744c5SMatthew G. Knepley   DMPlexEqual - Determine if two DMs have the same topology
37374e3744c5SMatthew G. Knepley 
37384e3744c5SMatthew G. Knepley   Not Collective
37394e3744c5SMatthew G. Knepley 
37404e3744c5SMatthew G. Knepley   Input Parameters:
37414e3744c5SMatthew G. Knepley + dmA - A DMPlex object
37424e3744c5SMatthew G. Knepley - dmB - A DMPlex object
37434e3744c5SMatthew G. Knepley 
37444e3744c5SMatthew G. Knepley   Output Parameters:
37454e3744c5SMatthew G. Knepley . equal - PETSC_TRUE if the topologies are identical
37464e3744c5SMatthew G. Knepley 
37474e3744c5SMatthew G. Knepley   Level: intermediate
37484e3744c5SMatthew G. Knepley 
37494e3744c5SMatthew G. Knepley   Notes:
37504e3744c5SMatthew G. Knepley   We are not solving graph isomorphism, so we do not permutation.
37514e3744c5SMatthew G. Knepley 
37524e3744c5SMatthew G. Knepley .seealso: DMPlexGetCone()
37534e3744c5SMatthew G. Knepley @*/
37544e3744c5SMatthew G. Knepley PetscErrorCode DMPlexEqual(DM dmA, DM dmB, PetscBool *equal)
37554e3744c5SMatthew G. Knepley {
37564e3744c5SMatthew G. Knepley   PetscInt       depth, depthB, pStart, pEnd, pStartB, pEndB, p;
37574e3744c5SMatthew G. Knepley   PetscErrorCode ierr;
37584e3744c5SMatthew G. Knepley 
37594e3744c5SMatthew G. Knepley   PetscFunctionBegin;
37604e3744c5SMatthew G. Knepley   PetscValidHeaderSpecific(dmA, DM_CLASSID, 1);
37614e3744c5SMatthew G. Knepley   PetscValidHeaderSpecific(dmB, DM_CLASSID, 2);
37624e3744c5SMatthew G. Knepley   PetscValidPointer(equal, 3);
37634e3744c5SMatthew G. Knepley 
37644e3744c5SMatthew G. Knepley   *equal = PETSC_FALSE;
37654e3744c5SMatthew G. Knepley   ierr = DMPlexGetDepth(dmA, &depth);CHKERRQ(ierr);
37664e3744c5SMatthew G. Knepley   ierr = DMPlexGetDepth(dmB, &depthB);CHKERRQ(ierr);
37674e3744c5SMatthew G. Knepley   if (depth != depthB) PetscFunctionReturn(0);
37684e3744c5SMatthew G. Knepley   ierr = DMPlexGetChart(dmA, &pStart,  &pEnd);CHKERRQ(ierr);
37694e3744c5SMatthew G. Knepley   ierr = DMPlexGetChart(dmB, &pStartB, &pEndB);CHKERRQ(ierr);
37704e3744c5SMatthew G. Knepley   if ((pStart != pStartB) || (pEnd != pEndB)) PetscFunctionReturn(0);
37714e3744c5SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
37724e3744c5SMatthew G. Knepley     const PetscInt *cone, *coneB, *ornt, *orntB, *support, *supportB;
37734e3744c5SMatthew G. Knepley     PetscInt        coneSize, coneSizeB, c, supportSize, supportSizeB, s;
37744e3744c5SMatthew G. Knepley 
37754e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeSize(dmA, p, &coneSize);CHKERRQ(ierr);
37764e3744c5SMatthew G. Knepley     ierr = DMPlexGetCone(dmA, p, &cone);CHKERRQ(ierr);
37774e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dmA, p, &ornt);CHKERRQ(ierr);
37784e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeSize(dmB, p, &coneSizeB);CHKERRQ(ierr);
37794e3744c5SMatthew G. Knepley     ierr = DMPlexGetCone(dmB, p, &coneB);CHKERRQ(ierr);
37804e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dmB, p, &orntB);CHKERRQ(ierr);
37814e3744c5SMatthew G. Knepley     if (coneSize != coneSizeB) PetscFunctionReturn(0);
37824e3744c5SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
37834e3744c5SMatthew G. Knepley       if (cone[c] != coneB[c]) PetscFunctionReturn(0);
37844e3744c5SMatthew G. Knepley       if (ornt[c] != orntB[c]) PetscFunctionReturn(0);
37854e3744c5SMatthew G. Knepley     }
37864e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dmA, p, &supportSize);CHKERRQ(ierr);
37874e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupport(dmA, p, &support);CHKERRQ(ierr);
37884e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dmB, p, &supportSizeB);CHKERRQ(ierr);
37894e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupport(dmB, p, &supportB);CHKERRQ(ierr);
37904e3744c5SMatthew G. Knepley     if (supportSize != supportSizeB) PetscFunctionReturn(0);
37914e3744c5SMatthew G. Knepley     for (s = 0; s < supportSize; ++s) {
37924e3744c5SMatthew G. Knepley       if (support[s] != supportB[s]) PetscFunctionReturn(0);
37934e3744c5SMatthew G. Knepley     }
37944e3744c5SMatthew G. Knepley   }
37954e3744c5SMatthew G. Knepley   *equal = PETSC_TRUE;
37964e3744c5SMatthew G. Knepley   PetscFunctionReturn(0);
37974e3744c5SMatthew G. Knepley }
37984e3744c5SMatthew G. Knepley 
37997cd05799SMatthew G. Knepley /*@C
38007cd05799SMatthew G. Knepley   DMPlexGetNumFaceVertices - Returns the number of vertices on a face
38017cd05799SMatthew G. Knepley 
38027cd05799SMatthew G. Knepley   Not Collective
38037cd05799SMatthew G. Knepley 
38047cd05799SMatthew G. Knepley   Input Parameters:
38057cd05799SMatthew G. Knepley + dm         - The DMPlex
38067cd05799SMatthew G. Knepley . cellDim    - The cell dimension
38077cd05799SMatthew G. Knepley - numCorners - The number of vertices on a cell
38087cd05799SMatthew G. Knepley 
38097cd05799SMatthew G. Knepley   Output Parameters:
38107cd05799SMatthew G. Knepley . numFaceVertices - The number of vertices on a face
38117cd05799SMatthew G. Knepley 
38127cd05799SMatthew G. Knepley   Level: developer
38137cd05799SMatthew G. Knepley 
38147cd05799SMatthew G. Knepley   Notes:
38157cd05799SMatthew G. Knepley   Of course this can only work for a restricted set of symmetric shapes
38167cd05799SMatthew G. Knepley 
38177cd05799SMatthew G. Knepley .seealso: DMPlexGetCone()
38187cd05799SMatthew G. Knepley @*/
381918ad9376SMatthew G. Knepley PetscErrorCode DMPlexGetNumFaceVertices(DM dm, PetscInt cellDim, PetscInt numCorners, PetscInt *numFaceVertices)
3820a6dfd86eSKarl Rupp {
382182f516ccSBarry Smith   MPI_Comm       comm;
3822552f7358SJed Brown   PetscErrorCode ierr;
3823552f7358SJed Brown 
3824552f7358SJed Brown   PetscFunctionBegin;
382582f516ccSBarry Smith   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
3826064a246eSJacob Faibussowitsch   PetscValidPointer(numFaceVertices,4);
3827552f7358SJed Brown   switch (cellDim) {
3828552f7358SJed Brown   case 0:
3829552f7358SJed Brown     *numFaceVertices = 0;
3830552f7358SJed Brown     break;
3831552f7358SJed Brown   case 1:
3832552f7358SJed Brown     *numFaceVertices = 1;
3833552f7358SJed Brown     break;
3834552f7358SJed Brown   case 2:
3835552f7358SJed Brown     switch (numCorners) {
383619436ca2SJed Brown     case 3: /* triangle */
383719436ca2SJed Brown       *numFaceVertices = 2; /* Edge has 2 vertices */
3838552f7358SJed Brown       break;
383919436ca2SJed Brown     case 4: /* quadrilateral */
384019436ca2SJed Brown       *numFaceVertices = 2; /* Edge has 2 vertices */
3841552f7358SJed Brown       break;
384219436ca2SJed Brown     case 6: /* quadratic triangle, tri and quad cohesive Lagrange cells */
384319436ca2SJed Brown       *numFaceVertices = 3; /* Edge has 3 vertices */
3844552f7358SJed Brown       break;
384519436ca2SJed Brown     case 9: /* quadratic quadrilateral, quadratic quad cohesive Lagrange cells */
384619436ca2SJed Brown       *numFaceVertices = 3; /* Edge has 3 vertices */
3847552f7358SJed Brown       break;
3848552f7358SJed Brown     default:
3849f347f43bSBarry Smith       SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim);
3850552f7358SJed Brown     }
3851552f7358SJed Brown     break;
3852552f7358SJed Brown   case 3:
3853552f7358SJed Brown     switch (numCorners) {
385419436ca2SJed Brown     case 4: /* tetradehdron */
385519436ca2SJed Brown       *numFaceVertices = 3; /* Face has 3 vertices */
3856552f7358SJed Brown       break;
385719436ca2SJed Brown     case 6: /* tet cohesive cells */
385819436ca2SJed Brown       *numFaceVertices = 4; /* Face has 4 vertices */
3859552f7358SJed Brown       break;
386019436ca2SJed Brown     case 8: /* hexahedron */
386119436ca2SJed Brown       *numFaceVertices = 4; /* Face has 4 vertices */
3862552f7358SJed Brown       break;
386319436ca2SJed Brown     case 9: /* tet cohesive Lagrange cells */
386419436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3865552f7358SJed Brown       break;
386619436ca2SJed Brown     case 10: /* quadratic tetrahedron */
386719436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3868552f7358SJed Brown       break;
386919436ca2SJed Brown     case 12: /* hex cohesive Lagrange cells */
387019436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3871552f7358SJed Brown       break;
387219436ca2SJed Brown     case 18: /* quadratic tet cohesive Lagrange cells */
387319436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3874552f7358SJed Brown       break;
387519436ca2SJed Brown     case 27: /* quadratic hexahedron, quadratic hex cohesive Lagrange cells */
387619436ca2SJed Brown       *numFaceVertices = 9; /* Face has 9 vertices */
3877552f7358SJed Brown       break;
3878552f7358SJed Brown     default:
3879f347f43bSBarry Smith       SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim);
3880552f7358SJed Brown     }
3881552f7358SJed Brown     break;
3882552f7358SJed Brown   default:
3883f347f43bSBarry Smith     SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid cell dimension %D", cellDim);
3884552f7358SJed Brown   }
3885552f7358SJed Brown   PetscFunctionReturn(0);
3886552f7358SJed Brown }
3887552f7358SJed Brown 
3888552f7358SJed Brown /*@
3889aa50250dSMatthew G. Knepley   DMPlexGetDepthLabel - Get the DMLabel recording the depth of each point
3890552f7358SJed Brown 
3891552f7358SJed Brown   Not Collective
3892552f7358SJed Brown 
3893aa50250dSMatthew G. Knepley   Input Parameter:
3894552f7358SJed Brown . dm    - The DMPlex object
3895552f7358SJed Brown 
3896aa50250dSMatthew G. Knepley   Output Parameter:
3897aa50250dSMatthew G. Knepley . depthLabel - The DMLabel recording point depth
3898552f7358SJed Brown 
3899552f7358SJed Brown   Level: developer
3900552f7358SJed Brown 
3901dc287ab2SVaclav Hapla .seealso: DMPlexGetDepth(), DMPlexGetHeightStratum(), DMPlexGetDepthStratum(), DMPlexGetPointDepth(),
3902aa50250dSMatthew G. Knepley @*/
3903aa50250dSMatthew G. Knepley PetscErrorCode DMPlexGetDepthLabel(DM dm, DMLabel *depthLabel)
3904aa50250dSMatthew G. Knepley {
3905aa50250dSMatthew G. Knepley   PetscFunctionBegin;
3906aa50250dSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3907aa50250dSMatthew G. Knepley   PetscValidPointer(depthLabel, 2);
3908c58f1c22SToby Isaac   *depthLabel = dm->depthLabel;
3909aa50250dSMatthew G. Knepley   PetscFunctionReturn(0);
3910aa50250dSMatthew G. Knepley }
3911aa50250dSMatthew G. Knepley 
3912aa50250dSMatthew G. Knepley /*@
3913aa50250dSMatthew G. Knepley   DMPlexGetDepth - Get the depth of the DAG representing this mesh
3914aa50250dSMatthew G. Knepley 
3915aa50250dSMatthew G. Knepley   Not Collective
3916aa50250dSMatthew G. Knepley 
3917aa50250dSMatthew G. Knepley   Input Parameter:
3918aa50250dSMatthew G. Knepley . dm    - The DMPlex object
3919aa50250dSMatthew G. Knepley 
3920aa50250dSMatthew G. Knepley   Output Parameter:
3921aa50250dSMatthew G. Knepley . depth - The number of strata (breadth first levels) in the DAG
3922aa50250dSMatthew G. Knepley 
3923aa50250dSMatthew G. Knepley   Level: developer
3924552f7358SJed Brown 
3925b1bb481bSMatthew Knepley   Notes:
3926b1bb481bSMatthew Knepley   This returns maximum of point depths over all points, i.e. maximum value of the label returned by DMPlexGetDepthLabel().
3927dc287ab2SVaclav Hapla   The point depth is described more in detail in DMPlexGetDepthStratum().
3928dc287ab2SVaclav Hapla   An empty mesh gives -1.
3929b1bb481bSMatthew Knepley 
3930dc287ab2SVaclav Hapla .seealso: DMPlexGetDepthLabel(), DMPlexGetDepthStratum(), DMPlexGetPointDepth(), DMPlexSymmetrize()
3931552f7358SJed Brown @*/
3932552f7358SJed Brown PetscErrorCode DMPlexGetDepth(DM dm, PetscInt *depth)
3933552f7358SJed Brown {
3934aa50250dSMatthew G. Knepley   DMLabel        label;
3935aa50250dSMatthew G. Knepley   PetscInt       d = 0;
3936552f7358SJed Brown   PetscErrorCode ierr;
3937552f7358SJed Brown 
3938552f7358SJed Brown   PetscFunctionBegin;
3939552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3940552f7358SJed Brown   PetscValidPointer(depth, 2);
3941aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
3942aa50250dSMatthew G. Knepley   if (label) {ierr = DMLabelGetNumValues(label, &d);CHKERRQ(ierr);}
3943552f7358SJed Brown   *depth = d-1;
3944552f7358SJed Brown   PetscFunctionReturn(0);
3945552f7358SJed Brown }
3946552f7358SJed Brown 
3947552f7358SJed Brown /*@
3948552f7358SJed Brown   DMPlexGetDepthStratum - Get the bounds [start, end) for all points at a certain depth.
3949552f7358SJed Brown 
3950552f7358SJed Brown   Not Collective
3951552f7358SJed Brown 
3952552f7358SJed Brown   Input Parameters:
3953552f7358SJed Brown + dm           - The DMPlex object
3954552f7358SJed Brown - stratumValue - The requested depth
3955552f7358SJed Brown 
3956552f7358SJed Brown   Output Parameters:
3957552f7358SJed Brown + start - The first point at this depth
3958552f7358SJed Brown - end   - One beyond the last point at this depth
3959552f7358SJed Brown 
3960647867b2SJed Brown   Notes:
3961647867b2SJed Brown   Depth indexing is related to topological dimension.  Depth stratum 0 contains the lowest topological dimension points,
3962647867b2SJed Brown   often "vertices".  If the mesh is "interpolated" (see DMPlexInterpolate()), then depth stratum 1 contains the next
3963647867b2SJed Brown   higher dimension, e.g., "edges".
3964647867b2SJed Brown 
3965552f7358SJed Brown   Level: developer
3966552f7358SJed Brown 
3967dc287ab2SVaclav Hapla .seealso: DMPlexGetHeightStratum(), DMPlexGetDepth(), DMPlexGetDepthLabel(), DMPlexGetPointDepth(), DMPlexSymmetrize(), DMPlexInterpolate()
3968552f7358SJed Brown @*/
39690adebc6cSBarry Smith PetscErrorCode DMPlexGetDepthStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end)
39700adebc6cSBarry Smith {
3971aa50250dSMatthew G. Knepley   DMLabel        label;
397263d1a920SMatthew G. Knepley   PetscInt       pStart, pEnd;
3973552f7358SJed Brown   PetscErrorCode ierr;
3974552f7358SJed Brown 
3975552f7358SJed Brown   PetscFunctionBegin;
3976552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
397763d1a920SMatthew G. Knepley   if (start) {PetscValidPointer(start, 3); *start = 0;}
397863d1a920SMatthew G. Knepley   if (end)   {PetscValidPointer(end,   4); *end   = 0;}
3979552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
39800d644c17SKarl Rupp   if (pStart == pEnd) PetscFunctionReturn(0);
398163d1a920SMatthew G. Knepley   if (stratumValue < 0) {
398263d1a920SMatthew G. Knepley     if (start) *start = pStart;
398363d1a920SMatthew G. Knepley     if (end)   *end   = pEnd;
398463d1a920SMatthew G. Knepley     PetscFunctionReturn(0);
3985552f7358SJed Brown   }
3986aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
398763d1a920SMatthew G. Knepley   if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found");
398863d1a920SMatthew G. Knepley   ierr = DMLabelGetStratumBounds(label, stratumValue, start, end);CHKERRQ(ierr);
3989552f7358SJed Brown   PetscFunctionReturn(0);
3990552f7358SJed Brown }
3991552f7358SJed Brown 
3992552f7358SJed Brown /*@
3993552f7358SJed Brown   DMPlexGetHeightStratum - Get the bounds [start, end) for all points at a certain height.
3994552f7358SJed Brown 
3995552f7358SJed Brown   Not Collective
3996552f7358SJed Brown 
3997552f7358SJed Brown   Input Parameters:
3998552f7358SJed Brown + dm           - The DMPlex object
3999552f7358SJed Brown - stratumValue - The requested height
4000552f7358SJed Brown 
4001552f7358SJed Brown   Output Parameters:
4002552f7358SJed Brown + start - The first point at this height
4003552f7358SJed Brown - end   - One beyond the last point at this height
4004552f7358SJed Brown 
4005647867b2SJed Brown   Notes:
4006647867b2SJed Brown   Height indexing is related to topological codimension.  Height stratum 0 contains the highest topological dimension
4007647867b2SJed Brown   points, often called "cells" or "elements".  If the mesh is "interpolated" (see DMPlexInterpolate()), then height
4008647867b2SJed Brown   stratum 1 contains the boundary of these "cells", often called "faces" or "facets".
4009647867b2SJed Brown 
4010552f7358SJed Brown   Level: developer
4011552f7358SJed Brown 
40123dc9a465SVaclav Hapla .seealso: DMPlexGetDepthStratum(), DMPlexGetDepth(), DMPlexGetPointHeight()
4013552f7358SJed Brown @*/
40140adebc6cSBarry Smith PetscErrorCode DMPlexGetHeightStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end)
40150adebc6cSBarry Smith {
4016aa50250dSMatthew G. Knepley   DMLabel        label;
401763d1a920SMatthew G. Knepley   PetscInt       depth, pStart, pEnd;
4018552f7358SJed Brown   PetscErrorCode ierr;
4019552f7358SJed Brown 
4020552f7358SJed Brown   PetscFunctionBegin;
4021552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
402263d1a920SMatthew G. Knepley   if (start) {PetscValidPointer(start, 3); *start = 0;}
402363d1a920SMatthew G. Knepley   if (end)   {PetscValidPointer(end,   4); *end   = 0;}
4024552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
40250d644c17SKarl Rupp   if (pStart == pEnd) PetscFunctionReturn(0);
402663d1a920SMatthew G. Knepley   if (stratumValue < 0) {
402763d1a920SMatthew G. Knepley     if (start) *start = pStart;
402863d1a920SMatthew G. Knepley     if (end)   *end   = pEnd;
402963d1a920SMatthew G. Knepley     PetscFunctionReturn(0);
4030552f7358SJed Brown   }
4031aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
403213903a91SSatish Balay   if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found");
403363d1a920SMatthew G. Knepley   ierr = DMLabelGetNumValues(label, &depth);CHKERRQ(ierr);
403463d1a920SMatthew G. Knepley   ierr = DMLabelGetStratumBounds(label, depth-1-stratumValue, start, end);CHKERRQ(ierr);
4035552f7358SJed Brown   PetscFunctionReturn(0);
4036552f7358SJed Brown }
4037552f7358SJed Brown 
4038ba2698f1SMatthew G. Knepley /*@
4039ba2698f1SMatthew G. Knepley   DMPlexGetPointDepth - Get the depth of a given point
4040ba2698f1SMatthew G. Knepley 
4041ba2698f1SMatthew G. Knepley   Not Collective
4042ba2698f1SMatthew G. Knepley 
4043ba2698f1SMatthew G. Knepley   Input Parameter:
4044ba2698f1SMatthew G. Knepley + dm    - The DMPlex object
4045ba2698f1SMatthew G. Knepley - point - The point
4046ba2698f1SMatthew G. Knepley 
4047ba2698f1SMatthew G. Knepley   Output Parameter:
4048ba2698f1SMatthew G. Knepley . depth - The depth of the point
4049ba2698f1SMatthew G. Knepley 
4050ba2698f1SMatthew G. Knepley   Level: intermediate
4051ba2698f1SMatthew G. Knepley 
40523dc9a465SVaclav Hapla .seealso: DMPlexGetCellType(), DMPlexGetDepthLabel(), DMPlexGetDepth(), DMPlexGetPointHeight()
4053ba2698f1SMatthew G. Knepley @*/
4054ba2698f1SMatthew G. Knepley PetscErrorCode DMPlexGetPointDepth(DM dm, PetscInt point, PetscInt *depth)
4055ba2698f1SMatthew G. Knepley {
4056ba2698f1SMatthew G. Knepley   PetscErrorCode ierr;
4057ba2698f1SMatthew G. Knepley 
4058ba2698f1SMatthew G. Knepley   PetscFunctionBegin;
4059ba2698f1SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
406040a2aa30SMatthew G. Knepley   PetscValidIntPointer(depth, 3);
4061ba2698f1SMatthew G. Knepley   ierr = DMLabelGetValue(dm->depthLabel, point, depth);CHKERRQ(ierr);
4062ba2698f1SMatthew G. Knepley   PetscFunctionReturn(0);
4063ba2698f1SMatthew G. Knepley }
4064ba2698f1SMatthew G. Knepley 
4065ba2698f1SMatthew G. Knepley /*@
40660c0a32dcSVaclav Hapla   DMPlexGetPointHeight - Get the height of a given point
40670c0a32dcSVaclav Hapla 
40680c0a32dcSVaclav Hapla   Not Collective
40690c0a32dcSVaclav Hapla 
40700c0a32dcSVaclav Hapla   Input Parameter:
40710c0a32dcSVaclav Hapla + dm    - The DMPlex object
40720c0a32dcSVaclav Hapla - point - The point
40730c0a32dcSVaclav Hapla 
40740c0a32dcSVaclav Hapla   Output Parameter:
40750c0a32dcSVaclav Hapla . height - The height of the point
40760c0a32dcSVaclav Hapla 
40770c0a32dcSVaclav Hapla   Level: intermediate
40780c0a32dcSVaclav Hapla 
40793dc9a465SVaclav Hapla .seealso: DMPlexGetCellType(), DMPlexGetDepthLabel(), DMPlexGetDepth(), DMPlexGetPointDepth()
40800c0a32dcSVaclav Hapla @*/
40810c0a32dcSVaclav Hapla PetscErrorCode DMPlexGetPointHeight(DM dm, PetscInt point, PetscInt *height)
40820c0a32dcSVaclav Hapla {
40830c0a32dcSVaclav Hapla   PetscInt       n, pDepth;
40840c0a32dcSVaclav Hapla   PetscErrorCode ierr;
40850c0a32dcSVaclav Hapla 
40860c0a32dcSVaclav Hapla   PetscFunctionBegin;
40870c0a32dcSVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
40880c0a32dcSVaclav Hapla   PetscValidIntPointer(height, 3);
40890c0a32dcSVaclav Hapla   ierr = DMLabelGetNumValues(dm->depthLabel, &n);CHKERRQ(ierr);
40900c0a32dcSVaclav Hapla   ierr = DMLabelGetValue(dm->depthLabel, point, &pDepth);CHKERRQ(ierr);
40910c0a32dcSVaclav Hapla   *height = n - 1 - pDepth;  /* DAG depth is n-1 */
40920c0a32dcSVaclav Hapla   PetscFunctionReturn(0);
40930c0a32dcSVaclav Hapla }
40940c0a32dcSVaclav Hapla 
40950c0a32dcSVaclav Hapla /*@
4096ba2698f1SMatthew G. Knepley   DMPlexGetCellTypeLabel - Get the DMLabel recording the polytope type of each cell
4097ba2698f1SMatthew G. Knepley 
4098ba2698f1SMatthew G. Knepley   Not Collective
4099ba2698f1SMatthew G. Knepley 
4100ba2698f1SMatthew G. Knepley   Input Parameter:
4101ba2698f1SMatthew G. Knepley . dm - The DMPlex object
4102ba2698f1SMatthew G. Knepley 
4103ba2698f1SMatthew G. Knepley   Output Parameter:
4104ba2698f1SMatthew G. Knepley . celltypeLabel - The DMLabel recording cell polytope type
4105ba2698f1SMatthew G. Knepley 
4106412e9a14SMatthew G. Knepley   Note: This function will trigger automatica computation of cell types. This can be disabled by calling
4107412e9a14SMatthew G. Knepley   DMCreateLabel(dm, "celltype") beforehand.
4108412e9a14SMatthew G. Knepley 
4109ba2698f1SMatthew G. Knepley   Level: developer
4110ba2698f1SMatthew G. Knepley 
4111dc287ab2SVaclav Hapla .seealso: DMPlexGetCellType(), DMPlexGetDepthLabel(), DMCreateLabel()
4112ba2698f1SMatthew G. Knepley @*/
4113ba2698f1SMatthew G. Knepley PetscErrorCode DMPlexGetCellTypeLabel(DM dm, DMLabel *celltypeLabel)
4114ba2698f1SMatthew G. Knepley {
4115ba2698f1SMatthew G. Knepley   PetscErrorCode ierr;
4116ba2698f1SMatthew G. Knepley 
4117ba2698f1SMatthew G. Knepley   PetscFunctionBegin;
4118ba2698f1SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4119ba2698f1SMatthew G. Knepley   PetscValidPointer(celltypeLabel, 2);
4120ba2698f1SMatthew G. Knepley   if (!dm->celltypeLabel) {ierr = DMPlexComputeCellTypes(dm);CHKERRQ(ierr);}
4121ba2698f1SMatthew G. Knepley   *celltypeLabel = dm->celltypeLabel;
4122ba2698f1SMatthew G. Knepley   PetscFunctionReturn(0);
4123ba2698f1SMatthew G. Knepley }
4124ba2698f1SMatthew G. Knepley 
4125ba2698f1SMatthew G. Knepley /*@
4126ba2698f1SMatthew G. Knepley   DMPlexGetCellType - Get the polytope type of a given cell
4127ba2698f1SMatthew G. Knepley 
4128ba2698f1SMatthew G. Knepley   Not Collective
4129ba2698f1SMatthew G. Knepley 
4130ba2698f1SMatthew G. Knepley   Input Parameter:
4131ba2698f1SMatthew G. Knepley + dm   - The DMPlex object
4132ba2698f1SMatthew G. Knepley - cell - The cell
4133ba2698f1SMatthew G. Knepley 
4134ba2698f1SMatthew G. Knepley   Output Parameter:
4135ba2698f1SMatthew G. Knepley . celltype - The polytope type of the cell
4136ba2698f1SMatthew G. Knepley 
4137ba2698f1SMatthew G. Knepley   Level: intermediate
4138ba2698f1SMatthew G. Knepley 
4139ba2698f1SMatthew G. Knepley .seealso: DMPlexGetCellTypeLabel(), DMPlexGetDepthLabel(), DMPlexGetDepth()
4140ba2698f1SMatthew G. Knepley @*/
4141ba2698f1SMatthew G. Knepley PetscErrorCode DMPlexGetCellType(DM dm, PetscInt cell, DMPolytopeType *celltype)
4142ba2698f1SMatthew G. Knepley {
4143ba2698f1SMatthew G. Knepley   DMLabel        label;
4144ba2698f1SMatthew G. Knepley   PetscInt       ct;
4145ba2698f1SMatthew G. Knepley   PetscErrorCode ierr;
4146ba2698f1SMatthew G. Knepley 
4147ba2698f1SMatthew G. Knepley   PetscFunctionBegin;
4148ba2698f1SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4149ba2698f1SMatthew G. Knepley   PetscValidPointer(celltype, 3);
4150ba2698f1SMatthew G. Knepley   ierr = DMPlexGetCellTypeLabel(dm, &label);CHKERRQ(ierr);
4151ba2698f1SMatthew G. Knepley   ierr = DMLabelGetValue(label, cell, &ct);CHKERRQ(ierr);
41524a7ee7d0SMatthew G. Knepley   if (ct < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Cell %D has not been assigned a cell type", cell);
4153ba2698f1SMatthew G. Knepley   *celltype = (DMPolytopeType) ct;
4154ba2698f1SMatthew G. Knepley   PetscFunctionReturn(0);
4155ba2698f1SMatthew G. Knepley }
4156ba2698f1SMatthew G. Knepley 
4157412e9a14SMatthew G. Knepley /*@
4158412e9a14SMatthew G. Knepley   DMPlexSetCellType - Set the polytope type of a given cell
4159412e9a14SMatthew G. Knepley 
4160412e9a14SMatthew G. Knepley   Not Collective
4161412e9a14SMatthew G. Knepley 
4162412e9a14SMatthew G. Knepley   Input Parameters:
4163412e9a14SMatthew G. Knepley + dm   - The DMPlex object
4164412e9a14SMatthew G. Knepley . cell - The cell
4165412e9a14SMatthew G. Knepley - celltype - The polytope type of the cell
4166412e9a14SMatthew G. Knepley 
4167412e9a14SMatthew G. Knepley   Note: By default, cell types will be automatically computed using DMPlexComputeCellTypes() before this function
4168412e9a14SMatthew G. Knepley   is executed. This function will override the computed type. However, if automatic classification will not succeed
4169412e9a14SMatthew G. Knepley   and a user wants to manually specify all types, the classification must be disabled by calling
4170412e9a14SMatthew G. Knepley   DMCreaateLabel(dm, "celltype") before getting or setting any cell types.
4171412e9a14SMatthew G. Knepley 
4172412e9a14SMatthew G. Knepley   Level: advanced
4173412e9a14SMatthew G. Knepley 
4174412e9a14SMatthew G. Knepley .seealso: DMPlexGetCellTypeLabel(), DMPlexGetDepthLabel(), DMPlexGetDepth(), DMPlexComputeCellTypes(), DMCreateLabel()
4175412e9a14SMatthew G. Knepley @*/
4176412e9a14SMatthew G. Knepley PetscErrorCode DMPlexSetCellType(DM dm, PetscInt cell, DMPolytopeType celltype)
4177412e9a14SMatthew G. Knepley {
4178412e9a14SMatthew G. Knepley   DMLabel        label;
4179412e9a14SMatthew G. Knepley   PetscErrorCode ierr;
4180412e9a14SMatthew G. Knepley 
4181412e9a14SMatthew G. Knepley   PetscFunctionBegin;
4182412e9a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4183412e9a14SMatthew G. Knepley   ierr = DMPlexGetCellTypeLabel(dm, &label);CHKERRQ(ierr);
4184412e9a14SMatthew G. Knepley   ierr = DMLabelSetValue(label, cell, celltype);CHKERRQ(ierr);
4185412e9a14SMatthew G. Knepley   PetscFunctionReturn(0);
4186412e9a14SMatthew G. Knepley }
4187412e9a14SMatthew G. Knepley 
41880adebc6cSBarry Smith PetscErrorCode DMCreateCoordinateDM_Plex(DM dm, DM *cdm)
41890adebc6cSBarry Smith {
4190efe440bfSMatthew G. Knepley   PetscSection   section, s;
4191efe440bfSMatthew G. Knepley   Mat            m;
41923e922f36SToby Isaac   PetscInt       maxHeight;
4193552f7358SJed Brown   PetscErrorCode ierr;
4194552f7358SJed Brown 
4195552f7358SJed Brown   PetscFunctionBegin;
419638221697SMatthew G. Knepley   ierr = DMClone(dm, cdm);CHKERRQ(ierr);
41973e922f36SToby Isaac   ierr = DMPlexGetMaxProjectionHeight(dm, &maxHeight);CHKERRQ(ierr);
41983e922f36SToby Isaac   ierr = DMPlexSetMaxProjectionHeight(*cdm, maxHeight);CHKERRQ(ierr);
419982f516ccSBarry Smith   ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &section);CHKERRQ(ierr);
420092fd8e1eSJed Brown   ierr = DMSetLocalSection(*cdm, section);CHKERRQ(ierr);
42011d799100SJed Brown   ierr = PetscSectionDestroy(&section);CHKERRQ(ierr);
4202efe440bfSMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &s);CHKERRQ(ierr);
4203efe440bfSMatthew G. Knepley   ierr = MatCreate(PETSC_COMM_SELF, &m);CHKERRQ(ierr);
4204efe440bfSMatthew G. Knepley   ierr = DMSetDefaultConstraints(*cdm, s, m);CHKERRQ(ierr);
4205efe440bfSMatthew G. Knepley   ierr = PetscSectionDestroy(&s);CHKERRQ(ierr);
4206efe440bfSMatthew G. Knepley   ierr = MatDestroy(&m);CHKERRQ(ierr);
42078f4c458bSMatthew G. Knepley 
42088f4c458bSMatthew G. Knepley   ierr = DMSetNumFields(*cdm, 1);CHKERRQ(ierr);
42098f4c458bSMatthew G. Knepley   ierr = DMCreateDS(*cdm);CHKERRQ(ierr);
4210552f7358SJed Brown   PetscFunctionReturn(0);
4211552f7358SJed Brown }
4212552f7358SJed Brown 
4213f19dbd58SToby Isaac PetscErrorCode DMCreateCoordinateField_Plex(DM dm, DMField *field)
4214f19dbd58SToby Isaac {
4215f19dbd58SToby Isaac   Vec            coordsLocal;
4216f19dbd58SToby Isaac   DM             coordsDM;
4217f19dbd58SToby Isaac   PetscErrorCode ierr;
4218f19dbd58SToby Isaac 
4219f19dbd58SToby Isaac   PetscFunctionBegin;
4220f19dbd58SToby Isaac   *field = NULL;
4221f19dbd58SToby Isaac   ierr = DMGetCoordinatesLocal(dm,&coordsLocal);CHKERRQ(ierr);
4222f19dbd58SToby Isaac   ierr = DMGetCoordinateDM(dm,&coordsDM);CHKERRQ(ierr);
4223f19dbd58SToby Isaac   if (coordsLocal && coordsDM) {
4224f19dbd58SToby Isaac     ierr = DMFieldCreateDS(coordsDM, 0, coordsLocal, field);CHKERRQ(ierr);
4225f19dbd58SToby Isaac   }
4226f19dbd58SToby Isaac   PetscFunctionReturn(0);
4227f19dbd58SToby Isaac }
4228f19dbd58SToby Isaac 
42297cd05799SMatthew G. Knepley /*@C
42307cd05799SMatthew G. Knepley   DMPlexGetConeSection - Return a section which describes the layout of cone data
42317cd05799SMatthew G. Knepley 
42327cd05799SMatthew G. Knepley   Not Collective
42337cd05799SMatthew G. Knepley 
42347cd05799SMatthew G. Knepley   Input Parameters:
42357cd05799SMatthew G. Knepley . dm        - The DMPlex object
42367cd05799SMatthew G. Knepley 
42377cd05799SMatthew G. Knepley   Output Parameter:
42387cd05799SMatthew G. Knepley . section - The PetscSection object
42397cd05799SMatthew G. Knepley 
42407cd05799SMatthew G. Knepley   Level: developer
42417cd05799SMatthew G. Knepley 
42427cd05799SMatthew G. Knepley .seealso: DMPlexGetSupportSection(), DMPlexGetCones(), DMPlexGetConeOrientations()
42437cd05799SMatthew G. Knepley @*/
42440adebc6cSBarry Smith PetscErrorCode DMPlexGetConeSection(DM dm, PetscSection *section)
42450adebc6cSBarry Smith {
4246552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
4247552f7358SJed Brown 
4248552f7358SJed Brown   PetscFunctionBegin;
4249552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4250552f7358SJed Brown   if (section) *section = mesh->coneSection;
4251552f7358SJed Brown   PetscFunctionReturn(0);
4252552f7358SJed Brown }
4253552f7358SJed Brown 
42547cd05799SMatthew G. Knepley /*@C
42557cd05799SMatthew G. Knepley   DMPlexGetSupportSection - Return a section which describes the layout of support data
42567cd05799SMatthew G. Knepley 
42577cd05799SMatthew G. Knepley   Not Collective
42587cd05799SMatthew G. Knepley 
42597cd05799SMatthew G. Knepley   Input Parameters:
42607cd05799SMatthew G. Knepley . dm        - The DMPlex object
42617cd05799SMatthew G. Knepley 
42627cd05799SMatthew G. Knepley   Output Parameter:
42637cd05799SMatthew G. Knepley . section - The PetscSection object
42647cd05799SMatthew G. Knepley 
42657cd05799SMatthew G. Knepley   Level: developer
42667cd05799SMatthew G. Knepley 
42677cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
42687cd05799SMatthew G. Knepley @*/
42698cb4d582SMatthew G. Knepley PetscErrorCode DMPlexGetSupportSection(DM dm, PetscSection *section)
42708cb4d582SMatthew G. Knepley {
42718cb4d582SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
42728cb4d582SMatthew G. Knepley 
42738cb4d582SMatthew G. Knepley   PetscFunctionBegin;
42748cb4d582SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42758cb4d582SMatthew G. Knepley   if (section) *section = mesh->supportSection;
42768cb4d582SMatthew G. Knepley   PetscFunctionReturn(0);
42778cb4d582SMatthew G. Knepley }
42788cb4d582SMatthew G. Knepley 
42797cd05799SMatthew G. Knepley /*@C
42807cd05799SMatthew G. Knepley   DMPlexGetCones - Return cone data
42817cd05799SMatthew G. Knepley 
42827cd05799SMatthew G. Knepley   Not Collective
42837cd05799SMatthew G. Knepley 
42847cd05799SMatthew G. Knepley   Input Parameters:
42857cd05799SMatthew G. Knepley . dm        - The DMPlex object
42867cd05799SMatthew G. Knepley 
42877cd05799SMatthew G. Knepley   Output Parameter:
42887cd05799SMatthew G. Knepley . cones - The cone for each point
42897cd05799SMatthew G. Knepley 
42907cd05799SMatthew G. Knepley   Level: developer
42917cd05799SMatthew G. Knepley 
42927cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
42937cd05799SMatthew G. Knepley @*/
4294a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetCones(DM dm, PetscInt *cones[])
4295a6dfd86eSKarl Rupp {
4296552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
4297552f7358SJed Brown 
4298552f7358SJed Brown   PetscFunctionBegin;
4299552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4300552f7358SJed Brown   if (cones) *cones = mesh->cones;
4301552f7358SJed Brown   PetscFunctionReturn(0);
4302552f7358SJed Brown }
4303552f7358SJed Brown 
43047cd05799SMatthew G. Knepley /*@C
43057cd05799SMatthew G. Knepley   DMPlexGetConeOrientations - Return cone orientation data
43067cd05799SMatthew G. Knepley 
43077cd05799SMatthew G. Knepley   Not Collective
43087cd05799SMatthew G. Knepley 
43097cd05799SMatthew G. Knepley   Input Parameters:
43107cd05799SMatthew G. Knepley . dm        - The DMPlex object
43117cd05799SMatthew G. Knepley 
43127cd05799SMatthew G. Knepley   Output Parameter:
43137cd05799SMatthew G. Knepley . coneOrientations - The cone orientation for each point
43147cd05799SMatthew G. Knepley 
43157cd05799SMatthew G. Knepley   Level: developer
43167cd05799SMatthew G. Knepley 
43177cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
43187cd05799SMatthew G. Knepley @*/
4319a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetConeOrientations(DM dm, PetscInt *coneOrientations[])
4320a6dfd86eSKarl Rupp {
4321552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
4322552f7358SJed Brown 
4323552f7358SJed Brown   PetscFunctionBegin;
4324552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4325552f7358SJed Brown   if (coneOrientations) *coneOrientations = mesh->coneOrientations;
4326552f7358SJed Brown   PetscFunctionReturn(0);
4327552f7358SJed Brown }
4328552f7358SJed Brown 
4329552f7358SJed Brown /******************************** FEM Support **********************************/
4330552f7358SJed Brown 
43319e8305c2SJed Brown /*
43329e8305c2SJed Brown  Returns number of components and tensor degree for the field.  For interpolated meshes, line should be a point
43339e8305c2SJed Brown  representing a line in the section.
43349e8305c2SJed Brown */
43359e8305c2SJed Brown static PetscErrorCode PetscSectionFieldGetTensorDegree_Private(PetscSection section,PetscInt field,PetscInt line,PetscBool vertexchart,PetscInt *Nc,PetscInt *k)
43369e8305c2SJed Brown {
43379e8305c2SJed Brown   PetscErrorCode ierr;
43389e8305c2SJed Brown 
43399e8305c2SJed Brown   PetscFunctionBeginHot;
43409e8305c2SJed Brown   ierr = PetscSectionGetFieldComponents(section, field, Nc);CHKERRQ(ierr);
4341a433471fSStefano Zampini   if (line < 0) {
4342a433471fSStefano Zampini     *k = 0;
4343a433471fSStefano Zampini     *Nc = 0;
4344a433471fSStefano Zampini   } else if (vertexchart) {            /* If we only have a vertex chart, we must have degree k=1 */
43459e8305c2SJed Brown     *k = 1;
43469e8305c2SJed Brown   } else {                      /* Assume the full interpolated mesh is in the chart; lines in particular */
43479e8305c2SJed Brown     /* An order k SEM disc has k-1 dofs on an edge */
43489e8305c2SJed Brown     ierr = PetscSectionGetFieldDof(section, line, field, k);CHKERRQ(ierr);
43499e8305c2SJed Brown     *k = *k / *Nc + 1;
43509e8305c2SJed Brown   }
43519e8305c2SJed Brown   PetscFunctionReturn(0);
43529e8305c2SJed Brown }
43539e8305c2SJed Brown 
4354a4355906SMatthew Knepley /*@
4355bc1eb3faSJed Brown 
4356bc1eb3faSJed Brown   DMPlexSetClosurePermutationTensor - Create a permutation from the default (BFS) point ordering in the closure, to a
4357bc1eb3faSJed Brown   lexicographic ordering over the tensor product cell (i.e., line, quad, hex, etc.), and set this permutation in the
43581bb6d2a8SBarry Smith   section provided (or the section of the DM).
4359a4355906SMatthew Knepley 
4360a4355906SMatthew Knepley   Input Parameters:
4361a4355906SMatthew Knepley + dm      - The DM
4362a4355906SMatthew Knepley . point   - Either a cell (highest dim point) or an edge (dim 1 point), or PETSC_DETERMINE
4363a4355906SMatthew Knepley - section - The PetscSection to reorder, or NULL for the default section
4364a4355906SMatthew Knepley 
4365a4355906SMatthew Knepley   Note: The point is used to determine the number of dofs/field on an edge. For SEM, this is related to the polynomial
4366a4355906SMatthew Knepley   degree of the basis.
4367a4355906SMatthew Knepley 
4368bc1eb3faSJed Brown   Example:
4369bc1eb3faSJed Brown   A typical interpolated single-quad mesh might order points as
4370bc1eb3faSJed Brown .vb
4371bc1eb3faSJed Brown   [c0, v1, v2, v3, v4, e5, e6, e7, e8]
4372bc1eb3faSJed Brown 
4373bc1eb3faSJed Brown   v4 -- e6 -- v3
4374bc1eb3faSJed Brown   |           |
4375bc1eb3faSJed Brown   e7    c0    e8
4376bc1eb3faSJed Brown   |           |
4377bc1eb3faSJed Brown   v1 -- e5 -- v2
4378bc1eb3faSJed Brown .ve
4379bc1eb3faSJed Brown 
4380bc1eb3faSJed Brown   (There is no significance to the ordering described here.)  The default section for a Q3 quad might typically assign
4381bc1eb3faSJed Brown   dofs in the order of points, e.g.,
4382bc1eb3faSJed Brown .vb
4383bc1eb3faSJed Brown     c0 -> [0,1,2,3]
4384bc1eb3faSJed Brown     v1 -> [4]
4385bc1eb3faSJed Brown     ...
4386bc1eb3faSJed Brown     e5 -> [8, 9]
4387bc1eb3faSJed Brown .ve
4388bc1eb3faSJed Brown 
4389bc1eb3faSJed Brown   which corresponds to the dofs
4390bc1eb3faSJed Brown .vb
4391bc1eb3faSJed Brown     6   10  11  7
4392bc1eb3faSJed Brown     13  2   3   15
4393bc1eb3faSJed Brown     12  0   1   14
4394bc1eb3faSJed Brown     4   8   9   5
4395bc1eb3faSJed Brown .ve
4396bc1eb3faSJed Brown 
4397bc1eb3faSJed Brown   The closure in BFS ordering works through height strata (cells, edges, vertices) to produce the ordering
4398bc1eb3faSJed Brown .vb
4399bc1eb3faSJed Brown   0 1 2 3 8 9 14 15 11 10 13 12 4 5 7 6
4400bc1eb3faSJed Brown .ve
4401bc1eb3faSJed Brown 
4402bc1eb3faSJed Brown   After calling DMPlexSetClosurePermutationTensor(), the closure will be ordered lexicographically,
4403bc1eb3faSJed Brown .vb
4404bc1eb3faSJed Brown    4 8 9 5 12 0 1 14 13 2 3 15 6 10 11 7
4405bc1eb3faSJed Brown .ve
4406bc1eb3faSJed Brown 
4407a4355906SMatthew Knepley   Level: developer
4408a4355906SMatthew Knepley 
44099df75925SJed Brown .seealso: DMGetLocalSection(), PetscSectionSetClosurePermutation(), DMSetGlobalSection()
4410a4355906SMatthew Knepley @*/
4411bc1eb3faSJed Brown PetscErrorCode DMPlexSetClosurePermutationTensor(DM dm, PetscInt point, PetscSection section)
44123194fc30SMatthew G. Knepley {
44137391a63aSMatthew G. Knepley   DMLabel        label;
4414bb197d40SJed Brown   PetscInt       dim, depth = -1, eStart = -1, Nf;
44159e8305c2SJed Brown   PetscBool      vertexchart;
44163194fc30SMatthew G. Knepley   PetscErrorCode ierr;
44173194fc30SMatthew G. Knepley 
44183194fc30SMatthew G. Knepley   PetscFunctionBegin;
44193194fc30SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
4420a433471fSStefano Zampini   if (dim < 1) PetscFunctionReturn(0);
4421a433471fSStefano Zampini   if (point < 0) {
4422a433471fSStefano Zampini     PetscInt sStart,sEnd;
4423a433471fSStefano Zampini 
4424a433471fSStefano Zampini     ierr = DMPlexGetDepthStratum(dm, 1, &sStart, &sEnd);CHKERRQ(ierr);
4425a433471fSStefano Zampini     point = sEnd-sStart ? sStart : point;
4426a433471fSStefano Zampini   }
44277391a63aSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
4428a433471fSStefano Zampini   if (point >= 0) { ierr = DMLabelGetValue(label, point, &depth);CHKERRQ(ierr); }
4429a433471fSStefano Zampini   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
44307391a63aSMatthew G. Knepley   if (depth == 1) {eStart = point;}
44317391a63aSMatthew G. Knepley   else if  (depth == dim) {
44327391a63aSMatthew G. Knepley     const PetscInt *cone;
44337391a63aSMatthew G. Knepley 
44347391a63aSMatthew G. Knepley     ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
4435d4e6627bSStefano Zampini     if (dim == 2) eStart = cone[0];
4436d4e6627bSStefano Zampini     else if (dim == 3) {
4437d4e6627bSStefano Zampini       const PetscInt *cone2;
4438d4e6627bSStefano Zampini       ierr = DMPlexGetCone(dm, cone[0], &cone2);CHKERRQ(ierr);
4439d4e6627bSStefano Zampini       eStart = cone2[0];
4440d4e6627bSStefano Zampini     } else SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Point %D of depth %D cannot be used to bootstrap spectral ordering for dim %D", point, depth, dim);
4441a433471fSStefano Zampini   } else if (depth >= 0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Point %D of depth %D cannot be used to bootstrap spectral ordering for dim %D", point, depth, dim);
44429e8305c2SJed Brown   {                             /* Determine whether the chart covers all points or just vertices. */
44439e8305c2SJed Brown     PetscInt pStart,pEnd,cStart,cEnd;
44449e8305c2SJed Brown     ierr = DMPlexGetDepthStratum(dm,0,&pStart,&pEnd);CHKERRQ(ierr);
44459e8305c2SJed Brown     ierr = PetscSectionGetChart(section,&cStart,&cEnd);CHKERRQ(ierr);
44469e8305c2SJed Brown     if (pStart == cStart && pEnd == cEnd) vertexchart = PETSC_TRUE; /* Just vertices */
44479e8305c2SJed Brown     else vertexchart = PETSC_FALSE;                                 /* Assume all interpolated points are in chart */
44489e8305c2SJed Brown   }
44493194fc30SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
4450bb197d40SJed Brown   for (PetscInt d=1; d<=dim; d++) {
4451bb197d40SJed Brown     PetscInt k, f, Nc, c, i, j, size = 0, offset = 0, foffset = 0;
4452bb197d40SJed Brown     PetscInt *perm;
4453bb197d40SJed Brown 
44543194fc30SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
44559e8305c2SJed Brown       ierr = PetscSectionFieldGetTensorDegree_Private(section,f,eStart,vertexchart,&Nc,&k);CHKERRQ(ierr);
4456bb197d40SJed Brown       size += PetscPowInt(k+1, d)*Nc;
44573194fc30SMatthew G. Knepley     }
44583194fc30SMatthew G. Knepley     ierr = PetscMalloc1(size, &perm);CHKERRQ(ierr);
44593194fc30SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
4460bb197d40SJed Brown       switch (d) {
4461babf31e0SJed Brown       case 1:
44629e8305c2SJed Brown         ierr = PetscSectionFieldGetTensorDegree_Private(section,f,eStart,vertexchart,&Nc,&k);CHKERRQ(ierr);
4463babf31e0SJed Brown         /*
4464babf31e0SJed Brown          Original ordering is [ edge of length k-1; vtx0; vtx1 ]
4465babf31e0SJed Brown          We want              [ vtx0; edge of length k-1; vtx1 ]
4466babf31e0SJed Brown          */
4467babf31e0SJed Brown         for (c=0; c<Nc; c++,offset++) perm[offset] = (k-1)*Nc + c + foffset;
4468babf31e0SJed Brown         for (i=0; i<k-1; i++) for (c=0; c<Nc; c++,offset++) perm[offset] = i*Nc + c + foffset;
4469babf31e0SJed Brown         for (c=0; c<Nc; c++,offset++) perm[offset] = k*Nc + c + foffset;
4470babf31e0SJed Brown         foffset = offset;
4471babf31e0SJed Brown         break;
447289eabcffSMatthew G. Knepley       case 2:
44733194fc30SMatthew G. Knepley         /* The original quad closure is oriented clockwise, {f, e_b, e_r, e_t, e_l, v_lb, v_rb, v_tr, v_tl} */
44749e8305c2SJed Brown         ierr = PetscSectionFieldGetTensorDegree_Private(section,f,eStart,vertexchart,&Nc,&k);CHKERRQ(ierr);
44753194fc30SMatthew G. Knepley         /* The SEM order is
44763194fc30SMatthew G. Knepley 
44773194fc30SMatthew G. Knepley          v_lb, {e_b}, v_rb,
447889eabcffSMatthew G. Knepley          e^{(k-1)-i}_l, {f^{i*(k-1)}}, e^i_r,
44793194fc30SMatthew G. Knepley          v_lt, reverse {e_t}, v_rt
44803194fc30SMatthew G. Knepley          */
44813194fc30SMatthew G. Knepley         {
44823194fc30SMatthew G. Knepley           const PetscInt of   = 0;
44833194fc30SMatthew G. Knepley           const PetscInt oeb  = of   + PetscSqr(k-1);
44843194fc30SMatthew G. Knepley           const PetscInt oer  = oeb  + (k-1);
44853194fc30SMatthew G. Knepley           const PetscInt oet  = oer  + (k-1);
44863194fc30SMatthew G. Knepley           const PetscInt oel  = oet  + (k-1);
44873194fc30SMatthew G. Knepley           const PetscInt ovlb = oel  + (k-1);
44883194fc30SMatthew G. Knepley           const PetscInt ovrb = ovlb + 1;
44893194fc30SMatthew G. Knepley           const PetscInt ovrt = ovrb + 1;
44903194fc30SMatthew G. Knepley           const PetscInt ovlt = ovrt + 1;
44913194fc30SMatthew G. Knepley           PetscInt       o;
44923194fc30SMatthew G. Knepley 
44933194fc30SMatthew G. Knepley           /* bottom */
44943194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlb*Nc + c + foffset;
44953194fc30SMatthew G. Knepley           for (o = oeb; o < oer; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
44963194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrb*Nc + c + foffset;
44973194fc30SMatthew G. Knepley           /* middle */
44983194fc30SMatthew G. Knepley           for (i = 0; i < k-1; ++i) {
44993194fc30SMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oel+(k-2)-i)*Nc + c + foffset;
45003194fc30SMatthew G. Knepley             for (o = of+(k-1)*i; o < of+(k-1)*(i+1); ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
45013194fc30SMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oer+i)*Nc + c + foffset;
45023194fc30SMatthew G. Knepley           }
45033194fc30SMatthew G. Knepley           /* top */
45043194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlt*Nc + c + foffset;
45053194fc30SMatthew G. Knepley           for (o = oel-1; o >= oet; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
45063194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrt*Nc + c + foffset;
45073194fc30SMatthew G. Knepley           foffset = offset;
45083194fc30SMatthew G. Knepley         }
450989eabcffSMatthew G. Knepley         break;
451089eabcffSMatthew G. Knepley       case 3:
451189eabcffSMatthew G. Knepley         /* The original hex closure is
451289eabcffSMatthew G. Knepley 
451389eabcffSMatthew G. Knepley          {c,
451489eabcffSMatthew G. Knepley          f_b, f_t, f_f, f_b, f_r, f_l,
451589eabcffSMatthew G. Knepley          e_bl, e_bb, e_br, e_bf,  e_tf, e_tr, e_tb, e_tl,  e_rf, e_lf, e_lb, e_rb,
451689eabcffSMatthew G. Knepley          v_blf, v_blb, v_brb, v_brf, v_tlf, v_trf, v_trb, v_tlb}
451789eabcffSMatthew G. Knepley          */
45189e8305c2SJed Brown         ierr = PetscSectionFieldGetTensorDegree_Private(section,f,eStart,vertexchart,&Nc,&k);CHKERRQ(ierr);
451989eabcffSMatthew G. Knepley         /* The SEM order is
452089eabcffSMatthew G. Knepley          Bottom Slice
452189eabcffSMatthew G. Knepley          v_blf, {e^{(k-1)-n}_bf}, v_brf,
452289eabcffSMatthew G. Knepley          e^{i}_bl, f^{n*(k-1)+(k-1)-i}_b, e^{(k-1)-i}_br,
452389eabcffSMatthew G. Knepley          v_blb, {e_bb}, v_brb,
452489eabcffSMatthew G. Knepley 
452589eabcffSMatthew G. Knepley          Middle Slice (j)
452689eabcffSMatthew G. Knepley          {e^{(k-1)-j}_lf}, {f^{j*(k-1)+n}_f}, e^j_rf,
452789eabcffSMatthew G. Knepley          f^{i*(k-1)+j}_l, {c^{(j*(k-1) + i)*(k-1)+n}_t}, f^{j*(k-1)+i}_r,
452889eabcffSMatthew G. Knepley          e^j_lb, {f^{j*(k-1)+(k-1)-n}_b}, e^{(k-1)-j}_rb,
452989eabcffSMatthew G. Knepley 
453089eabcffSMatthew G. Knepley          Top Slice
453189eabcffSMatthew G. Knepley          v_tlf, {e_tf}, v_trf,
453289eabcffSMatthew G. Knepley          e^{(k-1)-i}_tl, {f^{i*(k-1)}_t}, e^{i}_tr,
453389eabcffSMatthew G. Knepley          v_tlb, {e^{(k-1)-n}_tb}, v_trb,
453489eabcffSMatthew G. Knepley          */
453589eabcffSMatthew G. Knepley         {
453689eabcffSMatthew G. Knepley           const PetscInt oc    = 0;
453789eabcffSMatthew G. Knepley           const PetscInt ofb   = oc    + PetscSqr(k-1)*(k-1);
453889eabcffSMatthew G. Knepley           const PetscInt oft   = ofb   + PetscSqr(k-1);
453989eabcffSMatthew G. Knepley           const PetscInt off   = oft   + PetscSqr(k-1);
454089eabcffSMatthew G. Knepley           const PetscInt ofk   = off   + PetscSqr(k-1);
454189eabcffSMatthew G. Knepley           const PetscInt ofr   = ofk   + PetscSqr(k-1);
454289eabcffSMatthew G. Knepley           const PetscInt ofl   = ofr   + PetscSqr(k-1);
454389eabcffSMatthew G. Knepley           const PetscInt oebl  = ofl   + PetscSqr(k-1);
454489eabcffSMatthew G. Knepley           const PetscInt oebb  = oebl  + (k-1);
454589eabcffSMatthew G. Knepley           const PetscInt oebr  = oebb  + (k-1);
454689eabcffSMatthew G. Knepley           const PetscInt oebf  = oebr  + (k-1);
454789eabcffSMatthew G. Knepley           const PetscInt oetf  = oebf  + (k-1);
454889eabcffSMatthew G. Knepley           const PetscInt oetr  = oetf  + (k-1);
454989eabcffSMatthew G. Knepley           const PetscInt oetb  = oetr  + (k-1);
455089eabcffSMatthew G. Knepley           const PetscInt oetl  = oetb  + (k-1);
455189eabcffSMatthew G. Knepley           const PetscInt oerf  = oetl  + (k-1);
455289eabcffSMatthew G. Knepley           const PetscInt oelf  = oerf  + (k-1);
455389eabcffSMatthew G. Knepley           const PetscInt oelb  = oelf  + (k-1);
455489eabcffSMatthew G. Knepley           const PetscInt oerb  = oelb  + (k-1);
455589eabcffSMatthew G. Knepley           const PetscInt ovblf = oerb  + (k-1);
455689eabcffSMatthew G. Knepley           const PetscInt ovblb = ovblf + 1;
455789eabcffSMatthew G. Knepley           const PetscInt ovbrb = ovblb + 1;
455889eabcffSMatthew G. Knepley           const PetscInt ovbrf = ovbrb + 1;
455989eabcffSMatthew G. Knepley           const PetscInt ovtlf = ovbrf + 1;
456089eabcffSMatthew G. Knepley           const PetscInt ovtrf = ovtlf + 1;
456189eabcffSMatthew G. Knepley           const PetscInt ovtrb = ovtrf + 1;
456289eabcffSMatthew G. Knepley           const PetscInt ovtlb = ovtrb + 1;
456389eabcffSMatthew G. Knepley           PetscInt       o, n;
456489eabcffSMatthew G. Knepley 
456589eabcffSMatthew G. Knepley           /* Bottom Slice */
456689eabcffSMatthew G. Knepley           /*   bottom */
456789eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblf*Nc + c + foffset;
456889eabcffSMatthew G. Knepley           for (o = oetf-1; o >= oebf; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
456989eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrf*Nc + c + foffset;
457089eabcffSMatthew G. Knepley           /*   middle */
457189eabcffSMatthew G. Knepley           for (i = 0; i < k-1; ++i) {
457289eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebl+i)*Nc + c + foffset;
4573316b7f87SMax Rietmann             for (n = 0; n < k-1; ++n) {o = ofb+n*(k-1)+i; for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;}
457489eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebr+(k-2)-i)*Nc + c + foffset;
45753194fc30SMatthew G. Knepley           }
457689eabcffSMatthew G. Knepley           /*   top */
457789eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblb*Nc + c + foffset;
457889eabcffSMatthew G. Knepley           for (o = oebb; o < oebr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
457989eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrb*Nc + c + foffset;
458089eabcffSMatthew G. Knepley 
458189eabcffSMatthew G. Knepley           /* Middle Slice */
458289eabcffSMatthew G. Knepley           for (j = 0; j < k-1; ++j) {
458389eabcffSMatthew G. Knepley             /*   bottom */
458489eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelf+(k-2)-j)*Nc + c + foffset;
458589eabcffSMatthew G. Knepley             for (o = off+j*(k-1); o < off+(j+1)*(k-1); ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
458689eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerf+j)*Nc + c + foffset;
458789eabcffSMatthew G. Knepley             /*   middle */
458889eabcffSMatthew G. Knepley             for (i = 0; i < k-1; ++i) {
458989eabcffSMatthew G. Knepley               for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofl+i*(k-1)+j)*Nc + c + foffset;
459089eabcffSMatthew G. Knepley               for (n = 0; n < k-1; ++n) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oc+(j*(k-1)+i)*(k-1)+n)*Nc + c + foffset;
459189eabcffSMatthew G. Knepley               for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofr+j*(k-1)+i)*Nc + c + foffset;
459289eabcffSMatthew G. Knepley             }
459389eabcffSMatthew G. Knepley             /*   top */
459489eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelb+j)*Nc + c + foffset;
459589eabcffSMatthew G. Knepley             for (o = ofk+j*(k-1)+(k-2); o >= ofk+j*(k-1); --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
459689eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerb+(k-2)-j)*Nc + c + foffset;
459789eabcffSMatthew G. Knepley           }
459889eabcffSMatthew G. Knepley 
459989eabcffSMatthew G. Knepley           /* Top Slice */
460089eabcffSMatthew G. Knepley           /*   bottom */
460189eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlf*Nc + c + foffset;
460289eabcffSMatthew G. Knepley           for (o = oetf; o < oetr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
460389eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrf*Nc + c + foffset;
460489eabcffSMatthew G. Knepley           /*   middle */
460589eabcffSMatthew G. Knepley           for (i = 0; i < k-1; ++i) {
460689eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetl+(k-2)-i)*Nc + c + foffset;
460789eabcffSMatthew G. Knepley             for (n = 0; n < k-1; ++n) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oft+i*(k-1)+n)*Nc + c + foffset;
460889eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetr+i)*Nc + c + foffset;
460989eabcffSMatthew G. Knepley           }
461089eabcffSMatthew G. Knepley           /*   top */
461189eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlb*Nc + c + foffset;
461289eabcffSMatthew G. Knepley           for (o = oetl-1; o >= oetb; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
461389eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrb*Nc + c + foffset;
461489eabcffSMatthew G. Knepley 
461589eabcffSMatthew G. Knepley           foffset = offset;
461689eabcffSMatthew G. Knepley         }
461789eabcffSMatthew G. Knepley         break;
4618bb197d40SJed Brown       default: SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "No spectral ordering for dimension %D", d);
461989eabcffSMatthew G. Knepley       }
462089eabcffSMatthew G. Knepley     }
462189eabcffSMatthew G. Knepley     if (offset != size) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Number of permutation entries %D != %D", offset, size);
46223194fc30SMatthew G. Knepley     /* Check permutation */
46233194fc30SMatthew G. Knepley     {
46243194fc30SMatthew G. Knepley       PetscInt *check;
46253194fc30SMatthew G. Knepley 
46263194fc30SMatthew G. Knepley       ierr = PetscMalloc1(size, &check);CHKERRQ(ierr);
46273194fc30SMatthew G. Knepley       for (i = 0; i < size; ++i) {check[i] = -1; if (perm[i] < 0 || perm[i] >= size) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid permutation index p[%D] = %D", i, perm[i]);}
46283194fc30SMatthew G. Knepley       for (i = 0; i < size; ++i) check[perm[i]] = i;
46293194fc30SMatthew G. Knepley       for (i = 0; i < size; ++i) {if (check[i] < 0) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Missing permutation index %D", i);}
46303194fc30SMatthew G. Knepley       ierr = PetscFree(check);CHKERRQ(ierr);
46313194fc30SMatthew G. Knepley     }
4632bb197d40SJed Brown     ierr = PetscSectionSetClosurePermutation_Internal(section, (PetscObject) dm, d, size, PETSC_OWN_POINTER, perm);CHKERRQ(ierr);
4633bb197d40SJed Brown   }
46343194fc30SMatthew G. Knepley   PetscFunctionReturn(0);
46353194fc30SMatthew G. Knepley }
46363194fc30SMatthew G. Knepley 
4637e071409bSToby Isaac PetscErrorCode DMPlexGetPointDualSpaceFEM(DM dm, PetscInt point, PetscInt field, PetscDualSpace *dspace)
4638e071409bSToby Isaac {
4639e071409bSToby Isaac   PetscDS        prob;
4640e071409bSToby Isaac   PetscInt       depth, Nf, h;
4641e071409bSToby Isaac   DMLabel        label;
4642e071409bSToby Isaac   PetscErrorCode ierr;
4643e071409bSToby Isaac 
4644e071409bSToby Isaac   PetscFunctionBeginHot;
4645e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
4646e071409bSToby Isaac   Nf      = prob->Nf;
4647e071409bSToby Isaac   label   = dm->depthLabel;
4648e071409bSToby Isaac   *dspace = NULL;
4649e071409bSToby Isaac   if (field < Nf) {
4650e071409bSToby Isaac     PetscObject disc = prob->disc[field];
4651e071409bSToby Isaac 
4652e071409bSToby Isaac     if (disc->classid == PETSCFE_CLASSID) {
4653e071409bSToby Isaac       PetscDualSpace dsp;
4654e071409bSToby Isaac 
4655e071409bSToby Isaac       ierr = PetscFEGetDualSpace((PetscFE)disc,&dsp);CHKERRQ(ierr);
4656e071409bSToby Isaac       ierr = DMLabelGetNumValues(label,&depth);CHKERRQ(ierr);
4657e071409bSToby Isaac       ierr = DMLabelGetValue(label,point,&h);CHKERRQ(ierr);
4658e071409bSToby Isaac       h    = depth - 1 - h;
4659e071409bSToby Isaac       if (h) {
4660e071409bSToby Isaac         ierr = PetscDualSpaceGetHeightSubspace(dsp,h,dspace);CHKERRQ(ierr);
4661e071409bSToby Isaac       } else {
4662e071409bSToby Isaac         *dspace = dsp;
4663e071409bSToby Isaac       }
4664e071409bSToby Isaac     }
4665e071409bSToby Isaac   }
4666e071409bSToby Isaac   PetscFunctionReturn(0);
4667e071409bSToby Isaac }
4668e071409bSToby Isaac 
4669e071409bSToby Isaac 
46701a271a75SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecGetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
4671a6dfd86eSKarl Rupp {
4672552f7358SJed Brown   PetscScalar    *array, *vArray;
4673d9917b9dSMatthew G. Knepley   const PetscInt *cone, *coneO;
46741a271a75SMatthew G. Knepley   PetscInt        pStart, pEnd, p, numPoints, size = 0, offset = 0;
4675552f7358SJed Brown   PetscErrorCode  ierr;
4676552f7358SJed Brown 
46771b406b76SMatthew G. Knepley   PetscFunctionBeginHot;
46782a3aaacfSMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
46795a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr);
46805a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
46815a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr);
46823f7cbbe7SMatthew G. Knepley   if (!values || !*values) {
46839df71ca4SMatthew G. Knepley     if ((point >= pStart) && (point < pEnd)) {
46849df71ca4SMatthew G. Knepley       PetscInt dof;
4685d9917b9dSMatthew G. Knepley 
46869df71ca4SMatthew G. Knepley       ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
46879df71ca4SMatthew G. Knepley       size += dof;
46889df71ca4SMatthew G. Knepley     }
46899df71ca4SMatthew G. Knepley     for (p = 0; p < numPoints; ++p) {
46909df71ca4SMatthew G. Knepley       const PetscInt cp = cone[p];
46912a3aaacfSMatthew G. Knepley       PetscInt       dof;
46925a1bb5cfSMatthew G. Knepley 
46935a1bb5cfSMatthew G. Knepley       if ((cp < pStart) || (cp >= pEnd)) continue;
46942a3aaacfSMatthew G. Knepley       ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
46955a1bb5cfSMatthew G. Knepley       size += dof;
46965a1bb5cfSMatthew G. Knepley     }
46973f7cbbe7SMatthew G. Knepley     if (!values) {
46983f7cbbe7SMatthew G. Knepley       if (csize) *csize = size;
46993f7cbbe7SMatthew G. Knepley       PetscFunctionReturn(0);
47003f7cbbe7SMatthew G. Knepley     }
470169291d52SBarry Smith     ierr = DMGetWorkArray(dm, size, MPIU_SCALAR, &array);CHKERRQ(ierr);
4702982e9ed1SMatthew G. Knepley   } else {
4703982e9ed1SMatthew G. Knepley     array = *values;
4704982e9ed1SMatthew G. Knepley   }
47059df71ca4SMatthew G. Knepley   size = 0;
47065a1bb5cfSMatthew G. Knepley   ierr = VecGetArray(v, &vArray);CHKERRQ(ierr);
47079df71ca4SMatthew G. Knepley   if ((point >= pStart) && (point < pEnd)) {
47089df71ca4SMatthew G. Knepley     PetscInt     dof, off, d;
47099df71ca4SMatthew G. Knepley     PetscScalar *varr;
4710d9917b9dSMatthew G. Knepley 
47119df71ca4SMatthew G. Knepley     ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
47129df71ca4SMatthew G. Knepley     ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
47139df71ca4SMatthew G. Knepley     varr = &vArray[off];
47141a271a75SMatthew G. Knepley     for (d = 0; d < dof; ++d, ++offset) {
47151a271a75SMatthew G. Knepley       array[offset] = varr[d];
47169df71ca4SMatthew G. Knepley     }
47179df71ca4SMatthew G. Knepley     size += dof;
47189df71ca4SMatthew G. Knepley   }
47199df71ca4SMatthew G. Knepley   for (p = 0; p < numPoints; ++p) {
47209df71ca4SMatthew G. Knepley     const PetscInt cp = cone[p];
47219df71ca4SMatthew G. Knepley     PetscInt       o  = coneO[p];
47225a1bb5cfSMatthew G. Knepley     PetscInt       dof, off, d;
47235a1bb5cfSMatthew G. Knepley     PetscScalar   *varr;
47245a1bb5cfSMatthew G. Knepley 
472552ed52e8SMatthew G. Knepley     if ((cp < pStart) || (cp >= pEnd)) continue;
47265a1bb5cfSMatthew G. Knepley     ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
47275a1bb5cfSMatthew G. Knepley     ierr = PetscSectionGetOffset(section, cp, &off);CHKERRQ(ierr);
47285a1bb5cfSMatthew G. Knepley     varr = &vArray[off];
47295a1bb5cfSMatthew G. Knepley     if (o >= 0) {
47301a271a75SMatthew G. Knepley       for (d = 0; d < dof; ++d, ++offset) {
47311a271a75SMatthew G. Knepley         array[offset] = varr[d];
47325a1bb5cfSMatthew G. Knepley       }
47335a1bb5cfSMatthew G. Knepley     } else {
47341a271a75SMatthew G. Knepley       for (d = dof-1; d >= 0; --d, ++offset) {
47351a271a75SMatthew G. Knepley         array[offset] = varr[d];
47365a1bb5cfSMatthew G. Knepley       }
47375a1bb5cfSMatthew G. Knepley     }
47389df71ca4SMatthew G. Knepley     size += dof;
47395a1bb5cfSMatthew G. Knepley   }
47405a1bb5cfSMatthew G. Knepley   ierr = VecRestoreArray(v, &vArray);CHKERRQ(ierr);
47419df71ca4SMatthew G. Knepley   if (!*values) {
47425a1bb5cfSMatthew G. Knepley     if (csize) *csize = size;
47435a1bb5cfSMatthew G. Knepley     *values = array;
47449df71ca4SMatthew G. Knepley   } else {
47458ccfff9cSToby Isaac     if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size);
47468c312ff3SMatthew G. Knepley     *csize = size;
47479df71ca4SMatthew G. Knepley   }
47485a1bb5cfSMatthew G. Knepley   PetscFunctionReturn(0);
47495a1bb5cfSMatthew G. Knepley }
4750d9917b9dSMatthew G. Knepley 
475127f02ce8SMatthew G. Knepley /* Compress out points not in the section */
475227f02ce8SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode CompressPoints_Private(PetscSection section, PetscInt *numPoints, PetscInt points[])
475327f02ce8SMatthew G. Knepley {
475427f02ce8SMatthew G. Knepley   const PetscInt np = *numPoints;
475527f02ce8SMatthew G. Knepley   PetscInt       pStart, pEnd, p, q;
475627f02ce8SMatthew G. Knepley   PetscErrorCode ierr;
475727f02ce8SMatthew G. Knepley 
475827f02ce8SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
475927f02ce8SMatthew G. Knepley   for (p = 0, q = 0; p < np; ++p) {
476027f02ce8SMatthew G. Knepley     const PetscInt r = points[p*2];
476127f02ce8SMatthew G. Knepley     if ((r >= pStart) && (r < pEnd)) {
476227f02ce8SMatthew G. Knepley       points[q*2]   = r;
476327f02ce8SMatthew G. Knepley       points[q*2+1] = points[p*2+1];
476427f02ce8SMatthew G. Knepley       ++q;
476527f02ce8SMatthew G. Knepley     }
476627f02ce8SMatthew G. Knepley   }
476727f02ce8SMatthew G. Knepley   *numPoints = q;
476827f02ce8SMatthew G. Knepley   return 0;
476927f02ce8SMatthew G. Knepley }
477027f02ce8SMatthew G. Knepley 
477127f02ce8SMatthew G. Knepley static PetscErrorCode DMPlexTransitiveClosure_Hybrid_Internal(DM dm, PetscInt point, PetscInt np, PetscInt *numPoints, PetscInt **points)
477227f02ce8SMatthew G. Knepley {
477327f02ce8SMatthew G. Knepley   const PetscInt *cone, *ornt;
477427f02ce8SMatthew G. Knepley   PetscInt       *pts,  *closure = NULL;
477527f02ce8SMatthew G. Knepley   PetscInt        dim, coneSize, c, d, clSize, cl;
477627f02ce8SMatthew G. Knepley   PetscErrorCode  ierr;
477727f02ce8SMatthew G. Knepley 
477827f02ce8SMatthew G. Knepley   PetscFunctionBeginHot;
477927f02ce8SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
478027f02ce8SMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, point, &coneSize);CHKERRQ(ierr);
478127f02ce8SMatthew G. Knepley   ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
478227f02ce8SMatthew G. Knepley   ierr = DMPlexGetConeOrientation(dm, point, &ornt);CHKERRQ(ierr);
478327f02ce8SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dm, cone[0], PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
478427f02ce8SMatthew G. Knepley   ierr = DMGetWorkArray(dm, np*2, MPIU_INT, &pts);CHKERRQ(ierr);
478527f02ce8SMatthew G. Knepley   c    = 0;
478627f02ce8SMatthew G. Knepley   pts[c*2+0] = point;
478727f02ce8SMatthew G. Knepley   pts[c*2+1] = 0;
478827f02ce8SMatthew G. Knepley   ++c;
478927f02ce8SMatthew G. Knepley   for (cl = 0; cl < clSize*2; cl += 2, ++c) {pts[c*2+0] = closure[cl]; pts[c*2+1] = closure[cl+1];}
479027f02ce8SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dm, cone[1], PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
479127f02ce8SMatthew G. Knepley   for (cl = 0; cl < clSize*2; cl += 2, ++c) {pts[c*2+0] = closure[cl]; pts[c*2+1] = closure[cl+1];}
479227f02ce8SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dm, cone[0], PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
479327f02ce8SMatthew G. Knepley   if (dim >= 2) {
479427f02ce8SMatthew G. Knepley     for (d = 2; d < coneSize; ++d, ++c) {pts[c*2+0] = cone[d]; pts[c*2+1] = ornt[d];}
479527f02ce8SMatthew G. Knepley   }
479627f02ce8SMatthew G. Knepley   if (dim >= 3) {
479727f02ce8SMatthew G. Knepley     for (d = 2; d < coneSize; ++d) {
479827f02ce8SMatthew G. Knepley       const PetscInt  fpoint = cone[d];
479927f02ce8SMatthew G. Knepley       const PetscInt *fcone;
480027f02ce8SMatthew G. Knepley       PetscInt        fconeSize, fc, i;
480127f02ce8SMatthew G. Knepley 
480227f02ce8SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, fpoint, &fconeSize);CHKERRQ(ierr);
480327f02ce8SMatthew G. Knepley       ierr = DMPlexGetCone(dm, fpoint, &fcone);CHKERRQ(ierr);
480427f02ce8SMatthew G. Knepley       for (fc = 0; fc < fconeSize; ++fc) {
480527f02ce8SMatthew G. Knepley         for (i = 0; i < c; ++i) if (pts[i*2] == fcone[fc]) break;
480627f02ce8SMatthew G. Knepley         if (i == c) {pts[c*2+0] = fcone[fc]; pts[c*2+1] = 0; ++c;}
480727f02ce8SMatthew G. Knepley       }
480827f02ce8SMatthew G. Knepley     }
480927f02ce8SMatthew G. Knepley   }
481027f02ce8SMatthew G. Knepley   if (c != np) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid closure for hybrid point %D, size %D != %D", point, c, np);
481127f02ce8SMatthew G. Knepley   *numPoints = np;
481227f02ce8SMatthew G. Knepley   *points    = pts;
481327f02ce8SMatthew G. Knepley   PetscFunctionReturn(0);
481427f02ce8SMatthew G. Knepley }
481527f02ce8SMatthew G. Knepley 
481697529cf3SJed Brown /* Compressed closure does not apply closure permutation */
48171dc59d61SMatthew G. Knepley PetscErrorCode DMPlexGetCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp)
4818923c78e0SToby Isaac {
481927f02ce8SMatthew G. Knepley   const PetscInt *cla = NULL;
4820923c78e0SToby Isaac   PetscInt       np, *pts = NULL;
4821923c78e0SToby Isaac   PetscErrorCode ierr;
4822923c78e0SToby Isaac 
4823923c78e0SToby Isaac   PetscFunctionBeginHot;
4824923c78e0SToby Isaac   ierr = PetscSectionGetClosureIndex(section, (PetscObject) dm, clSec, clPoints);CHKERRQ(ierr);
482527f02ce8SMatthew G. Knepley   if (*clPoints) {
4826923c78e0SToby Isaac     PetscInt dof, off;
4827923c78e0SToby Isaac 
4828923c78e0SToby Isaac     ierr = PetscSectionGetDof(*clSec, point, &dof);CHKERRQ(ierr);
4829923c78e0SToby Isaac     ierr = PetscSectionGetOffset(*clSec, point, &off);CHKERRQ(ierr);
4830923c78e0SToby Isaac     ierr = ISGetIndices(*clPoints, &cla);CHKERRQ(ierr);
4831923c78e0SToby Isaac     np   = dof/2;
4832923c78e0SToby Isaac     pts  = (PetscInt *) &cla[off];
483327f02ce8SMatthew G. Knepley   } else {
4834665f567fSMatthew G. Knepley     DMPolytopeType ct;
4835665f567fSMatthew G. Knepley 
483627f02ce8SMatthew G. Knepley     /* Do not make the label if it does not exist */
483727f02ce8SMatthew G. Knepley     if (!dm->celltypeLabel) {ct = DM_POLYTOPE_POINT;}
483827f02ce8SMatthew G. Knepley     else                    {ierr = DMPlexGetCellType(dm, point, &ct);CHKERRQ(ierr);}
483927f02ce8SMatthew G. Knepley     switch (ct) {
484027f02ce8SMatthew G. Knepley       case DM_POLYTOPE_SEG_PRISM_TENSOR:
484127f02ce8SMatthew G. Knepley         ierr = DMPlexTransitiveClosure_Hybrid_Internal(dm, point, 9, &np, &pts);CHKERRQ(ierr);
484227f02ce8SMatthew G. Knepley         break;
484327f02ce8SMatthew G. Knepley       case DM_POLYTOPE_TRI_PRISM_TENSOR:
484427f02ce8SMatthew G. Knepley         ierr = DMPlexTransitiveClosure_Hybrid_Internal(dm, point, 21, &np, &pts);CHKERRQ(ierr);
484527f02ce8SMatthew G. Knepley         break;
484627f02ce8SMatthew G. Knepley       case DM_POLYTOPE_QUAD_PRISM_TENSOR:
484727f02ce8SMatthew G. Knepley         ierr = DMPlexTransitiveClosure_Hybrid_Internal(dm, point, 27, &np, &pts);CHKERRQ(ierr);
484827f02ce8SMatthew G. Knepley         break;
484927f02ce8SMatthew G. Knepley       default:
485027f02ce8SMatthew G. Knepley         ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_TRUE, &np, &pts);CHKERRQ(ierr);
485127f02ce8SMatthew G. Knepley     }
485227f02ce8SMatthew G. Knepley     ierr = CompressPoints_Private(section, &np, pts);CHKERRQ(ierr);
4853923c78e0SToby Isaac   }
4854923c78e0SToby Isaac   *numPoints = np;
4855923c78e0SToby Isaac   *points    = pts;
4856923c78e0SToby Isaac   *clp       = cla;
4857923c78e0SToby Isaac   PetscFunctionReturn(0);
4858923c78e0SToby Isaac }
4859923c78e0SToby Isaac 
48601dc59d61SMatthew G. Knepley PetscErrorCode DMPlexRestoreCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp)
4861923c78e0SToby Isaac {
4862923c78e0SToby Isaac   PetscErrorCode ierr;
4863923c78e0SToby Isaac 
4864923c78e0SToby Isaac   PetscFunctionBeginHot;
4865923c78e0SToby Isaac   if (!*clPoints) {
4866923c78e0SToby Isaac     ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_TRUE, numPoints, points);CHKERRQ(ierr);
4867923c78e0SToby Isaac   } else {
4868923c78e0SToby Isaac     ierr = ISRestoreIndices(*clPoints, clp);CHKERRQ(ierr);
4869923c78e0SToby Isaac   }
4870923c78e0SToby Isaac   *numPoints = 0;
4871923c78e0SToby Isaac   *points    = NULL;
4872923c78e0SToby Isaac   *clSec     = NULL;
4873923c78e0SToby Isaac   *clPoints  = NULL;
4874923c78e0SToby Isaac   *clp       = NULL;
4875923c78e0SToby Isaac   PetscFunctionReturn(0);
4876923c78e0SToby Isaac }
4877923c78e0SToby Isaac 
487897e99dd9SToby Isaac PETSC_STATIC_INLINE PetscErrorCode DMPlexVecGetClosure_Static(DM dm, PetscSection section, PetscInt numPoints, const PetscInt points[], const PetscInt clperm[], const PetscScalar vArray[], PetscInt *size, PetscScalar array[])
48791a271a75SMatthew G. Knepley {
48801a271a75SMatthew G. Knepley   PetscInt          offset = 0, p;
488197e99dd9SToby Isaac   const PetscInt    **perms = NULL;
488297e99dd9SToby Isaac   const PetscScalar **flips = NULL;
48831a271a75SMatthew G. Knepley   PetscErrorCode    ierr;
48841a271a75SMatthew G. Knepley 
48851a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
4886fe02ba77SJed Brown   *size = 0;
488797e99dd9SToby Isaac   ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
488897e99dd9SToby Isaac   for (p = 0; p < numPoints; p++) {
488997e99dd9SToby Isaac     const PetscInt    point = points[2*p];
489097e99dd9SToby Isaac     const PetscInt    *perm = perms ? perms[p] : NULL;
489197e99dd9SToby Isaac     const PetscScalar *flip = flips ? flips[p] : NULL;
48921a271a75SMatthew G. Knepley     PetscInt          dof, off, d;
48931a271a75SMatthew G. Knepley     const PetscScalar *varr;
48941a271a75SMatthew G. Knepley 
48951a271a75SMatthew G. Knepley     ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
48961a271a75SMatthew G. Knepley     ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
48971a271a75SMatthew G. Knepley     varr = &vArray[off];
489897e99dd9SToby Isaac     if (clperm) {
489997e99dd9SToby Isaac       if (perm) {
490097e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset + perm[d]]]  = varr[d];
49011a271a75SMatthew G. Knepley       } else {
490297e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset +      d ]]  = varr[d];
490397e99dd9SToby Isaac       }
490497e99dd9SToby Isaac       if (flip) {
490597e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset +      d ]] *= flip[d];
490697e99dd9SToby Isaac       }
490797e99dd9SToby Isaac     } else {
490897e99dd9SToby Isaac       if (perm) {
490997e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset + perm[d]]  = varr[d];
491097e99dd9SToby Isaac       } else {
491197e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset +      d ]  = varr[d];
491297e99dd9SToby Isaac       }
491397e99dd9SToby Isaac       if (flip) {
491497e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset +      d ] *= flip[d];
49151a271a75SMatthew G. Knepley       }
49161a271a75SMatthew G. Knepley     }
491797e99dd9SToby Isaac     offset += dof;
491897e99dd9SToby Isaac   }
491997e99dd9SToby Isaac   ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
49201a271a75SMatthew G. Knepley   *size = offset;
49211a271a75SMatthew G. Knepley   PetscFunctionReturn(0);
49221a271a75SMatthew G. Knepley }
49231a271a75SMatthew G. Knepley 
492497e99dd9SToby Isaac PETSC_STATIC_INLINE PetscErrorCode DMPlexVecGetClosure_Fields_Static(DM dm, PetscSection section, PetscInt numPoints, const PetscInt points[], PetscInt numFields, const PetscInt clperm[], const PetscScalar vArray[], PetscInt *size, PetscScalar array[])
49251a271a75SMatthew G. Knepley {
49261a271a75SMatthew G. Knepley   PetscInt          offset = 0, f;
49271a271a75SMatthew G. Knepley   PetscErrorCode    ierr;
49281a271a75SMatthew G. Knepley 
49291a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
4930fe02ba77SJed Brown   *size = 0;
49311a271a75SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
493297e99dd9SToby Isaac     PetscInt          p;
493397e99dd9SToby Isaac     const PetscInt    **perms = NULL;
493497e99dd9SToby Isaac     const PetscScalar **flips = NULL;
49351a271a75SMatthew G. Knepley 
493697e99dd9SToby Isaac     ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
493797e99dd9SToby Isaac     for (p = 0; p < numPoints; p++) {
493897e99dd9SToby Isaac       const PetscInt    point = points[2*p];
493997e99dd9SToby Isaac       PetscInt          fdof, foff, b;
49401a271a75SMatthew G. Knepley       const PetscScalar *varr;
494197e99dd9SToby Isaac       const PetscInt    *perm = perms ? perms[p] : NULL;
494297e99dd9SToby Isaac       const PetscScalar *flip = flips ? flips[p] : NULL;
49431a271a75SMatthew G. Knepley 
49441a271a75SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
49451a271a75SMatthew G. Knepley       ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
49461a271a75SMatthew G. Knepley       varr = &vArray[foff];
494797e99dd9SToby Isaac       if (clperm) {
494897e99dd9SToby Isaac         if (perm) {for (b = 0; b < fdof; b++) {array[clperm[offset + perm[b]]]  = varr[b];}}
494997e99dd9SToby Isaac         else      {for (b = 0; b < fdof; b++) {array[clperm[offset +      b ]]  = varr[b];}}
495097e99dd9SToby Isaac         if (flip) {for (b = 0; b < fdof; b++) {array[clperm[offset +      b ]] *= flip[b];}}
49511a271a75SMatthew G. Knepley       } else {
495297e99dd9SToby Isaac         if (perm) {for (b = 0; b < fdof; b++) {array[offset + perm[b]]  = varr[b];}}
495397e99dd9SToby Isaac         else      {for (b = 0; b < fdof; b++) {array[offset +      b ]  = varr[b];}}
495497e99dd9SToby Isaac         if (flip) {for (b = 0; b < fdof; b++) {array[offset +      b ] *= flip[b];}}
49551a271a75SMatthew G. Knepley       }
495697e99dd9SToby Isaac       offset += fdof;
49571a271a75SMatthew G. Knepley     }
495897e99dd9SToby Isaac     ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
49591a271a75SMatthew G. Knepley   }
49601a271a75SMatthew G. Knepley   *size = offset;
49611a271a75SMatthew G. Knepley   PetscFunctionReturn(0);
49621a271a75SMatthew G. Knepley }
49631a271a75SMatthew G. Knepley 
4964552f7358SJed Brown /*@C
4965552f7358SJed Brown   DMPlexVecGetClosure - Get an array of the values on the closure of 'point'
4966552f7358SJed Brown 
4967552f7358SJed Brown   Not collective
4968552f7358SJed Brown 
4969552f7358SJed Brown   Input Parameters:
4970552f7358SJed Brown + dm - The DM
4971552f7358SJed Brown . section - The section describing the layout in v, or NULL to use the default section
4972552f7358SJed Brown . v - The local vector
497322c1ee49SMatthew G. Knepley . point - The point in the DM
497422c1ee49SMatthew G. Knepley . csize - The size of the input values array, or NULL
497522c1ee49SMatthew G. Knepley - values - An array to use for the values, or NULL to have it allocated automatically
4976552f7358SJed Brown 
4977552f7358SJed Brown   Output Parameters:
497822c1ee49SMatthew G. Knepley + csize - The number of values in the closure
497922c1ee49SMatthew G. Knepley - values - The array of values. If the user provided NULL, it is a borrowed array and should not be freed
498022c1ee49SMatthew G. Knepley 
498122c1ee49SMatthew G. Knepley $ Note that DMPlexVecGetClosure/DMPlexVecRestoreClosure only allocates the values array if it set to NULL in the
498222c1ee49SMatthew G. Knepley $ calling function. This is because DMPlexVecGetClosure() is typically called in the inner loop of a Vec or Mat
498322c1ee49SMatthew G. Knepley $ assembly function, and a user may already have allocated storage for this operation.
498422c1ee49SMatthew G. Knepley $
498522c1ee49SMatthew G. Knepley $ A typical use could be
498622c1ee49SMatthew G. Knepley $
498722c1ee49SMatthew G. Knepley $  values = NULL;
498822c1ee49SMatthew G. Knepley $  ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
498922c1ee49SMatthew G. Knepley $  for (cl = 0; cl < clSize; ++cl) {
499022c1ee49SMatthew G. Knepley $    <Compute on closure>
499122c1ee49SMatthew G. Knepley $  }
499222c1ee49SMatthew G. Knepley $  ierr = DMPlexVecRestoreClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
499322c1ee49SMatthew G. Knepley $
499422c1ee49SMatthew G. Knepley $ or
499522c1ee49SMatthew G. Knepley $
499622c1ee49SMatthew G. Knepley $  PetscMalloc1(clMaxSize, &values);
499722c1ee49SMatthew G. Knepley $  for (p = pStart; p < pEnd; ++p) {
499822c1ee49SMatthew G. Knepley $    clSize = clMaxSize;
499922c1ee49SMatthew G. Knepley $    ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
500022c1ee49SMatthew G. Knepley $    for (cl = 0; cl < clSize; ++cl) {
500122c1ee49SMatthew G. Knepley $      <Compute on closure>
500222c1ee49SMatthew G. Knepley $    }
500322c1ee49SMatthew G. Knepley $  }
500422c1ee49SMatthew G. Knepley $  PetscFree(values);
5005552f7358SJed Brown 
5006552f7358SJed Brown   Fortran Notes:
5007552f7358SJed Brown   Since it returns an array, this routine is only available in Fortran 90, and you must
5008552f7358SJed Brown   include petsc.h90 in your code.
5009552f7358SJed Brown 
5010552f7358SJed Brown   The csize argument is not present in the Fortran 90 binding since it is internal to the array.
5011552f7358SJed Brown 
5012552f7358SJed Brown   Level: intermediate
5013552f7358SJed Brown 
5014552f7358SJed Brown .seealso DMPlexVecRestoreClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure()
5015552f7358SJed Brown @*/
5016552f7358SJed Brown PetscErrorCode DMPlexVecGetClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
5017552f7358SJed Brown {
5018552f7358SJed Brown   PetscSection       clSection;
5019d9917b9dSMatthew G. Knepley   IS                 clPoints;
5020552f7358SJed Brown   PetscInt          *points = NULL;
5021c459fbc1SJed Brown   const PetscInt    *clp, *perm;
5022c459fbc1SJed Brown   PetscInt           depth, numFields, numPoints, asize;
5023552f7358SJed Brown   PetscErrorCode     ierr;
5024552f7358SJed Brown 
5025d9917b9dSMatthew G. Knepley   PetscFunctionBeginHot;
5026552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
502792fd8e1eSJed Brown   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
50281a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
50291a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
5030552f7358SJed Brown   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
5031552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5032552f7358SJed Brown   if (depth == 1 && numFields < 2) {
50331a271a75SMatthew G. Knepley     ierr = DMPlexVecGetClosure_Depth1_Static(dm, section, v, point, csize, values);CHKERRQ(ierr);
5034552f7358SJed Brown     PetscFunctionReturn(0);
5035552f7358SJed Brown   }
50361a271a75SMatthew G. Knepley   /* Get points */
5037923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5038c459fbc1SJed Brown   /* Get sizes */
5039c459fbc1SJed Brown   asize = 0;
5040c459fbc1SJed Brown   for (PetscInt p = 0; p < numPoints*2; p += 2) {
5041c459fbc1SJed Brown     PetscInt dof;
5042552f7358SJed Brown     ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
50431a271a75SMatthew G. Knepley     asize += dof;
5044552f7358SJed Brown   }
5045c459fbc1SJed Brown   if (values) {
5046c459fbc1SJed Brown     const PetscScalar *vArray;
5047c459fbc1SJed Brown     PetscInt          size;
5048c459fbc1SJed Brown 
5049c459fbc1SJed Brown     if (*values) {
5050c459fbc1SJed Brown       if (PetscUnlikely(*csize < asize)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Provided array size %D not sufficient to hold closure size %D", *csize, asize);
5051c459fbc1SJed Brown     } else {ierr = DMGetWorkArray(dm, asize, MPIU_SCALAR, values);CHKERRQ(ierr);}
5052c459fbc1SJed Brown     ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, depth, asize, &perm);CHKERRQ(ierr);
50538a84db2dSMatthew G. Knepley     ierr = VecGetArrayRead(v, &vArray);CHKERRQ(ierr);
50541a271a75SMatthew G. Knepley     /* Get values */
5055c459fbc1SJed Brown     if (numFields > 0) {ierr = DMPlexVecGetClosure_Fields_Static(dm, section, numPoints, points, numFields, perm, vArray, &size, *values);CHKERRQ(ierr);}
5056c459fbc1SJed Brown     else               {ierr = DMPlexVecGetClosure_Static(dm, section, numPoints, points, perm, vArray, &size, *values);CHKERRQ(ierr);}
5057c459fbc1SJed Brown     if (PetscUnlikely(asize != size)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Section size %D does not match Vec closure size %D", asize, size);
50581a271a75SMatthew G. Knepley     /* Cleanup array */
50598a84db2dSMatthew G. Knepley     ierr = VecRestoreArrayRead(v, &vArray);CHKERRQ(ierr);
5060d0f6b257SMatthew G. Knepley   }
5061c459fbc1SJed Brown   if (csize) *csize = asize;
5062c459fbc1SJed Brown   /* Cleanup points */
5063c459fbc1SJed Brown   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5064552f7358SJed Brown   PetscFunctionReturn(0);
5065552f7358SJed Brown }
5066552f7358SJed Brown 
5067e5c487bfSMatthew G. Knepley PetscErrorCode DMPlexVecGetClosureAtDepth_Internal(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt depth, PetscInt *csize, PetscScalar *values[])
5068e5c487bfSMatthew G. Knepley {
5069e5c487bfSMatthew G. Knepley   DMLabel            depthLabel;
5070e5c487bfSMatthew G. Knepley   PetscSection       clSection;
5071e5c487bfSMatthew G. Knepley   IS                 clPoints;
5072e5c487bfSMatthew G. Knepley   PetscScalar       *array;
5073e5c487bfSMatthew G. Knepley   const PetscScalar *vArray;
5074e5c487bfSMatthew G. Knepley   PetscInt          *points = NULL;
5075c459fbc1SJed Brown   const PetscInt    *clp, *perm = NULL;
5076c459fbc1SJed Brown   PetscInt           mdepth, numFields, numPoints, Np = 0, p, clsize, size;
5077e5c487bfSMatthew G. Knepley   PetscErrorCode     ierr;
5078e5c487bfSMatthew G. Knepley 
5079e5c487bfSMatthew G. Knepley   PetscFunctionBeginHot;
5080e5c487bfSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5081e5c487bfSMatthew G. Knepley   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
5082e5c487bfSMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
5083e5c487bfSMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
5084e5c487bfSMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &mdepth);CHKERRQ(ierr);
5085e5c487bfSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
5086e5c487bfSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5087e5c487bfSMatthew G. Knepley   if (mdepth == 1 && numFields < 2) {
5088e5c487bfSMatthew G. Knepley     ierr = DMPlexVecGetClosure_Depth1_Static(dm, section, v, point, csize, values);CHKERRQ(ierr);
5089e5c487bfSMatthew G. Knepley     PetscFunctionReturn(0);
5090e5c487bfSMatthew G. Knepley   }
5091e5c487bfSMatthew G. Knepley   /* Get points */
5092e5c487bfSMatthew G. Knepley   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5093c459fbc1SJed Brown   for (clsize=0,p=0; p<Np; p++) {
5094c459fbc1SJed Brown     PetscInt dof;
5095c459fbc1SJed Brown     ierr = PetscSectionGetDof(section, points[2*p], &dof);CHKERRQ(ierr);
5096c459fbc1SJed Brown     clsize += dof;
5097c459fbc1SJed Brown   }
5098c459fbc1SJed Brown   ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, depth, clsize, &perm);CHKERRQ(ierr);
5099e5c487bfSMatthew G. Knepley   /* Filter points */
5100e5c487bfSMatthew G. Knepley   for (p = 0; p < numPoints*2; p += 2) {
5101e5c487bfSMatthew G. Knepley     PetscInt dep;
5102e5c487bfSMatthew G. Knepley 
5103e5c487bfSMatthew G. Knepley     ierr = DMLabelGetValue(depthLabel, points[p], &dep);CHKERRQ(ierr);
5104e5c487bfSMatthew G. Knepley     if (dep != depth) continue;
5105e5c487bfSMatthew G. Knepley     points[Np*2+0] = points[p];
5106e5c487bfSMatthew G. Knepley     points[Np*2+1] = points[p+1];
5107e5c487bfSMatthew G. Knepley     ++Np;
5108e5c487bfSMatthew G. Knepley   }
5109e5c487bfSMatthew G. Knepley   /* Get array */
5110e5c487bfSMatthew G. Knepley   if (!values || !*values) {
5111e5c487bfSMatthew G. Knepley     PetscInt asize = 0, dof;
5112e5c487bfSMatthew G. Knepley 
5113e5c487bfSMatthew G. Knepley     for (p = 0; p < Np*2; p += 2) {
5114e5c487bfSMatthew G. Knepley       ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
5115e5c487bfSMatthew G. Knepley       asize += dof;
5116e5c487bfSMatthew G. Knepley     }
5117e5c487bfSMatthew G. Knepley     if (!values) {
5118e5c487bfSMatthew G. Knepley       ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5119e5c487bfSMatthew G. Knepley       if (csize) *csize = asize;
5120e5c487bfSMatthew G. Knepley       PetscFunctionReturn(0);
5121e5c487bfSMatthew G. Knepley     }
5122e5c487bfSMatthew G. Knepley     ierr = DMGetWorkArray(dm, asize, MPIU_SCALAR, &array);CHKERRQ(ierr);
5123e5c487bfSMatthew G. Knepley   } else {
5124e5c487bfSMatthew G. Knepley     array = *values;
5125e5c487bfSMatthew G. Knepley   }
5126e5c487bfSMatthew G. Knepley   ierr = VecGetArrayRead(v, &vArray);CHKERRQ(ierr);
5127e5c487bfSMatthew G. Knepley   /* Get values */
5128e5c487bfSMatthew G. Knepley   if (numFields > 0) {ierr = DMPlexVecGetClosure_Fields_Static(dm, section, Np, points, numFields, perm, vArray, &size, array);CHKERRQ(ierr);}
5129e5c487bfSMatthew G. Knepley   else               {ierr = DMPlexVecGetClosure_Static(dm, section, Np, points, perm, vArray, &size, array);CHKERRQ(ierr);}
5130e5c487bfSMatthew G. Knepley   /* Cleanup points */
5131e5c487bfSMatthew G. Knepley   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5132e5c487bfSMatthew G. Knepley   /* Cleanup array */
5133e5c487bfSMatthew G. Knepley   ierr = VecRestoreArrayRead(v, &vArray);CHKERRQ(ierr);
5134e5c487bfSMatthew G. Knepley   if (!*values) {
5135e5c487bfSMatthew G. Knepley     if (csize) *csize = size;
5136e5c487bfSMatthew G. Knepley     *values = array;
5137e5c487bfSMatthew G. Knepley   } else {
5138e5c487bfSMatthew G. Knepley     if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size);
5139e5c487bfSMatthew G. Knepley     *csize = size;
5140e5c487bfSMatthew G. Knepley   }
5141e5c487bfSMatthew G. Knepley   PetscFunctionReturn(0);
5142e5c487bfSMatthew G. Knepley }
5143e5c487bfSMatthew G. Knepley 
5144552f7358SJed Brown /*@C
5145552f7358SJed Brown   DMPlexVecRestoreClosure - Restore the array of the values on the closure of 'point'
5146552f7358SJed Brown 
5147552f7358SJed Brown   Not collective
5148552f7358SJed Brown 
5149552f7358SJed Brown   Input Parameters:
5150552f7358SJed Brown + dm - The DM
51510298fd71SBarry Smith . section - The section describing the layout in v, or NULL to use the default section
5152552f7358SJed Brown . v - The local vector
5153eaf898f9SPatrick Sanan . point - The point in the DM
51540298fd71SBarry Smith . csize - The number of values in the closure, or NULL
5155552f7358SJed Brown - values - The array of values, which is a borrowed array and should not be freed
5156552f7358SJed Brown 
515722c1ee49SMatthew G. Knepley   Note that the array values are discarded and not copied back into v. In order to copy values back to v, use DMPlexVecSetClosure()
515822c1ee49SMatthew G. Knepley 
51593813dfbdSMatthew G Knepley   Fortran Notes:
51603813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
51613813dfbdSMatthew G Knepley   include petsc.h90 in your code.
51623813dfbdSMatthew G Knepley 
51633813dfbdSMatthew G Knepley   The csize argument is not present in the Fortran 90 binding since it is internal to the array.
51643813dfbdSMatthew G Knepley 
5165552f7358SJed Brown   Level: intermediate
5166552f7358SJed Brown 
5167552f7358SJed Brown .seealso DMPlexVecGetClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure()
5168552f7358SJed Brown @*/
51697c1f9639SMatthew G Knepley PetscErrorCode DMPlexVecRestoreClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
5170a6dfd86eSKarl Rupp {
5171552f7358SJed Brown   PetscInt       size = 0;
5172552f7358SJed Brown   PetscErrorCode ierr;
5173552f7358SJed Brown 
5174552f7358SJed Brown   PetscFunctionBegin;
5175552f7358SJed Brown   /* Should work without recalculating size */
517669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, size, MPIU_SCALAR, (void*) values);CHKERRQ(ierr);
5177c9fdaa05SMatthew G. Knepley   *values = NULL;
5178552f7358SJed Brown   PetscFunctionReturn(0);
5179552f7358SJed Brown }
5180552f7358SJed Brown 
5181552f7358SJed Brown PETSC_STATIC_INLINE void add   (PetscScalar *x, PetscScalar y) {*x += y;}
5182552f7358SJed Brown PETSC_STATIC_INLINE void insert(PetscScalar *x, PetscScalar y) {*x  = y;}
5183552f7358SJed Brown 
518497e99dd9SToby Isaac PETSC_STATIC_INLINE PetscErrorCode updatePoint_private(PetscSection section, PetscInt point, PetscInt dof, void (*fuse)(PetscScalar*, PetscScalar), PetscBool setBC, const PetscInt perm[], const PetscScalar flip[], const PetscInt clperm[], const PetscScalar values[], PetscInt offset, PetscScalar array[])
5185552f7358SJed Brown {
5186552f7358SJed Brown   PetscInt        cdof;   /* The number of constraints on this point */
5187552f7358SJed Brown   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
5188552f7358SJed Brown   PetscScalar    *a;
5189552f7358SJed Brown   PetscInt        off, cind = 0, k;
5190552f7358SJed Brown   PetscErrorCode  ierr;
5191552f7358SJed Brown 
5192552f7358SJed Brown   PetscFunctionBegin;
5193552f7358SJed Brown   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
5194552f7358SJed Brown   ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
5195552f7358SJed Brown   a    = &array[off];
5196552f7358SJed Brown   if (!cdof || setBC) {
519797e99dd9SToby Isaac     if (clperm) {
519897e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));}}
519997e99dd9SToby Isaac       else      {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));}}
5200552f7358SJed Brown     } else {
520197e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));}}
520297e99dd9SToby Isaac       else      {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));}}
5203552f7358SJed Brown     }
5204552f7358SJed Brown   } else {
5205552f7358SJed Brown     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
520697e99dd9SToby Isaac     if (clperm) {
520797e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {
5208552f7358SJed Brown           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
520997e99dd9SToby Isaac           fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));
5210552f7358SJed Brown         }
5211552f7358SJed Brown       } else {
5212552f7358SJed Brown         for (k = 0; k < dof; ++k) {
5213552f7358SJed Brown           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
521497e99dd9SToby Isaac           fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));
521597e99dd9SToby Isaac         }
521697e99dd9SToby Isaac       }
521797e99dd9SToby Isaac     } else {
521897e99dd9SToby Isaac       if (perm) {
521997e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
522097e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
522197e99dd9SToby Isaac           fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));
522297e99dd9SToby Isaac         }
522397e99dd9SToby Isaac       } else {
522497e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
522597e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
522697e99dd9SToby Isaac           fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));
522797e99dd9SToby Isaac         }
5228552f7358SJed Brown       }
5229552f7358SJed Brown     }
5230552f7358SJed Brown   }
5231552f7358SJed Brown   PetscFunctionReturn(0);
5232552f7358SJed Brown }
5233552f7358SJed Brown 
523497e99dd9SToby Isaac PETSC_STATIC_INLINE PetscErrorCode updatePointBC_private(PetscSection section, PetscInt point, PetscInt dof, void (*fuse)(PetscScalar*, PetscScalar), const PetscInt perm[], const PetscScalar flip[], const PetscInt clperm[], const PetscScalar values[], PetscInt offset, PetscScalar array[])
5235a5e93ea8SMatthew G. Knepley {
5236a5e93ea8SMatthew G. Knepley   PetscInt        cdof;   /* The number of constraints on this point */
5237a5e93ea8SMatthew G. Knepley   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
5238a5e93ea8SMatthew G. Knepley   PetscScalar    *a;
5239a5e93ea8SMatthew G. Knepley   PetscInt        off, cind = 0, k;
5240a5e93ea8SMatthew G. Knepley   PetscErrorCode  ierr;
5241a5e93ea8SMatthew G. Knepley 
5242a5e93ea8SMatthew G. Knepley   PetscFunctionBegin;
5243a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
5244a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
5245a5e93ea8SMatthew G. Knepley   a    = &array[off];
5246a5e93ea8SMatthew G. Knepley   if (cdof) {
5247a5e93ea8SMatthew G. Knepley     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
524897e99dd9SToby Isaac     if (clperm) {
524997e99dd9SToby Isaac       if (perm) {
5250a5e93ea8SMatthew G. Knepley         for (k = 0; k < dof; ++k) {
5251a5e93ea8SMatthew G. Knepley           if ((cind < cdof) && (k == cdofs[cind])) {
525297e99dd9SToby Isaac             fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));
525397e99dd9SToby Isaac             cind++;
5254a5e93ea8SMatthew G. Knepley           }
5255a5e93ea8SMatthew G. Knepley         }
5256a5e93ea8SMatthew G. Knepley       } else {
5257a5e93ea8SMatthew G. Knepley         for (k = 0; k < dof; ++k) {
5258a5e93ea8SMatthew G. Knepley           if ((cind < cdof) && (k == cdofs[cind])) {
525997e99dd9SToby Isaac             fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));
526097e99dd9SToby Isaac             cind++;
526197e99dd9SToby Isaac           }
526297e99dd9SToby Isaac         }
526397e99dd9SToby Isaac       }
526497e99dd9SToby Isaac     } else {
526597e99dd9SToby Isaac       if (perm) {
526697e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
526797e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {
526897e99dd9SToby Isaac             fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));
526997e99dd9SToby Isaac             cind++;
527097e99dd9SToby Isaac           }
527197e99dd9SToby Isaac         }
527297e99dd9SToby Isaac       } else {
527397e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
527497e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {
527597e99dd9SToby Isaac             fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));
527697e99dd9SToby Isaac             cind++;
527797e99dd9SToby Isaac           }
5278a5e93ea8SMatthew G. Knepley         }
5279a5e93ea8SMatthew G. Knepley       }
5280a5e93ea8SMatthew G. Knepley     }
5281a5e93ea8SMatthew G. Knepley   }
5282a5e93ea8SMatthew G. Knepley   PetscFunctionReturn(0);
5283a5e93ea8SMatthew G. Knepley }
5284a5e93ea8SMatthew G. Knepley 
528597e99dd9SToby Isaac PETSC_STATIC_INLINE PetscErrorCode updatePointFields_private(PetscSection section, PetscInt point, const PetscInt *perm, const PetscScalar *flip, PetscInt f, void (*fuse)(PetscScalar*, PetscScalar), PetscBool setBC, const PetscInt clperm[], const PetscScalar values[], PetscInt *offset, PetscScalar array[])
5286a6dfd86eSKarl Rupp {
5287552f7358SJed Brown   PetscScalar    *a;
52881a271a75SMatthew G. Knepley   PetscInt        fdof, foff, fcdof, foffset = *offset;
52891a271a75SMatthew G. Knepley   const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
529097e99dd9SToby Isaac   PetscInt        cind = 0, b;
5291552f7358SJed Brown   PetscErrorCode  ierr;
5292552f7358SJed Brown 
5293552f7358SJed Brown   PetscFunctionBegin;
5294552f7358SJed Brown   ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
5295552f7358SJed Brown   ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr);
52961a271a75SMatthew G. Knepley   ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
52971a271a75SMatthew G. Knepley   a    = &array[foff];
5298552f7358SJed Brown   if (!fcdof || setBC) {
529997e99dd9SToby Isaac     if (clperm) {
530097e99dd9SToby Isaac       if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));}}
530197e99dd9SToby Isaac       else      {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));}}
5302552f7358SJed Brown     } else {
530397e99dd9SToby Isaac       if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));}}
530497e99dd9SToby Isaac       else      {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));}}
5305552f7358SJed Brown     }
5306552f7358SJed Brown   } else {
5307552f7358SJed Brown     ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
530897e99dd9SToby Isaac     if (clperm) {
530997e99dd9SToby Isaac       if (perm) {
531097e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
531197e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
531297e99dd9SToby Isaac           fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));
5313552f7358SJed Brown         }
5314552f7358SJed Brown       } else {
531597e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
531697e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
531797e99dd9SToby Isaac           fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));
531897e99dd9SToby Isaac         }
531997e99dd9SToby Isaac       }
532097e99dd9SToby Isaac     } else {
532197e99dd9SToby Isaac       if (perm) {
532297e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
532397e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
532497e99dd9SToby Isaac           fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));
532597e99dd9SToby Isaac         }
532697e99dd9SToby Isaac       } else {
532797e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
532897e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
532997e99dd9SToby Isaac           fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));
5330552f7358SJed Brown         }
5331552f7358SJed Brown       }
5332552f7358SJed Brown     }
5333552f7358SJed Brown   }
53341a271a75SMatthew G. Knepley   *offset += fdof;
5335552f7358SJed Brown   PetscFunctionReturn(0);
5336552f7358SJed Brown }
5337552f7358SJed Brown 
5338ba322698SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode updatePointFieldsBC_private(PetscSection section, PetscInt point, const PetscInt perm[], const PetscScalar flip[], PetscInt f, PetscInt Ncc, const PetscInt comps[], void (*fuse)(PetscScalar*, PetscScalar), const PetscInt clperm[], const PetscScalar values[], PetscInt *offset, PetscScalar array[])
5339a5e93ea8SMatthew G. Knepley {
5340a5e93ea8SMatthew G. Knepley   PetscScalar    *a;
53411a271a75SMatthew G. Knepley   PetscInt        fdof, foff, fcdof, foffset = *offset;
53421a271a75SMatthew G. Knepley   const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
53435da9d227SMatthew G. Knepley   PetscInt        Nc, cind = 0, ncind = 0, b;
5344ba322698SMatthew G. Knepley   PetscBool       ncSet, fcSet;
5345a5e93ea8SMatthew G. Knepley   PetscErrorCode  ierr;
5346a5e93ea8SMatthew G. Knepley 
5347a5e93ea8SMatthew G. Knepley   PetscFunctionBegin;
53485da9d227SMatthew G. Knepley   ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr);
5349a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
5350a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr);
53511a271a75SMatthew G. Knepley   ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
53521a271a75SMatthew G. Knepley   a    = &array[foff];
5353a5e93ea8SMatthew G. Knepley   if (fcdof) {
5354ba322698SMatthew G. Knepley     /* We just override fcdof and fcdofs with Ncc and comps */
5355a5e93ea8SMatthew G. Knepley     ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
535697e99dd9SToby Isaac     if (clperm) {
535797e99dd9SToby Isaac       if (perm) {
5358ba322698SMatthew G. Knepley         if (comps) {
5359ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
5360ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
53615da9d227SMatthew G. Knepley             if (b%Nc == comps[ncind]) {ncind = (ncind+1)%Ncc; ncSet = PETSC_TRUE;}
5362ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
5363ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));}
5364ba322698SMatthew G. Knepley           }
5365ba322698SMatthew G. Knepley         } else {
536697e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
536797e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
536897e99dd9SToby Isaac               fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));
5369a5e93ea8SMatthew G. Knepley               ++cind;
5370a5e93ea8SMatthew G. Knepley             }
5371a5e93ea8SMatthew G. Knepley           }
5372ba322698SMatthew G. Knepley         }
5373ba322698SMatthew G. Knepley       } else {
5374ba322698SMatthew G. Knepley         if (comps) {
5375ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
5376ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
53775da9d227SMatthew G. Knepley             if (b%Nc == comps[ncind]) {ncind = (ncind+1)%Ncc; ncSet = PETSC_TRUE;}
5378ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
5379ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));}
5380ba322698SMatthew G. Knepley           }
5381a5e93ea8SMatthew G. Knepley         } else {
538297e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
538397e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
538497e99dd9SToby Isaac               fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));
538597e99dd9SToby Isaac               ++cind;
538697e99dd9SToby Isaac             }
538797e99dd9SToby Isaac           }
538897e99dd9SToby Isaac         }
5389ba322698SMatthew G. Knepley       }
539097e99dd9SToby Isaac     } else {
539197e99dd9SToby Isaac       if (perm) {
5392ba322698SMatthew G. Knepley         if (comps) {
5393ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
5394ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
53955da9d227SMatthew G. Knepley             if (b%Nc == comps[ncind]) {ncind = (ncind+1)%Ncc; ncSet = PETSC_TRUE;}
5396ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
5397ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));}
5398ba322698SMatthew G. Knepley           }
5399ba322698SMatthew G. Knepley         } else {
540097e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
540197e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
540297e99dd9SToby Isaac               fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));
540397e99dd9SToby Isaac               ++cind;
540497e99dd9SToby Isaac             }
540597e99dd9SToby Isaac           }
5406ba322698SMatthew G. Knepley         }
5407ba322698SMatthew G. Knepley       } else {
5408ba322698SMatthew G. Knepley         if (comps) {
5409ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
5410ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
54115da9d227SMatthew G. Knepley             if (b%Nc == comps[ncind]) {ncind = (ncind+1)%Ncc; ncSet = PETSC_TRUE;}
5412ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
5413ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));}
5414ba322698SMatthew G. Knepley           }
541597e99dd9SToby Isaac         } else {
541697e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
541797e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
541897e99dd9SToby Isaac               fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));
5419a5e93ea8SMatthew G. Knepley               ++cind;
5420a5e93ea8SMatthew G. Knepley             }
5421a5e93ea8SMatthew G. Knepley           }
5422a5e93ea8SMatthew G. Knepley         }
5423a5e93ea8SMatthew G. Knepley       }
5424a5e93ea8SMatthew G. Knepley     }
5425ba322698SMatthew G. Knepley   }
54261a271a75SMatthew G. Knepley   *offset += fdof;
5427a5e93ea8SMatthew G. Knepley   PetscFunctionReturn(0);
5428a5e93ea8SMatthew G. Knepley }
5429a5e93ea8SMatthew G. Knepley 
54308f3be42fSMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecSetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode)
5431a6dfd86eSKarl Rupp {
5432552f7358SJed Brown   PetscScalar    *array;
54331b406b76SMatthew G. Knepley   const PetscInt *cone, *coneO;
54341b406b76SMatthew G. Knepley   PetscInt        pStart, pEnd, p, numPoints, off, dof;
5435552f7358SJed Brown   PetscErrorCode  ierr;
5436552f7358SJed Brown 
54371b406b76SMatthew G. Knepley   PetscFunctionBeginHot;
5438b6ebb6e6SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
5439b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr);
5440b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
5441b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr);
5442b6ebb6e6SMatthew G. Knepley   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
5443b6ebb6e6SMatthew G. Knepley   for (p = 0, off = 0; p <= numPoints; ++p, off += dof) {
5444b6ebb6e6SMatthew G. Knepley     const PetscInt cp = !p ? point : cone[p-1];
5445b6ebb6e6SMatthew G. Knepley     const PetscInt o  = !p ? 0     : coneO[p-1];
5446b6ebb6e6SMatthew G. Knepley 
5447b6ebb6e6SMatthew G. Knepley     if ((cp < pStart) || (cp >= pEnd)) {dof = 0; continue;}
5448b6ebb6e6SMatthew G. Knepley     ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
5449b6ebb6e6SMatthew G. Knepley     /* ADD_VALUES */
5450b6ebb6e6SMatthew G. Knepley     {
5451b6ebb6e6SMatthew G. Knepley       const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
5452b6ebb6e6SMatthew G. Knepley       PetscScalar    *a;
5453b6ebb6e6SMatthew G. Knepley       PetscInt        cdof, coff, cind = 0, k;
5454b6ebb6e6SMatthew G. Knepley 
5455b6ebb6e6SMatthew G. Knepley       ierr = PetscSectionGetConstraintDof(section, cp, &cdof);CHKERRQ(ierr);
5456b6ebb6e6SMatthew G. Knepley       ierr = PetscSectionGetOffset(section, cp, &coff);CHKERRQ(ierr);
5457b6ebb6e6SMatthew G. Knepley       a    = &array[coff];
5458b6ebb6e6SMatthew G. Knepley       if (!cdof) {
5459b6ebb6e6SMatthew G. Knepley         if (o >= 0) {
5460b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
5461b6ebb6e6SMatthew G. Knepley             a[k] += values[off+k];
5462b6ebb6e6SMatthew G. Knepley           }
5463b6ebb6e6SMatthew G. Knepley         } else {
5464b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
5465b6ebb6e6SMatthew G. Knepley             a[k] += values[off+dof-k-1];
5466b6ebb6e6SMatthew G. Knepley           }
5467b6ebb6e6SMatthew G. Knepley         }
5468b6ebb6e6SMatthew G. Knepley       } else {
5469b6ebb6e6SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(section, cp, &cdofs);CHKERRQ(ierr);
5470b6ebb6e6SMatthew G. Knepley         if (o >= 0) {
5471b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
5472b6ebb6e6SMatthew G. Knepley             if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
5473b6ebb6e6SMatthew G. Knepley             a[k] += values[off+k];
5474b6ebb6e6SMatthew G. Knepley           }
5475b6ebb6e6SMatthew G. Knepley         } else {
5476b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
5477b6ebb6e6SMatthew G. Knepley             if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
5478b6ebb6e6SMatthew G. Knepley             a[k] += values[off+dof-k-1];
5479b6ebb6e6SMatthew G. Knepley           }
5480b6ebb6e6SMatthew G. Knepley         }
5481b6ebb6e6SMatthew G. Knepley       }
5482b6ebb6e6SMatthew G. Knepley     }
5483b6ebb6e6SMatthew G. Knepley   }
5484b6ebb6e6SMatthew G. Knepley   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
5485b6ebb6e6SMatthew G. Knepley   PetscFunctionReturn(0);
5486b6ebb6e6SMatthew G. Knepley }
54871b406b76SMatthew G. Knepley 
54881b406b76SMatthew G. Knepley /*@C
54891b406b76SMatthew G. Knepley   DMPlexVecSetClosure - Set an array of the values on the closure of 'point'
54901b406b76SMatthew G. Knepley 
54911b406b76SMatthew G. Knepley   Not collective
54921b406b76SMatthew G. Knepley 
54931b406b76SMatthew G. Knepley   Input Parameters:
54941b406b76SMatthew G. Knepley + dm - The DM
54951b406b76SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section
54961b406b76SMatthew G. Knepley . v - The local vector
5497eaf898f9SPatrick Sanan . point - The point in the DM
54981b406b76SMatthew G. Knepley . values - The array of values
549922c1ee49SMatthew G. Knepley - mode - The insert mode. One of INSERT_ALL_VALUES, ADD_ALL_VALUES, INSERT_VALUES, ADD_VALUES, INSERT_BC_VALUES, and ADD_BC_VALUES,
550022c1ee49SMatthew G. Knepley          where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions.
55011b406b76SMatthew G. Knepley 
55021b406b76SMatthew G. Knepley   Fortran Notes:
55031b406b76SMatthew G. Knepley   This routine is only available in Fortran 90, and you must include petsc.h90 in your code.
55041b406b76SMatthew G. Knepley 
55051b406b76SMatthew G. Knepley   Level: intermediate
55061b406b76SMatthew G. Knepley 
55071b406b76SMatthew G. Knepley .seealso DMPlexVecGetClosure(), DMPlexMatSetClosure()
55081b406b76SMatthew G. Knepley @*/
55091b406b76SMatthew G. Knepley PetscErrorCode DMPlexVecSetClosure(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode)
55101b406b76SMatthew G. Knepley {
55111b406b76SMatthew G. Knepley   PetscSection    clSection;
55121b406b76SMatthew G. Knepley   IS              clPoints;
55131b406b76SMatthew G. Knepley   PetscScalar    *array;
55141b406b76SMatthew G. Knepley   PetscInt       *points = NULL;
551527f02ce8SMatthew G. Knepley   const PetscInt *clp, *clperm = NULL;
5516c459fbc1SJed Brown   PetscInt        depth, numFields, numPoints, p, clsize;
55171b406b76SMatthew G. Knepley   PetscErrorCode  ierr;
55181b406b76SMatthew G. Knepley 
55191a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
55201b406b76SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
552192fd8e1eSJed Brown   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
55221a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
55231a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
55241b406b76SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
55251b406b76SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
55261b406b76SMatthew G. Knepley   if (depth == 1 && numFields < 2 && mode == ADD_VALUES) {
55278f3be42fSMatthew G. Knepley     ierr = DMPlexVecSetClosure_Depth1_Static(dm, section, v, point, values, mode);CHKERRQ(ierr);
55281b406b76SMatthew G. Knepley     PetscFunctionReturn(0);
55291b406b76SMatthew G. Knepley   }
55301a271a75SMatthew G. Knepley   /* Get points */
5531923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5532c459fbc1SJed Brown   for (clsize=0,p=0; p<numPoints; p++) {
5533c459fbc1SJed Brown     PetscInt dof;
5534c459fbc1SJed Brown     ierr = PetscSectionGetDof(section, points[2*p], &dof);CHKERRQ(ierr);
5535c459fbc1SJed Brown     clsize += dof;
5536c459fbc1SJed Brown   }
5537c459fbc1SJed Brown   ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, depth, clsize, &clperm);CHKERRQ(ierr);
55381a271a75SMatthew G. Knepley   /* Get array */
5539552f7358SJed Brown   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
55401a271a75SMatthew G. Knepley   /* Get values */
5541ef90cfe2SMatthew G. Knepley   if (numFields > 0) {
554297e99dd9SToby Isaac     PetscInt offset = 0, f;
5543552f7358SJed Brown     for (f = 0; f < numFields; ++f) {
554497e99dd9SToby Isaac       const PetscInt    **perms = NULL;
554597e99dd9SToby Isaac       const PetscScalar **flips = NULL;
554697e99dd9SToby Isaac 
554797e99dd9SToby Isaac       ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5548552f7358SJed Brown       switch (mode) {
5549552f7358SJed Brown       case INSERT_VALUES:
555097e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
555197e99dd9SToby Isaac           const PetscInt    point = points[2*p];
555297e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
555397e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
555497e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, clperm, values, &offset, array);
5555552f7358SJed Brown         } break;
5556552f7358SJed Brown       case INSERT_ALL_VALUES:
555797e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
555897e99dd9SToby Isaac           const PetscInt    point = points[2*p];
555997e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
556097e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
556197e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, clperm, values, &offset, array);
5562552f7358SJed Brown         } break;
5563a5e93ea8SMatthew G. Knepley       case INSERT_BC_VALUES:
556497e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
556597e99dd9SToby Isaac           const PetscInt    point = points[2*p];
556697e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
556797e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
5568ba322698SMatthew G. Knepley           updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, insert, clperm, values, &offset, array);
5569a5e93ea8SMatthew G. Knepley         } break;
5570552f7358SJed Brown       case ADD_VALUES:
557197e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
557297e99dd9SToby Isaac           const PetscInt    point = points[2*p];
557397e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
557497e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
557597e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, clperm, values, &offset, array);
5576552f7358SJed Brown         } break;
5577552f7358SJed Brown       case ADD_ALL_VALUES:
557897e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
557997e99dd9SToby Isaac           const PetscInt    point = points[2*p];
558097e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
558197e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
558297e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, clperm, values, &offset, array);
5583552f7358SJed Brown         } break;
5584304ab55fSMatthew G. Knepley       case ADD_BC_VALUES:
558597e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
558697e99dd9SToby Isaac           const PetscInt    point = points[2*p];
558797e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
558897e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
5589ba322698SMatthew G. Knepley           updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, add, clperm, values, &offset, array);
5590304ab55fSMatthew G. Knepley         } break;
5591552f7358SJed Brown       default:
5592f347f43bSBarry Smith         SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
5593552f7358SJed Brown       }
559497e99dd9SToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
55951a271a75SMatthew G. Knepley     }
5596552f7358SJed Brown   } else {
55971a271a75SMatthew G. Knepley     PetscInt dof, off;
559897e99dd9SToby Isaac     const PetscInt    **perms = NULL;
559997e99dd9SToby Isaac     const PetscScalar **flips = NULL;
56001a271a75SMatthew G. Knepley 
560197e99dd9SToby Isaac     ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5602552f7358SJed Brown     switch (mode) {
5603552f7358SJed Brown     case INSERT_VALUES:
560497e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
560597e99dd9SToby Isaac         const PetscInt    point = points[2*p];
560697e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
560797e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
560897e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
560997e99dd9SToby Isaac         updatePoint_private(section, point, dof, insert, PETSC_FALSE, perm, flip, clperm, values, off, array);
5610552f7358SJed Brown       } break;
5611552f7358SJed Brown     case INSERT_ALL_VALUES:
561297e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
561397e99dd9SToby Isaac         const PetscInt    point = points[2*p];
561497e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
561597e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
561697e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
561797e99dd9SToby Isaac         updatePoint_private(section, point, dof, insert, PETSC_TRUE,  perm, flip, clperm, values, off, array);
5618552f7358SJed Brown       } break;
5619a5e93ea8SMatthew G. Knepley     case INSERT_BC_VALUES:
562097e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
562197e99dd9SToby Isaac         const PetscInt    point = points[2*p];
562297e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
562397e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
562497e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
562597e99dd9SToby Isaac         updatePointBC_private(section, point, dof, insert,  perm, flip, clperm, values, off, array);
5626a5e93ea8SMatthew G. Knepley       } break;
5627552f7358SJed Brown     case ADD_VALUES:
562897e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
562997e99dd9SToby Isaac         const PetscInt    point = points[2*p];
563097e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
563197e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
563297e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
563397e99dd9SToby Isaac         updatePoint_private(section, point, dof, add,    PETSC_FALSE, perm, flip, clperm, values, off, array);
5634552f7358SJed Brown       } break;
5635552f7358SJed Brown     case ADD_ALL_VALUES:
563697e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
563797e99dd9SToby Isaac         const PetscInt    point = points[2*p];
563897e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
563997e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
564097e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
564197e99dd9SToby Isaac         updatePoint_private(section, point, dof, add,    PETSC_TRUE,  perm, flip, clperm, values, off, array);
5642552f7358SJed Brown       } break;
5643304ab55fSMatthew G. Knepley     case ADD_BC_VALUES:
564497e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
564597e99dd9SToby Isaac         const PetscInt    point = points[2*p];
564697e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
564797e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
564897e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
564997e99dd9SToby Isaac         updatePointBC_private(section, point, dof, add,  perm, flip, clperm, values, off, array);
5650304ab55fSMatthew G. Knepley       } break;
5651552f7358SJed Brown     default:
5652f347f43bSBarry Smith       SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
5653552f7358SJed Brown     }
565497e99dd9SToby Isaac     ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5655552f7358SJed Brown   }
56561a271a75SMatthew G. Knepley   /* Cleanup points */
5657923c78e0SToby Isaac   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
56581a271a75SMatthew G. Knepley   /* Cleanup array */
5659552f7358SJed Brown   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
5660552f7358SJed Brown   PetscFunctionReturn(0);
5661552f7358SJed Brown }
5662552f7358SJed Brown 
56635f790a90SMatthew G. Knepley /* Check whether the given point is in the label. If not, update the offset to skip this point */
56645f790a90SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode CheckPoint_Private(DMLabel label, PetscInt labelId, PetscSection section, PetscInt point, PetscInt f, PetscInt *offset)
56655f790a90SMatthew G. Knepley {
56665f790a90SMatthew G. Knepley   PetscFunctionBegin;
56675f790a90SMatthew G. Knepley   if (label) {
56685f790a90SMatthew G. Knepley     PetscInt       val, fdof;
56695f790a90SMatthew G. Knepley     PetscErrorCode ierr;
56705f790a90SMatthew G. Knepley 
56715f790a90SMatthew G. Knepley     /* There is a problem with this:
56725f790a90SMatthew G. Knepley          Suppose we have two label values, defining surfaces, interecting along a line in 3D. When we add cells to the label, the cells that
56735f790a90SMatthew G. Knepley        touch both surfaces must pick a label value. Thus we miss setting values for the surface with that other value intersecting that cell.
56745f790a90SMatthew G. Knepley        Thus I am only going to check val != -1, not val != labelId
56755f790a90SMatthew G. Knepley     */
56765f790a90SMatthew G. Knepley     ierr = DMLabelGetValue(label, point, &val);CHKERRQ(ierr);
56775f790a90SMatthew G. Knepley     if (val < 0) {
56785f790a90SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
56795f790a90SMatthew G. Knepley       *offset += fdof;
56805f790a90SMatthew G. Knepley       PetscFunctionReturn(1);
56815f790a90SMatthew G. Knepley     }
56825f790a90SMatthew G. Knepley   }
56835f790a90SMatthew G. Knepley   PetscFunctionReturn(0);
56845f790a90SMatthew G. Knepley }
56855f790a90SMatthew G. Knepley 
568697529cf3SJed Brown /* Unlike DMPlexVecSetClosure(), this uses plex-native closure permutation, not a user-specified permutation such as DMPlexSetClosurePermutationTensor(). */
56875f790a90SMatthew G. Knepley PetscErrorCode DMPlexVecSetFieldClosure_Internal(DM dm, PetscSection section, Vec v, PetscBool fieldActive[], PetscInt point, PetscInt Ncc, const PetscInt comps[], DMLabel label, PetscInt labelId, const PetscScalar values[], InsertMode mode)
5688e07394fbSMatthew G. Knepley {
5689e07394fbSMatthew G. Knepley   PetscSection      clSection;
5690e07394fbSMatthew G. Knepley   IS                clPoints;
5691e07394fbSMatthew G. Knepley   PetscScalar       *array;
5692e07394fbSMatthew G. Knepley   PetscInt          *points = NULL;
569397529cf3SJed Brown   const PetscInt    *clp;
5694e07394fbSMatthew G. Knepley   PetscInt          numFields, numPoints, p;
569597e99dd9SToby Isaac   PetscInt          offset = 0, f;
5696e07394fbSMatthew G. Knepley   PetscErrorCode    ierr;
5697e07394fbSMatthew G. Knepley 
5698e07394fbSMatthew G. Knepley   PetscFunctionBeginHot;
5699e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
570092fd8e1eSJed Brown   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
5701e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
5702e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
5703e07394fbSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5704e07394fbSMatthew G. Knepley   /* Get points */
5705923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5706e07394fbSMatthew G. Knepley   /* Get array */
5707e07394fbSMatthew G. Knepley   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
5708e07394fbSMatthew G. Knepley   /* Get values */
5709e07394fbSMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
571097e99dd9SToby Isaac     const PetscInt    **perms = NULL;
571197e99dd9SToby Isaac     const PetscScalar **flips = NULL;
571297e99dd9SToby Isaac 
5713e07394fbSMatthew G. Knepley     if (!fieldActive[f]) {
5714e07394fbSMatthew G. Knepley       for (p = 0; p < numPoints*2; p += 2) {
5715e07394fbSMatthew G. Knepley         PetscInt fdof;
5716e07394fbSMatthew G. Knepley         ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr);
5717e07394fbSMatthew G. Knepley         offset += fdof;
5718e07394fbSMatthew G. Knepley       }
5719e07394fbSMatthew G. Knepley       continue;
5720e07394fbSMatthew G. Knepley     }
572197e99dd9SToby Isaac     ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5722e07394fbSMatthew G. Knepley     switch (mode) {
5723e07394fbSMatthew G. Knepley     case INSERT_VALUES:
572497e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
572597e99dd9SToby Isaac         const PetscInt    point = points[2*p];
572697e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
572797e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
57285f790a90SMatthew G. Knepley         ierr = CheckPoint_Private(label, labelId, section, point, f, &offset); if (ierr) continue;
572997529cf3SJed Brown         updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, NULL, values, &offset, array);
5730e07394fbSMatthew G. Knepley       } break;
5731e07394fbSMatthew G. Knepley     case INSERT_ALL_VALUES:
573297e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
573397e99dd9SToby Isaac         const PetscInt    point = points[2*p];
573497e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
573597e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
57365f790a90SMatthew G. Knepley         ierr = CheckPoint_Private(label, labelId, section, point, f, &offset); if (ierr) continue;
573797529cf3SJed Brown         updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, NULL, values, &offset, array);
5738e07394fbSMatthew G. Knepley       } break;
5739e07394fbSMatthew G. Knepley     case INSERT_BC_VALUES:
574097e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
574197e99dd9SToby Isaac         const PetscInt    point = points[2*p];
574297e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
574397e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
57445f790a90SMatthew G. Knepley         ierr = CheckPoint_Private(label, labelId, section, point, f, &offset); if (ierr) continue;
574597529cf3SJed Brown         updatePointFieldsBC_private(section, point, perm, flip, f, Ncc, comps, insert, NULL, values, &offset, array);
5746e07394fbSMatthew G. Knepley       } break;
5747e07394fbSMatthew G. Knepley     case ADD_VALUES:
574897e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
574997e99dd9SToby Isaac         const PetscInt    point = points[2*p];
575097e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
575197e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
57525f790a90SMatthew G. Knepley         ierr = CheckPoint_Private(label, labelId, section, point, f, &offset); if (ierr) continue;
575397529cf3SJed Brown         updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, NULL, values, &offset, array);
5754e07394fbSMatthew G. Knepley       } break;
5755e07394fbSMatthew G. Knepley     case ADD_ALL_VALUES:
575697e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
575797e99dd9SToby Isaac         const PetscInt    point = points[2*p];
575897e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
575997e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
57605f790a90SMatthew G. Knepley         ierr = CheckPoint_Private(label, labelId, section, point, f, &offset); if (ierr) continue;
576197529cf3SJed Brown         updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, NULL, values, &offset, array);
5762e07394fbSMatthew G. Knepley       } break;
5763e07394fbSMatthew G. Knepley     default:
5764f347f43bSBarry Smith       SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
5765e07394fbSMatthew G. Knepley     }
576697e99dd9SToby Isaac     ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5767e07394fbSMatthew G. Knepley   }
5768e07394fbSMatthew G. Knepley   /* Cleanup points */
5769923c78e0SToby Isaac   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5770e07394fbSMatthew G. Knepley   /* Cleanup array */
5771e07394fbSMatthew G. Knepley   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
5772e07394fbSMatthew G. Knepley   PetscFunctionReturn(0);
5773e07394fbSMatthew G. Knepley }
5774e07394fbSMatthew G. Knepley 
57757cd05799SMatthew G. Knepley static PetscErrorCode DMPlexPrintMatSetValues(PetscViewer viewer, Mat A, PetscInt point, PetscInt numRIndices, const PetscInt rindices[], PetscInt numCIndices, const PetscInt cindices[], const PetscScalar values[])
5776552f7358SJed Brown {
5777552f7358SJed Brown   PetscMPIInt    rank;
5778552f7358SJed Brown   PetscInt       i, j;
5779552f7358SJed Brown   PetscErrorCode ierr;
5780552f7358SJed Brown 
5781552f7358SJed Brown   PetscFunctionBegin;
5782ffc4695bSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRMPI(ierr);
5783eaf898f9SPatrick Sanan   ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat for point %D\n", rank, point);CHKERRQ(ierr);
5784e4b003c7SBarry Smith   for (i = 0; i < numRIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat row indices[%D] = %D\n", rank, i, rindices[i]);CHKERRQ(ierr);}
5785e4b003c7SBarry Smith   for (i = 0; i < numCIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat col indices[%D] = %D\n", rank, i, cindices[i]);CHKERRQ(ierr);}
5786b0ecff45SMatthew G. Knepley   numCIndices = numCIndices ? numCIndices : numRIndices;
5787557cf195SMatthew G. Knepley   if (!values) PetscFunctionReturn(0);
5788b0ecff45SMatthew G. Knepley   for (i = 0; i < numRIndices; i++) {
5789e4b003c7SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer, "[%d]", rank);CHKERRQ(ierr);
5790b0ecff45SMatthew G. Knepley     for (j = 0; j < numCIndices; j++) {
5791519f805aSKarl Rupp #if defined(PETSC_USE_COMPLEX)
57927eba1a17SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, " (%g,%g)", (double)PetscRealPart(values[i*numCIndices+j]), (double)PetscImaginaryPart(values[i*numCIndices+j]));CHKERRQ(ierr);
5793552f7358SJed Brown #else
5794b0ecff45SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, " %g", (double)values[i*numCIndices+j]);CHKERRQ(ierr);
5795552f7358SJed Brown #endif
5796552f7358SJed Brown     }
579777a6746dSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
5798552f7358SJed Brown   }
5799552f7358SJed Brown   PetscFunctionReturn(0);
5800552f7358SJed Brown }
5801552f7358SJed Brown 
580205586334SMatthew G. Knepley /*
580305586334SMatthew G. Knepley   DMPlexGetIndicesPoint_Internal - Add the indices for dofs on a point to an index array
580405586334SMatthew G. Knepley 
580505586334SMatthew G. Knepley   Input Parameters:
580605586334SMatthew G. Knepley + section - The section for this data layout
580736fa2b79SJed Brown . islocal - Is the section (and thus indices being requested) local or global?
580805586334SMatthew G. Knepley . point   - The point contributing dofs with these indices
580905586334SMatthew G. Knepley . off     - The global offset of this point
581005586334SMatthew G. Knepley . loff    - The local offset of each field
581105586334SMatthew G. Knepley . setBC   - The flag determining whether to include indices of bounsary values
581205586334SMatthew G. Knepley . perm    - A permutation of the dofs on this point, or NULL
581305586334SMatthew G. Knepley - indperm - A permutation of the entire indices array, or NULL
581405586334SMatthew G. Knepley 
581505586334SMatthew G. Knepley   Output Parameter:
581605586334SMatthew G. Knepley . indices - Indices for dofs on this point
581705586334SMatthew G. Knepley 
581805586334SMatthew G. Knepley   Level: developer
581905586334SMatthew G. Knepley 
582005586334SMatthew G. Knepley   Note: The indices could be local or global, depending on the value of 'off'.
582105586334SMatthew G. Knepley */
582236fa2b79SJed Brown PetscErrorCode DMPlexGetIndicesPoint_Internal(PetscSection section, PetscBool islocal,PetscInt point, PetscInt off, PetscInt *loff, PetscBool setBC, const PetscInt perm[], const PetscInt indperm[], PetscInt indices[])
5823a6dfd86eSKarl Rupp {
5824e6ccafaeSMatthew G Knepley   PetscInt        dof;   /* The number of unknowns on this point */
5825552f7358SJed Brown   PetscInt        cdof;  /* The number of constraints on this point */
5826552f7358SJed Brown   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
5827552f7358SJed Brown   PetscInt        cind = 0, k;
5828552f7358SJed Brown   PetscErrorCode  ierr;
5829552f7358SJed Brown 
5830552f7358SJed Brown   PetscFunctionBegin;
583136fa2b79SJed Brown   if (!islocal && setBC) SETERRQ(PetscObjectComm((PetscObject)section),PETSC_ERR_ARG_INCOMP,"setBC incompatible with global indices; use a local section or disable setBC");
5832552f7358SJed Brown   ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
5833552f7358SJed Brown   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
5834552f7358SJed Brown   if (!cdof || setBC) {
583505586334SMatthew G. Knepley     for (k = 0; k < dof; ++k) {
583605586334SMatthew G. Knepley       const PetscInt preind = perm ? *loff+perm[k] : *loff+k;
583705586334SMatthew G. Knepley       const PetscInt ind    = indperm ? indperm[preind] : preind;
583805586334SMatthew G. Knepley 
583905586334SMatthew G. Knepley       indices[ind] = off + k;
5840552f7358SJed Brown     }
5841552f7358SJed Brown   } else {
5842552f7358SJed Brown     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
58434acb8e1eSToby Isaac     for (k = 0; k < dof; ++k) {
584405586334SMatthew G. Knepley       const PetscInt preind = perm ? *loff+perm[k] : *loff+k;
584505586334SMatthew G. Knepley       const PetscInt ind    = indperm ? indperm[preind] : preind;
584605586334SMatthew G. Knepley 
58474acb8e1eSToby Isaac       if ((cind < cdof) && (k == cdofs[cind])) {
58484acb8e1eSToby Isaac         /* Insert check for returning constrained indices */
584905586334SMatthew G. Knepley         indices[ind] = -(off+k+1);
58504acb8e1eSToby Isaac         ++cind;
58514acb8e1eSToby Isaac       } else {
585236fa2b79SJed Brown         indices[ind] = off + k - (islocal ? 0 : cind);
5853552f7358SJed Brown       }
5854552f7358SJed Brown     }
5855552f7358SJed Brown   }
5856e6ccafaeSMatthew G Knepley   *loff += dof;
5857552f7358SJed Brown   PetscFunctionReturn(0);
5858552f7358SJed Brown }
5859552f7358SJed Brown 
58607e29afd2SMatthew G. Knepley /*
586136fa2b79SJed Brown  DMPlexGetIndicesPointFields_Internal - gets section indices for a point in its canonical ordering.
58627e29afd2SMatthew G. Knepley 
586336fa2b79SJed Brown  Input Parameters:
586436fa2b79SJed Brown + section - a section (global or local)
586536fa2b79SJed Brown - islocal - PETSC_TRUE if requesting local indices (i.e., section is local); PETSC_FALSE for global
586636fa2b79SJed Brown . point - point within section
586736fa2b79SJed Brown . off - The offset of this point in the (local or global) indexed space - should match islocal and (usually) the section
586836fa2b79SJed Brown . foffs - array of length numFields containing the offset in canonical point ordering (the location in indices) of each field
586936fa2b79SJed Brown . setBC - identify constrained (boundary condition) points via involution.
587036fa2b79SJed Brown . perms - perms[f][permsoff][:] is a permutation of dofs within each field
587136fa2b79SJed Brown . permsoff - offset
587236fa2b79SJed Brown - indperm - index permutation
587336fa2b79SJed Brown 
587436fa2b79SJed Brown  Output Parameter:
587536fa2b79SJed Brown . foffs - each entry is incremented by the number of (unconstrained if setBC=FALSE) dofs in that field
587636fa2b79SJed Brown . indices - array to hold indices (as defined by section) of each dof associated with point
587736fa2b79SJed Brown 
587836fa2b79SJed Brown  Notes:
587936fa2b79SJed Brown  If section is local and setBC=true, there is no distinction between constrained and unconstrained dofs.
588036fa2b79SJed Brown  If section is local and setBC=false, the indices for constrained points are the involution -(i+1) of their position
588136fa2b79SJed Brown  in the local vector.
588236fa2b79SJed Brown 
588336fa2b79SJed Brown  If section is global and setBC=false, the indices for constrained points are negative (and their value is not
588436fa2b79SJed Brown  significant).  It is invalid to call with a global section and setBC=true.
588536fa2b79SJed Brown 
588636fa2b79SJed Brown  Developer Note:
588736fa2b79SJed Brown  The section is only used for field layout, so islocal is technically a statement about the offset (off).  At some point
588836fa2b79SJed Brown  in the future, global sections may have fields set, in which case we could pass the global section and obtain the
588936fa2b79SJed Brown  offset could be obtained from the section instead of passing it explicitly as we do now.
589036fa2b79SJed Brown 
589136fa2b79SJed Brown  Example:
589236fa2b79SJed Brown  Suppose a point contains one field with three components, and for which the unconstrained indices are {10, 11, 12}.
589336fa2b79SJed Brown  When the middle component is constrained, we get the array {10, -12, 12} for (islocal=TRUE, setBC=FALSE).
589436fa2b79SJed Brown  Note that -12 is the involution of 11, so the user can involute negative indices to recover local indices.
589536fa2b79SJed Brown  The global vector does not store constrained dofs, so when this function returns global indices, say {110, -112, 111}, the value of -112 is an arbitrary flag that should not be interpreted beyond its sign.
589636fa2b79SJed Brown 
589736fa2b79SJed Brown  Level: developer
58987e29afd2SMatthew G. Knepley */
589936fa2b79SJed Brown PetscErrorCode DMPlexGetIndicesPointFields_Internal(PetscSection section, PetscBool islocal, PetscInt point, PetscInt off, PetscInt foffs[], PetscBool setBC, const PetscInt ***perms, PetscInt permsoff, const PetscInt indperm[], PetscInt indices[])
5900a6dfd86eSKarl Rupp {
5901552f7358SJed Brown   PetscInt       numFields, foff, f;
5902552f7358SJed Brown   PetscErrorCode ierr;
5903552f7358SJed Brown 
5904552f7358SJed Brown   PetscFunctionBegin;
590536fa2b79SJed Brown   if (!islocal && setBC) SETERRQ(PetscObjectComm((PetscObject)section),PETSC_ERR_ARG_INCOMP,"setBC incompatible with global indices; use a local section or disable setBC");
5906552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5907552f7358SJed Brown   for (f = 0, foff = 0; f < numFields; ++f) {
59084acb8e1eSToby Isaac     PetscInt        fdof, cfdof;
5909552f7358SJed Brown     const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
59104acb8e1eSToby Isaac     PetscInt        cind = 0, b;
59114acb8e1eSToby Isaac     const PetscInt  *perm = (perms && perms[f]) ? perms[f][permsoff] : NULL;
5912552f7358SJed Brown 
5913552f7358SJed Brown     ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
5914552f7358SJed Brown     ierr = PetscSectionGetFieldConstraintDof(section, point, f, &cfdof);CHKERRQ(ierr);
5915552f7358SJed Brown     if (!cfdof || setBC) {
591605586334SMatthew G. Knepley       for (b = 0; b < fdof; ++b) {
591705586334SMatthew G. Knepley         const PetscInt preind = perm ? foffs[f]+perm[b] : foffs[f]+b;
591805586334SMatthew G. Knepley         const PetscInt ind    = indperm ? indperm[preind] : preind;
591905586334SMatthew G. Knepley 
592005586334SMatthew G. Knepley         indices[ind] = off+foff+b;
592105586334SMatthew G. Knepley       }
5922552f7358SJed Brown     } else {
5923552f7358SJed Brown       ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
592405586334SMatthew G. Knepley       for (b = 0; b < fdof; ++b) {
592505586334SMatthew G. Knepley         const PetscInt preind = perm ? foffs[f]+perm[b] : foffs[f]+b;
592605586334SMatthew G. Knepley         const PetscInt ind    = indperm ? indperm[preind] : preind;
592705586334SMatthew G. Knepley 
59284acb8e1eSToby Isaac         if ((cind < cfdof) && (b == fcdofs[cind])) {
592905586334SMatthew G. Knepley           indices[ind] = -(off+foff+b+1);
5930552f7358SJed Brown           ++cind;
5931552f7358SJed Brown         } else {
593236fa2b79SJed Brown           indices[ind] = off + foff + b - (islocal ? 0 : cind);
5933552f7358SJed Brown         }
5934552f7358SJed Brown       }
5935552f7358SJed Brown     }
593636fa2b79SJed Brown     foff     += (setBC || islocal ? fdof : (fdof - cfdof));
5937552f7358SJed Brown     foffs[f] += fdof;
5938552f7358SJed Brown   }
5939552f7358SJed Brown   PetscFunctionReturn(0);
5940552f7358SJed Brown }
5941552f7358SJed Brown 
59427e29afd2SMatthew G. Knepley /*
59437e29afd2SMatthew G. Knepley   This version believes the globalSection offsets for each field, rather than just the point offset
59447e29afd2SMatthew G. Knepley 
59457e29afd2SMatthew G. Knepley  . foffs - The offset into 'indices' for each field, since it is segregated by field
5946645102dcSJed Brown 
5947645102dcSJed Brown  Notes:
5948645102dcSJed Brown  The semantics of this function relate to that of setBC=FALSE in DMPlexGetIndicesPointFields_Internal.
5949645102dcSJed Brown  Since this function uses global indices, setBC=TRUE would be invalid, so no such argument exists.
59507e29afd2SMatthew G. Knepley */
5951645102dcSJed Brown static PetscErrorCode DMPlexGetIndicesPointFieldsSplit_Internal(PetscSection section, PetscSection globalSection, PetscInt point, PetscInt foffs[], const PetscInt ***perms, PetscInt permsoff, const PetscInt indperm[], PetscInt indices[])
59527e29afd2SMatthew G. Knepley {
59537e29afd2SMatthew G. Knepley   PetscInt       numFields, foff, f;
59547e29afd2SMatthew G. Knepley   PetscErrorCode ierr;
59557e29afd2SMatthew G. Knepley 
59567e29afd2SMatthew G. Knepley   PetscFunctionBegin;
59577e29afd2SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
59587e29afd2SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
59597e29afd2SMatthew G. Knepley     PetscInt        fdof, cfdof;
59607e29afd2SMatthew G. Knepley     const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
59617e29afd2SMatthew G. Knepley     PetscInt        cind = 0, b;
59627e29afd2SMatthew G. Knepley     const PetscInt  *perm = (perms && perms[f]) ? perms[f][permsoff] : NULL;
59637e29afd2SMatthew G. Knepley 
59647e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
59657e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldConstraintDof(section, point, f, &cfdof);CHKERRQ(ierr);
59667e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldOffset(globalSection, point, f, &foff);CHKERRQ(ierr);
5967645102dcSJed Brown     if (!cfdof) {
596805586334SMatthew G. Knepley       for (b = 0; b < fdof; ++b) {
596905586334SMatthew G. Knepley         const PetscInt preind = perm ? foffs[f]+perm[b] : foffs[f]+b;
597005586334SMatthew G. Knepley         const PetscInt ind    = indperm ? indperm[preind] : preind;
597105586334SMatthew G. Knepley 
597205586334SMatthew G. Knepley         indices[ind] = foff+b;
597305586334SMatthew G. Knepley       }
59747e29afd2SMatthew G. Knepley     } else {
59757e29afd2SMatthew G. Knepley       ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
597605586334SMatthew G. Knepley       for (b = 0; b < fdof; ++b) {
597705586334SMatthew G. Knepley         const PetscInt preind = perm ? foffs[f]+perm[b] : foffs[f]+b;
597805586334SMatthew G. Knepley         const PetscInt ind    = indperm ? indperm[preind] : preind;
597905586334SMatthew G. Knepley 
59807e29afd2SMatthew G. Knepley         if ((cind < cfdof) && (b == fcdofs[cind])) {
598105586334SMatthew G. Knepley           indices[ind] = -(foff+b+1);
59827e29afd2SMatthew G. Knepley           ++cind;
59837e29afd2SMatthew G. Knepley         } else {
598405586334SMatthew G. Knepley           indices[ind] = foff+b-cind;
59857e29afd2SMatthew G. Knepley         }
59867e29afd2SMatthew G. Knepley       }
59877e29afd2SMatthew G. Knepley     }
59887e29afd2SMatthew G. Knepley     foffs[f] += fdof;
59897e29afd2SMatthew G. Knepley   }
59907e29afd2SMatthew G. Knepley   PetscFunctionReturn(0);
59917e29afd2SMatthew G. Knepley }
59927e29afd2SMatthew G. Knepley 
59934acb8e1eSToby Isaac PetscErrorCode DMPlexAnchorsModifyMat(DM dm, PetscSection section, PetscInt numPoints, PetscInt numIndices, const PetscInt points[], const PetscInt ***perms, const PetscScalar values[], PetscInt *outNumPoints, PetscInt *outNumIndices, PetscInt *outPoints[], PetscScalar *outValues[], PetscInt offsets[], PetscBool multiplyLeft)
5994d3d1a6afSToby Isaac {
5995d3d1a6afSToby Isaac   Mat             cMat;
5996d3d1a6afSToby Isaac   PetscSection    aSec, cSec;
5997d3d1a6afSToby Isaac   IS              aIS;
5998d3d1a6afSToby Isaac   PetscInt        aStart = -1, aEnd = -1;
5999d3d1a6afSToby Isaac   const PetscInt  *anchors;
6000e17c06e0SMatthew G. Knepley   PetscInt        numFields, f, p, q, newP = 0;
6001d3d1a6afSToby Isaac   PetscInt        newNumPoints = 0, newNumIndices = 0;
6002d3d1a6afSToby Isaac   PetscInt        *newPoints, *indices, *newIndices;
6003d3d1a6afSToby Isaac   PetscInt        maxAnchor, maxDof;
6004d3d1a6afSToby Isaac   PetscInt        newOffsets[32];
6005d3d1a6afSToby Isaac   PetscInt        *pointMatOffsets[32];
6006d3d1a6afSToby Isaac   PetscInt        *newPointOffsets[32];
6007d3d1a6afSToby Isaac   PetscScalar     *pointMat[32];
60086ecaa68aSToby Isaac   PetscScalar     *newValues=NULL,*tmpValues;
6009d3d1a6afSToby Isaac   PetscBool       anyConstrained = PETSC_FALSE;
6010d3d1a6afSToby Isaac   PetscErrorCode  ierr;
6011d3d1a6afSToby Isaac 
6012d3d1a6afSToby Isaac   PetscFunctionBegin;
6013d3d1a6afSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6014d3d1a6afSToby Isaac   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
6015d3d1a6afSToby Isaac   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
6016d3d1a6afSToby Isaac 
6017a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr);
6018d3d1a6afSToby Isaac   /* if there are point-to-point constraints */
6019d3d1a6afSToby Isaac   if (aSec) {
6020580bdb30SBarry Smith     ierr = PetscArrayzero(newOffsets, 32);CHKERRQ(ierr);
6021d3d1a6afSToby Isaac     ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr);
6022d3d1a6afSToby Isaac     ierr = PetscSectionGetChart(aSec,&aStart,&aEnd);CHKERRQ(ierr);
6023d3d1a6afSToby Isaac     /* figure out how many points are going to be in the new element matrix
6024d3d1a6afSToby Isaac      * (we allow double counting, because it's all just going to be summed
6025d3d1a6afSToby Isaac      * into the global matrix anyway) */
6026d3d1a6afSToby Isaac     for (p = 0; p < 2*numPoints; p+=2) {
6027d3d1a6afSToby Isaac       PetscInt b    = points[p];
60284b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
6029d3d1a6afSToby Isaac 
60304b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
60314b2f2278SToby Isaac       if (!bSecDof) {
60324b2f2278SToby Isaac         continue;
60334b2f2278SToby Isaac       }
6034d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
6035d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec,b,&bDof);CHKERRQ(ierr);
6036d3d1a6afSToby Isaac       }
6037d3d1a6afSToby Isaac       if (bDof) {
6038d3d1a6afSToby Isaac         /* this point is constrained */
6039d3d1a6afSToby Isaac         /* it is going to be replaced by its anchors */
6040d3d1a6afSToby Isaac         PetscInt bOff, q;
6041d3d1a6afSToby Isaac 
6042d3d1a6afSToby Isaac         anyConstrained = PETSC_TRUE;
6043d3d1a6afSToby Isaac         newNumPoints  += bDof;
6044d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec,b,&bOff);CHKERRQ(ierr);
6045d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
6046d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q];
6047d3d1a6afSToby Isaac           PetscInt aDof;
6048d3d1a6afSToby Isaac 
6049d3d1a6afSToby Isaac           ierr           = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
6050d3d1a6afSToby Isaac           newNumIndices += aDof;
6051d3d1a6afSToby Isaac           for (f = 0; f < numFields; ++f) {
6052d3d1a6afSToby Isaac             PetscInt fDof;
6053d3d1a6afSToby Isaac 
6054d3d1a6afSToby Isaac             ierr             = PetscSectionGetFieldDof(section, a, f, &fDof);CHKERRQ(ierr);
6055d3d1a6afSToby Isaac             newOffsets[f+1] += fDof;
6056d3d1a6afSToby Isaac           }
6057d3d1a6afSToby Isaac         }
6058d3d1a6afSToby Isaac       }
6059d3d1a6afSToby Isaac       else {
6060d3d1a6afSToby Isaac         /* this point is not constrained */
6061d3d1a6afSToby Isaac         newNumPoints++;
60624b2f2278SToby Isaac         newNumIndices += bSecDof;
6063d3d1a6afSToby Isaac         for (f = 0; f < numFields; ++f) {
6064d3d1a6afSToby Isaac           PetscInt fDof;
6065d3d1a6afSToby Isaac 
6066d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
6067d3d1a6afSToby Isaac           newOffsets[f+1] += fDof;
6068d3d1a6afSToby Isaac         }
6069d3d1a6afSToby Isaac       }
6070d3d1a6afSToby Isaac     }
6071d3d1a6afSToby Isaac   }
6072d3d1a6afSToby Isaac   if (!anyConstrained) {
607372b80496SMatthew G. Knepley     if (outNumPoints)  *outNumPoints  = 0;
607472b80496SMatthew G. Knepley     if (outNumIndices) *outNumIndices = 0;
607572b80496SMatthew G. Knepley     if (outPoints)     *outPoints     = NULL;
607672b80496SMatthew G. Knepley     if (outValues)     *outValues     = NULL;
607772b80496SMatthew G. Knepley     if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);}
6078d3d1a6afSToby Isaac     PetscFunctionReturn(0);
6079d3d1a6afSToby Isaac   }
6080d3d1a6afSToby Isaac 
60816ecaa68aSToby Isaac   if (outNumPoints)  *outNumPoints  = newNumPoints;
60826ecaa68aSToby Isaac   if (outNumIndices) *outNumIndices = newNumIndices;
60836ecaa68aSToby Isaac 
6084f13f9184SToby Isaac   for (f = 0; f < numFields; ++f) newOffsets[f+1] += newOffsets[f];
6085d3d1a6afSToby Isaac 
60866ecaa68aSToby Isaac   if (!outPoints && !outValues) {
60876ecaa68aSToby Isaac     if (offsets) {
60886ecaa68aSToby Isaac       for (f = 0; f <= numFields; f++) {
60896ecaa68aSToby Isaac         offsets[f] = newOffsets[f];
60906ecaa68aSToby Isaac       }
60916ecaa68aSToby Isaac     }
60926ecaa68aSToby Isaac     if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);}
60936ecaa68aSToby Isaac     PetscFunctionReturn(0);
60946ecaa68aSToby Isaac   }
60956ecaa68aSToby Isaac 
6096f347f43bSBarry Smith   if (numFields && newOffsets[numFields] != newNumIndices) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", newOffsets[numFields], newNumIndices);
6097d3d1a6afSToby Isaac 
6098f7c74593SToby Isaac   ierr = DMGetDefaultConstraints(dm, &cSec, &cMat);CHKERRQ(ierr);
6099d3d1a6afSToby Isaac 
6100d3d1a6afSToby Isaac   /* workspaces */
6101d3d1a6afSToby Isaac   if (numFields) {
6102d3d1a6afSToby Isaac     for (f = 0; f < numFields; f++) {
610369291d52SBarry Smith       ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr);
610469291d52SBarry Smith       ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr);
6105d3d1a6afSToby Isaac     }
6106d3d1a6afSToby Isaac   }
6107d3d1a6afSToby Isaac   else {
610869291d52SBarry Smith     ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr);
610969291d52SBarry Smith     ierr = DMGetWorkArray(dm,numPoints,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr);
6110d3d1a6afSToby Isaac   }
6111d3d1a6afSToby Isaac 
6112d3d1a6afSToby Isaac   /* get workspaces for the point-to-point matrices */
6113d3d1a6afSToby Isaac   if (numFields) {
61144b2f2278SToby Isaac     PetscInt totalOffset, totalMatOffset;
61154b2f2278SToby Isaac 
6116d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
6117d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
61184b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
6119d3d1a6afSToby Isaac 
61204b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
61214b2f2278SToby Isaac       if (!bSecDof) {
61224b2f2278SToby Isaac         for (f = 0; f < numFields; f++) {
61234b2f2278SToby Isaac           newPointOffsets[f][p + 1] = 0;
61244b2f2278SToby Isaac           pointMatOffsets[f][p + 1] = 0;
61254b2f2278SToby Isaac         }
61264b2f2278SToby Isaac         continue;
61274b2f2278SToby Isaac       }
6128d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
6129d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
6130d3d1a6afSToby Isaac       }
6131d3d1a6afSToby Isaac       if (bDof) {
6132d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
6133d3d1a6afSToby Isaac           PetscInt fDof, q, bOff, allFDof = 0;
6134d3d1a6afSToby Isaac 
6135d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
6136d3d1a6afSToby Isaac           ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
6137d3d1a6afSToby Isaac           for (q = 0; q < bDof; q++) {
6138d3d1a6afSToby Isaac             PetscInt a = anchors[bOff + q];
6139d3d1a6afSToby Isaac             PetscInt aFDof;
6140d3d1a6afSToby Isaac 
6141d3d1a6afSToby Isaac             ierr     = PetscSectionGetFieldDof(section, a, f, &aFDof);CHKERRQ(ierr);
6142d3d1a6afSToby Isaac             allFDof += aFDof;
6143d3d1a6afSToby Isaac           }
6144d3d1a6afSToby Isaac           newPointOffsets[f][p+1] = allFDof;
6145d3d1a6afSToby Isaac           pointMatOffsets[f][p+1] = fDof * allFDof;
6146d3d1a6afSToby Isaac         }
6147d3d1a6afSToby Isaac       }
6148d3d1a6afSToby Isaac       else {
6149d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
6150d3d1a6afSToby Isaac           PetscInt fDof;
6151d3d1a6afSToby Isaac 
6152d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
6153d3d1a6afSToby Isaac           newPointOffsets[f][p+1] = fDof;
6154d3d1a6afSToby Isaac           pointMatOffsets[f][p+1] = 0;
6155d3d1a6afSToby Isaac         }
6156d3d1a6afSToby Isaac       }
6157d3d1a6afSToby Isaac     }
61584b2f2278SToby Isaac     for (f = 0, totalOffset = 0, totalMatOffset = 0; f < numFields; f++) {
61594b2f2278SToby Isaac       newPointOffsets[f][0] = totalOffset;
61604b2f2278SToby Isaac       pointMatOffsets[f][0] = totalMatOffset;
6161d3d1a6afSToby Isaac       for (p = 0; p < numPoints; p++) {
6162d3d1a6afSToby Isaac         newPointOffsets[f][p+1] += newPointOffsets[f][p];
6163d3d1a6afSToby Isaac         pointMatOffsets[f][p+1] += pointMatOffsets[f][p];
6164d3d1a6afSToby Isaac       }
616519f70fd5SToby Isaac       totalOffset    = newPointOffsets[f][numPoints];
616619f70fd5SToby Isaac       totalMatOffset = pointMatOffsets[f][numPoints];
616769291d52SBarry Smith       ierr = DMGetWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr);
6168d3d1a6afSToby Isaac     }
6169d3d1a6afSToby Isaac   }
6170d3d1a6afSToby Isaac   else {
6171d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
6172d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
61734b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
6174d3d1a6afSToby Isaac 
61754b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
61764b2f2278SToby Isaac       if (!bSecDof) {
61774b2f2278SToby Isaac         newPointOffsets[0][p + 1] = 0;
61784b2f2278SToby Isaac         pointMatOffsets[0][p + 1] = 0;
61794b2f2278SToby Isaac         continue;
61804b2f2278SToby Isaac       }
6181d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
6182d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
6183d3d1a6afSToby Isaac       }
6184d3d1a6afSToby Isaac       if (bDof) {
61854b2f2278SToby Isaac         PetscInt bOff, q, allDof = 0;
6186d3d1a6afSToby Isaac 
6187d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
6188d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
6189d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aDof;
6190d3d1a6afSToby Isaac 
6191d3d1a6afSToby Isaac           ierr    = PetscSectionGetDof(section, a, &aDof);CHKERRQ(ierr);
6192d3d1a6afSToby Isaac           allDof += aDof;
6193d3d1a6afSToby Isaac         }
6194d3d1a6afSToby Isaac         newPointOffsets[0][p+1] = allDof;
61954b2f2278SToby Isaac         pointMatOffsets[0][p+1] = bSecDof * allDof;
6196d3d1a6afSToby Isaac       }
6197d3d1a6afSToby Isaac       else {
61984b2f2278SToby Isaac         newPointOffsets[0][p+1] = bSecDof;
6199d3d1a6afSToby Isaac         pointMatOffsets[0][p+1] = 0;
6200d3d1a6afSToby Isaac       }
6201d3d1a6afSToby Isaac     }
6202d3d1a6afSToby Isaac     newPointOffsets[0][0] = 0;
6203d3d1a6afSToby Isaac     pointMatOffsets[0][0] = 0;
6204d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
6205d3d1a6afSToby Isaac       newPointOffsets[0][p+1] += newPointOffsets[0][p];
6206d3d1a6afSToby Isaac       pointMatOffsets[0][p+1] += pointMatOffsets[0][p];
6207d3d1a6afSToby Isaac     }
620869291d52SBarry Smith     ierr = DMGetWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr);
6209d3d1a6afSToby Isaac   }
6210d3d1a6afSToby Isaac 
62116ecaa68aSToby Isaac   /* output arrays */
621269291d52SBarry Smith   ierr = DMGetWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr);
62136ecaa68aSToby Isaac 
6214d3d1a6afSToby Isaac   /* get the point-to-point matrices; construct newPoints */
6215d3d1a6afSToby Isaac   ierr = PetscSectionGetMaxDof(aSec, &maxAnchor);CHKERRQ(ierr);
6216d3d1a6afSToby Isaac   ierr = PetscSectionGetMaxDof(section, &maxDof);CHKERRQ(ierr);
621769291d52SBarry Smith   ierr = DMGetWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr);
621869291d52SBarry Smith   ierr = DMGetWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr);
6219d3d1a6afSToby Isaac   if (numFields) {
6220d3d1a6afSToby Isaac     for (p = 0, newP = 0; p < numPoints; p++) {
6221d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
6222d3d1a6afSToby Isaac       PetscInt o    = points[2*p+1];
62234b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
6224d3d1a6afSToby Isaac 
62254b2f2278SToby Isaac       ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr);
62264b2f2278SToby Isaac       if (!bSecDof) {
62274b2f2278SToby Isaac         continue;
62284b2f2278SToby Isaac       }
6229d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
6230d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
6231d3d1a6afSToby Isaac       }
6232d3d1a6afSToby Isaac       if (bDof) {
6233d3d1a6afSToby Isaac         PetscInt fStart[32], fEnd[32], fAnchorStart[32], fAnchorEnd[32], bOff, q;
6234d3d1a6afSToby Isaac 
6235d3d1a6afSToby Isaac         fStart[0] = 0;
6236d3d1a6afSToby Isaac         fEnd[0]   = 0;
6237d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
6238d3d1a6afSToby Isaac           PetscInt fDof;
6239d3d1a6afSToby Isaac 
6240d3d1a6afSToby Isaac           ierr        = PetscSectionGetFieldDof(cSec, b, f, &fDof);CHKERRQ(ierr);
6241d3d1a6afSToby Isaac           fStart[f+1] = fStart[f] + fDof;
6242d3d1a6afSToby Isaac           fEnd[f+1]   = fStart[f+1];
6243d3d1a6afSToby Isaac         }
6244d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr);
624536fa2b79SJed Brown         ierr = DMPlexGetIndicesPointFields_Internal(cSec, PETSC_TRUE, b, bOff, fEnd, PETSC_TRUE, perms, p, NULL, indices);CHKERRQ(ierr);
6246d3d1a6afSToby Isaac 
6247d3d1a6afSToby Isaac         fAnchorStart[0] = 0;
6248d3d1a6afSToby Isaac         fAnchorEnd[0]   = 0;
6249d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
6250d3d1a6afSToby Isaac           PetscInt fDof = newPointOffsets[f][p + 1] - newPointOffsets[f][p];
6251d3d1a6afSToby Isaac 
6252d3d1a6afSToby Isaac           fAnchorStart[f+1] = fAnchorStart[f] + fDof;
6253d3d1a6afSToby Isaac           fAnchorEnd[f+1]   = fAnchorStart[f + 1];
6254d3d1a6afSToby Isaac         }
6255d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
6256d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
6257d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aOff;
6258d3d1a6afSToby Isaac 
6259d3d1a6afSToby Isaac           /* we take the orientation of ap into account in the order that we constructed the indices above: the newly added points have no orientation */
6260d3d1a6afSToby Isaac           newPoints[2*(newP + q)]     = a;
6261d3d1a6afSToby Isaac           newPoints[2*(newP + q) + 1] = 0;
6262302440fdSBarry Smith           ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr);
626336fa2b79SJed Brown           ierr = DMPlexGetIndicesPointFields_Internal(section, PETSC_TRUE, a, aOff, fAnchorEnd, PETSC_TRUE, NULL, -1, NULL, newIndices);CHKERRQ(ierr);
6264d3d1a6afSToby Isaac         }
6265d3d1a6afSToby Isaac         newP += bDof;
6266d3d1a6afSToby Isaac 
62676ecaa68aSToby Isaac         if (outValues) {
6268d3d1a6afSToby Isaac           /* get the point-to-point submatrix */
6269d3d1a6afSToby Isaac           for (f = 0; f < numFields; f++) {
6270d3d1a6afSToby Isaac             ierr = MatGetValues(cMat,fEnd[f]-fStart[f],indices + fStart[f],fAnchorEnd[f] - fAnchorStart[f],newIndices + fAnchorStart[f],pointMat[f] + pointMatOffsets[f][p]);CHKERRQ(ierr);
6271d3d1a6afSToby Isaac           }
6272d3d1a6afSToby Isaac         }
62736ecaa68aSToby Isaac       }
6274d3d1a6afSToby Isaac       else {
6275d3d1a6afSToby Isaac         newPoints[2 * newP]     = b;
6276d3d1a6afSToby Isaac         newPoints[2 * newP + 1] = o;
6277d3d1a6afSToby Isaac         newP++;
6278d3d1a6afSToby Isaac       }
6279d3d1a6afSToby Isaac     }
6280d3d1a6afSToby Isaac   } else {
6281d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
6282d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
6283d3d1a6afSToby Isaac       PetscInt o    = points[2*p+1];
62844b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
6285d3d1a6afSToby Isaac 
62864b2f2278SToby Isaac       ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr);
62874b2f2278SToby Isaac       if (!bSecDof) {
62884b2f2278SToby Isaac         continue;
62894b2f2278SToby Isaac       }
6290d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
6291d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
6292d3d1a6afSToby Isaac       }
6293d3d1a6afSToby Isaac       if (bDof) {
6294d3d1a6afSToby Isaac         PetscInt bEnd = 0, bAnchorEnd = 0, bOff;
6295d3d1a6afSToby Isaac 
6296d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr);
629736fa2b79SJed Brown         ierr = DMPlexGetIndicesPoint_Internal(cSec, PETSC_TRUE, b, bOff, &bEnd, PETSC_TRUE, (perms && perms[0]) ? perms[0][p] : NULL, NULL, indices);CHKERRQ(ierr);
6298d3d1a6afSToby Isaac 
6299d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset (aSec, b, &bOff);CHKERRQ(ierr);
6300d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
6301d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aOff;
6302d3d1a6afSToby Isaac 
6303d3d1a6afSToby Isaac           /* we take the orientation of ap into account in the order that we constructed the indices above: the newly added points have no orientation */
6304d3d1a6afSToby Isaac 
6305d3d1a6afSToby Isaac           newPoints[2*(newP + q)]     = a;
6306d3d1a6afSToby Isaac           newPoints[2*(newP + q) + 1] = 0;
6307302440fdSBarry Smith           ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr);
630836fa2b79SJed Brown           ierr = DMPlexGetIndicesPoint_Internal(section, PETSC_TRUE, a, aOff, &bAnchorEnd, PETSC_TRUE, NULL, NULL, newIndices);CHKERRQ(ierr);
6309d3d1a6afSToby Isaac         }
6310d3d1a6afSToby Isaac         newP += bDof;
6311d3d1a6afSToby Isaac 
6312d3d1a6afSToby Isaac         /* get the point-to-point submatrix */
63136ecaa68aSToby Isaac         if (outValues) {
6314d3d1a6afSToby Isaac           ierr = MatGetValues(cMat,bEnd,indices,bAnchorEnd,newIndices,pointMat[0] + pointMatOffsets[0][p]);CHKERRQ(ierr);
6315d3d1a6afSToby Isaac         }
63166ecaa68aSToby Isaac       }
6317d3d1a6afSToby Isaac       else {
6318d3d1a6afSToby Isaac         newPoints[2 * newP]     = b;
6319d3d1a6afSToby Isaac         newPoints[2 * newP + 1] = o;
6320d3d1a6afSToby Isaac         newP++;
6321d3d1a6afSToby Isaac       }
6322d3d1a6afSToby Isaac     }
6323d3d1a6afSToby Isaac   }
6324d3d1a6afSToby Isaac 
63256ecaa68aSToby Isaac   if (outValues) {
632669291d52SBarry Smith     ierr = DMGetWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr);
6327580bdb30SBarry Smith     ierr = PetscArrayzero(tmpValues,newNumIndices*numIndices);CHKERRQ(ierr);
6328d3d1a6afSToby Isaac     /* multiply constraints on the right */
6329d3d1a6afSToby Isaac     if (numFields) {
6330d3d1a6afSToby Isaac       for (f = 0; f < numFields; f++) {
6331d3d1a6afSToby Isaac         PetscInt oldOff = offsets[f];
6332d3d1a6afSToby Isaac 
6333d3d1a6afSToby Isaac         for (p = 0; p < numPoints; p++) {
6334d3d1a6afSToby Isaac           PetscInt cStart = newPointOffsets[f][p];
6335d3d1a6afSToby Isaac           PetscInt b      = points[2 * p];
6336d3d1a6afSToby Isaac           PetscInt c, r, k;
6337d3d1a6afSToby Isaac           PetscInt dof;
6338d3d1a6afSToby Isaac 
6339d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr);
63404b2f2278SToby Isaac           if (!dof) {
63414b2f2278SToby Isaac             continue;
63424b2f2278SToby Isaac           }
6343d3d1a6afSToby Isaac           if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) {
6344d3d1a6afSToby Isaac             PetscInt nCols         = newPointOffsets[f][p+1]-cStart;
6345d3d1a6afSToby Isaac             const PetscScalar *mat = pointMat[f] + pointMatOffsets[f][p];
6346d3d1a6afSToby Isaac 
6347d3d1a6afSToby Isaac             for (r = 0; r < numIndices; r++) {
6348d3d1a6afSToby Isaac               for (c = 0; c < nCols; c++) {
6349d3d1a6afSToby Isaac                 for (k = 0; k < dof; k++) {
63504acb8e1eSToby Isaac                   tmpValues[r * newNumIndices + cStart + c] += values[r * numIndices + oldOff + k] * mat[k * nCols + c];
6351d3d1a6afSToby Isaac                 }
6352d3d1a6afSToby Isaac               }
6353d3d1a6afSToby Isaac             }
6354d3d1a6afSToby Isaac           }
6355d3d1a6afSToby Isaac           else {
6356d3d1a6afSToby Isaac             /* copy this column as is */
6357d3d1a6afSToby Isaac             for (r = 0; r < numIndices; r++) {
6358d3d1a6afSToby Isaac               for (c = 0; c < dof; c++) {
6359d3d1a6afSToby Isaac                 tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c];
6360d3d1a6afSToby Isaac               }
6361d3d1a6afSToby Isaac             }
6362d3d1a6afSToby Isaac           }
6363d3d1a6afSToby Isaac           oldOff += dof;
6364d3d1a6afSToby Isaac         }
6365d3d1a6afSToby Isaac       }
6366d3d1a6afSToby Isaac     }
6367d3d1a6afSToby Isaac     else {
6368d3d1a6afSToby Isaac       PetscInt oldOff = 0;
6369d3d1a6afSToby Isaac       for (p = 0; p < numPoints; p++) {
6370d3d1a6afSToby Isaac         PetscInt cStart = newPointOffsets[0][p];
6371d3d1a6afSToby Isaac         PetscInt b      = points[2 * p];
6372d3d1a6afSToby Isaac         PetscInt c, r, k;
6373d3d1a6afSToby Isaac         PetscInt dof;
6374d3d1a6afSToby Isaac 
6375d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr);
63764b2f2278SToby Isaac         if (!dof) {
63774b2f2278SToby Isaac           continue;
63784b2f2278SToby Isaac         }
6379d3d1a6afSToby Isaac         if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) {
6380d3d1a6afSToby Isaac           PetscInt nCols         = newPointOffsets[0][p+1]-cStart;
6381d3d1a6afSToby Isaac           const PetscScalar *mat = pointMat[0] + pointMatOffsets[0][p];
6382d3d1a6afSToby Isaac 
6383d3d1a6afSToby Isaac           for (r = 0; r < numIndices; r++) {
6384d3d1a6afSToby Isaac             for (c = 0; c < nCols; c++) {
6385d3d1a6afSToby Isaac               for (k = 0; k < dof; k++) {
6386d3d1a6afSToby Isaac                 tmpValues[r * newNumIndices + cStart + c] += mat[k * nCols + c] * values[r * numIndices + oldOff + k];
6387d3d1a6afSToby Isaac               }
6388d3d1a6afSToby Isaac             }
6389d3d1a6afSToby Isaac           }
6390d3d1a6afSToby Isaac         }
6391d3d1a6afSToby Isaac         else {
6392d3d1a6afSToby Isaac           /* copy this column as is */
6393d3d1a6afSToby Isaac           for (r = 0; r < numIndices; r++) {
6394d3d1a6afSToby Isaac             for (c = 0; c < dof; c++) {
6395d3d1a6afSToby Isaac               tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c];
6396d3d1a6afSToby Isaac             }
6397d3d1a6afSToby Isaac           }
6398d3d1a6afSToby Isaac         }
6399d3d1a6afSToby Isaac         oldOff += dof;
6400d3d1a6afSToby Isaac       }
6401d3d1a6afSToby Isaac     }
6402d3d1a6afSToby Isaac 
64036ecaa68aSToby Isaac     if (multiplyLeft) {
640469291d52SBarry Smith       ierr = DMGetWorkArray(dm,newNumIndices*newNumIndices,MPIU_SCALAR,&newValues);CHKERRQ(ierr);
6405580bdb30SBarry Smith       ierr = PetscArrayzero(newValues,newNumIndices*newNumIndices);CHKERRQ(ierr);
6406d3d1a6afSToby Isaac       /* multiply constraints transpose on the left */
6407d3d1a6afSToby Isaac       if (numFields) {
6408d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
6409d3d1a6afSToby Isaac           PetscInt oldOff = offsets[f];
6410d3d1a6afSToby Isaac 
6411d3d1a6afSToby Isaac           for (p = 0; p < numPoints; p++) {
6412d3d1a6afSToby Isaac             PetscInt rStart = newPointOffsets[f][p];
6413d3d1a6afSToby Isaac             PetscInt b      = points[2 * p];
6414d3d1a6afSToby Isaac             PetscInt c, r, k;
6415d3d1a6afSToby Isaac             PetscInt dof;
6416d3d1a6afSToby Isaac 
6417d3d1a6afSToby Isaac             ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr);
6418d3d1a6afSToby Isaac             if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) {
6419d3d1a6afSToby Isaac               PetscInt nRows                        = newPointOffsets[f][p+1]-rStart;
6420d3d1a6afSToby Isaac               const PetscScalar *PETSC_RESTRICT mat = pointMat[f] + pointMatOffsets[f][p];
6421d3d1a6afSToby Isaac 
6422d3d1a6afSToby Isaac               for (r = 0; r < nRows; r++) {
6423d3d1a6afSToby Isaac                 for (c = 0; c < newNumIndices; c++) {
6424d3d1a6afSToby Isaac                   for (k = 0; k < dof; k++) {
6425d3d1a6afSToby Isaac                     newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c];
6426d3d1a6afSToby Isaac                   }
6427d3d1a6afSToby Isaac                 }
6428d3d1a6afSToby Isaac               }
6429d3d1a6afSToby Isaac             }
6430d3d1a6afSToby Isaac             else {
6431d3d1a6afSToby Isaac               /* copy this row as is */
6432d3d1a6afSToby Isaac               for (r = 0; r < dof; r++) {
6433d3d1a6afSToby Isaac                 for (c = 0; c < newNumIndices; c++) {
6434d3d1a6afSToby Isaac                   newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c];
6435d3d1a6afSToby Isaac                 }
6436d3d1a6afSToby Isaac               }
6437d3d1a6afSToby Isaac             }
6438d3d1a6afSToby Isaac             oldOff += dof;
6439d3d1a6afSToby Isaac           }
6440d3d1a6afSToby Isaac         }
6441d3d1a6afSToby Isaac       }
6442d3d1a6afSToby Isaac       else {
6443d3d1a6afSToby Isaac         PetscInt oldOff = 0;
6444d3d1a6afSToby Isaac 
6445d3d1a6afSToby Isaac         for (p = 0; p < numPoints; p++) {
6446d3d1a6afSToby Isaac           PetscInt rStart = newPointOffsets[0][p];
6447d3d1a6afSToby Isaac           PetscInt b      = points[2 * p];
6448d3d1a6afSToby Isaac           PetscInt c, r, k;
6449d3d1a6afSToby Isaac           PetscInt dof;
6450d3d1a6afSToby Isaac 
6451d3d1a6afSToby Isaac           ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr);
6452d3d1a6afSToby Isaac           if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) {
6453d3d1a6afSToby Isaac             PetscInt nRows                        = newPointOffsets[0][p+1]-rStart;
6454d3d1a6afSToby Isaac             const PetscScalar *PETSC_RESTRICT mat = pointMat[0] + pointMatOffsets[0][p];
6455d3d1a6afSToby Isaac 
6456d3d1a6afSToby Isaac             for (r = 0; r < nRows; r++) {
6457d3d1a6afSToby Isaac               for (c = 0; c < newNumIndices; c++) {
6458d3d1a6afSToby Isaac                 for (k = 0; k < dof; k++) {
6459d3d1a6afSToby Isaac                   newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c];
6460d3d1a6afSToby Isaac                 }
6461d3d1a6afSToby Isaac               }
6462d3d1a6afSToby Isaac             }
6463d3d1a6afSToby Isaac           }
6464d3d1a6afSToby Isaac           else {
6465d3d1a6afSToby Isaac             /* copy this row as is */
64669fc93327SToby Isaac             for (r = 0; r < dof; r++) {
6467d3d1a6afSToby Isaac               for (c = 0; c < newNumIndices; c++) {
6468d3d1a6afSToby Isaac                 newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c];
6469d3d1a6afSToby Isaac               }
6470d3d1a6afSToby Isaac             }
6471d3d1a6afSToby Isaac           }
6472d3d1a6afSToby Isaac           oldOff += dof;
6473d3d1a6afSToby Isaac         }
6474d3d1a6afSToby Isaac       }
6475d3d1a6afSToby Isaac 
647669291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr);
64776ecaa68aSToby Isaac     }
64786ecaa68aSToby Isaac     else {
64796ecaa68aSToby Isaac       newValues = tmpValues;
64806ecaa68aSToby Isaac     }
64816ecaa68aSToby Isaac   }
64826ecaa68aSToby Isaac 
6483d3d1a6afSToby Isaac   /* clean up */
648469291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr);
648569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr);
64866ecaa68aSToby Isaac 
6487d3d1a6afSToby Isaac   if (numFields) {
6488d3d1a6afSToby Isaac     for (f = 0; f < numFields; f++) {
648969291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr);
649069291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr);
649169291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr);
6492d3d1a6afSToby Isaac     }
6493d3d1a6afSToby Isaac   }
6494d3d1a6afSToby Isaac   else {
649569291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr);
649669291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr);
649769291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr);
6498d3d1a6afSToby Isaac   }
6499d3d1a6afSToby Isaac   ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);
6500d3d1a6afSToby Isaac 
6501d3d1a6afSToby Isaac   /* output */
65026ecaa68aSToby Isaac   if (outPoints) {
6503d3d1a6afSToby Isaac     *outPoints = newPoints;
65046ecaa68aSToby Isaac   }
65056ecaa68aSToby Isaac   else {
650669291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr);
65076ecaa68aSToby Isaac   }
650831620726SToby Isaac   if (outValues) {
6509d3d1a6afSToby Isaac     *outValues = newValues;
65106ecaa68aSToby Isaac   }
65116ecaa68aSToby Isaac   for (f = 0; f <= numFields; f++) {
6512d3d1a6afSToby Isaac     offsets[f] = newOffsets[f];
6513d3d1a6afSToby Isaac   }
6514d3d1a6afSToby Isaac   PetscFunctionReturn(0);
6515d3d1a6afSToby Isaac }
6516d3d1a6afSToby Isaac 
65174a1e0b3eSMatthew G. Knepley /*@C
651871f0bbf9SMatthew G. Knepley   DMPlexGetClosureIndices - Gets the global dof indices associated with the closure of the given point within the provided sections.
65197cd05799SMatthew G. Knepley 
65207cd05799SMatthew G. Knepley   Not collective
65217cd05799SMatthew G. Knepley 
65227cd05799SMatthew G. Knepley   Input Parameters:
65237cd05799SMatthew G. Knepley + dm         - The DM
652471f0bbf9SMatthew G. Knepley . section    - The PetscSection describing the points (a local section)
652571f0bbf9SMatthew G. Knepley . idxSection - The PetscSection from which to obtain indices (may be local or global)
652671f0bbf9SMatthew G. Knepley . point      - The point defining the closure
652771f0bbf9SMatthew G. Knepley - useClPerm  - Use the closure point permutation if available
65287cd05799SMatthew G. Knepley 
652971f0bbf9SMatthew G. Knepley   Output Parameters:
653071f0bbf9SMatthew G. Knepley + numIndices - The number of dof indices in the closure of point with the input sections
653171f0bbf9SMatthew G. Knepley . indices    - The dof indices
653271f0bbf9SMatthew G. Knepley . outOffsets - Array to write the field offsets into, or NULL
653371f0bbf9SMatthew G. Knepley - values     - The input values, which may be modified if sign flips are induced by the point symmetries, or NULL
65347cd05799SMatthew G. Knepley 
653536fa2b79SJed Brown   Notes:
653636fa2b79SJed Brown   Must call DMPlexRestoreClosureIndices() to free allocated memory
653736fa2b79SJed Brown 
653836fa2b79SJed Brown   If idxSection is global, any constrained dofs (see DMAddBoundary(), for example) will get negative indices.  The value
653936fa2b79SJed Brown   of those indices is not significant.  If idxSection is local, the constrained dofs will yield the involution -(idx+1)
654036fa2b79SJed Brown   of their index in a local vector.  A caller who does not wish to distinguish those points may recover the nonnegative
654136fa2b79SJed Brown   indices via involution, -(-(idx+1)+1)==idx.  Local indices are provided when idxSection == section, otherwise global
654236fa2b79SJed Brown   indices (with the above semantics) are implied.
65437cd05799SMatthew G. Knepley 
65447cd05799SMatthew G. Knepley   Level: advanced
65457cd05799SMatthew G. Knepley 
654636fa2b79SJed Brown .seealso DMPlexRestoreClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure(), DMGetLocalSection(), DMGetGlobalSection()
65474a1e0b3eSMatthew G. Knepley @*/
654871f0bbf9SMatthew G. Knepley PetscErrorCode DMPlexGetClosureIndices(DM dm, PetscSection section, PetscSection idxSection, PetscInt point, PetscBool useClPerm,
654971f0bbf9SMatthew G. Knepley                                        PetscInt *numIndices, PetscInt *indices[], PetscInt outOffsets[], PetscScalar *values[])
65507773e69fSMatthew G. Knepley {
655171f0bbf9SMatthew G. Knepley   /* Closure ordering */
65527773e69fSMatthew G. Knepley   PetscSection        clSection;
65537773e69fSMatthew G. Knepley   IS                  clPoints;
655471f0bbf9SMatthew G. Knepley   const PetscInt     *clp;
655571f0bbf9SMatthew G. Knepley   PetscInt           *points;
655671f0bbf9SMatthew G. Knepley   const PetscInt     *clperm = NULL;
655771f0bbf9SMatthew G. Knepley   /* Dof permutation and sign flips */
65584acb8e1eSToby Isaac   const PetscInt    **perms[32] = {NULL};
655971f0bbf9SMatthew G. Knepley   const PetscScalar **flips[32] = {NULL};
656071f0bbf9SMatthew G. Knepley   PetscScalar        *valCopy   = NULL;
656171f0bbf9SMatthew G. Knepley   /* Hanging node constraints */
656271f0bbf9SMatthew G. Knepley   PetscInt           *pointsC = NULL;
656371f0bbf9SMatthew G. Knepley   PetscScalar        *valuesC = NULL;
656471f0bbf9SMatthew G. Knepley   PetscInt            NclC, NiC;
656571f0bbf9SMatthew G. Knepley 
656671f0bbf9SMatthew G. Knepley   PetscInt           *idx;
656771f0bbf9SMatthew G. Knepley   PetscInt            Nf, Ncl, Ni = 0, offsets[32], p, f;
656871f0bbf9SMatthew G. Knepley   PetscBool           isLocal = (section == idxSection) ? PETSC_TRUE : PETSC_FALSE;
65697773e69fSMatthew G. Knepley   PetscErrorCode      ierr;
65707773e69fSMatthew G. Knepley 
657171f0bbf9SMatthew G. Knepley   PetscFunctionBeginHot;
65727773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
65737773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
657436fa2b79SJed Brown   PetscValidHeaderSpecific(idxSection, PETSC_SECTION_CLASSID, 3);
657571f0bbf9SMatthew G. Knepley   if (numIndices) PetscValidPointer(numIndices, 6);
657671f0bbf9SMatthew G. Knepley   if (indices)    PetscValidPointer(indices, 7);
657771f0bbf9SMatthew G. Knepley   if (outOffsets) PetscValidPointer(outOffsets, 8);
657871f0bbf9SMatthew G. Knepley   if (values)     PetscValidPointer(values, 9);
65797773e69fSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
65807773e69fSMatthew G. Knepley   if (Nf > 31) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", Nf);
6581580bdb30SBarry Smith   ierr = PetscArrayzero(offsets, 32);CHKERRQ(ierr);
658271f0bbf9SMatthew G. Knepley   /* 1) Get points in closure */
658371f0bbf9SMatthew G. Knepley   ierr = DMPlexGetCompressedClosure(dm, section, point, &Ncl, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
6584c459fbc1SJed Brown   if (useClPerm) {
6585c459fbc1SJed Brown     PetscInt depth, clsize;
6586c459fbc1SJed Brown     ierr = DMPlexGetPointDepth(dm, point, &depth);CHKERRQ(ierr);
6587c459fbc1SJed Brown     for (clsize=0,p=0; p<Ncl; p++) {
6588c459fbc1SJed Brown       PetscInt dof;
6589c459fbc1SJed Brown       ierr = PetscSectionGetDof(section, points[2*p], &dof);CHKERRQ(ierr);
6590c459fbc1SJed Brown       clsize += dof;
6591c459fbc1SJed Brown     }
6592c459fbc1SJed Brown     ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, depth, clsize, &clperm);CHKERRQ(ierr);
6593c459fbc1SJed Brown   }
659471f0bbf9SMatthew G. Knepley   /* 2) Get number of indices on these points and field offsets from section */
659571f0bbf9SMatthew G. Knepley   for (p = 0; p < Ncl*2; p += 2) {
65967773e69fSMatthew G. Knepley     PetscInt dof, fdof;
65977773e69fSMatthew G. Knepley 
65987773e69fSMatthew G. Knepley     ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
65997773e69fSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
66007773e69fSMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr);
66017773e69fSMatthew G. Knepley       offsets[f+1] += fdof;
66027773e69fSMatthew G. Knepley     }
660371f0bbf9SMatthew G. Knepley     Ni += dof;
66047773e69fSMatthew G. Knepley   }
66057773e69fSMatthew G. Knepley   for (f = 1; f < Nf; ++f) offsets[f+1] += offsets[f];
660671f0bbf9SMatthew G. Knepley   if (Nf && offsets[Nf] != Ni) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", offsets[Nf], Ni);
660771f0bbf9SMatthew G. Knepley   /* 3) Get symmetries and sign flips. Apply sign flips to values if passed in (only works for square values matrix) */
660871f0bbf9SMatthew G. Knepley   for (f = 0; f < PetscMax(1, Nf); ++f) {
660971f0bbf9SMatthew G. Knepley     if (Nf) {ierr = PetscSectionGetFieldPointSyms(section, f, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
661071f0bbf9SMatthew G. Knepley     else    {ierr = PetscSectionGetPointSyms(section, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
661171f0bbf9SMatthew G. Knepley     /* may need to apply sign changes to the element matrix */
661271f0bbf9SMatthew G. Knepley     if (values && flips[f]) {
661371f0bbf9SMatthew G. Knepley       PetscInt foffset = offsets[f];
66146ecaa68aSToby Isaac 
661571f0bbf9SMatthew G. Knepley       for (p = 0; p < Ncl; ++p) {
661671f0bbf9SMatthew G. Knepley         PetscInt           pnt  = points[2*p], fdof;
661771f0bbf9SMatthew G. Knepley         const PetscScalar *flip = flips[f] ? flips[f][p] : NULL;
661871f0bbf9SMatthew G. Knepley 
661971f0bbf9SMatthew G. Knepley         if (!Nf) {ierr = PetscSectionGetDof(section, pnt, &fdof);CHKERRQ(ierr);}
662071f0bbf9SMatthew G. Knepley         else     {ierr = PetscSectionGetFieldDof(section, pnt, f, &fdof);CHKERRQ(ierr);}
662171f0bbf9SMatthew G. Knepley         if (flip) {
662271f0bbf9SMatthew G. Knepley           PetscInt i, j, k;
662371f0bbf9SMatthew G. Knepley 
662471f0bbf9SMatthew G. Knepley           if (!valCopy) {
662571f0bbf9SMatthew G. Knepley             ierr = DMGetWorkArray(dm, Ni*Ni, MPIU_SCALAR, &valCopy);CHKERRQ(ierr);
662671f0bbf9SMatthew G. Knepley             for (j = 0; j < Ni * Ni; ++j) valCopy[j] = (*values)[j];
662771f0bbf9SMatthew G. Knepley             *values = valCopy;
662871f0bbf9SMatthew G. Knepley           }
662971f0bbf9SMatthew G. Knepley           for (i = 0; i < fdof; ++i) {
663071f0bbf9SMatthew G. Knepley             PetscScalar fval = flip[i];
663171f0bbf9SMatthew G. Knepley 
663271f0bbf9SMatthew G. Knepley             for (k = 0; k < Ni; ++k) {
663371f0bbf9SMatthew G. Knepley               valCopy[Ni * (foffset + i) + k] *= fval;
663471f0bbf9SMatthew G. Knepley               valCopy[Ni * k + (foffset + i)] *= fval;
66356ecaa68aSToby Isaac             }
66366ecaa68aSToby Isaac           }
663771f0bbf9SMatthew G. Knepley         }
663871f0bbf9SMatthew G. Knepley         foffset += fdof;
663971f0bbf9SMatthew G. Knepley       }
664071f0bbf9SMatthew G. Knepley     }
664171f0bbf9SMatthew G. Knepley   }
664271f0bbf9SMatthew G. Knepley   /* 4) Apply hanging node constraints. Get new symmetries and replace all storage with constrained storage */
664371f0bbf9SMatthew G. Knepley   ierr = DMPlexAnchorsModifyMat(dm, section, Ncl, Ni, points, perms, values ? *values : NULL, &NclC, &NiC, &pointsC, values ? &valuesC : NULL, offsets, PETSC_TRUE);CHKERRQ(ierr);
664471f0bbf9SMatthew G. Knepley   if (NclC) {
664571f0bbf9SMatthew G. Knepley     if (valCopy) {ierr = DMRestoreWorkArray(dm, Ni*Ni, MPIU_SCALAR, &valCopy);CHKERRQ(ierr);}
664671f0bbf9SMatthew G. Knepley     for (f = 0; f < PetscMax(1, Nf); ++f) {
664771f0bbf9SMatthew G. Knepley       if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section, f, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
664871f0bbf9SMatthew G. Knepley       else    {ierr = PetscSectionRestorePointSyms(section, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
664971f0bbf9SMatthew G. Knepley     }
665071f0bbf9SMatthew G. Knepley     for (f = 0; f < PetscMax(1, Nf); ++f) {
665171f0bbf9SMatthew G. Knepley       if (Nf) {ierr = PetscSectionGetFieldPointSyms(section, f, NclC, pointsC, &perms[f], &flips[f]);CHKERRQ(ierr);}
665271f0bbf9SMatthew G. Knepley       else    {ierr = PetscSectionGetPointSyms(section, NclC, pointsC, &perms[f], &flips[f]);CHKERRQ(ierr);}
665371f0bbf9SMatthew G. Knepley     }
665471f0bbf9SMatthew G. Knepley     ierr = DMPlexRestoreCompressedClosure(dm, section, point, &Ncl, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
665571f0bbf9SMatthew G. Knepley     Ncl     = NclC;
665671f0bbf9SMatthew G. Knepley     Ni      = NiC;
665771f0bbf9SMatthew G. Knepley     points  = pointsC;
665871f0bbf9SMatthew G. Knepley     if (values) *values = valuesC;
665971f0bbf9SMatthew G. Knepley   }
666071f0bbf9SMatthew G. Knepley   /* 5) Calculate indices */
666171f0bbf9SMatthew G. Knepley   ierr = DMGetWorkArray(dm, Ni, MPIU_INT, &idx);CHKERRQ(ierr);
666271f0bbf9SMatthew G. Knepley   if (Nf) {
666371f0bbf9SMatthew G. Knepley     PetscInt  idxOff;
666471f0bbf9SMatthew G. Knepley     PetscBool useFieldOffsets;
666571f0bbf9SMatthew G. Knepley 
666671f0bbf9SMatthew G. Knepley     if (outOffsets) {for (f = 0; f <= Nf; f++) outOffsets[f] = offsets[f];}
666771f0bbf9SMatthew G. Knepley     ierr = PetscSectionGetUseFieldOffsets(idxSection, &useFieldOffsets);CHKERRQ(ierr);
666871f0bbf9SMatthew G. Knepley     if (useFieldOffsets) {
666971f0bbf9SMatthew G. Knepley       for (p = 0; p < Ncl; ++p) {
667071f0bbf9SMatthew G. Knepley         const PetscInt pnt = points[p*2];
667171f0bbf9SMatthew G. Knepley 
667271f0bbf9SMatthew G. Knepley         ierr = DMPlexGetIndicesPointFieldsSplit_Internal(section, idxSection, pnt, offsets, perms, p, clperm, idx);CHKERRQ(ierr);
66737773e69fSMatthew G. Knepley       }
66747773e69fSMatthew G. Knepley     } else {
667571f0bbf9SMatthew G. Knepley       for (p = 0; p < Ncl; ++p) {
667671f0bbf9SMatthew G. Knepley         const PetscInt pnt = points[p*2];
667771f0bbf9SMatthew G. Knepley 
667871f0bbf9SMatthew G. Knepley         ierr = PetscSectionGetOffset(idxSection, pnt, &idxOff);CHKERRQ(ierr);
667971f0bbf9SMatthew G. Knepley         /* Note that we pass a local section even though we're using global offsets.  This is because global sections do
668071f0bbf9SMatthew G. Knepley          * not (at the time of this writing) have fields set. They probably should, in which case we would pass the
668171f0bbf9SMatthew G. Knepley          * global section. */
668271f0bbf9SMatthew G. Knepley         ierr = DMPlexGetIndicesPointFields_Internal(section, isLocal, pnt, idxOff < 0 ? -(idxOff+1) : idxOff, offsets, PETSC_FALSE, perms, p, clperm, idx);CHKERRQ(ierr);
668371f0bbf9SMatthew G. Knepley       }
668471f0bbf9SMatthew G. Knepley     }
668571f0bbf9SMatthew G. Knepley   } else {
668671f0bbf9SMatthew G. Knepley     PetscInt off = 0, idxOff;
668771f0bbf9SMatthew G. Knepley 
668871f0bbf9SMatthew G. Knepley     for (p = 0; p < Ncl; ++p) {
668971f0bbf9SMatthew G. Knepley       const PetscInt  pnt  = points[p*2];
66904acb8e1eSToby Isaac       const PetscInt *perm = perms[0] ? perms[0][p] : NULL;
66914acb8e1eSToby Isaac 
669271f0bbf9SMatthew G. Knepley       ierr = PetscSectionGetOffset(idxSection, pnt, &idxOff);CHKERRQ(ierr);
669371f0bbf9SMatthew G. Knepley       /* Note that we pass a local section even though we're using global offsets.  This is because global sections do
669471f0bbf9SMatthew G. Knepley        * not (at the time of this writing) have fields set. They probably should, in which case we would pass the global section. */
669571f0bbf9SMatthew G. Knepley       ierr = DMPlexGetIndicesPoint_Internal(section, isLocal, pnt, idxOff < 0 ? -(idxOff+1) : idxOff, &off, PETSC_FALSE, perm, clperm, idx);CHKERRQ(ierr);
66967773e69fSMatthew G. Knepley     }
66977773e69fSMatthew G. Knepley   }
669871f0bbf9SMatthew G. Knepley   /* 6) Cleanup */
669971f0bbf9SMatthew G. Knepley   for (f = 0; f < PetscMax(1, Nf); ++f) {
670071f0bbf9SMatthew G. Knepley     if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section, f, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
670171f0bbf9SMatthew G. Knepley     else    {ierr = PetscSectionRestorePointSyms(section, Ncl, points, &perms[f], &flips[f]);CHKERRQ(ierr);}
67024acb8e1eSToby Isaac   }
670371f0bbf9SMatthew G. Knepley   if (NclC) {
670471f0bbf9SMatthew G. Knepley     ierr = DMRestoreWorkArray(dm, NclC*2, MPIU_INT, &pointsC);CHKERRQ(ierr);
67057773e69fSMatthew G. Knepley   } else {
670671f0bbf9SMatthew G. Knepley     ierr = DMPlexRestoreCompressedClosure(dm, section, point, &Ncl, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
67077773e69fSMatthew G. Knepley   }
670871f0bbf9SMatthew G. Knepley 
670971f0bbf9SMatthew G. Knepley   if (numIndices) *numIndices = Ni;
671071f0bbf9SMatthew G. Knepley   if (indices)    *indices    = idx;
67117773e69fSMatthew G. Knepley   PetscFunctionReturn(0);
67127773e69fSMatthew G. Knepley }
67137773e69fSMatthew G. Knepley 
67147cd05799SMatthew G. Knepley /*@C
671571f0bbf9SMatthew G. Knepley   DMPlexRestoreClosureIndices - Restores the global dof indices associated with the closure of the given point within the provided sections.
67167cd05799SMatthew G. Knepley 
67177cd05799SMatthew G. Knepley   Not collective
67187cd05799SMatthew G. Knepley 
67197cd05799SMatthew G. Knepley   Input Parameters:
67207cd05799SMatthew G. Knepley + dm         - The DM
672171f0bbf9SMatthew G. Knepley . section    - The PetscSection describing the points (a local section)
672271f0bbf9SMatthew G. Knepley . idxSection - The PetscSection from which to obtain indices (may be local or global)
672371f0bbf9SMatthew G. Knepley . point      - The point defining the closure
672471f0bbf9SMatthew G. Knepley - useClPerm  - Use the closure point permutation if available
672571f0bbf9SMatthew G. Knepley 
672671f0bbf9SMatthew G. Knepley   Output Parameters:
672771f0bbf9SMatthew G. Knepley + numIndices - The number of dof indices in the closure of point with the input sections
672871f0bbf9SMatthew G. Knepley . indices    - The dof indices
672971f0bbf9SMatthew G. Knepley . outOffsets - Array to write the field offsets into, or NULL
673071f0bbf9SMatthew G. Knepley - values     - The input values, which may be modified if sign flips are induced by the point symmetries, or NULL
673171f0bbf9SMatthew G. Knepley 
673271f0bbf9SMatthew G. Knepley   Notes:
673371f0bbf9SMatthew G. Knepley   If values were modified, the user is responsible for calling DMRestoreWorkArray(dm, 0, MPIU_SCALAR, &values).
673471f0bbf9SMatthew G. Knepley 
673571f0bbf9SMatthew G. Knepley   If idxSection is global, any constrained dofs (see DMAddBoundary(), for example) will get negative indices.  The value
673671f0bbf9SMatthew G. Knepley   of those indices is not significant.  If idxSection is local, the constrained dofs will yield the involution -(idx+1)
673771f0bbf9SMatthew G. Knepley   of their index in a local vector.  A caller who does not wish to distinguish those points may recover the nonnegative
673871f0bbf9SMatthew G. Knepley   indices via involution, -(-(idx+1)+1)==idx.  Local indices are provided when idxSection == section, otherwise global
673971f0bbf9SMatthew G. Knepley   indices (with the above semantics) are implied.
67407cd05799SMatthew G. Knepley 
67417cd05799SMatthew G. Knepley   Level: advanced
67427cd05799SMatthew G. Knepley 
674371f0bbf9SMatthew G. Knepley .seealso DMPlexGetClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure(), DMGetLocalSection(), DMGetGlobalSection()
67447cd05799SMatthew G. Knepley @*/
674571f0bbf9SMatthew G. Knepley PetscErrorCode DMPlexRestoreClosureIndices(DM dm, PetscSection section, PetscSection idxSection, PetscInt point, PetscBool useClPerm,
674671f0bbf9SMatthew G. Knepley                                            PetscInt *numIndices, PetscInt *indices[], PetscInt outOffsets[], PetscScalar *values[])
67477773e69fSMatthew G. Knepley {
67487773e69fSMatthew G. Knepley   PetscErrorCode ierr;
67497773e69fSMatthew G. Knepley 
67507773e69fSMatthew G. Knepley   PetscFunctionBegin;
67517773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6752064a246eSJacob Faibussowitsch   PetscValidPointer(indices, 7);
675369291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, indices);CHKERRQ(ierr);
67547773e69fSMatthew G. Knepley   PetscFunctionReturn(0);
67557773e69fSMatthew G. Knepley }
67567773e69fSMatthew G. Knepley 
67577f5d1fdeSMatthew G. Knepley /*@C
67587f5d1fdeSMatthew G. Knepley   DMPlexMatSetClosure - Set an array of the values on the closure of 'point'
67597f5d1fdeSMatthew G. Knepley 
67607f5d1fdeSMatthew G. Knepley   Not collective
67617f5d1fdeSMatthew G. Knepley 
67627f5d1fdeSMatthew G. Knepley   Input Parameters:
67637f5d1fdeSMatthew G. Knepley + dm - The DM
6764ebd6d717SJed Brown . section - The section describing the layout in v, or NULL to use the default section
6765ebd6d717SJed Brown . globalSection - The section describing the layout in v, or NULL to use the default global section
67667f5d1fdeSMatthew G. Knepley . A - The matrix
6767eaf898f9SPatrick Sanan . point - The point in the DM
67687f5d1fdeSMatthew G. Knepley . values - The array of values
67697f5d1fdeSMatthew G. Knepley - mode - The insert mode, where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions
67707f5d1fdeSMatthew G. Knepley 
67717f5d1fdeSMatthew G. Knepley   Fortran Notes:
67727f5d1fdeSMatthew G. Knepley   This routine is only available in Fortran 90, and you must include petsc.h90 in your code.
67737f5d1fdeSMatthew G. Knepley 
67747f5d1fdeSMatthew G. Knepley   Level: intermediate
67757f5d1fdeSMatthew G. Knepley 
67764a1e0b3eSMatthew G. Knepley .seealso DMPlexMatSetClosureGeneral(), DMPlexVecGetClosure(), DMPlexVecSetClosure()
67777f5d1fdeSMatthew G. Knepley @*/
67787c1f9639SMatthew G Knepley PetscErrorCode DMPlexMatSetClosure(DM dm, PetscSection section, PetscSection globalSection, Mat A, PetscInt point, const PetscScalar values[], InsertMode mode)
6779552f7358SJed Brown {
6780552f7358SJed Brown   DM_Plex           *mesh = (DM_Plex*) dm->data;
6781552f7358SJed Brown   PetscInt          *indices;
678271f0bbf9SMatthew G. Knepley   PetscInt           numIndices;
678371f0bbf9SMatthew G. Knepley   const PetscScalar *valuesOrig = values;
6784552f7358SJed Brown   PetscErrorCode     ierr;
6785552f7358SJed Brown 
6786552f7358SJed Brown   PetscFunctionBegin;
6787552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
678892fd8e1eSJed Brown   if (!section) {ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);}
67893dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
6790e87a4003SBarry Smith   if (!globalSection) {ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);}
67913dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(globalSection, PETSC_SECTION_CLASSID, 3);
67923dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 4);
6793552f7358SJed Brown 
679471f0bbf9SMatthew G. Knepley   ierr = DMPlexGetClosureIndices(dm, section, globalSection, point, PETSC_TRUE, &numIndices, &indices, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
67950d644c17SKarl Rupp 
6796b0ecff45SMatthew G. Knepley   if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr);}
67974a1e0b3eSMatthew G. Knepley   ierr = MatSetValues(A, numIndices, indices, numIndices, indices, values, mode);
6798552f7358SJed Brown   if (ierr) {
6799552f7358SJed Brown     PetscMPIInt    rank;
6800552f7358SJed Brown     PetscErrorCode ierr2;
6801552f7358SJed Brown 
680255b25c41SPierre Jolivet     ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRMPI(ierr2);
6803e4b003c7SBarry Smith     ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2);
6804b0ecff45SMatthew G. Knepley     ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr2);
680571f0bbf9SMatthew G. Knepley     ierr2 = DMPlexRestoreClosureIndices(dm, section, globalSection, point, PETSC_TRUE, &numIndices, &indices, NULL, (PetscScalar **) &values);CHKERRQ(ierr2);
680671f0bbf9SMatthew G. Knepley     if (values != valuesOrig) {ierr2 = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, &values);CHKERRQ(ierr2);}
6807552f7358SJed Brown     CHKERRQ(ierr);
6808552f7358SJed Brown   }
68094a1e0b3eSMatthew G. Knepley   if (mesh->printFEM > 1) {
68104a1e0b3eSMatthew G. Knepley     PetscInt i;
68114a1e0b3eSMatthew G. Knepley     ierr = PetscPrintf(PETSC_COMM_SELF, "  Indices:");CHKERRQ(ierr);
68124a1e0b3eSMatthew G. Knepley     for (i = 0; i < numIndices; ++i) {ierr = PetscPrintf(PETSC_COMM_SELF, " %D", indices[i]);CHKERRQ(ierr);}
68134a1e0b3eSMatthew G. Knepley     ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
68144a1e0b3eSMatthew G. Knepley   }
681571f0bbf9SMatthew G. Knepley 
681671f0bbf9SMatthew G. Knepley   ierr = DMPlexRestoreClosureIndices(dm, section, globalSection, point, PETSC_TRUE, &numIndices, &indices, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
681771f0bbf9SMatthew G. Knepley   if (values != valuesOrig) {ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, &values);CHKERRQ(ierr);}
681871f0bbf9SMatthew G. Knepley   PetscFunctionReturn(0);
68194acb8e1eSToby Isaac }
682071f0bbf9SMatthew G. Knepley 
68214a1e0b3eSMatthew G. Knepley /*@C
68224a1e0b3eSMatthew G. Knepley   DMPlexMatSetClosure - Set an array of the values on the closure of 'point' using a different row and column section
68234a1e0b3eSMatthew G. Knepley 
68244a1e0b3eSMatthew G. Knepley   Not collective
68254a1e0b3eSMatthew G. Knepley 
68264a1e0b3eSMatthew G. Knepley   Input Parameters:
68274a1e0b3eSMatthew G. Knepley + dmRow - The DM for the row fields
68284a1e0b3eSMatthew G. Knepley . sectionRow - The section describing the layout, or NULL to use the default section in dmRow
68294a1e0b3eSMatthew G. Knepley . globalSectionRow - The section describing the layout, or NULL to use the default global section in dmRow
68304a1e0b3eSMatthew G. Knepley . dmCol - The DM for the column fields
68314a1e0b3eSMatthew G. Knepley . sectionCol - The section describing the layout, or NULL to use the default section in dmCol
68324a1e0b3eSMatthew G. Knepley . globalSectionCol - The section describing the layout, or NULL to use the default global section in dmCol
68334a1e0b3eSMatthew G. Knepley . A - The matrix
68344a1e0b3eSMatthew G. Knepley . point - The point in the DMs
68354a1e0b3eSMatthew G. Knepley . values - The array of values
68364a1e0b3eSMatthew G. Knepley - mode - The insert mode, where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions
68374a1e0b3eSMatthew G. Knepley 
68384a1e0b3eSMatthew G. Knepley   Level: intermediate
68394a1e0b3eSMatthew G. Knepley 
68404a1e0b3eSMatthew G. Knepley .seealso DMPlexMatSetClosure(), DMPlexVecGetClosure(), DMPlexVecSetClosure()
68414a1e0b3eSMatthew G. Knepley @*/
684271f0bbf9SMatthew G. Knepley PetscErrorCode DMPlexMatSetClosureGeneral(DM dmRow, PetscSection sectionRow, PetscSection globalSectionRow, DM dmCol, PetscSection sectionCol, PetscSection globalSectionCol, Mat A, PetscInt point, const PetscScalar values[], InsertMode mode)
684371f0bbf9SMatthew G. Knepley {
684471f0bbf9SMatthew G. Knepley   DM_Plex           *mesh = (DM_Plex*) dmRow->data;
684571f0bbf9SMatthew G. Knepley   PetscInt          *indicesRow, *indicesCol;
684671f0bbf9SMatthew G. Knepley   PetscInt           numIndicesRow, numIndicesCol;
684771f0bbf9SMatthew G. Knepley   const PetscScalar *valuesOrig = values;
684871f0bbf9SMatthew G. Knepley   PetscErrorCode     ierr;
684971f0bbf9SMatthew G. Knepley 
685071f0bbf9SMatthew G. Knepley   PetscFunctionBegin;
685171f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(dmRow, DM_CLASSID, 1);
685271f0bbf9SMatthew G. Knepley   if (!sectionRow) {ierr = DMGetLocalSection(dmRow, &sectionRow);CHKERRQ(ierr);}
685371f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(sectionRow, PETSC_SECTION_CLASSID, 2);
685471f0bbf9SMatthew G. Knepley   if (!globalSectionRow) {ierr = DMGetGlobalSection(dmRow, &globalSectionRow);CHKERRQ(ierr);}
685571f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(globalSectionRow, PETSC_SECTION_CLASSID, 3);
685671f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(dmCol, DM_CLASSID, 4);
685771f0bbf9SMatthew G. Knepley   if (!sectionCol) {ierr = DMGetLocalSection(dmCol, &sectionCol);CHKERRQ(ierr);}
685871f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(sectionCol, PETSC_SECTION_CLASSID, 5);
685971f0bbf9SMatthew G. Knepley   if (!globalSectionCol) {ierr = DMGetGlobalSection(dmCol, &globalSectionCol);CHKERRQ(ierr);}
686071f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(globalSectionCol, PETSC_SECTION_CLASSID, 6);
686171f0bbf9SMatthew G. Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 7);
686271f0bbf9SMatthew G. Knepley 
686371f0bbf9SMatthew G. Knepley   ierr = DMPlexGetClosureIndices(dmRow, sectionRow, globalSectionRow, point, PETSC_TRUE, &numIndicesRow, &indicesRow, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
686471f0bbf9SMatthew G. Knepley   ierr = DMPlexGetClosureIndices(dmCol, sectionCol, globalSectionCol, point, PETSC_TRUE, &numIndicesCol, &indicesCol, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
686571f0bbf9SMatthew G. Knepley 
686671f0bbf9SMatthew G. Knepley   if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numIndicesRow, indicesRow, numIndicesCol, indicesCol, values);CHKERRQ(ierr);}
68674a1e0b3eSMatthew G. Knepley   ierr = MatSetValues(A, numIndicesRow, indicesRow, numIndicesCol, indicesCol, values, mode);
686871f0bbf9SMatthew G. Knepley   if (ierr) {
686971f0bbf9SMatthew G. Knepley     PetscMPIInt    rank;
687071f0bbf9SMatthew G. Knepley     PetscErrorCode ierr2;
687171f0bbf9SMatthew G. Knepley 
687255b25c41SPierre Jolivet     ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRMPI(ierr2);
687371f0bbf9SMatthew G. Knepley     ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2);
687471f0bbf9SMatthew G. Knepley     ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numIndicesRow, indicesRow, numIndicesCol, indicesCol, values);CHKERRQ(ierr2);
687571f0bbf9SMatthew G. Knepley     ierr2 = DMPlexRestoreClosureIndices(dmRow, sectionRow, globalSectionRow, point, PETSC_TRUE, &numIndicesRow, &indicesRow, NULL, (PetscScalar **) &values);CHKERRQ(ierr2);
687671f0bbf9SMatthew G. Knepley     ierr2 = DMPlexRestoreClosureIndices(dmCol, sectionCol, globalSectionCol, point, PETSC_TRUE, &numIndicesCol, &indicesRow, NULL, (PetscScalar **) &values);CHKERRQ(ierr2);
687771f0bbf9SMatthew G. Knepley     if (values != valuesOrig) {ierr2 = DMRestoreWorkArray(dmRow, 0, MPIU_SCALAR, &values);CHKERRQ(ierr2);}
687871f0bbf9SMatthew G. Knepley     CHKERRQ(ierr);
6879d3d1a6afSToby Isaac   }
688071f0bbf9SMatthew G. Knepley 
688171f0bbf9SMatthew G. Knepley   ierr = DMPlexRestoreClosureIndices(dmRow, sectionRow, globalSectionRow, point, PETSC_TRUE, &numIndicesRow, &indicesRow, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
688271f0bbf9SMatthew G. Knepley   ierr = DMPlexRestoreClosureIndices(dmCol, sectionCol, globalSectionCol, point, PETSC_TRUE, &numIndicesCol, &indicesCol, NULL, (PetscScalar **) &values);CHKERRQ(ierr);
688371f0bbf9SMatthew G. Knepley   if (values != valuesOrig) {ierr = DMRestoreWorkArray(dmRow, 0, MPIU_SCALAR, &values);CHKERRQ(ierr);}
6884552f7358SJed Brown   PetscFunctionReturn(0);
6885552f7358SJed Brown }
6886552f7358SJed Brown 
6887de41b84cSMatthew G. Knepley PetscErrorCode DMPlexMatSetClosureRefined(DM dmf, PetscSection fsection, PetscSection globalFSection, DM dmc, PetscSection csection, PetscSection globalCSection, Mat A, PetscInt point, const PetscScalar values[], InsertMode mode)
6888de41b84cSMatthew G. Knepley {
6889de41b84cSMatthew G. Knepley   DM_Plex        *mesh   = (DM_Plex*) dmf->data;
6890de41b84cSMatthew G. Knepley   PetscInt       *fpoints = NULL, *ftotpoints = NULL;
6891de41b84cSMatthew G. Knepley   PetscInt       *cpoints = NULL;
6892de41b84cSMatthew G. Knepley   PetscInt       *findices, *cindices;
689317c0192bSMatthew G. Knepley   const PetscInt *fclperm = NULL, *cclperm = NULL; /* Closure permutations cannot work here */
6894de41b84cSMatthew G. Knepley   PetscInt        foffsets[32], coffsets[32];
6895412e9a14SMatthew G. Knepley   DMPolytopeType  ct;
68964ca5e9f5SMatthew G. Knepley   PetscInt        numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f;
6897de41b84cSMatthew G. Knepley   PetscErrorCode  ierr;
6898de41b84cSMatthew G. Knepley 
6899de41b84cSMatthew G. Knepley   PetscFunctionBegin;
6900de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(dmf, DM_CLASSID, 1);
6901de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(dmc, DM_CLASSID, 4);
690292fd8e1eSJed Brown   if (!fsection) {ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);}
6903de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2);
690492fd8e1eSJed Brown   if (!csection) {ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);}
6905de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5);
6906e87a4003SBarry Smith   if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);}
6907de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3);
6908e87a4003SBarry Smith   if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);}
6909de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6);
6910de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 7);
6911de41b84cSMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr);
6912de41b84cSMatthew G. Knepley   if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields);
6913580bdb30SBarry Smith   ierr = PetscArrayzero(foffsets, 32);CHKERRQ(ierr);
6914580bdb30SBarry Smith   ierr = PetscArrayzero(coffsets, 32);CHKERRQ(ierr);
6915de41b84cSMatthew G. Knepley   /* Column indices */
6916de41b84cSMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
69174ca5e9f5SMatthew G. Knepley   maxFPoints = numCPoints;
6918de41b84cSMatthew G. Knepley   /* Compress out points not in the section */
6919de41b84cSMatthew G. Knepley   /*   TODO: Squeeze out points with 0 dof as well */
6920de41b84cSMatthew G. Knepley   ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr);
6921de41b84cSMatthew G. Knepley   for (p = 0, q = 0; p < numCPoints*2; p += 2) {
6922de41b84cSMatthew G. Knepley     if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) {
6923de41b84cSMatthew G. Knepley       cpoints[q*2]   = cpoints[p];
6924de41b84cSMatthew G. Knepley       cpoints[q*2+1] = cpoints[p+1];
6925de41b84cSMatthew G. Knepley       ++q;
6926de41b84cSMatthew G. Knepley     }
6927de41b84cSMatthew G. Knepley   }
6928de41b84cSMatthew G. Knepley   numCPoints = q;
6929de41b84cSMatthew G. Knepley   for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) {
6930de41b84cSMatthew G. Knepley     PetscInt fdof;
6931de41b84cSMatthew G. Knepley 
6932de41b84cSMatthew G. Knepley     ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr);
69334ca5e9f5SMatthew G. Knepley     if (!dof) continue;
6934de41b84cSMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
6935de41b84cSMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr);
6936de41b84cSMatthew G. Knepley       coffsets[f+1] += fdof;
6937de41b84cSMatthew G. Knepley     }
6938de41b84cSMatthew G. Knepley     numCIndices += dof;
6939de41b84cSMatthew G. Knepley   }
6940de41b84cSMatthew G. Knepley   for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f];
6941de41b84cSMatthew G. Knepley   /* Row indices */
6942412e9a14SMatthew G. Knepley   ierr = DMPlexGetCellType(dmc, point, &ct);CHKERRQ(ierr);
6943412e9a14SMatthew G. Knepley   {
6944412e9a14SMatthew G. Knepley     DMPlexCellRefiner cr;
6945412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerCreate(dmc, &cr);CHKERRQ(ierr);
6946412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerGetAffineTransforms(cr, ct, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr);
6947412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerDestroy(&cr);CHKERRQ(ierr);
6948412e9a14SMatthew G. Knepley   }
694969291d52SBarry Smith   ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
6950de41b84cSMatthew G. Knepley   for (r = 0, q = 0; r < numSubcells; ++r) {
6951de41b84cSMatthew G. Knepley     /* TODO Map from coarse to fine cells */
6952de41b84cSMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
6953de41b84cSMatthew G. Knepley     /* Compress out points not in the section */
6954de41b84cSMatthew G. Knepley     ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr);
6955de41b84cSMatthew G. Knepley     for (p = 0; p < numFPoints*2; p += 2) {
6956de41b84cSMatthew G. Knepley       if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) {
69574ca5e9f5SMatthew G. Knepley         ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr);
69584ca5e9f5SMatthew G. Knepley         if (!dof) continue;
69594ca5e9f5SMatthew G. Knepley         for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break;
69604ca5e9f5SMatthew G. Knepley         if (s < q) continue;
6961de41b84cSMatthew G. Knepley         ftotpoints[q*2]   = fpoints[p];
6962de41b84cSMatthew G. Knepley         ftotpoints[q*2+1] = fpoints[p+1];
6963de41b84cSMatthew G. Knepley         ++q;
6964de41b84cSMatthew G. Knepley       }
6965de41b84cSMatthew G. Knepley     }
6966de41b84cSMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
6967de41b84cSMatthew G. Knepley   }
6968de41b84cSMatthew G. Knepley   numFPoints = q;
6969de41b84cSMatthew G. Knepley   for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) {
6970de41b84cSMatthew G. Knepley     PetscInt fdof;
6971de41b84cSMatthew G. Knepley 
6972de41b84cSMatthew G. Knepley     ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr);
69734ca5e9f5SMatthew G. Knepley     if (!dof) continue;
6974de41b84cSMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
6975de41b84cSMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr);
6976de41b84cSMatthew G. Knepley       foffsets[f+1] += fdof;
6977de41b84cSMatthew G. Knepley     }
6978de41b84cSMatthew G. Knepley     numFIndices += dof;
6979de41b84cSMatthew G. Knepley   }
6980de41b84cSMatthew G. Knepley   for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f];
6981de41b84cSMatthew G. Knepley 
69828ccfff9cSToby Isaac   if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices);
69838ccfff9cSToby Isaac   if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices);
698469291d52SBarry Smith   ierr = DMGetWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr);
698569291d52SBarry Smith   ierr = DMGetWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr);
6986de41b84cSMatthew G. Knepley   if (numFields) {
69874acb8e1eSToby Isaac     const PetscInt **permsF[32] = {NULL};
69884acb8e1eSToby Isaac     const PetscInt **permsC[32] = {NULL};
69894acb8e1eSToby Isaac 
69904acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
69914acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
69924acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
6993de41b84cSMatthew G. Knepley     }
69944acb8e1eSToby Isaac     for (p = 0; p < numFPoints; p++) {
69954acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
699636fa2b79SJed Brown       ierr = DMPlexGetIndicesPointFields_Internal(fsection, PETSC_FALSE, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, fclperm, findices);CHKERRQ(ierr);
69974acb8e1eSToby Isaac     }
69984acb8e1eSToby Isaac     for (p = 0; p < numCPoints; p++) {
69994acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
700036fa2b79SJed Brown       ierr = DMPlexGetIndicesPointFields_Internal(csection, PETSC_FALSE, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cclperm, cindices);CHKERRQ(ierr);
70014acb8e1eSToby Isaac     }
70024acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
70034acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
70044acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
7005de41b84cSMatthew G. Knepley     }
7006de41b84cSMatthew G. Knepley   } else {
70074acb8e1eSToby Isaac     const PetscInt **permsF = NULL;
70084acb8e1eSToby Isaac     const PetscInt **permsC = NULL;
70094acb8e1eSToby Isaac 
70104acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
70114acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
70124acb8e1eSToby Isaac     for (p = 0, off = 0; p < numFPoints; p++) {
70134acb8e1eSToby Isaac       const PetscInt *perm = permsF ? permsF[p] : NULL;
70144acb8e1eSToby Isaac 
70154acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
701636fa2b79SJed Brown       ierr = DMPlexGetIndicesPoint_Internal(fsection, PETSC_FALSE, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, fclperm, findices);CHKERRQ(ierr);
7017de41b84cSMatthew G. Knepley     }
70184acb8e1eSToby Isaac     for (p = 0, off = 0; p < numCPoints; p++) {
70194acb8e1eSToby Isaac       const PetscInt *perm = permsC ? permsC[p] : NULL;
70204acb8e1eSToby Isaac 
70214acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
702236fa2b79SJed Brown       ierr = DMPlexGetIndicesPoint_Internal(csection, PETSC_FALSE, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cclperm, cindices);CHKERRQ(ierr);
7023de41b84cSMatthew G. Knepley     }
70244acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
70254acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
7026de41b84cSMatthew G. Knepley   }
7027de41b84cSMatthew G. Knepley   if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr);}
70284acb8e1eSToby Isaac   /* TODO: flips */
7029de41b84cSMatthew G. Knepley   ierr = MatSetValues(A, numFIndices, findices, numCIndices, cindices, values, mode);
7030de41b84cSMatthew G. Knepley   if (ierr) {
7031de41b84cSMatthew G. Knepley     PetscMPIInt    rank;
7032de41b84cSMatthew G. Knepley     PetscErrorCode ierr2;
7033de41b84cSMatthew G. Knepley 
703455b25c41SPierre Jolivet     ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRMPI(ierr2);
7035e4b003c7SBarry Smith     ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2);
7036de41b84cSMatthew G. Knepley     ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr2);
703769291d52SBarry Smith     ierr2 = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr2);
703869291d52SBarry Smith     ierr2 = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr2);
7039de41b84cSMatthew G. Knepley     CHKERRQ(ierr);
7040de41b84cSMatthew G. Knepley   }
704169291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
7042de41b84cSMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
704369291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr);
704469291d52SBarry Smith   ierr = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr);
7045de41b84cSMatthew G. Knepley   PetscFunctionReturn(0);
7046de41b84cSMatthew G. Knepley }
7047de41b84cSMatthew G. Knepley 
70487c927364SMatthew G. Knepley PetscErrorCode DMPlexMatGetClosureIndicesRefined(DM dmf, PetscSection fsection, PetscSection globalFSection, DM dmc, PetscSection csection, PetscSection globalCSection, PetscInt point, PetscInt cindices[], PetscInt findices[])
70497c927364SMatthew G. Knepley {
70507c927364SMatthew G. Knepley   PetscInt      *fpoints = NULL, *ftotpoints = NULL;
70517c927364SMatthew G. Knepley   PetscInt      *cpoints = NULL;
70527c927364SMatthew G. Knepley   PetscInt       foffsets[32], coffsets[32];
705317c0192bSMatthew G. Knepley   const PetscInt *fclperm = NULL, *cclperm = NULL; /* Closure permutations cannot work here */
7054412e9a14SMatthew G. Knepley   DMPolytopeType ct;
70557c927364SMatthew G. Knepley   PetscInt       numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f;
70567c927364SMatthew G. Knepley   PetscErrorCode ierr;
70577c927364SMatthew G. Knepley 
70587c927364SMatthew G. Knepley   PetscFunctionBegin;
70597c927364SMatthew G. Knepley   PetscValidHeaderSpecific(dmf, DM_CLASSID, 1);
70607c927364SMatthew G. Knepley   PetscValidHeaderSpecific(dmc, DM_CLASSID, 4);
706192fd8e1eSJed Brown   if (!fsection) {ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);}
70627c927364SMatthew G. Knepley   PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2);
706392fd8e1eSJed Brown   if (!csection) {ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);}
70647c927364SMatthew G. Knepley   PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5);
7065e87a4003SBarry Smith   if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);}
70667c927364SMatthew G. Knepley   PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3);
7067e87a4003SBarry Smith   if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);}
70687c927364SMatthew G. Knepley   PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6);
70697c927364SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr);
70707c927364SMatthew G. Knepley   if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields);
7071580bdb30SBarry Smith   ierr = PetscArrayzero(foffsets, 32);CHKERRQ(ierr);
7072580bdb30SBarry Smith   ierr = PetscArrayzero(coffsets, 32);CHKERRQ(ierr);
70737c927364SMatthew G. Knepley   /* Column indices */
70747c927364SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
70757c927364SMatthew G. Knepley   maxFPoints = numCPoints;
70767c927364SMatthew G. Knepley   /* Compress out points not in the section */
70777c927364SMatthew G. Knepley   /*   TODO: Squeeze out points with 0 dof as well */
70787c927364SMatthew G. Knepley   ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr);
70797c927364SMatthew G. Knepley   for (p = 0, q = 0; p < numCPoints*2; p += 2) {
70807c927364SMatthew G. Knepley     if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) {
70817c927364SMatthew G. Knepley       cpoints[q*2]   = cpoints[p];
70827c927364SMatthew G. Knepley       cpoints[q*2+1] = cpoints[p+1];
70837c927364SMatthew G. Knepley       ++q;
70847c927364SMatthew G. Knepley     }
70857c927364SMatthew G. Knepley   }
70867c927364SMatthew G. Knepley   numCPoints = q;
70877c927364SMatthew G. Knepley   for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) {
70887c927364SMatthew G. Knepley     PetscInt fdof;
70897c927364SMatthew G. Knepley 
70907c927364SMatthew G. Knepley     ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr);
70917c927364SMatthew G. Knepley     if (!dof) continue;
70927c927364SMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
70937c927364SMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr);
70947c927364SMatthew G. Knepley       coffsets[f+1] += fdof;
70957c927364SMatthew G. Knepley     }
70967c927364SMatthew G. Knepley     numCIndices += dof;
70977c927364SMatthew G. Knepley   }
70987c927364SMatthew G. Knepley   for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f];
70997c927364SMatthew G. Knepley   /* Row indices */
7100412e9a14SMatthew G. Knepley   ierr = DMPlexGetCellType(dmc, point, &ct);CHKERRQ(ierr);
7101412e9a14SMatthew G. Knepley   {
7102412e9a14SMatthew G. Knepley     DMPlexCellRefiner cr;
7103412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerCreate(dmc, &cr);CHKERRQ(ierr);
7104412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerGetAffineTransforms(cr, ct, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr);
7105412e9a14SMatthew G. Knepley     ierr = DMPlexCellRefinerDestroy(&cr);CHKERRQ(ierr);
7106412e9a14SMatthew G. Knepley   }
710769291d52SBarry Smith   ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
71087c927364SMatthew G. Knepley   for (r = 0, q = 0; r < numSubcells; ++r) {
71097c927364SMatthew G. Knepley     /* TODO Map from coarse to fine cells */
71107c927364SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
71117c927364SMatthew G. Knepley     /* Compress out points not in the section */
71127c927364SMatthew G. Knepley     ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr);
71137c927364SMatthew G. Knepley     for (p = 0; p < numFPoints*2; p += 2) {
71147c927364SMatthew G. Knepley       if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) {
71157c927364SMatthew G. Knepley         ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr);
71167c927364SMatthew G. Knepley         if (!dof) continue;
71177c927364SMatthew G. Knepley         for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break;
71187c927364SMatthew G. Knepley         if (s < q) continue;
71197c927364SMatthew G. Knepley         ftotpoints[q*2]   = fpoints[p];
71207c927364SMatthew G. Knepley         ftotpoints[q*2+1] = fpoints[p+1];
71217c927364SMatthew G. Knepley         ++q;
71227c927364SMatthew G. Knepley       }
71237c927364SMatthew G. Knepley     }
71247c927364SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
71257c927364SMatthew G. Knepley   }
71267c927364SMatthew G. Knepley   numFPoints = q;
71277c927364SMatthew G. Knepley   for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) {
71287c927364SMatthew G. Knepley     PetscInt fdof;
71297c927364SMatthew G. Knepley 
71307c927364SMatthew G. Knepley     ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr);
71317c927364SMatthew G. Knepley     if (!dof) continue;
71327c927364SMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
71337c927364SMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr);
71347c927364SMatthew G. Knepley       foffsets[f+1] += fdof;
71357c927364SMatthew G. Knepley     }
71367c927364SMatthew G. Knepley     numFIndices += dof;
71377c927364SMatthew G. Knepley   }
71387c927364SMatthew G. Knepley   for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f];
71397c927364SMatthew G. Knepley 
71408ccfff9cSToby Isaac   if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices);
71418ccfff9cSToby Isaac   if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices);
71427c927364SMatthew G. Knepley   if (numFields) {
71434acb8e1eSToby Isaac     const PetscInt **permsF[32] = {NULL};
71444acb8e1eSToby Isaac     const PetscInt **permsC[32] = {NULL};
71454acb8e1eSToby Isaac 
71464acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
71474acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
71484acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
71497c927364SMatthew G. Knepley     }
71504acb8e1eSToby Isaac     for (p = 0; p < numFPoints; p++) {
71514acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
715236fa2b79SJed Brown       ierr = DMPlexGetIndicesPointFields_Internal(fsection, PETSC_FALSE, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, fclperm, findices);CHKERRQ(ierr);
71534acb8e1eSToby Isaac     }
71544acb8e1eSToby Isaac     for (p = 0; p < numCPoints; p++) {
71554acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
715636fa2b79SJed Brown       ierr = DMPlexGetIndicesPointFields_Internal(csection, PETSC_FALSE, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cclperm, cindices);CHKERRQ(ierr);
71574acb8e1eSToby Isaac     }
71584acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
71594acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
71604acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
71617c927364SMatthew G. Knepley     }
71627c927364SMatthew G. Knepley   } else {
71634acb8e1eSToby Isaac     const PetscInt **permsF = NULL;
71644acb8e1eSToby Isaac     const PetscInt **permsC = NULL;
71654acb8e1eSToby Isaac 
71664acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
71674acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
71684acb8e1eSToby Isaac     for (p = 0, off = 0; p < numFPoints; p++) {
71694acb8e1eSToby Isaac       const PetscInt *perm = permsF ? permsF[p] : NULL;
71704acb8e1eSToby Isaac 
71714acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
717236fa2b79SJed Brown       ierr = DMPlexGetIndicesPoint_Internal(fsection, PETSC_FALSE, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, fclperm, findices);CHKERRQ(ierr);
71737c927364SMatthew G. Knepley     }
71744acb8e1eSToby Isaac     for (p = 0, off = 0; p < numCPoints; p++) {
71754acb8e1eSToby Isaac       const PetscInt *perm = permsC ? permsC[p] : NULL;
71764acb8e1eSToby Isaac 
71774acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
717836fa2b79SJed Brown       ierr = DMPlexGetIndicesPoint_Internal(csection, PETSC_FALSE, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cclperm, cindices);CHKERRQ(ierr);
71797c927364SMatthew G. Knepley     }
71804acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
71814acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
71827c927364SMatthew G. Knepley   }
718369291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
71847c927364SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
71857c927364SMatthew G. Knepley   PetscFunctionReturn(0);
71867c927364SMatthew G. Knepley }
71877c927364SMatthew G. Knepley 
71887cd05799SMatthew G. Knepley /*@C
71897cd05799SMatthew G. Knepley   DMPlexGetVTKCellHeight - Returns the height in the DAG used to determine which points are cells (normally 0)
71907cd05799SMatthew G. Knepley 
71917cd05799SMatthew G. Knepley   Input Parameter:
71927cd05799SMatthew G. Knepley . dm   - The DMPlex object
71937cd05799SMatthew G. Knepley 
71947cd05799SMatthew G. Knepley   Output Parameter:
71957cd05799SMatthew G. Knepley . cellHeight - The height of a cell
71967cd05799SMatthew G. Knepley 
71977cd05799SMatthew G. Knepley   Level: developer
71987cd05799SMatthew G. Knepley 
71997cd05799SMatthew G. Knepley .seealso DMPlexSetVTKCellHeight()
72007cd05799SMatthew G. Knepley @*/
7201552f7358SJed Brown PetscErrorCode DMPlexGetVTKCellHeight(DM dm, PetscInt *cellHeight)
7202552f7358SJed Brown {
7203552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
7204552f7358SJed Brown 
7205552f7358SJed Brown   PetscFunctionBegin;
7206552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7207552f7358SJed Brown   PetscValidPointer(cellHeight, 2);
7208552f7358SJed Brown   *cellHeight = mesh->vtkCellHeight;
7209552f7358SJed Brown   PetscFunctionReturn(0);
7210552f7358SJed Brown }
7211552f7358SJed Brown 
72127cd05799SMatthew G. Knepley /*@C
72137cd05799SMatthew G. Knepley   DMPlexSetVTKCellHeight - Sets the height in the DAG used to determine which points are cells (normally 0)
72147cd05799SMatthew G. Knepley 
72157cd05799SMatthew G. Knepley   Input Parameters:
72167cd05799SMatthew G. Knepley + dm   - The DMPlex object
72177cd05799SMatthew G. Knepley - cellHeight - The height of a cell
72187cd05799SMatthew G. Knepley 
72197cd05799SMatthew G. Knepley   Level: developer
72207cd05799SMatthew G. Knepley 
72217cd05799SMatthew G. Knepley .seealso DMPlexGetVTKCellHeight()
72227cd05799SMatthew G. Knepley @*/
7223552f7358SJed Brown PetscErrorCode DMPlexSetVTKCellHeight(DM dm, PetscInt cellHeight)
7224552f7358SJed Brown {
7225552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
7226552f7358SJed Brown 
7227552f7358SJed Brown   PetscFunctionBegin;
7228552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7229552f7358SJed Brown   mesh->vtkCellHeight = cellHeight;
7230552f7358SJed Brown   PetscFunctionReturn(0);
7231552f7358SJed Brown }
7232552f7358SJed Brown 
7233e6139122SMatthew G. Knepley /*@
7234e6139122SMatthew G. Knepley   DMPlexGetGhostCellStratum - Get the range of cells which are used to enforce FV boundary conditions
7235e6139122SMatthew G. Knepley 
7236e6139122SMatthew G. Knepley   Input Parameter:
7237e6139122SMatthew G. Knepley . dm - The DMPlex object
7238e6139122SMatthew G. Knepley 
7239e6139122SMatthew G. Knepley   Output Parameters:
72402a9f31c0SMatthew G. Knepley + gcStart - The first ghost cell, or NULL
72412a9f31c0SMatthew G. Knepley - gcEnd   - The upper bound on ghost cells, or NULL
7242e6139122SMatthew G. Knepley 
72432a9f31c0SMatthew G. Knepley   Level: advanced
7244e6139122SMatthew G. Knepley 
72458065b584SMatthew Knepley .seealso DMPlexConstructGhostCells(), DMPlexGetGhostCellStratum()
7246e6139122SMatthew G. Knepley @*/
7247e6139122SMatthew G. Knepley PetscErrorCode DMPlexGetGhostCellStratum(DM dm, PetscInt *gcStart, PetscInt *gcEnd)
7248e6139122SMatthew G. Knepley {
7249412e9a14SMatthew G. Knepley   DMLabel        ctLabel;
7250e6139122SMatthew G. Knepley   PetscErrorCode ierr;
7251e6139122SMatthew G. Knepley 
7252e6139122SMatthew G. Knepley   PetscFunctionBegin;
7253e6139122SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7254412e9a14SMatthew G. Knepley   ierr = DMPlexGetCellTypeLabel(dm, &ctLabel);CHKERRQ(ierr);
7255412e9a14SMatthew G. Knepley   ierr = DMLabelGetStratumBounds(ctLabel, DM_POLYTOPE_FV_GHOST, gcStart, gcEnd);CHKERRQ(ierr);
7256e6139122SMatthew G. Knepley   PetscFunctionReturn(0);
7257e6139122SMatthew G. Knepley }
7258e6139122SMatthew G. Knepley 
7259552f7358SJed Brown /* We can easily have a form that takes an IS instead */
72609886b8cfSStefano Zampini PetscErrorCode DMPlexCreateNumbering_Plex(DM dm, PetscInt pStart, PetscInt pEnd, PetscInt shift, PetscInt *globalSize, PetscSF sf, IS *numbering)
7261552f7358SJed Brown {
7262552f7358SJed Brown   PetscSection   section, globalSection;
7263552f7358SJed Brown   PetscInt      *numbers, p;
7264552f7358SJed Brown   PetscErrorCode ierr;
7265552f7358SJed Brown 
7266552f7358SJed Brown   PetscFunctionBegin;
726782f516ccSBarry Smith   ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &section);CHKERRQ(ierr);
7268552f7358SJed Brown   ierr = PetscSectionSetChart(section, pStart, pEnd);CHKERRQ(ierr);
7269552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
7270552f7358SJed Brown     ierr = PetscSectionSetDof(section, p, 1);CHKERRQ(ierr);
7271552f7358SJed Brown   }
7272552f7358SJed Brown   ierr = PetscSectionSetUp(section);CHKERRQ(ierr);
727315b58121SMatthew G. Knepley   ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_FALSE, PETSC_FALSE, &globalSection);CHKERRQ(ierr);
7274854ce69bSBarry Smith   ierr = PetscMalloc1(pEnd - pStart, &numbers);CHKERRQ(ierr);
7275552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
7276552f7358SJed Brown     ierr = PetscSectionGetOffset(globalSection, p, &numbers[p-pStart]);CHKERRQ(ierr);
7277ef48cebcSMatthew G. Knepley     if (numbers[p-pStart] < 0) numbers[p-pStart] -= shift;
7278ef48cebcSMatthew G. Knepley     else                       numbers[p-pStart] += shift;
7279552f7358SJed Brown   }
728082f516ccSBarry Smith   ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), pEnd - pStart, numbers, PETSC_OWN_POINTER, numbering);CHKERRQ(ierr);
7281ef48cebcSMatthew G. Knepley   if (globalSize) {
7282ef48cebcSMatthew G. Knepley     PetscLayout layout;
7283ef48cebcSMatthew G. Knepley     ierr = PetscSectionGetPointLayout(PetscObjectComm((PetscObject) dm), globalSection, &layout);CHKERRQ(ierr);
7284ef48cebcSMatthew G. Knepley     ierr = PetscLayoutGetSize(layout, globalSize);CHKERRQ(ierr);
7285ef48cebcSMatthew G. Knepley     ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
7286ef48cebcSMatthew G. Knepley   }
7287552f7358SJed Brown   ierr = PetscSectionDestroy(&section);CHKERRQ(ierr);
7288552f7358SJed Brown   ierr = PetscSectionDestroy(&globalSection);CHKERRQ(ierr);
7289552f7358SJed Brown   PetscFunctionReturn(0);
7290552f7358SJed Brown }
7291552f7358SJed Brown 
729281ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateCellNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalCellNumbers)
7293552f7358SJed Brown {
7294412e9a14SMatthew G. Knepley   PetscInt       cellHeight, cStart, cEnd;
7295552f7358SJed Brown   PetscErrorCode ierr;
7296552f7358SJed Brown 
7297552f7358SJed Brown   PetscFunctionBegin;
7298552f7358SJed Brown   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
7299412e9a14SMatthew G. Knepley   if (includeHybrid) {ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);}
7300412e9a14SMatthew G. Knepley   else               {ierr = DMPlexGetSimplexOrBoxCells(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);}
73019886b8cfSStefano Zampini   ierr = DMPlexCreateNumbering_Plex(dm, cStart, cEnd, 0, NULL, dm->sf, globalCellNumbers);CHKERRQ(ierr);
730281ed3555SMatthew G. Knepley   PetscFunctionReturn(0);
7303552f7358SJed Brown }
730481ed3555SMatthew G. Knepley 
73058dab3259SMatthew G. Knepley /*@
73067cd05799SMatthew G. Knepley   DMPlexGetCellNumbering - Get a global cell numbering for all cells on this process
73077cd05799SMatthew G. Knepley 
73087cd05799SMatthew G. Knepley   Input Parameter:
73097cd05799SMatthew G. Knepley . dm   - The DMPlex object
73107cd05799SMatthew G. Knepley 
73117cd05799SMatthew G. Knepley   Output Parameter:
73127cd05799SMatthew G. Knepley . globalCellNumbers - Global cell numbers for all cells on this process
73137cd05799SMatthew G. Knepley 
73147cd05799SMatthew G. Knepley   Level: developer
73157cd05799SMatthew G. Knepley 
73167cd05799SMatthew G. Knepley .seealso DMPlexGetVertexNumbering()
73177cd05799SMatthew G. Knepley @*/
731881ed3555SMatthew G. Knepley PetscErrorCode DMPlexGetCellNumbering(DM dm, IS *globalCellNumbers)
731981ed3555SMatthew G. Knepley {
732081ed3555SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
732181ed3555SMatthew G. Knepley   PetscErrorCode ierr;
732281ed3555SMatthew G. Knepley 
732381ed3555SMatthew G. Knepley   PetscFunctionBegin;
732481ed3555SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
732581ed3555SMatthew G. Knepley   if (!mesh->globalCellNumbers) {ierr = DMPlexCreateCellNumbering_Internal(dm, PETSC_FALSE, &mesh->globalCellNumbers);CHKERRQ(ierr);}
7326552f7358SJed Brown   *globalCellNumbers = mesh->globalCellNumbers;
7327552f7358SJed Brown   PetscFunctionReturn(0);
7328552f7358SJed Brown }
7329552f7358SJed Brown 
733081ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateVertexNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalVertexNumbers)
733181ed3555SMatthew G. Knepley {
7332412e9a14SMatthew G. Knepley   PetscInt       vStart, vEnd;
733381ed3555SMatthew G. Knepley   PetscErrorCode ierr;
733481ed3555SMatthew G. Knepley 
733581ed3555SMatthew G. Knepley   PetscFunctionBegin;
733681ed3555SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
733781ed3555SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
73389886b8cfSStefano Zampini   ierr = DMPlexCreateNumbering_Plex(dm, vStart, vEnd, 0, NULL, dm->sf, globalVertexNumbers);CHKERRQ(ierr);
733981ed3555SMatthew G. Knepley   PetscFunctionReturn(0);
734081ed3555SMatthew G. Knepley }
734181ed3555SMatthew G. Knepley 
73428dab3259SMatthew G. Knepley /*@
73436aa51ba9SJacob Faibussowitsch   DMPlexGetVertexNumbering - Get a global vertex numbering for all vertices on this process
73447cd05799SMatthew G. Knepley 
73457cd05799SMatthew G. Knepley   Input Parameter:
73467cd05799SMatthew G. Knepley . dm   - The DMPlex object
73477cd05799SMatthew G. Knepley 
73487cd05799SMatthew G. Knepley   Output Parameter:
73497cd05799SMatthew G. Knepley . globalVertexNumbers - Global vertex numbers for all vertices on this process
73507cd05799SMatthew G. Knepley 
73517cd05799SMatthew G. Knepley   Level: developer
73527cd05799SMatthew G. Knepley 
73537cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering()
73547cd05799SMatthew G. Knepley @*/
7355552f7358SJed Brown PetscErrorCode DMPlexGetVertexNumbering(DM dm, IS *globalVertexNumbers)
7356552f7358SJed Brown {
7357552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
7358552f7358SJed Brown   PetscErrorCode ierr;
7359552f7358SJed Brown 
7360552f7358SJed Brown   PetscFunctionBegin;
7361552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
736281ed3555SMatthew G. Knepley   if (!mesh->globalVertexNumbers) {ierr = DMPlexCreateVertexNumbering_Internal(dm, PETSC_FALSE, &mesh->globalVertexNumbers);CHKERRQ(ierr);}
7363552f7358SJed Brown   *globalVertexNumbers = mesh->globalVertexNumbers;
7364552f7358SJed Brown   PetscFunctionReturn(0);
7365552f7358SJed Brown }
7366552f7358SJed Brown 
73678dab3259SMatthew G. Knepley /*@
73687cd05799SMatthew G. Knepley   DMPlexCreatePointNumbering - Create a global numbering for all points on this process
73697cd05799SMatthew G. Knepley 
73707cd05799SMatthew G. Knepley   Input Parameter:
73717cd05799SMatthew G. Knepley . dm   - The DMPlex object
73727cd05799SMatthew G. Knepley 
73737cd05799SMatthew G. Knepley   Output Parameter:
73747cd05799SMatthew G. Knepley . globalPointNumbers - Global numbers for all points on this process
73757cd05799SMatthew G. Knepley 
73767cd05799SMatthew G. Knepley   Level: developer
73777cd05799SMatthew G. Knepley 
73787cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering()
73797cd05799SMatthew G. Knepley @*/
7380ef48cebcSMatthew G. Knepley PetscErrorCode DMPlexCreatePointNumbering(DM dm, IS *globalPointNumbers)
7381ef48cebcSMatthew G. Knepley {
7382ef48cebcSMatthew G. Knepley   IS             nums[4];
7383862913ffSStefano Zampini   PetscInt       depths[4], gdepths[4], starts[4];
7384ef48cebcSMatthew G. Knepley   PetscInt       depth, d, shift = 0;
7385ef48cebcSMatthew G. Knepley   PetscErrorCode ierr;
7386ef48cebcSMatthew G. Knepley 
7387ef48cebcSMatthew G. Knepley   PetscFunctionBegin;
7388ef48cebcSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7389ef48cebcSMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
73908abc87a0SMichael Lange   /* For unstratified meshes use dim instead of depth */
73918abc87a0SMichael Lange   if (depth < 0) {ierr = DMGetDimension(dm, &depth);CHKERRQ(ierr);}
7392862913ffSStefano Zampini   for (d = 0; d <= depth; ++d) {
7393862913ffSStefano Zampini     PetscInt end;
7394862913ffSStefano Zampini 
7395862913ffSStefano Zampini     depths[d] = depth-d;
7396862913ffSStefano Zampini     ierr = DMPlexGetDepthStratum(dm, depths[d], &starts[d], &end);CHKERRQ(ierr);
7397862913ffSStefano Zampini     if (!(starts[d]-end)) { starts[d] = depths[d] = -1; }
7398862913ffSStefano Zampini   }
7399862913ffSStefano Zampini   ierr = PetscSortIntWithArray(depth+1, starts, depths);CHKERRQ(ierr);
7400820f2d46SBarry Smith   ierr = MPIU_Allreduce(depths, gdepths, depth+1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject) dm));CHKERRMPI(ierr);
7401862913ffSStefano Zampini   for (d = 0; d <= depth; ++d) {
7402862913ffSStefano Zampini     if (starts[d] >= 0 && depths[d] != gdepths[d]) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Expected depth %D, found %D",depths[d],gdepths[d]);
7403862913ffSStefano Zampini   }
7404ef48cebcSMatthew G. Knepley   for (d = 0; d <= depth; ++d) {
7405ef48cebcSMatthew G. Knepley     PetscInt pStart, pEnd, gsize;
7406ef48cebcSMatthew G. Knepley 
7407862913ffSStefano Zampini     ierr = DMPlexGetDepthStratum(dm, gdepths[d], &pStart, &pEnd);CHKERRQ(ierr);
74089886b8cfSStefano Zampini     ierr = DMPlexCreateNumbering_Plex(dm, pStart, pEnd, shift, &gsize, dm->sf, &nums[d]);CHKERRQ(ierr);
7409ef48cebcSMatthew G. Knepley     shift += gsize;
7410ef48cebcSMatthew G. Knepley   }
7411302440fdSBarry Smith   ierr = ISConcatenate(PetscObjectComm((PetscObject) dm), depth+1, nums, globalPointNumbers);CHKERRQ(ierr);
7412ef48cebcSMatthew G. Knepley   for (d = 0; d <= depth; ++d) {ierr = ISDestroy(&nums[d]);CHKERRQ(ierr);}
7413ef48cebcSMatthew G. Knepley   PetscFunctionReturn(0);
7414ef48cebcSMatthew G. Knepley }
7415ef48cebcSMatthew G. Knepley 
741608a22f4bSMatthew G. Knepley 
741708a22f4bSMatthew G. Knepley /*@
741808a22f4bSMatthew G. Knepley   DMPlexCreateRankField - Create a cell field whose value is the rank of the owner
741908a22f4bSMatthew G. Knepley 
742008a22f4bSMatthew G. Knepley   Input Parameter:
742108a22f4bSMatthew G. Knepley . dm - The DMPlex object
742208a22f4bSMatthew G. Knepley 
742308a22f4bSMatthew G. Knepley   Output Parameter:
742408a22f4bSMatthew G. Knepley . ranks - The rank field
742508a22f4bSMatthew G. Knepley 
742608a22f4bSMatthew G. Knepley   Options Database Keys:
742708a22f4bSMatthew G. Knepley . -dm_partition_view - Adds the rank field into the DM output from -dm_view using the same viewer
742808a22f4bSMatthew G. Knepley 
742908a22f4bSMatthew G. Knepley   Level: intermediate
743008a22f4bSMatthew G. Knepley 
743108a22f4bSMatthew G. Knepley .seealso: DMView()
743208a22f4bSMatthew G. Knepley @*/
743308a22f4bSMatthew G. Knepley PetscErrorCode DMPlexCreateRankField(DM dm, Vec *ranks)
743408a22f4bSMatthew G. Knepley {
743508a22f4bSMatthew G. Knepley   DM             rdm;
743608a22f4bSMatthew G. Knepley   PetscFE        fe;
743708a22f4bSMatthew G. Knepley   PetscScalar   *r;
743808a22f4bSMatthew G. Knepley   PetscMPIInt    rank;
7439a55f9a55SMatthew G. Knepley   DMPolytopeType ct;
744008a22f4bSMatthew G. Knepley   PetscInt       dim, cStart, cEnd, c;
7441a55f9a55SMatthew G. Knepley   PetscBool      simplex;
744208a22f4bSMatthew G. Knepley   PetscErrorCode ierr;
744308a22f4bSMatthew G. Knepley 
744408a22f4bSMatthew G. Knepley   PetscFunctionBeginUser;
7445f95ace6aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7446f95ace6aSMatthew G. Knepley   PetscValidPointer(ranks, 2);
7447ffc4695bSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRMPI(ierr);
744808a22f4bSMatthew G. Knepley   ierr = DMClone(dm, &rdm);CHKERRQ(ierr);
744908a22f4bSMatthew G. Knepley   ierr = DMGetDimension(rdm, &dim);CHKERRQ(ierr);
7450a55f9a55SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(rdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
7451a55f9a55SMatthew G. Knepley   ierr = DMPlexGetCellType(dm, cStart, &ct);CHKERRQ(ierr);
7452a55f9a55SMatthew G. Knepley   simplex = DMPolytopeTypeGetNumVertices(ct) == DMPolytopeTypeGetDim(ct)+1 ? PETSC_TRUE : PETSC_FALSE;
7453a55f9a55SMatthew G. Knepley   ierr = PetscFECreateDefault(PETSC_COMM_SELF, dim, 1, simplex, "PETSc___rank_", -1, &fe);CHKERRQ(ierr);
745408a22f4bSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) fe, "rank");CHKERRQ(ierr);
7455e5e52638SMatthew G. Knepley   ierr = DMSetField(rdm, 0, NULL, (PetscObject) fe);CHKERRQ(ierr);
745608a22f4bSMatthew G. Knepley   ierr = PetscFEDestroy(&fe);CHKERRQ(ierr);
7457e5e52638SMatthew G. Knepley   ierr = DMCreateDS(rdm);CHKERRQ(ierr);
745808a22f4bSMatthew G. Knepley   ierr = DMCreateGlobalVector(rdm, ranks);CHKERRQ(ierr);
745908a22f4bSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *ranks, "partition");CHKERRQ(ierr);
746008a22f4bSMatthew G. Knepley   ierr = VecGetArray(*ranks, &r);CHKERRQ(ierr);
746108a22f4bSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
746208a22f4bSMatthew G. Knepley     PetscScalar *lr;
746308a22f4bSMatthew G. Knepley 
746408a22f4bSMatthew G. Knepley     ierr = DMPlexPointGlobalRef(rdm, c, r, &lr);CHKERRQ(ierr);
746571f09efeSPierre Jolivet     if (lr) *lr = rank;
746608a22f4bSMatthew G. Knepley   }
746708a22f4bSMatthew G. Knepley   ierr = VecRestoreArray(*ranks, &r);CHKERRQ(ierr);
746808a22f4bSMatthew G. Knepley   ierr = DMDestroy(&rdm);CHKERRQ(ierr);
746908a22f4bSMatthew G. Knepley   PetscFunctionReturn(0);
747008a22f4bSMatthew G. Knepley }
747108a22f4bSMatthew G. Knepley 
7472ca8062c8SMatthew G. Knepley /*@
747318e14f0cSMatthew G. Knepley   DMPlexCreateLabelField - Create a cell field whose value is the label value for that cell
747418e14f0cSMatthew G. Knepley 
747518e14f0cSMatthew G. Knepley   Input Parameters:
747618e14f0cSMatthew G. Knepley + dm    - The DMPlex
747718e14f0cSMatthew G. Knepley - label - The DMLabel
747818e14f0cSMatthew G. Knepley 
747918e14f0cSMatthew G. Knepley   Output Parameter:
748018e14f0cSMatthew G. Knepley . val - The label value field
748118e14f0cSMatthew G. Knepley 
748218e14f0cSMatthew G. Knepley   Options Database Keys:
748318e14f0cSMatthew G. Knepley . -dm_label_view - Adds the label value field into the DM output from -dm_view using the same viewer
748418e14f0cSMatthew G. Knepley 
748518e14f0cSMatthew G. Knepley   Level: intermediate
748618e14f0cSMatthew G. Knepley 
748718e14f0cSMatthew G. Knepley .seealso: DMView()
748818e14f0cSMatthew G. Knepley @*/
748918e14f0cSMatthew G. Knepley PetscErrorCode DMPlexCreateLabelField(DM dm, DMLabel label, Vec *val)
749018e14f0cSMatthew G. Knepley {
749118e14f0cSMatthew G. Knepley   DM             rdm;
749218e14f0cSMatthew G. Knepley   PetscFE        fe;
749318e14f0cSMatthew G. Knepley   PetscScalar   *v;
749418e14f0cSMatthew G. Knepley   PetscInt       dim, cStart, cEnd, c;
749518e14f0cSMatthew G. Knepley   PetscErrorCode ierr;
749618e14f0cSMatthew G. Knepley 
749718e14f0cSMatthew G. Knepley   PetscFunctionBeginUser;
749818e14f0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
749918e14f0cSMatthew G. Knepley   PetscValidPointer(label, 2);
750018e14f0cSMatthew G. Knepley   PetscValidPointer(val, 3);
750118e14f0cSMatthew G. Knepley   ierr = DMClone(dm, &rdm);CHKERRQ(ierr);
750218e14f0cSMatthew G. Knepley   ierr = DMGetDimension(rdm, &dim);CHKERRQ(ierr);
750318e14f0cSMatthew G. Knepley   ierr = PetscFECreateDefault(PetscObjectComm((PetscObject) rdm), dim, 1, PETSC_TRUE, "PETSc___label_value_", -1, &fe);CHKERRQ(ierr);
750418e14f0cSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) fe, "label_value");CHKERRQ(ierr);
7505e5e52638SMatthew G. Knepley   ierr = DMSetField(rdm, 0, NULL, (PetscObject) fe);CHKERRQ(ierr);
750618e14f0cSMatthew G. Knepley   ierr = PetscFEDestroy(&fe);CHKERRQ(ierr);
7507e5e52638SMatthew G. Knepley   ierr = DMCreateDS(rdm);CHKERRQ(ierr);
750818e14f0cSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(rdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
750918e14f0cSMatthew G. Knepley   ierr = DMCreateGlobalVector(rdm, val);CHKERRQ(ierr);
7510effbd7cbSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *val, "label_value");CHKERRQ(ierr);
751118e14f0cSMatthew G. Knepley   ierr = VecGetArray(*val, &v);CHKERRQ(ierr);
751218e14f0cSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
751318e14f0cSMatthew G. Knepley     PetscScalar *lv;
751418e14f0cSMatthew G. Knepley     PetscInt     cval;
751518e14f0cSMatthew G. Knepley 
751618e14f0cSMatthew G. Knepley     ierr = DMPlexPointGlobalRef(rdm, c, v, &lv);CHKERRQ(ierr);
751718e14f0cSMatthew G. Knepley     ierr = DMLabelGetValue(label, c, &cval);CHKERRQ(ierr);
751818e14f0cSMatthew G. Knepley     *lv = cval;
751918e14f0cSMatthew G. Knepley   }
752018e14f0cSMatthew G. Knepley   ierr = VecRestoreArray(*val, &v);CHKERRQ(ierr);
752118e14f0cSMatthew G. Knepley   ierr = DMDestroy(&rdm);CHKERRQ(ierr);
752218e14f0cSMatthew G. Knepley   PetscFunctionReturn(0);
752318e14f0cSMatthew G. Knepley }
752418e14f0cSMatthew G. Knepley 
752518e14f0cSMatthew G. Knepley /*@
7526ca8062c8SMatthew G. Knepley   DMPlexCheckSymmetry - Check that the adjacency information in the mesh is symmetric.
7527ca8062c8SMatthew G. Knepley 
752869916449SMatthew G. Knepley   Input Parameter:
752969916449SMatthew G. Knepley . dm - The DMPlex object
7530ca8062c8SMatthew G. Knepley 
753195eb5ee5SVaclav Hapla   Notes:
753295eb5ee5SVaclav Hapla   This is a useful diagnostic when creating meshes programmatically.
753395eb5ee5SVaclav Hapla 
753495eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
7535ca8062c8SMatthew G. Knepley 
7536ca8062c8SMatthew G. Knepley   Level: developer
7537ca8062c8SMatthew G. Knepley 
753895eb5ee5SVaclav Hapla .seealso: DMCreate(), DMSetFromOptions()
7539ca8062c8SMatthew G. Knepley @*/
7540ca8062c8SMatthew G. Knepley PetscErrorCode DMPlexCheckSymmetry(DM dm)
7541ca8062c8SMatthew G. Knepley {
7542ca8062c8SMatthew G. Knepley   PetscSection    coneSection, supportSection;
7543ca8062c8SMatthew G. Knepley   const PetscInt *cone, *support;
7544ca8062c8SMatthew G. Knepley   PetscInt        coneSize, c, supportSize, s;
754557beb4faSStefano Zampini   PetscInt        pStart, pEnd, p, pp, csize, ssize;
754657beb4faSStefano Zampini   PetscBool       storagecheck = PETSC_TRUE;
7547ca8062c8SMatthew G. Knepley   PetscErrorCode  ierr;
7548ca8062c8SMatthew G. Knepley 
7549ca8062c8SMatthew G. Knepley   PetscFunctionBegin;
7550ca8062c8SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7551412e9a14SMatthew G. Knepley   ierr = DMViewFromOptions(dm, NULL, "-sym_dm_view");CHKERRQ(ierr);
7552ca8062c8SMatthew G. Knepley   ierr = DMPlexGetConeSection(dm, &coneSection);CHKERRQ(ierr);
7553ca8062c8SMatthew G. Knepley   ierr = DMPlexGetSupportSection(dm, &supportSection);CHKERRQ(ierr);
7554ca8062c8SMatthew G. Knepley   /* Check that point p is found in the support of its cone points, and vice versa */
7555ca8062c8SMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
7556ca8062c8SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
7557ca8062c8SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
7558ca8062c8SMatthew G. Knepley     ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
7559ca8062c8SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
756042e66dfaSMatthew G. Knepley       PetscBool dup = PETSC_FALSE;
756142e66dfaSMatthew G. Knepley       PetscInt  d;
756242e66dfaSMatthew G. Knepley       for (d = c-1; d >= 0; --d) {
756342e66dfaSMatthew G. Knepley         if (cone[c] == cone[d]) {dup = PETSC_TRUE; break;}
756442e66dfaSMatthew G. Knepley       }
7565ca8062c8SMatthew G. Knepley       ierr = DMPlexGetSupportSize(dm, cone[c], &supportSize);CHKERRQ(ierr);
7566ca8062c8SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr);
7567ca8062c8SMatthew G. Knepley       for (s = 0; s < supportSize; ++s) {
7568ca8062c8SMatthew G. Knepley         if (support[s] == p) break;
7569ca8062c8SMatthew G. Knepley       }
757042e66dfaSMatthew G. Knepley       if ((s >= supportSize) || (dup && (support[s+1] != p))) {
75718ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", p);CHKERRQ(ierr);
7572ca8062c8SMatthew G. Knepley         for (s = 0; s < coneSize; ++s) {
75738ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[s]);CHKERRQ(ierr);
7574ca8062c8SMatthew G. Knepley         }
7575302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
75768ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", cone[c]);CHKERRQ(ierr);
7577ca8062c8SMatthew G. Knepley         for (s = 0; s < supportSize; ++s) {
75788ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[s]);CHKERRQ(ierr);
7579ca8062c8SMatthew G. Knepley         }
7580302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
75818ccfff9cSToby Isaac         if (dup) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not repeatedly found in support of repeated cone point %D", p, cone[c]);
75828ccfff9cSToby Isaac         else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in support of cone point %D", p, cone[c]);
7583ca8062c8SMatthew G. Knepley       }
758442e66dfaSMatthew G. Knepley     }
758557beb4faSStefano Zampini     ierr = DMPlexGetTreeParent(dm, p, &pp, NULL);CHKERRQ(ierr);
758657beb4faSStefano Zampini     if (p != pp) { storagecheck = PETSC_FALSE; continue; }
7587ca8062c8SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
7588ca8062c8SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, p, &support);CHKERRQ(ierr);
7589ca8062c8SMatthew G. Knepley     for (s = 0; s < supportSize; ++s) {
7590ca8062c8SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, support[s], &coneSize);CHKERRQ(ierr);
7591ca8062c8SMatthew G. Knepley       ierr = DMPlexGetCone(dm, support[s], &cone);CHKERRQ(ierr);
7592ca8062c8SMatthew G. Knepley       for (c = 0; c < coneSize; ++c) {
759357beb4faSStefano Zampini         ierr = DMPlexGetTreeParent(dm, cone[c], &pp, NULL);CHKERRQ(ierr);
759457beb4faSStefano Zampini         if (cone[c] != pp) { c = 0; break; }
7595ca8062c8SMatthew G. Knepley         if (cone[c] == p) break;
7596ca8062c8SMatthew G. Knepley       }
7597ca8062c8SMatthew G. Knepley       if (c >= coneSize) {
75988ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", p);CHKERRQ(ierr);
7599ca8062c8SMatthew G. Knepley         for (c = 0; c < supportSize; ++c) {
76008ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[c]);CHKERRQ(ierr);
7601ca8062c8SMatthew G. Knepley         }
7602302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
76038ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", support[s]);CHKERRQ(ierr);
7604ca8062c8SMatthew G. Knepley         for (c = 0; c < coneSize; ++c) {
76058ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[c]);CHKERRQ(ierr);
7606ca8062c8SMatthew G. Knepley         }
7607302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
76088ccfff9cSToby Isaac         SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in cone of support point %D", p, support[s]);
7609ca8062c8SMatthew G. Knepley       }
7610ca8062c8SMatthew G. Knepley     }
7611ca8062c8SMatthew G. Knepley   }
761257beb4faSStefano Zampini   if (storagecheck) {
7613ca8062c8SMatthew G. Knepley     ierr = PetscSectionGetStorageSize(coneSection, &csize);CHKERRQ(ierr);
7614ca8062c8SMatthew G. Knepley     ierr = PetscSectionGetStorageSize(supportSection, &ssize);CHKERRQ(ierr);
76158ccfff9cSToby Isaac     if (csize != ssize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Total cone size %D != Total support size %D", csize, ssize);
761657beb4faSStefano Zampini   }
7617ca8062c8SMatthew G. Knepley   PetscFunctionReturn(0);
7618ca8062c8SMatthew G. Knepley }
7619ca8062c8SMatthew G. Knepley 
7620412e9a14SMatthew G. Knepley /*
7621412e9a14SMatthew G. Knepley   For submeshes with cohesive cells (see DMPlexConstructCohesiveCells()), we allow a special case where some of the boundary of a face (edges and vertices) are not duplicated. We call these special boundary points "unsplit", since the same edge or vertex appears in both copies of the face. These unsplit points throw off our counting, so we have to explicitly account for them here.
7622412e9a14SMatthew G. Knepley */
7623412e9a14SMatthew G. Knepley static PetscErrorCode DMPlexCellUnsplitVertices_Private(DM dm, PetscInt c, DMPolytopeType ct, PetscInt *unsplit)
7624412e9a14SMatthew G. Knepley {
7625412e9a14SMatthew G. Knepley   DMPolytopeType  cct;
7626412e9a14SMatthew G. Knepley   PetscInt        ptpoints[4];
7627412e9a14SMatthew G. Knepley   const PetscInt *cone, *ccone, *ptcone;
7628412e9a14SMatthew G. Knepley   PetscInt        coneSize, cp, cconeSize, ccp, npt = 0, pt;
7629412e9a14SMatthew G. Knepley   PetscErrorCode  ierr;
7630412e9a14SMatthew G. Knepley 
7631412e9a14SMatthew G. Knepley   PetscFunctionBegin;
7632412e9a14SMatthew G. Knepley   *unsplit = 0;
7633412e9a14SMatthew G. Knepley   switch (ct) {
7634412e9a14SMatthew G. Knepley     case DM_POLYTOPE_SEG_PRISM_TENSOR:
7635412e9a14SMatthew G. Knepley       ierr = DMPlexGetCone(dm, c, &cone);CHKERRQ(ierr);
7636412e9a14SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
7637412e9a14SMatthew G. Knepley       for (cp = 0; cp < coneSize; ++cp) {
7638412e9a14SMatthew G. Knepley         ierr = DMPlexGetCellType(dm, cone[cp], &cct);CHKERRQ(ierr);
7639412e9a14SMatthew G. Knepley         if (cct == DM_POLYTOPE_POINT_PRISM_TENSOR) ptpoints[npt++] = cone[cp];
7640412e9a14SMatthew G. Knepley       }
7641412e9a14SMatthew G. Knepley       break;
7642412e9a14SMatthew G. Knepley     case DM_POLYTOPE_TRI_PRISM_TENSOR:
7643412e9a14SMatthew G. Knepley     case DM_POLYTOPE_QUAD_PRISM_TENSOR:
7644412e9a14SMatthew G. Knepley       ierr = DMPlexGetCone(dm, c, &cone);CHKERRQ(ierr);
7645412e9a14SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
7646412e9a14SMatthew G. Knepley       for (cp = 0; cp < coneSize; ++cp) {
7647412e9a14SMatthew G. Knepley         ierr = DMPlexGetCone(dm, cone[cp], &ccone);CHKERRQ(ierr);
7648412e9a14SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cone[cp], &cconeSize);CHKERRQ(ierr);
7649412e9a14SMatthew G. Knepley         for (ccp = 0; ccp < cconeSize; ++ccp) {
7650412e9a14SMatthew G. Knepley           ierr = DMPlexGetCellType(dm, ccone[ccp], &cct);CHKERRQ(ierr);
7651412e9a14SMatthew G. Knepley           if (cct == DM_POLYTOPE_POINT_PRISM_TENSOR) {
7652412e9a14SMatthew G. Knepley             PetscInt p;
7653412e9a14SMatthew G. Knepley             for (p = 0; p < npt; ++p) if (ptpoints[p] == ccone[ccp]) break;
7654412e9a14SMatthew G. Knepley             if (p == npt) ptpoints[npt++] = ccone[ccp];
7655412e9a14SMatthew G. Knepley           }
7656412e9a14SMatthew G. Knepley         }
7657412e9a14SMatthew G. Knepley       }
7658412e9a14SMatthew G. Knepley       break;
7659412e9a14SMatthew G. Knepley     default: break;
7660412e9a14SMatthew G. Knepley   }
7661412e9a14SMatthew G. Knepley   for (pt = 0; pt < npt; ++pt) {
7662412e9a14SMatthew G. Knepley     ierr = DMPlexGetCone(dm, ptpoints[pt], &ptcone);CHKERRQ(ierr);
7663412e9a14SMatthew G. Knepley     if (ptcone[0] == ptcone[1]) ++(*unsplit);
7664412e9a14SMatthew G. Knepley   }
7665412e9a14SMatthew G. Knepley   PetscFunctionReturn(0);
7666412e9a14SMatthew G. Knepley }
7667412e9a14SMatthew G. Knepley 
7668ca8062c8SMatthew G. Knepley /*@
7669ca8062c8SMatthew G. Knepley   DMPlexCheckSkeleton - Check that each cell has the correct number of vertices
7670ca8062c8SMatthew G. Knepley 
7671ca8062c8SMatthew G. Knepley   Input Parameters:
7672ca8062c8SMatthew G. Knepley + dm - The DMPlex object
767358723a97SMatthew G. Knepley - cellHeight - Normally 0
7674ca8062c8SMatthew G. Knepley 
767595eb5ee5SVaclav Hapla   Notes:
767695eb5ee5SVaclav Hapla   This is a useful diagnostic when creating meshes programmatically.
767725c50c26SVaclav Hapla   Currently applicable only to homogeneous simplex or tensor meshes.
7678ca8062c8SMatthew G. Knepley 
767995eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
768095eb5ee5SVaclav Hapla 
7681ca8062c8SMatthew G. Knepley   Level: developer
7682ca8062c8SMatthew G. Knepley 
768395eb5ee5SVaclav Hapla .seealso: DMCreate(), DMSetFromOptions()
7684ca8062c8SMatthew G. Knepley @*/
768525c50c26SVaclav Hapla PetscErrorCode DMPlexCheckSkeleton(DM dm, PetscInt cellHeight)
7686ca8062c8SMatthew G. Knepley {
7687412e9a14SMatthew G. Knepley   DMPlexInterpolatedFlag interp;
7688412e9a14SMatthew G. Knepley   DMPolytopeType         ct;
7689412e9a14SMatthew G. Knepley   PetscInt               vStart, vEnd, cStart, cEnd, c;
7690ca8062c8SMatthew G. Knepley   PetscErrorCode         ierr;
7691ca8062c8SMatthew G. Knepley 
7692ca8062c8SMatthew G. Knepley   PetscFunctionBegin;
7693ca8062c8SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7694412e9a14SMatthew G. Knepley   ierr = DMPlexIsInterpolated(dm, &interp);CHKERRQ(ierr);
769525c50c26SVaclav Hapla   ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
769658723a97SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
7697412e9a14SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
7698412e9a14SMatthew G. Knepley     PetscInt *closure = NULL;
7699412e9a14SMatthew G. Knepley     PetscInt  coneSize, closureSize, cl, Nv = 0;
770058723a97SMatthew G. Knepley 
7701412e9a14SMatthew G. Knepley     ierr = DMPlexGetCellType(dm, c, &ct);CHKERRQ(ierr);
7702412e9a14SMatthew G. Knepley     if ((PetscInt) ct < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D has no cell type", c);
7703412e9a14SMatthew G. Knepley     if (ct == DM_POLYTOPE_UNKNOWN) continue;
7704412e9a14SMatthew G. Knepley     if (interp == DMPLEX_INTERPOLATED_FULL) {
7705412e9a14SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
7706d4961f80SStefano Zampini       if (coneSize != DMPolytopeTypeGetConeSize(ct)) SETERRQ4(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D of type %s has cone size %D != %D", c, DMPolytopeTypes[ct], coneSize, DMPolytopeTypeGetConeSize(ct));
7707412e9a14SMatthew G. Knepley     }
770858723a97SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
770958723a97SMatthew G. Knepley     for (cl = 0; cl < closureSize*2; cl += 2) {
771058723a97SMatthew G. Knepley       const PetscInt p = closure[cl];
7711412e9a14SMatthew G. Knepley       if ((p >= vStart) && (p < vEnd)) ++Nv;
771258723a97SMatthew G. Knepley     }
771358723a97SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
7714412e9a14SMatthew G. Knepley     /* Special Case: Tensor faces with identified vertices */
7715412e9a14SMatthew G. Knepley     if (Nv < DMPolytopeTypeGetNumVertices(ct)) {
7716412e9a14SMatthew G. Knepley       PetscInt unsplit;
771742363296SMatthew G. Knepley 
7718412e9a14SMatthew G. Knepley       ierr = DMPlexCellUnsplitVertices_Private(dm, c, ct, &unsplit);CHKERRQ(ierr);
7719412e9a14SMatthew G. Knepley       if (Nv + unsplit == DMPolytopeTypeGetNumVertices(ct)) continue;
772042363296SMatthew G. Knepley     }
7721d4961f80SStefano Zampini     if (Nv != DMPolytopeTypeGetNumVertices(ct)) SETERRQ4(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D of type %s has %D vertices != %D", c, DMPolytopeTypes[ct], Nv, DMPolytopeTypeGetNumVertices(ct));
772242363296SMatthew G. Knepley   }
7723ca8062c8SMatthew G. Knepley   PetscFunctionReturn(0);
7724ca8062c8SMatthew G. Knepley }
77259bf0dad6SMatthew G. Knepley 
77269bf0dad6SMatthew G. Knepley /*@
77279bf0dad6SMatthew G. Knepley   DMPlexCheckFaces - Check that the faces of each cell give a vertex order this is consistent with what we expect from the cell type
77289bf0dad6SMatthew G. Knepley 
7729899ea2b8SJacob Faibussowitsch   Not Collective
7730899ea2b8SJacob Faibussowitsch 
77319bf0dad6SMatthew G. Knepley   Input Parameters:
77329bf0dad6SMatthew G. Knepley + dm - The DMPlex object
77339bf0dad6SMatthew G. Knepley - cellHeight - Normally 0
77349bf0dad6SMatthew G. Knepley 
773545da879fSVaclav Hapla   Notes:
773645da879fSVaclav Hapla   This is a useful diagnostic when creating meshes programmatically.
773745da879fSVaclav Hapla   This routine is only relevant for meshes that are fully interpolated across all ranks.
773845da879fSVaclav Hapla   It will error out if a partially interpolated mesh is given on some rank.
773945da879fSVaclav Hapla   It will do nothing for locally uninterpolated mesh (as there is nothing to check).
77409bf0dad6SMatthew G. Knepley 
774195eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
774295eb5ee5SVaclav Hapla 
77439bf0dad6SMatthew G. Knepley   Level: developer
77449bf0dad6SMatthew G. Knepley 
774595eb5ee5SVaclav Hapla .seealso: DMCreate(), DMPlexGetVTKCellHeight(), DMSetFromOptions()
77469bf0dad6SMatthew G. Knepley @*/
774725c50c26SVaclav Hapla PetscErrorCode DMPlexCheckFaces(DM dm, PetscInt cellHeight)
77489bf0dad6SMatthew G. Knepley {
7749ab91121cSMatthew G. Knepley   PetscInt       dim, depth, vStart, vEnd, cStart, cEnd, c, h;
77509bf0dad6SMatthew G. Knepley   PetscErrorCode ierr;
7751899ea2b8SJacob Faibussowitsch   DMPlexInterpolatedFlag interpEnum;
77529bf0dad6SMatthew G. Knepley 
77539bf0dad6SMatthew G. Knepley   PetscFunctionBegin;
77549bf0dad6SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7755899ea2b8SJacob Faibussowitsch   ierr = DMPlexIsInterpolated(dm, &interpEnum);CHKERRQ(ierr);
775645da879fSVaclav Hapla   if (interpEnum == DMPLEX_INTERPOLATED_NONE) PetscFunctionReturn(0);
775745da879fSVaclav Hapla   if (interpEnum == DMPLEX_INTERPOLATED_PARTIAL) {
7758899ea2b8SJacob Faibussowitsch     PetscMPIInt rank;
7759899ea2b8SJacob Faibussowitsch     MPI_Comm    comm;
7760899ea2b8SJacob Faibussowitsch 
7761899ea2b8SJacob Faibussowitsch     ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
7762ffc4695bSBarry Smith     ierr = MPI_Comm_rank(comm, &rank);CHKERRMPI(ierr);
776345da879fSVaclav Hapla     SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Mesh is only partially interpolated on rank %d, this is currently not supported", rank);
7764899ea2b8SJacob Faibussowitsch   }
7765899ea2b8SJacob Faibussowitsch 
7766c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
7767ab91121cSMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
77689bf0dad6SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
7769ab91121cSMatthew G. Knepley   for (h = cellHeight; h < PetscMin(depth, dim); ++h) {
77703554e41dSMatthew G. Knepley     ierr = DMPlexGetHeightStratum(dm, h, &cStart, &cEnd);CHKERRQ(ierr);
77713554e41dSMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
7772412e9a14SMatthew G. Knepley       const PetscInt      *cone, *ornt, *faceSizes, *faces;
7773412e9a14SMatthew G. Knepley       const DMPolytopeType *faceTypes;
7774ba2698f1SMatthew G. Knepley       DMPolytopeType        ct;
7775412e9a14SMatthew G. Knepley       PetscInt              numFaces, coneSize, f;
7776412e9a14SMatthew G. Knepley       PetscInt             *closure = NULL, closureSize, cl, numCorners = 0, fOff = 0, unsplit;
77779bf0dad6SMatthew G. Knepley 
7778ba2698f1SMatthew G. Knepley       ierr = DMPlexGetCellType(dm, c, &ct);CHKERRQ(ierr);
7779412e9a14SMatthew G. Knepley       ierr = DMPlexCellUnsplitVertices_Private(dm, c, ct, &unsplit);CHKERRQ(ierr);
7780412e9a14SMatthew G. Knepley       if (unsplit) continue;
77819bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
77829bf0dad6SMatthew G. Knepley       ierr = DMPlexGetCone(dm, c, &cone);CHKERRQ(ierr);
77839bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeOrientation(dm, c, &ornt);CHKERRQ(ierr);
77849bf0dad6SMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
77859bf0dad6SMatthew G. Knepley       for (cl = 0; cl < closureSize*2; cl += 2) {
77869bf0dad6SMatthew G. Knepley         const PetscInt p = closure[cl];
77879bf0dad6SMatthew G. Knepley         if ((p >= vStart) && (p < vEnd)) closure[numCorners++] = p;
77889bf0dad6SMatthew G. Knepley       }
7789412e9a14SMatthew G. Knepley       ierr = DMPlexGetRawFaces_Internal(dm, ct, closure, &numFaces, &faceTypes, &faceSizes, &faces);CHKERRQ(ierr);
7790d4961f80SStefano Zampini       if (coneSize != numFaces) SETERRQ4(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D of type %s has %D faces but should have %D", c, DMPolytopeTypes[ct], coneSize, numFaces);
77919bf0dad6SMatthew G. Knepley       for (f = 0; f < numFaces; ++f) {
7792d4961f80SStefano Zampini         DMPolytopeType fct;
77939bf0dad6SMatthew G. Knepley         PetscInt       *fclosure = NULL, fclosureSize, cl, fnumCorners = 0, v;
77949bf0dad6SMatthew G. Knepley 
7795d4961f80SStefano Zampini         ierr = DMPlexGetCellType(dm, cone[f], &fct);CHKERRQ(ierr);
77969bf0dad6SMatthew G. Knepley         ierr = DMPlexGetTransitiveClosure_Internal(dm, cone[f], ornt[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr);
77979bf0dad6SMatthew G. Knepley         for (cl = 0; cl < fclosureSize*2; cl += 2) {
77989bf0dad6SMatthew G. Knepley           const PetscInt p = fclosure[cl];
77999bf0dad6SMatthew G. Knepley           if ((p >= vStart) && (p < vEnd)) fclosure[fnumCorners++] = p;
78009bf0dad6SMatthew G. Knepley         }
7801d4961f80SStefano Zampini         if (fnumCorners != faceSizes[f]) SETERRQ7(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D of type %s (cone idx %D) of cell %D of type %s has %D vertices but should have %D", cone[f], DMPolytopeTypes[fct], f, c, DMPolytopeTypes[ct], fnumCorners, faceSizes[f]);
78029bf0dad6SMatthew G. Knepley         for (v = 0; v < fnumCorners; ++v) {
7803d4961f80SStefano Zampini           if (fclosure[v] != faces[fOff+v]) SETERRQ8(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D of type %s (cone idx %d) of cell %D of type %s vertex %D, %D != %D", cone[f], DMPolytopeTypes[fct], f, c, DMPolytopeTypes[ct], v, fclosure[v], faces[fOff+v]);
78049bf0dad6SMatthew G. Knepley         }
78059bf0dad6SMatthew G. Knepley         ierr = DMPlexRestoreTransitiveClosure(dm, cone[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr);
7806412e9a14SMatthew G. Knepley         fOff += faceSizes[f];
78079bf0dad6SMatthew G. Knepley       }
7808412e9a14SMatthew G. Knepley       ierr = DMPlexRestoreRawFaces_Internal(dm, ct, closure, &numFaces, &faceTypes, &faceSizes, &faces);CHKERRQ(ierr);
78099bf0dad6SMatthew G. Knepley       ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
78109bf0dad6SMatthew G. Knepley     }
78113554e41dSMatthew G. Knepley   }
7812552f7358SJed Brown   PetscFunctionReturn(0);
7813552f7358SJed Brown }
78143913d7c8SMatthew G. Knepley 
7815bb6a34a8SMatthew G. Knepley /*@
7816bb6a34a8SMatthew G. Knepley   DMPlexCheckGeometry - Check the geometry of mesh cells
7817bb6a34a8SMatthew G. Knepley 
7818bb6a34a8SMatthew G. Knepley   Input Parameter:
7819bb6a34a8SMatthew G. Knepley . dm - The DMPlex object
7820bb6a34a8SMatthew G. Knepley 
782195eb5ee5SVaclav Hapla   Notes:
782295eb5ee5SVaclav Hapla   This is a useful diagnostic when creating meshes programmatically.
782395eb5ee5SVaclav Hapla 
782495eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
7825bb6a34a8SMatthew G. Knepley 
7826bb6a34a8SMatthew G. Knepley   Level: developer
7827bb6a34a8SMatthew G. Knepley 
782895eb5ee5SVaclav Hapla .seealso: DMCreate(), DMSetFromOptions()
7829bb6a34a8SMatthew G. Knepley @*/
7830bb6a34a8SMatthew G. Knepley PetscErrorCode DMPlexCheckGeometry(DM dm)
7831bb6a34a8SMatthew G. Knepley {
7832a2a9e04cSMatthew G. Knepley   Vec            coordinates;
7833bb6a34a8SMatthew G. Knepley   PetscReal      detJ, J[9], refVol = 1.0;
7834bb6a34a8SMatthew G. Knepley   PetscReal      vol;
7835412e9a14SMatthew G. Knepley   PetscBool      periodic;
783651a74b61SMatthew G. Knepley   PetscInt       dim, depth, dE, d, cStart, cEnd, c;
7837bb6a34a8SMatthew G. Knepley   PetscErrorCode ierr;
7838bb6a34a8SMatthew G. Knepley 
7839bb6a34a8SMatthew G. Knepley   PetscFunctionBegin;
7840bb6a34a8SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
784151a74b61SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dE);CHKERRQ(ierr);
784251a74b61SMatthew G. Knepley   if (dim != dE) PetscFunctionReturn(0);
7843bb6a34a8SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
7844412e9a14SMatthew G. Knepley   ierr = DMGetPeriodicity(dm, &periodic, NULL, NULL, NULL);CHKERRQ(ierr);
7845bb6a34a8SMatthew G. Knepley   for (d = 0; d < dim; ++d) refVol *= 2.0;
7846bb6a34a8SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
7847a2a9e04cSMatthew G. Knepley   /* Make sure local coordinates are created, because that step is collective */
7848a2a9e04cSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
7849412e9a14SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
7850412e9a14SMatthew G. Knepley     DMPolytopeType ct;
7851412e9a14SMatthew G. Knepley     PetscInt       unsplit;
7852412e9a14SMatthew G. Knepley     PetscBool      ignoreZeroVol = PETSC_FALSE;
7853412e9a14SMatthew G. Knepley 
7854412e9a14SMatthew G. Knepley     ierr = DMPlexGetCellType(dm, c, &ct);CHKERRQ(ierr);
7855412e9a14SMatthew G. Knepley     switch (ct) {
7856412e9a14SMatthew G. Knepley       case DM_POLYTOPE_SEG_PRISM_TENSOR:
7857412e9a14SMatthew G. Knepley       case DM_POLYTOPE_TRI_PRISM_TENSOR:
7858412e9a14SMatthew G. Knepley       case DM_POLYTOPE_QUAD_PRISM_TENSOR:
7859412e9a14SMatthew G. Knepley         ignoreZeroVol = PETSC_TRUE; break;
7860412e9a14SMatthew G. Knepley       default: break;
7861412e9a14SMatthew G. Knepley     }
7862412e9a14SMatthew G. Knepley     switch (ct) {
7863412e9a14SMatthew G. Knepley       case DM_POLYTOPE_TRI_PRISM:
7864412e9a14SMatthew G. Knepley       case DM_POLYTOPE_TRI_PRISM_TENSOR:
7865412e9a14SMatthew G. Knepley       case DM_POLYTOPE_QUAD_PRISM_TENSOR:
7866a2a9e04cSMatthew G. Knepley       case DM_POLYTOPE_PYRAMID:
7867412e9a14SMatthew G. Knepley         continue;
7868412e9a14SMatthew G. Knepley       default: break;
7869412e9a14SMatthew G. Knepley     }
7870412e9a14SMatthew G. Knepley     ierr = DMPlexCellUnsplitVertices_Private(dm, c, ct, &unsplit);CHKERRQ(ierr);
7871412e9a14SMatthew G. Knepley     if (unsplit) continue;
7872bb6a34a8SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, NULL, J, NULL, &detJ);CHKERRQ(ierr);
7873d4961f80SStefano Zampini     if (detJ < -PETSC_SMALL || (detJ <= 0.0 && !ignoreZeroVol)) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Mesh cell %D of type %s is inverted, |J| = %g", c, DMPolytopeTypes[ct], (double) detJ);
7874bb6a34a8SMatthew G. Knepley     ierr = PetscInfo2(dm, "Cell %D FEM Volume %g\n", c, (double) detJ*refVol);CHKERRQ(ierr);
7875412e9a14SMatthew G. Knepley     if (depth > 1 && !periodic) {
7876bb6a34a8SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFVM(dm, c, &vol, NULL, NULL);CHKERRQ(ierr);
7877d4961f80SStefano Zampini       if (vol < -PETSC_SMALL || (vol <= 0.0 && !ignoreZeroVol)) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Mesh cell %D of type %s is inverted, vol = %g", c, DMPolytopeTypes[ct], (double) vol);
7878bb6a34a8SMatthew G. Knepley       ierr = PetscInfo2(dm, "Cell %D FVM Volume %g\n", c, (double) vol);CHKERRQ(ierr);
7879bb6a34a8SMatthew G. Knepley     }
7880bb6a34a8SMatthew G. Knepley   }
7881bb6a34a8SMatthew G. Knepley   PetscFunctionReturn(0);
7882bb6a34a8SMatthew G. Knepley }
7883bb6a34a8SMatthew G. Knepley 
788403da9461SVaclav Hapla /*@
7885e83a0d2dSVaclav Hapla   DMPlexCheckPointSF - Check that several necessary conditions are met for the point SF of this plex.
788603da9461SVaclav Hapla 
788703da9461SVaclav Hapla   Input Parameters:
788803da9461SVaclav Hapla . dm - The DMPlex object
788903da9461SVaclav Hapla 
7890e83a0d2dSVaclav Hapla   Notes:
7891e83a0d2dSVaclav Hapla   This is mainly intended for debugging/testing purposes.
78928918e3e2SVaclav Hapla   It currently checks only meshes with no partition overlapping.
789303da9461SVaclav Hapla 
789495eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
789595eb5ee5SVaclav Hapla 
789603da9461SVaclav Hapla   Level: developer
789703da9461SVaclav Hapla 
789895eb5ee5SVaclav Hapla .seealso: DMGetPointSF(), DMSetFromOptions()
789903da9461SVaclav Hapla @*/
790003da9461SVaclav Hapla PetscErrorCode DMPlexCheckPointSF(DM dm)
790103da9461SVaclav Hapla {
7902f0cfc026SVaclav Hapla   PetscSF         pointSF;
7903f5869d18SMatthew G. Knepley   PetscInt        cellHeight, cStart, cEnd, l, nleaves, nroots, overlap;
7904f5869d18SMatthew G. Knepley   const PetscInt *locals, *rootdegree;
7905f0cfc026SVaclav Hapla   PetscBool       distributed;
790603da9461SVaclav Hapla   PetscErrorCode  ierr;
790703da9461SVaclav Hapla 
790803da9461SVaclav Hapla   PetscFunctionBegin;
790903da9461SVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7910f0cfc026SVaclav Hapla   ierr = DMGetPointSF(dm, &pointSF);CHKERRQ(ierr);
7911f0cfc026SVaclav Hapla   ierr = DMPlexIsDistributed(dm, &distributed);CHKERRQ(ierr);
7912f0cfc026SVaclav Hapla   if (!distributed) PetscFunctionReturn(0);
7913f0cfc026SVaclav Hapla   ierr = DMPlexGetOverlap(dm, &overlap);CHKERRQ(ierr);
7914f0cfc026SVaclav Hapla   if (overlap) {
79158918e3e2SVaclav Hapla     ierr = PetscPrintf(PetscObjectComm((PetscObject)dm), "Warning: DMPlexCheckPointSF() is currently not implemented for meshes with partition overlapping");
79168918e3e2SVaclav Hapla     PetscFunctionReturn(0);
79178918e3e2SVaclav Hapla   }
7918f0cfc026SVaclav Hapla   if (!pointSF) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "This DMPlex is distributed but does not have PointSF attached");
7919f0cfc026SVaclav Hapla   ierr = PetscSFGetGraph(pointSF, &nroots, &nleaves, &locals, NULL);CHKERRQ(ierr);
7920f0cfc026SVaclav Hapla   if (nroots < 0) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "This DMPlex is distributed but its PointSF has no graph set");
7921f5869d18SMatthew G. Knepley   ierr = PetscSFComputeDegreeBegin(pointSF, &rootdegree);CHKERRQ(ierr);
7922f5869d18SMatthew G. Knepley   ierr = PetscSFComputeDegreeEnd(pointSF, &rootdegree);CHKERRQ(ierr);
792303da9461SVaclav Hapla 
7924ece87651SVaclav Hapla   /* 1) check there are no faces in 2D, cells in 3D, in interface */
7925f5869d18SMatthew G. Knepley   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
7926f5869d18SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
7927f5869d18SMatthew G. Knepley   for (l = 0; l < nleaves; ++l) {
7928f5869d18SMatthew G. Knepley     const PetscInt point = locals[l];
7929f5869d18SMatthew G. Knepley 
7930f5869d18SMatthew G. Knepley     if (point >= cStart && point < cEnd) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point SF contains %D which is a cell", point);
793103da9461SVaclav Hapla   }
7932ece87651SVaclav Hapla 
7933f5869d18SMatthew G. Knepley   /* 2) if some point is in interface, then all its cone points must be also in interface (either as leaves or roots) */
7934f5869d18SMatthew G. Knepley   for (l = 0; l < nleaves; ++l) {
7935f5869d18SMatthew G. Knepley     const PetscInt  point = locals[l];
7936f5869d18SMatthew G. Knepley     const PetscInt *cone;
7937f5869d18SMatthew G. Knepley     PetscInt        coneSize, c, idx;
7938f5869d18SMatthew G. Knepley 
7939f5869d18SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, point, &coneSize);CHKERRQ(ierr);
7940f5869d18SMatthew G. Knepley     ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
7941f5869d18SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
7942f5869d18SMatthew G. Knepley       if (!rootdegree[cone[c]]) {
7943f5869d18SMatthew G. Knepley         ierr = PetscFindInt(cone[c], nleaves, locals, &idx);CHKERRQ(ierr);
7944f5869d18SMatthew G. Knepley         if (idx < 0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point SF contains %D but not %D from its cone", point, cone[c]);
7945f5869d18SMatthew G. Knepley       }
7946f5869d18SMatthew G. Knepley     }
7947ece87651SVaclav Hapla   }
794803da9461SVaclav Hapla   PetscFunctionReturn(0);
794903da9461SVaclav Hapla }
795003da9461SVaclav Hapla 
7951068a5610SStefano Zampini typedef struct cell_stats
7952068a5610SStefano Zampini {
7953068a5610SStefano Zampini   PetscReal min, max, sum, squaresum;
7954068a5610SStefano Zampini   PetscInt  count;
7955068a5610SStefano Zampini } cell_stats_t;
7956068a5610SStefano Zampini 
795725befc3bSSatish Balay static void MPIAPI cell_stats_reduce(void *a, void *b, int * len, MPI_Datatype *datatype)
7958068a5610SStefano Zampini {
7959068a5610SStefano Zampini   PetscInt i, N = *len;
7960068a5610SStefano Zampini 
7961068a5610SStefano Zampini   for (i = 0; i < N; i++) {
7962068a5610SStefano Zampini     cell_stats_t *A = (cell_stats_t *) a;
7963068a5610SStefano Zampini     cell_stats_t *B = (cell_stats_t *) b;
7964068a5610SStefano Zampini 
7965068a5610SStefano Zampini     B->min = PetscMin(A->min,B->min);
7966068a5610SStefano Zampini     B->max = PetscMax(A->max,B->max);
7967068a5610SStefano Zampini     B->sum += A->sum;
7968068a5610SStefano Zampini     B->squaresum += A->squaresum;
7969068a5610SStefano Zampini     B->count += A->count;
7970068a5610SStefano Zampini   }
7971068a5610SStefano Zampini }
7972068a5610SStefano Zampini 
7973068a5610SStefano Zampini /*@
797443fa8764SMatthew G. Knepley   DMPlexCheckCellShape - Checks the Jacobian of the mapping from reference to real cells and computes some minimal statistics.
7975068a5610SStefano Zampini 
79768261a58bSMatthew G. Knepley   Collective on dm
79778261a58bSMatthew G. Knepley 
7978068a5610SStefano Zampini   Input Parameters:
7979068a5610SStefano Zampini + dm        - The DMPlex object
798043fa8764SMatthew G. Knepley . output    - If true, statistics will be displayed on stdout
798143fa8764SMatthew G. Knepley - condLimit - Display all cells above this condition number, or PETSC_DETERMINE for no cell output
7982068a5610SStefano Zampini 
798395eb5ee5SVaclav Hapla   Notes:
798495eb5ee5SVaclav Hapla   This is mainly intended for debugging/testing purposes.
798595eb5ee5SVaclav Hapla 
798695eb5ee5SVaclav Hapla   For the complete list of DMPlexCheck* functions, see DMSetFromOptions().
7987068a5610SStefano Zampini 
7988068a5610SStefano Zampini   Level: developer
7989068a5610SStefano Zampini 
7990f108dbd7SJacob Faibussowitsch .seealso: DMSetFromOptions(), DMPlexComputeOrthogonalQuality()
7991068a5610SStefano Zampini @*/
799243fa8764SMatthew G. Knepley PetscErrorCode DMPlexCheckCellShape(DM dm, PetscBool output, PetscReal condLimit)
7993068a5610SStefano Zampini {
7994068a5610SStefano Zampini   DM             dmCoarse;
799543fa8764SMatthew G. Knepley   cell_stats_t   stats, globalStats;
799643fa8764SMatthew G. Knepley   MPI_Comm       comm = PetscObjectComm((PetscObject)dm);
799743fa8764SMatthew G. Knepley   PetscReal      *J, *invJ, min = 0, max = 0, mean = 0, stdev = 0;
799843fa8764SMatthew G. Knepley   PetscReal      limit = condLimit > 0 ? condLimit : PETSC_MAX_REAL;
7999412e9a14SMatthew G. Knepley   PetscInt       cdim, cStart, cEnd, c, eStart, eEnd, count = 0;
800043fa8764SMatthew G. Knepley   PetscMPIInt    rank,size;
8001068a5610SStefano Zampini   PetscErrorCode ierr;
8002068a5610SStefano Zampini 
8003068a5610SStefano Zampini   PetscFunctionBegin;
8004068a5610SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8005068a5610SStefano Zampini   stats.min   = PETSC_MAX_REAL;
8006068a5610SStefano Zampini   stats.max   = PETSC_MIN_REAL;
8007068a5610SStefano Zampini   stats.sum   = stats.squaresum = 0.;
8008068a5610SStefano Zampini   stats.count = 0;
8009068a5610SStefano Zampini 
8010ffc4695bSBarry Smith   ierr = MPI_Comm_size(comm, &size);CHKERRMPI(ierr);
8011ffc4695bSBarry Smith   ierr = MPI_Comm_rank(comm, &rank);CHKERRMPI(ierr);
801243fa8764SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm,&cdim);CHKERRQ(ierr);
801343fa8764SMatthew G. Knepley   ierr = PetscMalloc2(PetscSqr(cdim), &J, PetscSqr(cdim), &invJ);CHKERRQ(ierr);
8014412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm,0,&cStart,&cEnd);CHKERRQ(ierr);
801543fa8764SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm,1,&eStart,&eEnd);CHKERRQ(ierr);
8016412e9a14SMatthew G. Knepley   for (c = cStart; c < cEnd; c++) {
8017068a5610SStefano Zampini     PetscInt  i;
8018068a5610SStefano Zampini     PetscReal frobJ = 0., frobInvJ = 0., cond2, cond, detJ;
8019068a5610SStefano Zampini 
8020068a5610SStefano Zampini     ierr = DMPlexComputeCellGeometryAffineFEM(dm,c,NULL,J,invJ,&detJ);CHKERRQ(ierr);
8021068a5610SStefano Zampini     if (detJ < 0.0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Mesh cell %D is inverted", c);
802243fa8764SMatthew G. Knepley     for (i = 0; i < PetscSqr(cdim); ++i) {
8023068a5610SStefano Zampini       frobJ    += J[i] * J[i];
8024068a5610SStefano Zampini       frobInvJ += invJ[i] * invJ[i];
8025068a5610SStefano Zampini     }
8026068a5610SStefano Zampini     cond2 = frobJ * frobInvJ;
8027068a5610SStefano Zampini     cond  = PetscSqrtReal(cond2);
8028068a5610SStefano Zampini 
8029068a5610SStefano Zampini     stats.min        = PetscMin(stats.min,cond);
8030068a5610SStefano Zampini     stats.max        = PetscMax(stats.max,cond);
8031068a5610SStefano Zampini     stats.sum       += cond;
8032068a5610SStefano Zampini     stats.squaresum += cond2;
8033068a5610SStefano Zampini     stats.count++;
80348261a58bSMatthew G. Knepley     if (output && cond > limit) {
803543fa8764SMatthew G. Knepley       PetscSection coordSection;
803643fa8764SMatthew G. Knepley       Vec          coordsLocal;
803743fa8764SMatthew G. Knepley       PetscScalar *coords = NULL;
803843fa8764SMatthew G. Knepley       PetscInt     Nv, d, clSize, cl, *closure = NULL;
803943fa8764SMatthew G. Knepley 
804043fa8764SMatthew G. Knepley       ierr = DMGetCoordinatesLocal(dm, &coordsLocal);CHKERRQ(ierr);
804143fa8764SMatthew G. Knepley       ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
804243fa8764SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dm, coordSection, coordsLocal, c, &Nv, &coords);CHKERRQ(ierr);
8043087ef6b2SMatthew G. Knepley       ierr = PetscSynchronizedPrintf(comm, "[%d] Cell %D cond %g\n", rank, c, (double) cond);CHKERRQ(ierr);
804443fa8764SMatthew G. Knepley       for (i = 0; i < Nv/cdim; ++i) {
804543fa8764SMatthew G. Knepley         ierr = PetscSynchronizedPrintf(comm, "  Vertex %D: (", i);CHKERRQ(ierr);
804643fa8764SMatthew G. Knepley         for (d = 0; d < cdim; ++d) {
804743fa8764SMatthew G. Knepley           if (d > 0) {ierr = PetscSynchronizedPrintf(comm, ", ");CHKERRQ(ierr);}
804848afe810SSatish Balay           ierr = PetscSynchronizedPrintf(comm, "%g", (double) PetscRealPart(coords[i*cdim+d]));CHKERRQ(ierr);
804943fa8764SMatthew G. Knepley         }
805043fa8764SMatthew G. Knepley         ierr = PetscSynchronizedPrintf(comm, ")\n");CHKERRQ(ierr);
805143fa8764SMatthew G. Knepley       }
805243fa8764SMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
805343fa8764SMatthew G. Knepley       for (cl = 0; cl < clSize*2; cl += 2) {
805443fa8764SMatthew G. Knepley         const PetscInt edge = closure[cl];
805543fa8764SMatthew G. Knepley 
805643fa8764SMatthew G. Knepley         if ((edge >= eStart) && (edge < eEnd)) {
805743fa8764SMatthew G. Knepley           PetscReal len;
805843fa8764SMatthew G. Knepley 
805943fa8764SMatthew G. Knepley           ierr = DMPlexComputeCellGeometryFVM(dm, edge, &len, NULL, NULL);CHKERRQ(ierr);
8060087ef6b2SMatthew G. Knepley           ierr = PetscSynchronizedPrintf(comm, "  Edge %D: length %g\n", edge, (double) len);CHKERRQ(ierr);
806143fa8764SMatthew G. Knepley         }
806243fa8764SMatthew G. Knepley       }
806343fa8764SMatthew G. Knepley       ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
806443fa8764SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dm, coordSection, coordsLocal, c, &Nv, &coords);CHKERRQ(ierr);
806543fa8764SMatthew G. Knepley     }
8066068a5610SStefano Zampini   }
80678261a58bSMatthew G. Knepley   if (output) {ierr = PetscSynchronizedFlush(comm, NULL);CHKERRQ(ierr);}
8068068a5610SStefano Zampini 
8069068a5610SStefano Zampini   if (size > 1) {
8070068a5610SStefano Zampini     PetscMPIInt   blockLengths[2] = {4,1};
8071068a5610SStefano Zampini     MPI_Aint      blockOffsets[2] = {offsetof(cell_stats_t,min),offsetof(cell_stats_t,count)};
8072068a5610SStefano Zampini     MPI_Datatype  blockTypes[2]   = {MPIU_REAL,MPIU_INT}, statType;
8073068a5610SStefano Zampini     MPI_Op        statReduce;
8074068a5610SStefano Zampini 
8075ffc4695bSBarry Smith     ierr = MPI_Type_create_struct(2,blockLengths,blockOffsets,blockTypes,&statType);CHKERRMPI(ierr);
8076ffc4695bSBarry Smith     ierr = MPI_Type_commit(&statType);CHKERRMPI(ierr);
8077ffc4695bSBarry Smith     ierr = MPI_Op_create(cell_stats_reduce, PETSC_TRUE, &statReduce);CHKERRMPI(ierr);
8078ffc4695bSBarry Smith     ierr = MPI_Reduce(&stats,&globalStats,1,statType,statReduce,0,comm);CHKERRMPI(ierr);
8079ffc4695bSBarry Smith     ierr = MPI_Op_free(&statReduce);CHKERRMPI(ierr);
8080ffc4695bSBarry Smith     ierr = MPI_Type_free(&statType);CHKERRMPI(ierr);
8081068a5610SStefano Zampini   } else {
8082580bdb30SBarry Smith     ierr = PetscArraycpy(&globalStats,&stats,1);CHKERRQ(ierr);
8083068a5610SStefano Zampini   }
8084068a5610SStefano Zampini   if (!rank) {
8085068a5610SStefano Zampini     count = globalStats.count;
8086068a5610SStefano Zampini     min   = globalStats.min;
8087068a5610SStefano Zampini     max   = globalStats.max;
8088068a5610SStefano Zampini     mean  = globalStats.sum / globalStats.count;
8089068a5610SStefano Zampini     stdev = globalStats.count > 1 ? PetscSqrtReal(PetscMax((globalStats.squaresum - globalStats.count * mean * mean) / (globalStats.count - 1),0)) : 0.0;
8090068a5610SStefano Zampini   }
8091068a5610SStefano Zampini 
8092068a5610SStefano Zampini   if (output) {
8093068a5610SStefano Zampini     ierr = PetscPrintf(comm,"Mesh with %D cells, shape condition numbers: min = %g, max = %g, mean = %g, stddev = %g\n", count, (double) min, (double) max, (double) mean, (double) stdev);CHKERRQ(ierr);
8094068a5610SStefano Zampini   }
8095068a5610SStefano Zampini   ierr = PetscFree2(J,invJ);CHKERRQ(ierr);
8096068a5610SStefano Zampini 
8097068a5610SStefano Zampini   ierr = DMGetCoarseDM(dm,&dmCoarse);CHKERRQ(ierr);
8098068a5610SStefano Zampini   if (dmCoarse) {
8099068a5610SStefano Zampini     PetscBool isplex;
8100068a5610SStefano Zampini 
8101068a5610SStefano Zampini     ierr = PetscObjectTypeCompare((PetscObject)dmCoarse,DMPLEX,&isplex);CHKERRQ(ierr);
8102068a5610SStefano Zampini     if (isplex) {
810343fa8764SMatthew G. Knepley       ierr = DMPlexCheckCellShape(dmCoarse,output,condLimit);CHKERRQ(ierr);
8104068a5610SStefano Zampini     }
8105068a5610SStefano Zampini   }
8106068a5610SStefano Zampini   PetscFunctionReturn(0);
8107068a5610SStefano Zampini }
8108068a5610SStefano Zampini 
8109f108dbd7SJacob Faibussowitsch /*@
8110f108dbd7SJacob Faibussowitsch   DMPlexComputeOrthogonalQuality - Compute cell-wise orthogonal quality mesh statistic. Optionally tags all cells with
8111f108dbd7SJacob Faibussowitsch   orthogonal quality below given tolerance.
8112f108dbd7SJacob Faibussowitsch 
8113*6ed19f2fSJacob Faibussowitsch   Collective on dm
8114f108dbd7SJacob Faibussowitsch 
8115f108dbd7SJacob Faibussowitsch   Input Parameters:
8116f108dbd7SJacob Faibussowitsch + dm   - The DMPlex object
8117f108dbd7SJacob Faibussowitsch . fv   - Optional PetscFV object for pre-computed cell/face centroid information
8118f108dbd7SJacob Faibussowitsch - atol - [0, 1] Absolute tolerance for tagging cells.
8119f108dbd7SJacob Faibussowitsch 
8120f108dbd7SJacob Faibussowitsch   Output Parameters:
8121f108dbd7SJacob Faibussowitsch + OrthQual      - Vec containing orthogonal quality per cell
8122f108dbd7SJacob Faibussowitsch - OrthQualLabel - DMLabel tagging cells below atol with DM_ADAPT_REFINE
8123f108dbd7SJacob Faibussowitsch 
8124f108dbd7SJacob Faibussowitsch   Options Database Keys:
8125f108dbd7SJacob Faibussowitsch + -dm_plex_orthogonal_quality_label_view - view OrthQualLabel if label is requested. Currently only PETSCVIEWERASCII is
8126f108dbd7SJacob Faibussowitsch supported.
8127f108dbd7SJacob Faibussowitsch - -dm_plex_orthogonal_quality_vec_view - view OrthQual vector.
8128f108dbd7SJacob Faibussowitsch 
8129f108dbd7SJacob Faibussowitsch   Notes:
8130f108dbd7SJacob Faibussowitsch   Orthogonal quality is given by the following formula:
8131f108dbd7SJacob Faibussowitsch 
8132f108dbd7SJacob Faibussowitsch   \min \left[ \frac{A_i \cdot f_i}{\|A_i\| \|f_i\|} , \frac{A_i \cdot c_i}{\|A_i\| \|c_i\|} \right]
8133f108dbd7SJacob Faibussowitsch 
8134f108dbd7SJacob Faibussowitsch   Where A_i is the i'th face-normal vector, f_i is the vector from the cell centroid to the i'th face centroid, and c_i
8135f108dbd7SJacob Faibussowitsch   is the vector from the current cells centroid to the centroid of its i'th neighbor (which shares a face with the
8136f108dbd7SJacob Faibussowitsch   current cell). This computes the vector similarity between each cell face and its corresponding neighbor centroid by
8137f108dbd7SJacob Faibussowitsch   calculating the cosine of the angle between these vectors.
8138f108dbd7SJacob Faibussowitsch 
8139f108dbd7SJacob Faibussowitsch   Orthogonal quality ranges from 1 (best) to 0 (worst).
8140f108dbd7SJacob Faibussowitsch 
8141f108dbd7SJacob Faibussowitsch   This routine is mainly useful for FVM, however is not restricted to only FVM. The PetscFV object is optionally used to check for
8142f108dbd7SJacob Faibussowitsch   pre-computed FVM cell data, but if it is not passed in then this data will be computed.
8143f108dbd7SJacob Faibussowitsch 
8144f108dbd7SJacob Faibussowitsch   Cells are tagged if they have an orthogonal quality less than or equal to the absolute tolerance.
8145f108dbd7SJacob Faibussowitsch 
8146f108dbd7SJacob Faibussowitsch   Level: intermediate
8147f108dbd7SJacob Faibussowitsch 
8148f108dbd7SJacob Faibussowitsch .seealso: DMPlexCheckCellShape(), DMCreateLabel()
8149f108dbd7SJacob Faibussowitsch @*/
8150f108dbd7SJacob Faibussowitsch PetscErrorCode DMPlexComputeOrthogonalQuality(DM dm, PetscFV fv, PetscReal atol, Vec *OrthQual, DMLabel *OrthQualLabel)
8151f108dbd7SJacob Faibussowitsch {
8152*6ed19f2fSJacob Faibussowitsch   PetscInt                nc, cellHeight, cStart, cEnd, cell, cellIter = 0;
8153*6ed19f2fSJacob Faibussowitsch   PetscInt                *idx;
8154*6ed19f2fSJacob Faibussowitsch   PetscScalar             *oqVals;
8155f108dbd7SJacob Faibussowitsch   const PetscScalar       *cellGeomArr, *faceGeomArr;
8156*6ed19f2fSJacob Faibussowitsch   PetscReal               *ci, *fi, *Ai;
8157f108dbd7SJacob Faibussowitsch   MPI_Comm                comm;
8158f108dbd7SJacob Faibussowitsch   Vec                     cellgeom, facegeom;
8159f108dbd7SJacob Faibussowitsch   DM                      dmFace, dmCell;
8160f108dbd7SJacob Faibussowitsch   IS                      glob;
8161f108dbd7SJacob Faibussowitsch   ISLocalToGlobalMapping  ltog;
8162f108dbd7SJacob Faibussowitsch   PetscViewer             vwr;
8163f108dbd7SJacob Faibussowitsch   PetscErrorCode          ierr;
8164f108dbd7SJacob Faibussowitsch 
8165f108dbd7SJacob Faibussowitsch   PetscFunctionBegin;
8166f108dbd7SJacob Faibussowitsch   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8167*6ed19f2fSJacob Faibussowitsch   if (fv) {PetscValidHeaderSpecific(fv, PETSCFV_CLASSID, 2);}
8168f108dbd7SJacob Faibussowitsch   PetscValidPointer(OrthQual, 4);
8169*6ed19f2fSJacob Faibussowitsch   if (PetscUnlikelyDebug(atol < 0.0 || atol > 1.0)) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Absolute tolerance %g not in [0,1]",(double)atol);
8170f108dbd7SJacob Faibussowitsch   ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
8171f108dbd7SJacob Faibussowitsch   ierr = DMGetDimension(dm, &nc);CHKERRQ(ierr);
8172*6ed19f2fSJacob Faibussowitsch   if (nc < 2) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "DM must have dimension >= 2 (current %D)", nc);
8173*6ed19f2fSJacob Faibussowitsch   {
8174*6ed19f2fSJacob Faibussowitsch     DMPlexInterpolatedFlag interpFlag;
8175*6ed19f2fSJacob Faibussowitsch 
8176f108dbd7SJacob Faibussowitsch     ierr = DMPlexIsInterpolated(dm, &interpFlag);CHKERRQ(ierr);
8177f108dbd7SJacob Faibussowitsch     if (interpFlag != DMPLEX_INTERPOLATED_FULL) {
8178f108dbd7SJacob Faibussowitsch       PetscMPIInt rank;
8179f108dbd7SJacob Faibussowitsch 
8180ffc4695bSBarry Smith       ierr = MPI_Comm_rank(comm, &rank);CHKERRMPI(ierr);
8181f108dbd7SJacob Faibussowitsch       SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "DM must be fully interpolated, DM on rank %d is not fully interpolated", rank);
8182f108dbd7SJacob Faibussowitsch     }
8183*6ed19f2fSJacob Faibussowitsch   }
8184f108dbd7SJacob Faibussowitsch   if (OrthQualLabel) {
8185f108dbd7SJacob Faibussowitsch     PetscValidPointer(OrthQualLabel, 5);
8186f108dbd7SJacob Faibussowitsch     ierr = DMCreateLabel(dm, "Orthogonal_Quality");CHKERRQ(ierr);
8187f108dbd7SJacob Faibussowitsch     ierr = DMGetLabel(dm, "Orthogonal_Quality", OrthQualLabel);CHKERRQ(ierr);
8188*6ed19f2fSJacob Faibussowitsch   } else {*OrthQualLabel = NULL;}
8189f108dbd7SJacob Faibussowitsch   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
8190f108dbd7SJacob Faibussowitsch   ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
8191f108dbd7SJacob Faibussowitsch   ierr = DMPlexCreateCellNumbering_Internal(dm, PETSC_TRUE, &glob);CHKERRQ(ierr);
8192f108dbd7SJacob Faibussowitsch   ierr = ISLocalToGlobalMappingCreateIS(glob, &ltog);CHKERRQ(ierr);
8193f108dbd7SJacob Faibussowitsch   ierr = ISLocalToGlobalMappingSetType(ltog, ISLOCALTOGLOBALMAPPINGHASH);CHKERRQ(ierr);
8194f108dbd7SJacob Faibussowitsch   ierr = VecCreate(comm, OrthQual);CHKERRQ(ierr);
8195f108dbd7SJacob Faibussowitsch   ierr = VecSetType(*OrthQual, VECSTANDARD);CHKERRQ(ierr);
8196f108dbd7SJacob Faibussowitsch   ierr = VecSetSizes(*OrthQual, cEnd-cStart, PETSC_DETERMINE);CHKERRQ(ierr);
8197f108dbd7SJacob Faibussowitsch   ierr = VecSetLocalToGlobalMapping(*OrthQual, ltog);CHKERRQ(ierr);
8198f108dbd7SJacob Faibussowitsch   ierr = VecSetUp(*OrthQual);CHKERRQ(ierr);
8199f108dbd7SJacob Faibussowitsch   ierr = ISDestroy(&glob);CHKERRQ(ierr);
8200f108dbd7SJacob Faibussowitsch   ierr = ISLocalToGlobalMappingDestroy(&ltog);CHKERRQ(ierr);
8201f108dbd7SJacob Faibussowitsch   ierr = DMPlexGetDataFVM(dm, fv, &cellgeom, &facegeom, NULL);CHKERRQ(ierr);
8202f108dbd7SJacob Faibussowitsch   ierr = VecGetArrayRead(cellgeom, &cellGeomArr);CHKERRQ(ierr);
8203f108dbd7SJacob Faibussowitsch   ierr = VecGetArrayRead(facegeom, &faceGeomArr);CHKERRQ(ierr);
8204f108dbd7SJacob Faibussowitsch   ierr = VecGetDM(cellgeom, &dmCell);CHKERRQ(ierr);
8205f108dbd7SJacob Faibussowitsch   ierr = VecGetDM(facegeom, &dmFace);CHKERRQ(ierr);
8206*6ed19f2fSJacob Faibussowitsch   ierr = PetscMalloc5(cEnd-cStart, &idx, cEnd-cStart, &oqVals, nc, &ci, nc, &fi, nc, &Ai);CHKERRQ(ierr);
8207*6ed19f2fSJacob Faibussowitsch   for (cell = cStart; cell < cEnd; cellIter++,cell++) {
8208*6ed19f2fSJacob Faibussowitsch     PetscInt           cellneigh, cellneighiter = 0, adjSize = PETSC_DETERMINE;
8209f108dbd7SJacob Faibussowitsch     PetscInt           cellarr[2], *adj = NULL;
8210f108dbd7SJacob Faibussowitsch     PetscScalar        *cArr, *fArr;
8211898cd552SSatish Balay     PetscReal          minvalc = 1.0, minvalf = 1.0;
8212f108dbd7SJacob Faibussowitsch     PetscFVCellGeom    *cg;
8213f108dbd7SJacob Faibussowitsch 
8214*6ed19f2fSJacob Faibussowitsch     idx[cellIter] = cell-cStart;
8215f108dbd7SJacob Faibussowitsch     cellarr[0] = cell;
8216f108dbd7SJacob Faibussowitsch     /* Make indexing into cellGeom easier */
8217f108dbd7SJacob Faibussowitsch     ierr = DMPlexPointLocalRead(dmCell, cell, cellGeomArr, &cg);CHKERRQ(ierr);
8218f108dbd7SJacob Faibussowitsch     ierr = DMPlexGetAdjacency_Internal(dm, cell, PETSC_TRUE, PETSC_FALSE, PETSC_FALSE, &adjSize, &adj);CHKERRQ(ierr);
8219f108dbd7SJacob Faibussowitsch     /* Technically 1 too big, but easier than fiddling with empty adjacency array */
8220f108dbd7SJacob Faibussowitsch     ierr = PetscCalloc2(adjSize, &cArr, adjSize, &fArr);CHKERRQ(ierr);
8221*6ed19f2fSJacob Faibussowitsch     for (cellneigh = 0; cellneigh < adjSize; cellneighiter++,cellneigh++) {
8222*6ed19f2fSJacob Faibussowitsch       PetscInt         i;
8223*6ed19f2fSJacob Faibussowitsch       const PetscInt   neigh = adj[cellneigh];
8224f108dbd7SJacob Faibussowitsch       PetscReal        normci = 0, normfi = 0, normai = 0;
8225f108dbd7SJacob Faibussowitsch       PetscFVCellGeom  *cgneigh;
8226f108dbd7SJacob Faibussowitsch       PetscFVFaceGeom  *fg;
8227f108dbd7SJacob Faibussowitsch 
8228f108dbd7SJacob Faibussowitsch       /* Don't count ourselves in the neighbor list */
8229f108dbd7SJacob Faibussowitsch       if (neigh == cell) continue;
8230f108dbd7SJacob Faibussowitsch       ierr = DMPlexPointLocalRead(dmCell, neigh, cellGeomArr, &cgneigh);CHKERRQ(ierr);
8231f108dbd7SJacob Faibussowitsch       cellarr[1] = neigh;
8232*6ed19f2fSJacob Faibussowitsch       {
8233*6ed19f2fSJacob Faibussowitsch         PetscInt       numcovpts;
8234*6ed19f2fSJacob Faibussowitsch         const PetscInt *covpts;
8235*6ed19f2fSJacob Faibussowitsch 
8236f108dbd7SJacob Faibussowitsch         ierr = DMPlexGetMeet(dm, 2, cellarr, &numcovpts, &covpts);CHKERRQ(ierr);
8237f108dbd7SJacob Faibussowitsch         ierr = DMPlexPointLocalRead(dmFace, covpts[0], faceGeomArr, &fg);CHKERRQ(ierr);
8238f108dbd7SJacob Faibussowitsch         ierr = DMPlexRestoreMeet(dm, 2, cellarr, &numcovpts, &covpts);CHKERRQ(ierr);
8239*6ed19f2fSJacob Faibussowitsch       }
8240f108dbd7SJacob Faibussowitsch 
8241f108dbd7SJacob Faibussowitsch       /* Compute c_i, f_i and their norms */
8242f108dbd7SJacob Faibussowitsch       for (i = 0; i < nc; i++) {
8243f108dbd7SJacob Faibussowitsch         ci[i] = cgneigh->centroid[i] - cg->centroid[i];
8244f108dbd7SJacob Faibussowitsch         fi[i] = fg->centroid[i] - cg->centroid[i];
8245f108dbd7SJacob Faibussowitsch         Ai[i] = fg->normal[i];
8246addd1e01SJunchao Zhang         normci += PetscPowReal(ci[i], 2);
8247addd1e01SJunchao Zhang         normfi += PetscPowReal(fi[i], 2);
8248addd1e01SJunchao Zhang         normai += PetscPowReal(Ai[i], 2);
8249f108dbd7SJacob Faibussowitsch       }
8250addd1e01SJunchao Zhang       normci = PetscSqrtReal(normci);
8251addd1e01SJunchao Zhang       normfi = PetscSqrtReal(normfi);
8252addd1e01SJunchao Zhang       normai = PetscSqrtReal(normai);
8253f108dbd7SJacob Faibussowitsch 
8254f108dbd7SJacob Faibussowitsch       /* Normalize and compute for each face-cell-normal pair */
8255f108dbd7SJacob Faibussowitsch       for (i = 0; i < nc; i++) {
8256f108dbd7SJacob Faibussowitsch         ci[i] = ci[i]/normci;
8257f108dbd7SJacob Faibussowitsch         fi[i] = fi[i]/normfi;
8258f108dbd7SJacob Faibussowitsch         Ai[i] = Ai[i]/normai;
8259f108dbd7SJacob Faibussowitsch         /* PetscAbs because I don't know if normals are guaranteed to point out */
8260f108dbd7SJacob Faibussowitsch         cArr[cellneighiter] += PetscAbs(Ai[i]*ci[i]);
8261f108dbd7SJacob Faibussowitsch         fArr[cellneighiter] += PetscAbs(Ai[i]*fi[i]);
8262f108dbd7SJacob Faibussowitsch       }
8263f108dbd7SJacob Faibussowitsch       if (PetscRealPart(cArr[cellneighiter]) < minvalc) {
8264f108dbd7SJacob Faibussowitsch         minvalc = PetscRealPart(cArr[cellneighiter]);
8265f108dbd7SJacob Faibussowitsch       }
8266f108dbd7SJacob Faibussowitsch       if (PetscRealPart(fArr[cellneighiter]) < minvalf) {
8267f108dbd7SJacob Faibussowitsch         minvalf = PetscRealPart(fArr[cellneighiter]);
8268f108dbd7SJacob Faibussowitsch       }
8269f108dbd7SJacob Faibussowitsch     }
8270f108dbd7SJacob Faibussowitsch     ierr = PetscFree(adj);CHKERRQ(ierr);
8271f108dbd7SJacob Faibussowitsch     ierr = PetscFree2(cArr, fArr);CHKERRQ(ierr);
8272f108dbd7SJacob Faibussowitsch     /* Defer to cell if they're equal */
8273*6ed19f2fSJacob Faibussowitsch     oqVals[cellIter] = PetscMin(minvalf, minvalc);
8274f108dbd7SJacob Faibussowitsch     if (OrthQualLabel) {
8275*6ed19f2fSJacob Faibussowitsch       if (PetscRealPart(oqVals[cellIter]) <= atol) {ierr = DMLabelSetValue(*OrthQualLabel, cell, DM_ADAPT_REFINE);CHKERRQ(ierr);}
8276f108dbd7SJacob Faibussowitsch     }
8277f108dbd7SJacob Faibussowitsch   }
8278*6ed19f2fSJacob Faibussowitsch   ierr = VecSetValuesLocal(*OrthQual, cEnd-cStart, idx, oqVals, INSERT_VALUES);CHKERRQ(ierr);
8279f108dbd7SJacob Faibussowitsch   ierr = VecAssemblyBegin(*OrthQual);CHKERRQ(ierr);
8280f108dbd7SJacob Faibussowitsch   ierr = VecAssemblyEnd(*OrthQual);CHKERRQ(ierr);
8281f108dbd7SJacob Faibussowitsch   ierr = VecRestoreArrayRead(cellgeom, &cellGeomArr);CHKERRQ(ierr);
8282f108dbd7SJacob Faibussowitsch   ierr = VecRestoreArrayRead(facegeom, &faceGeomArr);CHKERRQ(ierr);
8283f108dbd7SJacob Faibussowitsch   ierr = PetscOptionsGetViewer(comm, NULL, NULL, "-dm_plex_orthogonal_quality_label_view", &vwr, NULL, NULL);CHKERRQ(ierr);
8284f108dbd7SJacob Faibussowitsch   if (OrthQualLabel) {
8285*6ed19f2fSJacob Faibussowitsch     if (vwr) {ierr = DMLabelView(*OrthQualLabel, vwr);CHKERRQ(ierr);}
8286f108dbd7SJacob Faibussowitsch   }
8287*6ed19f2fSJacob Faibussowitsch   ierr = PetscFree5(idx, oqVals, ci, fi, Ai);CHKERRQ(ierr);
8288f108dbd7SJacob Faibussowitsch   ierr = PetscViewerDestroy(&vwr);CHKERRQ(ierr);
8289f108dbd7SJacob Faibussowitsch   ierr = VecViewFromOptions(*OrthQual, NULL, "-dm_plex_orthogonal_quality_vec_view");CHKERRQ(ierr);
8290f108dbd7SJacob Faibussowitsch   PetscFunctionReturn(0);
8291f108dbd7SJacob Faibussowitsch }
8292f108dbd7SJacob Faibussowitsch 
82931eb70e55SToby Isaac /* this is here insead of DMGetOutputDM because output DM still has constraints in the local indices that affect
82941eb70e55SToby Isaac  * interpolator construction */
82951eb70e55SToby Isaac static PetscErrorCode DMGetFullDM(DM dm, DM *odm)
82961eb70e55SToby Isaac {
82971eb70e55SToby Isaac   PetscSection   section, newSection, gsection;
82981eb70e55SToby Isaac   PetscSF        sf;
82991eb70e55SToby Isaac   PetscBool      hasConstraints, ghasConstraints;
83001eb70e55SToby Isaac   PetscErrorCode ierr;
83011eb70e55SToby Isaac 
83021eb70e55SToby Isaac   PetscFunctionBegin;
83031eb70e55SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
83041eb70e55SToby Isaac   PetscValidPointer(odm,2);
83051eb70e55SToby Isaac   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
83061eb70e55SToby Isaac   ierr = PetscSectionHasConstraints(section, &hasConstraints);CHKERRQ(ierr);
83071eb70e55SToby Isaac   ierr = MPI_Allreduce(&hasConstraints, &ghasConstraints, 1, MPIU_BOOL, MPI_LOR, PetscObjectComm((PetscObject) dm));CHKERRMPI(ierr);
83081eb70e55SToby Isaac   if (!ghasConstraints) {
83091eb70e55SToby Isaac     ierr = PetscObjectReference((PetscObject)dm);CHKERRQ(ierr);
83101eb70e55SToby Isaac     *odm = dm;
83111eb70e55SToby Isaac     PetscFunctionReturn(0);
83121eb70e55SToby Isaac   }
83131eb70e55SToby Isaac   ierr = DMClone(dm, odm);CHKERRQ(ierr);
83141eb70e55SToby Isaac   ierr = DMCopyFields(dm, *odm);CHKERRQ(ierr);
83151eb70e55SToby Isaac   ierr = DMGetLocalSection(*odm, &newSection);CHKERRQ(ierr);
83161eb70e55SToby Isaac   ierr = DMGetPointSF(*odm, &sf);CHKERRQ(ierr);
83171eb70e55SToby Isaac   ierr = PetscSectionCreateGlobalSection(newSection, sf, PETSC_TRUE, PETSC_FALSE, &gsection);CHKERRQ(ierr);
83181eb70e55SToby Isaac   ierr = DMSetGlobalSection(*odm, gsection);CHKERRQ(ierr);
83191eb70e55SToby Isaac   ierr = PetscSectionDestroy(&gsection);CHKERRQ(ierr);
83201eb70e55SToby Isaac   PetscFunctionReturn(0);
83211eb70e55SToby Isaac }
83221eb70e55SToby Isaac 
83231eb70e55SToby Isaac static PetscErrorCode DMCreateAffineInterpolationCorrection_Plex(DM dmc, DM dmf, Vec *shift)
83241eb70e55SToby Isaac {
83251eb70e55SToby Isaac   DM             dmco, dmfo;
83261eb70e55SToby Isaac   Mat            interpo;
83271eb70e55SToby Isaac   Vec            rscale;
83281eb70e55SToby Isaac   Vec            cglobalo, clocal;
83291eb70e55SToby Isaac   Vec            fglobal, fglobalo, flocal;
83301eb70e55SToby Isaac   PetscBool      regular;
83311eb70e55SToby Isaac   PetscErrorCode ierr;
83321eb70e55SToby Isaac 
83331eb70e55SToby Isaac   PetscFunctionBegin;
83341eb70e55SToby Isaac   ierr = DMGetFullDM(dmc, &dmco);CHKERRQ(ierr);
83351eb70e55SToby Isaac   ierr = DMGetFullDM(dmf, &dmfo);CHKERRQ(ierr);
83361eb70e55SToby Isaac   ierr = DMSetCoarseDM(dmfo, dmco);CHKERRQ(ierr);
83371eb70e55SToby Isaac   ierr = DMPlexGetRegularRefinement(dmf, &regular);CHKERRQ(ierr);
83381eb70e55SToby Isaac   ierr = DMPlexSetRegularRefinement(dmfo, regular);CHKERRQ(ierr);
83391eb70e55SToby Isaac   ierr = DMCreateInterpolation(dmco, dmfo, &interpo, &rscale);CHKERRQ(ierr);
83401eb70e55SToby Isaac   ierr = DMCreateGlobalVector(dmco, &cglobalo);CHKERRQ(ierr);
83411eb70e55SToby Isaac   ierr = DMCreateLocalVector(dmc, &clocal);CHKERRQ(ierr);
83421eb70e55SToby Isaac   ierr = VecSet(cglobalo, 0.);CHKERRQ(ierr);
83431eb70e55SToby Isaac   ierr = VecSet(clocal, 0.);CHKERRQ(ierr);
83441eb70e55SToby Isaac   ierr = DMCreateGlobalVector(dmf, &fglobal);CHKERRQ(ierr);
83451eb70e55SToby Isaac   ierr = DMCreateGlobalVector(dmfo, &fglobalo);CHKERRQ(ierr);
83461eb70e55SToby Isaac   ierr = DMCreateLocalVector(dmf, &flocal);CHKERRQ(ierr);
83471eb70e55SToby Isaac   ierr = VecSet(fglobal, 0.);CHKERRQ(ierr);
83481eb70e55SToby Isaac   ierr = VecSet(fglobalo, 0.);CHKERRQ(ierr);
83491eb70e55SToby Isaac   ierr = VecSet(flocal, 0.);CHKERRQ(ierr);
83501eb70e55SToby Isaac   ierr = DMPlexInsertBoundaryValues(dmc, PETSC_TRUE, clocal, 0., NULL, NULL, NULL);CHKERRQ(ierr);
83511eb70e55SToby Isaac   ierr = DMLocalToGlobalBegin(dmco, clocal, INSERT_VALUES, cglobalo);CHKERRQ(ierr);
83521eb70e55SToby Isaac   ierr = DMLocalToGlobalEnd(dmco, clocal, INSERT_VALUES, cglobalo);CHKERRQ(ierr);
83531eb70e55SToby Isaac   ierr = MatMult(interpo, cglobalo, fglobalo);CHKERRQ(ierr);
83541eb70e55SToby Isaac   ierr = DMGlobalToLocalBegin(dmfo, fglobalo, INSERT_VALUES, flocal);CHKERRQ(ierr);
83551eb70e55SToby Isaac   ierr = DMGlobalToLocalEnd(dmfo, fglobalo, INSERT_VALUES, flocal);CHKERRQ(ierr);
83561eb70e55SToby Isaac   ierr = DMLocalToGlobalBegin(dmf, flocal, INSERT_VALUES, fglobal);CHKERRQ(ierr);
83571eb70e55SToby Isaac   ierr = DMLocalToGlobalEnd(dmf, flocal, INSERT_VALUES, fglobal);CHKERRQ(ierr);
83581eb70e55SToby Isaac   *shift = fglobal;
83591eb70e55SToby Isaac   ierr = VecDestroy(&flocal);CHKERRQ(ierr);
83601eb70e55SToby Isaac   ierr = VecDestroy(&fglobalo);CHKERRQ(ierr);
83611eb70e55SToby Isaac   ierr = VecDestroy(&clocal);CHKERRQ(ierr);
83621eb70e55SToby Isaac   ierr = VecDestroy(&cglobalo);CHKERRQ(ierr);
83631eb70e55SToby Isaac   ierr = VecDestroy(&rscale);CHKERRQ(ierr);
83641eb70e55SToby Isaac   ierr = MatDestroy(&interpo);CHKERRQ(ierr);
83651eb70e55SToby Isaac   ierr = DMDestroy(&dmfo);CHKERRQ(ierr);
83661eb70e55SToby Isaac   ierr = DMDestroy(&dmco);CHKERRQ(ierr);
83671eb70e55SToby Isaac   PetscFunctionReturn(0);
83681eb70e55SToby Isaac }
83691eb70e55SToby Isaac 
83701eb70e55SToby Isaac PETSC_INTERN PetscErrorCode DMInterpolateSolution_Plex(DM coarse, DM fine, Mat interp, Vec coarseSol, Vec fineSol)
83711eb70e55SToby Isaac {
83721eb70e55SToby Isaac   PetscObject    shifto;
83731eb70e55SToby Isaac   Vec            shift;
83741eb70e55SToby Isaac 
83751eb70e55SToby Isaac   PetscErrorCode ierr;
83761eb70e55SToby Isaac 
83771eb70e55SToby Isaac   PetscFunctionBegin;
83781eb70e55SToby Isaac   if (!interp) {
83791eb70e55SToby Isaac     Vec rscale;
83801eb70e55SToby Isaac 
83811eb70e55SToby Isaac     ierr = DMCreateInterpolation(coarse, fine, &interp, &rscale);CHKERRQ(ierr);
83821eb70e55SToby Isaac     ierr = VecDestroy(&rscale);CHKERRQ(ierr);
83831eb70e55SToby Isaac   } else {
83841eb70e55SToby Isaac     ierr = PetscObjectReference((PetscObject)interp);CHKERRQ(ierr);
83851eb70e55SToby Isaac   }
83861eb70e55SToby Isaac   ierr = PetscObjectQuery((PetscObject)interp, "_DMInterpolateSolution_Plex_Vec", &shifto);CHKERRQ(ierr);
83871eb70e55SToby Isaac   if (!shifto) {
83881eb70e55SToby Isaac     ierr = DMCreateAffineInterpolationCorrection_Plex(coarse, fine, &shift);CHKERRQ(ierr);
83891eb70e55SToby Isaac     ierr = PetscObjectCompose((PetscObject)interp, "_DMInterpolateSolution_Plex_Vec", (PetscObject) shift);CHKERRQ(ierr);
83901eb70e55SToby Isaac     shifto = (PetscObject) shift;
83911eb70e55SToby Isaac     ierr = VecDestroy(&shift);CHKERRQ(ierr);
83921eb70e55SToby Isaac   }
83931eb70e55SToby Isaac   shift = (Vec) shifto;
83941eb70e55SToby Isaac   ierr = MatInterpolate(interp, coarseSol, fineSol);CHKERRQ(ierr);
83951eb70e55SToby Isaac   ierr = VecAXPY(fineSol, 1.0, shift);CHKERRQ(ierr);
83961eb70e55SToby Isaac   ierr = MatDestroy(&interp);CHKERRQ(ierr);
83971eb70e55SToby Isaac   PetscFunctionReturn(0);
83981eb70e55SToby Isaac }
83991eb70e55SToby Isaac 
8400bceba477SMatthew G. Knepley /* Pointwise interpolation
8401bceba477SMatthew G. Knepley      Just code FEM for now
8402bceba477SMatthew G. Knepley      u^f = I u^c
84034ca5e9f5SMatthew G. Knepley      sum_k u^f_k phi^f_k = I sum_j u^c_j phi^c_j
84044ca5e9f5SMatthew G. Knepley      u^f_i = sum_j psi^f_i I phi^c_j u^c_j
84054ca5e9f5SMatthew G. Knepley      I_{ij} = psi^f_i phi^c_j
8406bceba477SMatthew G. Knepley */
8407bceba477SMatthew G. Knepley PetscErrorCode DMCreateInterpolation_Plex(DM dmCoarse, DM dmFine, Mat *interpolation, Vec *scaling)
8408bceba477SMatthew G. Knepley {
8409bceba477SMatthew G. Knepley   PetscSection   gsc, gsf;
8410bceba477SMatthew G. Knepley   PetscInt       m, n;
8411a063dac3SMatthew G. Knepley   void          *ctx;
841268132eb9SMatthew G. Knepley   DM             cdm;
8413cf51de39SMatthew G. Knepley   PetscBool      regular, ismatis, isRefined = dmCoarse->data == dmFine->data ? PETSC_FALSE : PETSC_TRUE;
8414bceba477SMatthew G. Knepley   PetscErrorCode ierr;
8415bceba477SMatthew G. Knepley 
8416bceba477SMatthew G. Knepley   PetscFunctionBegin;
8417e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr);
8418bceba477SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr);
8419e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr);
8420bceba477SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr);
842168132eb9SMatthew G. Knepley 
8422fd194bc8SStefano Zampini   ierr = PetscStrcmp(dmCoarse->mattype, MATIS, &ismatis);CHKERRQ(ierr);
8423bceba477SMatthew G. Knepley   ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), interpolation);CHKERRQ(ierr);
8424bceba477SMatthew G. Knepley   ierr = MatSetSizes(*interpolation, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
8425fd194bc8SStefano Zampini   ierr = MatSetType(*interpolation, ismatis ? MATAIJ : dmCoarse->mattype);CHKERRQ(ierr);
8426a063dac3SMatthew G. Knepley   ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr);
842768132eb9SMatthew G. Knepley 
8428a8fb8f29SToby Isaac   ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr);
842968132eb9SMatthew G. Knepley   ierr = DMPlexGetRegularRefinement(dmFine, &regular);CHKERRQ(ierr);
8430cf51de39SMatthew G. Knepley   if (!isRefined || (regular && cdm == dmCoarse)) {ierr = DMPlexComputeInterpolatorNested(dmCoarse, dmFine, isRefined, *interpolation, ctx);CHKERRQ(ierr);}
843168132eb9SMatthew G. Knepley   else                                            {ierr = DMPlexComputeInterpolatorGeneral(dmCoarse, dmFine, *interpolation, ctx);CHKERRQ(ierr);}
843268132eb9SMatthew G. Knepley   ierr = MatViewFromOptions(*interpolation, NULL, "-interp_mat_view");CHKERRQ(ierr);
84334db47ee9SStefano Zampini   if (scaling) {
84345d1c2e58SMatthew G. Knepley     /* Use naive scaling */
84355d1c2e58SMatthew G. Knepley     ierr = DMCreateInterpolationScale(dmCoarse, dmFine, *interpolation, scaling);CHKERRQ(ierr);
84364db47ee9SStefano Zampini   }
8437a063dac3SMatthew G. Knepley   PetscFunctionReturn(0);
8438a063dac3SMatthew G. Knepley }
8439bceba477SMatthew G. Knepley 
84406dbf9973SLawrence Mitchell PetscErrorCode DMCreateInjection_Plex(DM dmCoarse, DM dmFine, Mat *mat)
8441a063dac3SMatthew G. Knepley {
844290748bafSMatthew G. Knepley   PetscErrorCode ierr;
84436dbf9973SLawrence Mitchell   VecScatter     ctx;
844490748bafSMatthew G. Knepley 
8445a063dac3SMatthew G. Knepley   PetscFunctionBegin;
84466dbf9973SLawrence Mitchell   ierr = DMPlexComputeInjectorFEM(dmCoarse, dmFine, &ctx, NULL);CHKERRQ(ierr);
84476dbf9973SLawrence Mitchell   ierr = MatCreateScatter(PetscObjectComm((PetscObject)ctx), ctx, mat);CHKERRQ(ierr);
84486dbf9973SLawrence Mitchell   ierr = VecScatterDestroy(&ctx);CHKERRQ(ierr);
8449bceba477SMatthew G. Knepley   PetscFunctionReturn(0);
8450bceba477SMatthew G. Knepley }
8451bceba477SMatthew G. Knepley 
84523e9753d6SMatthew G. Knepley static void g0_identity_private(PetscInt dim, PetscInt Nf, PetscInt NfAux,
84533e9753d6SMatthew G. Knepley                                 const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[],
84543e9753d6SMatthew G. Knepley                                 const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[],
84553e9753d6SMatthew G. Knepley                                 PetscReal t, PetscReal u_tShift, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar g0[])
84563e9753d6SMatthew G. Knepley {
84573e9753d6SMatthew G. Knepley   g0[0] = 1.0;
84583e9753d6SMatthew G. Knepley }
84593e9753d6SMatthew G. Knepley 
8460bd041c0cSMatthew G. Knepley PetscErrorCode DMCreateMassMatrix_Plex(DM dmCoarse, DM dmFine, Mat *mass)
8461bd041c0cSMatthew G. Knepley {
8462bd041c0cSMatthew G. Knepley   PetscSection   gsc, gsf;
8463bd041c0cSMatthew G. Knepley   PetscInt       m, n;
8464bd041c0cSMatthew G. Knepley   void          *ctx;
8465bd041c0cSMatthew G. Knepley   DM             cdm;
8466bd041c0cSMatthew G. Knepley   PetscBool      regular;
8467bd041c0cSMatthew G. Knepley   PetscErrorCode ierr;
8468bd041c0cSMatthew G. Knepley 
8469bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
84703e9753d6SMatthew G. Knepley   if (dmFine == dmCoarse) {
84713e9753d6SMatthew G. Knepley     DM       dmc;
84723e9753d6SMatthew G. Knepley     PetscDS  ds;
84733e9753d6SMatthew G. Knepley     Vec      u;
84743e9753d6SMatthew G. Knepley     IS       cellIS;
84756528b96dSMatthew G. Knepley     PetscHashFormKey key;
84763e9753d6SMatthew G. Knepley     PetscInt depth;
84773e9753d6SMatthew G. Knepley 
84783e9753d6SMatthew G. Knepley     ierr = DMClone(dmFine, &dmc);CHKERRQ(ierr);
84793e9753d6SMatthew G. Knepley     ierr = DMCopyDisc(dmFine, dmc);CHKERRQ(ierr);
84803e9753d6SMatthew G. Knepley     ierr = DMGetDS(dmc, &ds);CHKERRQ(ierr);
84813e9753d6SMatthew G. Knepley     ierr = PetscDSSetJacobian(ds, 0, 0, g0_identity_private, NULL, NULL, NULL);CHKERRQ(ierr);
84823e9753d6SMatthew G. Knepley     ierr = DMCreateMatrix(dmc, mass);CHKERRQ(ierr);
84833e9753d6SMatthew G. Knepley     ierr = DMGetGlobalVector(dmc, &u);CHKERRQ(ierr);
84843e9753d6SMatthew G. Knepley     ierr = DMPlexGetDepth(dmc, &depth);CHKERRQ(ierr);
84853e9753d6SMatthew G. Knepley     ierr = DMGetStratumIS(dmc, "depth", depth, &cellIS);CHKERRQ(ierr);
84863e9753d6SMatthew G. Knepley     ierr = MatZeroEntries(*mass);CHKERRQ(ierr);
84876528b96dSMatthew G. Knepley     key.label = NULL;
84886528b96dSMatthew G. Knepley     key.value = 0;
84896528b96dSMatthew G. Knepley     key.field = 0;
84906528b96dSMatthew G. Knepley     ierr = DMPlexComputeJacobian_Internal(dmc, key, cellIS, 0.0, 0.0, u, NULL, *mass, *mass, NULL);CHKERRQ(ierr);
84913e9753d6SMatthew G. Knepley     ierr = ISDestroy(&cellIS);CHKERRQ(ierr);
84923e9753d6SMatthew G. Knepley     ierr = DMRestoreGlobalVector(dmc, &u);CHKERRQ(ierr);
84933e9753d6SMatthew G. Knepley     ierr = DMDestroy(&dmc);CHKERRQ(ierr);
84943e9753d6SMatthew G. Knepley   } else {
8495e87a4003SBarry Smith     ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr);
8496bd041c0cSMatthew G. Knepley     ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr);
8497e87a4003SBarry Smith     ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr);
8498bd041c0cSMatthew G. Knepley     ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr);
8499bd041c0cSMatthew G. Knepley 
8500bd041c0cSMatthew G. Knepley     ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), mass);CHKERRQ(ierr);
8501bd041c0cSMatthew G. Knepley     ierr = MatSetSizes(*mass, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
8502bd041c0cSMatthew G. Knepley     ierr = MatSetType(*mass, dmCoarse->mattype);CHKERRQ(ierr);
8503bd041c0cSMatthew G. Knepley     ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr);
8504bd041c0cSMatthew G. Knepley 
8505bd041c0cSMatthew G. Knepley     ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr);
8506bd041c0cSMatthew G. Knepley     ierr = DMPlexGetRegularRefinement(dmFine, &regular);CHKERRQ(ierr);
8507bd041c0cSMatthew G. Knepley     if (regular && cdm == dmCoarse) {ierr = DMPlexComputeMassMatrixNested(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);}
8508bd041c0cSMatthew G. Knepley     else                            {ierr = DMPlexComputeMassMatrixGeneral(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);}
85093e9753d6SMatthew G. Knepley   }
8510bd041c0cSMatthew G. Knepley   ierr = MatViewFromOptions(*mass, NULL, "-mass_mat_view");CHKERRQ(ierr);
8511bd041c0cSMatthew G. Knepley   PetscFunctionReturn(0);
8512bd041c0cSMatthew G. Knepley }
8513bd041c0cSMatthew G. Knepley 
85140aef6b92SMatthew G. Knepley /*@
85150aef6b92SMatthew G. Knepley   DMPlexGetRegularRefinement - Get the flag indicating that this mesh was obtained by regular refinement from its coarse mesh
85160aef6b92SMatthew G. Knepley 
85170aef6b92SMatthew G. Knepley   Input Parameter:
85180aef6b92SMatthew G. Knepley . dm - The DMPlex object
85190aef6b92SMatthew G. Knepley 
85200aef6b92SMatthew G. Knepley   Output Parameter:
85210aef6b92SMatthew G. Knepley . regular - The flag
85220aef6b92SMatthew G. Knepley 
85230aef6b92SMatthew G. Knepley   Level: intermediate
85240aef6b92SMatthew G. Knepley 
85250aef6b92SMatthew G. Knepley .seealso: DMPlexSetRegularRefinement()
85260aef6b92SMatthew G. Knepley @*/
85270aef6b92SMatthew G. Knepley PetscErrorCode DMPlexGetRegularRefinement(DM dm, PetscBool *regular)
85280aef6b92SMatthew G. Knepley {
85290aef6b92SMatthew G. Knepley   PetscFunctionBegin;
85300aef6b92SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
85310aef6b92SMatthew G. Knepley   PetscValidPointer(regular, 2);
85320aef6b92SMatthew G. Knepley   *regular = ((DM_Plex *) dm->data)->regularRefinement;
85330aef6b92SMatthew G. Knepley   PetscFunctionReturn(0);
85340aef6b92SMatthew G. Knepley }
85350aef6b92SMatthew G. Knepley 
85360aef6b92SMatthew G. Knepley /*@
85370aef6b92SMatthew G. Knepley   DMPlexSetRegularRefinement - Set the flag indicating that this mesh was obtained by regular refinement from its coarse mesh
85380aef6b92SMatthew G. Knepley 
85390aef6b92SMatthew G. Knepley   Input Parameters:
85400aef6b92SMatthew G. Knepley + dm - The DMPlex object
85410aef6b92SMatthew G. Knepley - regular - The flag
85420aef6b92SMatthew G. Knepley 
85430aef6b92SMatthew G. Knepley   Level: intermediate
85440aef6b92SMatthew G. Knepley 
85450aef6b92SMatthew G. Knepley .seealso: DMPlexGetRegularRefinement()
85460aef6b92SMatthew G. Knepley @*/
85470aef6b92SMatthew G. Knepley PetscErrorCode DMPlexSetRegularRefinement(DM dm, PetscBool regular)
85480aef6b92SMatthew G. Knepley {
85490aef6b92SMatthew G. Knepley   PetscFunctionBegin;
85500aef6b92SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
85510aef6b92SMatthew G. Knepley   ((DM_Plex *) dm->data)->regularRefinement = regular;
85520aef6b92SMatthew G. Knepley   PetscFunctionReturn(0);
85530aef6b92SMatthew G. Knepley }
85540aef6b92SMatthew G. Knepley 
8555412e9a14SMatthew G. Knepley /*@
8556412e9a14SMatthew G. Knepley   DMPlexGetCellRefinerType - Get the strategy for refining a cell
8557412e9a14SMatthew G. Knepley 
8558412e9a14SMatthew G. Knepley   Input Parameter:
8559412e9a14SMatthew G. Knepley . dm - The DMPlex object
8560412e9a14SMatthew G. Knepley 
8561412e9a14SMatthew G. Knepley   Output Parameter:
8562412e9a14SMatthew G. Knepley . cr - The strategy number
8563412e9a14SMatthew G. Knepley 
8564412e9a14SMatthew G. Knepley   Level: intermediate
8565412e9a14SMatthew G. Knepley 
8566412e9a14SMatthew G. Knepley .seealso: DMPlexSetCellRefinerType(), DMPlexSetRegularRefinement()
8567412e9a14SMatthew G. Knepley @*/
8568412e9a14SMatthew G. Knepley PetscErrorCode DMPlexGetCellRefinerType(DM dm, DMPlexCellRefinerType *cr)
8569412e9a14SMatthew G. Knepley {
8570412e9a14SMatthew G. Knepley   PetscFunctionBegin;
8571412e9a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8572412e9a14SMatthew G. Knepley   PetscValidPointer(cr, 2);
8573412e9a14SMatthew G. Knepley   *cr = ((DM_Plex *) dm->data)->cellRefiner;
8574412e9a14SMatthew G. Knepley   PetscFunctionReturn(0);
8575412e9a14SMatthew G. Knepley }
8576412e9a14SMatthew G. Knepley 
8577412e9a14SMatthew G. Knepley /*@
8578412e9a14SMatthew G. Knepley   DMPlexSetCellRefinerType - Set the strategy for refining a cell
8579412e9a14SMatthew G. Knepley 
8580412e9a14SMatthew G. Knepley   Input Parameters:
8581412e9a14SMatthew G. Knepley + dm - The DMPlex object
8582412e9a14SMatthew G. Knepley - cr - The strategy number
8583412e9a14SMatthew G. Knepley 
8584412e9a14SMatthew G. Knepley   Level: intermediate
8585412e9a14SMatthew G. Knepley 
8586412e9a14SMatthew G. Knepley .seealso: DMPlexGetCellRefinerType(), DMPlexGetRegularRefinement()
8587412e9a14SMatthew G. Knepley @*/
8588412e9a14SMatthew G. Knepley PetscErrorCode DMPlexSetCellRefinerType(DM dm, DMPlexCellRefinerType cr)
8589412e9a14SMatthew G. Knepley {
8590412e9a14SMatthew G. Knepley   PetscFunctionBegin;
8591412e9a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8592412e9a14SMatthew G. Knepley   ((DM_Plex *) dm->data)->cellRefiner = cr;
8593412e9a14SMatthew G. Knepley   PetscFunctionReturn(0);
8594412e9a14SMatthew G. Knepley }
8595412e9a14SMatthew G. Knepley 
8596f7c74593SToby Isaac /* anchors */
8597a68b90caSToby Isaac /*@
8598f7c74593SToby Isaac   DMPlexGetAnchors - Get the layout of the anchor (point-to-point) constraints.  Typically, the user will not have to
8599f7c74593SToby Isaac   call DMPlexGetAnchors() directly: if there are anchors, then DMPlexGetAnchors() is called during DMGetConstraints().
8600a68b90caSToby Isaac 
8601e228b242SToby Isaac   not collective
8602a68b90caSToby Isaac 
8603a68b90caSToby Isaac   Input Parameters:
8604a68b90caSToby Isaac . dm - The DMPlex object
8605a68b90caSToby Isaac 
8606a68b90caSToby Isaac   Output Parameters:
8607a68b90caSToby Isaac + anchorSection - If not NULL, set to the section describing which points anchor the constrained points.
8608a68b90caSToby Isaac - anchorIS - If not NULL, set to the list of anchors indexed by anchorSection
8609a68b90caSToby Isaac 
8610a68b90caSToby Isaac 
8611a68b90caSToby Isaac   Level: intermediate
8612a68b90caSToby Isaac 
8613f7c74593SToby Isaac .seealso: DMPlexSetAnchors(), DMGetConstraints(), DMSetConstraints()
8614a68b90caSToby Isaac @*/
8615a17985deSToby Isaac PetscErrorCode DMPlexGetAnchors(DM dm, PetscSection *anchorSection, IS *anchorIS)
8616a68b90caSToby Isaac {
8617a68b90caSToby Isaac   DM_Plex *plex = (DM_Plex *)dm->data;
861841e6d900SToby Isaac   PetscErrorCode ierr;
8619a68b90caSToby Isaac 
8620a68b90caSToby Isaac   PetscFunctionBegin;
8621a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
862241e6d900SToby Isaac   if (!plex->anchorSection && !plex->anchorIS && plex->createanchors) {ierr = (*plex->createanchors)(dm);CHKERRQ(ierr);}
8623a68b90caSToby Isaac   if (anchorSection) *anchorSection = plex->anchorSection;
8624a68b90caSToby Isaac   if (anchorIS) *anchorIS = plex->anchorIS;
8625a68b90caSToby Isaac   PetscFunctionReturn(0);
8626a68b90caSToby Isaac }
8627a68b90caSToby Isaac 
8628a68b90caSToby Isaac /*@
8629f7c74593SToby Isaac   DMPlexSetAnchors - Set the layout of the local anchor (point-to-point) constraints.  Unlike boundary conditions,
8630f7c74593SToby Isaac   when a point's degrees of freedom in a section are constrained to an outside value, the anchor constraints set a
8631a68b90caSToby Isaac   point's degrees of freedom to be a linear combination of other points' degrees of freedom.
8632a68b90caSToby Isaac 
8633a17985deSToby Isaac   After specifying the layout of constraints with DMPlexSetAnchors(), one specifies the constraints by calling
8634f7c74593SToby Isaac   DMGetConstraints() and filling in the entries in the constraint matrix.
8635a68b90caSToby Isaac 
8636e228b242SToby Isaac   collective on dm
8637a68b90caSToby Isaac 
8638a68b90caSToby Isaac   Input Parameters:
8639a68b90caSToby Isaac + dm - The DMPlex object
8640e228b242SToby Isaac . anchorSection - The section that describes the mapping from constrained points to the anchor points listed in anchorIS.  Must have a local communicator (PETSC_COMM_SELF or derivative).
8641e228b242SToby Isaac - anchorIS - The list of all anchor points.  Must have a local communicator (PETSC_COMM_SELF or derivative).
8642a68b90caSToby Isaac 
8643a68b90caSToby Isaac   The reference counts of anchorSection and anchorIS are incremented.
8644a68b90caSToby Isaac 
8645a68b90caSToby Isaac   Level: intermediate
8646a68b90caSToby Isaac 
8647f7c74593SToby Isaac .seealso: DMPlexGetAnchors(), DMGetConstraints(), DMSetConstraints()
8648a68b90caSToby Isaac @*/
8649a17985deSToby Isaac PetscErrorCode DMPlexSetAnchors(DM dm, PetscSection anchorSection, IS anchorIS)
8650a68b90caSToby Isaac {
8651a68b90caSToby Isaac   DM_Plex        *plex = (DM_Plex *)dm->data;
8652e228b242SToby Isaac   PetscMPIInt    result;
8653a68b90caSToby Isaac   PetscErrorCode ierr;
8654a68b90caSToby Isaac 
8655a68b90caSToby Isaac   PetscFunctionBegin;
8656a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8657e228b242SToby Isaac   if (anchorSection) {
8658e228b242SToby Isaac     PetscValidHeaderSpecific(anchorSection,PETSC_SECTION_CLASSID,2);
8659ffc4695bSBarry Smith     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorSection),&result);CHKERRMPI(ierr);
8660f6a3d38cSToby Isaac     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor section must have local communicator");
8661e228b242SToby Isaac   }
8662e228b242SToby Isaac   if (anchorIS) {
8663e228b242SToby Isaac     PetscValidHeaderSpecific(anchorIS,IS_CLASSID,3);
8664ffc4695bSBarry Smith     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorIS),&result);CHKERRMPI(ierr);
8665f6a3d38cSToby Isaac     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor IS must have local communicator");
8666e228b242SToby Isaac   }
8667a68b90caSToby Isaac 
8668a68b90caSToby Isaac   ierr = PetscObjectReference((PetscObject)anchorSection);CHKERRQ(ierr);
8669a68b90caSToby Isaac   ierr = PetscSectionDestroy(&plex->anchorSection);CHKERRQ(ierr);
8670a68b90caSToby Isaac   plex->anchorSection = anchorSection;
8671a68b90caSToby Isaac 
8672a68b90caSToby Isaac   ierr = PetscObjectReference((PetscObject)anchorIS);CHKERRQ(ierr);
8673a68b90caSToby Isaac   ierr = ISDestroy(&plex->anchorIS);CHKERRQ(ierr);
8674a68b90caSToby Isaac   plex->anchorIS = anchorIS;
8675a68b90caSToby Isaac 
8676cf9c20a2SJed Brown   if (PetscUnlikelyDebug(anchorIS && anchorSection)) {
8677a68b90caSToby Isaac     PetscInt size, a, pStart, pEnd;
8678a68b90caSToby Isaac     const PetscInt *anchors;
8679a68b90caSToby Isaac 
8680a68b90caSToby Isaac     ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr);
8681a68b90caSToby Isaac     ierr = ISGetLocalSize(anchorIS,&size);CHKERRQ(ierr);
8682a68b90caSToby Isaac     ierr = ISGetIndices(anchorIS,&anchors);CHKERRQ(ierr);
8683a68b90caSToby Isaac     for (a = 0; a < size; a++) {
8684a68b90caSToby Isaac       PetscInt p;
8685a68b90caSToby Isaac 
8686a68b90caSToby Isaac       p = anchors[a];
8687a68b90caSToby Isaac       if (p >= pStart && p < pEnd) {
8688a68b90caSToby Isaac         PetscInt dof;
8689a68b90caSToby Isaac 
8690a68b90caSToby Isaac         ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr);
8691a68b90caSToby Isaac         if (dof) {
8692a68b90caSToby Isaac           PetscErrorCode ierr2;
8693a68b90caSToby Isaac 
8694a68b90caSToby Isaac           ierr2 = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr2);
86958ccfff9cSToby Isaac           SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"Point %D cannot be constrained and an anchor",p);
8696a68b90caSToby Isaac         }
8697a68b90caSToby Isaac       }
8698a68b90caSToby Isaac     }
8699a68b90caSToby Isaac     ierr = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr);
8700a68b90caSToby Isaac   }
8701f7c74593SToby Isaac   /* reset the generic constraints */
8702f7c74593SToby Isaac   ierr = DMSetDefaultConstraints(dm,NULL,NULL);CHKERRQ(ierr);
8703a68b90caSToby Isaac   PetscFunctionReturn(0);
8704a68b90caSToby Isaac }
8705a68b90caSToby Isaac 
8706f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintSection_Anchors(DM dm, PetscSection section, PetscSection *cSec)
8707a68b90caSToby Isaac {
8708f7c74593SToby Isaac   PetscSection anchorSection;
87096995de1eSToby Isaac   PetscInt pStart, pEnd, sStart, sEnd, p, dof, numFields, f;
8710a68b90caSToby Isaac   PetscErrorCode ierr;
8711a68b90caSToby Isaac 
8712a68b90caSToby Isaac   PetscFunctionBegin;
8713a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8714a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr);
8715e228b242SToby Isaac   ierr = PetscSectionCreate(PETSC_COMM_SELF,cSec);CHKERRQ(ierr);
8716a68b90caSToby Isaac   ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr);
87176995de1eSToby Isaac   if (numFields) {
8718719ab38cSToby Isaac     PetscInt f;
8719a68b90caSToby Isaac     ierr = PetscSectionSetNumFields(*cSec,numFields);CHKERRQ(ierr);
8720719ab38cSToby Isaac 
8721719ab38cSToby Isaac     for (f = 0; f < numFields; f++) {
8722719ab38cSToby Isaac       PetscInt numComp;
8723719ab38cSToby Isaac 
8724719ab38cSToby Isaac       ierr = PetscSectionGetFieldComponents(section,f,&numComp);CHKERRQ(ierr);
8725719ab38cSToby Isaac       ierr = PetscSectionSetFieldComponents(*cSec,f,numComp);CHKERRQ(ierr);
8726719ab38cSToby Isaac     }
87276995de1eSToby Isaac   }
8728a68b90caSToby Isaac   ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr);
87296995de1eSToby Isaac   ierr = PetscSectionGetChart(section,&sStart,&sEnd);CHKERRQ(ierr);
87306995de1eSToby Isaac   pStart = PetscMax(pStart,sStart);
87316995de1eSToby Isaac   pEnd   = PetscMin(pEnd,sEnd);
87326995de1eSToby Isaac   pEnd   = PetscMax(pStart,pEnd);
8733a68b90caSToby Isaac   ierr = PetscSectionSetChart(*cSec,pStart,pEnd);CHKERRQ(ierr);
8734a68b90caSToby Isaac   for (p = pStart; p < pEnd; p++) {
8735a68b90caSToby Isaac     ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr);
8736a68b90caSToby Isaac     if (dof) {
8737a68b90caSToby Isaac       ierr = PetscSectionGetDof(section,p,&dof);CHKERRQ(ierr);
8738a68b90caSToby Isaac       ierr = PetscSectionSetDof(*cSec,p,dof);CHKERRQ(ierr);
8739a68b90caSToby Isaac       for (f = 0; f < numFields; f++) {
8740a68b90caSToby Isaac         ierr = PetscSectionGetFieldDof(section,p,f,&dof);CHKERRQ(ierr);
8741a68b90caSToby Isaac         ierr = PetscSectionSetFieldDof(*cSec,p,f,dof);CHKERRQ(ierr);
8742a68b90caSToby Isaac       }
8743a68b90caSToby Isaac     }
8744a68b90caSToby Isaac   }
8745a68b90caSToby Isaac   ierr = PetscSectionSetUp(*cSec);CHKERRQ(ierr);
8746ae65431dSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *cSec, "Constraint Section");CHKERRQ(ierr);
8747a68b90caSToby Isaac   PetscFunctionReturn(0);
8748a68b90caSToby Isaac }
8749a68b90caSToby Isaac 
8750f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintMatrix_Anchors(DM dm, PetscSection section, PetscSection cSec, Mat *cMat)
8751a68b90caSToby Isaac {
8752f7c74593SToby Isaac   PetscSection   aSec;
8753ae65431dSMatthew G. Knepley   PetscInt       pStart, pEnd, p, sStart, sEnd, dof, aDof, aOff, off, nnz, annz, m, n, q, a, offset, *i, *j;
87540ac89760SToby Isaac   const PetscInt *anchors;
87550ac89760SToby Isaac   PetscInt       numFields, f;
875666ad2231SToby Isaac   IS             aIS;
87570ac89760SToby Isaac   PetscErrorCode ierr;
8758e19f7ee6SMark Adams   MatType        mtype;
8759e19f7ee6SMark Adams   PetscBool      iscuda,iskokkos;
87600ac89760SToby Isaac 
87610ac89760SToby Isaac   PetscFunctionBegin;
87620ac89760SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
87630ac89760SToby Isaac   ierr = PetscSectionGetStorageSize(cSec, &m);CHKERRQ(ierr);
87640ac89760SToby Isaac   ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr);
87650ac89760SToby Isaac   ierr = MatCreate(PETSC_COMM_SELF,cMat);CHKERRQ(ierr);
87660ac89760SToby Isaac   ierr = MatSetSizes(*cMat,m,n,m,n);CHKERRQ(ierr);
8767e19f7ee6SMark Adams   ierr = PetscStrcmp(dm->mattype,MATSEQAIJCUSPARSE,&iscuda);CHKERRQ(ierr);
8768e19f7ee6SMark Adams   if (!iscuda) { ierr = PetscStrcmp(dm->mattype,MATMPIAIJCUSPARSE,&iscuda);CHKERRQ(ierr); }
8769e19f7ee6SMark Adams   ierr = PetscStrcmp(dm->mattype,MATSEQAIJKOKKOS,&iskokkos);CHKERRQ(ierr);
8770e19f7ee6SMark Adams   if (!iskokkos) { ierr = PetscStrcmp(dm->mattype,MATMPIAIJKOKKOS,&iskokkos);CHKERRQ(ierr); }
8771e19f7ee6SMark Adams   if (iscuda) mtype = MATSEQAIJCUSPARSE;
8772e19f7ee6SMark Adams   else if (iskokkos) mtype = MATSEQAIJKOKKOS;
8773e19f7ee6SMark Adams   else mtype = MATSEQAIJ;
8774e19f7ee6SMark Adams   ierr = MatSetType(*cMat,mtype);CHKERRQ(ierr);
8775a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr);
877666ad2231SToby Isaac   ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr);
87776995de1eSToby Isaac   /* cSec will be a subset of aSec and section */
87786995de1eSToby Isaac   ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
8779ae65431dSMatthew G. Knepley   ierr = PetscSectionGetChart(section,&sStart,&sEnd);CHKERRQ(ierr);
87800ac89760SToby Isaac   ierr = PetscMalloc1(m+1,&i);CHKERRQ(ierr);
87810ac89760SToby Isaac   i[0] = 0;
87820ac89760SToby Isaac   ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr);
87830ac89760SToby Isaac   for (p = pStart; p < pEnd; p++) {
8784f19733c5SToby Isaac     PetscInt rDof, rOff, r;
8785f19733c5SToby Isaac 
8786f19733c5SToby Isaac     ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
8787f19733c5SToby Isaac     if (!rDof) continue;
8788f19733c5SToby Isaac     ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
87890ac89760SToby Isaac     if (numFields) {
87900ac89760SToby Isaac       for (f = 0; f < numFields; f++) {
87910ac89760SToby Isaac         annz = 0;
8792f19733c5SToby Isaac         for (r = 0; r < rDof; r++) {
8793f19733c5SToby Isaac           a = anchors[rOff + r];
8794ae65431dSMatthew G. Knepley           if (a < sStart || a >= sEnd) continue;
87950ac89760SToby Isaac           ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr);
87960ac89760SToby Isaac           annz += aDof;
87970ac89760SToby Isaac         }
87980ac89760SToby Isaac         ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr);
87990ac89760SToby Isaac         ierr = PetscSectionGetFieldOffset(cSec,p,f,&off);CHKERRQ(ierr);
88000ac89760SToby Isaac         for (q = 0; q < dof; q++) {
88010ac89760SToby Isaac           i[off + q + 1] = i[off + q] + annz;
88020ac89760SToby Isaac         }
88030ac89760SToby Isaac       }
88040ac89760SToby Isaac     }
88050ac89760SToby Isaac     else {
88060ac89760SToby Isaac       annz = 0;
8807326b8f31SMatthew G. Knepley       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
88080ac89760SToby Isaac       for (q = 0; q < dof; q++) {
8809ae65431dSMatthew G. Knepley         a = anchors[rOff + q];
8810ae65431dSMatthew G. Knepley         if (a < sStart || a >= sEnd) continue;
88110ac89760SToby Isaac         ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
88120ac89760SToby Isaac         annz += aDof;
88130ac89760SToby Isaac       }
88140ac89760SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
88150ac89760SToby Isaac       ierr = PetscSectionGetOffset(cSec,p,&off);CHKERRQ(ierr);
88160ac89760SToby Isaac       for (q = 0; q < dof; q++) {
88170ac89760SToby Isaac         i[off + q + 1] = i[off + q] + annz;
88180ac89760SToby Isaac       }
88190ac89760SToby Isaac     }
88200ac89760SToby Isaac   }
88210ac89760SToby Isaac   nnz = i[m];
88220ac89760SToby Isaac   ierr = PetscMalloc1(nnz,&j);CHKERRQ(ierr);
88230ac89760SToby Isaac   offset = 0;
88240ac89760SToby Isaac   for (p = pStart; p < pEnd; p++) {
88250ac89760SToby Isaac     if (numFields) {
88260ac89760SToby Isaac       for (f = 0; f < numFields; f++) {
88270ac89760SToby Isaac         ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr);
88280ac89760SToby Isaac         for (q = 0; q < dof; q++) {
88290ac89760SToby Isaac           PetscInt rDof, rOff, r;
88300ac89760SToby Isaac           ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
88310ac89760SToby Isaac           ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
88320ac89760SToby Isaac           for (r = 0; r < rDof; r++) {
88330ac89760SToby Isaac             PetscInt s;
88340ac89760SToby Isaac 
88350ac89760SToby Isaac             a = anchors[rOff + r];
8836ae65431dSMatthew G. Knepley             if (a < sStart || a >= sEnd) continue;
88370ac89760SToby Isaac             ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr);
88380ac89760SToby Isaac             ierr = PetscSectionGetFieldOffset(section,a,f,&aOff);CHKERRQ(ierr);
88390ac89760SToby Isaac             for (s = 0; s < aDof; s++) {
88400ac89760SToby Isaac               j[offset++] = aOff + s;
88410ac89760SToby Isaac             }
88420ac89760SToby Isaac           }
88430ac89760SToby Isaac         }
88440ac89760SToby Isaac       }
88450ac89760SToby Isaac     }
88460ac89760SToby Isaac     else {
88470ac89760SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
88480ac89760SToby Isaac       for (q = 0; q < dof; q++) {
88490ac89760SToby Isaac         PetscInt rDof, rOff, r;
88500ac89760SToby Isaac         ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
88510ac89760SToby Isaac         ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
88520ac89760SToby Isaac         for (r = 0; r < rDof; r++) {
88530ac89760SToby Isaac           PetscInt s;
88540ac89760SToby Isaac 
88550ac89760SToby Isaac           a = anchors[rOff + r];
8856ae65431dSMatthew G. Knepley           if (a < sStart || a >= sEnd) continue;
88570ac89760SToby Isaac           ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
88580ac89760SToby Isaac           ierr = PetscSectionGetOffset(section,a,&aOff);CHKERRQ(ierr);
88590ac89760SToby Isaac           for (s = 0; s < aDof; s++) {
88600ac89760SToby Isaac             j[offset++] = aOff + s;
88610ac89760SToby Isaac           }
88620ac89760SToby Isaac         }
88630ac89760SToby Isaac       }
88640ac89760SToby Isaac     }
88650ac89760SToby Isaac   }
88660ac89760SToby Isaac   ierr = MatSeqAIJSetPreallocationCSR(*cMat,i,j,NULL);CHKERRQ(ierr);
886725570a81SToby Isaac   ierr = PetscFree(i);CHKERRQ(ierr);
886825570a81SToby Isaac   ierr = PetscFree(j);CHKERRQ(ierr);
886966ad2231SToby Isaac   ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);
88700ac89760SToby Isaac   PetscFunctionReturn(0);
88710ac89760SToby Isaac }
88720ac89760SToby Isaac 
887366ad2231SToby Isaac PetscErrorCode DMCreateDefaultConstraints_Plex(DM dm)
887466ad2231SToby Isaac {
8875f7c74593SToby Isaac   DM_Plex        *plex = (DM_Plex *)dm->data;
8876f7c74593SToby Isaac   PetscSection   anchorSection, section, cSec;
887766ad2231SToby Isaac   Mat            cMat;
887866ad2231SToby Isaac   PetscErrorCode ierr;
887966ad2231SToby Isaac 
888066ad2231SToby Isaac   PetscFunctionBegin;
888166ad2231SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8882a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr);
888366ad2231SToby Isaac   if (anchorSection) {
888444a7f3ddSMatthew G. Knepley     PetscInt Nf;
8885e228b242SToby Isaac 
888692fd8e1eSJed Brown     ierr = DMGetLocalSection(dm,&section);CHKERRQ(ierr);
8887f7c74593SToby Isaac     ierr = DMPlexCreateConstraintSection_Anchors(dm,section,&cSec);CHKERRQ(ierr);
8888f7c74593SToby Isaac     ierr = DMPlexCreateConstraintMatrix_Anchors(dm,section,cSec,&cMat);CHKERRQ(ierr);
888944a7f3ddSMatthew G. Knepley     ierr = DMGetNumFields(dm,&Nf);CHKERRQ(ierr);
889044a7f3ddSMatthew G. Knepley     if (Nf && plex->computeanchormatrix) {ierr = (*plex->computeanchormatrix)(dm,section,cSec,cMat);CHKERRQ(ierr);}
889166ad2231SToby Isaac     ierr = DMSetDefaultConstraints(dm,cSec,cMat);CHKERRQ(ierr);
889266ad2231SToby Isaac     ierr = PetscSectionDestroy(&cSec);CHKERRQ(ierr);
889366ad2231SToby Isaac     ierr = MatDestroy(&cMat);CHKERRQ(ierr);
889466ad2231SToby Isaac   }
889566ad2231SToby Isaac   PetscFunctionReturn(0);
889666ad2231SToby Isaac }
8897a93c429eSMatthew G. Knepley 
8898a93c429eSMatthew G. Knepley PetscErrorCode DMCreateSubDomainDM_Plex(DM dm, DMLabel label, PetscInt value, IS *is, DM *subdm)
8899a93c429eSMatthew G. Knepley {
8900a93c429eSMatthew G. Knepley   IS             subis;
8901a93c429eSMatthew G. Knepley   PetscSection   section, subsection;
8902a93c429eSMatthew G. Knepley   PetscErrorCode ierr;
8903a93c429eSMatthew G. Knepley 
8904a93c429eSMatthew G. Knepley   PetscFunctionBegin;
890592fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
8906a93c429eSMatthew G. Knepley   if (!section) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set default section for DM before splitting subdomain");
8907a93c429eSMatthew G. Knepley   if (!subdm)   SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set output subDM for splitting subdomain");
8908a93c429eSMatthew G. Knepley   /* Create subdomain */
8909a93c429eSMatthew G. Knepley   ierr = DMPlexFilter(dm, label, value, subdm);CHKERRQ(ierr);
8910a93c429eSMatthew G. Knepley   /* Create submodel */
891197d8846cSMatthew Knepley   ierr = DMPlexGetSubpointIS(*subdm, &subis);CHKERRQ(ierr);
8912a93c429eSMatthew G. Knepley   ierr = PetscSectionCreateSubmeshSection(section, subis, &subsection);CHKERRQ(ierr);
891392fd8e1eSJed Brown   ierr = DMSetLocalSection(*subdm, subsection);CHKERRQ(ierr);
8914a93c429eSMatthew G. Knepley   ierr = PetscSectionDestroy(&subsection);CHKERRQ(ierr);
8915e5e52638SMatthew G. Knepley   ierr = DMCopyDisc(dm, *subdm);CHKERRQ(ierr);
8916a93c429eSMatthew G. Knepley   /* Create map from submodel to global model */
8917a93c429eSMatthew G. Knepley   if (is) {
8918a93c429eSMatthew G. Knepley     PetscSection    sectionGlobal, subsectionGlobal;
8919a93c429eSMatthew G. Knepley     IS              spIS;
8920a93c429eSMatthew G. Knepley     const PetscInt *spmap;
8921a93c429eSMatthew G. Knepley     PetscInt       *subIndices;
8922a93c429eSMatthew G. Knepley     PetscInt        subSize = 0, subOff = 0, pStart, pEnd, p;
8923a93c429eSMatthew G. Knepley     PetscInt        Nf, f, bs = -1, bsLocal[2], bsMinMax[2];
8924a93c429eSMatthew G. Knepley 
892597d8846cSMatthew Knepley     ierr = DMPlexGetSubpointIS(*subdm, &spIS);CHKERRQ(ierr);
8926a93c429eSMatthew G. Knepley     ierr = ISGetIndices(spIS, &spmap);CHKERRQ(ierr);
8927a93c429eSMatthew G. Knepley     ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
89286f0eb057SJed Brown     ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
89296f0eb057SJed Brown     ierr = DMGetGlobalSection(*subdm, &subsectionGlobal);CHKERRQ(ierr);
8930a93c429eSMatthew G. Knepley     ierr = PetscSectionGetChart(subsection, &pStart, &pEnd);CHKERRQ(ierr);
8931a93c429eSMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
8932a93c429eSMatthew G. Knepley       PetscInt gdof, pSubSize  = 0;
8933a93c429eSMatthew G. Knepley 
8934a93c429eSMatthew G. Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
8935a93c429eSMatthew G. Knepley       if (gdof > 0) {
8936a93c429eSMatthew G. Knepley         for (f = 0; f < Nf; ++f) {
8937a93c429eSMatthew G. Knepley           PetscInt fdof, fcdof;
8938a93c429eSMatthew G. Knepley 
8939a93c429eSMatthew G. Knepley           ierr     = PetscSectionGetFieldDof(subsection, p, f, &fdof);CHKERRQ(ierr);
8940a93c429eSMatthew G. Knepley           ierr     = PetscSectionGetFieldConstraintDof(subsection, p, f, &fcdof);CHKERRQ(ierr);
8941a93c429eSMatthew G. Knepley           pSubSize += fdof-fcdof;
8942a93c429eSMatthew G. Knepley         }
8943a93c429eSMatthew G. Knepley         subSize += pSubSize;
8944a93c429eSMatthew G. Knepley         if (pSubSize) {
8945a93c429eSMatthew G. Knepley           if (bs < 0) {
8946a93c429eSMatthew G. Knepley             bs = pSubSize;
8947a93c429eSMatthew G. Knepley           } else if (bs != pSubSize) {
8948a93c429eSMatthew G. Knepley             /* Layout does not admit a pointwise block size */
8949a93c429eSMatthew G. Knepley             bs = 1;
8950a93c429eSMatthew G. Knepley           }
8951a93c429eSMatthew G. Knepley         }
8952a93c429eSMatthew G. Knepley       }
8953a93c429eSMatthew G. Knepley     }
8954a93c429eSMatthew G. Knepley     /* Must have same blocksize on all procs (some might have no points) */
8955a93c429eSMatthew G. Knepley     bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
8956a93c429eSMatthew G. Knepley     ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
8957a93c429eSMatthew G. Knepley     if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
8958a93c429eSMatthew G. Knepley     else                            {bs = bsMinMax[0];}
8959a93c429eSMatthew G. Knepley     ierr = PetscMalloc1(subSize, &subIndices);CHKERRQ(ierr);
8960a93c429eSMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
8961a93c429eSMatthew G. Knepley       PetscInt gdof, goff;
8962a93c429eSMatthew G. Knepley 
8963a93c429eSMatthew G. Knepley       ierr = PetscSectionGetDof(subsectionGlobal, p, &gdof);CHKERRQ(ierr);
8964a93c429eSMatthew G. Knepley       if (gdof > 0) {
8965a93c429eSMatthew G. Knepley         const PetscInt point = spmap[p];
8966a93c429eSMatthew G. Knepley 
8967a93c429eSMatthew G. Knepley         ierr = PetscSectionGetOffset(sectionGlobal, point, &goff);CHKERRQ(ierr);
8968a93c429eSMatthew G. Knepley         for (f = 0; f < Nf; ++f) {
8969a93c429eSMatthew G. Knepley           PetscInt fdof, fcdof, fc, f2, poff = 0;
8970a93c429eSMatthew G. Knepley 
8971a93c429eSMatthew G. Knepley           /* Can get rid of this loop by storing field information in the global section */
8972a93c429eSMatthew G. Knepley           for (f2 = 0; f2 < f; ++f2) {
8973a93c429eSMatthew G. Knepley             ierr  = PetscSectionGetFieldDof(section, p, f2, &fdof);CHKERRQ(ierr);
8974a93c429eSMatthew G. Knepley             ierr  = PetscSectionGetFieldConstraintDof(section, p, f2, &fcdof);CHKERRQ(ierr);
8975a93c429eSMatthew G. Knepley             poff += fdof-fcdof;
8976a93c429eSMatthew G. Knepley           }
8977a93c429eSMatthew G. Knepley           ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
8978a93c429eSMatthew G. Knepley           ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
8979a93c429eSMatthew G. Knepley           for (fc = 0; fc < fdof-fcdof; ++fc, ++subOff) {
8980a93c429eSMatthew G. Knepley             subIndices[subOff] = goff+poff+fc;
8981a93c429eSMatthew G. Knepley           }
8982a93c429eSMatthew G. Knepley         }
8983a93c429eSMatthew G. Knepley       }
8984a93c429eSMatthew G. Knepley     }
8985a93c429eSMatthew G. Knepley     ierr = ISRestoreIndices(spIS, &spmap);CHKERRQ(ierr);
8986a93c429eSMatthew G. Knepley     ierr = ISCreateGeneral(PetscObjectComm((PetscObject)dm), subSize, subIndices, PETSC_OWN_POINTER, is);CHKERRQ(ierr);
8987a93c429eSMatthew G. Knepley     if (bs > 1) {
8988a93c429eSMatthew G. Knepley       /* We need to check that the block size does not come from non-contiguous fields */
8989a93c429eSMatthew G. Knepley       PetscInt i, j, set = 1;
8990a93c429eSMatthew G. Knepley       for (i = 0; i < subSize; i += bs) {
8991a93c429eSMatthew G. Knepley         for (j = 0; j < bs; ++j) {
8992a93c429eSMatthew G. Knepley           if (subIndices[i+j] != subIndices[i]+j) {set = 0; break;}
8993a93c429eSMatthew G. Knepley         }
8994a93c429eSMatthew G. Knepley       }
8995a93c429eSMatthew G. Knepley       if (set) {ierr = ISSetBlockSize(*is, bs);CHKERRQ(ierr);}
8996a93c429eSMatthew G. Knepley     }
8997a93c429eSMatthew G. Knepley     /* Attach nullspace */
8998a93c429eSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
8999a93c429eSMatthew G. Knepley       (*subdm)->nullspaceConstructors[f] = dm->nullspaceConstructors[f];
9000a93c429eSMatthew G. Knepley       if ((*subdm)->nullspaceConstructors[f]) break;
9001a93c429eSMatthew G. Knepley     }
9002a93c429eSMatthew G. Knepley     if (f < Nf) {
9003a93c429eSMatthew G. Knepley       MatNullSpace nullSpace;
90048cda7954SMatthew G. Knepley       ierr = (*(*subdm)->nullspaceConstructors[f])(*subdm, f, f, &nullSpace);CHKERRQ(ierr);
90056823f3c5SBlaise Bourdin 
9006a93c429eSMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) *is, "nullspace", (PetscObject) nullSpace);CHKERRQ(ierr);
9007a93c429eSMatthew G. Knepley       ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
9008a93c429eSMatthew G. Knepley     }
9009a93c429eSMatthew G. Knepley   }
9010a93c429eSMatthew G. Knepley   PetscFunctionReturn(0);
9011a93c429eSMatthew G. Knepley }
9012c0f0dcc3SMatthew G. Knepley 
9013c0f0dcc3SMatthew G. Knepley /*@
9014c0f0dcc3SMatthew G. Knepley   DMPlexMonitorThroughput - Report the cell throughput of FE integration
9015c0f0dcc3SMatthew G. Knepley 
9016c0f0dcc3SMatthew G. Knepley   Input Parameter:
9017c0f0dcc3SMatthew G. Knepley - dm - The DM
9018c0f0dcc3SMatthew G. Knepley 
9019c0f0dcc3SMatthew G. Knepley   Level: developer
9020c0f0dcc3SMatthew G. Knepley 
9021c0f0dcc3SMatthew G. Knepley   Options Database Keys:
9022c0f0dcc3SMatthew G. Knepley . -dm_plex_monitor_throughput - Activate the monitor
9023c0f0dcc3SMatthew G. Knepley 
9024c0f0dcc3SMatthew G. Knepley .seealso: DMSetFromOptions(), DMPlexCreate()
9025c0f0dcc3SMatthew G. Knepley @*/
9026c0f0dcc3SMatthew G. Knepley PetscErrorCode DMPlexMonitorThroughput(DM dm, void *dummy)
9027c0f0dcc3SMatthew G. Knepley {
9028e5ed2c37SJose E. Roman #if defined(PETSC_USE_LOG)
9029c0f0dcc3SMatthew G. Knepley   PetscStageLog      stageLog;
9030c0f0dcc3SMatthew G. Knepley   PetscLogEvent      event;
9031c0f0dcc3SMatthew G. Knepley   PetscLogStage      stage;
9032c0f0dcc3SMatthew G. Knepley   PetscEventPerfInfo eventInfo;
9033c0f0dcc3SMatthew G. Knepley   PetscReal          cellRate, flopRate;
9034c0f0dcc3SMatthew G. Knepley   PetscInt           cStart, cEnd, Nf, N;
9035c0f0dcc3SMatthew G. Knepley   const char        *name;
9036c0f0dcc3SMatthew G. Knepley   PetscErrorCode     ierr;
9037e5ed2c37SJose E. Roman #endif
9038c0f0dcc3SMatthew G. Knepley 
9039c0f0dcc3SMatthew G. Knepley   PetscFunctionBegin;
9040c0f0dcc3SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
9041c0f0dcc3SMatthew G. Knepley #if defined(PETSC_USE_LOG)
9042c0f0dcc3SMatthew G. Knepley   ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
9043c0f0dcc3SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
9044c0f0dcc3SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
9045c0f0dcc3SMatthew G. Knepley   ierr = PetscLogGetStageLog(&stageLog);CHKERRQ(ierr);
9046c0f0dcc3SMatthew G. Knepley   ierr = PetscStageLogGetCurrent(stageLog, &stage);CHKERRQ(ierr);
9047c0f0dcc3SMatthew G. Knepley   ierr = PetscLogEventGetId("DMPlexResidualFE", &event);CHKERRQ(ierr);
9048c0f0dcc3SMatthew G. Knepley   ierr = PetscLogEventGetPerfInfo(stage, event, &eventInfo);CHKERRQ(ierr);
9049c0f0dcc3SMatthew G. Knepley   N        = (cEnd - cStart)*Nf*eventInfo.count;
9050c0f0dcc3SMatthew G. Knepley   flopRate = eventInfo.flops/eventInfo.time;
9051c0f0dcc3SMatthew G. Knepley   cellRate = N/eventInfo.time;
9052fae64647SBarry Smith   ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), "DM (%s) FE Residual Integration: %D integrals %D reps\n  Cell rate: %.2g/s flop rate: %.2g MF/s\n", name ? name : "unknown", N, eventInfo.count, (double) cellRate, (double) (flopRate/1.e6));CHKERRQ(ierr);
9053c0f0dcc3SMatthew G. Knepley #else
9054c0f0dcc3SMatthew G. Knepley   SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Plex Throughput Monitor is not supported if logging is turned off. Reconfigure using --with-log.");
9055c0f0dcc3SMatthew G. Knepley #endif
9056c0f0dcc3SMatthew G. Knepley   PetscFunctionReturn(0);
9057c0f0dcc3SMatthew G. Knepley }
9058