xref: /petsc/src/dm/impls/plex/plex.c (revision d67d17b1923c245ffe5f13a0f62c0851bfcf9b7c)
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 */
1167eb269bSLisandro Dalcin 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_Preallocate, DMPLEX_ResidualFEM, DMPLEX_JacobianFEM, DMPLEX_InterpolatorFEM, DMPLEX_InjectorFEM, DMPLEX_IntegralFEM, DMPLEX_CreateGmsh;
12552f7358SJed Brown 
135a576424SJed Brown PETSC_EXTERN PetscErrorCode VecView_MPI(Vec, PetscViewer);
14552f7358SJed Brown 
15e5337592SStefano Zampini /*@
16e5337592SStefano Zampini   DMPlexRefineSimplexToTensor - Uniformly refines simplicial cells into tensor product cells.
17e5337592SStefano Zampini   3 quadrilaterals per triangle in 2D and 4 hexahedra per tetrahedron in 3D.
18e5337592SStefano Zampini 
19e5337592SStefano Zampini   Collective
20e5337592SStefano Zampini 
21e5337592SStefano Zampini   Input Parameters:
22e5337592SStefano Zampini . dm - The DMPlex object
23e5337592SStefano Zampini 
24e5337592SStefano Zampini   Output Parameters:
25e5337592SStefano Zampini . dmRefined - The refined DMPlex object
26e5337592SStefano Zampini 
27e5337592SStefano Zampini   Note: Returns NULL if the mesh is already a tensor product mesh.
28e5337592SStefano Zampini 
29e5337592SStefano Zampini   Level: intermediate
30e5337592SStefano Zampini 
31e5337592SStefano Zampini .seealso: DMPlexCreate(), DMPlexSetRefinementUniform()
32e5337592SStefano Zampini @*/
33e5337592SStefano Zampini PetscErrorCode DMPlexRefineSimplexToTensor(DM dm, DM *dmRefined)
34e5337592SStefano Zampini {
35e5337592SStefano Zampini   PetscInt         dim, cMax, fMax, cStart, cEnd, coneSize;
36e5337592SStefano Zampini   CellRefiner      cellRefiner;
37e5337592SStefano Zampini   PetscBool        lop, allnoop, localized;
38e5337592SStefano Zampini   PetscErrorCode   ierr;
39e5337592SStefano Zampini 
40e5337592SStefano Zampini   PetscFunctionBegin;
41e5337592SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
424330a3fcSStefano Zampini   PetscValidPointer(dmRefined, 1);
43e5337592SStefano Zampini   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
44e5337592SStefano Zampini   ierr = DMPlexGetHybridBounds(dm,&cMax,&fMax,NULL,NULL);CHKERRQ(ierr);
45e5337592SStefano Zampini   ierr = DMPlexGetHeightStratum(dm,0,&cStart,&cEnd);CHKERRQ(ierr);
46e5337592SStefano Zampini   if (!(cEnd - cStart)) cellRefiner = REFINER_NOOP;
47e5337592SStefano Zampini   else {
48e5337592SStefano Zampini     ierr = DMPlexGetConeSize(dm,cStart,&coneSize);CHKERRQ(ierr);
49e5337592SStefano Zampini     switch (dim) {
50e5337592SStefano Zampini     case 1:
51e5337592SStefano Zampini       cellRefiner = REFINER_NOOP;
52e5337592SStefano Zampini     break;
53e5337592SStefano Zampini     case 2:
54e5337592SStefano Zampini       switch (coneSize) {
55e5337592SStefano Zampini       case 3:
564330a3fcSStefano Zampini         if (cMax >= 0) cellRefiner = REFINER_HYBRID_SIMPLEX_TO_HEX_2D;
574330a3fcSStefano Zampini         else cellRefiner = REFINER_SIMPLEX_TO_HEX_2D;
58e5337592SStefano Zampini       break;
59e5337592SStefano Zampini       case 4:
604330a3fcSStefano Zampini         if (cMax >= 0) cellRefiner = REFINER_HYBRID_SIMPLEX_TO_HEX_2D;
614330a3fcSStefano Zampini         else cellRefiner = REFINER_NOOP;
62e5337592SStefano Zampini       break;
63e5337592SStefano Zampini       default: SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot handle coneSize %D with dimension %D",coneSize,dim);
64e5337592SStefano Zampini       }
65e5337592SStefano Zampini     break;
66e5337592SStefano Zampini     case 3:
67e5337592SStefano Zampini       switch (coneSize) {
68e5337592SStefano Zampini       case 4:
694330a3fcSStefano Zampini         if (cMax >= 0) cellRefiner = REFINER_HYBRID_SIMPLEX_TO_HEX_3D;
704330a3fcSStefano Zampini         else cellRefiner = REFINER_SIMPLEX_TO_HEX_3D;
714330a3fcSStefano Zampini       break;
724330a3fcSStefano Zampini       case 5:
734330a3fcSStefano Zampini         if (cMax >= 0) cellRefiner = REFINER_HYBRID_SIMPLEX_TO_HEX_3D;
744330a3fcSStefano Zampini         else cellRefiner = REFINER_NOOP;
75e5337592SStefano Zampini       break;
76e5337592SStefano Zampini       case 6:
774330a3fcSStefano Zampini         if (cMax >= 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Simplex2Tensor in 3D with Hybrid mesh not yet done");
78e5337592SStefano Zampini         cellRefiner = REFINER_NOOP;
79e5337592SStefano Zampini       break;
80e5337592SStefano Zampini       default: SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot handle coneSize %D with dimension %D",coneSize,dim);
81e5337592SStefano Zampini       }
82e5337592SStefano Zampini     break;
83e5337592SStefano Zampini     default: SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Cannot handle dimension %D",dim);
84e5337592SStefano Zampini     }
85e5337592SStefano Zampini   }
86e5337592SStefano Zampini   /* return if we don't need to refine */
87e5337592SStefano Zampini   lop = (cellRefiner == REFINER_NOOP) ? PETSC_TRUE : PETSC_FALSE;
88e5337592SStefano Zampini   ierr = MPIU_Allreduce(&lop,&allnoop,1,MPIU_BOOL,MPI_LAND,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
89e5337592SStefano Zampini   if (allnoop) {
90e5337592SStefano Zampini     *dmRefined = NULL;
91e5337592SStefano Zampini     PetscFunctionReturn(0);
92e5337592SStefano Zampini   }
93e5337592SStefano Zampini   ierr = DMPlexRefineUniform_Internal(dm, cellRefiner, dmRefined);CHKERRQ(ierr);
94e5337592SStefano Zampini   ierr = DMCopyBoundary(dm, *dmRefined);CHKERRQ(ierr);
95e5337592SStefano Zampini   ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr);
96e5337592SStefano Zampini   if (localized) {
97e5337592SStefano Zampini     ierr = DMLocalizeCoordinates(*dmRefined);CHKERRQ(ierr);
98e5337592SStefano Zampini   }
99e5337592SStefano Zampini   PetscFunctionReturn(0);
100e5337592SStefano Zampini }
101e5337592SStefano Zampini 
1027afe7537SMatthew G. Knepley PetscErrorCode DMPlexGetFieldType_Internal(DM dm, PetscSection section, PetscInt field, PetscInt *sStart, PetscInt *sEnd, PetscViewerVTKFieldType *ft)
1037e42fee7SMatthew G. Knepley {
104a99a26bcSAdrian Croucher   PetscInt       dim, pStart, pEnd, vStart, vEnd, cStart, cEnd, cEndInterior;
105a99a26bcSAdrian Croucher   PetscInt       vcdof[2] = {0,0}, globalvcdof[2];
1067e42fee7SMatthew G. Knepley   PetscErrorCode ierr;
1077e42fee7SMatthew G. Knepley 
1087e42fee7SMatthew G. Knepley   PetscFunctionBegin;
1097e42fee7SMatthew G. Knepley   *ft  = PETSC_VTK_POINT_FIELD;
110c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1117e42fee7SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
1127e42fee7SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
11380d5bdc6SMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
11480d5bdc6SMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
1157e42fee7SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
1167e42fee7SMatthew G. Knepley   if (field >= 0) {
117a99a26bcSAdrian Croucher     if ((vStart >= pStart) && (vStart < pEnd)) {ierr = PetscSectionGetFieldDof(section, vStart, field, &vcdof[0]);CHKERRQ(ierr);}
118a99a26bcSAdrian Croucher     if ((cStart >= pStart) && (cStart < pEnd)) {ierr = PetscSectionGetFieldDof(section, cStart, field, &vcdof[1]);CHKERRQ(ierr);}
1197e42fee7SMatthew G. Knepley   } else {
120a99a26bcSAdrian Croucher     if ((vStart >= pStart) && (vStart < pEnd)) {ierr = PetscSectionGetDof(section, vStart, &vcdof[0]);CHKERRQ(ierr);}
121a99a26bcSAdrian Croucher     if ((cStart >= pStart) && (cStart < pEnd)) {ierr = PetscSectionGetDof(section, cStart, &vcdof[1]);CHKERRQ(ierr);}
1227e42fee7SMatthew G. Knepley   }
1235483465cSMatthew G. Knepley   ierr = MPI_Allreduce(vcdof, globalvcdof, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
124a99a26bcSAdrian Croucher   if (globalvcdof[0]) {
1257e42fee7SMatthew G. Knepley     *sStart = vStart;
1267e42fee7SMatthew G. Knepley     *sEnd   = vEnd;
127a99a26bcSAdrian Croucher     if (globalvcdof[0] == dim) *ft = PETSC_VTK_POINT_VECTOR_FIELD;
1287e42fee7SMatthew G. Knepley     else                       *ft = PETSC_VTK_POINT_FIELD;
129a99a26bcSAdrian Croucher   } else if (globalvcdof[1]) {
1307e42fee7SMatthew G. Knepley     *sStart = cStart;
1317e42fee7SMatthew G. Knepley     *sEnd   = cEnd;
132a99a26bcSAdrian Croucher     if (globalvcdof[1] == dim) *ft = PETSC_VTK_CELL_VECTOR_FIELD;
1337e42fee7SMatthew G. Knepley     else                       *ft = PETSC_VTK_CELL_FIELD;
1347e42fee7SMatthew G. Knepley   } else SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Could not classify input Vec for VTK");
1357e42fee7SMatthew G. Knepley   PetscFunctionReturn(0);
1367e42fee7SMatthew G. Knepley }
1377e42fee7SMatthew G. Knepley 
1387cd05799SMatthew G. Knepley static PetscErrorCode VecView_Plex_Local_Draw(Vec v, PetscViewer viewer)
139e412dcbdSMatthew G. Knepley {
140e412dcbdSMatthew G. Knepley   DM                 dm;
141d1df6f1dSMatthew G. Knepley   PetscSection       s;
142e412dcbdSMatthew G. Knepley   PetscDraw          draw, popup;
143e412dcbdSMatthew G. Knepley   DM                 cdm;
144e412dcbdSMatthew G. Knepley   PetscSection       coordSection;
145e412dcbdSMatthew G. Knepley   Vec                coordinates;
146e412dcbdSMatthew G. Knepley   const PetscScalar *coords, *array;
147e412dcbdSMatthew G. Knepley   PetscReal          bound[4] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL};
148339e3443SMatthew G. Knepley   PetscReal          vbound[2], time;
149339e3443SMatthew G. Knepley   PetscBool          isnull, flg;
150d1df6f1dSMatthew G. Knepley   PetscInt           dim, Nf, f, Nc, comp, vStart, vEnd, cStart, cEnd, c, N, level, step, w = 0;
151e412dcbdSMatthew G. Knepley   const char        *name;
152339e3443SMatthew G. Knepley   char               title[PETSC_MAX_PATH_LEN];
153e412dcbdSMatthew G. Knepley   PetscErrorCode     ierr;
154e412dcbdSMatthew G. Knepley 
155e412dcbdSMatthew G. Knepley   PetscFunctionBegin;
156d1df6f1dSMatthew G. Knepley   ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr);
157d1df6f1dSMatthew G. Knepley   ierr = PetscDrawIsNull(draw, &isnull);CHKERRQ(ierr);
158d1df6f1dSMatthew G. Knepley   if (isnull) PetscFunctionReturn(0);
159d1df6f1dSMatthew G. Knepley 
160e412dcbdSMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
161e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
1628135c375SStefano Zampini   if (dim != 2) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Cannot draw meshes of dimension %D. Use PETSCVIEWERGLVIS", dim);
163e87a4003SBarry Smith   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
164d1df6f1dSMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
165e412dcbdSMatthew G. Knepley   ierr = DMGetCoarsenLevel(dm, &level);CHKERRQ(ierr);
166e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
167e87a4003SBarry Smith   ierr = DMGetSection(cdm, &coordSection);CHKERRQ(ierr);
168e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
169e412dcbdSMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
170e412dcbdSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
171e412dcbdSMatthew G. Knepley 
172e412dcbdSMatthew G. Knepley   ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
173339e3443SMatthew G. Knepley   ierr = DMGetOutputSequenceNumber(dm, &step, &time);CHKERRQ(ierr);
174e412dcbdSMatthew G. Knepley 
175e412dcbdSMatthew G. Knepley   ierr = VecGetLocalSize(coordinates, &N);CHKERRQ(ierr);
176e412dcbdSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &coords);CHKERRQ(ierr);
177e412dcbdSMatthew G. Knepley   for (c = 0; c < N; c += dim) {
1780c81f2a8SMatthew G. Knepley     bound[0] = PetscMin(bound[0], PetscRealPart(coords[c]));   bound[2] = PetscMax(bound[2], PetscRealPart(coords[c]));
1790c81f2a8SMatthew G. Knepley     bound[1] = PetscMin(bound[1], PetscRealPart(coords[c+1])); bound[3] = PetscMax(bound[3], PetscRealPart(coords[c+1]));
180e412dcbdSMatthew G. Knepley   }
181e412dcbdSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &coords);CHKERRQ(ierr);
182e412dcbdSMatthew G. Knepley   ierr = PetscDrawClear(draw);CHKERRQ(ierr);
183e412dcbdSMatthew G. Knepley 
184d1df6f1dSMatthew G. Knepley   /* Could implement something like DMDASelectFields() */
185d1df6f1dSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
186d1df6f1dSMatthew G. Knepley     DM   fdm = dm;
187d1df6f1dSMatthew G. Knepley     Vec  fv  = v;
188d1df6f1dSMatthew G. Knepley     IS   fis;
189d1df6f1dSMatthew G. Knepley     char prefix[PETSC_MAX_PATH_LEN];
190d1df6f1dSMatthew G. Knepley     const char *fname;
191d1df6f1dSMatthew G. Knepley 
192d1df6f1dSMatthew G. Knepley     ierr = PetscSectionGetFieldComponents(s, f, &Nc);CHKERRQ(ierr);
193d1df6f1dSMatthew G. Knepley     ierr = PetscSectionGetFieldName(s, f, &fname);CHKERRQ(ierr);
194d1df6f1dSMatthew G. Knepley 
195a126751eSBarry Smith     if (v->hdr.prefix) {ierr = PetscStrncpy(prefix, v->hdr.prefix,sizeof(prefix));CHKERRQ(ierr);}
196d1df6f1dSMatthew G. Knepley     else               {prefix[0] = '\0';}
197d1df6f1dSMatthew G. Knepley     if (Nf > 1) {
198d1df6f1dSMatthew G. Knepley       ierr = DMCreateSubDM(dm, 1, &f, &fis, &fdm);CHKERRQ(ierr);
199d1df6f1dSMatthew G. Knepley       ierr = VecGetSubVector(v, fis, &fv);CHKERRQ(ierr);
200a126751eSBarry Smith       ierr = PetscStrlcat(prefix, fname,sizeof(prefix));CHKERRQ(ierr);
201a126751eSBarry Smith       ierr = PetscStrlcat(prefix, "_",sizeof(prefix));CHKERRQ(ierr);
202d1df6f1dSMatthew G. Knepley     }
203d1df6f1dSMatthew G. Knepley     for (comp = 0; comp < Nc; ++comp, ++w) {
204d1df6f1dSMatthew G. Knepley       PetscInt nmax = 2;
205d1df6f1dSMatthew G. Knepley 
206d1df6f1dSMatthew G. Knepley       ierr = PetscViewerDrawGetDraw(viewer, w, &draw);CHKERRQ(ierr);
207d1df6f1dSMatthew G. Knepley       if (Nc > 1) {ierr = PetscSNPrintf(title, sizeof(title), "%s:%s_%D Step: %D Time: %.4g", name, fname, comp, step, time);CHKERRQ(ierr);}
208d1df6f1dSMatthew G. Knepley       else        {ierr = PetscSNPrintf(title, sizeof(title), "%s:%s Step: %D Time: %.4g", name, fname, step, time);CHKERRQ(ierr);}
209d1df6f1dSMatthew G. Knepley       ierr = PetscDrawSetTitle(draw, title);CHKERRQ(ierr);
210d1df6f1dSMatthew G. Knepley 
211d1df6f1dSMatthew G. Knepley       /* TODO Get max and min only for this component */
212d1df6f1dSMatthew G. Knepley       ierr = PetscOptionsGetRealArray(NULL, prefix, "-vec_view_bounds", vbound, &nmax, &flg);CHKERRQ(ierr);
213339e3443SMatthew G. Knepley       if (!flg) {
214d1df6f1dSMatthew G. Knepley         ierr = VecMin(fv, NULL, &vbound[0]);CHKERRQ(ierr);
215d1df6f1dSMatthew G. Knepley         ierr = VecMax(fv, NULL, &vbound[1]);CHKERRQ(ierr);
216d1df6f1dSMatthew G. Knepley         if (vbound[1] <= vbound[0]) vbound[1] = vbound[0] + 1.0;
217339e3443SMatthew G. Knepley       }
218e412dcbdSMatthew G. Knepley       ierr = PetscDrawGetPopup(draw, &popup);CHKERRQ(ierr);
219339e3443SMatthew G. Knepley       ierr = PetscDrawScalePopup(popup, vbound[0], vbound[1]);CHKERRQ(ierr);
220d1df6f1dSMatthew G. Knepley       ierr = PetscDrawSetCoordinates(draw, bound[0], bound[1], bound[2], bound[3]);CHKERRQ(ierr);
221e412dcbdSMatthew G. Knepley 
222d1df6f1dSMatthew G. Knepley       ierr = VecGetArrayRead(fv, &array);CHKERRQ(ierr);
223e412dcbdSMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {
22499a2f7bcSMatthew G. Knepley         PetscScalar *coords = NULL, *a = NULL;
225e56f9228SJed Brown         PetscInt     numCoords, color[4] = {-1,-1,-1,-1};
226e412dcbdSMatthew G. Knepley 
227d1df6f1dSMatthew G. Knepley         ierr = DMPlexPointLocalRead(fdm, c, array, &a);CHKERRQ(ierr);
228339e3443SMatthew G. Knepley         if (a) {
229d1df6f1dSMatthew G. Knepley           color[0] = PetscDrawRealToColor(PetscRealPart(a[comp]), vbound[0], vbound[1]);
230339e3443SMatthew G. Knepley           color[1] = color[2] = color[3] = color[0];
231339e3443SMatthew G. Knepley         } else {
232339e3443SMatthew G. Knepley           PetscScalar *vals = NULL;
233339e3443SMatthew G. Knepley           PetscInt     numVals, va;
234339e3443SMatthew G. Knepley 
235d1df6f1dSMatthew G. Knepley           ierr = DMPlexVecGetClosure(fdm, NULL, fv, c, &numVals, &vals);CHKERRQ(ierr);
236d1df6f1dSMatthew 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);
237d1df6f1dSMatthew G. Knepley           switch (numVals/Nc) {
238d1df6f1dSMatthew G. Knepley           case 3: /* P1 Triangle */
239d1df6f1dSMatthew G. Knepley           case 4: /* P1 Quadrangle */
240d1df6f1dSMatthew G. Knepley             for (va = 0; va < numVals/Nc; ++va) color[va] = PetscDrawRealToColor(PetscRealPart(vals[va*Nc+comp]), vbound[0], vbound[1]);
241339e3443SMatthew G. Knepley             break;
242d1df6f1dSMatthew G. Knepley           case 6: /* P2 Triangle */
243d1df6f1dSMatthew G. Knepley           case 8: /* P2 Quadrangle */
244d1df6f1dSMatthew 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]);
245d1df6f1dSMatthew G. Knepley             break;
246d1df6f1dSMatthew G. Knepley           default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of values for cell closure %D cannot be handled", numVals/Nc);
247339e3443SMatthew G. Knepley           }
248d1df6f1dSMatthew G. Knepley           ierr = DMPlexVecRestoreClosure(fdm, NULL, fv, c, &numVals, &vals);CHKERRQ(ierr);
249339e3443SMatthew G. Knepley         }
250e412dcbdSMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
251e412dcbdSMatthew G. Knepley         switch (numCoords) {
252e412dcbdSMatthew G. Knepley         case 6:
253339e3443SMatthew 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);
254e412dcbdSMatthew G. Knepley           break;
255e412dcbdSMatthew G. Knepley         case 8:
256339e3443SMatthew 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);
257339e3443SMatthew 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);
258e412dcbdSMatthew G. Knepley           break;
259e412dcbdSMatthew G. Knepley         default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells with %D coordinates", numCoords);
260e412dcbdSMatthew G. Knepley         }
261e412dcbdSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
262e412dcbdSMatthew G. Knepley       }
263d1df6f1dSMatthew G. Knepley       ierr = VecRestoreArrayRead(fv, &array);CHKERRQ(ierr);
264e412dcbdSMatthew G. Knepley       ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
265e412dcbdSMatthew G. Knepley       ierr = PetscDrawPause(draw);CHKERRQ(ierr);
266e412dcbdSMatthew G. Knepley       ierr = PetscDrawSave(draw);CHKERRQ(ierr);
267d1df6f1dSMatthew G. Knepley     }
268d1df6f1dSMatthew G. Knepley     if (Nf > 1) {
269d1df6f1dSMatthew G. Knepley       ierr = VecRestoreSubVector(v, fis, &fv);CHKERRQ(ierr);
270d1df6f1dSMatthew G. Knepley       ierr = ISDestroy(&fis);CHKERRQ(ierr);
271d1df6f1dSMatthew G. Knepley       ierr = DMDestroy(&fdm);CHKERRQ(ierr);
272d1df6f1dSMatthew G. Knepley     }
273d1df6f1dSMatthew G. Knepley   }
274e412dcbdSMatthew G. Knepley   PetscFunctionReturn(0);
275e412dcbdSMatthew G. Knepley }
276e412dcbdSMatthew G. Knepley 
277684b87d9SLisandro Dalcin static PetscErrorCode VecView_Plex_Local_VTK(Vec v, PetscViewer viewer)
278684b87d9SLisandro Dalcin {
279684b87d9SLisandro Dalcin   DM                      dm;
280684b87d9SLisandro Dalcin   Vec                     locv;
281684b87d9SLisandro Dalcin   const char              *name;
282684b87d9SLisandro Dalcin   PetscSection            section;
283684b87d9SLisandro Dalcin   PetscInt                pStart, pEnd;
284684b87d9SLisandro Dalcin   PetscViewerVTKFieldType ft;
285684b87d9SLisandro Dalcin   PetscErrorCode          ierr;
286684b87d9SLisandro Dalcin 
287684b87d9SLisandro Dalcin   PetscFunctionBegin;
288684b87d9SLisandro Dalcin   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
289684b87d9SLisandro Dalcin   ierr = DMCreateLocalVector(dm, &locv);CHKERRQ(ierr); /* VTK viewer requires exclusive ownership of the vector */
290684b87d9SLisandro Dalcin   ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
291684b87d9SLisandro Dalcin   ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
292684b87d9SLisandro Dalcin   ierr = VecCopy(v, locv);CHKERRQ(ierr);
293e87a4003SBarry Smith   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
294684b87d9SLisandro Dalcin   ierr = DMPlexGetFieldType_Internal(dm, section, PETSC_DETERMINE, &pStart, &pEnd, &ft);CHKERRQ(ierr);
295a8f87f1dSPatrick Sanan   ierr = PetscViewerVTKAddField(viewer, (PetscObject) dm, DMPlexVTKWriteAll, ft, PETSC_TRUE,(PetscObject) locv);CHKERRQ(ierr);
296684b87d9SLisandro Dalcin   PetscFunctionReturn(0);
297684b87d9SLisandro Dalcin }
298684b87d9SLisandro Dalcin 
299552f7358SJed Brown PetscErrorCode VecView_Plex_Local(Vec v, PetscViewer viewer)
300552f7358SJed Brown {
301552f7358SJed Brown   DM             dm;
302684b87d9SLisandro Dalcin   PetscBool      isvtk, ishdf5, isdraw, isglvis;
303552f7358SJed Brown   PetscErrorCode ierr;
304552f7358SJed Brown 
305552f7358SJed Brown   PetscFunctionBegin;
306552f7358SJed Brown   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
30782f516ccSBarry Smith   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
308552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,   &isvtk);CHKERRQ(ierr);
309b136c2c9SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,  &ishdf5);CHKERRQ(ierr);
310f13a32a3SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,  &isdraw);CHKERRQ(ierr);
3118135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS, &isglvis);CHKERRQ(ierr);
312684b87d9SLisandro Dalcin   if (isvtk || ishdf5 || isdraw || isglvis) {
313684b87d9SLisandro Dalcin     PetscInt    i,numFields;
314684b87d9SLisandro Dalcin     PetscObject fe;
315ef31f671SMatthew G. Knepley     PetscBool   fem = PETSC_FALSE;
316684b87d9SLisandro Dalcin     Vec         locv = v;
317684b87d9SLisandro Dalcin     const char  *name;
318684b87d9SLisandro Dalcin     PetscInt    step;
319684b87d9SLisandro Dalcin     PetscReal   time;
320ef31f671SMatthew G. Knepley 
321ef31f671SMatthew G. Knepley     ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
322684b87d9SLisandro Dalcin     for (i=0; i<numFields; i++) {
323684b87d9SLisandro Dalcin       ierr = DMGetField(dm, i, &fe);CHKERRQ(ierr);
324684b87d9SLisandro Dalcin       if (fe->classid == PETSCFE_CLASSID) { fem = PETSC_TRUE; break; }
325ef31f671SMatthew G. Knepley     }
326684b87d9SLisandro Dalcin     if (fem) {
327684b87d9SLisandro Dalcin       ierr = DMGetLocalVector(dm, &locv);CHKERRQ(ierr);
328684b87d9SLisandro Dalcin       ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
329684b87d9SLisandro Dalcin       ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
330684b87d9SLisandro Dalcin       ierr = VecCopy(v, locv);CHKERRQ(ierr);
331684b87d9SLisandro Dalcin       ierr = DMGetOutputSequenceNumber(dm, NULL, &time);CHKERRQ(ierr);
332684b87d9SLisandro Dalcin       ierr = DMPlexInsertBoundaryValues(dm, PETSC_TRUE, locv, time, NULL, NULL, NULL);CHKERRQ(ierr);
333ef31f671SMatthew G. Knepley     }
334552f7358SJed Brown     if (isvtk) {
335684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_VTK(locv, viewer);CHKERRQ(ierr);
336b136c2c9SMatthew G. Knepley     } else if (ishdf5) {
337b136c2c9SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
338684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_HDF5_Internal(locv, viewer);CHKERRQ(ierr);
339b136c2c9SMatthew G. Knepley #else
340b136c2c9SMatthew G. Knepley       SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
341b136c2c9SMatthew G. Knepley #endif
342f13a32a3SMatthew G. Knepley     } else if (isdraw) {
343684b87d9SLisandro Dalcin       ierr = VecView_Plex_Local_Draw(locv, viewer);CHKERRQ(ierr);
344684b87d9SLisandro Dalcin     } else if (isglvis) {
345684b87d9SLisandro Dalcin       ierr = DMGetOutputSequenceNumber(dm, &step, NULL);CHKERRQ(ierr);
346684b87d9SLisandro Dalcin       ierr = PetscViewerGLVisSetSnapId(viewer, step);CHKERRQ(ierr);
347684b87d9SLisandro Dalcin       ierr = VecView_GLVis(locv, viewer);CHKERRQ(ierr);
348684b87d9SLisandro Dalcin     }
349684b87d9SLisandro Dalcin     if (fem) {ierr = DMRestoreLocalVector(dm, &locv);CHKERRQ(ierr);}
350552f7358SJed Brown   } else {
351684b87d9SLisandro Dalcin     PetscBool isseq;
352684b87d9SLisandro Dalcin 
353684b87d9SLisandro Dalcin     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
35455f2e967SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
35555f2e967SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
356552f7358SJed Brown   }
357552f7358SJed Brown   PetscFunctionReturn(0);
358552f7358SJed Brown }
359552f7358SJed Brown 
360552f7358SJed Brown PetscErrorCode VecView_Plex(Vec v, PetscViewer viewer)
361552f7358SJed Brown {
362552f7358SJed Brown   DM             dm;
363684b87d9SLisandro Dalcin   PetscBool      isvtk, ishdf5, isdraw, isglvis;
364552f7358SJed Brown   PetscErrorCode ierr;
365552f7358SJed Brown 
366552f7358SJed Brown   PetscFunctionBegin;
367552f7358SJed Brown   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
36882f516ccSBarry Smith   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
369552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,   &isvtk);CHKERRQ(ierr);
37033c3e6b4SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,  &ishdf5);CHKERRQ(ierr);
371e412dcbdSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,  &isdraw);CHKERRQ(ierr);
3728135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS, &isglvis);CHKERRQ(ierr);
373684b87d9SLisandro Dalcin   if (isvtk || isdraw || isglvis) {
374552f7358SJed Brown     Vec         locv;
375552f7358SJed Brown     const char *name;
376552f7358SJed Brown 
377c8dd51e9SBarry Smith     ierr = DMGetLocalVector(dm, &locv);CHKERRQ(ierr);
378552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
379552f7358SJed Brown     ierr = PetscObjectSetName((PetscObject) locv, name);CHKERRQ(ierr);
380552f7358SJed Brown     ierr = DMGlobalToLocalBegin(dm, v, INSERT_VALUES, locv);CHKERRQ(ierr);
381552f7358SJed Brown     ierr = DMGlobalToLocalEnd(dm, v, INSERT_VALUES, locv);CHKERRQ(ierr);
382552f7358SJed Brown     ierr = VecView_Plex_Local(locv, viewer);CHKERRQ(ierr);
383c8dd51e9SBarry Smith     ierr = DMRestoreLocalVector(dm, &locv);CHKERRQ(ierr);
384b136c2c9SMatthew G. Knepley   } else if (ishdf5) {
385b136c2c9SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
38639d25373SMatthew G. Knepley     ierr = VecView_Plex_HDF5_Internal(v, viewer);CHKERRQ(ierr);
387b136c2c9SMatthew G. Knepley #else
388b136c2c9SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
389b136c2c9SMatthew G. Knepley #endif
390552f7358SJed Brown   } else {
391684b87d9SLisandro Dalcin     PetscBool isseq;
392684b87d9SLisandro Dalcin 
393684b87d9SLisandro Dalcin     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
39455f2e967SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
39555f2e967SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
396552f7358SJed Brown   }
397552f7358SJed Brown   PetscFunctionReturn(0);
398552f7358SJed Brown }
399552f7358SJed Brown 
400d930f514SMatthew G. Knepley PetscErrorCode VecView_Plex_Native(Vec originalv, PetscViewer viewer)
401d930f514SMatthew G. Knepley {
402d930f514SMatthew G. Knepley   DM                dm;
403d930f514SMatthew G. Knepley   MPI_Comm          comm;
404d930f514SMatthew G. Knepley   PetscViewerFormat format;
405d930f514SMatthew G. Knepley   Vec               v;
406d930f514SMatthew G. Knepley   PetscBool         isvtk, ishdf5;
407d930f514SMatthew G. Knepley   PetscErrorCode    ierr;
408d930f514SMatthew G. Knepley 
409d930f514SMatthew G. Knepley   PetscFunctionBegin;
410d930f514SMatthew G. Knepley   ierr = VecGetDM(originalv, &dm);CHKERRQ(ierr);
411d930f514SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject) originalv, &comm);CHKERRQ(ierr);
4122c4c0c81SMatthew G. Knepley   if (!dm) SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
413d930f514SMatthew G. Knepley   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
414d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
415d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,  &isvtk);CHKERRQ(ierr);
416d930f514SMatthew G. Knepley   if (format == PETSC_VIEWER_NATIVE) {
417d930f514SMatthew G. Knepley     const char *vecname;
418d930f514SMatthew G. Knepley     PetscInt    n, nroots;
419d930f514SMatthew G. Knepley 
420d930f514SMatthew G. Knepley     if (dm->sfNatural) {
421ca43db0aSBarry Smith       ierr = VecGetLocalSize(originalv, &n);CHKERRQ(ierr);
422d930f514SMatthew G. Knepley       ierr = PetscSFGetGraph(dm->sfNatural, &nroots, NULL, NULL, NULL);CHKERRQ(ierr);
423d930f514SMatthew G. Knepley       if (n == nroots) {
424d930f514SMatthew G. Knepley         ierr = DMGetGlobalVector(dm, &v);CHKERRQ(ierr);
425d930f514SMatthew G. Knepley         ierr = DMPlexGlobalToNaturalBegin(dm, originalv, v);CHKERRQ(ierr);
426d930f514SMatthew G. Knepley         ierr = DMPlexGlobalToNaturalEnd(dm, originalv, v);CHKERRQ(ierr);
427d930f514SMatthew G. Knepley         ierr = PetscObjectGetName((PetscObject) originalv, &vecname);CHKERRQ(ierr);
428d930f514SMatthew G. Knepley         ierr = PetscObjectSetName((PetscObject) v, vecname);CHKERRQ(ierr);
429d930f514SMatthew G. Knepley       } else SETERRQ(comm, PETSC_ERR_ARG_WRONG, "DM global to natural SF only handles global vectors");
430d930f514SMatthew G. Knepley     } else SETERRQ(comm, PETSC_ERR_ARG_WRONGSTATE, "DM global to natural SF was not created");
431d930f514SMatthew G. Knepley   } else {
432d930f514SMatthew G. Knepley     /* we are viewing a natural DMPlex vec. */
433d930f514SMatthew G. Knepley     v = originalv;
434d930f514SMatthew G. Knepley   }
435d930f514SMatthew G. Knepley   if (ishdf5) {
436d930f514SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
43739d25373SMatthew G. Knepley     ierr = VecView_Plex_HDF5_Native_Internal(v, viewer);CHKERRQ(ierr);
438d930f514SMatthew G. Knepley #else
439d930f514SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
440d930f514SMatthew G. Knepley #endif
441d930f514SMatthew G. Knepley   } else if (isvtk) {
442d930f514SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_SUP, "VTK format does not support viewing in natural order. Please switch to HDF5.");
443d930f514SMatthew G. Knepley   } else {
444d930f514SMatthew G. Knepley     PetscBool isseq;
445d930f514SMatthew G. Knepley 
446d930f514SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr);
447d930f514SMatthew G. Knepley     if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);}
448d930f514SMatthew G. Knepley     else       {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);}
449d930f514SMatthew G. Knepley   }
450d930f514SMatthew G. Knepley   if (format == PETSC_VIEWER_NATIVE) {ierr = DMRestoreGlobalVector(dm, &v);CHKERRQ(ierr);}
451d930f514SMatthew G. Knepley   PetscFunctionReturn(0);
452d930f514SMatthew G. Knepley }
453d930f514SMatthew G. Knepley 
4542c40f234SMatthew G. Knepley PetscErrorCode VecLoad_Plex_Local(Vec v, PetscViewer viewer)
4552c40f234SMatthew G. Knepley {
4562c40f234SMatthew G. Knepley   DM             dm;
4572c40f234SMatthew G. Knepley   PetscBool      ishdf5;
4582c40f234SMatthew G. Knepley   PetscErrorCode ierr;
4592c40f234SMatthew G. Knepley 
4602c40f234SMatthew G. Knepley   PetscFunctionBegin;
4612c40f234SMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
4622c40f234SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
4632c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
4642c40f234SMatthew G. Knepley   if (ishdf5) {
4652c40f234SMatthew G. Knepley     DM          dmBC;
4662c40f234SMatthew G. Knepley     Vec         gv;
4672c40f234SMatthew G. Knepley     const char *name;
4682c40f234SMatthew G. Knepley 
4692c40f234SMatthew G. Knepley     ierr = DMGetOutputDM(dm, &dmBC);CHKERRQ(ierr);
4702c40f234SMatthew G. Knepley     ierr = DMGetGlobalVector(dmBC, &gv);CHKERRQ(ierr);
4712c40f234SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) v, &name);CHKERRQ(ierr);
4722c40f234SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) gv, name);CHKERRQ(ierr);
4732c40f234SMatthew G. Knepley     ierr = VecLoad_Default(gv, viewer);CHKERRQ(ierr);
4742c40f234SMatthew G. Knepley     ierr = DMGlobalToLocalBegin(dmBC, gv, INSERT_VALUES, v);CHKERRQ(ierr);
4752c40f234SMatthew G. Knepley     ierr = DMGlobalToLocalEnd(dmBC, gv, INSERT_VALUES, v);CHKERRQ(ierr);
4762c40f234SMatthew G. Knepley     ierr = DMRestoreGlobalVector(dmBC, &gv);CHKERRQ(ierr);
4772c40f234SMatthew G. Knepley   } else {
4782c40f234SMatthew G. Knepley     ierr = VecLoad_Default(v, viewer);CHKERRQ(ierr);
4792c40f234SMatthew G. Knepley   }
4802c40f234SMatthew G. Knepley   PetscFunctionReturn(0);
4812c40f234SMatthew G. Knepley }
4822c40f234SMatthew G. Knepley 
4832c40f234SMatthew G. Knepley PetscErrorCode VecLoad_Plex(Vec v, PetscViewer viewer)
4842c40f234SMatthew G. Knepley {
4852c40f234SMatthew G. Knepley   DM             dm;
4862c40f234SMatthew G. Knepley   PetscBool      ishdf5;
4872c40f234SMatthew G. Knepley   PetscErrorCode ierr;
4882c40f234SMatthew G. Knepley 
4892c40f234SMatthew G. Knepley   PetscFunctionBegin;
4902c40f234SMatthew G. Knepley   ierr = VecGetDM(v, &dm);CHKERRQ(ierr);
4912c40f234SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
4922c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
4932c40f234SMatthew G. Knepley   if (ishdf5) {
494878b459fSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
49539d25373SMatthew G. Knepley     ierr = VecLoad_Plex_HDF5_Internal(v, viewer);CHKERRQ(ierr);
496b136c2c9SMatthew G. Knepley #else
497b136c2c9SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
498878b459fSMatthew G. Knepley #endif
4992c40f234SMatthew G. Knepley   } else {
5002c40f234SMatthew G. Knepley     ierr = VecLoad_Default(v, viewer);CHKERRQ(ierr);
501552f7358SJed Brown   }
502552f7358SJed Brown   PetscFunctionReturn(0);
503552f7358SJed Brown }
504552f7358SJed Brown 
505d930f514SMatthew G. Knepley PetscErrorCode VecLoad_Plex_Native(Vec originalv, PetscViewer viewer)
506d930f514SMatthew G. Knepley {
507d930f514SMatthew G. Knepley   DM                dm;
508d930f514SMatthew G. Knepley   PetscViewerFormat format;
509d930f514SMatthew G. Knepley   PetscBool         ishdf5;
510d930f514SMatthew G. Knepley   PetscErrorCode    ierr;
511d930f514SMatthew G. Knepley 
512d930f514SMatthew G. Knepley   PetscFunctionBegin;
513d930f514SMatthew G. Knepley   ierr = VecGetDM(originalv, &dm);CHKERRQ(ierr);
514d930f514SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject) originalv), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM");
515d930f514SMatthew G. Knepley   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
516d930f514SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
517d930f514SMatthew G. Knepley   if (format == PETSC_VIEWER_NATIVE) {
518d930f514SMatthew G. Knepley     if (dm->sfNatural) {
519d930f514SMatthew G. Knepley       if (ishdf5) {
520d930f514SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
521d930f514SMatthew G. Knepley         Vec         v;
522d930f514SMatthew G. Knepley         const char *vecname;
523d930f514SMatthew G. Knepley 
524d930f514SMatthew G. Knepley         ierr = DMGetGlobalVector(dm, &v);CHKERRQ(ierr);
525d930f514SMatthew G. Knepley         ierr = PetscObjectGetName((PetscObject) originalv, &vecname);CHKERRQ(ierr);
526d930f514SMatthew G. Knepley         ierr = PetscObjectSetName((PetscObject) v, vecname);CHKERRQ(ierr);
52739d25373SMatthew G. Knepley         ierr = VecLoad_Plex_HDF5_Native_Internal(v, viewer);CHKERRQ(ierr);
528d930f514SMatthew G. Knepley         ierr = DMPlexNaturalToGlobalBegin(dm, v, originalv);CHKERRQ(ierr);
529d930f514SMatthew G. Knepley         ierr = DMPlexNaturalToGlobalEnd(dm, v, originalv);CHKERRQ(ierr);
530d930f514SMatthew G. Knepley         ierr = DMRestoreGlobalVector(dm, &v);CHKERRQ(ierr);
531d930f514SMatthew G. Knepley #else
532d930f514SMatthew G. Knepley         SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
533d930f514SMatthew G. Knepley #endif
534d930f514SMatthew G. Knepley       } else SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Reading in natural order is not supported for anything but HDF5.");
535d930f514SMatthew G. Knepley     }
536d930f514SMatthew G. Knepley   }
537d930f514SMatthew G. Knepley   PetscFunctionReturn(0);
538d930f514SMatthew G. Knepley }
539d930f514SMatthew G. Knepley 
5407cd05799SMatthew G. Knepley PETSC_UNUSED static PetscErrorCode DMPlexView_Ascii_Geometry(DM dm, PetscViewer viewer)
541731e8ddeSMatthew G. Knepley {
542731e8ddeSMatthew G. Knepley   PetscSection       coordSection;
543731e8ddeSMatthew G. Knepley   Vec                coordinates;
544731e8ddeSMatthew G. Knepley   DMLabel            depthLabel;
545731e8ddeSMatthew G. Knepley   const char        *name[4];
546731e8ddeSMatthew G. Knepley   const PetscScalar *a;
547731e8ddeSMatthew G. Knepley   PetscInt           dim, pStart, pEnd, cStart, cEnd, c;
548731e8ddeSMatthew G. Knepley   PetscErrorCode     ierr;
549731e8ddeSMatthew G. Knepley 
550731e8ddeSMatthew G. Knepley   PetscFunctionBegin;
551731e8ddeSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
552731e8ddeSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
553731e8ddeSMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
554731e8ddeSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
555731e8ddeSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
556731e8ddeSMatthew G. Knepley   ierr = PetscSectionGetChart(coordSection, &pStart, &pEnd);CHKERRQ(ierr);
557731e8ddeSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &a);CHKERRQ(ierr);
558731e8ddeSMatthew G. Knepley   name[0]     = "vertex";
559731e8ddeSMatthew G. Knepley   name[1]     = "edge";
560731e8ddeSMatthew G. Knepley   name[dim-1] = "face";
561731e8ddeSMatthew G. Knepley   name[dim]   = "cell";
562731e8ddeSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
563731e8ddeSMatthew G. Knepley     PetscInt *closure = NULL;
564731e8ddeSMatthew G. Knepley     PetscInt  closureSize, cl;
565731e8ddeSMatthew G. Knepley 
566f347f43bSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer, "Geometry for cell %D:\n", c);CHKERRQ(ierr);
567731e8ddeSMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
568731e8ddeSMatthew G. Knepley     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
569731e8ddeSMatthew G. Knepley     for (cl = 0; cl < closureSize*2; cl += 2) {
570731e8ddeSMatthew G. Knepley       PetscInt point = closure[cl], depth, dof, off, d, p;
571731e8ddeSMatthew G. Knepley 
572731e8ddeSMatthew G. Knepley       if ((point < pStart) || (point >= pEnd)) continue;
573731e8ddeSMatthew G. Knepley       ierr = PetscSectionGetDof(coordSection, point, &dof);CHKERRQ(ierr);
574731e8ddeSMatthew G. Knepley       if (!dof) continue;
575731e8ddeSMatthew G. Knepley       ierr = DMLabelGetValue(depthLabel, point, &depth);CHKERRQ(ierr);
576731e8ddeSMatthew G. Knepley       ierr = PetscSectionGetOffset(coordSection, point, &off);CHKERRQ(ierr);
577f347f43bSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer, "%s %D coords:", name[depth], point);CHKERRQ(ierr);
578731e8ddeSMatthew G. Knepley       for (p = 0; p < dof/dim; ++p) {
579731e8ddeSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, " (");CHKERRQ(ierr);
580731e8ddeSMatthew G. Knepley         for (d = 0; d < dim; ++d) {
581731e8ddeSMatthew G. Knepley           if (d > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);}
58241477eefSMatthew G. Knepley           ierr = PetscViewerASCIIPrintf(viewer, "%g", PetscRealPart(a[off+p*dim+d]));CHKERRQ(ierr);
583731e8ddeSMatthew G. Knepley         }
584731e8ddeSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, ")");CHKERRQ(ierr);
585731e8ddeSMatthew G. Knepley       }
586731e8ddeSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
587731e8ddeSMatthew G. Knepley     }
588731e8ddeSMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
589731e8ddeSMatthew G. Knepley     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
590731e8ddeSMatthew G. Knepley   }
591731e8ddeSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &a);CHKERRQ(ierr);
592731e8ddeSMatthew G. Knepley   PetscFunctionReturn(0);
593731e8ddeSMatthew G. Knepley }
594731e8ddeSMatthew G. Knepley 
5957cd05799SMatthew G. Knepley static PetscErrorCode DMPlexView_Ascii(DM dm, PetscViewer viewer)
596552f7358SJed Brown {
597552f7358SJed Brown   DM_Plex          *mesh = (DM_Plex*) dm->data;
598552f7358SJed Brown   DM                cdm;
599552f7358SJed Brown   DMLabel           markers;
600552f7358SJed Brown   PetscSection      coordSection;
601552f7358SJed Brown   Vec               coordinates;
602552f7358SJed Brown   PetscViewerFormat format;
603552f7358SJed Brown   PetscErrorCode    ierr;
604552f7358SJed Brown 
605552f7358SJed Brown   PetscFunctionBegin;
606552f7358SJed Brown   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
607e87a4003SBarry Smith   ierr = DMGetSection(cdm, &coordSection);CHKERRQ(ierr);
608552f7358SJed Brown   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
609552f7358SJed Brown   ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
610552f7358SJed Brown   if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
611552f7358SJed Brown     const char *name;
612f73eea6eSMatthew G. Knepley     PetscInt    dim, cellHeight, maxConeSize, maxSupportSize;
613552f7358SJed Brown     PetscInt    pStart, pEnd, p;
614552f7358SJed Brown     PetscMPIInt rank, size;
615552f7358SJed Brown 
61682f516ccSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr);
61782f516ccSBarry Smith     ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size);CHKERRQ(ierr);
618552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
619552f7358SJed Brown     ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
620552f7358SJed Brown     ierr = DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize);CHKERRQ(ierr);
621f73eea6eSMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
622f73eea6eSMatthew G. Knepley     ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
623f73eea6eSMatthew G. Knepley     if (name) {ierr = PetscViewerASCIIPrintf(viewer, "%s in %D dimension%s:\n", name, dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
624f73eea6eSMatthew G. Knepley     else      {ierr = PetscViewerASCIIPrintf(viewer, "Mesh in %D dimension%s:\n", dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
625f73eea6eSMatthew G. Knepley     if (cellHeight) {ierr = PetscViewerASCIIPrintf(viewer, "  Cells are at height %D\n", cellHeight);CHKERRQ(ierr);}
626e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Supports:\n", name);CHKERRQ(ierr);
6274d4c343aSBarry Smith     ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr);
628e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d] Max support size: %D\n", rank, maxSupportSize);CHKERRQ(ierr);
629552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
630552f7358SJed Brown       PetscInt dof, off, s;
631552f7358SJed Brown 
632552f7358SJed Brown       ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
633552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
634552f7358SJed Brown       for (s = off; s < off+dof; ++s) {
635e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d]: %D ----> %D\n", rank, p, mesh->supports[s]);CHKERRQ(ierr);
636552f7358SJed Brown       }
637552f7358SJed Brown     }
638552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
639e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Cones:\n", name);CHKERRQ(ierr);
640e9cb465cSMatthew G. Knepley     ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d] Max cone size: %D\n", rank, maxConeSize);CHKERRQ(ierr);
641552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
642552f7358SJed Brown       PetscInt dof, off, c;
643552f7358SJed Brown 
644552f7358SJed Brown       ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
645552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
646552f7358SJed Brown       for (c = off; c < off+dof; ++c) {
647e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "[%d]: %D <---- %D (%D)\n", rank, p, mesh->cones[c], mesh->coneOrientations[c]);CHKERRQ(ierr);
648552f7358SJed Brown       }
649552f7358SJed Brown     }
650552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
6514d4c343aSBarry Smith     ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr);
65280180ce3SStefano Zampini     ierr = PetscSectionVecView(coordSection, coordinates, viewer);CHKERRQ(ierr);
653c58f1c22SToby Isaac     ierr = DMGetLabel(dm, "marker", &markers);CHKERRQ(ierr);
654552f7358SJed Brown     ierr = DMLabelView(markers,viewer);CHKERRQ(ierr);
655552f7358SJed Brown     if (size > 1) {
656552f7358SJed Brown       PetscSF sf;
657552f7358SJed Brown 
658552f7358SJed Brown       ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
659552f7358SJed Brown       ierr = PetscSFView(sf, viewer);CHKERRQ(ierr);
660552f7358SJed Brown     }
661552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
662552f7358SJed Brown   } else if (format == PETSC_VIEWER_ASCII_LATEX) {
6630588280cSMatthew G. Knepley     const char  *name, *color;
6640588280cSMatthew G. Knepley     const char  *defcolors[3]  = {"gray", "orange", "green"};
6650588280cSMatthew G. Knepley     const char  *deflcolors[4] = {"blue", "cyan", "red", "magenta"};
666552f7358SJed Brown     PetscReal    scale         = 2.0;
66778081901SStefano Zampini     PetscReal    tikzscale     = 1.0;
6680588280cSMatthew G. Knepley     PetscBool    useNumbers    = PETSC_TRUE, useLabels, useColors;
6690588280cSMatthew G. Knepley     double       tcoords[3];
670552f7358SJed Brown     PetscScalar *coords;
6710588280cSMatthew G. Knepley     PetscInt     numLabels, l, numColors, numLColors, dim, depth, cStart, cEnd, c, vStart, vEnd, v, eStart = 0, eEnd = 0, e, p;
672552f7358SJed Brown     PetscMPIInt  rank, size;
6730588280cSMatthew G. Knepley     char         **names, **colors, **lcolors;
674202fd40aSStefano Zampini     PetscBool    plotEdges, flg;
675552f7358SJed Brown 
6760588280cSMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
677552f7358SJed Brown     ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
678c58f1c22SToby Isaac     ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr);
6790588280cSMatthew G. Knepley     numLabels  = PetscMax(numLabels, 10);
6800588280cSMatthew G. Knepley     numColors  = 10;
6810588280cSMatthew G. Knepley     numLColors = 10;
6820588280cSMatthew G. Knepley     ierr = PetscCalloc3(numLabels, &names, numColors, &colors, numLColors, &lcolors);CHKERRQ(ierr);
683c5929fdfSBarry Smith     ierr = PetscOptionsGetReal(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_scale", &scale, NULL);CHKERRQ(ierr);
68478081901SStefano Zampini     ierr = PetscOptionsGetReal(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_tikzscale", &tikzscale, NULL);CHKERRQ(ierr);
685c5929fdfSBarry Smith     ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_numbers", &useNumbers, NULL);CHKERRQ(ierr);
686c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_labels", names, &numLabels, &useLabels);CHKERRQ(ierr);
6870588280cSMatthew G. Knepley     if (!useLabels) numLabels = 0;
688c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_colors", colors, &numColors, &useColors);CHKERRQ(ierr);
6890588280cSMatthew G. Knepley     if (!useColors) {
6900588280cSMatthew G. Knepley       numColors = 3;
6910588280cSMatthew G. Knepley       for (c = 0; c < numColors; ++c) {ierr = PetscStrallocpy(defcolors[c], &colors[c]);CHKERRQ(ierr);}
6920588280cSMatthew G. Knepley     }
693c5929fdfSBarry Smith     ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_lcolors", lcolors, &numLColors, &useColors);CHKERRQ(ierr);
6940588280cSMatthew G. Knepley     if (!useColors) {
6950588280cSMatthew G. Knepley       numLColors = 4;
6960588280cSMatthew G. Knepley       for (c = 0; c < numLColors; ++c) {ierr = PetscStrallocpy(deflcolors[c], &lcolors[c]);CHKERRQ(ierr);}
6970588280cSMatthew G. Knepley     }
698202fd40aSStefano Zampini     plotEdges = (PetscBool)(depth > 1 && useNumbers && dim < 3);
699202fd40aSStefano Zampini     ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_edges", &plotEdges, &flg);CHKERRQ(ierr);
700202fd40aSStefano Zampini     if (flg && plotEdges && depth < dim) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Mesh must be interpolated");
701202fd40aSStefano Zampini     if (depth < dim) plotEdges = PETSC_FALSE;
70282f516ccSBarry Smith     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr);
70382f516ccSBarry Smith     ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size);CHKERRQ(ierr);
704552f7358SJed Brown     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
705770b213bSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\
7060588280cSMatthew G. Knepley \\documentclass[tikz]{standalone}\n\n\
707552f7358SJed Brown \\usepackage{pgflibraryshapes}\n\
708552f7358SJed Brown \\usetikzlibrary{backgrounds}\n\
709552f7358SJed Brown \\usetikzlibrary{arrows}\n\
7100588280cSMatthew G. Knepley \\begin{document}\n");CHKERRQ(ierr);
7110588280cSMatthew G. Knepley     if (size > 1) {
712f738dd31SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "%s for process ", name);CHKERRQ(ierr);
713770b213bSMatthew G Knepley       for (p = 0; p < size; ++p) {
714770b213bSMatthew G Knepley         if (p > 0 && p == size-1) {
715770b213bSMatthew G Knepley           ierr = PetscViewerASCIIPrintf(viewer, ", and ", colors[p%numColors], p);CHKERRQ(ierr);
716770b213bSMatthew G Knepley         } else if (p > 0) {
717770b213bSMatthew G Knepley           ierr = PetscViewerASCIIPrintf(viewer, ", ", colors[p%numColors], p);CHKERRQ(ierr);
718770b213bSMatthew G Knepley         }
719770b213bSMatthew G Knepley         ierr = PetscViewerASCIIPrintf(viewer, "{\\textcolor{%s}%D}", colors[p%numColors], p);CHKERRQ(ierr);
720770b213bSMatthew G Knepley       }
7210588280cSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, ".\n\n\n");CHKERRQ(ierr);
7220588280cSMatthew G. Knepley     }
72378081901SStefano Zampini     ierr = PetscViewerASCIIPrintf(viewer, "\\begin{tikzpicture}[scale = %g,font=\\fontsize{8}{8}\\selectfont]\n", tikzscale);CHKERRQ(ierr);
724552f7358SJed Brown     /* Plot vertices */
725552f7358SJed Brown     ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
726552f7358SJed Brown     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
7274d4c343aSBarry Smith     ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr);
728552f7358SJed Brown     for (v = vStart; v < vEnd; ++v) {
729552f7358SJed Brown       PetscInt  off, dof, d;
7300588280cSMatthew G. Knepley       PetscBool isLabeled = PETSC_FALSE;
731552f7358SJed Brown 
732552f7358SJed Brown       ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
733552f7358SJed Brown       ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr);
7340588280cSMatthew G. Knepley       ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\path (");CHKERRQ(ierr);
735f6dae198SJed Brown       if (PetscUnlikely(dof > 3)) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"coordSection vertex %D has dof %D > 3",v,dof);
7360588280cSMatthew G. Knepley       for (d = 0; d < dof; ++d) {
7370588280cSMatthew G. Knepley         tcoords[d] = (double) (scale*PetscRealPart(coords[off+d]));
738c068d9bbSLisandro Dalcin         tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
7390588280cSMatthew G. Knepley       }
7400588280cSMatthew G. Knepley       /* Rotate coordinates since PGF makes z point out of the page instead of up */
7410588280cSMatthew G. Knepley       if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
742552f7358SJed Brown       for (d = 0; d < dof; ++d) {
743552f7358SJed Brown         if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
7440588280cSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", tcoords[d]);CHKERRQ(ierr);
745552f7358SJed Brown       }
7460588280cSMatthew G. Knepley       color = colors[rank%numColors];
7470588280cSMatthew G. Knepley       for (l = 0; l < numLabels; ++l) {
7480588280cSMatthew G. Knepley         PetscInt val;
749c58f1c22SToby Isaac         ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr);
7500588280cSMatthew G. Knepley         if (val >= 0) {color = lcolors[l%numLColors]; isLabeled = PETSC_TRUE; break;}
7510588280cSMatthew G. Knepley       }
7520588280cSMatthew G. Knepley       if (useNumbers) {
753e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D};\n", v, rank, color, v);CHKERRQ(ierr);
7540588280cSMatthew G. Knepley       } else {
755e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [fill,inner sep=%dpt,shape=circle,color=%s] {};\n", v, rank, !isLabeled ? 1 : 2, color);CHKERRQ(ierr);
7560588280cSMatthew G. Knepley       }
757552f7358SJed Brown     }
758552f7358SJed Brown     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
759552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
760846a3e8bSMatthew G. Knepley     /* Plot cells */
761846a3e8bSMatthew G. Knepley     ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
76278081901SStefano Zampini     ierr = DMPlexGetDepthStratum(dm, 1, &eStart, &eEnd);CHKERRQ(ierr);
763846a3e8bSMatthew G. Knepley     if (dim == 3 || !useNumbers) {
764846a3e8bSMatthew G. Knepley       for (e = eStart; e < eEnd; ++e) {
765846a3e8bSMatthew G. Knepley         const PetscInt *cone;
766846a3e8bSMatthew G. Knepley 
767846a3e8bSMatthew G. Knepley         color = colors[rank%numColors];
768846a3e8bSMatthew G. Knepley         for (l = 0; l < numLabels; ++l) {
769846a3e8bSMatthew G. Knepley           PetscInt val;
770846a3e8bSMatthew G. Knepley           ierr = DMGetLabelValue(dm, names[l], e, &val);CHKERRQ(ierr);
771846a3e8bSMatthew G. Knepley           if (val >= 0) {color = lcolors[l%numLColors]; break;}
772846a3e8bSMatthew G. Knepley         }
773846a3e8bSMatthew G. Knepley         ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr);
774846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] (%D_%d) -- (%D_%d);\n", color, cone[0], rank, cone[1], rank);CHKERRQ(ierr);
775846a3e8bSMatthew G. Knepley       }
776846a3e8bSMatthew G. Knepley     } else {
777846a3e8bSMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {
778846a3e8bSMatthew G. Knepley         PetscInt *closure = NULL;
779846a3e8bSMatthew G. Knepley         PetscInt  closureSize, firstPoint = -1;
780846a3e8bSMatthew G. Knepley 
781846a3e8bSMatthew G. Knepley         ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
782846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] ", colors[rank%numColors]);CHKERRQ(ierr);
783846a3e8bSMatthew G. Knepley         for (p = 0; p < closureSize*2; p += 2) {
784846a3e8bSMatthew G. Knepley           const PetscInt point = closure[p];
785846a3e8bSMatthew G. Knepley 
786846a3e8bSMatthew G. Knepley           if ((point < vStart) || (point >= vEnd)) continue;
787846a3e8bSMatthew G. Knepley           if (firstPoint >= 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- ");CHKERRQ(ierr);}
788846a3e8bSMatthew G. Knepley           ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(%D_%d)", point, rank);CHKERRQ(ierr);
789846a3e8bSMatthew G. Knepley           if (firstPoint < 0) firstPoint = point;
790846a3e8bSMatthew G. Knepley         }
791846a3e8bSMatthew G. Knepley         /* Why doesn't this work? ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- cycle;\n");CHKERRQ(ierr); */
792846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- (%D_%d);\n", firstPoint, rank);CHKERRQ(ierr);
793846a3e8bSMatthew G. Knepley         ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
794846a3e8bSMatthew G. Knepley       }
795846a3e8bSMatthew G. Knepley     }
796846a3e8bSMatthew G. Knepley     ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
797846a3e8bSMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
798846a3e8bSMatthew G. Knepley       double    ccoords[3] = {0.0, 0.0, 0.0};
799846a3e8bSMatthew G. Knepley       PetscBool isLabeled  = PETSC_FALSE;
800846a3e8bSMatthew G. Knepley       PetscInt *closure    = NULL;
801846a3e8bSMatthew G. Knepley       PetscInt  closureSize, dof, d, n = 0;
802846a3e8bSMatthew G. Knepley 
803846a3e8bSMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
804846a3e8bSMatthew G. Knepley       ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\path (");CHKERRQ(ierr);
805846a3e8bSMatthew G. Knepley       for (p = 0; p < closureSize*2; p += 2) {
806846a3e8bSMatthew G. Knepley         const PetscInt point = closure[p];
807846a3e8bSMatthew G. Knepley         PetscInt       off;
808846a3e8bSMatthew G. Knepley 
809846a3e8bSMatthew G. Knepley         if ((point < vStart) || (point >= vEnd)) continue;
810846a3e8bSMatthew G. Knepley         ierr = PetscSectionGetDof(coordSection, point, &dof);CHKERRQ(ierr);
811846a3e8bSMatthew G. Knepley         ierr = PetscSectionGetOffset(coordSection, point, &off);CHKERRQ(ierr);
812846a3e8bSMatthew G. Knepley         for (d = 0; d < dof; ++d) {
813846a3e8bSMatthew G. Knepley           tcoords[d] = (double) (scale*PetscRealPart(coords[off+d]));
814846a3e8bSMatthew G. Knepley           tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
815846a3e8bSMatthew G. Knepley         }
816846a3e8bSMatthew G. Knepley         /* Rotate coordinates since PGF makes z point out of the page instead of up */
817846a3e8bSMatthew G. Knepley         if (dof == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
818846a3e8bSMatthew G. Knepley         for (d = 0; d < dof; ++d) {ccoords[d] += tcoords[d];}
819846a3e8bSMatthew G. Knepley         ++n;
820846a3e8bSMatthew G. Knepley       }
821846a3e8bSMatthew G. Knepley       for (d = 0; d < dof; ++d) {ccoords[d] /= n;}
822846a3e8bSMatthew G. Knepley       ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
823846a3e8bSMatthew G. Knepley       for (d = 0; d < dof; ++d) {
824846a3e8bSMatthew G. Knepley         if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
825846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", ccoords[d]);CHKERRQ(ierr);
826846a3e8bSMatthew G. Knepley       }
827846a3e8bSMatthew G. Knepley       color = colors[rank%numColors];
828846a3e8bSMatthew G. Knepley       for (l = 0; l < numLabels; ++l) {
829846a3e8bSMatthew G. Knepley         PetscInt val;
830846a3e8bSMatthew G. Knepley         ierr = DMGetLabelValue(dm, names[l], c, &val);CHKERRQ(ierr);
831846a3e8bSMatthew G. Knepley         if (val >= 0) {color = lcolors[l%numLColors]; isLabeled = PETSC_TRUE; break;}
832846a3e8bSMatthew G. Knepley       }
833846a3e8bSMatthew G. Knepley       if (useNumbers) {
834846a3e8bSMatthew G. Knepley         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D};\n", c, rank, color, c);CHKERRQ(ierr);
835846a3e8bSMatthew G. Knepley       } else {
836846a3e8bSMatthew 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);
837846a3e8bSMatthew G. Knepley       }
838846a3e8bSMatthew G. Knepley     }
839846a3e8bSMatthew G. Knepley     ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
840552f7358SJed Brown     /* Plot edges */
841202fd40aSStefano Zampini     if (plotEdges) {
842552f7358SJed Brown       ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr);
843552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "\\path\n");CHKERRQ(ierr);
844552f7358SJed Brown       for (e = eStart; e < eEnd; ++e) {
845552f7358SJed Brown         const PetscInt *cone;
846552f7358SJed Brown         PetscInt        coneSize, offA, offB, dof, d;
847552f7358SJed Brown 
848552f7358SJed Brown         ierr = DMPlexGetConeSize(dm, e, &coneSize);CHKERRQ(ierr);
849f347f43bSBarry Smith         if (coneSize != 2) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Edge %D cone should have two vertices, not %D", e, coneSize);
850552f7358SJed Brown         ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr);
851552f7358SJed Brown         ierr = PetscSectionGetDof(coordSection, cone[0], &dof);CHKERRQ(ierr);
852552f7358SJed Brown         ierr = PetscSectionGetOffset(coordSection, cone[0], &offA);CHKERRQ(ierr);
853552f7358SJed Brown         ierr = PetscSectionGetOffset(coordSection, cone[1], &offB);CHKERRQ(ierr);
854552f7358SJed Brown         ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(");CHKERRQ(ierr);
855552f7358SJed Brown         for (d = 0; d < dof; ++d) {
856202fd40aSStefano Zampini           tcoords[d] = (double) (0.5*scale*PetscRealPart(coords[offA+d]+coords[offB+d]));
857c068d9bbSLisandro Dalcin           tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d];
858552f7358SJed Brown         }
8590588280cSMatthew G. Knepley         /* Rotate coordinates since PGF makes z point out of the page instead of up */
8600588280cSMatthew G. Knepley         if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;}
8610588280cSMatthew G. Knepley         for (d = 0; d < dof; ++d) {
8620588280cSMatthew G. Knepley           if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);}
863f347f43bSBarry Smith           ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", (double)tcoords[d]);CHKERRQ(ierr);
8640588280cSMatthew G. Knepley         }
8650588280cSMatthew G. Knepley         color = colors[rank%numColors];
8660588280cSMatthew G. Knepley         for (l = 0; l < numLabels; ++l) {
8670588280cSMatthew G. Knepley           PetscInt val;
868c58f1c22SToby Isaac           ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr);
8690750fff4SMatthew G. Knepley           if (val >= 0) {color = lcolors[l%numLColors]; break;}
8700588280cSMatthew G. Knepley         }
871e4b003c7SBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D} --\n", e, rank, color, e);CHKERRQ(ierr);
872552f7358SJed Brown       }
873552f7358SJed Brown       ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr);
874552f7358SJed Brown       ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
875552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "(0,0);\n");CHKERRQ(ierr);
8760588280cSMatthew G. Knepley     }
877552f7358SJed Brown     ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
8784d4c343aSBarry Smith     ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr);
8790588280cSMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\\end{tikzpicture}\n");CHKERRQ(ierr);
880770b213bSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\\end{document}\n", name);CHKERRQ(ierr);
8810588280cSMatthew G. Knepley     for (l = 0; l < numLabels;  ++l) {ierr = PetscFree(names[l]);CHKERRQ(ierr);}
8820588280cSMatthew G. Knepley     for (c = 0; c < numColors;  ++c) {ierr = PetscFree(colors[c]);CHKERRQ(ierr);}
8830588280cSMatthew G. Knepley     for (c = 0; c < numLColors; ++c) {ierr = PetscFree(lcolors[c]);CHKERRQ(ierr);}
8840588280cSMatthew G. Knepley     ierr = PetscFree3(names, colors, lcolors);CHKERRQ(ierr);
885552f7358SJed Brown   } else {
88682f516ccSBarry Smith     MPI_Comm    comm;
887834065abSMatthew G. Knepley     PetscInt   *sizes, *hybsizes;
888f73eea6eSMatthew G. Knepley     PetscInt    locDepth, depth, cellHeight, dim, d, pMax[4];
889552f7358SJed Brown     PetscInt    pStart, pEnd, p;
890a57dd577SMatthew G Knepley     PetscInt    numLabels, l;
8911143a3c0SMatthew G. Knepley     const char *name;
892552f7358SJed Brown     PetscMPIInt size;
893552f7358SJed Brown 
89482f516ccSBarry Smith     ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
895552f7358SJed Brown     ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
896c73cfb54SMatthew G. Knepley     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
897f73eea6eSMatthew G. Knepley     ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
8985f64d76eSMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr);
899f73eea6eSMatthew G. Knepley     if (name) {ierr = PetscViewerASCIIPrintf(viewer, "%s in %D dimension%s:\n", name, dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
900f73eea6eSMatthew G. Knepley     else      {ierr = PetscViewerASCIIPrintf(viewer, "Mesh in %D dimension%s:\n", dim, dim == 1 ? "" : "s");CHKERRQ(ierr);}
901f73eea6eSMatthew G. Knepley     if (cellHeight) {ierr = PetscViewerASCIIPrintf(viewer, "  Cells are at height %D\n", cellHeight);CHKERRQ(ierr);}
902552f7358SJed Brown     ierr = DMPlexGetDepth(dm, &locDepth);CHKERRQ(ierr);
903b2566f29SBarry Smith     ierr = MPIU_Allreduce(&locDepth, &depth, 1, MPIU_INT, MPI_MAX, comm);CHKERRQ(ierr);
904a04427b4SStefano Zampini     ierr = DMPlexGetHybridBounds(dm, &pMax[depth], depth > 0 ? &pMax[depth-1] : NULL, depth > 1 ? &pMax[depth - 2] : NULL, &pMax[0]);CHKERRQ(ierr);
905b0138d5dSStefano Zampini     ierr = PetscCalloc2(size,&sizes,size,&hybsizes);CHKERRQ(ierr);
906552f7358SJed Brown     if (depth == 1) {
907552f7358SJed Brown       ierr = DMPlexGetDepthStratum(dm, 0, &pStart, &pEnd);CHKERRQ(ierr);
908552f7358SJed Brown       pEnd = pEnd - pStart;
909a04427b4SStefano Zampini       pMax[0] -= pStart;
910552f7358SJed Brown       ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
911a04427b4SStefano Zampini       ierr = MPI_Gather(&pMax[0], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
912f347f43bSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer, "  %d-cells:", 0);CHKERRQ(ierr);
913a04427b4SStefano Zampini       for (p = 0; p < size; ++p) {
914a04427b4SStefano Zampini         if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);}
915a04427b4SStefano Zampini         else                  {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);}
916a04427b4SStefano Zampini       }
917552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
918552f7358SJed Brown       ierr = DMPlexGetHeightStratum(dm, 0, &pStart, &pEnd);CHKERRQ(ierr);
919552f7358SJed Brown       pEnd = pEnd - pStart;
920a04427b4SStefano Zampini       pMax[depth] -= pStart;
921552f7358SJed Brown       ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
922a04427b4SStefano Zampini       ierr = MPI_Gather(&pMax[depth], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
923552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "  %D-cells:", dim);CHKERRQ(ierr);
924a04427b4SStefano Zampini       for (p = 0; p < size; ++p) {
925a04427b4SStefano Zampini         if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);}
926a04427b4SStefano Zampini         else                  {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);}
927a04427b4SStefano Zampini       }
928552f7358SJed Brown       ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
929552f7358SJed Brown     } else {
930cbb7f117SMark Adams       PetscMPIInt rank;
931cbb7f117SMark Adams       ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
932552f7358SJed Brown       for (d = 0; d <= dim; d++) {
933552f7358SJed Brown         ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr);
934834065abSMatthew G. Knepley         pEnd    -= pStart;
935834065abSMatthew G. Knepley         pMax[d] -= pStart;
936552f7358SJed Brown         ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
937834065abSMatthew G. Knepley         ierr = MPI_Gather(&pMax[d], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
938552f7358SJed Brown         ierr = PetscViewerASCIIPrintf(viewer, "  %D-cells:", d);CHKERRQ(ierr);
939834065abSMatthew G. Knepley         for (p = 0; p < size; ++p) {
940cbb7f117SMark Adams           if (!rank) {
941834065abSMatthew G. Knepley             if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);}
942834065abSMatthew G. Knepley             else                  {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);}
943834065abSMatthew G. Knepley           }
944cbb7f117SMark Adams         }
945552f7358SJed Brown         ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
946552f7358SJed Brown       }
947552f7358SJed Brown     }
948834065abSMatthew G. Knepley     ierr = PetscFree2(sizes,hybsizes);CHKERRQ(ierr);
949c58f1c22SToby Isaac     ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr);
950a57dd577SMatthew G Knepley     if (numLabels) {ierr = PetscViewerASCIIPrintf(viewer, "Labels:\n");CHKERRQ(ierr);}
951a57dd577SMatthew G Knepley     for (l = 0; l < numLabels; ++l) {
952a57dd577SMatthew G Knepley       DMLabel         label;
953a57dd577SMatthew G Knepley       const char     *name;
954a57dd577SMatthew G Knepley       IS              valueIS;
955a57dd577SMatthew G Knepley       const PetscInt *values;
956a57dd577SMatthew G Knepley       PetscInt        numValues, v;
957a57dd577SMatthew G Knepley 
958c58f1c22SToby Isaac       ierr = DMGetLabelName(dm, l, &name);CHKERRQ(ierr);
959c58f1c22SToby Isaac       ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
960a57dd577SMatthew G Knepley       ierr = DMLabelGetNumValues(label, &numValues);CHKERRQ(ierr);
961d72f73ffSMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "  %s: %D strata with value/size (", name, numValues);CHKERRQ(ierr);
962a57dd577SMatthew G Knepley       ierr = DMLabelGetValueIS(label, &valueIS);CHKERRQ(ierr);
963a57dd577SMatthew G Knepley       ierr = ISGetIndices(valueIS, &values);CHKERRQ(ierr);
964120dea56SMatthew G. Knepley       ierr = PetscViewerASCIIUseTabs(viewer, PETSC_FALSE);CHKERRQ(ierr);
965a57dd577SMatthew G Knepley       for (v = 0; v < numValues; ++v) {
966a57dd577SMatthew G Knepley         PetscInt size;
967a57dd577SMatthew G Knepley 
968a57dd577SMatthew G Knepley         ierr = DMLabelGetStratumSize(label, values[v], &size);CHKERRQ(ierr);
969a57dd577SMatthew G Knepley         if (v > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);}
970d72f73ffSMatthew G. Knepley         ierr = PetscViewerASCIIPrintf(viewer, "%D (%D)", values[v], size);CHKERRQ(ierr);
971a57dd577SMatthew G Knepley       }
972a57dd577SMatthew G Knepley       ierr = PetscViewerASCIIPrintf(viewer, ")\n");CHKERRQ(ierr);
973120dea56SMatthew G. Knepley       ierr = PetscViewerASCIIUseTabs(viewer, PETSC_TRUE);CHKERRQ(ierr);
974a57dd577SMatthew G Knepley       ierr = ISRestoreIndices(valueIS, &values);CHKERRQ(ierr);
9754d41221fSMatthew G Knepley       ierr = ISDestroy(&valueIS);CHKERRQ(ierr);
976a57dd577SMatthew G Knepley     }
977a8fb8f29SToby Isaac     ierr = DMGetCoarseDM(dm, &cdm);CHKERRQ(ierr);
9788e7ff633SMatthew G. Knepley     if (cdm) {
9798e7ff633SMatthew G. Knepley       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
9808e7ff633SMatthew G. Knepley       ierr = DMPlexView_Ascii(cdm, viewer);CHKERRQ(ierr);
9818e7ff633SMatthew G. Knepley       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
9828e7ff633SMatthew G. Knepley     }
983552f7358SJed Brown   }
984552f7358SJed Brown   PetscFunctionReturn(0);
985552f7358SJed Brown }
986552f7358SJed Brown 
9877cd05799SMatthew G. Knepley static PetscErrorCode DMPlexView_Draw(DM dm, PetscViewer viewer)
988e412dcbdSMatthew G. Knepley {
989e412dcbdSMatthew G. Knepley   PetscDraw          draw;
990e412dcbdSMatthew G. Knepley   DM                 cdm;
991e412dcbdSMatthew G. Knepley   PetscSection       coordSection;
992e412dcbdSMatthew G. Knepley   Vec                coordinates;
993e412dcbdSMatthew G. Knepley   const PetscScalar *coords;
99429494db1SLisandro Dalcin   PetscReal          xyl[2],xyr[2],bound[4] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL};
995e412dcbdSMatthew G. Knepley   PetscBool          isnull;
996e412dcbdSMatthew G. Knepley   PetscInt           dim, vStart, vEnd, cStart, cEnd, c, N;
997cf3064d3SMatthew G. Knepley   PetscMPIInt        rank;
998e412dcbdSMatthew G. Knepley   PetscErrorCode     ierr;
999e412dcbdSMatthew G. Knepley 
1000e412dcbdSMatthew G. Knepley   PetscFunctionBegin;
1001e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
1002e412dcbdSMatthew G. Knepley   if (dim != 2) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Cannot draw meshes of dimension %D", dim);
1003e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
1004e87a4003SBarry Smith   ierr = DMGetSection(cdm, &coordSection);CHKERRQ(ierr);
1005e412dcbdSMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
1006e412dcbdSMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
1007e412dcbdSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1008e412dcbdSMatthew G. Knepley 
1009e412dcbdSMatthew G. Knepley   ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr);
1010e412dcbdSMatthew G. Knepley   ierr = PetscDrawIsNull(draw, &isnull);CHKERRQ(ierr);
1011e412dcbdSMatthew G. Knepley   if (isnull) PetscFunctionReturn(0);
1012e412dcbdSMatthew G. Knepley   ierr = PetscDrawSetTitle(draw, "Mesh");CHKERRQ(ierr);
1013e412dcbdSMatthew G. Knepley 
1014e412dcbdSMatthew G. Knepley   ierr = VecGetLocalSize(coordinates, &N);CHKERRQ(ierr);
1015e412dcbdSMatthew G. Knepley   ierr = VecGetArrayRead(coordinates, &coords);CHKERRQ(ierr);
1016e412dcbdSMatthew G. Knepley   for (c = 0; c < N; c += dim) {
10170c81f2a8SMatthew G. Knepley     bound[0] = PetscMin(bound[0], PetscRealPart(coords[c]));   bound[2] = PetscMax(bound[2], PetscRealPart(coords[c]));
10180c81f2a8SMatthew G. Knepley     bound[1] = PetscMin(bound[1], PetscRealPart(coords[c+1])); bound[3] = PetscMax(bound[3], PetscRealPart(coords[c+1]));
1019e412dcbdSMatthew G. Knepley   }
1020e412dcbdSMatthew G. Knepley   ierr = VecRestoreArrayRead(coordinates, &coords);CHKERRQ(ierr);
102129494db1SLisandro Dalcin   ierr = MPIU_Allreduce(&bound[0],xyl,2,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
102229494db1SLisandro Dalcin   ierr = MPIU_Allreduce(&bound[2],xyr,2,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
102329494db1SLisandro Dalcin   ierr = PetscDrawSetCoordinates(draw, xyl[0], xyl[1], xyr[0], xyr[1]);CHKERRQ(ierr);
1024e412dcbdSMatthew G. Knepley   ierr = PetscDrawClear(draw);CHKERRQ(ierr);
1025e412dcbdSMatthew G. Knepley 
1026cf3064d3SMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr);
1027cf3064d3SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1028cf3064d3SMatthew G. Knepley     PetscScalar *coords = NULL;
1029cf3064d3SMatthew G. Knepley     PetscInt     numCoords,coneSize;
1030cf3064d3SMatthew G. Knepley 
1031cf3064d3SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
1032cf3064d3SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
1033cf3064d3SMatthew G. Knepley     switch (coneSize) {
1034cf3064d3SMatthew G. Knepley     case 3:
1035cf3064d3SMatthew G. Knepley       ierr = PetscDrawTriangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]),
1036cf3064d3SMatthew G. Knepley                                PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1037cf3064d3SMatthew G. Knepley                                PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1038cf3064d3SMatthew G. Knepley                                PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2);CHKERRQ(ierr);
1039cf3064d3SMatthew G. Knepley       break;
1040cf3064d3SMatthew G. Knepley     case 4:
1041cf3064d3SMatthew G. Knepley       ierr = PetscDrawRectangle(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[4]), PetscRealPart(coords[5]),
1042cf3064d3SMatthew G. Knepley                                 PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1043cf3064d3SMatthew G. Knepley                                 PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1044cf3064d3SMatthew G. Knepley                                 PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2,
1045cf3064d3SMatthew G. Knepley                                 PETSC_DRAW_WHITE + rank % (PETSC_DRAW_BASIC_COLORS-2) + 2);CHKERRQ(ierr);
1046cf3064d3SMatthew G. Knepley       break;
1047cf3064d3SMatthew G. Knepley     default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells with %D facets", coneSize);
1048cf3064d3SMatthew G. Knepley     }
1049cf3064d3SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
1050cf3064d3SMatthew G. Knepley   }
1051e412dcbdSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1052e412dcbdSMatthew G. Knepley     PetscScalar *coords = NULL;
105329494db1SLisandro Dalcin     PetscInt     numCoords,coneSize;
1054e412dcbdSMatthew G. Knepley 
105529494db1SLisandro Dalcin     ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
1056e412dcbdSMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
105729494db1SLisandro Dalcin     switch (coneSize) {
105829494db1SLisandro Dalcin     case 3:
10590c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
10600c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
10610c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1062e412dcbdSMatthew G. Knepley       break;
106329494db1SLisandro Dalcin     case 4:
10640c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
10650c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
10660c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[6]), PetscRealPart(coords[7]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
10670c81f2a8SMatthew G. Knepley       ierr = PetscDrawLine(draw, PetscRealPart(coords[6]), PetscRealPart(coords[7]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr);
1068e412dcbdSMatthew G. Knepley       break;
106929494db1SLisandro Dalcin     default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells with %D facets", coneSize);
1070e412dcbdSMatthew G. Knepley     }
1071e412dcbdSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr);
1072e412dcbdSMatthew G. Knepley   }
1073e412dcbdSMatthew G. Knepley   ierr = PetscDrawFlush(draw);CHKERRQ(ierr);
1074e412dcbdSMatthew G. Knepley   ierr = PetscDrawPause(draw);CHKERRQ(ierr);
1075e412dcbdSMatthew G. Knepley   ierr = PetscDrawSave(draw);CHKERRQ(ierr);
1076e412dcbdSMatthew G. Knepley   PetscFunctionReturn(0);
1077e412dcbdSMatthew G. Knepley }
1078e412dcbdSMatthew G. Knepley 
1079552f7358SJed Brown PetscErrorCode DMView_Plex(DM dm, PetscViewer viewer)
1080552f7358SJed Brown {
1081e655db49SSatish Balay   PetscBool      iascii, ishdf5, isvtk, isdraw, flg, isglvis;
1082002a2709SMatthew G. Knepley   char           name[PETSC_MAX_PATH_LEN];
1083552f7358SJed Brown   PetscErrorCode ierr;
1084552f7358SJed Brown 
1085552f7358SJed Brown   PetscFunctionBegin;
1086552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1087552f7358SJed Brown   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
1088552f7358SJed Brown   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERASCII, &iascii);CHKERRQ(ierr);
1089fcf6c8fdSToby Isaac   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK,   &isvtk);CHKERRQ(ierr);
1090c6ccd67eSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,  &ishdf5);CHKERRQ(ierr);
1091e412dcbdSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW,  &isdraw);CHKERRQ(ierr);
10928135c375SStefano Zampini   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS, &isglvis);CHKERRQ(ierr);
1093552f7358SJed Brown   if (iascii) {
10948135c375SStefano Zampini     PetscViewerFormat format;
10958135c375SStefano Zampini     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
10968135c375SStefano Zampini     if (format == PETSC_VIEWER_ASCII_GLVIS) {
10978135c375SStefano Zampini       ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr);
10988135c375SStefano Zampini     } else {
1099552f7358SJed Brown       ierr = DMPlexView_Ascii(dm, viewer);CHKERRQ(ierr);
11008135c375SStefano Zampini     }
1101c6ccd67eSMatthew G. Knepley   } else if (ishdf5) {
1102c6ccd67eSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
110339d25373SMatthew G. Knepley     ierr = DMPlexView_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
1104c6ccd67eSMatthew G. Knepley #else
1105c6ccd67eSMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1106552f7358SJed Brown #endif
1107e412dcbdSMatthew G. Knepley   } else if (isvtk) {
1108fcf6c8fdSToby Isaac     ierr = DMPlexVTKWriteAll((PetscObject) dm,viewer);CHKERRQ(ierr);
1109e412dcbdSMatthew G. Knepley   } else if (isdraw) {
1110e412dcbdSMatthew G. Knepley     ierr = DMPlexView_Draw(dm, viewer);CHKERRQ(ierr);
11118135c375SStefano Zampini   } else if (isglvis) {
11128135c375SStefano Zampini     ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr);
111362201deeSVaclav Hapla   } else {
1114a94aea51SVaclav Hapla     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex writing", ((PetscObject)viewer)->type_name);
1115fcf6c8fdSToby Isaac   }
1116cb3ba0daSMatthew G. Knepley   /* Optionally view the partition */
1117cb3ba0daSMatthew G. Knepley   ierr = PetscOptionsHasName(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_partition_view", &flg);CHKERRQ(ierr);
1118cb3ba0daSMatthew G. Knepley   if (flg) {
1119cb3ba0daSMatthew G. Knepley     Vec ranks;
1120cb3ba0daSMatthew G. Knepley     ierr = DMPlexCreateRankField(dm, &ranks);CHKERRQ(ierr);
1121cb3ba0daSMatthew G. Knepley     ierr = VecView(ranks, viewer);CHKERRQ(ierr);
1122cb3ba0daSMatthew G. Knepley     ierr = VecDestroy(&ranks);CHKERRQ(ierr);
1123cb3ba0daSMatthew G. Knepley   }
1124002a2709SMatthew G. Knepley   /* Optionally view a label */
1125002a2709SMatthew G. Knepley   ierr = PetscOptionsGetString(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_label_view", name, PETSC_MAX_PATH_LEN, &flg);CHKERRQ(ierr);
1126002a2709SMatthew G. Knepley   if (flg) {
1127002a2709SMatthew G. Knepley     DMLabel label;
1128002a2709SMatthew G. Knepley     Vec     val;
1129002a2709SMatthew G. Knepley 
1130002a2709SMatthew G. Knepley     ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
1131002a2709SMatthew 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);
1132002a2709SMatthew G. Knepley     ierr = DMPlexCreateLabelField(dm, label, &val);CHKERRQ(ierr);
1133002a2709SMatthew G. Knepley     ierr = VecView(val, viewer);CHKERRQ(ierr);
1134002a2709SMatthew G. Knepley     ierr = VecDestroy(&val);CHKERRQ(ierr);
1135002a2709SMatthew G. Knepley   }
1136552f7358SJed Brown   PetscFunctionReturn(0);
1137552f7358SJed Brown }
1138552f7358SJed Brown 
11392c40f234SMatthew G. Knepley PetscErrorCode DMLoad_Plex(DM dm, PetscViewer viewer)
11402c40f234SMatthew G. Knepley {
1141d4f5a9a0SVaclav Hapla   PetscBool      ishdf5;
11422c40f234SMatthew G. Knepley   PetscErrorCode ierr;
11432c40f234SMatthew G. Knepley 
11442c40f234SMatthew G. Knepley   PetscFunctionBegin;
11452c40f234SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
11462c40f234SMatthew G. Knepley   PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2);
11472c40f234SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5,   &ishdf5);CHKERRQ(ierr);
1148d4f5a9a0SVaclav Hapla   if (ishdf5) {
11492c40f234SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
11509c48423bSVaclav Hapla     PetscViewerFormat format;
11519c48423bSVaclav Hapla     ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr);
11529c48423bSVaclav Hapla     if (format == PETSC_VIEWER_HDF5_XDMF || format == PETSC_VIEWER_HDF5_VIZ) {
11539c48423bSVaclav Hapla       ierr = DMPlexLoad_HDF5_Xdmf_Internal(dm, viewer);CHKERRQ(ierr);
11549c48423bSVaclav Hapla     } else {
115539d25373SMatthew G. Knepley       ierr = DMPlexLoad_HDF5_Internal(dm, viewer);CHKERRQ(ierr);
11569c48423bSVaclav Hapla     }
11572c40f234SMatthew G. Knepley #else
11582c40f234SMatthew G. Knepley     SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5");
1159552f7358SJed Brown #endif
1160d4f5a9a0SVaclav Hapla   } else {
1161d4f5a9a0SVaclav Hapla     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex loading", ((PetscObject)viewer)->type_name);
1162552f7358SJed Brown   }
1163552f7358SJed Brown   PetscFunctionReturn(0);
1164552f7358SJed Brown }
1165552f7358SJed Brown 
1166552f7358SJed Brown PetscErrorCode DMDestroy_Plex(DM dm)
1167552f7358SJed Brown {
1168552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1169552f7358SJed Brown   PetscErrorCode ierr;
1170552f7358SJed Brown 
1171552f7358SJed Brown   PetscFunctionBegin;
11728135c375SStefano Zampini   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMSetUpGLVisViewer_C",NULL);CHKERRQ(ierr);
11738135c375SStefano Zampini   ierr = PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertBoundaryValues_C", NULL);CHKERRQ(ierr);
11740d644c17SKarl Rupp   if (--mesh->refct > 0) PetscFunctionReturn(0);
1175552f7358SJed Brown   ierr = PetscSectionDestroy(&mesh->coneSection);CHKERRQ(ierr);
1176552f7358SJed Brown   ierr = PetscFree(mesh->cones);CHKERRQ(ierr);
1177552f7358SJed Brown   ierr = PetscFree(mesh->coneOrientations);CHKERRQ(ierr);
1178552f7358SJed Brown   ierr = PetscSectionDestroy(&mesh->supportSection);CHKERRQ(ierr);
1179be36d101SStefano Zampini   ierr = PetscSectionDestroy(&mesh->subdomainSection);CHKERRQ(ierr);
1180552f7358SJed Brown   ierr = PetscFree(mesh->supports);CHKERRQ(ierr);
1181552f7358SJed Brown   ierr = PetscFree(mesh->facesTmp);CHKERRQ(ierr);
1182d9deefdfSMatthew G. Knepley   ierr = PetscFree(mesh->tetgenOpts);CHKERRQ(ierr);
1183d9deefdfSMatthew G. Knepley   ierr = PetscFree(mesh->triangleOpts);CHKERRQ(ierr);
118477623264SMatthew G. Knepley   ierr = PetscPartitionerDestroy(&mesh->partitioner);CHKERRQ(ierr);
1185a89082eeSMatthew G Knepley   ierr = DMLabelDestroy(&mesh->subpointMap);CHKERRQ(ierr);
1186552f7358SJed Brown   ierr = ISDestroy(&mesh->globalVertexNumbers);CHKERRQ(ierr);
1187552f7358SJed Brown   ierr = ISDestroy(&mesh->globalCellNumbers);CHKERRQ(ierr);
1188a68b90caSToby Isaac   ierr = PetscSectionDestroy(&mesh->anchorSection);CHKERRQ(ierr);
1189a68b90caSToby Isaac   ierr = ISDestroy(&mesh->anchorIS);CHKERRQ(ierr);
1190d961a43aSToby Isaac   ierr = PetscSectionDestroy(&mesh->parentSection);CHKERRQ(ierr);
1191d961a43aSToby Isaac   ierr = PetscFree(mesh->parents);CHKERRQ(ierr);
1192d961a43aSToby Isaac   ierr = PetscFree(mesh->childIDs);CHKERRQ(ierr);
1193d961a43aSToby Isaac   ierr = PetscSectionDestroy(&mesh->childSection);CHKERRQ(ierr);
1194d961a43aSToby Isaac   ierr = PetscFree(mesh->children);CHKERRQ(ierr);
1195d6a7ad0dSToby Isaac   ierr = DMDestroy(&mesh->referenceTree);CHKERRQ(ierr);
1196fec49543SMatthew G. Knepley   ierr = PetscGridHashDestroy(&mesh->lbox);CHKERRQ(ierr);
1197552f7358SJed Brown   /* This was originally freed in DMDestroy(), but that prevents reference counting of backend objects */
1198552f7358SJed Brown   ierr = PetscFree(mesh);CHKERRQ(ierr);
1199552f7358SJed Brown   PetscFunctionReturn(0);
1200552f7358SJed Brown }
1201552f7358SJed Brown 
1202b412c318SBarry Smith PetscErrorCode DMCreateMatrix_Plex(DM dm, Mat *J)
1203552f7358SJed Brown {
12048d1174e4SMatthew G. Knepley   PetscSection           sectionGlobal;
1205acd755d7SMatthew G. Knepley   PetscInt               bs = -1, mbs;
1206552f7358SJed Brown   PetscInt               localSize;
1207837628f4SStefano Zampini   PetscBool              isShell, isBlock, isSeqBlock, isMPIBlock, isSymBlock, isSymSeqBlock, isSymMPIBlock, isMatIS;
1208552f7358SJed Brown   PetscErrorCode         ierr;
1209b412c318SBarry Smith   MatType                mtype;
12101428887cSShri Abhyankar   ISLocalToGlobalMapping ltog;
1211552f7358SJed Brown 
1212552f7358SJed Brown   PetscFunctionBegin;
1213607a6623SBarry Smith   ierr = MatInitializePackage();CHKERRQ(ierr);
1214b412c318SBarry Smith   mtype = dm->mattype;
1215e87a4003SBarry Smith   ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
1216552f7358SJed Brown   /* ierr = PetscSectionGetStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr); */
1217552f7358SJed Brown   ierr = PetscSectionGetConstrainedStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr);
121882f516ccSBarry Smith   ierr = MatCreate(PetscObjectComm((PetscObject)dm), J);CHKERRQ(ierr);
1219552f7358SJed Brown   ierr = MatSetSizes(*J, localSize, localSize, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
1220552f7358SJed Brown   ierr = MatSetType(*J, mtype);CHKERRQ(ierr);
1221552f7358SJed Brown   ierr = MatSetFromOptions(*J);CHKERRQ(ierr);
1222acd755d7SMatthew G. Knepley   ierr = MatGetBlockSize(*J, &mbs);CHKERRQ(ierr);
1223acd755d7SMatthew G. Knepley   if (mbs > 1) bs = mbs;
1224552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSHELL, &isShell);CHKERRQ(ierr);
1225552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATBAIJ, &isBlock);CHKERRQ(ierr);
1226552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSEQBAIJ, &isSeqBlock);CHKERRQ(ierr);
1227552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATMPIBAIJ, &isMPIBlock);CHKERRQ(ierr);
1228552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSBAIJ, &isSymBlock);CHKERRQ(ierr);
1229552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATSEQSBAIJ, &isSymSeqBlock);CHKERRQ(ierr);
1230552f7358SJed Brown   ierr = PetscStrcmp(mtype, MATMPISBAIJ, &isSymMPIBlock);CHKERRQ(ierr);
1231837628f4SStefano Zampini   ierr = PetscStrcmp(mtype, MATIS, &isMatIS);CHKERRQ(ierr);
1232552f7358SJed Brown   if (!isShell) {
1233be36d101SStefano Zampini     PetscSection subSection;
1234837628f4SStefano Zampini     PetscBool    fillMatrix = (PetscBool)(!dm->prealloc_only && !isMatIS);
12350be3e97aSMatthew G. Knepley     PetscInt    *dnz, *onz, *dnzu, *onzu, bsLocal[2], bsMinMax[2], *ltogidx, lsize;
1236fad22124SMatthew G Knepley     PetscInt     pStart, pEnd, p, dof, cdof;
1237552f7358SJed Brown 
123800140cc3SStefano Zampini     /* Set localtoglobalmapping on the matrix for MatSetValuesLocal() to work (it also creates the local matrices in case of MATIS) */
1239be36d101SStefano Zampini     if (isMatIS) { /* need a different l2g map than the one computed by DMGetLocalToGlobalMapping */
1240be36d101SStefano Zampini       PetscSection section;
1241be36d101SStefano Zampini       PetscInt     size;
1242be36d101SStefano Zampini 
1243e87a4003SBarry Smith       ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
1244be36d101SStefano Zampini       ierr = PetscSectionGetStorageSize(section, &size);CHKERRQ(ierr);
1245be36d101SStefano Zampini       ierr = PetscMalloc1(size,&ltogidx);CHKERRQ(ierr);
1246be36d101SStefano Zampini       ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr);
1247be36d101SStefano Zampini     } else {
124800140cc3SStefano Zampini       ierr = DMGetLocalToGlobalMapping(dm,&ltog);CHKERRQ(ierr);
1249be36d101SStefano Zampini     }
1250552f7358SJed Brown     ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr);
1251be36d101SStefano Zampini     for (p = pStart, lsize = 0; p < pEnd; ++p) {
1252a9d99c84SMatthew G. Knepley       PetscInt bdof;
1253a9d99c84SMatthew G. Knepley 
1254552f7358SJed Brown       ierr = PetscSectionGetDof(sectionGlobal, p, &dof);CHKERRQ(ierr);
1255fad22124SMatthew G Knepley       ierr = PetscSectionGetConstraintDof(sectionGlobal, p, &cdof);CHKERRQ(ierr);
12561d17a0a3SMatthew G. Knepley       dof  = dof < 0 ? -(dof+1) : dof;
12571d17a0a3SMatthew G. Knepley       bdof = cdof && (dof-cdof) ? 1 : dof;
12581d17a0a3SMatthew G. Knepley       if (dof) {
12591d17a0a3SMatthew G. Knepley         if (bs < 0)          {bs = bdof;}
1260be36d101SStefano Zampini         else if (bs != bdof) {bs = 1; if (!isMatIS) break;}
1261be36d101SStefano Zampini       }
1262be36d101SStefano Zampini       if (isMatIS) {
1263be36d101SStefano Zampini         PetscInt loff,c,off;
1264be36d101SStefano Zampini         ierr = PetscSectionGetOffset(subSection, p, &loff);CHKERRQ(ierr);
1265be36d101SStefano Zampini         ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr);
1266be36d101SStefano Zampini         for (c = 0; c < dof-cdof; ++c, ++lsize) ltogidx[loff+c] = off > -1 ? off+c : -(off+1)+c;
1267552f7358SJed Brown       }
12682a28c762SMatthew G Knepley     }
12692a28c762SMatthew G Knepley     /* Must have same blocksize on all procs (some might have no points) */
12700be3e97aSMatthew G. Knepley     bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
12710be3e97aSMatthew G. Knepley     ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
12720be3e97aSMatthew G. Knepley     if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
12730be3e97aSMatthew G. Knepley     else                            {bs = bsMinMax[0];}
12744fa26246SMatthew G. Knepley     bs = bs < 0 ? 1 : bs;
1275be36d101SStefano Zampini     if (isMatIS) {
12764fa26246SMatthew G. Knepley       PetscInt l;
12774fa26246SMatthew G. Knepley       /* Must reduce indices by blocksize */
12784fa26246SMatthew G. Knepley       if (bs > 1) for (l = 0; l < lsize; ++l) ltogidx[l] /= bs;
12794fa26246SMatthew G. Knepley       ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, lsize, ltogidx, PETSC_OWN_POINTER, &ltog);CHKERRQ(ierr);
1280be36d101SStefano Zampini     }
1281be36d101SStefano Zampini     ierr = MatSetLocalToGlobalMapping(*J,ltog,ltog);CHKERRQ(ierr);
1282be36d101SStefano Zampini     if (isMatIS) {
1283be36d101SStefano Zampini       ierr = ISLocalToGlobalMappingDestroy(&ltog);CHKERRQ(ierr);
1284be36d101SStefano Zampini     }
12851795a4d1SJed Brown     ierr = PetscCalloc4(localSize/bs, &dnz, localSize/bs, &onz, localSize/bs, &dnzu, localSize/bs, &onzu);CHKERRQ(ierr);
12868d1174e4SMatthew G. Knepley     ierr = DMPlexPreallocateOperator(dm, bs, dnz, onz, dnzu, onzu, *J, fillMatrix);CHKERRQ(ierr);
1287552f7358SJed Brown     ierr = PetscFree4(dnz, onz, dnzu, onzu);CHKERRQ(ierr);
1288552f7358SJed Brown   }
1289b1f74addSMatthew G. Knepley   ierr = MatSetDM(*J, dm);CHKERRQ(ierr);
1290552f7358SJed Brown   PetscFunctionReturn(0);
1291552f7358SJed Brown }
1292552f7358SJed Brown 
12937cd05799SMatthew G. Knepley /*@
1294a8f00d21SMatthew G. Knepley   DMPlexGetSubdomainSection - Returns the section associated with the subdomain
1295be36d101SStefano Zampini 
1296be36d101SStefano Zampini   Not collective
1297be36d101SStefano Zampini 
1298be36d101SStefano Zampini   Input Parameter:
1299be36d101SStefano Zampini . mesh - The DMPlex
1300be36d101SStefano Zampini 
1301be36d101SStefano Zampini   Output Parameters:
1302be36d101SStefano Zampini . subsection - The subdomain section
1303be36d101SStefano Zampini 
1304be36d101SStefano Zampini   Level: developer
1305be36d101SStefano Zampini 
1306be36d101SStefano Zampini .seealso:
13077cd05799SMatthew G. Knepley @*/
1308be36d101SStefano Zampini PetscErrorCode DMPlexGetSubdomainSection(DM dm, PetscSection *subsection)
1309be36d101SStefano Zampini {
1310be36d101SStefano Zampini   DM_Plex       *mesh = (DM_Plex*) dm->data;
1311be36d101SStefano Zampini   PetscErrorCode ierr;
1312be36d101SStefano Zampini 
1313be36d101SStefano Zampini   PetscFunctionBegin;
1314be36d101SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1315be36d101SStefano Zampini   if (!mesh->subdomainSection) {
1316be36d101SStefano Zampini     PetscSection section;
1317be36d101SStefano Zampini     PetscSF      sf;
1318be36d101SStefano Zampini 
1319be36d101SStefano Zampini     ierr = PetscSFCreate(PETSC_COMM_SELF,&sf);CHKERRQ(ierr);
1320e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
1321be36d101SStefano Zampini     ierr = PetscSectionCreateGlobalSection(section,sf,PETSC_FALSE,PETSC_TRUE,&mesh->subdomainSection);CHKERRQ(ierr);
1322be36d101SStefano Zampini     ierr = PetscSFDestroy(&sf);CHKERRQ(ierr);
1323be36d101SStefano Zampini   }
1324be36d101SStefano Zampini   *subsection = mesh->subdomainSection;
1325be36d101SStefano Zampini   PetscFunctionReturn(0);
1326be36d101SStefano Zampini }
1327be36d101SStefano Zampini 
1328552f7358SJed Brown /*@
1329552f7358SJed Brown   DMPlexGetChart - Return the interval for all mesh points [pStart, pEnd)
1330552f7358SJed Brown 
1331552f7358SJed Brown   Not collective
1332552f7358SJed Brown 
1333552f7358SJed Brown   Input Parameter:
1334552f7358SJed Brown . mesh - The DMPlex
1335552f7358SJed Brown 
1336552f7358SJed Brown   Output Parameters:
1337552f7358SJed Brown + pStart - The first mesh point
1338552f7358SJed Brown - pEnd   - The upper bound for mesh points
1339552f7358SJed Brown 
1340552f7358SJed Brown   Level: beginner
1341552f7358SJed Brown 
1342552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart()
1343552f7358SJed Brown @*/
1344552f7358SJed Brown PetscErrorCode DMPlexGetChart(DM dm, PetscInt *pStart, PetscInt *pEnd)
1345552f7358SJed Brown {
1346552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1347552f7358SJed Brown   PetscErrorCode ierr;
1348552f7358SJed Brown 
1349552f7358SJed Brown   PetscFunctionBegin;
1350552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1351552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr);
1352552f7358SJed Brown   PetscFunctionReturn(0);
1353552f7358SJed Brown }
1354552f7358SJed Brown 
1355552f7358SJed Brown /*@
1356552f7358SJed Brown   DMPlexSetChart - Set the interval for all mesh points [pStart, pEnd)
1357552f7358SJed Brown 
1358552f7358SJed Brown   Not collective
1359552f7358SJed Brown 
1360552f7358SJed Brown   Input Parameters:
1361552f7358SJed Brown + mesh - The DMPlex
1362552f7358SJed Brown . pStart - The first mesh point
1363552f7358SJed Brown - pEnd   - The upper bound for mesh points
1364552f7358SJed Brown 
1365552f7358SJed Brown   Output Parameters:
1366552f7358SJed Brown 
1367552f7358SJed Brown   Level: beginner
1368552f7358SJed Brown 
1369552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetChart()
1370552f7358SJed Brown @*/
1371552f7358SJed Brown PetscErrorCode DMPlexSetChart(DM dm, PetscInt pStart, PetscInt pEnd)
1372552f7358SJed Brown {
1373552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1374552f7358SJed Brown   PetscErrorCode ierr;
1375552f7358SJed Brown 
1376552f7358SJed Brown   PetscFunctionBegin;
1377552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1378552f7358SJed Brown   ierr = PetscSectionSetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr);
1379552f7358SJed Brown   ierr = PetscSectionSetChart(mesh->supportSection, pStart, pEnd);CHKERRQ(ierr);
1380552f7358SJed Brown   PetscFunctionReturn(0);
1381552f7358SJed Brown }
1382552f7358SJed Brown 
1383552f7358SJed Brown /*@
1384eaf898f9SPatrick Sanan   DMPlexGetConeSize - Return the number of in-edges for this point in the DAG
1385552f7358SJed Brown 
1386552f7358SJed Brown   Not collective
1387552f7358SJed Brown 
1388552f7358SJed Brown   Input Parameters:
1389552f7358SJed Brown + mesh - The DMPlex
1390eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1391552f7358SJed Brown 
1392552f7358SJed Brown   Output Parameter:
1393552f7358SJed Brown . size - The cone size for point p
1394552f7358SJed Brown 
1395552f7358SJed Brown   Level: beginner
1396552f7358SJed Brown 
1397552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart()
1398552f7358SJed Brown @*/
1399552f7358SJed Brown PetscErrorCode DMPlexGetConeSize(DM dm, PetscInt p, PetscInt *size)
1400552f7358SJed Brown {
1401552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1402552f7358SJed Brown   PetscErrorCode ierr;
1403552f7358SJed Brown 
1404552f7358SJed Brown   PetscFunctionBegin;
1405552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1406552f7358SJed Brown   PetscValidPointer(size, 3);
1407552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, size);CHKERRQ(ierr);
1408552f7358SJed Brown   PetscFunctionReturn(0);
1409552f7358SJed Brown }
1410552f7358SJed Brown 
1411552f7358SJed Brown /*@
1412eaf898f9SPatrick Sanan   DMPlexSetConeSize - Set the number of in-edges for this point in the DAG
1413552f7358SJed Brown 
1414552f7358SJed Brown   Not collective
1415552f7358SJed Brown 
1416552f7358SJed Brown   Input Parameters:
1417552f7358SJed Brown + mesh - The DMPlex
1418eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1419552f7358SJed Brown - size - The cone size for point p
1420552f7358SJed Brown 
1421552f7358SJed Brown   Output Parameter:
1422552f7358SJed Brown 
1423552f7358SJed Brown   Note:
1424552f7358SJed Brown   This should be called after DMPlexSetChart().
1425552f7358SJed Brown 
1426552f7358SJed Brown   Level: beginner
1427552f7358SJed Brown 
1428552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeSize(), DMPlexSetChart()
1429552f7358SJed Brown @*/
1430552f7358SJed Brown PetscErrorCode DMPlexSetConeSize(DM dm, PetscInt p, PetscInt size)
1431552f7358SJed Brown {
1432552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1433552f7358SJed Brown   PetscErrorCode ierr;
1434552f7358SJed Brown 
1435552f7358SJed Brown   PetscFunctionBegin;
1436552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1437552f7358SJed Brown   ierr = PetscSectionSetDof(mesh->coneSection, p, size);CHKERRQ(ierr);
14380d644c17SKarl Rupp 
1439552f7358SJed Brown   mesh->maxConeSize = PetscMax(mesh->maxConeSize, size);
1440552f7358SJed Brown   PetscFunctionReturn(0);
1441552f7358SJed Brown }
1442552f7358SJed Brown 
1443f5a469b9SMatthew G. Knepley /*@
1444eaf898f9SPatrick Sanan   DMPlexAddConeSize - Add the given number of in-edges to this point in the DAG
1445f5a469b9SMatthew G. Knepley 
1446f5a469b9SMatthew G. Knepley   Not collective
1447f5a469b9SMatthew G. Knepley 
1448f5a469b9SMatthew G. Knepley   Input Parameters:
1449f5a469b9SMatthew G. Knepley + mesh - The DMPlex
1450eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1451f5a469b9SMatthew G. Knepley - size - The additional cone size for point p
1452f5a469b9SMatthew G. Knepley 
1453f5a469b9SMatthew G. Knepley   Output Parameter:
1454f5a469b9SMatthew G. Knepley 
1455f5a469b9SMatthew G. Knepley   Note:
1456f5a469b9SMatthew G. Knepley   This should be called after DMPlexSetChart().
1457f5a469b9SMatthew G. Knepley 
1458f5a469b9SMatthew G. Knepley   Level: beginner
1459f5a469b9SMatthew G. Knepley 
1460f5a469b9SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexGetConeSize(), DMPlexSetChart()
1461f5a469b9SMatthew G. Knepley @*/
1462f5a469b9SMatthew G. Knepley PetscErrorCode DMPlexAddConeSize(DM dm, PetscInt p, PetscInt size)
1463f5a469b9SMatthew G. Knepley {
1464f5a469b9SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
1465f5a469b9SMatthew G. Knepley   PetscInt       csize;
1466f5a469b9SMatthew G. Knepley   PetscErrorCode ierr;
1467f5a469b9SMatthew G. Knepley 
1468f5a469b9SMatthew G. Knepley   PetscFunctionBegin;
1469f5a469b9SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1470f5a469b9SMatthew G. Knepley   ierr = PetscSectionAddDof(mesh->coneSection, p, size);CHKERRQ(ierr);
1471f5a469b9SMatthew G. Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &csize);CHKERRQ(ierr);
1472f5a469b9SMatthew G. Knepley 
1473f5a469b9SMatthew G. Knepley   mesh->maxConeSize = PetscMax(mesh->maxConeSize, csize);
1474f5a469b9SMatthew G. Knepley   PetscFunctionReturn(0);
1475f5a469b9SMatthew G. Knepley }
1476f5a469b9SMatthew G. Knepley 
1477552f7358SJed Brown /*@C
1478eaf898f9SPatrick Sanan   DMPlexGetCone - Return the points on the in-edges for this point in the DAG
1479552f7358SJed Brown 
1480552f7358SJed Brown   Not collective
1481552f7358SJed Brown 
1482552f7358SJed Brown   Input Parameters:
1483833c876bSVaclav Hapla + dm - The DMPlex
1484eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1485552f7358SJed Brown 
1486552f7358SJed Brown   Output Parameter:
1487552f7358SJed Brown . cone - An array of points which are on the in-edges for point p
1488552f7358SJed Brown 
1489552f7358SJed Brown   Level: beginner
1490552f7358SJed Brown 
14913813dfbdSMatthew G Knepley   Fortran Notes:
14923813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
14933813dfbdSMatthew G Knepley   include petsc.h90 in your code.
14943813dfbdSMatthew G Knepley 
14950ce7577fSVaclav Hapla .seealso: DMPlexCreate(), DMPlexSetCone(), DMPlexGetConeTuple(), DMPlexSetChart()
1496552f7358SJed Brown @*/
1497552f7358SJed Brown PetscErrorCode DMPlexGetCone(DM dm, PetscInt p, const PetscInt *cone[])
1498552f7358SJed Brown {
1499552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1500552f7358SJed Brown   PetscInt       off;
1501552f7358SJed Brown   PetscErrorCode ierr;
1502552f7358SJed Brown 
1503552f7358SJed Brown   PetscFunctionBegin;
1504552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1505552f7358SJed Brown   PetscValidPointer(cone, 3);
1506552f7358SJed Brown   ierr  = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
1507552f7358SJed Brown   *cone = &mesh->cones[off];
1508552f7358SJed Brown   PetscFunctionReturn(0);
1509552f7358SJed Brown }
1510552f7358SJed Brown 
15110ce7577fSVaclav Hapla /*@C
15120ce7577fSVaclav Hapla   DMPlexGetConeTuple - Return the points on the in-edges of several points in the DAG
15130ce7577fSVaclav Hapla 
15140ce7577fSVaclav Hapla   Not collective
15150ce7577fSVaclav Hapla 
15160ce7577fSVaclav Hapla   Input Parameters:
15170ce7577fSVaclav Hapla + dm - The DMPlex
15180ce7577fSVaclav Hapla - p - The IS of points, which must lie in the chart set with DMPlexSetChart()
15190ce7577fSVaclav Hapla 
15200ce7577fSVaclav Hapla   Output Parameter:
15210ce7577fSVaclav Hapla + pConesSection - PetscSection describing the layout of pCones
15220ce7577fSVaclav Hapla - pCones - An array of points which are on the in-edges for the point set p
15230ce7577fSVaclav Hapla 
15240ce7577fSVaclav Hapla   Level: intermediate
15250ce7577fSVaclav Hapla 
1526d4636a37SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeRecursive(), DMPlexSetChart()
15270ce7577fSVaclav Hapla @*/
15280ce7577fSVaclav Hapla PetscErrorCode DMPlexGetConeTuple(DM dm, IS p, PetscSection *pConesSection, IS *pCones)
15290ce7577fSVaclav Hapla {
15300ce7577fSVaclav Hapla   PetscSection        cs, newcs;
15310ce7577fSVaclav Hapla   PetscInt            *cones;
15320ce7577fSVaclav Hapla   PetscInt            *newarr=NULL;
15330ce7577fSVaclav Hapla   PetscInt            n;
15340ce7577fSVaclav Hapla   PetscErrorCode      ierr;
15350ce7577fSVaclav Hapla 
15360ce7577fSVaclav Hapla   PetscFunctionBegin;
15370ce7577fSVaclav Hapla   ierr = DMPlexGetCones(dm, &cones);CHKERRQ(ierr);
15380ce7577fSVaclav Hapla   ierr = DMPlexGetConeSection(dm, &cs);CHKERRQ(ierr);
15390ce7577fSVaclav Hapla   ierr = PetscSectionExtractDofsFromArray(cs, MPIU_INT, cones, p, &newcs, pCones ? ((void**)&newarr) : NULL);CHKERRQ(ierr);
15400ce7577fSVaclav Hapla   if (pConesSection) *pConesSection = newcs;
15410ce7577fSVaclav Hapla   if (pCones) {
15420ce7577fSVaclav Hapla     ierr = PetscSectionGetStorageSize(newcs, &n);CHKERRQ(ierr);
15430ce7577fSVaclav Hapla     ierr = ISCreateGeneral(PetscObjectComm((PetscObject)p), n, newarr, PETSC_OWN_POINTER, pCones);CHKERRQ(ierr);
15440ce7577fSVaclav Hapla   }
15450ce7577fSVaclav Hapla   PetscFunctionReturn(0);
15460ce7577fSVaclav Hapla }
15470ce7577fSVaclav Hapla 
1548d4636a37SVaclav Hapla static PetscErrorCode DMPlexGetConeRecursive_Private(DM dm, PetscInt *n_inout, const PetscInt points[], PetscInt *offset_inout, PetscInt buf[])
1549d4636a37SVaclav Hapla {
1550d4636a37SVaclav Hapla   PetscInt p, n, cn, i;
1551d4636a37SVaclav Hapla   const PetscInt *cone;
1552d4636a37SVaclav Hapla   PetscErrorCode ierr;
1553d4636a37SVaclav Hapla 
1554d4636a37SVaclav Hapla   PetscFunctionBegin;
1555d4636a37SVaclav Hapla   n = *n_inout;
1556d4636a37SVaclav Hapla   *n_inout = 0;
1557d4636a37SVaclav Hapla   for (i=0; i<n; i++) {
1558d4636a37SVaclav Hapla     p = points[i];
1559d4636a37SVaclav Hapla     ierr = DMPlexGetConeSize(dm, p, &cn);CHKERRQ(ierr);
1560d4636a37SVaclav Hapla     if (!cn) {
1561d4636a37SVaclav Hapla       cn = 1;
1562d4636a37SVaclav Hapla       if (buf) {
1563d4636a37SVaclav Hapla         buf[*offset_inout] = p;
1564d4636a37SVaclav Hapla         ++(*offset_inout);
1565d4636a37SVaclav Hapla       }
1566d4636a37SVaclav Hapla     } else {
1567d4636a37SVaclav Hapla       ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
1568d4636a37SVaclav Hapla       ierr = DMPlexGetConeRecursive_Private(dm, &cn, cone, offset_inout, buf);CHKERRQ(ierr);
1569d4636a37SVaclav Hapla     }
1570d4636a37SVaclav Hapla     *n_inout += cn;
1571d4636a37SVaclav Hapla   }
1572d4636a37SVaclav Hapla   PetscFunctionReturn(0);
1573d4636a37SVaclav Hapla }
1574d4636a37SVaclav Hapla 
1575d4636a37SVaclav Hapla /*@C
1576d4636a37SVaclav Hapla   DMPlexGetConeRecursive - Like DMPlexGetConeTuple() but recursive, i.e. each cone point is expanded into a set of its own cone points until a vertex (DAG point with no cone) is reached.
1577d4636a37SVaclav Hapla 
1578d4636a37SVaclav Hapla   Not collective
1579d4636a37SVaclav Hapla 
1580d4636a37SVaclav Hapla   Input Parameters:
1581d4636a37SVaclav Hapla + dm - The DMPlex
1582d4636a37SVaclav Hapla - p - The IS of points, which must lie in the chart set with DMPlexSetChart()
1583d4636a37SVaclav Hapla 
1584d4636a37SVaclav Hapla   Output Parameter:
1585d4636a37SVaclav Hapla . pCones - An array of recursively expanded cones, i.e. containing only vertices, and each of them can be present multiple times
1586d4636a37SVaclav Hapla 
1587d4636a37SVaclav Hapla   Level: advanced
1588d4636a37SVaclav Hapla 
1589d4636a37SVaclav Hapla .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexGetConeTuple()
1590d4636a37SVaclav Hapla @*/
1591d4636a37SVaclav Hapla PetscErrorCode DMPlexGetConeRecursive(DM dm, IS p, IS *pCones)
1592d4636a37SVaclav Hapla {
1593d4636a37SVaclav Hapla   const PetscInt      *arr=NULL;
1594d4636a37SVaclav Hapla   PetscInt            *cpoints=NULL;
1595d4636a37SVaclav Hapla   PetscInt            n, cn;
1596d4636a37SVaclav Hapla   PetscInt            zero;
1597d4636a37SVaclav Hapla   PetscErrorCode      ierr;
1598d4636a37SVaclav Hapla 
1599d4636a37SVaclav Hapla   PetscFunctionBegin;
1600d4636a37SVaclav Hapla   ierr = ISGetLocalSize(p, &n);CHKERRQ(ierr);
1601d4636a37SVaclav Hapla   ierr = ISGetIndices(p, &arr);CHKERRQ(ierr);
1602d4636a37SVaclav Hapla   zero = 0;
1603d4636a37SVaclav Hapla   /* first figure out the total number of returned points */
1604d4636a37SVaclav Hapla   cn = n;
1605d4636a37SVaclav Hapla   ierr = DMPlexGetConeRecursive_Private(dm, &cn, arr, &zero, NULL);CHKERRQ(ierr);
1606d4636a37SVaclav Hapla   ierr = PetscMalloc1(cn, &cpoints);CHKERRQ(ierr);
1607d4636a37SVaclav Hapla   /* now get recursive cones themselves */
1608d4636a37SVaclav Hapla   ierr = DMPlexGetConeRecursive_Private(dm, &n, arr, &zero, cpoints);CHKERRQ(ierr);
1609d4636a37SVaclav Hapla   ierr = ISCreateGeneral(PetscObjectComm((PetscObject)p), n, cpoints, PETSC_OWN_POINTER, pCones);CHKERRQ(ierr);
1610d4636a37SVaclav Hapla   ierr = ISRestoreIndices(p, &arr);CHKERRQ(ierr);
1611d4636a37SVaclav Hapla   PetscFunctionReturn(0);
1612d4636a37SVaclav Hapla }
1613d4636a37SVaclav Hapla 
1614552f7358SJed Brown /*@
161592371b87SBarry 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
1616552f7358SJed Brown 
1617552f7358SJed Brown   Not collective
1618552f7358SJed Brown 
1619552f7358SJed Brown   Input Parameters:
1620552f7358SJed Brown + mesh - The DMPlex
1621eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1622552f7358SJed Brown - cone - An array of points which are on the in-edges for point p
1623552f7358SJed Brown 
1624552f7358SJed Brown   Output Parameter:
1625552f7358SJed Brown 
1626552f7358SJed Brown   Note:
1627552f7358SJed Brown   This should be called after all calls to DMPlexSetConeSize() and DMSetUp().
1628552f7358SJed Brown 
162992371b87SBarry Smith   Developer Note: Why not call this DMPlexSetCover()
163092371b87SBarry Smith 
1631552f7358SJed Brown   Level: beginner
1632552f7358SJed Brown 
163392371b87SBarry Smith .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp(), DMPlexSetSupport(), DMPlexSetSupportSize()
1634552f7358SJed Brown @*/
1635552f7358SJed Brown PetscErrorCode DMPlexSetCone(DM dm, PetscInt p, const PetscInt cone[])
1636552f7358SJed Brown {
1637552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1638552f7358SJed Brown   PetscInt       pStart, pEnd;
1639552f7358SJed Brown   PetscInt       dof, off, c;
1640552f7358SJed Brown   PetscErrorCode ierr;
1641552f7358SJed Brown 
1642552f7358SJed Brown   PetscFunctionBegin;
1643552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1644552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
1645552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
1646552f7358SJed Brown   if (dof) PetscValidPointer(cone, 3);
1647552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
164882f516ccSBarry 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);
1649552f7358SJed Brown   for (c = 0; c < dof; ++c) {
165082f516ccSBarry 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);
1651552f7358SJed Brown     mesh->cones[off+c] = cone[c];
1652552f7358SJed Brown   }
1653552f7358SJed Brown   PetscFunctionReturn(0);
1654552f7358SJed Brown }
1655552f7358SJed Brown 
1656552f7358SJed Brown /*@C
1657eaf898f9SPatrick Sanan   DMPlexGetConeOrientation - Return the orientations on the in-edges for this point in the DAG
1658552f7358SJed Brown 
1659552f7358SJed Brown   Not collective
1660552f7358SJed Brown 
1661552f7358SJed Brown   Input Parameters:
1662552f7358SJed Brown + mesh - The DMPlex
1663eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1664552f7358SJed Brown 
1665552f7358SJed Brown   Output Parameter:
1666552f7358SJed Brown . coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an
1667552f7358SJed Brown                     integer giving the prescription for cone traversal. If it is negative, the cone is
1668552f7358SJed Brown                     traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives
1669552f7358SJed Brown                     the index of the cone point on which to start.
1670552f7358SJed Brown 
1671552f7358SJed Brown   Level: beginner
1672552f7358SJed Brown 
16733813dfbdSMatthew G Knepley   Fortran Notes:
16743813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
16753813dfbdSMatthew G Knepley   include petsc.h90 in your code.
16763813dfbdSMatthew G Knepley 
16773813dfbdSMatthew G Knepley   You must also call DMPlexRestoreConeOrientation() after you finish using the returned array.
1678552f7358SJed Brown 
1679552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetCone(), DMPlexSetChart()
1680552f7358SJed Brown @*/
1681552f7358SJed Brown PetscErrorCode DMPlexGetConeOrientation(DM dm, PetscInt p, const PetscInt *coneOrientation[])
1682552f7358SJed Brown {
1683552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1684552f7358SJed Brown   PetscInt       off;
1685552f7358SJed Brown   PetscErrorCode ierr;
1686552f7358SJed Brown 
1687552f7358SJed Brown   PetscFunctionBegin;
1688552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1689552f7358SJed Brown #if defined(PETSC_USE_DEBUG)
1690552f7358SJed Brown   {
1691552f7358SJed Brown     PetscInt dof;
1692552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
1693552f7358SJed Brown     if (dof) PetscValidPointer(coneOrientation, 3);
1694552f7358SJed Brown   }
1695552f7358SJed Brown #endif
1696552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
16970d644c17SKarl Rupp 
1698552f7358SJed Brown   *coneOrientation = &mesh->coneOrientations[off];
1699552f7358SJed Brown   PetscFunctionReturn(0);
1700552f7358SJed Brown }
1701552f7358SJed Brown 
1702552f7358SJed Brown /*@
1703eaf898f9SPatrick Sanan   DMPlexSetConeOrientation - Set the orientations on the in-edges for this point in the DAG
1704552f7358SJed Brown 
1705552f7358SJed Brown   Not collective
1706552f7358SJed Brown 
1707552f7358SJed Brown   Input Parameters:
1708552f7358SJed Brown + mesh - The DMPlex
1709eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1710552f7358SJed Brown - coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an
1711552f7358SJed Brown                     integer giving the prescription for cone traversal. If it is negative, the cone is
1712552f7358SJed Brown                     traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives
1713552f7358SJed Brown                     the index of the cone point on which to start.
1714552f7358SJed Brown 
1715552f7358SJed Brown   Output Parameter:
1716552f7358SJed Brown 
1717552f7358SJed Brown   Note:
1718552f7358SJed Brown   This should be called after all calls to DMPlexSetConeSize() and DMSetUp().
1719552f7358SJed Brown 
1720552f7358SJed Brown   Level: beginner
1721552f7358SJed Brown 
1722552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeOrientation(), DMPlexSetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
1723552f7358SJed Brown @*/
1724552f7358SJed Brown PetscErrorCode DMPlexSetConeOrientation(DM dm, PetscInt p, const PetscInt coneOrientation[])
1725552f7358SJed Brown {
1726552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1727552f7358SJed Brown   PetscInt       pStart, pEnd;
1728552f7358SJed Brown   PetscInt       dof, off, c;
1729552f7358SJed Brown   PetscErrorCode ierr;
1730552f7358SJed Brown 
1731552f7358SJed Brown   PetscFunctionBegin;
1732552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1733552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
1734552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
1735552f7358SJed Brown   if (dof) PetscValidPointer(coneOrientation, 3);
1736552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
173782f516ccSBarry 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);
1738552f7358SJed Brown   for (c = 0; c < dof; ++c) {
1739552f7358SJed Brown     PetscInt cdof, o = coneOrientation[c];
1740552f7358SJed Brown 
1741552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, mesh->cones[off+c], &cdof);CHKERRQ(ierr);
174282f516ccSBarry 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);
1743552f7358SJed Brown     mesh->coneOrientations[off+c] = o;
1744552f7358SJed Brown   }
1745552f7358SJed Brown   PetscFunctionReturn(0);
1746552f7358SJed Brown }
1747552f7358SJed Brown 
17487cd05799SMatthew G. Knepley /*@
1749eaf898f9SPatrick Sanan   DMPlexInsertCone - Insert a point into the in-edges for the point p in the DAG
17507cd05799SMatthew G. Knepley 
17517cd05799SMatthew G. Knepley   Not collective
17527cd05799SMatthew G. Knepley 
17537cd05799SMatthew G. Knepley   Input Parameters:
17547cd05799SMatthew G. Knepley + mesh - The DMPlex
1755eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
17567cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put
17577cd05799SMatthew G. Knepley - conePoint - The mesh point to insert
17587cd05799SMatthew G. Knepley 
17597cd05799SMatthew G. Knepley   Level: beginner
17607cd05799SMatthew G. Knepley 
17617cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
17627cd05799SMatthew G. Knepley @*/
1763552f7358SJed Brown PetscErrorCode DMPlexInsertCone(DM dm, PetscInt p, PetscInt conePos, PetscInt conePoint)
1764552f7358SJed Brown {
1765552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1766552f7358SJed Brown   PetscInt       pStart, pEnd;
1767552f7358SJed Brown   PetscInt       dof, off;
1768552f7358SJed Brown   PetscErrorCode ierr;
1769552f7358SJed Brown 
1770552f7358SJed Brown   PetscFunctionBegin;
1771552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1772552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
177382f516ccSBarry 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);
177482f516ccSBarry 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);
177577c88f5bSMatthew G Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
177677c88f5bSMatthew G Knepley   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
177777c88f5bSMatthew 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);
1778552f7358SJed Brown   mesh->cones[off+conePos] = conePoint;
1779552f7358SJed Brown   PetscFunctionReturn(0);
1780552f7358SJed Brown }
1781552f7358SJed Brown 
17827cd05799SMatthew G. Knepley /*@
1783eaf898f9SPatrick Sanan   DMPlexInsertConeOrientation - Insert a point orientation for the in-edge for the point p in the DAG
17847cd05799SMatthew G. Knepley 
17857cd05799SMatthew G. Knepley   Not collective
17867cd05799SMatthew G. Knepley 
17877cd05799SMatthew G. Knepley   Input Parameters:
17887cd05799SMatthew G. Knepley + mesh - The DMPlex
1789eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
17907cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put
17917cd05799SMatthew G. Knepley - coneOrientation - The point orientation to insert
17927cd05799SMatthew G. Knepley 
17937cd05799SMatthew G. Knepley   Level: beginner
17947cd05799SMatthew G. Knepley 
17957cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
17967cd05799SMatthew G. Knepley @*/
179777c88f5bSMatthew G Knepley PetscErrorCode DMPlexInsertConeOrientation(DM dm, PetscInt p, PetscInt conePos, PetscInt coneOrientation)
179877c88f5bSMatthew G Knepley {
179977c88f5bSMatthew G Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
180077c88f5bSMatthew G Knepley   PetscInt       pStart, pEnd;
180177c88f5bSMatthew G Knepley   PetscInt       dof, off;
180277c88f5bSMatthew G Knepley   PetscErrorCode ierr;
180377c88f5bSMatthew G Knepley 
180477c88f5bSMatthew G Knepley   PetscFunctionBegin;
180577c88f5bSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
180677c88f5bSMatthew G Knepley   ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
180777c88f5bSMatthew 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);
180877c88f5bSMatthew G Knepley   ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
180977c88f5bSMatthew G Knepley   ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
181077c88f5bSMatthew 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);
181177c88f5bSMatthew G Knepley   mesh->coneOrientations[off+conePos] = coneOrientation;
181277c88f5bSMatthew G Knepley   PetscFunctionReturn(0);
181377c88f5bSMatthew G Knepley }
181477c88f5bSMatthew G Knepley 
1815552f7358SJed Brown /*@
1816eaf898f9SPatrick Sanan   DMPlexGetSupportSize - Return the number of out-edges for this point in the DAG
1817552f7358SJed Brown 
1818552f7358SJed Brown   Not collective
1819552f7358SJed Brown 
1820552f7358SJed Brown   Input Parameters:
1821552f7358SJed Brown + mesh - The DMPlex
1822eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1823552f7358SJed Brown 
1824552f7358SJed Brown   Output Parameter:
1825552f7358SJed Brown . size - The support size for point p
1826552f7358SJed Brown 
1827552f7358SJed Brown   Level: beginner
1828552f7358SJed Brown 
1829552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart(), DMPlexGetConeSize()
1830552f7358SJed Brown @*/
1831552f7358SJed Brown PetscErrorCode DMPlexGetSupportSize(DM dm, PetscInt p, PetscInt *size)
1832552f7358SJed Brown {
1833552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1834552f7358SJed Brown   PetscErrorCode ierr;
1835552f7358SJed Brown 
1836552f7358SJed Brown   PetscFunctionBegin;
1837552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1838552f7358SJed Brown   PetscValidPointer(size, 3);
1839552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, size);CHKERRQ(ierr);
1840552f7358SJed Brown   PetscFunctionReturn(0);
1841552f7358SJed Brown }
1842552f7358SJed Brown 
1843552f7358SJed Brown /*@
1844eaf898f9SPatrick Sanan   DMPlexSetSupportSize - Set the number of out-edges for this point in the DAG
1845552f7358SJed Brown 
1846552f7358SJed Brown   Not collective
1847552f7358SJed Brown 
1848552f7358SJed Brown   Input Parameters:
1849552f7358SJed Brown + mesh - The DMPlex
1850eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1851552f7358SJed Brown - size - The support size for point p
1852552f7358SJed Brown 
1853552f7358SJed Brown   Output Parameter:
1854552f7358SJed Brown 
1855552f7358SJed Brown   Note:
1856552f7358SJed Brown   This should be called after DMPlexSetChart().
1857552f7358SJed Brown 
1858552f7358SJed Brown   Level: beginner
1859552f7358SJed Brown 
1860552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetSupportSize(), DMPlexSetChart()
1861552f7358SJed Brown @*/
1862552f7358SJed Brown PetscErrorCode DMPlexSetSupportSize(DM dm, PetscInt p, PetscInt size)
1863552f7358SJed Brown {
1864552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1865552f7358SJed Brown   PetscErrorCode ierr;
1866552f7358SJed Brown 
1867552f7358SJed Brown   PetscFunctionBegin;
1868552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1869552f7358SJed Brown   ierr = PetscSectionSetDof(mesh->supportSection, p, size);CHKERRQ(ierr);
18700d644c17SKarl Rupp 
1871552f7358SJed Brown   mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, size);
1872552f7358SJed Brown   PetscFunctionReturn(0);
1873552f7358SJed Brown }
1874552f7358SJed Brown 
1875552f7358SJed Brown /*@C
1876eaf898f9SPatrick Sanan   DMPlexGetSupport - Return the points on the out-edges for this point in the DAG
1877552f7358SJed Brown 
1878552f7358SJed Brown   Not collective
1879552f7358SJed Brown 
1880552f7358SJed Brown   Input Parameters:
1881552f7358SJed Brown + mesh - The DMPlex
1882eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart()
1883552f7358SJed Brown 
1884552f7358SJed Brown   Output Parameter:
1885552f7358SJed Brown . support - An array of points which are on the out-edges for point p
1886552f7358SJed Brown 
1887552f7358SJed Brown   Level: beginner
1888552f7358SJed Brown 
18893813dfbdSMatthew G Knepley   Fortran Notes:
18903813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
18913813dfbdSMatthew G Knepley   include petsc.h90 in your code.
18923813dfbdSMatthew G Knepley 
18933813dfbdSMatthew G Knepley   You must also call DMPlexRestoreSupport() after you finish using the returned array.
18943813dfbdSMatthew G Knepley 
1895552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
1896552f7358SJed Brown @*/
1897552f7358SJed Brown PetscErrorCode DMPlexGetSupport(DM dm, PetscInt p, const PetscInt *support[])
1898552f7358SJed Brown {
1899552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1900552f7358SJed Brown   PetscInt       off;
1901552f7358SJed Brown   PetscErrorCode ierr;
1902552f7358SJed Brown 
1903552f7358SJed Brown   PetscFunctionBegin;
1904552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1905552f7358SJed Brown   PetscValidPointer(support, 3);
1906552f7358SJed Brown   ierr     = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
1907552f7358SJed Brown   *support = &mesh->supports[off];
1908552f7358SJed Brown   PetscFunctionReturn(0);
1909552f7358SJed Brown }
1910552f7358SJed Brown 
1911552f7358SJed Brown /*@
191292371b87SBarry 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
1913552f7358SJed Brown 
1914552f7358SJed Brown   Not collective
1915552f7358SJed Brown 
1916552f7358SJed Brown   Input Parameters:
1917552f7358SJed Brown + mesh - The DMPlex
1918eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
191992371b87SBarry Smith - support - An array of points which are on the out-edges for point p
1920552f7358SJed Brown 
1921552f7358SJed Brown   Output Parameter:
1922552f7358SJed Brown 
1923552f7358SJed Brown   Note:
1924552f7358SJed Brown   This should be called after all calls to DMPlexSetSupportSize() and DMSetUp().
1925552f7358SJed Brown 
1926552f7358SJed Brown   Level: beginner
1927552f7358SJed Brown 
192892371b87SBarry Smith .seealso: DMPlexSetCone(), DMPlexSetConeSize(), DMPlexCreate(), DMPlexGetSupport(), DMPlexSetChart(), DMPlexSetSupportSize(), DMSetUp()
1929552f7358SJed Brown @*/
1930552f7358SJed Brown PetscErrorCode DMPlexSetSupport(DM dm, PetscInt p, const PetscInt support[])
1931552f7358SJed Brown {
1932552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1933552f7358SJed Brown   PetscInt       pStart, pEnd;
1934552f7358SJed Brown   PetscInt       dof, off, c;
1935552f7358SJed Brown   PetscErrorCode ierr;
1936552f7358SJed Brown 
1937552f7358SJed Brown   PetscFunctionBegin;
1938552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1939552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr);
1940552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
1941552f7358SJed Brown   if (dof) PetscValidPointer(support, 3);
1942552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
194382f516ccSBarry 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);
1944552f7358SJed Brown   for (c = 0; c < dof; ++c) {
194582f516ccSBarry 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);
1946552f7358SJed Brown     mesh->supports[off+c] = support[c];
1947552f7358SJed Brown   }
1948552f7358SJed Brown   PetscFunctionReturn(0);
1949552f7358SJed Brown }
1950552f7358SJed Brown 
19517cd05799SMatthew G. Knepley /*@
1952eaf898f9SPatrick Sanan   DMPlexInsertSupport - Insert a point into the out-edges for the point p in the DAG
19537cd05799SMatthew G. Knepley 
19547cd05799SMatthew G. Knepley   Not collective
19557cd05799SMatthew G. Knepley 
19567cd05799SMatthew G. Knepley   Input Parameters:
19577cd05799SMatthew G. Knepley + mesh - The DMPlex
1958eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
19597cd05799SMatthew G. Knepley . supportPos - The local index in the cone where the point should be put
19607cd05799SMatthew G. Knepley - supportPoint - The mesh point to insert
19617cd05799SMatthew G. Knepley 
19627cd05799SMatthew G. Knepley   Level: beginner
19637cd05799SMatthew G. Knepley 
19647cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp()
19657cd05799SMatthew G. Knepley @*/
1966552f7358SJed Brown PetscErrorCode DMPlexInsertSupport(DM dm, PetscInt p, PetscInt supportPos, PetscInt supportPoint)
1967552f7358SJed Brown {
1968552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
1969552f7358SJed Brown   PetscInt       pStart, pEnd;
1970552f7358SJed Brown   PetscInt       dof, off;
1971552f7358SJed Brown   PetscErrorCode ierr;
1972552f7358SJed Brown 
1973552f7358SJed Brown   PetscFunctionBegin;
1974552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1975552f7358SJed Brown   ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr);
1976552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
1977552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr);
197882f516ccSBarry 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);
197982f516ccSBarry 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);
198082f516ccSBarry 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);
1981552f7358SJed Brown   mesh->supports[off+supportPos] = supportPoint;
1982552f7358SJed Brown   PetscFunctionReturn(0);
1983552f7358SJed Brown }
1984552f7358SJed Brown 
1985552f7358SJed Brown /*@C
1986eaf898f9SPatrick Sanan   DMPlexGetTransitiveClosure - Return the points on the transitive closure of the in-edges or out-edges for this point in the DAG
1987552f7358SJed Brown 
1988552f7358SJed Brown   Not collective
1989552f7358SJed Brown 
1990552f7358SJed Brown   Input Parameters:
1991552f7358SJed Brown + mesh - The DMPlex
1992eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
1993552f7358SJed Brown . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
19940298fd71SBarry Smith - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used
1995552f7358SJed Brown 
1996552f7358SJed Brown   Output Parameters:
1997552f7358SJed Brown + numPoints - The number of points in the closure, so points[] is of size 2*numPoints
1998552f7358SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...]
1999552f7358SJed Brown 
2000552f7358SJed Brown   Note:
20010298fd71SBarry Smith   If using internal storage (points is NULL on input), each call overwrites the last output.
2002552f7358SJed Brown 
20033813dfbdSMatthew G Knepley   Fortran Notes:
20043813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
20053813dfbdSMatthew G Knepley   include petsc.h90 in your code.
20063813dfbdSMatthew G Knepley 
20073813dfbdSMatthew G Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
20083813dfbdSMatthew G Knepley 
2009552f7358SJed Brown   Level: beginner
2010552f7358SJed Brown 
2011552f7358SJed Brown .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
2012552f7358SJed Brown @*/
2013552f7358SJed Brown PetscErrorCode DMPlexGetTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
2014552f7358SJed Brown {
2015552f7358SJed Brown   DM_Plex        *mesh = (DM_Plex*) dm->data;
2016552f7358SJed Brown   PetscInt       *closure, *fifo;
20170298fd71SBarry Smith   const PetscInt *tmp = NULL, *tmpO = NULL;
2018552f7358SJed Brown   PetscInt        tmpSize, t;
2019552f7358SJed Brown   PetscInt        depth       = 0, maxSize;
2020552f7358SJed Brown   PetscInt        closureSize = 2, fifoSize = 0, fifoStart = 0;
2021552f7358SJed Brown   PetscErrorCode  ierr;
2022552f7358SJed Brown 
2023552f7358SJed Brown   PetscFunctionBegin;
2024552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2025552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
2026552f7358SJed Brown   /* This is only 1-level */
2027552f7358SJed Brown   if (useCone) {
2028552f7358SJed Brown     ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr);
2029552f7358SJed Brown     ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr);
2030552f7358SJed Brown     ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr);
2031552f7358SJed Brown   } else {
2032552f7358SJed Brown     ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr);
2033552f7358SJed Brown     ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr);
2034552f7358SJed Brown   }
2035bfbcdd7aSMatthew G. Knepley   if (depth == 1) {
2036bfbcdd7aSMatthew G. Knepley     if (*points) {
2037bfbcdd7aSMatthew G. Knepley       closure = *points;
2038bfbcdd7aSMatthew G. Knepley     } else {
2039bfbcdd7aSMatthew G. Knepley       maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1);
204069291d52SBarry Smith       ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
2041bfbcdd7aSMatthew G. Knepley     }
2042bfbcdd7aSMatthew G. Knepley     closure[0] = p; closure[1] = 0;
2043bfbcdd7aSMatthew G. Knepley     for (t = 0; t < tmpSize; ++t, closureSize += 2) {
2044bfbcdd7aSMatthew G. Knepley       closure[closureSize]   = tmp[t];
2045bfbcdd7aSMatthew G. Knepley       closure[closureSize+1] = tmpO ? tmpO[t] : 0;
2046bfbcdd7aSMatthew G. Knepley     }
2047bfbcdd7aSMatthew G. Knepley     if (numPoints) *numPoints = closureSize/2;
2048bfbcdd7aSMatthew G. Knepley     if (points)    *points    = closure;
2049bfbcdd7aSMatthew G. Knepley     PetscFunctionReturn(0);
2050bfbcdd7aSMatthew G. Knepley   }
205124c766afSToby Isaac   {
205224c766afSToby Isaac     PetscInt c, coneSeries, s,supportSeries;
205324c766afSToby Isaac 
205424c766afSToby Isaac     c = mesh->maxConeSize;
205524c766afSToby Isaac     coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1;
205624c766afSToby Isaac     s = mesh->maxSupportSize;
205724c766afSToby Isaac     supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1;
205824c766afSToby Isaac     maxSize = 2*PetscMax(coneSeries,supportSeries);
205924c766afSToby Isaac   }
206069291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
2061bfbcdd7aSMatthew G. Knepley   if (*points) {
2062bfbcdd7aSMatthew G. Knepley     closure = *points;
2063bfbcdd7aSMatthew G. Knepley   } else {
206469291d52SBarry Smith     ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
2065bfbcdd7aSMatthew G. Knepley   }
2066bfbcdd7aSMatthew G. Knepley   closure[0] = p; closure[1] = 0;
2067552f7358SJed Brown   for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) {
2068552f7358SJed Brown     const PetscInt cp = tmp[t];
2069552f7358SJed Brown     const PetscInt co = tmpO ? tmpO[t] : 0;
2070552f7358SJed Brown 
2071552f7358SJed Brown     closure[closureSize]   = cp;
2072552f7358SJed Brown     closure[closureSize+1] = co;
2073552f7358SJed Brown     fifo[fifoSize]         = cp;
2074552f7358SJed Brown     fifo[fifoSize+1]       = co;
2075552f7358SJed Brown   }
2076bfbcdd7aSMatthew G. Knepley   /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */
2077552f7358SJed Brown   while (fifoSize - fifoStart) {
2078552f7358SJed Brown     const PetscInt q   = fifo[fifoStart];
2079552f7358SJed Brown     const PetscInt o   = fifo[fifoStart+1];
2080552f7358SJed Brown     const PetscInt rev = o >= 0 ? 0 : 1;
2081552f7358SJed Brown     const PetscInt off = rev ? -(o+1) : o;
2082552f7358SJed Brown 
2083552f7358SJed Brown     if (useCone) {
2084552f7358SJed Brown       ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr);
2085552f7358SJed Brown       ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr);
2086552f7358SJed Brown       ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr);
2087552f7358SJed Brown     } else {
2088552f7358SJed Brown       ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr);
2089552f7358SJed Brown       ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr);
20900298fd71SBarry Smith       tmpO = NULL;
2091552f7358SJed Brown     }
2092552f7358SJed Brown     for (t = 0; t < tmpSize; ++t) {
2093552f7358SJed Brown       const PetscInt i  = ((rev ? tmpSize-t : t) + off)%tmpSize;
2094552f7358SJed Brown       const PetscInt cp = tmp[i];
20952e1b13c2SMatthew 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. */
20962e1b13c2SMatthew G. Knepley       /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1)
20972e1b13c2SMatthew G. Knepley        const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */
20982e1b13c2SMatthew G. Knepley       PetscInt       co = tmpO ? tmpO[i] : 0;
2099552f7358SJed Brown       PetscInt       c;
2100552f7358SJed Brown 
21012e1b13c2SMatthew G. Knepley       if (rev) {
21022e1b13c2SMatthew G. Knepley         PetscInt childSize, coff;
21032e1b13c2SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
21042e1b13c2SMatthew G. Knepley         coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i];
21052e1b13c2SMatthew G. Knepley         co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
21062e1b13c2SMatthew G. Knepley       }
2107552f7358SJed Brown       /* Check for duplicate */
2108552f7358SJed Brown       for (c = 0; c < closureSize; c += 2) {
2109552f7358SJed Brown         if (closure[c] == cp) break;
2110552f7358SJed Brown       }
2111552f7358SJed Brown       if (c == closureSize) {
2112552f7358SJed Brown         closure[closureSize]   = cp;
2113552f7358SJed Brown         closure[closureSize+1] = co;
2114552f7358SJed Brown         fifo[fifoSize]         = cp;
2115552f7358SJed Brown         fifo[fifoSize+1]       = co;
2116552f7358SJed Brown         closureSize           += 2;
2117552f7358SJed Brown         fifoSize              += 2;
2118552f7358SJed Brown       }
2119552f7358SJed Brown     }
2120552f7358SJed Brown     fifoStart += 2;
2121552f7358SJed Brown   }
2122552f7358SJed Brown   if (numPoints) *numPoints = closureSize/2;
2123552f7358SJed Brown   if (points)    *points    = closure;
212469291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
2125552f7358SJed Brown   PetscFunctionReturn(0);
2126552f7358SJed Brown }
2127552f7358SJed Brown 
21289bf0dad6SMatthew G. Knepley /*@C
2129eaf898f9SPatrick 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
21309bf0dad6SMatthew G. Knepley 
21319bf0dad6SMatthew G. Knepley   Not collective
21329bf0dad6SMatthew G. Knepley 
21339bf0dad6SMatthew G. Knepley   Input Parameters:
21349bf0dad6SMatthew G. Knepley + mesh - The DMPlex
2135eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
21369bf0dad6SMatthew G. Knepley . orientation - The orientation of the point
21379bf0dad6SMatthew G. Knepley . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
21389bf0dad6SMatthew G. Knepley - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used
21399bf0dad6SMatthew G. Knepley 
21409bf0dad6SMatthew G. Knepley   Output Parameters:
21419bf0dad6SMatthew G. Knepley + numPoints - The number of points in the closure, so points[] is of size 2*numPoints
21429bf0dad6SMatthew G. Knepley - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...]
21439bf0dad6SMatthew G. Knepley 
21449bf0dad6SMatthew G. Knepley   Note:
21459bf0dad6SMatthew G. Knepley   If using internal storage (points is NULL on input), each call overwrites the last output.
21469bf0dad6SMatthew G. Knepley 
21479bf0dad6SMatthew G. Knepley   Fortran Notes:
21489bf0dad6SMatthew G. Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
21499bf0dad6SMatthew G. Knepley   include petsc.h90 in your code.
21509bf0dad6SMatthew G. Knepley 
21519bf0dad6SMatthew G. Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
21529bf0dad6SMatthew G. Knepley 
21539bf0dad6SMatthew G. Knepley   Level: beginner
21549bf0dad6SMatthew G. Knepley 
21559bf0dad6SMatthew G. Knepley .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
21569bf0dad6SMatthew G. Knepley @*/
21579bf0dad6SMatthew G. Knepley PetscErrorCode DMPlexGetTransitiveClosure_Internal(DM dm, PetscInt p, PetscInt ornt, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
21589bf0dad6SMatthew G. Knepley {
21599bf0dad6SMatthew G. Knepley   DM_Plex        *mesh = (DM_Plex*) dm->data;
21609bf0dad6SMatthew G. Knepley   PetscInt       *closure, *fifo;
21619bf0dad6SMatthew G. Knepley   const PetscInt *tmp = NULL, *tmpO = NULL;
21629bf0dad6SMatthew G. Knepley   PetscInt        tmpSize, t;
21639bf0dad6SMatthew G. Knepley   PetscInt        depth       = 0, maxSize;
21649bf0dad6SMatthew G. Knepley   PetscInt        closureSize = 2, fifoSize = 0, fifoStart = 0;
21659bf0dad6SMatthew G. Knepley   PetscErrorCode  ierr;
21669bf0dad6SMatthew G. Knepley 
21679bf0dad6SMatthew G. Knepley   PetscFunctionBegin;
21689bf0dad6SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
21699bf0dad6SMatthew G. Knepley   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
21709bf0dad6SMatthew G. Knepley   /* This is only 1-level */
21719bf0dad6SMatthew G. Knepley   if (useCone) {
21729bf0dad6SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr);
21739bf0dad6SMatthew G. Knepley     ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr);
21749bf0dad6SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr);
21759bf0dad6SMatthew G. Knepley   } else {
21769bf0dad6SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr);
21779bf0dad6SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr);
21789bf0dad6SMatthew G. Knepley   }
21799bf0dad6SMatthew G. Knepley   if (depth == 1) {
21809bf0dad6SMatthew G. Knepley     if (*points) {
21819bf0dad6SMatthew G. Knepley       closure = *points;
21829bf0dad6SMatthew G. Knepley     } else {
21839bf0dad6SMatthew G. Knepley       maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1);
218469291d52SBarry Smith       ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
21859bf0dad6SMatthew G. Knepley     }
21869bf0dad6SMatthew G. Knepley     closure[0] = p; closure[1] = ornt;
21879bf0dad6SMatthew G. Knepley     for (t = 0; t < tmpSize; ++t, closureSize += 2) {
21889bf0dad6SMatthew G. Knepley       const PetscInt i = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize;
21899bf0dad6SMatthew G. Knepley       closure[closureSize]   = tmp[i];
21909bf0dad6SMatthew G. Knepley       closure[closureSize+1] = tmpO ? tmpO[i] : 0;
21919bf0dad6SMatthew G. Knepley     }
21929bf0dad6SMatthew G. Knepley     if (numPoints) *numPoints = closureSize/2;
21939bf0dad6SMatthew G. Knepley     if (points)    *points    = closure;
21949bf0dad6SMatthew G. Knepley     PetscFunctionReturn(0);
21959bf0dad6SMatthew G. Knepley   }
219624c766afSToby Isaac   {
219724c766afSToby Isaac     PetscInt c, coneSeries, s,supportSeries;
219824c766afSToby Isaac 
219924c766afSToby Isaac     c = mesh->maxConeSize;
220024c766afSToby Isaac     coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1;
220124c766afSToby Isaac     s = mesh->maxSupportSize;
220224c766afSToby Isaac     supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1;
220324c766afSToby Isaac     maxSize = 2*PetscMax(coneSeries,supportSeries);
220424c766afSToby Isaac   }
220569291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
22069bf0dad6SMatthew G. Knepley   if (*points) {
22079bf0dad6SMatthew G. Knepley     closure = *points;
22089bf0dad6SMatthew G. Knepley   } else {
220969291d52SBarry Smith     ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr);
22109bf0dad6SMatthew G. Knepley   }
22119bf0dad6SMatthew G. Knepley   closure[0] = p; closure[1] = ornt;
22129bf0dad6SMatthew G. Knepley   for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) {
22139bf0dad6SMatthew G. Knepley     const PetscInt i  = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize;
22149bf0dad6SMatthew G. Knepley     const PetscInt cp = tmp[i];
22159bf0dad6SMatthew G. Knepley     PetscInt       co = tmpO ? tmpO[i] : 0;
22169bf0dad6SMatthew G. Knepley 
22179bf0dad6SMatthew G. Knepley     if (ornt < 0) {
22189bf0dad6SMatthew G. Knepley       PetscInt childSize, coff;
22199bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
222086b63641SMatthew G. Knepley       coff = co < 0 ? -(tmpO[i]+1) : tmpO[i];
22219bf0dad6SMatthew G. Knepley       co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
22229bf0dad6SMatthew G. Knepley     }
22239bf0dad6SMatthew G. Knepley     closure[closureSize]   = cp;
22249bf0dad6SMatthew G. Knepley     closure[closureSize+1] = co;
22259bf0dad6SMatthew G. Knepley     fifo[fifoSize]         = cp;
22269bf0dad6SMatthew G. Knepley     fifo[fifoSize+1]       = co;
22279bf0dad6SMatthew G. Knepley   }
22289bf0dad6SMatthew G. Knepley   /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */
22299bf0dad6SMatthew G. Knepley   while (fifoSize - fifoStart) {
22309bf0dad6SMatthew G. Knepley     const PetscInt q   = fifo[fifoStart];
22319bf0dad6SMatthew G. Knepley     const PetscInt o   = fifo[fifoStart+1];
22329bf0dad6SMatthew G. Knepley     const PetscInt rev = o >= 0 ? 0 : 1;
22339bf0dad6SMatthew G. Knepley     const PetscInt off = rev ? -(o+1) : o;
22349bf0dad6SMatthew G. Knepley 
22359bf0dad6SMatthew G. Knepley     if (useCone) {
22369bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr);
22379bf0dad6SMatthew G. Knepley       ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr);
22389bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr);
22399bf0dad6SMatthew G. Knepley     } else {
22409bf0dad6SMatthew G. Knepley       ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr);
22419bf0dad6SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr);
22429bf0dad6SMatthew G. Knepley       tmpO = NULL;
22439bf0dad6SMatthew G. Knepley     }
22449bf0dad6SMatthew G. Knepley     for (t = 0; t < tmpSize; ++t) {
22459bf0dad6SMatthew G. Knepley       const PetscInt i  = ((rev ? tmpSize-t : t) + off)%tmpSize;
22469bf0dad6SMatthew G. Knepley       const PetscInt cp = tmp[i];
22479bf0dad6SMatthew 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. */
22489bf0dad6SMatthew G. Knepley       /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1)
22499bf0dad6SMatthew G. Knepley        const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */
22509bf0dad6SMatthew G. Knepley       PetscInt       co = tmpO ? tmpO[i] : 0;
22519bf0dad6SMatthew G. Knepley       PetscInt       c;
22529bf0dad6SMatthew G. Knepley 
22539bf0dad6SMatthew G. Knepley       if (rev) {
22549bf0dad6SMatthew G. Knepley         PetscInt childSize, coff;
22559bf0dad6SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr);
22569bf0dad6SMatthew G. Knepley         coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i];
22579bf0dad6SMatthew G. Knepley         co   = childSize ? -(((coff+childSize-1)%childSize)+1) : 0;
22589bf0dad6SMatthew G. Knepley       }
22599bf0dad6SMatthew G. Knepley       /* Check for duplicate */
22609bf0dad6SMatthew G. Knepley       for (c = 0; c < closureSize; c += 2) {
22619bf0dad6SMatthew G. Knepley         if (closure[c] == cp) break;
22629bf0dad6SMatthew G. Knepley       }
22639bf0dad6SMatthew G. Knepley       if (c == closureSize) {
22649bf0dad6SMatthew G. Knepley         closure[closureSize]   = cp;
22659bf0dad6SMatthew G. Knepley         closure[closureSize+1] = co;
22669bf0dad6SMatthew G. Knepley         fifo[fifoSize]         = cp;
22679bf0dad6SMatthew G. Knepley         fifo[fifoSize+1]       = co;
22689bf0dad6SMatthew G. Knepley         closureSize           += 2;
22699bf0dad6SMatthew G. Knepley         fifoSize              += 2;
22709bf0dad6SMatthew G. Knepley       }
22719bf0dad6SMatthew G. Knepley     }
22729bf0dad6SMatthew G. Knepley     fifoStart += 2;
22739bf0dad6SMatthew G. Knepley   }
22749bf0dad6SMatthew G. Knepley   if (numPoints) *numPoints = closureSize/2;
22759bf0dad6SMatthew G. Knepley   if (points)    *points    = closure;
227669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr);
22779bf0dad6SMatthew G. Knepley   PetscFunctionReturn(0);
22789bf0dad6SMatthew G. Knepley }
22799bf0dad6SMatthew G. Knepley 
2280552f7358SJed Brown /*@C
2281eaf898f9SPatrick Sanan   DMPlexRestoreTransitiveClosure - Restore the array of points on the transitive closure of the in-edges or out-edges for this point in the DAG
2282552f7358SJed Brown 
2283552f7358SJed Brown   Not collective
2284552f7358SJed Brown 
2285552f7358SJed Brown   Input Parameters:
2286552f7358SJed Brown + mesh - The DMPlex
2287eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart()
2288552f7358SJed Brown . useCone - PETSC_TRUE for in-edges,  otherwise use out-edges
2289e5c84f05SJed Brown . numPoints - The number of points in the closure, so points[] is of size 2*numPoints, zeroed on exit
2290e5c84f05SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...], zeroed on exit
2291552f7358SJed Brown 
2292552f7358SJed Brown   Note:
22930298fd71SBarry Smith   If not using internal storage (points is not NULL on input), this call is unnecessary
2294552f7358SJed Brown 
22953813dfbdSMatthew G Knepley   Fortran Notes:
22963813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
22973813dfbdSMatthew G Knepley   include petsc.h90 in your code.
22983813dfbdSMatthew G Knepley 
22993813dfbdSMatthew G Knepley   The numPoints argument is not present in the Fortran 90 binding since it is internal to the array.
23003813dfbdSMatthew G Knepley 
2301552f7358SJed Brown   Level: beginner
2302552f7358SJed Brown 
2303552f7358SJed Brown .seealso: DMPlexGetTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone()
2304552f7358SJed Brown @*/
2305552f7358SJed Brown PetscErrorCode DMPlexRestoreTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[])
2306552f7358SJed Brown {
2307552f7358SJed Brown   PetscErrorCode ierr;
2308552f7358SJed Brown 
2309552f7358SJed Brown   PetscFunctionBegin;
2310552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2311e5c84f05SJed Brown   if (numPoints) PetscValidIntPointer(numPoints,4);
2312e5c84f05SJed Brown   if (points) PetscValidPointer(points,5);
231369291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, points);CHKERRQ(ierr);
23144ff43b2cSJed Brown   if (numPoints) *numPoints = 0;
2315552f7358SJed Brown   PetscFunctionReturn(0);
2316552f7358SJed Brown }
2317552f7358SJed Brown 
2318552f7358SJed Brown /*@
2319eaf898f9SPatrick Sanan   DMPlexGetMaxSizes - Return the maximum number of in-edges (cone) and out-edges (support) for any point in the DAG
2320552f7358SJed Brown 
2321552f7358SJed Brown   Not collective
2322552f7358SJed Brown 
2323552f7358SJed Brown   Input Parameter:
2324552f7358SJed Brown . mesh - The DMPlex
2325552f7358SJed Brown 
2326552f7358SJed Brown   Output Parameters:
2327552f7358SJed Brown + maxConeSize - The maximum number of in-edges
2328552f7358SJed Brown - maxSupportSize - The maximum number of out-edges
2329552f7358SJed Brown 
2330552f7358SJed Brown   Level: beginner
2331552f7358SJed Brown 
2332552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart()
2333552f7358SJed Brown @*/
2334552f7358SJed Brown PetscErrorCode DMPlexGetMaxSizes(DM dm, PetscInt *maxConeSize, PetscInt *maxSupportSize)
2335552f7358SJed Brown {
2336552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
2337552f7358SJed Brown 
2338552f7358SJed Brown   PetscFunctionBegin;
2339552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2340552f7358SJed Brown   if (maxConeSize)    *maxConeSize    = mesh->maxConeSize;
2341552f7358SJed Brown   if (maxSupportSize) *maxSupportSize = mesh->maxSupportSize;
2342552f7358SJed Brown   PetscFunctionReturn(0);
2343552f7358SJed Brown }
2344552f7358SJed Brown 
2345552f7358SJed Brown PetscErrorCode DMSetUp_Plex(DM dm)
2346552f7358SJed Brown {
2347552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2348552f7358SJed Brown   PetscInt       size;
2349552f7358SJed Brown   PetscErrorCode ierr;
2350552f7358SJed Brown 
2351552f7358SJed Brown   PetscFunctionBegin;
2352552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2353552f7358SJed Brown   ierr = PetscSectionSetUp(mesh->coneSection);CHKERRQ(ierr);
2354552f7358SJed Brown   ierr = PetscSectionGetStorageSize(mesh->coneSection, &size);CHKERRQ(ierr);
23551795a4d1SJed Brown   ierr = PetscMalloc1(size, &mesh->cones);CHKERRQ(ierr);
23561795a4d1SJed Brown   ierr = PetscCalloc1(size, &mesh->coneOrientations);CHKERRQ(ierr);
2357552f7358SJed Brown   if (mesh->maxSupportSize) {
2358552f7358SJed Brown     ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr);
2359552f7358SJed Brown     ierr = PetscSectionGetStorageSize(mesh->supportSection, &size);CHKERRQ(ierr);
23601795a4d1SJed Brown     ierr = PetscMalloc1(size, &mesh->supports);CHKERRQ(ierr);
2361552f7358SJed Brown   }
2362552f7358SJed Brown   PetscFunctionReturn(0);
2363552f7358SJed Brown }
2364552f7358SJed Brown 
2365276c5506SMatthew G. Knepley PetscErrorCode DMCreateSubDM_Plex(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm)
2366552f7358SJed Brown {
2367552f7358SJed Brown   PetscErrorCode ierr;
2368552f7358SJed Brown 
2369552f7358SJed Brown   PetscFunctionBegin;
23704d9407bcSMatthew G. Knepley   if (subdm) {ierr = DMClone(dm, subdm);CHKERRQ(ierr);}
23714d9407bcSMatthew G. Knepley   ierr = DMCreateSubDM_Section_Private(dm, numFields, fields, is, subdm);CHKERRQ(ierr);
2372c2939958SSatish Balay   if (subdm) {(*subdm)->useNatural = dm->useNatural;}
2373736995cdSBlaise Bourdin   if (dm->useNatural && dm->sfMigration) {
2374f94b4a02SBlaise Bourdin     PetscSF        sfMigrationInv,sfNatural;
2375f94b4a02SBlaise Bourdin     PetscSection   section, sectionSeq;
2376f94b4a02SBlaise Bourdin 
23773dcd263cSBlaise Bourdin     (*subdm)->sfMigration = dm->sfMigration;
23783dcd263cSBlaise Bourdin     ierr = PetscObjectReference((PetscObject) dm->sfMigration);CHKERRQ(ierr);
2379e87a4003SBarry Smith     ierr = DMGetSection((*subdm), &section);CHKERRQ(ierr);CHKERRQ(ierr);
2380f94b4a02SBlaise Bourdin     ierr = PetscSFCreateInverseSF((*subdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr);
2381f94b4a02SBlaise Bourdin     ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*subdm)), &sectionSeq);CHKERRQ(ierr);
2382f94b4a02SBlaise Bourdin     ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr);
2383f94b4a02SBlaise Bourdin 
2384f94b4a02SBlaise Bourdin     ierr = DMPlexCreateGlobalToNaturalSF(*subdm, sectionSeq, (*subdm)->sfMigration, &sfNatural);CHKERRQ(ierr);
2385c40e9495SBlaise Bourdin     (*subdm)->sfNatural = sfNatural;
2386f94b4a02SBlaise Bourdin     ierr = PetscSectionDestroy(&sectionSeq);CHKERRQ(ierr);
2387f94b4a02SBlaise Bourdin     ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr);
2388f94b4a02SBlaise Bourdin   }
2389552f7358SJed Brown   PetscFunctionReturn(0);
2390552f7358SJed Brown }
2391552f7358SJed Brown 
23922adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM_Plex(DM dms[], PetscInt len, IS **is, DM *superdm)
23932adcc780SMatthew G. Knepley {
23942adcc780SMatthew G. Knepley   PetscErrorCode ierr;
23953dcd263cSBlaise Bourdin   PetscInt       i = 0;
23962adcc780SMatthew G. Knepley 
23972adcc780SMatthew G. Knepley   PetscFunctionBegin;
2398435bcee1SStefano Zampini   ierr = DMClone(dms[0], superdm);CHKERRQ(ierr);
23992adcc780SMatthew G. Knepley   ierr = DMCreateSuperDM_Section_Private(dms, len, is, superdm);CHKERRQ(ierr);
2400c40e9495SBlaise Bourdin   (*superdm)->useNatural = PETSC_FALSE;
24013dcd263cSBlaise Bourdin   for (i = 0; i < len; i++){
24023dcd263cSBlaise Bourdin     if (dms[i]->useNatural && dms[i]->sfMigration) {
24033dcd263cSBlaise Bourdin       PetscSF        sfMigrationInv,sfNatural;
24043dcd263cSBlaise Bourdin       PetscSection   section, sectionSeq;
24053dcd263cSBlaise Bourdin 
24063dcd263cSBlaise Bourdin       (*superdm)->sfMigration = dms[i]->sfMigration;
24073dcd263cSBlaise Bourdin       ierr = PetscObjectReference((PetscObject) dms[i]->sfMigration);CHKERRQ(ierr);
2408c40e9495SBlaise Bourdin       (*superdm)->useNatural = PETSC_TRUE;
2409cf0b7c11SKarl Rupp       ierr = DMGetSection((*superdm), &section);CHKERRQ(ierr);
24103dcd263cSBlaise Bourdin       ierr = PetscSFCreateInverseSF((*superdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr);
24113dcd263cSBlaise Bourdin       ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*superdm)), &sectionSeq);CHKERRQ(ierr);
24123dcd263cSBlaise Bourdin       ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr);
24133dcd263cSBlaise Bourdin 
24143dcd263cSBlaise Bourdin       ierr = DMPlexCreateGlobalToNaturalSF(*superdm, sectionSeq, (*superdm)->sfMigration, &sfNatural);CHKERRQ(ierr);
2415c40e9495SBlaise Bourdin       (*superdm)->sfNatural = sfNatural;
24163dcd263cSBlaise Bourdin       ierr = PetscSectionDestroy(&sectionSeq);CHKERRQ(ierr);
24173dcd263cSBlaise Bourdin       ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr);
24183dcd263cSBlaise Bourdin       break;
24193dcd263cSBlaise Bourdin     }
24203dcd263cSBlaise Bourdin   }
24212adcc780SMatthew G. Knepley   PetscFunctionReturn(0);
24222adcc780SMatthew G. Knepley }
24232adcc780SMatthew G. Knepley 
2424552f7358SJed Brown /*@
2425eaf898f9SPatrick Sanan   DMPlexSymmetrize - Create support (out-edge) information from cone (in-edge) information
2426552f7358SJed Brown 
2427552f7358SJed Brown   Not collective
2428552f7358SJed Brown 
2429552f7358SJed Brown   Input Parameter:
2430552f7358SJed Brown . mesh - The DMPlex
2431552f7358SJed Brown 
2432552f7358SJed Brown   Output Parameter:
2433552f7358SJed Brown 
2434552f7358SJed Brown   Note:
2435552f7358SJed Brown   This should be called after all calls to DMPlexSetCone()
2436552f7358SJed Brown 
2437552f7358SJed Brown   Level: beginner
2438552f7358SJed Brown 
2439552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart(), DMPlexSetConeSize(), DMPlexSetCone()
2440552f7358SJed Brown @*/
2441552f7358SJed Brown PetscErrorCode DMPlexSymmetrize(DM dm)
2442552f7358SJed Brown {
2443552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2444552f7358SJed Brown   PetscInt      *offsets;
2445552f7358SJed Brown   PetscInt       supportSize;
2446552f7358SJed Brown   PetscInt       pStart, pEnd, p;
2447552f7358SJed Brown   PetscErrorCode ierr;
2448552f7358SJed Brown 
2449552f7358SJed Brown   PetscFunctionBegin;
2450552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
245182f516ccSBarry Smith   if (mesh->supports) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Supports were already setup in this DMPlex");
2452552f7358SJed Brown   /* Calculate support sizes */
2453552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
2454552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2455552f7358SJed Brown     PetscInt dof, off, c;
2456552f7358SJed Brown 
2457552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2458552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
2459552f7358SJed Brown     for (c = off; c < off+dof; ++c) {
2460552f7358SJed Brown       ierr = PetscSectionAddDof(mesh->supportSection, mesh->cones[c], 1);CHKERRQ(ierr);
2461552f7358SJed Brown     }
2462552f7358SJed Brown   }
2463552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2464552f7358SJed Brown     PetscInt dof;
2465552f7358SJed Brown 
2466552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr);
24670d644c17SKarl Rupp 
2468552f7358SJed Brown     mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, dof);
2469552f7358SJed Brown   }
2470552f7358SJed Brown   ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr);
2471552f7358SJed Brown   /* Calculate supports */
2472552f7358SJed Brown   ierr = PetscSectionGetStorageSize(mesh->supportSection, &supportSize);CHKERRQ(ierr);
24731795a4d1SJed Brown   ierr = PetscMalloc1(supportSize, &mesh->supports);CHKERRQ(ierr);
24741795a4d1SJed Brown   ierr = PetscCalloc1(pEnd - pStart, &offsets);CHKERRQ(ierr);
2475552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2476552f7358SJed Brown     PetscInt dof, off, c;
2477552f7358SJed Brown 
2478552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr);
2479552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr);
2480552f7358SJed Brown     for (c = off; c < off+dof; ++c) {
2481552f7358SJed Brown       const PetscInt q = mesh->cones[c];
2482552f7358SJed Brown       PetscInt       offS;
2483552f7358SJed Brown 
2484552f7358SJed Brown       ierr = PetscSectionGetOffset(mesh->supportSection, q, &offS);CHKERRQ(ierr);
24850d644c17SKarl Rupp 
2486552f7358SJed Brown       mesh->supports[offS+offsets[q]] = p;
2487552f7358SJed Brown       ++offsets[q];
2488552f7358SJed Brown     }
2489552f7358SJed Brown   }
2490552f7358SJed Brown   ierr = PetscFree(offsets);CHKERRQ(ierr);
2491552f7358SJed Brown   PetscFunctionReturn(0);
2492552f7358SJed Brown }
2493552f7358SJed Brown 
24947d5acc75SStefano Zampini static PetscErrorCode DMPlexCreateDimStratum(DM,DMLabel,DMLabel,PetscInt,PetscInt);
24957d5acc75SStefano Zampini 
2496552f7358SJed Brown /*@
2497eaf898f9SPatrick Sanan   DMPlexStratify - The DAG for most topologies is a graded poset (http://en.wikipedia.org/wiki/Graded_poset), and
2498eaf898f9SPatrick Sanan   can be illustrated by a Hasse Diagram (a http://en.wikipedia.org/wiki/Hasse_diagram). The strata group all points of the
2499552f7358SJed Brown   same grade, and this function calculates the strata. This grade can be seen as the height (or depth) of the point in
2500552f7358SJed Brown   the DAG.
2501552f7358SJed Brown 
2502bf4602e4SToby Isaac   Collective on dm
2503552f7358SJed Brown 
2504552f7358SJed Brown   Input Parameter:
2505552f7358SJed Brown . mesh - The DMPlex
2506552f7358SJed Brown 
2507552f7358SJed Brown   Output Parameter:
2508552f7358SJed Brown 
2509552f7358SJed Brown   Notes:
2510150b719bSJed Brown   Concretely, DMPlexStratify() creates a new label named "depth" containing the dimension of each element: 0 for vertices,
2511150b719bSJed Brown   1 for edges, and so on.  The depth label can be accessed through DMPlexGetDepthLabel() or DMPlexGetDepthStratum(), or
2512c58f1c22SToby Isaac   manually via DMGetLabel().  The height is defined implicitly by height = maxDimension - depth, and can be accessed
2513150b719bSJed Brown   via DMPlexGetHeightStratum().  For example, cells have height 0 and faces have height 1.
2514552f7358SJed Brown 
2515150b719bSJed Brown   DMPlexStratify() should be called after all calls to DMPlexSymmetrize()
2516552f7358SJed Brown 
2517552f7358SJed Brown   Level: beginner
2518552f7358SJed Brown 
2519552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSymmetrize()
2520552f7358SJed Brown @*/
2521552f7358SJed Brown PetscErrorCode DMPlexStratify(DM dm)
2522552f7358SJed Brown {
2523df0420ecSMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
2524aa50250dSMatthew G. Knepley   DMLabel        label;
2525552f7358SJed Brown   PetscInt       pStart, pEnd, p;
2526552f7358SJed Brown   PetscInt       numRoots = 0, numLeaves = 0;
25277d5acc75SStefano Zampini   PetscInt       cMax, fMax, eMax, vMax;
2528552f7358SJed Brown   PetscErrorCode ierr;
2529552f7358SJed Brown 
2530552f7358SJed Brown   PetscFunctionBegin;
2531552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2532552f7358SJed Brown   ierr = PetscLogEventBegin(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr);
2533552f7358SJed Brown   /* Calculate depth */
2534aa50250dSMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
2535c58f1c22SToby Isaac   ierr = DMCreateLabel(dm, "depth");CHKERRQ(ierr);
2536aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
2537552f7358SJed Brown   /* Initialize roots and count leaves */
2538552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
2539552f7358SJed Brown     PetscInt coneSize, supportSize;
2540552f7358SJed Brown 
2541552f7358SJed Brown     ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
2542552f7358SJed Brown     ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
2543552f7358SJed Brown     if (!coneSize && supportSize) {
2544552f7358SJed Brown       ++numRoots;
2545aa50250dSMatthew G. Knepley       ierr = DMLabelSetValue(label, p, 0);CHKERRQ(ierr);
2546552f7358SJed Brown     } else if (!supportSize && coneSize) {
2547552f7358SJed Brown       ++numLeaves;
2548552f7358SJed Brown     } else if (!supportSize && !coneSize) {
2549552f7358SJed Brown       /* Isolated points */
2550aa50250dSMatthew G. Knepley       ierr = DMLabelSetValue(label, p, 0);CHKERRQ(ierr);
2551552f7358SJed Brown     }
2552552f7358SJed Brown   }
2553552f7358SJed Brown   if (numRoots + numLeaves == (pEnd - pStart)) {
2554552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
2555552f7358SJed Brown       PetscInt coneSize, supportSize;
2556552f7358SJed Brown 
2557552f7358SJed Brown       ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
2558552f7358SJed Brown       ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
2559552f7358SJed Brown       if (!supportSize && coneSize) {
2560aa50250dSMatthew G. Knepley         ierr = DMLabelSetValue(label, p, 1);CHKERRQ(ierr);
2561552f7358SJed Brown       }
2562552f7358SJed Brown     }
2563552f7358SJed Brown   } else {
256474ef644bSMatthew G. Knepley     IS       pointIS;
256574ef644bSMatthew G. Knepley     PetscInt numPoints = 0, level = 0;
2566552f7358SJed Brown 
256774ef644bSMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, level, &pointIS);CHKERRQ(ierr);
256874ef644bSMatthew G. Knepley     if (pointIS) {ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);}
256974ef644bSMatthew G. Knepley     while (numPoints) {
257074ef644bSMatthew G. Knepley       const PetscInt *points;
257174ef644bSMatthew G. Knepley       const PetscInt  newLevel = level+1;
257274ef644bSMatthew G. Knepley 
257374ef644bSMatthew G. Knepley       ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
257474ef644bSMatthew G. Knepley       for (p = 0; p < numPoints; ++p) {
257574ef644bSMatthew G. Knepley         const PetscInt  point = points[p];
257674ef644bSMatthew G. Knepley         const PetscInt *support;
257774ef644bSMatthew G. Knepley         PetscInt        supportSize, s;
257874ef644bSMatthew G. Knepley 
257974ef644bSMatthew G. Knepley         ierr = DMPlexGetSupportSize(dm, point, &supportSize);CHKERRQ(ierr);
258074ef644bSMatthew G. Knepley         ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
258174ef644bSMatthew G. Knepley         for (s = 0; s < supportSize; ++s) {
258274ef644bSMatthew G. Knepley           ierr = DMLabelSetValue(label, support[s], newLevel);CHKERRQ(ierr);
2583552f7358SJed Brown         }
2584552f7358SJed Brown       }
25855edfc765SMatthew G. Knepley       ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
258674ef644bSMatthew G. Knepley       ++level;
258774ef644bSMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
258874ef644bSMatthew G. Knepley       ierr = DMLabelGetStratumIS(label, level, &pointIS);CHKERRQ(ierr);
258974ef644bSMatthew G. Knepley       if (pointIS) {ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);}
259074ef644bSMatthew G. Knepley       else         {numPoints = 0;}
259174ef644bSMatthew G. Knepley     }
259274ef644bSMatthew G. Knepley     ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
259374ef644bSMatthew G. Knepley   }
2594bf4602e4SToby Isaac   { /* just in case there is an empty process */
2595bf4602e4SToby Isaac     PetscInt numValues, maxValues = 0, v;
2596bf4602e4SToby Isaac 
2597bf4602e4SToby Isaac     ierr = DMLabelGetNumValues(label,&numValues);CHKERRQ(ierr);
25984de306b1SToby Isaac     for (v = 0; v < numValues; v++) {
25994de306b1SToby Isaac       IS pointIS;
26004de306b1SToby Isaac 
26014de306b1SToby Isaac       ierr = DMLabelGetStratumIS(label, v, &pointIS);CHKERRQ(ierr);
26024de306b1SToby Isaac       if (pointIS) {
26034de306b1SToby Isaac         PetscInt  min, max, numPoints;
26044de306b1SToby Isaac         PetscInt  start;
26054de306b1SToby Isaac         PetscBool contig;
26064de306b1SToby Isaac 
26074de306b1SToby Isaac         ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);
26084de306b1SToby Isaac         ierr = ISGetMinMax(pointIS, &min, &max);CHKERRQ(ierr);
26094de306b1SToby Isaac         ierr = ISContiguousLocal(pointIS,min,max+1,&start,&contig);CHKERRQ(ierr);
26104de306b1SToby Isaac         if (start == 0 && contig) {
26114de306b1SToby Isaac           ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
26124de306b1SToby Isaac           ierr = ISCreateStride(PETSC_COMM_SELF,numPoints,min,1,&pointIS);CHKERRQ(ierr);
26134de306b1SToby Isaac           ierr = DMLabelSetStratumIS(label, v, pointIS);CHKERRQ(ierr);
26144de306b1SToby Isaac         }
26154de306b1SToby Isaac       }
26164de306b1SToby Isaac       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
26174de306b1SToby Isaac     }
26186d1e82d3SBarry Smith     ierr = MPI_Allreduce(&numValues,&maxValues,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
2619bf4602e4SToby Isaac     for (v = numValues; v < maxValues; v++) {
2620367003a6SStefano Zampini       ierr = DMLabelAddStratum(label,v);CHKERRQ(ierr);
2621bf4602e4SToby Isaac     }
2622bf4602e4SToby Isaac   }
2623*d67d17b1SMatthew G. Knepley   ierr = PetscObjectStateGet((PetscObject) label, &mesh->depthState);CHKERRQ(ierr);
26247d5acc75SStefano Zampini 
26257d5acc75SStefano Zampini   ierr = DMPlexGetHybridBounds(dm, &cMax, &fMax, &eMax, &vMax);CHKERRQ(ierr);
26267d5acc75SStefano Zampini   if (cMax >= 0 || fMax >= 0 || eMax >= 0 || vMax >= 0) {
26277d5acc75SStefano Zampini     DMLabel  dimLabel;
26287d5acc75SStefano Zampini     PetscInt dim;
26297d5acc75SStefano Zampini 
26307d5acc75SStefano Zampini     ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
26317d5acc75SStefano Zampini     ierr = DMGetLabel(dm, "dim", &dimLabel);CHKERRQ(ierr);
26327d5acc75SStefano Zampini     if (!dimLabel) {
26337d5acc75SStefano Zampini       ierr = DMCreateLabel(dm, "dim");CHKERRQ(ierr);
26347d5acc75SStefano Zampini       ierr = DMGetLabel(dm, "dim", &dimLabel);CHKERRQ(ierr);
26357d5acc75SStefano Zampini     }
26367d5acc75SStefano Zampini     if (cMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, dim, cMax);CHKERRQ(ierr);}
26377d5acc75SStefano Zampini     if (fMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, dim - 1, fMax);CHKERRQ(ierr);}
26387d5acc75SStefano Zampini     if (eMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, 1, eMax);CHKERRQ(ierr);}
26397d5acc75SStefano Zampini     if (vMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, 0, vMax);CHKERRQ(ierr);}
26407d5acc75SStefano Zampini   }
2641552f7358SJed Brown   ierr = PetscLogEventEnd(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr);
2642552f7358SJed Brown   PetscFunctionReturn(0);
2643552f7358SJed Brown }
2644552f7358SJed Brown 
2645552f7358SJed Brown /*@C
2646552f7358SJed Brown   DMPlexGetJoin - Get an array for the join of the set of points
2647552f7358SJed Brown 
2648552f7358SJed Brown   Not Collective
2649552f7358SJed Brown 
2650552f7358SJed Brown   Input Parameters:
2651552f7358SJed Brown + dm - The DMPlex object
2652552f7358SJed Brown . numPoints - The number of input points for the join
2653552f7358SJed Brown - points - The input points
2654552f7358SJed Brown 
2655552f7358SJed Brown   Output Parameters:
2656552f7358SJed Brown + numCoveredPoints - The number of points in the join
2657552f7358SJed Brown - coveredPoints - The points in the join
2658552f7358SJed Brown 
2659552f7358SJed Brown   Level: intermediate
2660552f7358SJed Brown 
2661552f7358SJed Brown   Note: Currently, this is restricted to a single level join
2662552f7358SJed Brown 
26633813dfbdSMatthew G Knepley   Fortran Notes:
26643813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
26653813dfbdSMatthew G Knepley   include petsc.h90 in your code.
26663813dfbdSMatthew G Knepley 
26673813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
26683813dfbdSMatthew G Knepley 
2669552f7358SJed Brown .keywords: mesh
2670552f7358SJed Brown .seealso: DMPlexRestoreJoin(), DMPlexGetMeet()
2671552f7358SJed Brown @*/
2672552f7358SJed Brown PetscErrorCode DMPlexGetJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
2673552f7358SJed Brown {
2674552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2675552f7358SJed Brown   PetscInt      *join[2];
2676552f7358SJed Brown   PetscInt       joinSize, i = 0;
2677552f7358SJed Brown   PetscInt       dof, off, p, c, m;
2678552f7358SJed Brown   PetscErrorCode ierr;
2679552f7358SJed Brown 
2680552f7358SJed Brown   PetscFunctionBegin;
2681552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2682552f7358SJed Brown   PetscValidPointer(points, 2);
2683552f7358SJed Brown   PetscValidPointer(numCoveredPoints, 3);
2684552f7358SJed Brown   PetscValidPointer(coveredPoints, 4);
268569291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[0]);CHKERRQ(ierr);
268669291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1]);CHKERRQ(ierr);
2687552f7358SJed Brown   /* Copy in support of first point */
2688552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->supportSection, points[0], &dof);CHKERRQ(ierr);
2689552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->supportSection, points[0], &off);CHKERRQ(ierr);
2690552f7358SJed Brown   for (joinSize = 0; joinSize < dof; ++joinSize) {
2691552f7358SJed Brown     join[i][joinSize] = mesh->supports[off+joinSize];
2692552f7358SJed Brown   }
2693552f7358SJed Brown   /* Check each successive support */
2694552f7358SJed Brown   for (p = 1; p < numPoints; ++p) {
2695552f7358SJed Brown     PetscInt newJoinSize = 0;
2696552f7358SJed Brown 
2697552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->supportSection, points[p], &dof);CHKERRQ(ierr);
2698552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->supportSection, points[p], &off);CHKERRQ(ierr);
2699552f7358SJed Brown     for (c = 0; c < dof; ++c) {
2700552f7358SJed Brown       const PetscInt point = mesh->supports[off+c];
2701552f7358SJed Brown 
2702552f7358SJed Brown       for (m = 0; m < joinSize; ++m) {
2703552f7358SJed Brown         if (point == join[i][m]) {
2704552f7358SJed Brown           join[1-i][newJoinSize++] = point;
2705552f7358SJed Brown           break;
2706552f7358SJed Brown         }
2707552f7358SJed Brown       }
2708552f7358SJed Brown     }
2709552f7358SJed Brown     joinSize = newJoinSize;
2710552f7358SJed Brown     i        = 1-i;
2711552f7358SJed Brown   }
2712552f7358SJed Brown   *numCoveredPoints = joinSize;
2713552f7358SJed Brown   *coveredPoints    = join[i];
271469291d52SBarry Smith   ierr              = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr);
2715552f7358SJed Brown   PetscFunctionReturn(0);
2716552f7358SJed Brown }
2717552f7358SJed Brown 
2718552f7358SJed Brown /*@C
2719552f7358SJed Brown   DMPlexRestoreJoin - Restore an array for the join of the set of points
2720552f7358SJed Brown 
2721552f7358SJed Brown   Not Collective
2722552f7358SJed Brown 
2723552f7358SJed Brown   Input Parameters:
2724552f7358SJed Brown + dm - The DMPlex object
2725552f7358SJed Brown . numPoints - The number of input points for the join
2726552f7358SJed Brown - points - The input points
2727552f7358SJed Brown 
2728552f7358SJed Brown   Output Parameters:
2729552f7358SJed Brown + numCoveredPoints - The number of points in the join
2730552f7358SJed Brown - coveredPoints - The points in the join
2731552f7358SJed Brown 
27323813dfbdSMatthew G Knepley   Fortran Notes:
27333813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
27343813dfbdSMatthew G Knepley   include petsc.h90 in your code.
27353813dfbdSMatthew G Knepley 
27363813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
27373813dfbdSMatthew G Knepley 
2738552f7358SJed Brown   Level: intermediate
2739552f7358SJed Brown 
2740552f7358SJed Brown .keywords: mesh
2741552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexGetFullJoin(), DMPlexGetMeet()
2742552f7358SJed Brown @*/
2743552f7358SJed Brown PetscErrorCode DMPlexRestoreJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
2744552f7358SJed Brown {
2745552f7358SJed Brown   PetscErrorCode ierr;
2746552f7358SJed Brown 
2747552f7358SJed Brown   PetscFunctionBegin;
2748552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2749d7902bd2SMatthew G. Knepley   if (points) PetscValidIntPointer(points,3);
2750d7902bd2SMatthew G. Knepley   if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4);
2751d7902bd2SMatthew G. Knepley   PetscValidPointer(coveredPoints, 5);
275269291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr);
2753d7902bd2SMatthew G. Knepley   if (numCoveredPoints) *numCoveredPoints = 0;
2754552f7358SJed Brown   PetscFunctionReturn(0);
2755552f7358SJed Brown }
2756552f7358SJed Brown 
2757552f7358SJed Brown /*@C
2758552f7358SJed Brown   DMPlexGetFullJoin - Get an array for the join of the set of points
2759552f7358SJed Brown 
2760552f7358SJed Brown   Not Collective
2761552f7358SJed Brown 
2762552f7358SJed Brown   Input Parameters:
2763552f7358SJed Brown + dm - The DMPlex object
2764552f7358SJed Brown . numPoints - The number of input points for the join
2765552f7358SJed Brown - points - The input points
2766552f7358SJed Brown 
2767552f7358SJed Brown   Output Parameters:
2768552f7358SJed Brown + numCoveredPoints - The number of points in the join
2769552f7358SJed Brown - coveredPoints - The points in the join
2770552f7358SJed Brown 
27713813dfbdSMatthew G Knepley   Fortran Notes:
27723813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
27733813dfbdSMatthew G Knepley   include petsc.h90 in your code.
27743813dfbdSMatthew G Knepley 
27753813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
27763813dfbdSMatthew G Knepley 
2777552f7358SJed Brown   Level: intermediate
2778552f7358SJed Brown 
2779552f7358SJed Brown .keywords: mesh
2780552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexRestoreJoin(), DMPlexGetMeet()
2781552f7358SJed Brown @*/
2782552f7358SJed Brown PetscErrorCode DMPlexGetFullJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
2783552f7358SJed Brown {
2784552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2785552f7358SJed Brown   PetscInt      *offsets, **closures;
2786552f7358SJed Brown   PetscInt      *join[2];
2787552f7358SJed Brown   PetscInt       depth = 0, maxSize, joinSize = 0, i = 0;
278824c766afSToby Isaac   PetscInt       p, d, c, m, ms;
2789552f7358SJed Brown   PetscErrorCode ierr;
2790552f7358SJed Brown 
2791552f7358SJed Brown   PetscFunctionBegin;
2792552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2793552f7358SJed Brown   PetscValidPointer(points, 2);
2794552f7358SJed Brown   PetscValidPointer(numCoveredPoints, 3);
2795552f7358SJed Brown   PetscValidPointer(coveredPoints, 4);
2796552f7358SJed Brown 
2797552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
27981795a4d1SJed Brown   ierr    = PetscCalloc1(numPoints, &closures);CHKERRQ(ierr);
279969291d52SBarry Smith   ierr    = DMGetWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr);
280024c766afSToby Isaac   ms      = mesh->maxSupportSize;
280124c766afSToby Isaac   maxSize = (ms > 1) ? ((PetscPowInt(ms,depth+1)-1)/(ms-1)) : depth + 1;
280269291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[0]);CHKERRQ(ierr);
280369291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[1]);CHKERRQ(ierr);
2804552f7358SJed Brown 
2805552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
2806552f7358SJed Brown     PetscInt closureSize;
2807552f7358SJed Brown 
2808552f7358SJed Brown     ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_FALSE, &closureSize, &closures[p]);CHKERRQ(ierr);
28090d644c17SKarl Rupp 
2810552f7358SJed Brown     offsets[p*(depth+2)+0] = 0;
2811552f7358SJed Brown     for (d = 0; d < depth+1; ++d) {
2812552f7358SJed Brown       PetscInt pStart, pEnd, i;
2813552f7358SJed Brown 
2814552f7358SJed Brown       ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr);
2815552f7358SJed Brown       for (i = offsets[p*(depth+2)+d]; i < closureSize; ++i) {
2816552f7358SJed Brown         if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) {
2817552f7358SJed Brown           offsets[p*(depth+2)+d+1] = i;
2818552f7358SJed Brown           break;
2819552f7358SJed Brown         }
2820552f7358SJed Brown       }
2821552f7358SJed Brown       if (i == closureSize) offsets[p*(depth+2)+d+1] = i;
2822552f7358SJed Brown     }
282382f516ccSBarry 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);
2824552f7358SJed Brown   }
2825552f7358SJed Brown   for (d = 0; d < depth+1; ++d) {
2826552f7358SJed Brown     PetscInt dof;
2827552f7358SJed Brown 
2828552f7358SJed Brown     /* Copy in support of first point */
2829552f7358SJed Brown     dof = offsets[d+1] - offsets[d];
2830552f7358SJed Brown     for (joinSize = 0; joinSize < dof; ++joinSize) {
2831552f7358SJed Brown       join[i][joinSize] = closures[0][(offsets[d]+joinSize)*2];
2832552f7358SJed Brown     }
2833552f7358SJed Brown     /* Check each successive cone */
2834552f7358SJed Brown     for (p = 1; p < numPoints && joinSize; ++p) {
2835552f7358SJed Brown       PetscInt newJoinSize = 0;
2836552f7358SJed Brown 
2837552f7358SJed Brown       dof = offsets[p*(depth+2)+d+1] - offsets[p*(depth+2)+d];
2838552f7358SJed Brown       for (c = 0; c < dof; ++c) {
2839552f7358SJed Brown         const PetscInt point = closures[p][(offsets[p*(depth+2)+d]+c)*2];
2840552f7358SJed Brown 
2841552f7358SJed Brown         for (m = 0; m < joinSize; ++m) {
2842552f7358SJed Brown           if (point == join[i][m]) {
2843552f7358SJed Brown             join[1-i][newJoinSize++] = point;
2844552f7358SJed Brown             break;
2845552f7358SJed Brown           }
2846552f7358SJed Brown         }
2847552f7358SJed Brown       }
2848552f7358SJed Brown       joinSize = newJoinSize;
2849552f7358SJed Brown       i        = 1-i;
2850552f7358SJed Brown     }
2851552f7358SJed Brown     if (joinSize) break;
2852552f7358SJed Brown   }
2853552f7358SJed Brown   *numCoveredPoints = joinSize;
2854552f7358SJed Brown   *coveredPoints    = join[i];
2855552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
28560298fd71SBarry Smith     ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_FALSE, NULL, &closures[p]);CHKERRQ(ierr);
2857552f7358SJed Brown   }
2858552f7358SJed Brown   ierr = PetscFree(closures);CHKERRQ(ierr);
285969291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr);
286069291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr);
2861552f7358SJed Brown   PetscFunctionReturn(0);
2862552f7358SJed Brown }
2863552f7358SJed Brown 
2864552f7358SJed Brown /*@C
2865552f7358SJed Brown   DMPlexGetMeet - Get an array for the meet of the set of points
2866552f7358SJed Brown 
2867552f7358SJed Brown   Not Collective
2868552f7358SJed Brown 
2869552f7358SJed Brown   Input Parameters:
2870552f7358SJed Brown + dm - The DMPlex object
2871552f7358SJed Brown . numPoints - The number of input points for the meet
2872552f7358SJed Brown - points - The input points
2873552f7358SJed Brown 
2874552f7358SJed Brown   Output Parameters:
2875552f7358SJed Brown + numCoveredPoints - The number of points in the meet
2876552f7358SJed Brown - coveredPoints - The points in the meet
2877552f7358SJed Brown 
2878552f7358SJed Brown   Level: intermediate
2879552f7358SJed Brown 
2880552f7358SJed Brown   Note: Currently, this is restricted to a single level meet
2881552f7358SJed Brown 
28823813dfbdSMatthew G Knepley   Fortran Notes:
28833813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
28843813dfbdSMatthew G Knepley   include petsc.h90 in your code.
28853813dfbdSMatthew G Knepley 
28863813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
28873813dfbdSMatthew G Knepley 
2888552f7358SJed Brown .keywords: mesh
2889552f7358SJed Brown .seealso: DMPlexRestoreMeet(), DMPlexGetJoin()
2890552f7358SJed Brown @*/
2891552f7358SJed Brown PetscErrorCode DMPlexGetMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveringPoints, const PetscInt **coveringPoints)
2892552f7358SJed Brown {
2893552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
2894552f7358SJed Brown   PetscInt      *meet[2];
2895552f7358SJed Brown   PetscInt       meetSize, i = 0;
2896552f7358SJed Brown   PetscInt       dof, off, p, c, m;
2897552f7358SJed Brown   PetscErrorCode ierr;
2898552f7358SJed Brown 
2899552f7358SJed Brown   PetscFunctionBegin;
2900552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2901552f7358SJed Brown   PetscValidPointer(points, 2);
2902552f7358SJed Brown   PetscValidPointer(numCoveringPoints, 3);
2903552f7358SJed Brown   PetscValidPointer(coveringPoints, 4);
290469291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[0]);CHKERRQ(ierr);
290569291d52SBarry Smith   ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1]);CHKERRQ(ierr);
2906552f7358SJed Brown   /* Copy in cone of first point */
2907552f7358SJed Brown   ierr = PetscSectionGetDof(mesh->coneSection, points[0], &dof);CHKERRQ(ierr);
2908552f7358SJed Brown   ierr = PetscSectionGetOffset(mesh->coneSection, points[0], &off);CHKERRQ(ierr);
2909552f7358SJed Brown   for (meetSize = 0; meetSize < dof; ++meetSize) {
2910552f7358SJed Brown     meet[i][meetSize] = mesh->cones[off+meetSize];
2911552f7358SJed Brown   }
2912552f7358SJed Brown   /* Check each successive cone */
2913552f7358SJed Brown   for (p = 1; p < numPoints; ++p) {
2914552f7358SJed Brown     PetscInt newMeetSize = 0;
2915552f7358SJed Brown 
2916552f7358SJed Brown     ierr = PetscSectionGetDof(mesh->coneSection, points[p], &dof);CHKERRQ(ierr);
2917552f7358SJed Brown     ierr = PetscSectionGetOffset(mesh->coneSection, points[p], &off);CHKERRQ(ierr);
2918552f7358SJed Brown     for (c = 0; c < dof; ++c) {
2919552f7358SJed Brown       const PetscInt point = mesh->cones[off+c];
2920552f7358SJed Brown 
2921552f7358SJed Brown       for (m = 0; m < meetSize; ++m) {
2922552f7358SJed Brown         if (point == meet[i][m]) {
2923552f7358SJed Brown           meet[1-i][newMeetSize++] = point;
2924552f7358SJed Brown           break;
2925552f7358SJed Brown         }
2926552f7358SJed Brown       }
2927552f7358SJed Brown     }
2928552f7358SJed Brown     meetSize = newMeetSize;
2929552f7358SJed Brown     i        = 1-i;
2930552f7358SJed Brown   }
2931552f7358SJed Brown   *numCoveringPoints = meetSize;
2932552f7358SJed Brown   *coveringPoints    = meet[i];
293369291d52SBarry Smith   ierr               = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr);
2934552f7358SJed Brown   PetscFunctionReturn(0);
2935552f7358SJed Brown }
2936552f7358SJed Brown 
2937552f7358SJed Brown /*@C
2938552f7358SJed Brown   DMPlexRestoreMeet - Restore an array for the meet of the set of points
2939552f7358SJed Brown 
2940552f7358SJed Brown   Not Collective
2941552f7358SJed Brown 
2942552f7358SJed Brown   Input Parameters:
2943552f7358SJed Brown + dm - The DMPlex object
2944552f7358SJed Brown . numPoints - The number of input points for the meet
2945552f7358SJed Brown - points - The input points
2946552f7358SJed Brown 
2947552f7358SJed Brown   Output Parameters:
2948552f7358SJed Brown + numCoveredPoints - The number of points in the meet
2949552f7358SJed Brown - coveredPoints - The points in the meet
2950552f7358SJed Brown 
2951552f7358SJed Brown   Level: intermediate
2952552f7358SJed Brown 
29533813dfbdSMatthew G Knepley   Fortran Notes:
29543813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
29553813dfbdSMatthew G Knepley   include petsc.h90 in your code.
29563813dfbdSMatthew G Knepley 
29573813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
29583813dfbdSMatthew G Knepley 
2959552f7358SJed Brown .keywords: mesh
2960552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexGetFullMeet(), DMPlexGetJoin()
2961552f7358SJed Brown @*/
2962552f7358SJed Brown PetscErrorCode DMPlexRestoreMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
2963552f7358SJed Brown {
2964552f7358SJed Brown   PetscErrorCode ierr;
2965552f7358SJed Brown 
2966552f7358SJed Brown   PetscFunctionBegin;
2967552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2968d7902bd2SMatthew G. Knepley   if (points) PetscValidIntPointer(points,3);
2969d7902bd2SMatthew G. Knepley   if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4);
2970d7902bd2SMatthew G. Knepley   PetscValidPointer(coveredPoints,5);
297169291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr);
2972d7902bd2SMatthew G. Knepley   if (numCoveredPoints) *numCoveredPoints = 0;
2973552f7358SJed Brown   PetscFunctionReturn(0);
2974552f7358SJed Brown }
2975552f7358SJed Brown 
2976552f7358SJed Brown /*@C
2977552f7358SJed Brown   DMPlexGetFullMeet - Get an array for the meet of the set of points
2978552f7358SJed Brown 
2979552f7358SJed Brown   Not Collective
2980552f7358SJed Brown 
2981552f7358SJed Brown   Input Parameters:
2982552f7358SJed Brown + dm - The DMPlex object
2983552f7358SJed Brown . numPoints - The number of input points for the meet
2984552f7358SJed Brown - points - The input points
2985552f7358SJed Brown 
2986552f7358SJed Brown   Output Parameters:
2987552f7358SJed Brown + numCoveredPoints - The number of points in the meet
2988552f7358SJed Brown - coveredPoints - The points in the meet
2989552f7358SJed Brown 
2990552f7358SJed Brown   Level: intermediate
2991552f7358SJed Brown 
29923813dfbdSMatthew G Knepley   Fortran Notes:
29933813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
29943813dfbdSMatthew G Knepley   include petsc.h90 in your code.
29953813dfbdSMatthew G Knepley 
29963813dfbdSMatthew G Knepley   The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array.
29973813dfbdSMatthew G Knepley 
2998552f7358SJed Brown .keywords: mesh
2999552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexRestoreMeet(), DMPlexGetJoin()
3000552f7358SJed Brown @*/
3001552f7358SJed Brown PetscErrorCode DMPlexGetFullMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints)
3002552f7358SJed Brown {
3003552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
3004552f7358SJed Brown   PetscInt      *offsets, **closures;
3005552f7358SJed Brown   PetscInt      *meet[2];
3006552f7358SJed Brown   PetscInt       height = 0, maxSize, meetSize = 0, i = 0;
300724c766afSToby Isaac   PetscInt       p, h, c, m, mc;
3008552f7358SJed Brown   PetscErrorCode ierr;
3009552f7358SJed Brown 
3010552f7358SJed Brown   PetscFunctionBegin;
3011552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3012552f7358SJed Brown   PetscValidPointer(points, 2);
3013552f7358SJed Brown   PetscValidPointer(numCoveredPoints, 3);
3014552f7358SJed Brown   PetscValidPointer(coveredPoints, 4);
3015552f7358SJed Brown 
3016552f7358SJed Brown   ierr    = DMPlexGetDepth(dm, &height);CHKERRQ(ierr);
3017785e854fSJed Brown   ierr    = PetscMalloc1(numPoints, &closures);CHKERRQ(ierr);
301869291d52SBarry Smith   ierr    = DMGetWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr);
301924c766afSToby Isaac   mc      = mesh->maxConeSize;
302024c766afSToby Isaac   maxSize = (mc > 1) ? ((PetscPowInt(mc,height+1)-1)/(mc-1)) : height + 1;
302169291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[0]);CHKERRQ(ierr);
302269291d52SBarry Smith   ierr    = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[1]);CHKERRQ(ierr);
3023552f7358SJed Brown 
3024552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
3025552f7358SJed Brown     PetscInt closureSize;
3026552f7358SJed Brown 
3027552f7358SJed Brown     ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_TRUE, &closureSize, &closures[p]);CHKERRQ(ierr);
30280d644c17SKarl Rupp 
3029552f7358SJed Brown     offsets[p*(height+2)+0] = 0;
3030552f7358SJed Brown     for (h = 0; h < height+1; ++h) {
3031552f7358SJed Brown       PetscInt pStart, pEnd, i;
3032552f7358SJed Brown 
3033552f7358SJed Brown       ierr = DMPlexGetHeightStratum(dm, h, &pStart, &pEnd);CHKERRQ(ierr);
3034552f7358SJed Brown       for (i = offsets[p*(height+2)+h]; i < closureSize; ++i) {
3035552f7358SJed Brown         if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) {
3036552f7358SJed Brown           offsets[p*(height+2)+h+1] = i;
3037552f7358SJed Brown           break;
3038552f7358SJed Brown         }
3039552f7358SJed Brown       }
3040552f7358SJed Brown       if (i == closureSize) offsets[p*(height+2)+h+1] = i;
3041552f7358SJed Brown     }
304282f516ccSBarry 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);
3043552f7358SJed Brown   }
3044552f7358SJed Brown   for (h = 0; h < height+1; ++h) {
3045552f7358SJed Brown     PetscInt dof;
3046552f7358SJed Brown 
3047552f7358SJed Brown     /* Copy in cone of first point */
3048552f7358SJed Brown     dof = offsets[h+1] - offsets[h];
3049552f7358SJed Brown     for (meetSize = 0; meetSize < dof; ++meetSize) {
3050552f7358SJed Brown       meet[i][meetSize] = closures[0][(offsets[h]+meetSize)*2];
3051552f7358SJed Brown     }
3052552f7358SJed Brown     /* Check each successive cone */
3053552f7358SJed Brown     for (p = 1; p < numPoints && meetSize; ++p) {
3054552f7358SJed Brown       PetscInt newMeetSize = 0;
3055552f7358SJed Brown 
3056552f7358SJed Brown       dof = offsets[p*(height+2)+h+1] - offsets[p*(height+2)+h];
3057552f7358SJed Brown       for (c = 0; c < dof; ++c) {
3058552f7358SJed Brown         const PetscInt point = closures[p][(offsets[p*(height+2)+h]+c)*2];
3059552f7358SJed Brown 
3060552f7358SJed Brown         for (m = 0; m < meetSize; ++m) {
3061552f7358SJed Brown           if (point == meet[i][m]) {
3062552f7358SJed Brown             meet[1-i][newMeetSize++] = point;
3063552f7358SJed Brown             break;
3064552f7358SJed Brown           }
3065552f7358SJed Brown         }
3066552f7358SJed Brown       }
3067552f7358SJed Brown       meetSize = newMeetSize;
3068552f7358SJed Brown       i        = 1-i;
3069552f7358SJed Brown     }
3070552f7358SJed Brown     if (meetSize) break;
3071552f7358SJed Brown   }
3072552f7358SJed Brown   *numCoveredPoints = meetSize;
3073552f7358SJed Brown   *coveredPoints    = meet[i];
3074552f7358SJed Brown   for (p = 0; p < numPoints; ++p) {
30750298fd71SBarry Smith     ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_TRUE, NULL, &closures[p]);CHKERRQ(ierr);
3076552f7358SJed Brown   }
3077552f7358SJed Brown   ierr = PetscFree(closures);CHKERRQ(ierr);
307869291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr);
307969291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr);
3080552f7358SJed Brown   PetscFunctionReturn(0);
3081552f7358SJed Brown }
3082552f7358SJed Brown 
30834e3744c5SMatthew G. Knepley /*@C
30844e3744c5SMatthew G. Knepley   DMPlexEqual - Determine if two DMs have the same topology
30854e3744c5SMatthew G. Knepley 
30864e3744c5SMatthew G. Knepley   Not Collective
30874e3744c5SMatthew G. Knepley 
30884e3744c5SMatthew G. Knepley   Input Parameters:
30894e3744c5SMatthew G. Knepley + dmA - A DMPlex object
30904e3744c5SMatthew G. Knepley - dmB - A DMPlex object
30914e3744c5SMatthew G. Knepley 
30924e3744c5SMatthew G. Knepley   Output Parameters:
30934e3744c5SMatthew G. Knepley . equal - PETSC_TRUE if the topologies are identical
30944e3744c5SMatthew G. Knepley 
30954e3744c5SMatthew G. Knepley   Level: intermediate
30964e3744c5SMatthew G. Knepley 
30974e3744c5SMatthew G. Knepley   Notes:
30984e3744c5SMatthew G. Knepley   We are not solving graph isomorphism, so we do not permutation.
30994e3744c5SMatthew G. Knepley 
31004e3744c5SMatthew G. Knepley .keywords: mesh
31014e3744c5SMatthew G. Knepley .seealso: DMPlexGetCone()
31024e3744c5SMatthew G. Knepley @*/
31034e3744c5SMatthew G. Knepley PetscErrorCode DMPlexEqual(DM dmA, DM dmB, PetscBool *equal)
31044e3744c5SMatthew G. Knepley {
31054e3744c5SMatthew G. Knepley   PetscInt       depth, depthB, pStart, pEnd, pStartB, pEndB, p;
31064e3744c5SMatthew G. Knepley   PetscErrorCode ierr;
31074e3744c5SMatthew G. Knepley 
31084e3744c5SMatthew G. Knepley   PetscFunctionBegin;
31094e3744c5SMatthew G. Knepley   PetscValidHeaderSpecific(dmA, DM_CLASSID, 1);
31104e3744c5SMatthew G. Knepley   PetscValidHeaderSpecific(dmB, DM_CLASSID, 2);
31114e3744c5SMatthew G. Knepley   PetscValidPointer(equal, 3);
31124e3744c5SMatthew G. Knepley 
31134e3744c5SMatthew G. Knepley   *equal = PETSC_FALSE;
31144e3744c5SMatthew G. Knepley   ierr = DMPlexGetDepth(dmA, &depth);CHKERRQ(ierr);
31154e3744c5SMatthew G. Knepley   ierr = DMPlexGetDepth(dmB, &depthB);CHKERRQ(ierr);
31164e3744c5SMatthew G. Knepley   if (depth != depthB) PetscFunctionReturn(0);
31174e3744c5SMatthew G. Knepley   ierr = DMPlexGetChart(dmA, &pStart,  &pEnd);CHKERRQ(ierr);
31184e3744c5SMatthew G. Knepley   ierr = DMPlexGetChart(dmB, &pStartB, &pEndB);CHKERRQ(ierr);
31194e3744c5SMatthew G. Knepley   if ((pStart != pStartB) || (pEnd != pEndB)) PetscFunctionReturn(0);
31204e3744c5SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
31214e3744c5SMatthew G. Knepley     const PetscInt *cone, *coneB, *ornt, *orntB, *support, *supportB;
31224e3744c5SMatthew G. Knepley     PetscInt        coneSize, coneSizeB, c, supportSize, supportSizeB, s;
31234e3744c5SMatthew G. Knepley 
31244e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeSize(dmA, p, &coneSize);CHKERRQ(ierr);
31254e3744c5SMatthew G. Knepley     ierr = DMPlexGetCone(dmA, p, &cone);CHKERRQ(ierr);
31264e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dmA, p, &ornt);CHKERRQ(ierr);
31274e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeSize(dmB, p, &coneSizeB);CHKERRQ(ierr);
31284e3744c5SMatthew G. Knepley     ierr = DMPlexGetCone(dmB, p, &coneB);CHKERRQ(ierr);
31294e3744c5SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dmB, p, &orntB);CHKERRQ(ierr);
31304e3744c5SMatthew G. Knepley     if (coneSize != coneSizeB) PetscFunctionReturn(0);
31314e3744c5SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
31324e3744c5SMatthew G. Knepley       if (cone[c] != coneB[c]) PetscFunctionReturn(0);
31334e3744c5SMatthew G. Knepley       if (ornt[c] != orntB[c]) PetscFunctionReturn(0);
31344e3744c5SMatthew G. Knepley     }
31354e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dmA, p, &supportSize);CHKERRQ(ierr);
31364e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupport(dmA, p, &support);CHKERRQ(ierr);
31374e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dmB, p, &supportSizeB);CHKERRQ(ierr);
31384e3744c5SMatthew G. Knepley     ierr = DMPlexGetSupport(dmB, p, &supportB);CHKERRQ(ierr);
31394e3744c5SMatthew G. Knepley     if (supportSize != supportSizeB) PetscFunctionReturn(0);
31404e3744c5SMatthew G. Knepley     for (s = 0; s < supportSize; ++s) {
31414e3744c5SMatthew G. Knepley       if (support[s] != supportB[s]) PetscFunctionReturn(0);
31424e3744c5SMatthew G. Knepley     }
31434e3744c5SMatthew G. Knepley   }
31444e3744c5SMatthew G. Knepley   *equal = PETSC_TRUE;
31454e3744c5SMatthew G. Knepley   PetscFunctionReturn(0);
31464e3744c5SMatthew G. Knepley }
31474e3744c5SMatthew G. Knepley 
31487cd05799SMatthew G. Knepley /*@C
31497cd05799SMatthew G. Knepley   DMPlexGetNumFaceVertices - Returns the number of vertices on a face
31507cd05799SMatthew G. Knepley 
31517cd05799SMatthew G. Knepley   Not Collective
31527cd05799SMatthew G. Knepley 
31537cd05799SMatthew G. Knepley   Input Parameters:
31547cd05799SMatthew G. Knepley + dm         - The DMPlex
31557cd05799SMatthew G. Knepley . cellDim    - The cell dimension
31567cd05799SMatthew G. Knepley - numCorners - The number of vertices on a cell
31577cd05799SMatthew G. Knepley 
31587cd05799SMatthew G. Knepley   Output Parameters:
31597cd05799SMatthew G. Knepley . numFaceVertices - The number of vertices on a face
31607cd05799SMatthew G. Knepley 
31617cd05799SMatthew G. Knepley   Level: developer
31627cd05799SMatthew G. Knepley 
31637cd05799SMatthew G. Knepley   Notes:
31647cd05799SMatthew G. Knepley   Of course this can only work for a restricted set of symmetric shapes
31657cd05799SMatthew G. Knepley 
31667cd05799SMatthew G. Knepley .seealso: DMPlexGetCone()
31677cd05799SMatthew G. Knepley @*/
316818ad9376SMatthew G. Knepley PetscErrorCode DMPlexGetNumFaceVertices(DM dm, PetscInt cellDim, PetscInt numCorners, PetscInt *numFaceVertices)
3169a6dfd86eSKarl Rupp {
317082f516ccSBarry Smith   MPI_Comm       comm;
3171552f7358SJed Brown   PetscErrorCode ierr;
3172552f7358SJed Brown 
3173552f7358SJed Brown   PetscFunctionBegin;
317482f516ccSBarry Smith   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
3175552f7358SJed Brown   PetscValidPointer(numFaceVertices,3);
3176552f7358SJed Brown   switch (cellDim) {
3177552f7358SJed Brown   case 0:
3178552f7358SJed Brown     *numFaceVertices = 0;
3179552f7358SJed Brown     break;
3180552f7358SJed Brown   case 1:
3181552f7358SJed Brown     *numFaceVertices = 1;
3182552f7358SJed Brown     break;
3183552f7358SJed Brown   case 2:
3184552f7358SJed Brown     switch (numCorners) {
318519436ca2SJed Brown     case 3: /* triangle */
318619436ca2SJed Brown       *numFaceVertices = 2; /* Edge has 2 vertices */
3187552f7358SJed Brown       break;
318819436ca2SJed Brown     case 4: /* quadrilateral */
318919436ca2SJed Brown       *numFaceVertices = 2; /* Edge has 2 vertices */
3190552f7358SJed Brown       break;
319119436ca2SJed Brown     case 6: /* quadratic triangle, tri and quad cohesive Lagrange cells */
319219436ca2SJed Brown       *numFaceVertices = 3; /* Edge has 3 vertices */
3193552f7358SJed Brown       break;
319419436ca2SJed Brown     case 9: /* quadratic quadrilateral, quadratic quad cohesive Lagrange cells */
319519436ca2SJed Brown       *numFaceVertices = 3; /* Edge has 3 vertices */
3196552f7358SJed Brown       break;
3197552f7358SJed Brown     default:
3198f347f43bSBarry Smith       SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim);
3199552f7358SJed Brown     }
3200552f7358SJed Brown     break;
3201552f7358SJed Brown   case 3:
3202552f7358SJed Brown     switch (numCorners) {
320319436ca2SJed Brown     case 4: /* tetradehdron */
320419436ca2SJed Brown       *numFaceVertices = 3; /* Face has 3 vertices */
3205552f7358SJed Brown       break;
320619436ca2SJed Brown     case 6: /* tet cohesive cells */
320719436ca2SJed Brown       *numFaceVertices = 4; /* Face has 4 vertices */
3208552f7358SJed Brown       break;
320919436ca2SJed Brown     case 8: /* hexahedron */
321019436ca2SJed Brown       *numFaceVertices = 4; /* Face has 4 vertices */
3211552f7358SJed Brown       break;
321219436ca2SJed Brown     case 9: /* tet cohesive Lagrange cells */
321319436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3214552f7358SJed Brown       break;
321519436ca2SJed Brown     case 10: /* quadratic tetrahedron */
321619436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3217552f7358SJed Brown       break;
321819436ca2SJed Brown     case 12: /* hex cohesive Lagrange cells */
321919436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3220552f7358SJed Brown       break;
322119436ca2SJed Brown     case 18: /* quadratic tet cohesive Lagrange cells */
322219436ca2SJed Brown       *numFaceVertices = 6; /* Face has 6 vertices */
3223552f7358SJed Brown       break;
322419436ca2SJed Brown     case 27: /* quadratic hexahedron, quadratic hex cohesive Lagrange cells */
322519436ca2SJed Brown       *numFaceVertices = 9; /* Face has 9 vertices */
3226552f7358SJed Brown       break;
3227552f7358SJed Brown     default:
3228f347f43bSBarry Smith       SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim);
3229552f7358SJed Brown     }
3230552f7358SJed Brown     break;
3231552f7358SJed Brown   default:
3232f347f43bSBarry Smith     SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid cell dimension %D", cellDim);
3233552f7358SJed Brown   }
3234552f7358SJed Brown   PetscFunctionReturn(0);
3235552f7358SJed Brown }
3236552f7358SJed Brown 
3237552f7358SJed Brown /*@
3238aa50250dSMatthew G. Knepley   DMPlexGetDepthLabel - Get the DMLabel recording the depth of each point
3239552f7358SJed Brown 
3240552f7358SJed Brown   Not Collective
3241552f7358SJed Brown 
3242aa50250dSMatthew G. Knepley   Input Parameter:
3243552f7358SJed Brown . dm    - The DMPlex object
3244552f7358SJed Brown 
3245aa50250dSMatthew G. Knepley   Output Parameter:
3246aa50250dSMatthew G. Knepley . depthLabel - The DMLabel recording point depth
3247552f7358SJed Brown 
3248552f7358SJed Brown   Level: developer
3249552f7358SJed Brown 
3250aa50250dSMatthew G. Knepley .keywords: mesh, points
3251aa50250dSMatthew G. Knepley .seealso: DMPlexGetDepth(), DMPlexGetHeightStratum(), DMPlexGetDepthStratum()
3252aa50250dSMatthew G. Knepley @*/
3253aa50250dSMatthew G. Knepley PetscErrorCode DMPlexGetDepthLabel(DM dm, DMLabel *depthLabel)
3254aa50250dSMatthew G. Knepley {
3255aa50250dSMatthew G. Knepley   PetscErrorCode ierr;
3256aa50250dSMatthew G. Knepley 
3257aa50250dSMatthew G. Knepley   PetscFunctionBegin;
3258aa50250dSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3259aa50250dSMatthew G. Knepley   PetscValidPointer(depthLabel, 2);
3260c58f1c22SToby Isaac   if (!dm->depthLabel) {ierr = DMGetLabel(dm, "depth", &dm->depthLabel);CHKERRQ(ierr);}
3261c58f1c22SToby Isaac   *depthLabel = dm->depthLabel;
3262aa50250dSMatthew G. Knepley   PetscFunctionReturn(0);
3263aa50250dSMatthew G. Knepley }
3264aa50250dSMatthew G. Knepley 
3265aa50250dSMatthew G. Knepley /*@
3266aa50250dSMatthew G. Knepley   DMPlexGetDepth - Get the depth of the DAG representing this mesh
3267aa50250dSMatthew G. Knepley 
3268aa50250dSMatthew G. Knepley   Not Collective
3269aa50250dSMatthew G. Knepley 
3270aa50250dSMatthew G. Knepley   Input Parameter:
3271aa50250dSMatthew G. Knepley . dm    - The DMPlex object
3272aa50250dSMatthew G. Knepley 
3273aa50250dSMatthew G. Knepley   Output Parameter:
3274aa50250dSMatthew G. Knepley . depth - The number of strata (breadth first levels) in the DAG
3275aa50250dSMatthew G. Knepley 
3276aa50250dSMatthew G. Knepley   Level: developer
3277552f7358SJed Brown 
3278552f7358SJed Brown .keywords: mesh, points
3279aa50250dSMatthew G. Knepley .seealso: DMPlexGetDepthLabel(), DMPlexGetHeightStratum(), DMPlexGetDepthStratum()
3280552f7358SJed Brown @*/
3281552f7358SJed Brown PetscErrorCode DMPlexGetDepth(DM dm, PetscInt *depth)
3282552f7358SJed Brown {
3283aa50250dSMatthew G. Knepley   DMLabel        label;
3284aa50250dSMatthew G. Knepley   PetscInt       d = 0;
3285552f7358SJed Brown   PetscErrorCode ierr;
3286552f7358SJed Brown 
3287552f7358SJed Brown   PetscFunctionBegin;
3288552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3289552f7358SJed Brown   PetscValidPointer(depth, 2);
3290aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
3291aa50250dSMatthew G. Knepley   if (label) {ierr = DMLabelGetNumValues(label, &d);CHKERRQ(ierr);}
3292552f7358SJed Brown   *depth = d-1;
3293552f7358SJed Brown   PetscFunctionReturn(0);
3294552f7358SJed Brown }
3295552f7358SJed Brown 
3296552f7358SJed Brown /*@
3297552f7358SJed Brown   DMPlexGetDepthStratum - Get the bounds [start, end) for all points at a certain depth.
3298552f7358SJed Brown 
3299552f7358SJed Brown   Not Collective
3300552f7358SJed Brown 
3301552f7358SJed Brown   Input Parameters:
3302552f7358SJed Brown + dm           - The DMPlex object
3303552f7358SJed Brown - stratumValue - The requested depth
3304552f7358SJed Brown 
3305552f7358SJed Brown   Output Parameters:
3306552f7358SJed Brown + start - The first point at this depth
3307552f7358SJed Brown - end   - One beyond the last point at this depth
3308552f7358SJed Brown 
3309552f7358SJed Brown   Level: developer
3310552f7358SJed Brown 
3311552f7358SJed Brown .keywords: mesh, points
3312552f7358SJed Brown .seealso: DMPlexGetHeightStratum(), DMPlexGetDepth()
3313552f7358SJed Brown @*/
33140adebc6cSBarry Smith PetscErrorCode DMPlexGetDepthStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end)
33150adebc6cSBarry Smith {
3316aa50250dSMatthew G. Knepley   DMLabel        label;
331763d1a920SMatthew G. Knepley   PetscInt       pStart, pEnd;
3318552f7358SJed Brown   PetscErrorCode ierr;
3319552f7358SJed Brown 
3320552f7358SJed Brown   PetscFunctionBegin;
3321552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
332263d1a920SMatthew G. Knepley   if (start) {PetscValidPointer(start, 3); *start = 0;}
332363d1a920SMatthew G. Knepley   if (end)   {PetscValidPointer(end,   4); *end   = 0;}
3324552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
33250d644c17SKarl Rupp   if (pStart == pEnd) PetscFunctionReturn(0);
332663d1a920SMatthew G. Knepley   if (stratumValue < 0) {
332763d1a920SMatthew G. Knepley     if (start) *start = pStart;
332863d1a920SMatthew G. Knepley     if (end)   *end   = pEnd;
332963d1a920SMatthew G. Knepley     PetscFunctionReturn(0);
3330552f7358SJed Brown   }
3331aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
333263d1a920SMatthew G. Knepley   if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found");
333363d1a920SMatthew G. Knepley   ierr = DMLabelGetStratumBounds(label, stratumValue, start, end);CHKERRQ(ierr);
3334552f7358SJed Brown   PetscFunctionReturn(0);
3335552f7358SJed Brown }
3336552f7358SJed Brown 
3337552f7358SJed Brown /*@
3338552f7358SJed Brown   DMPlexGetHeightStratum - Get the bounds [start, end) for all points at a certain height.
3339552f7358SJed Brown 
3340552f7358SJed Brown   Not Collective
3341552f7358SJed Brown 
3342552f7358SJed Brown   Input Parameters:
3343552f7358SJed Brown + dm           - The DMPlex object
3344552f7358SJed Brown - stratumValue - The requested height
3345552f7358SJed Brown 
3346552f7358SJed Brown   Output Parameters:
3347552f7358SJed Brown + start - The first point at this height
3348552f7358SJed Brown - end   - One beyond the last point at this height
3349552f7358SJed Brown 
3350552f7358SJed Brown   Level: developer
3351552f7358SJed Brown 
3352552f7358SJed Brown .keywords: mesh, points
3353552f7358SJed Brown .seealso: DMPlexGetDepthStratum(), DMPlexGetDepth()
3354552f7358SJed Brown @*/
33550adebc6cSBarry Smith PetscErrorCode DMPlexGetHeightStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end)
33560adebc6cSBarry Smith {
3357aa50250dSMatthew G. Knepley   DMLabel        label;
335863d1a920SMatthew G. Knepley   PetscInt       depth, pStart, pEnd;
3359552f7358SJed Brown   PetscErrorCode ierr;
3360552f7358SJed Brown 
3361552f7358SJed Brown   PetscFunctionBegin;
3362552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
336363d1a920SMatthew G. Knepley   if (start) {PetscValidPointer(start, 3); *start = 0;}
336463d1a920SMatthew G. Knepley   if (end)   {PetscValidPointer(end,   4); *end   = 0;}
3365552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
33660d644c17SKarl Rupp   if (pStart == pEnd) PetscFunctionReturn(0);
336763d1a920SMatthew G. Knepley   if (stratumValue < 0) {
336863d1a920SMatthew G. Knepley     if (start) *start = pStart;
336963d1a920SMatthew G. Knepley     if (end)   *end   = pEnd;
337063d1a920SMatthew G. Knepley     PetscFunctionReturn(0);
3371552f7358SJed Brown   }
3372aa50250dSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
337313903a91SSatish Balay   if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found");
337463d1a920SMatthew G. Knepley   ierr = DMLabelGetNumValues(label, &depth);CHKERRQ(ierr);
337563d1a920SMatthew G. Knepley   ierr = DMLabelGetStratumBounds(label, depth-1-stratumValue, start, end);CHKERRQ(ierr);
3376552f7358SJed Brown   PetscFunctionReturn(0);
3377552f7358SJed Brown }
3378552f7358SJed Brown 
3379552f7358SJed Brown /* Set the number of dof on each point and separate by fields */
33807cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionInitial(DM dm, PetscInt dim, PetscInt numFields,const PetscInt numComp[],const PetscInt numDof[], PetscSection *section)
3381a6dfd86eSKarl Rupp {
3382ee55978aSMatthew G. Knepley   PetscInt      *pMax;
3383470f9322SMatthew G. Knepley   PetscInt       depth, cellHeight, pStart = 0, pEnd = 0;
3384ee55978aSMatthew G. Knepley   PetscInt       Nf, p, d, dep, f;
3385fa716be8SMatthew G. Knepley   PetscBool     *isFE;
3386552f7358SJed Brown   PetscErrorCode ierr;
3387552f7358SJed Brown 
3388552f7358SJed Brown   PetscFunctionBegin;
3389fa716be8SMatthew G. Knepley   ierr = PetscMalloc1(numFields, &isFE);CHKERRQ(ierr);
3390ee55978aSMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
3391fa716be8SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
3392fa716be8SMatthew G. Knepley     PetscObject  obj;
3393fa716be8SMatthew G. Knepley     PetscClassId id;
3394fa716be8SMatthew G. Knepley 
3395ee55978aSMatthew G. Knepley     isFE[f] = PETSC_FALSE;
3396ee55978aSMatthew G. Knepley     if (f >= Nf) continue;
3397fa716be8SMatthew G. Knepley     ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr);
3398fa716be8SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
3399fa716be8SMatthew G. Knepley     if (id == PETSCFE_CLASSID)      {isFE[f] = PETSC_TRUE;}
3400fa716be8SMatthew G. Knepley     else if (id == PETSCFV_CLASSID) {isFE[f] = PETSC_FALSE;}
3401552f7358SJed Brown   }
340282f516ccSBarry Smith   ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), section);CHKERRQ(ierr);
3403552f7358SJed Brown   if (numFields > 0) {
3404552f7358SJed Brown     ierr = PetscSectionSetNumFields(*section, numFields);CHKERRQ(ierr);
3405552f7358SJed Brown     if (numComp) {
3406552f7358SJed Brown       for (f = 0; f < numFields; ++f) {
3407552f7358SJed Brown         ierr = PetscSectionSetFieldComponents(*section, f, numComp[f]);CHKERRQ(ierr);
3408d484f18aSToby Isaac         if (isFE[f]) {
3409d484f18aSToby Isaac           PetscFE           fe;
3410d484f18aSToby Isaac           PetscDualSpace    dspace;
3411d484f18aSToby Isaac           const PetscInt    ***perms;
3412d484f18aSToby Isaac           const PetscScalar ***flips;
3413d484f18aSToby Isaac           const PetscInt    *numDof;
3414d484f18aSToby Isaac 
3415d484f18aSToby Isaac           ierr = DMGetField(dm,f,(PetscObject *) &fe);CHKERRQ(ierr);
3416d484f18aSToby Isaac           ierr = PetscFEGetDualSpace(fe,&dspace);CHKERRQ(ierr);
3417d484f18aSToby Isaac           ierr = PetscDualSpaceGetSymmetries(dspace,&perms,&flips);CHKERRQ(ierr);
3418d484f18aSToby Isaac           ierr = PetscDualSpaceGetNumDof(dspace,&numDof);CHKERRQ(ierr);
3419d484f18aSToby Isaac           if (perms || flips) {
3420d484f18aSToby Isaac             DM               K;
3421d484f18aSToby Isaac             DMLabel          depthLabel;
3422d484f18aSToby Isaac             PetscInt         depth, h;
3423d484f18aSToby Isaac             PetscSectionSym  sym;
3424d484f18aSToby Isaac 
3425d484f18aSToby Isaac             ierr = PetscDualSpaceGetDM(dspace,&K);CHKERRQ(ierr);
3426d484f18aSToby Isaac             ierr = DMPlexGetDepthLabel(dm,&depthLabel);CHKERRQ(ierr);
3427d484f18aSToby Isaac             ierr = DMPlexGetDepth(dm,&depth);CHKERRQ(ierr);
3428d484f18aSToby Isaac             ierr = PetscSectionSymCreateLabel(PetscObjectComm((PetscObject)*section),depthLabel,&sym);CHKERRQ(ierr);
3429d484f18aSToby Isaac             for (h = 0; h <= depth; h++) {
3430d484f18aSToby Isaac               PetscDualSpace    hspace;
3431d484f18aSToby Isaac               PetscInt          kStart, kEnd;
3432d484f18aSToby Isaac               PetscInt          kConeSize;
3433d484f18aSToby Isaac               const PetscInt    **perms0 = NULL;
3434d484f18aSToby Isaac               const PetscScalar **flips0 = NULL;
3435d484f18aSToby Isaac 
3436d484f18aSToby Isaac               ierr = PetscDualSpaceGetHeightSubspace(dspace,h,&hspace);CHKERRQ(ierr);
3437d484f18aSToby Isaac               ierr = DMPlexGetHeightStratum(K,h,&kStart,&kEnd);CHKERRQ(ierr);
3438d484f18aSToby Isaac               if (!hspace) continue;
3439d484f18aSToby Isaac               ierr = PetscDualSpaceGetSymmetries(hspace,&perms,&flips);CHKERRQ(ierr);
3440d484f18aSToby Isaac               if (perms) perms0 = perms[0];
3441d484f18aSToby Isaac               if (flips) flips0 = flips[0];
3442d484f18aSToby Isaac               if (!(perms0 || flips0)) continue;
3443d484f18aSToby Isaac               ierr = DMPlexGetConeSize(K,kStart,&kConeSize);CHKERRQ(ierr);
3444d484f18aSToby Isaac               ierr = PetscSectionSymLabelSetStratum(sym,depth - h,numDof[depth - h],-kConeSize,kConeSize,PETSC_USE_POINTER,perms0 ? &perms0[-kConeSize] : NULL,flips0 ? &flips0[-kConeSize] : NULL);CHKERRQ(ierr);
3445d484f18aSToby Isaac             }
3446d484f18aSToby Isaac             ierr = PetscSectionSetFieldSym(*section,f,sym);CHKERRQ(ierr);
3447d484f18aSToby Isaac             ierr = PetscSectionSymDestroy(&sym);CHKERRQ(ierr);
3448d484f18aSToby Isaac           }
3449d484f18aSToby Isaac         }
3450552f7358SJed Brown       }
3451552f7358SJed Brown     }
3452552f7358SJed Brown   }
3453552f7358SJed Brown   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
3454552f7358SJed Brown   ierr = PetscSectionSetChart(*section, pStart, pEnd);CHKERRQ(ierr);
3455916f0f19SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
34569ac3fadcSMatthew G. Knepley   ierr = PetscMalloc1(depth+1,&pMax);CHKERRQ(ierr);
34579ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, depth >= 0 ? &pMax[depth] : NULL, depth>1 ? &pMax[depth-1] : NULL, depth>2 ? &pMax[1] : NULL, &pMax[0]);CHKERRQ(ierr);
3458470f9322SMatthew G. Knepley   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
3459470f9322SMatthew G. Knepley   for (dep = 0; dep <= depth - cellHeight; ++dep) {
3460916f0f19SMatthew G. Knepley     d    = dim == depth ? dep : (!dep ? 0 : dim);
3461916f0f19SMatthew G. Knepley     ierr = DMPlexGetDepthStratum(dm, dep, &pStart, &pEnd);CHKERRQ(ierr);
3462fa716be8SMatthew G. Knepley     pMax[dep] = pMax[dep] < 0 ? pEnd : pMax[dep];
3463552f7358SJed Brown     for (p = pStart; p < pEnd; ++p) {
3464ee55978aSMatthew G. Knepley       PetscInt tot = 0;
3465ee55978aSMatthew G. Knepley 
3466552f7358SJed Brown       for (f = 0; f < numFields; ++f) {
3467fa716be8SMatthew G. Knepley         if (isFE[f] && p >= pMax[dep]) continue;
3468552f7358SJed Brown         ierr = PetscSectionSetFieldDof(*section, p, f, numDof[f*(dim+1)+d]);CHKERRQ(ierr);
3469ee55978aSMatthew G. Knepley         tot += numDof[f*(dim+1)+d];
3470552f7358SJed Brown       }
3471ee55978aSMatthew G. Knepley       ierr = PetscSectionSetDof(*section, p, tot);CHKERRQ(ierr);
3472552f7358SJed Brown     }
3473552f7358SJed Brown   }
34749ac3fadcSMatthew G. Knepley   ierr = PetscFree(pMax);CHKERRQ(ierr);
3475fa716be8SMatthew G. Knepley   ierr = PetscFree(isFE);CHKERRQ(ierr);
3476552f7358SJed Brown   PetscFunctionReturn(0);
3477552f7358SJed Brown }
3478552f7358SJed Brown 
3479552f7358SJed Brown /* Set the number of dof on each point and separate by fields
3480ab1d0545SMatthew G. Knepley    If bcComps is NULL or the IS is NULL, constrain every dof on the point
3481552f7358SJed Brown */
34827cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCDof(DM dm, PetscInt numBC, const PetscInt bcField[], const IS bcComps[], const IS bcPoints[], PetscSection section)
3483a6dfd86eSKarl Rupp {
3484552f7358SJed Brown   PetscInt       numFields;
3485552f7358SJed Brown   PetscInt       bc;
3486a68b90caSToby Isaac   PetscSection   aSec;
3487552f7358SJed Brown   PetscErrorCode ierr;
3488552f7358SJed Brown 
3489552f7358SJed Brown   PetscFunctionBegin;
3490552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
3491552f7358SJed Brown   for (bc = 0; bc < numBC; ++bc) {
3492552f7358SJed Brown     PetscInt        field = 0;
3493ab1d0545SMatthew G. Knepley     const PetscInt *comp;
3494552f7358SJed Brown     const PetscInt *idx;
3495ab1d0545SMatthew G. Knepley     PetscInt        Nc = -1, n, i;
3496552f7358SJed Brown 
34970d644c17SKarl Rupp     if (numFields) field = bcField[bc];
3498ab1d0545SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISGetLocalSize(bcComps[bc], &Nc);CHKERRQ(ierr);}
3499ab1d0545SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISGetIndices(bcComps[bc], &comp);CHKERRQ(ierr);}
3500552f7358SJed Brown     ierr = ISGetLocalSize(bcPoints[bc], &n);CHKERRQ(ierr);
3501552f7358SJed Brown     ierr = ISGetIndices(bcPoints[bc], &idx);CHKERRQ(ierr);
3502552f7358SJed Brown     for (i = 0; i < n; ++i) {
3503552f7358SJed Brown       const PetscInt p = idx[i];
350406ff1081SMatthew G. Knepley       PetscInt       numConst;
3505552f7358SJed Brown 
3506552f7358SJed Brown       if (numFields) {
3507552f7358SJed Brown         ierr = PetscSectionGetFieldDof(section, p, field, &numConst);CHKERRQ(ierr);
3508552f7358SJed Brown       } else {
3509552f7358SJed Brown         ierr = PetscSectionGetDof(section, p, &numConst);CHKERRQ(ierr);
3510552f7358SJed Brown       }
351106ff1081SMatthew G. Knepley       /* If Nc < 0, constrain every dof on the point */
3512e8ecbf3fSStefano Zampini       /* TODO: Matt, this only works if there is one node on the point.  We need to handle numDofs > NumComponents */
351306ff1081SMatthew G. Knepley       if (Nc > 0) numConst = PetscMin(numConst, Nc);
351406ff1081SMatthew G. Knepley       if (numFields) {ierr = PetscSectionAddFieldConstraintDof(section, p, field, numConst);CHKERRQ(ierr);}
3515552f7358SJed Brown       ierr = PetscSectionAddConstraintDof(section, p, numConst);CHKERRQ(ierr);
3516552f7358SJed Brown     }
3517552f7358SJed Brown     ierr = ISRestoreIndices(bcPoints[bc], &idx);CHKERRQ(ierr);
351806ff1081SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISRestoreIndices(bcComps[bc], &comp);CHKERRQ(ierr);}
3519552f7358SJed Brown   }
3520a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm, &aSec, NULL);CHKERRQ(ierr);
3521a68b90caSToby Isaac   if (aSec) {
3522a68b90caSToby Isaac     PetscInt aStart, aEnd, a;
3523a68b90caSToby Isaac 
3524a68b90caSToby Isaac     ierr = PetscSectionGetChart(aSec, &aStart, &aEnd);CHKERRQ(ierr);
3525a68b90caSToby Isaac     for (a = aStart; a < aEnd; a++) {
3526ab1d0545SMatthew G. Knepley       PetscInt dof, f;
3527a68b90caSToby Isaac 
3528a68b90caSToby Isaac       ierr = PetscSectionGetDof(aSec, a, &dof);CHKERRQ(ierr);
3529a68b90caSToby Isaac       if (dof) {
3530a68b90caSToby Isaac         /* if there are point-to-point constraints, then all dofs are constrained */
3531a68b90caSToby Isaac         ierr = PetscSectionGetDof(section, a, &dof);CHKERRQ(ierr);
3532a68b90caSToby Isaac         ierr = PetscSectionSetConstraintDof(section, a, dof);CHKERRQ(ierr);
3533a68b90caSToby Isaac         for (f = 0; f < numFields; f++) {
3534a68b90caSToby Isaac           ierr = PetscSectionGetFieldDof(section, a, f, &dof);CHKERRQ(ierr);
3535a68b90caSToby Isaac           ierr = PetscSectionSetFieldConstraintDof(section, a, f, dof);CHKERRQ(ierr);
3536a68b90caSToby Isaac         }
3537a68b90caSToby Isaac       }
3538a68b90caSToby Isaac     }
3539a68b90caSToby Isaac   }
3540552f7358SJed Brown   PetscFunctionReturn(0);
3541552f7358SJed Brown }
3542552f7358SJed Brown 
3543ab1d0545SMatthew G. Knepley /* Set the constrained field indices on each point
3544ab1d0545SMatthew G. Knepley    If bcComps is NULL or the IS is NULL, constrain every dof on the point
3545ab1d0545SMatthew G. Knepley */
35467cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCIndicesField(DM dm, PetscInt numBC,const PetscInt bcField[], const IS bcComps[], const IS bcPoints[], PetscSection section)
35470adebc6cSBarry Smith {
3548ab1d0545SMatthew G. Knepley   PetscSection   aSec;
3549ab1d0545SMatthew G. Knepley   PetscInt      *indices;
3550503335f2SSander Arens   PetscInt       numFields, cdof, maxDof = 0, pStart, pEnd, p, bc, f, d;
3551552f7358SJed Brown   PetscErrorCode ierr;
3552552f7358SJed Brown 
3553552f7358SJed Brown   PetscFunctionBegin;
3554552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
3555ab1d0545SMatthew G. Knepley   if (!numFields) PetscFunctionReturn(0);
3556ab1d0545SMatthew G. Knepley   /* Initialize all field indices to -1 */
3557552f7358SJed Brown   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
3558503335f2SSander Arens   for (p = pStart; p < pEnd; ++p) {ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr); maxDof = PetscMax(maxDof, cdof);}
3559ab1d0545SMatthew G. Knepley   ierr = PetscMalloc1(maxDof, &indices);CHKERRQ(ierr);
3560ab1d0545SMatthew G. Knepley   for (d = 0; d < maxDof; ++d) indices[d] = -1;
3561ab1d0545SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) for (f = 0; f < numFields; ++f) {ierr = PetscSectionSetFieldConstraintIndices(section, p, f, indices);CHKERRQ(ierr);}
3562ab1d0545SMatthew G. Knepley   /* Handle BC constraints */
3563ab1d0545SMatthew G. Knepley   for (bc = 0; bc < numBC; ++bc) {
3564ab1d0545SMatthew G. Knepley     const PetscInt  field = bcField[bc];
3565ab1d0545SMatthew G. Knepley     const PetscInt *comp, *idx;
3566ab1d0545SMatthew G. Knepley     PetscInt        Nc = -1, n, i;
3567552f7358SJed Brown 
3568ab1d0545SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISGetLocalSize(bcComps[bc], &Nc);CHKERRQ(ierr);}
3569ab1d0545SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISGetIndices(bcComps[bc], &comp);CHKERRQ(ierr);}
3570ab1d0545SMatthew G. Knepley     ierr = ISGetLocalSize(bcPoints[bc], &n);CHKERRQ(ierr);
3571ab1d0545SMatthew G. Knepley     ierr = ISGetIndices(bcPoints[bc], &idx);CHKERRQ(ierr);
3572ab1d0545SMatthew G. Knepley     for (i = 0; i < n; ++i) {
3573ab1d0545SMatthew G. Knepley       const PetscInt  p = idx[i];
3574ab1d0545SMatthew G. Knepley       const PetscInt *find;
3575503335f2SSander Arens       PetscInt        fdof, fcdof, c;
3576ab1d0545SMatthew G. Knepley 
3577503335f2SSander Arens       ierr = PetscSectionGetFieldDof(section, p, field, &fdof);CHKERRQ(ierr);
3578503335f2SSander Arens       if (!fdof) continue;
3579ab1d0545SMatthew G. Knepley       if (Nc < 0) {
3580503335f2SSander Arens         for (d = 0; d < fdof; ++d) indices[d] = d;
3581503335f2SSander Arens         fcdof = fdof;
3582552f7358SJed Brown       } else {
3583503335f2SSander Arens         ierr = PetscSectionGetFieldConstraintDof(section, p, field, &fcdof);CHKERRQ(ierr);
3584ab1d0545SMatthew G. Knepley         ierr = PetscSectionGetFieldConstraintIndices(section, p, field, &find);CHKERRQ(ierr);
3585ab1d0545SMatthew G. Knepley         for (d = 0; d < fcdof; ++d) {if (find[d] < 0) break; indices[d] = find[d];}
3586503335f2SSander Arens         for (c = 0; c < Nc; ++c) indices[d++] = comp[c];
3587503335f2SSander Arens         ierr = PetscSortRemoveDupsInt(&d, indices);CHKERRQ(ierr);
3588503335f2SSander Arens         for (c = d; c < fcdof; ++c) indices[c] = -1;
3589503335f2SSander Arens         fcdof = d;
3590552f7358SJed Brown       }
3591503335f2SSander Arens       ierr = PetscSectionSetFieldConstraintDof(section, p, field, fcdof);CHKERRQ(ierr);
3592ab1d0545SMatthew G. Knepley       ierr = PetscSectionSetFieldConstraintIndices(section, p, field, indices);CHKERRQ(ierr);
3593552f7358SJed Brown     }
3594ab1d0545SMatthew G. Knepley     if (bcComps && bcComps[bc]) {ierr = ISRestoreIndices(bcComps[bc], &comp);CHKERRQ(ierr);}
3595ab1d0545SMatthew G. Knepley     ierr = ISRestoreIndices(bcPoints[bc], &idx);CHKERRQ(ierr);
3596552f7358SJed Brown   }
3597ab1d0545SMatthew G. Knepley   /* Handle anchors */
3598ab1d0545SMatthew G. Knepley   ierr = DMPlexGetAnchors(dm, &aSec, NULL);CHKERRQ(ierr);
3599ab1d0545SMatthew G. Knepley   if (aSec) {
3600ab1d0545SMatthew G. Knepley     PetscInt aStart, aEnd, a;
3601552f7358SJed Brown 
3602ab1d0545SMatthew G. Knepley     for (d = 0; d < maxDof; ++d) indices[d] = d;
3603ab1d0545SMatthew G. Knepley     ierr = PetscSectionGetChart(aSec, &aStart, &aEnd);CHKERRQ(ierr);
3604ab1d0545SMatthew G. Knepley     for (a = aStart; a < aEnd; a++) {
3605503335f2SSander Arens       PetscInt dof, f;
3606ab1d0545SMatthew G. Knepley 
3607ab1d0545SMatthew G. Knepley       ierr = PetscSectionGetDof(aSec, a, &dof);CHKERRQ(ierr);
3608ab1d0545SMatthew G. Knepley       if (dof) {
3609ab1d0545SMatthew G. Knepley         /* if there are point-to-point constraints, then all dofs are constrained */
3610ab1d0545SMatthew G. Knepley         for (f = 0; f < numFields; f++) {
3611ab1d0545SMatthew G. Knepley           ierr = PetscSectionSetFieldConstraintIndices(section, a, f, indices);CHKERRQ(ierr);
3612ab1d0545SMatthew G. Knepley         }
3613ab1d0545SMatthew G. Knepley       }
3614ab1d0545SMatthew G. Knepley     }
3615ab1d0545SMatthew G. Knepley   }
3616ab1d0545SMatthew G. Knepley   ierr = PetscFree(indices);CHKERRQ(ierr);
3617ab1d0545SMatthew G. Knepley   PetscFunctionReturn(0);
3618ab1d0545SMatthew G. Knepley }
3619ab1d0545SMatthew G. Knepley 
3620ab1d0545SMatthew G. Knepley /* Set the constrained indices on each point */
36217cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCIndices(DM dm, PetscSection section)
3622ab1d0545SMatthew G. Knepley {
3623ab1d0545SMatthew G. Knepley   PetscInt      *indices;
3624ab1d0545SMatthew G. Knepley   PetscInt       numFields, maxDof, pStart, pEnd, p, f, d;
3625ab1d0545SMatthew G. Knepley   PetscErrorCode ierr;
3626ab1d0545SMatthew G. Knepley 
3627ab1d0545SMatthew G. Knepley   PetscFunctionBegin;
3628ab1d0545SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
3629ab1d0545SMatthew G. Knepley   ierr = PetscSectionGetMaxDof(section, &maxDof);CHKERRQ(ierr);
3630ab1d0545SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
3631ab1d0545SMatthew G. Knepley   ierr = PetscMalloc1(maxDof, &indices);CHKERRQ(ierr);
3632ab1d0545SMatthew G. Knepley   for (d = 0; d < maxDof; ++d) indices[d] = -1;
3633552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
3634552f7358SJed Brown     PetscInt cdof, d;
3635552f7358SJed Brown 
3636552f7358SJed Brown     ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
3637552f7358SJed Brown     if (cdof) {
3638552f7358SJed Brown       if (numFields) {
3639552f7358SJed Brown         PetscInt numConst = 0, foff = 0;
3640552f7358SJed Brown 
3641552f7358SJed Brown         for (f = 0; f < numFields; ++f) {
3642ab1d0545SMatthew G. Knepley           const PetscInt *find;
3643ab1d0545SMatthew G. Knepley           PetscInt        fcdof, fdof;
3644552f7358SJed Brown 
3645552f7358SJed Brown           ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
3646ab1d0545SMatthew G. Knepley           ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
3647ab1d0545SMatthew G. Knepley           /* Change constraint numbering from field component to local dof number */
3648ab1d0545SMatthew G. Knepley           ierr = PetscSectionGetFieldConstraintIndices(section, p, f, &find);CHKERRQ(ierr);
3649ab1d0545SMatthew G. Knepley           for (d = 0; d < fcdof; ++d) indices[numConst+d] = find[d] + foff;
3650ab1d0545SMatthew G. Knepley           numConst += fcdof;
3651552f7358SJed Brown           foff     += fdof;
3652552f7358SJed Brown         }
3653503335f2SSander Arens         if (cdof != numConst) {ierr = PetscSectionSetConstraintDof(section, p, numConst);CHKERRQ(ierr);}
3654552f7358SJed Brown       } else {
36550d644c17SKarl Rupp         for (d = 0; d < cdof; ++d) indices[d] = d;
3656552f7358SJed Brown       }
3657552f7358SJed Brown       ierr = PetscSectionSetConstraintIndices(section, p, indices);CHKERRQ(ierr);
3658552f7358SJed Brown     }
3659552f7358SJed Brown   }
3660552f7358SJed Brown   ierr = PetscFree(indices);CHKERRQ(ierr);
3661552f7358SJed Brown   PetscFunctionReturn(0);
3662552f7358SJed Brown }
3663552f7358SJed Brown 
3664552f7358SJed Brown /*@C
3665552f7358SJed Brown   DMPlexCreateSection - Create a PetscSection based upon the dof layout specification provided.
3666552f7358SJed Brown 
3667552f7358SJed Brown   Not Collective
3668552f7358SJed Brown 
3669552f7358SJed Brown   Input Parameters:
3670552f7358SJed Brown + dm        - The DMPlex object
3671552f7358SJed Brown . dim       - The spatial dimension of the problem
3672552f7358SJed Brown . numFields - The number of fields in the problem
3673552f7358SJed Brown . numComp   - An array of size numFields that holds the number of components for each field
3674552f7358SJed Brown . numDof    - An array of size numFields*(dim+1) which holds the number of dof for each field on a mesh piece of dimension d
3675552f7358SJed Brown . numBC     - The number of boundary conditions
3676552f7358SJed Brown . bcField   - An array of size numBC giving the field number for each boundry condition
3677ab1d0545SMatthew G. Knepley . bcComps   - [Optional] An array of size numBC giving an IS holding the field components to which each boundary condition applies
3678ab1d0545SMatthew G. Knepley . bcPoints  - An array of size numBC giving an IS holding the Plex points to which each boundary condition applies
3679f8f126e8SMatthew G. Knepley - perm      - Optional permutation of the chart, or NULL
3680552f7358SJed Brown 
3681552f7358SJed Brown   Output Parameter:
3682552f7358SJed Brown . section - The PetscSection object
3683552f7358SJed Brown 
368495452b02SPatrick Sanan   Notes:
368595452b02SPatrick Sanan     numDof[f*(dim+1)+d] gives the number of dof for field f on points of dimension d. For instance, numDof[1] is the
3686f8f126e8SMatthew G. Knepley   number of dof for field 0 on each edge.
3687f8f126e8SMatthew G. Knepley 
3688f8f126e8SMatthew G. Knepley   The chart permutation is the same one set using PetscSectionSetPermutation()
3689552f7358SJed Brown 
3690552f7358SJed Brown   Level: developer
3691552f7358SJed Brown 
36923813dfbdSMatthew G Knepley   Fortran Notes:
36933813dfbdSMatthew G Knepley   A Fortran 90 version is available as DMPlexCreateSectionF90()
36943813dfbdSMatthew G Knepley 
3695552f7358SJed Brown .keywords: mesh, elements
3696f8f126e8SMatthew G. Knepley .seealso: DMPlexCreate(), PetscSectionCreate(), PetscSectionSetPermutation()
3697552f7358SJed Brown @*/
3698ab1d0545SMatthew G. Knepley PetscErrorCode DMPlexCreateSection(DM dm, PetscInt dim, PetscInt numFields,const PetscInt numComp[],const PetscInt numDof[], PetscInt numBC,const PetscInt bcField[], const IS bcComps[], const IS bcPoints[], IS perm, PetscSection *section)
3699a6dfd86eSKarl Rupp {
3700a68b90caSToby Isaac   PetscSection   aSec;
3701552f7358SJed Brown   PetscErrorCode ierr;
3702552f7358SJed Brown 
3703552f7358SJed Brown   PetscFunctionBegin;
3704552f7358SJed Brown   ierr = DMPlexCreateSectionInitial(dm, dim, numFields, numComp, numDof, section);CHKERRQ(ierr);
3705ab1d0545SMatthew G. Knepley   ierr = DMPlexCreateSectionBCDof(dm, numBC, bcField, bcComps, bcPoints, *section);CHKERRQ(ierr);
3706f8f126e8SMatthew G. Knepley   if (perm) {ierr = PetscSectionSetPermutation(*section, perm);CHKERRQ(ierr);}
37075e5b47fcSMatthew G. Knepley   ierr = PetscSectionSetFromOptions(*section);CHKERRQ(ierr);
3708552f7358SJed Brown   ierr = PetscSectionSetUp(*section);CHKERRQ(ierr);
3709a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&aSec,NULL);CHKERRQ(ierr);
3710ab1d0545SMatthew G. Knepley   if (numBC || aSec) {
3711ab1d0545SMatthew G. Knepley     ierr = DMPlexCreateSectionBCIndicesField(dm, numBC, bcField, bcComps, bcPoints, *section);CHKERRQ(ierr);
3712ab1d0545SMatthew G. Knepley     ierr = DMPlexCreateSectionBCIndices(dm, *section);CHKERRQ(ierr);
3713ab1d0545SMatthew G. Knepley   }
3714ce1779c8SBarry Smith   ierr = PetscSectionViewFromOptions(*section,NULL,"-section_view");CHKERRQ(ierr);
3715552f7358SJed Brown   PetscFunctionReturn(0);
3716552f7358SJed Brown }
3717552f7358SJed Brown 
37180adebc6cSBarry Smith PetscErrorCode DMCreateCoordinateDM_Plex(DM dm, DM *cdm)
37190adebc6cSBarry Smith {
3720efe440bfSMatthew G. Knepley   PetscSection   section, s;
3721efe440bfSMatthew G. Knepley   Mat            m;
37223e922f36SToby Isaac   PetscInt       maxHeight;
3723552f7358SJed Brown   PetscErrorCode ierr;
3724552f7358SJed Brown 
3725552f7358SJed Brown   PetscFunctionBegin;
372638221697SMatthew G. Knepley   ierr = DMClone(dm, cdm);CHKERRQ(ierr);
37273e922f36SToby Isaac   ierr = DMPlexGetMaxProjectionHeight(dm, &maxHeight);CHKERRQ(ierr);
37283e922f36SToby Isaac   ierr = DMPlexSetMaxProjectionHeight(*cdm, maxHeight);CHKERRQ(ierr);
372982f516ccSBarry Smith   ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &section);CHKERRQ(ierr);
3730e87a4003SBarry Smith   ierr = DMSetSection(*cdm, section);CHKERRQ(ierr);
37311d799100SJed Brown   ierr = PetscSectionDestroy(&section);CHKERRQ(ierr);
3732efe440bfSMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &s);CHKERRQ(ierr);
3733efe440bfSMatthew G. Knepley   ierr = MatCreate(PETSC_COMM_SELF, &m);CHKERRQ(ierr);
3734efe440bfSMatthew G. Knepley   ierr = DMSetDefaultConstraints(*cdm, s, m);CHKERRQ(ierr);
3735efe440bfSMatthew G. Knepley   ierr = PetscSectionDestroy(&s);CHKERRQ(ierr);
3736efe440bfSMatthew G. Knepley   ierr = MatDestroy(&m);CHKERRQ(ierr);
3737552f7358SJed Brown   PetscFunctionReturn(0);
3738552f7358SJed Brown }
3739552f7358SJed Brown 
3740f19dbd58SToby Isaac PetscErrorCode DMCreateCoordinateField_Plex(DM dm, DMField *field)
3741f19dbd58SToby Isaac {
3742f19dbd58SToby Isaac   Vec            coordsLocal;
3743f19dbd58SToby Isaac   DM             coordsDM;
3744f19dbd58SToby Isaac   PetscErrorCode ierr;
3745f19dbd58SToby Isaac 
3746f19dbd58SToby Isaac   PetscFunctionBegin;
3747f19dbd58SToby Isaac   *field = NULL;
3748f19dbd58SToby Isaac   ierr = DMGetCoordinatesLocal(dm,&coordsLocal);CHKERRQ(ierr);
3749f19dbd58SToby Isaac   ierr = DMGetCoordinateDM(dm,&coordsDM);CHKERRQ(ierr);
3750f19dbd58SToby Isaac   if (coordsLocal && coordsDM) {
3751f19dbd58SToby Isaac     ierr = DMFieldCreateDS(coordsDM, 0, coordsLocal, field);CHKERRQ(ierr);
3752f19dbd58SToby Isaac   }
3753f19dbd58SToby Isaac   PetscFunctionReturn(0);
3754f19dbd58SToby Isaac }
3755f19dbd58SToby Isaac 
37567cd05799SMatthew G. Knepley /*@C
37577cd05799SMatthew G. Knepley   DMPlexGetConeSection - Return a section which describes the layout of cone data
37587cd05799SMatthew G. Knepley 
37597cd05799SMatthew G. Knepley   Not Collective
37607cd05799SMatthew G. Knepley 
37617cd05799SMatthew G. Knepley   Input Parameters:
37627cd05799SMatthew G. Knepley . dm        - The DMPlex object
37637cd05799SMatthew G. Knepley 
37647cd05799SMatthew G. Knepley   Output Parameter:
37657cd05799SMatthew G. Knepley . section - The PetscSection object
37667cd05799SMatthew G. Knepley 
37677cd05799SMatthew G. Knepley   Level: developer
37687cd05799SMatthew G. Knepley 
37697cd05799SMatthew G. Knepley .seealso: DMPlexGetSupportSection(), DMPlexGetCones(), DMPlexGetConeOrientations()
37707cd05799SMatthew G. Knepley @*/
37710adebc6cSBarry Smith PetscErrorCode DMPlexGetConeSection(DM dm, PetscSection *section)
37720adebc6cSBarry Smith {
3773552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
3774552f7358SJed Brown 
3775552f7358SJed Brown   PetscFunctionBegin;
3776552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3777552f7358SJed Brown   if (section) *section = mesh->coneSection;
3778552f7358SJed Brown   PetscFunctionReturn(0);
3779552f7358SJed Brown }
3780552f7358SJed Brown 
37817cd05799SMatthew G. Knepley /*@C
37827cd05799SMatthew G. Knepley   DMPlexGetSupportSection - Return a section which describes the layout of support data
37837cd05799SMatthew G. Knepley 
37847cd05799SMatthew G. Knepley   Not Collective
37857cd05799SMatthew G. Knepley 
37867cd05799SMatthew G. Knepley   Input Parameters:
37877cd05799SMatthew G. Knepley . dm        - The DMPlex object
37887cd05799SMatthew G. Knepley 
37897cd05799SMatthew G. Knepley   Output Parameter:
37907cd05799SMatthew G. Knepley . section - The PetscSection object
37917cd05799SMatthew G. Knepley 
37927cd05799SMatthew G. Knepley   Level: developer
37937cd05799SMatthew G. Knepley 
37947cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
37957cd05799SMatthew G. Knepley @*/
37968cb4d582SMatthew G. Knepley PetscErrorCode DMPlexGetSupportSection(DM dm, PetscSection *section)
37978cb4d582SMatthew G. Knepley {
37988cb4d582SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
37998cb4d582SMatthew G. Knepley 
38008cb4d582SMatthew G. Knepley   PetscFunctionBegin;
38018cb4d582SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
38028cb4d582SMatthew G. Knepley   if (section) *section = mesh->supportSection;
38038cb4d582SMatthew G. Knepley   PetscFunctionReturn(0);
38048cb4d582SMatthew G. Knepley }
38058cb4d582SMatthew G. Knepley 
38067cd05799SMatthew G. Knepley /*@C
38077cd05799SMatthew G. Knepley   DMPlexGetCones - Return cone data
38087cd05799SMatthew G. Knepley 
38097cd05799SMatthew G. Knepley   Not Collective
38107cd05799SMatthew G. Knepley 
38117cd05799SMatthew G. Knepley   Input Parameters:
38127cd05799SMatthew G. Knepley . dm        - The DMPlex object
38137cd05799SMatthew G. Knepley 
38147cd05799SMatthew G. Knepley   Output Parameter:
38157cd05799SMatthew G. Knepley . cones - The cone for each point
38167cd05799SMatthew G. Knepley 
38177cd05799SMatthew G. Knepley   Level: developer
38187cd05799SMatthew G. Knepley 
38197cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
38207cd05799SMatthew G. Knepley @*/
3821a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetCones(DM dm, PetscInt *cones[])
3822a6dfd86eSKarl Rupp {
3823552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
3824552f7358SJed Brown 
3825552f7358SJed Brown   PetscFunctionBegin;
3826552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3827552f7358SJed Brown   if (cones) *cones = mesh->cones;
3828552f7358SJed Brown   PetscFunctionReturn(0);
3829552f7358SJed Brown }
3830552f7358SJed Brown 
38317cd05799SMatthew G. Knepley /*@C
38327cd05799SMatthew G. Knepley   DMPlexGetConeOrientations - Return cone orientation data
38337cd05799SMatthew G. Knepley 
38347cd05799SMatthew G. Knepley   Not Collective
38357cd05799SMatthew G. Knepley 
38367cd05799SMatthew G. Knepley   Input Parameters:
38377cd05799SMatthew G. Knepley . dm        - The DMPlex object
38387cd05799SMatthew G. Knepley 
38397cd05799SMatthew G. Knepley   Output Parameter:
38407cd05799SMatthew G. Knepley . coneOrientations - The cone orientation for each point
38417cd05799SMatthew G. Knepley 
38427cd05799SMatthew G. Knepley   Level: developer
38437cd05799SMatthew G. Knepley 
38447cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection()
38457cd05799SMatthew G. Knepley @*/
3846a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetConeOrientations(DM dm, PetscInt *coneOrientations[])
3847a6dfd86eSKarl Rupp {
3848552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
3849552f7358SJed Brown 
3850552f7358SJed Brown   PetscFunctionBegin;
3851552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3852552f7358SJed Brown   if (coneOrientations) *coneOrientations = mesh->coneOrientations;
3853552f7358SJed Brown   PetscFunctionReturn(0);
3854552f7358SJed Brown }
3855552f7358SJed Brown 
3856552f7358SJed Brown /******************************** FEM Support **********************************/
3857552f7358SJed Brown 
38587391a63aSMatthew G. Knepley PetscErrorCode DMPlexCreateSpectralClosurePermutation(DM dm, PetscInt point, PetscSection section)
38593194fc30SMatthew G. Knepley {
38607391a63aSMatthew G. Knepley   DMLabel        label;
38613194fc30SMatthew G. Knepley   PetscInt      *perm;
38627391a63aSMatthew G. Knepley   PetscInt       dim, depth, eStart, k, Nf, f, Nc, c, i, j, size = 0, offset = 0, foffset = 0;
38633194fc30SMatthew G. Knepley   PetscErrorCode ierr;
38643194fc30SMatthew G. Knepley 
38653194fc30SMatthew G. Knepley   PetscFunctionBegin;
38667391a63aSMatthew G. Knepley   if (point < 0) {ierr = DMPlexGetDepthStratum(dm, 1, &point, NULL);CHKERRQ(ierr);}
38673194fc30SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
38687391a63aSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr);
38697391a63aSMatthew G. Knepley   ierr = DMLabelGetValue(label, point, &depth);CHKERRQ(ierr);
38707391a63aSMatthew G. Knepley   if (depth == 1) {eStart = point;}
38717391a63aSMatthew G. Knepley   else if  (depth == dim) {
38727391a63aSMatthew G. Knepley     const PetscInt *cone;
38737391a63aSMatthew G. Knepley 
38747391a63aSMatthew G. Knepley     ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
3875d4e6627bSStefano Zampini     if (dim == 2) eStart = cone[0];
3876d4e6627bSStefano Zampini     else if (dim == 3) {
3877d4e6627bSStefano Zampini       const PetscInt *cone2;
3878d4e6627bSStefano Zampini       ierr = DMPlexGetCone(dm, cone[0], &cone2);CHKERRQ(ierr);
3879d4e6627bSStefano Zampini       eStart = cone2[0];
3880d4e6627bSStefano 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);
3881d4e6627bSStefano 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);
3882e87a4003SBarry Smith   if (!section) {ierr = DMGetSection(dm, &section);CHKERRQ(ierr);}
38833194fc30SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
388489eabcffSMatthew G. Knepley   if (dim <= 1) PetscFunctionReturn(0);
38853194fc30SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
38863194fc30SMatthew G. Knepley     /* An order k SEM disc has k-1 dofs on an edge */
38873194fc30SMatthew G. Knepley     ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr);
38883194fc30SMatthew G. Knepley     ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr);
38893194fc30SMatthew G. Knepley     k = k/Nc + 1;
389089eabcffSMatthew G. Knepley     size += PetscPowInt(k+1, dim)*Nc;
38913194fc30SMatthew G. Knepley   }
38923194fc30SMatthew G. Knepley   ierr = PetscMalloc1(size, &perm);CHKERRQ(ierr);
38933194fc30SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
389489eabcffSMatthew G. Knepley     switch (dim) {
389589eabcffSMatthew G. Knepley     case 2:
38963194fc30SMatthew 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} */
38973194fc30SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr);
38983194fc30SMatthew G. Knepley       ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr);
38993194fc30SMatthew G. Knepley       k = k/Nc + 1;
39003194fc30SMatthew G. Knepley       /* The SEM order is
39013194fc30SMatthew G. Knepley 
39023194fc30SMatthew G. Knepley          v_lb, {e_b}, v_rb,
390389eabcffSMatthew G. Knepley          e^{(k-1)-i}_l, {f^{i*(k-1)}}, e^i_r,
39043194fc30SMatthew G. Knepley          v_lt, reverse {e_t}, v_rt
39053194fc30SMatthew G. Knepley       */
39063194fc30SMatthew G. Knepley       {
39073194fc30SMatthew G. Knepley         const PetscInt of   = 0;
39083194fc30SMatthew G. Knepley         const PetscInt oeb  = of   + PetscSqr(k-1);
39093194fc30SMatthew G. Knepley         const PetscInt oer  = oeb  + (k-1);
39103194fc30SMatthew G. Knepley         const PetscInt oet  = oer  + (k-1);
39113194fc30SMatthew G. Knepley         const PetscInt oel  = oet  + (k-1);
39123194fc30SMatthew G. Knepley         const PetscInt ovlb = oel  + (k-1);
39133194fc30SMatthew G. Knepley         const PetscInt ovrb = ovlb + 1;
39143194fc30SMatthew G. Knepley         const PetscInt ovrt = ovrb + 1;
39153194fc30SMatthew G. Knepley         const PetscInt ovlt = ovrt + 1;
39163194fc30SMatthew G. Knepley         PetscInt       o;
39173194fc30SMatthew G. Knepley 
39183194fc30SMatthew G. Knepley         /* bottom */
39193194fc30SMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlb*Nc + c + foffset;
39203194fc30SMatthew G. Knepley         for (o = oeb; o < oer; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
39213194fc30SMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrb*Nc + c + foffset;
39223194fc30SMatthew G. Knepley         /* middle */
39233194fc30SMatthew G. Knepley         for (i = 0; i < k-1; ++i) {
39243194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oel+(k-2)-i)*Nc + c + foffset;
39253194fc30SMatthew 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;
39263194fc30SMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oer+i)*Nc + c + foffset;
39273194fc30SMatthew G. Knepley         }
39283194fc30SMatthew G. Knepley         /* top */
39293194fc30SMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlt*Nc + c + foffset;
39303194fc30SMatthew G. Knepley         for (o = oel-1; o >= oet; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
39313194fc30SMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrt*Nc + c + foffset;
39323194fc30SMatthew G. Knepley         foffset = offset;
39333194fc30SMatthew G. Knepley       }
393489eabcffSMatthew G. Knepley       break;
393589eabcffSMatthew G. Knepley     case 3:
393689eabcffSMatthew G. Knepley       /* The original hex closure is
393789eabcffSMatthew G. Knepley 
393889eabcffSMatthew G. Knepley          {c,
393989eabcffSMatthew G. Knepley           f_b, f_t, f_f, f_b, f_r, f_l,
394089eabcffSMatthew 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,
394189eabcffSMatthew G. Knepley           v_blf, v_blb, v_brb, v_brf, v_tlf, v_trf, v_trb, v_tlb}
394289eabcffSMatthew G. Knepley       */
394389eabcffSMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr);
394489eabcffSMatthew G. Knepley       ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr);
394589eabcffSMatthew G. Knepley       k = k/Nc + 1;
394689eabcffSMatthew G. Knepley       /* The SEM order is
394789eabcffSMatthew G. Knepley          Bottom Slice
394889eabcffSMatthew G. Knepley          v_blf, {e^{(k-1)-n}_bf}, v_brf,
394989eabcffSMatthew G. Knepley          e^{i}_bl, f^{n*(k-1)+(k-1)-i}_b, e^{(k-1)-i}_br,
395089eabcffSMatthew G. Knepley          v_blb, {e_bb}, v_brb,
395189eabcffSMatthew G. Knepley 
395289eabcffSMatthew G. Knepley          Middle Slice (j)
395389eabcffSMatthew G. Knepley          {e^{(k-1)-j}_lf}, {f^{j*(k-1)+n}_f}, e^j_rf,
395489eabcffSMatthew G. Knepley          f^{i*(k-1)+j}_l, {c^{(j*(k-1) + i)*(k-1)+n}_t}, f^{j*(k-1)+i}_r,
395589eabcffSMatthew G. Knepley          e^j_lb, {f^{j*(k-1)+(k-1)-n}_b}, e^{(k-1)-j}_rb,
395689eabcffSMatthew G. Knepley 
395789eabcffSMatthew G. Knepley          Top Slice
395889eabcffSMatthew G. Knepley          v_tlf, {e_tf}, v_trf,
395989eabcffSMatthew G. Knepley          e^{(k-1)-i}_tl, {f^{i*(k-1)}_t}, e^{i}_tr,
396089eabcffSMatthew G. Knepley          v_tlb, {e^{(k-1)-n}_tb}, v_trb,
396189eabcffSMatthew G. Knepley       */
396289eabcffSMatthew G. Knepley       {
396389eabcffSMatthew G. Knepley         const PetscInt oc    = 0;
396489eabcffSMatthew G. Knepley         const PetscInt ofb   = oc    + PetscSqr(k-1)*(k-1);
396589eabcffSMatthew G. Knepley         const PetscInt oft   = ofb   + PetscSqr(k-1);
396689eabcffSMatthew G. Knepley         const PetscInt off   = oft   + PetscSqr(k-1);
396789eabcffSMatthew G. Knepley         const PetscInt ofk   = off   + PetscSqr(k-1);
396889eabcffSMatthew G. Knepley         const PetscInt ofr   = ofk   + PetscSqr(k-1);
396989eabcffSMatthew G. Knepley         const PetscInt ofl   = ofr   + PetscSqr(k-1);
397089eabcffSMatthew G. Knepley         const PetscInt oebl  = ofl   + PetscSqr(k-1);
397189eabcffSMatthew G. Knepley         const PetscInt oebb  = oebl  + (k-1);
397289eabcffSMatthew G. Knepley         const PetscInt oebr  = oebb  + (k-1);
397389eabcffSMatthew G. Knepley         const PetscInt oebf  = oebr  + (k-1);
397489eabcffSMatthew G. Knepley         const PetscInt oetf  = oebf  + (k-1);
397589eabcffSMatthew G. Knepley         const PetscInt oetr  = oetf  + (k-1);
397689eabcffSMatthew G. Knepley         const PetscInt oetb  = oetr  + (k-1);
397789eabcffSMatthew G. Knepley         const PetscInt oetl  = oetb  + (k-1);
397889eabcffSMatthew G. Knepley         const PetscInt oerf  = oetl  + (k-1);
397989eabcffSMatthew G. Knepley         const PetscInt oelf  = oerf  + (k-1);
398089eabcffSMatthew G. Knepley         const PetscInt oelb  = oelf  + (k-1);
398189eabcffSMatthew G. Knepley         const PetscInt oerb  = oelb  + (k-1);
398289eabcffSMatthew G. Knepley         const PetscInt ovblf = oerb  + (k-1);
398389eabcffSMatthew G. Knepley         const PetscInt ovblb = ovblf + 1;
398489eabcffSMatthew G. Knepley         const PetscInt ovbrb = ovblb + 1;
398589eabcffSMatthew G. Knepley         const PetscInt ovbrf = ovbrb + 1;
398689eabcffSMatthew G. Knepley         const PetscInt ovtlf = ovbrf + 1;
398789eabcffSMatthew G. Knepley         const PetscInt ovtrf = ovtlf + 1;
398889eabcffSMatthew G. Knepley         const PetscInt ovtrb = ovtrf + 1;
398989eabcffSMatthew G. Knepley         const PetscInt ovtlb = ovtrb + 1;
399089eabcffSMatthew G. Knepley         PetscInt       o, n;
399189eabcffSMatthew G. Knepley 
399289eabcffSMatthew G. Knepley         /* Bottom Slice */
399389eabcffSMatthew G. Knepley         /*   bottom */
399489eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblf*Nc + c + foffset;
399589eabcffSMatthew G. Knepley         for (o = oetf-1; o >= oebf; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
399689eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrf*Nc + c + foffset;
399789eabcffSMatthew G. Knepley         /*   middle */
399889eabcffSMatthew G. Knepley         for (i = 0; i < k-1; ++i) {
399989eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebl+i)*Nc + c + foffset;
4000316b7f87SMax 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;}
400189eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebr+(k-2)-i)*Nc + c + foffset;
40023194fc30SMatthew G. Knepley         }
400389eabcffSMatthew G. Knepley         /*   top */
400489eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblb*Nc + c + foffset;
400589eabcffSMatthew G. Knepley         for (o = oebb; o < oebr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
400689eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrb*Nc + c + foffset;
400789eabcffSMatthew G. Knepley 
400889eabcffSMatthew G. Knepley         /* Middle Slice */
400989eabcffSMatthew G. Knepley         for (j = 0; j < k-1; ++j) {
401089eabcffSMatthew G. Knepley           /*   bottom */
401189eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelf+(k-2)-j)*Nc + c + foffset;
401289eabcffSMatthew 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;
401389eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerf+j)*Nc + c + foffset;
401489eabcffSMatthew G. Knepley           /*   middle */
401589eabcffSMatthew G. Knepley           for (i = 0; i < k-1; ++i) {
401689eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofl+i*(k-1)+j)*Nc + c + foffset;
401789eabcffSMatthew 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;
401889eabcffSMatthew G. Knepley             for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofr+j*(k-1)+i)*Nc + c + foffset;
401989eabcffSMatthew G. Knepley           }
402089eabcffSMatthew G. Knepley           /*   top */
402189eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelb+j)*Nc + c + foffset;
402289eabcffSMatthew 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;
402389eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerb+(k-2)-j)*Nc + c + foffset;
402489eabcffSMatthew G. Knepley         }
402589eabcffSMatthew G. Knepley 
402689eabcffSMatthew G. Knepley         /* Top Slice */
402789eabcffSMatthew G. Knepley         /*   bottom */
402889eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlf*Nc + c + foffset;
402989eabcffSMatthew G. Knepley         for (o = oetf; o < oetr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
403089eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrf*Nc + c + foffset;
403189eabcffSMatthew G. Knepley         /*   middle */
403289eabcffSMatthew G. Knepley         for (i = 0; i < k-1; ++i) {
403389eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetl+(k-2)-i)*Nc + c + foffset;
403489eabcffSMatthew 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;
403589eabcffSMatthew G. Knepley           for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetr+i)*Nc + c + foffset;
403689eabcffSMatthew G. Knepley         }
403789eabcffSMatthew G. Knepley         /*   top */
403889eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlb*Nc + c + foffset;
403989eabcffSMatthew G. Knepley         for (o = oetl-1; o >= oetb; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset;
404089eabcffSMatthew G. Knepley         for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrb*Nc + c + foffset;
404189eabcffSMatthew G. Knepley 
404289eabcffSMatthew G. Knepley         foffset = offset;
404389eabcffSMatthew G. Knepley       }
404489eabcffSMatthew G. Knepley       break;
404589eabcffSMatthew G. Knepley     default: SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "No spectral ordering for dimension %D", dim);
404689eabcffSMatthew G. Knepley     }
404789eabcffSMatthew G. Knepley   }
404889eabcffSMatthew G. Knepley   if (offset != size) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Number of permutation entries %D != %D", offset, size);
40493194fc30SMatthew G. Knepley   /* Check permutation */
40503194fc30SMatthew G. Knepley   {
40513194fc30SMatthew G. Knepley     PetscInt *check;
40523194fc30SMatthew G. Knepley 
40533194fc30SMatthew G. Knepley     ierr = PetscMalloc1(size, &check);CHKERRQ(ierr);
40543194fc30SMatthew 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]);}
40553194fc30SMatthew G. Knepley     for (i = 0; i < size; ++i) check[perm[i]] = i;
40563194fc30SMatthew G. Knepley     for (i = 0; i < size; ++i) {if (check[i] < 0) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Missing permutation index %D", i);}
40573194fc30SMatthew G. Knepley     ierr = PetscFree(check);CHKERRQ(ierr);
40583194fc30SMatthew G. Knepley   }
40591fdd32a2SMatthew G. Knepley   ierr = PetscSectionSetClosurePermutation_Internal(section, (PetscObject) dm, size, PETSC_OWN_POINTER, perm);CHKERRQ(ierr);
40603194fc30SMatthew G. Knepley   PetscFunctionReturn(0);
40613194fc30SMatthew G. Knepley }
40623194fc30SMatthew G. Knepley 
4063e071409bSToby Isaac PetscErrorCode DMPlexGetPointDualSpaceFEM(DM dm, PetscInt point, PetscInt field, PetscDualSpace *dspace)
4064e071409bSToby Isaac {
4065e071409bSToby Isaac   PetscDS        prob;
4066e071409bSToby Isaac   PetscInt       depth, Nf, h;
4067e071409bSToby Isaac   DMLabel        label;
4068e071409bSToby Isaac   PetscErrorCode ierr;
4069e071409bSToby Isaac 
4070e071409bSToby Isaac   PetscFunctionBeginHot;
4071e071409bSToby Isaac   prob    = dm->prob;
4072e071409bSToby Isaac   Nf      = prob->Nf;
4073e071409bSToby Isaac   label   = dm->depthLabel;
4074e071409bSToby Isaac   *dspace = NULL;
4075e071409bSToby Isaac   if (field < Nf) {
4076e071409bSToby Isaac     PetscObject disc = prob->disc[field];
4077e071409bSToby Isaac 
4078e071409bSToby Isaac     if (disc->classid == PETSCFE_CLASSID) {
4079e071409bSToby Isaac       PetscDualSpace dsp;
4080e071409bSToby Isaac 
4081e071409bSToby Isaac       ierr = PetscFEGetDualSpace((PetscFE)disc,&dsp);CHKERRQ(ierr);
4082e071409bSToby Isaac       ierr = DMLabelGetNumValues(label,&depth);CHKERRQ(ierr);
4083e071409bSToby Isaac       ierr = DMLabelGetValue(label,point,&h);CHKERRQ(ierr);
4084e071409bSToby Isaac       h    = depth - 1 - h;
4085e071409bSToby Isaac       if (h) {
4086e071409bSToby Isaac         ierr = PetscDualSpaceGetHeightSubspace(dsp,h,dspace);CHKERRQ(ierr);
4087e071409bSToby Isaac       } else {
4088e071409bSToby Isaac         *dspace = dsp;
4089e071409bSToby Isaac       }
4090e071409bSToby Isaac     }
4091e071409bSToby Isaac   }
4092e071409bSToby Isaac   PetscFunctionReturn(0);
4093e071409bSToby Isaac }
4094e071409bSToby Isaac 
4095e071409bSToby Isaac 
40961a271a75SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecGetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
4097a6dfd86eSKarl Rupp {
4098552f7358SJed Brown   PetscScalar    *array, *vArray;
4099d9917b9dSMatthew G. Knepley   const PetscInt *cone, *coneO;
41001a271a75SMatthew G. Knepley   PetscInt        pStart, pEnd, p, numPoints, size = 0, offset = 0;
4101552f7358SJed Brown   PetscErrorCode  ierr;
4102552f7358SJed Brown 
41031b406b76SMatthew G. Knepley   PetscFunctionBeginHot;
41042a3aaacfSMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
41055a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr);
41065a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
41075a1bb5cfSMatthew G. Knepley   ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr);
41083f7cbbe7SMatthew G. Knepley   if (!values || !*values) {
41099df71ca4SMatthew G. Knepley     if ((point >= pStart) && (point < pEnd)) {
41109df71ca4SMatthew G. Knepley       PetscInt dof;
4111d9917b9dSMatthew G. Knepley 
41129df71ca4SMatthew G. Knepley       ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
41139df71ca4SMatthew G. Knepley       size += dof;
41149df71ca4SMatthew G. Knepley     }
41159df71ca4SMatthew G. Knepley     for (p = 0; p < numPoints; ++p) {
41169df71ca4SMatthew G. Knepley       const PetscInt cp = cone[p];
41172a3aaacfSMatthew G. Knepley       PetscInt       dof;
41185a1bb5cfSMatthew G. Knepley 
41195a1bb5cfSMatthew G. Knepley       if ((cp < pStart) || (cp >= pEnd)) continue;
41202a3aaacfSMatthew G. Knepley       ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
41215a1bb5cfSMatthew G. Knepley       size += dof;
41225a1bb5cfSMatthew G. Knepley     }
41233f7cbbe7SMatthew G. Knepley     if (!values) {
41243f7cbbe7SMatthew G. Knepley       if (csize) *csize = size;
41253f7cbbe7SMatthew G. Knepley       PetscFunctionReturn(0);
41263f7cbbe7SMatthew G. Knepley     }
412769291d52SBarry Smith     ierr = DMGetWorkArray(dm, size, MPIU_SCALAR, &array);CHKERRQ(ierr);
4128982e9ed1SMatthew G. Knepley   } else {
4129982e9ed1SMatthew G. Knepley     array = *values;
4130982e9ed1SMatthew G. Knepley   }
41319df71ca4SMatthew G. Knepley   size = 0;
41325a1bb5cfSMatthew G. Knepley   ierr = VecGetArray(v, &vArray);CHKERRQ(ierr);
41339df71ca4SMatthew G. Knepley   if ((point >= pStart) && (point < pEnd)) {
41349df71ca4SMatthew G. Knepley     PetscInt     dof, off, d;
41359df71ca4SMatthew G. Knepley     PetscScalar *varr;
4136d9917b9dSMatthew G. Knepley 
41379df71ca4SMatthew G. Knepley     ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
41389df71ca4SMatthew G. Knepley     ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
41399df71ca4SMatthew G. Knepley     varr = &vArray[off];
41401a271a75SMatthew G. Knepley     for (d = 0; d < dof; ++d, ++offset) {
41411a271a75SMatthew G. Knepley       array[offset] = varr[d];
41429df71ca4SMatthew G. Knepley     }
41439df71ca4SMatthew G. Knepley     size += dof;
41449df71ca4SMatthew G. Knepley   }
41459df71ca4SMatthew G. Knepley   for (p = 0; p < numPoints; ++p) {
41469df71ca4SMatthew G. Knepley     const PetscInt cp = cone[p];
41479df71ca4SMatthew G. Knepley     PetscInt       o  = coneO[p];
41485a1bb5cfSMatthew G. Knepley     PetscInt       dof, off, d;
41495a1bb5cfSMatthew G. Knepley     PetscScalar   *varr;
41505a1bb5cfSMatthew G. Knepley 
415152ed52e8SMatthew G. Knepley     if ((cp < pStart) || (cp >= pEnd)) continue;
41525a1bb5cfSMatthew G. Knepley     ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
41535a1bb5cfSMatthew G. Knepley     ierr = PetscSectionGetOffset(section, cp, &off);CHKERRQ(ierr);
41545a1bb5cfSMatthew G. Knepley     varr = &vArray[off];
41555a1bb5cfSMatthew G. Knepley     if (o >= 0) {
41561a271a75SMatthew G. Knepley       for (d = 0; d < dof; ++d, ++offset) {
41571a271a75SMatthew G. Knepley         array[offset] = varr[d];
41585a1bb5cfSMatthew G. Knepley       }
41595a1bb5cfSMatthew G. Knepley     } else {
41601a271a75SMatthew G. Knepley       for (d = dof-1; d >= 0; --d, ++offset) {
41611a271a75SMatthew G. Knepley         array[offset] = varr[d];
41625a1bb5cfSMatthew G. Knepley       }
41635a1bb5cfSMatthew G. Knepley     }
41649df71ca4SMatthew G. Knepley     size += dof;
41655a1bb5cfSMatthew G. Knepley   }
41665a1bb5cfSMatthew G. Knepley   ierr = VecRestoreArray(v, &vArray);CHKERRQ(ierr);
41679df71ca4SMatthew G. Knepley   if (!*values) {
41685a1bb5cfSMatthew G. Knepley     if (csize) *csize = size;
41695a1bb5cfSMatthew G. Knepley     *values = array;
41709df71ca4SMatthew G. Knepley   } else {
41718ccfff9cSToby Isaac     if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size);
41728c312ff3SMatthew G. Knepley     *csize = size;
41739df71ca4SMatthew G. Knepley   }
41745a1bb5cfSMatthew G. Knepley   PetscFunctionReturn(0);
41755a1bb5cfSMatthew G. Knepley }
4176d9917b9dSMatthew G. Knepley 
4177923c78e0SToby Isaac static PetscErrorCode DMPlexGetCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp)
4178923c78e0SToby Isaac {
4179923c78e0SToby Isaac   const PetscInt *cla;
4180923c78e0SToby Isaac   PetscInt       np, *pts = NULL;
4181923c78e0SToby Isaac   PetscErrorCode ierr;
4182923c78e0SToby Isaac 
4183923c78e0SToby Isaac   PetscFunctionBeginHot;
4184923c78e0SToby Isaac   ierr = PetscSectionGetClosureIndex(section, (PetscObject) dm, clSec, clPoints);CHKERRQ(ierr);
4185923c78e0SToby Isaac   if (!*clPoints) {
4186923c78e0SToby Isaac     PetscInt pStart, pEnd, p, q;
4187923c78e0SToby Isaac 
4188923c78e0SToby Isaac     ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
4189923c78e0SToby Isaac     ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_TRUE, &np, &pts);CHKERRQ(ierr);
4190923c78e0SToby Isaac     /* Compress out points not in the section */
4191923c78e0SToby Isaac     for (p = 0, q = 0; p < np; p++) {
4192923c78e0SToby Isaac       PetscInt r = pts[2*p];
4193923c78e0SToby Isaac       if ((r >= pStart) && (r < pEnd)) {
4194923c78e0SToby Isaac         pts[q*2]   = r;
4195923c78e0SToby Isaac         pts[q*2+1] = pts[2*p+1];
4196923c78e0SToby Isaac         ++q;
4197923c78e0SToby Isaac       }
4198923c78e0SToby Isaac     }
4199923c78e0SToby Isaac     np = q;
4200923c78e0SToby Isaac     cla = NULL;
4201923c78e0SToby Isaac   } else {
4202923c78e0SToby Isaac     PetscInt dof, off;
4203923c78e0SToby Isaac 
4204923c78e0SToby Isaac     ierr = PetscSectionGetDof(*clSec, point, &dof);CHKERRQ(ierr);
4205923c78e0SToby Isaac     ierr = PetscSectionGetOffset(*clSec, point, &off);CHKERRQ(ierr);
4206923c78e0SToby Isaac     ierr = ISGetIndices(*clPoints, &cla);CHKERRQ(ierr);
4207923c78e0SToby Isaac     np   = dof/2;
4208923c78e0SToby Isaac     pts  = (PetscInt *) &cla[off];
4209923c78e0SToby Isaac   }
4210923c78e0SToby Isaac   *numPoints = np;
4211923c78e0SToby Isaac   *points    = pts;
4212923c78e0SToby Isaac   *clp       = cla;
4213923c78e0SToby Isaac 
4214923c78e0SToby Isaac   PetscFunctionReturn(0);
4215923c78e0SToby Isaac }
4216923c78e0SToby Isaac 
4217923c78e0SToby Isaac static PetscErrorCode DMPlexRestoreCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp)
4218923c78e0SToby Isaac {
4219923c78e0SToby Isaac   PetscErrorCode ierr;
4220923c78e0SToby Isaac 
4221923c78e0SToby Isaac   PetscFunctionBeginHot;
4222923c78e0SToby Isaac   if (!*clPoints) {
4223923c78e0SToby Isaac     ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_TRUE, numPoints, points);CHKERRQ(ierr);
4224923c78e0SToby Isaac   } else {
4225923c78e0SToby Isaac     ierr = ISRestoreIndices(*clPoints, clp);CHKERRQ(ierr);
4226923c78e0SToby Isaac   }
4227923c78e0SToby Isaac   *numPoints = 0;
4228923c78e0SToby Isaac   *points    = NULL;
4229923c78e0SToby Isaac   *clSec     = NULL;
4230923c78e0SToby Isaac   *clPoints  = NULL;
4231923c78e0SToby Isaac   *clp       = NULL;
4232923c78e0SToby Isaac   PetscFunctionReturn(0);
4233923c78e0SToby Isaac }
4234923c78e0SToby Isaac 
423597e99dd9SToby 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[])
42361a271a75SMatthew G. Knepley {
42371a271a75SMatthew G. Knepley   PetscInt          offset = 0, p;
423897e99dd9SToby Isaac   const PetscInt    **perms = NULL;
423997e99dd9SToby Isaac   const PetscScalar **flips = NULL;
42401a271a75SMatthew G. Knepley   PetscErrorCode    ierr;
42411a271a75SMatthew G. Knepley 
42421a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
4243fe02ba77SJed Brown   *size = 0;
424497e99dd9SToby Isaac   ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
424597e99dd9SToby Isaac   for (p = 0; p < numPoints; p++) {
424697e99dd9SToby Isaac     const PetscInt    point = points[2*p];
424797e99dd9SToby Isaac     const PetscInt    *perm = perms ? perms[p] : NULL;
424897e99dd9SToby Isaac     const PetscScalar *flip = flips ? flips[p] : NULL;
42491a271a75SMatthew G. Knepley     PetscInt          dof, off, d;
42501a271a75SMatthew G. Knepley     const PetscScalar *varr;
42511a271a75SMatthew G. Knepley 
42521a271a75SMatthew G. Knepley     ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
42531a271a75SMatthew G. Knepley     ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
42541a271a75SMatthew G. Knepley     varr = &vArray[off];
425597e99dd9SToby Isaac     if (clperm) {
425697e99dd9SToby Isaac       if (perm) {
425797e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset + perm[d]]]  = varr[d];
42581a271a75SMatthew G. Knepley       } else {
425997e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset +      d ]]  = varr[d];
426097e99dd9SToby Isaac       }
426197e99dd9SToby Isaac       if (flip) {
426297e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[clperm[offset +      d ]] *= flip[d];
426397e99dd9SToby Isaac       }
426497e99dd9SToby Isaac     } else {
426597e99dd9SToby Isaac       if (perm) {
426697e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset + perm[d]]  = varr[d];
426797e99dd9SToby Isaac       } else {
426897e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset +      d ]  = varr[d];
426997e99dd9SToby Isaac       }
427097e99dd9SToby Isaac       if (flip) {
427197e99dd9SToby Isaac         for (d = 0; d < dof; d++) array[offset +      d ] *= flip[d];
42721a271a75SMatthew G. Knepley       }
42731a271a75SMatthew G. Knepley     }
427497e99dd9SToby Isaac     offset += dof;
427597e99dd9SToby Isaac   }
427697e99dd9SToby Isaac   ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
42771a271a75SMatthew G. Knepley   *size = offset;
42781a271a75SMatthew G. Knepley   PetscFunctionReturn(0);
42791a271a75SMatthew G. Knepley }
42801a271a75SMatthew G. Knepley 
428197e99dd9SToby 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[])
42821a271a75SMatthew G. Knepley {
42831a271a75SMatthew G. Knepley   PetscInt          offset = 0, f;
42841a271a75SMatthew G. Knepley   PetscErrorCode    ierr;
42851a271a75SMatthew G. Knepley 
42861a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
4287fe02ba77SJed Brown   *size = 0;
42881a271a75SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
428997e99dd9SToby Isaac     PetscInt          p;
429097e99dd9SToby Isaac     const PetscInt    **perms = NULL;
429197e99dd9SToby Isaac     const PetscScalar **flips = NULL;
42921a271a75SMatthew G. Knepley 
429397e99dd9SToby Isaac     ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
429497e99dd9SToby Isaac     for (p = 0; p < numPoints; p++) {
429597e99dd9SToby Isaac       const PetscInt    point = points[2*p];
429697e99dd9SToby Isaac       PetscInt          fdof, foff, b;
42971a271a75SMatthew G. Knepley       const PetscScalar *varr;
429897e99dd9SToby Isaac       const PetscInt    *perm = perms ? perms[p] : NULL;
429997e99dd9SToby Isaac       const PetscScalar *flip = flips ? flips[p] : NULL;
43001a271a75SMatthew G. Knepley 
43011a271a75SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
43021a271a75SMatthew G. Knepley       ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
43031a271a75SMatthew G. Knepley       varr = &vArray[foff];
430497e99dd9SToby Isaac       if (clperm) {
430597e99dd9SToby Isaac         if (perm) {for (b = 0; b < fdof; b++) {array[clperm[offset + perm[b]]]  = varr[b];}}
430697e99dd9SToby Isaac         else      {for (b = 0; b < fdof; b++) {array[clperm[offset +      b ]]  = varr[b];}}
430797e99dd9SToby Isaac         if (flip) {for (b = 0; b < fdof; b++) {array[clperm[offset +      b ]] *= flip[b];}}
43081a271a75SMatthew G. Knepley       } else {
430997e99dd9SToby Isaac         if (perm) {for (b = 0; b < fdof; b++) {array[offset + perm[b]]  = varr[b];}}
431097e99dd9SToby Isaac         else      {for (b = 0; b < fdof; b++) {array[offset +      b ]  = varr[b];}}
431197e99dd9SToby Isaac         if (flip) {for (b = 0; b < fdof; b++) {array[offset +      b ] *= flip[b];}}
43121a271a75SMatthew G. Knepley       }
431397e99dd9SToby Isaac       offset += fdof;
43141a271a75SMatthew G. Knepley     }
431597e99dd9SToby Isaac     ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
43161a271a75SMatthew G. Knepley   }
43171a271a75SMatthew G. Knepley   *size = offset;
43181a271a75SMatthew G. Knepley   PetscFunctionReturn(0);
43191a271a75SMatthew G. Knepley }
43201a271a75SMatthew G. Knepley 
4321552f7358SJed Brown /*@C
4322552f7358SJed Brown   DMPlexVecGetClosure - Get an array of the values on the closure of 'point'
4323552f7358SJed Brown 
4324552f7358SJed Brown   Not collective
4325552f7358SJed Brown 
4326552f7358SJed Brown   Input Parameters:
4327552f7358SJed Brown + dm - The DM
4328552f7358SJed Brown . section - The section describing the layout in v, or NULL to use the default section
4329552f7358SJed Brown . v - The local vector
433022c1ee49SMatthew G. Knepley . point - The point in the DM
433122c1ee49SMatthew G. Knepley . csize - The size of the input values array, or NULL
433222c1ee49SMatthew G. Knepley - values - An array to use for the values, or NULL to have it allocated automatically
4333552f7358SJed Brown 
4334552f7358SJed Brown   Output Parameters:
433522c1ee49SMatthew G. Knepley + csize - The number of values in the closure
433622c1ee49SMatthew G. Knepley - values - The array of values. If the user provided NULL, it is a borrowed array and should not be freed
433722c1ee49SMatthew G. Knepley 
433822c1ee49SMatthew G. Knepley $ Note that DMPlexVecGetClosure/DMPlexVecRestoreClosure only allocates the values array if it set to NULL in the
433922c1ee49SMatthew G. Knepley $ calling function. This is because DMPlexVecGetClosure() is typically called in the inner loop of a Vec or Mat
434022c1ee49SMatthew G. Knepley $ assembly function, and a user may already have allocated storage for this operation.
434122c1ee49SMatthew G. Knepley $
434222c1ee49SMatthew G. Knepley $ A typical use could be
434322c1ee49SMatthew G. Knepley $
434422c1ee49SMatthew G. Knepley $  values = NULL;
434522c1ee49SMatthew G. Knepley $  ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
434622c1ee49SMatthew G. Knepley $  for (cl = 0; cl < clSize; ++cl) {
434722c1ee49SMatthew G. Knepley $    <Compute on closure>
434822c1ee49SMatthew G. Knepley $  }
434922c1ee49SMatthew G. Knepley $  ierr = DMPlexVecRestoreClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
435022c1ee49SMatthew G. Knepley $
435122c1ee49SMatthew G. Knepley $ or
435222c1ee49SMatthew G. Knepley $
435322c1ee49SMatthew G. Knepley $  PetscMalloc1(clMaxSize, &values);
435422c1ee49SMatthew G. Knepley $  for (p = pStart; p < pEnd; ++p) {
435522c1ee49SMatthew G. Knepley $    clSize = clMaxSize;
435622c1ee49SMatthew G. Knepley $    ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr);
435722c1ee49SMatthew G. Knepley $    for (cl = 0; cl < clSize; ++cl) {
435822c1ee49SMatthew G. Knepley $      <Compute on closure>
435922c1ee49SMatthew G. Knepley $    }
436022c1ee49SMatthew G. Knepley $  }
436122c1ee49SMatthew G. Knepley $  PetscFree(values);
4362552f7358SJed Brown 
4363552f7358SJed Brown   Fortran Notes:
4364552f7358SJed Brown   Since it returns an array, this routine is only available in Fortran 90, and you must
4365552f7358SJed Brown   include petsc.h90 in your code.
4366552f7358SJed Brown 
4367552f7358SJed Brown   The csize argument is not present in the Fortran 90 binding since it is internal to the array.
4368552f7358SJed Brown 
4369552f7358SJed Brown   Level: intermediate
4370552f7358SJed Brown 
4371552f7358SJed Brown .seealso DMPlexVecRestoreClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure()
4372552f7358SJed Brown @*/
4373552f7358SJed Brown PetscErrorCode DMPlexVecGetClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
4374552f7358SJed Brown {
4375552f7358SJed Brown   PetscSection       clSection;
4376d9917b9dSMatthew G. Knepley   IS                 clPoints;
43778a84db2dSMatthew G. Knepley   PetscScalar       *array;
43788a84db2dSMatthew G. Knepley   const PetscScalar *vArray;
4379552f7358SJed Brown   PetscInt          *points = NULL;
43808f3be42fSMatthew G. Knepley   const PetscInt    *clp, *perm;
43811a271a75SMatthew G. Knepley   PetscInt           depth, numFields, numPoints, size;
4382552f7358SJed Brown   PetscErrorCode     ierr;
4383552f7358SJed Brown 
4384d9917b9dSMatthew G. Knepley   PetscFunctionBeginHot;
4385552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4386e87a4003SBarry Smith   if (!section) {ierr = DMGetSection(dm, &section);CHKERRQ(ierr);}
43871a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
43881a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
4389552f7358SJed Brown   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
4390552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
4391552f7358SJed Brown   if (depth == 1 && numFields < 2) {
43921a271a75SMatthew G. Knepley     ierr = DMPlexVecGetClosure_Depth1_Static(dm, section, v, point, csize, values);CHKERRQ(ierr);
4393552f7358SJed Brown     PetscFunctionReturn(0);
4394552f7358SJed Brown   }
43951a271a75SMatthew G. Knepley   /* Get points */
4396923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
43971fdd32a2SMatthew G. Knepley   ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &perm);CHKERRQ(ierr);
43981a271a75SMatthew G. Knepley   /* Get array */
4399bd6c0d32SMatthew G. Knepley   if (!values || !*values) {
44001a271a75SMatthew G. Knepley     PetscInt asize = 0, dof, p;
4401552f7358SJed Brown 
44021a271a75SMatthew G. Knepley     for (p = 0; p < numPoints*2; p += 2) {
4403552f7358SJed Brown       ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
44041a271a75SMatthew G. Knepley       asize += dof;
4405552f7358SJed Brown     }
4406bd6c0d32SMatthew G. Knepley     if (!values) {
4407923c78e0SToby Isaac       ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
44081a271a75SMatthew G. Knepley       if (csize) *csize = asize;
4409bd6c0d32SMatthew G. Knepley       PetscFunctionReturn(0);
4410bd6c0d32SMatthew G. Knepley     }
441169291d52SBarry Smith     ierr = DMGetWorkArray(dm, asize, MPIU_SCALAR, &array);CHKERRQ(ierr);
4412d0f6b257SMatthew G. Knepley   } else {
4413d0f6b257SMatthew G. Knepley     array = *values;
4414d0f6b257SMatthew G. Knepley   }
44158a84db2dSMatthew G. Knepley   ierr = VecGetArrayRead(v, &vArray);CHKERRQ(ierr);
44161a271a75SMatthew G. Knepley   /* Get values */
441797e99dd9SToby Isaac   if (numFields > 0) {ierr = DMPlexVecGetClosure_Fields_Static(dm, section, numPoints, points, numFields, perm, vArray, &size, array);CHKERRQ(ierr);}
441897e99dd9SToby Isaac   else               {ierr = DMPlexVecGetClosure_Static(dm, section, numPoints, points, perm, vArray, &size, array);CHKERRQ(ierr);}
44191a271a75SMatthew G. Knepley   /* Cleanup points */
4420923c78e0SToby Isaac   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
44211a271a75SMatthew G. Knepley   /* Cleanup array */
44228a84db2dSMatthew G. Knepley   ierr = VecRestoreArrayRead(v, &vArray);CHKERRQ(ierr);
4423d0f6b257SMatthew G. Knepley   if (!*values) {
4424552f7358SJed Brown     if (csize) *csize = size;
4425552f7358SJed Brown     *values = array;
4426d0f6b257SMatthew G. Knepley   } else {
4427f347f43bSBarry Smith     if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size);
4428d0f6b257SMatthew G. Knepley     *csize = size;
4429d0f6b257SMatthew G. Knepley   }
4430552f7358SJed Brown   PetscFunctionReturn(0);
4431552f7358SJed Brown }
4432552f7358SJed Brown 
4433552f7358SJed Brown /*@C
4434552f7358SJed Brown   DMPlexVecRestoreClosure - Restore the array of the values on the closure of 'point'
4435552f7358SJed Brown 
4436552f7358SJed Brown   Not collective
4437552f7358SJed Brown 
4438552f7358SJed Brown   Input Parameters:
4439552f7358SJed Brown + dm - The DM
44400298fd71SBarry Smith . section - The section describing the layout in v, or NULL to use the default section
4441552f7358SJed Brown . v - The local vector
4442eaf898f9SPatrick Sanan . point - The point in the DM
44430298fd71SBarry Smith . csize - The number of values in the closure, or NULL
4444552f7358SJed Brown - values - The array of values, which is a borrowed array and should not be freed
4445552f7358SJed Brown 
444622c1ee49SMatthew 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()
444722c1ee49SMatthew G. Knepley 
44483813dfbdSMatthew G Knepley   Fortran Notes:
44493813dfbdSMatthew G Knepley   Since it returns an array, this routine is only available in Fortran 90, and you must
44503813dfbdSMatthew G Knepley   include petsc.h90 in your code.
44513813dfbdSMatthew G Knepley 
44523813dfbdSMatthew G Knepley   The csize argument is not present in the Fortran 90 binding since it is internal to the array.
44533813dfbdSMatthew G Knepley 
4454552f7358SJed Brown   Level: intermediate
4455552f7358SJed Brown 
4456552f7358SJed Brown .seealso DMPlexVecGetClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure()
4457552f7358SJed Brown @*/
44587c1f9639SMatthew G Knepley PetscErrorCode DMPlexVecRestoreClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[])
4459a6dfd86eSKarl Rupp {
4460552f7358SJed Brown   PetscInt       size = 0;
4461552f7358SJed Brown   PetscErrorCode ierr;
4462552f7358SJed Brown 
4463552f7358SJed Brown   PetscFunctionBegin;
4464552f7358SJed Brown   /* Should work without recalculating size */
446569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, size, MPIU_SCALAR, (void*) values);CHKERRQ(ierr);
4466c9fdaa05SMatthew G. Knepley   *values = NULL;
4467552f7358SJed Brown   PetscFunctionReturn(0);
4468552f7358SJed Brown }
4469552f7358SJed Brown 
4470552f7358SJed Brown PETSC_STATIC_INLINE void add   (PetscScalar *x, PetscScalar y) {*x += y;}
4471552f7358SJed Brown PETSC_STATIC_INLINE void insert(PetscScalar *x, PetscScalar y) {*x  = y;}
4472552f7358SJed Brown 
447397e99dd9SToby 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[])
4474552f7358SJed Brown {
4475552f7358SJed Brown   PetscInt        cdof;   /* The number of constraints on this point */
4476552f7358SJed Brown   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
4477552f7358SJed Brown   PetscScalar    *a;
4478552f7358SJed Brown   PetscInt        off, cind = 0, k;
4479552f7358SJed Brown   PetscErrorCode  ierr;
4480552f7358SJed Brown 
4481552f7358SJed Brown   PetscFunctionBegin;
4482552f7358SJed Brown   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
4483552f7358SJed Brown   ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
4484552f7358SJed Brown   a    = &array[off];
4485552f7358SJed Brown   if (!cdof || setBC) {
448697e99dd9SToby Isaac     if (clperm) {
448797e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));}}
448897e99dd9SToby Isaac       else      {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));}}
4489552f7358SJed Brown     } else {
449097e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));}}
449197e99dd9SToby Isaac       else      {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));}}
4492552f7358SJed Brown     }
4493552f7358SJed Brown   } else {
4494552f7358SJed Brown     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
449597e99dd9SToby Isaac     if (clperm) {
449697e99dd9SToby Isaac       if (perm) {for (k = 0; k < dof; ++k) {
4497552f7358SJed Brown           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
449897e99dd9SToby Isaac           fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));
4499552f7358SJed Brown         }
4500552f7358SJed Brown       } else {
4501552f7358SJed Brown         for (k = 0; k < dof; ++k) {
4502552f7358SJed Brown           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
450397e99dd9SToby Isaac           fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));
450497e99dd9SToby Isaac         }
450597e99dd9SToby Isaac       }
450697e99dd9SToby Isaac     } else {
450797e99dd9SToby Isaac       if (perm) {
450897e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
450997e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
451097e99dd9SToby Isaac           fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));
451197e99dd9SToby Isaac         }
451297e99dd9SToby Isaac       } else {
451397e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
451497e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
451597e99dd9SToby Isaac           fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));
451697e99dd9SToby Isaac         }
4517552f7358SJed Brown       }
4518552f7358SJed Brown     }
4519552f7358SJed Brown   }
4520552f7358SJed Brown   PetscFunctionReturn(0);
4521552f7358SJed Brown }
4522552f7358SJed Brown 
452397e99dd9SToby 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[])
4524a5e93ea8SMatthew G. Knepley {
4525a5e93ea8SMatthew G. Knepley   PetscInt        cdof;   /* The number of constraints on this point */
4526a5e93ea8SMatthew G. Knepley   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
4527a5e93ea8SMatthew G. Knepley   PetscScalar    *a;
4528a5e93ea8SMatthew G. Knepley   PetscInt        off, cind = 0, k;
4529a5e93ea8SMatthew G. Knepley   PetscErrorCode  ierr;
4530a5e93ea8SMatthew G. Knepley 
4531a5e93ea8SMatthew G. Knepley   PetscFunctionBegin;
4532a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
4533a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr);
4534a5e93ea8SMatthew G. Knepley   a    = &array[off];
4535a5e93ea8SMatthew G. Knepley   if (cdof) {
4536a5e93ea8SMatthew G. Knepley     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
453797e99dd9SToby Isaac     if (clperm) {
453897e99dd9SToby Isaac       if (perm) {
4539a5e93ea8SMatthew G. Knepley         for (k = 0; k < dof; ++k) {
4540a5e93ea8SMatthew G. Knepley           if ((cind < cdof) && (k == cdofs[cind])) {
454197e99dd9SToby Isaac             fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));
454297e99dd9SToby Isaac             cind++;
4543a5e93ea8SMatthew G. Knepley           }
4544a5e93ea8SMatthew G. Knepley         }
4545a5e93ea8SMatthew G. Knepley       } else {
4546a5e93ea8SMatthew G. Knepley         for (k = 0; k < dof; ++k) {
4547a5e93ea8SMatthew G. Knepley           if ((cind < cdof) && (k == cdofs[cind])) {
454897e99dd9SToby Isaac             fuse(&a[k], values[clperm[offset+     k ]] * (flip ? flip[     k ] : 1.));
454997e99dd9SToby Isaac             cind++;
455097e99dd9SToby Isaac           }
455197e99dd9SToby Isaac         }
455297e99dd9SToby Isaac       }
455397e99dd9SToby Isaac     } else {
455497e99dd9SToby Isaac       if (perm) {
455597e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
455697e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {
455797e99dd9SToby Isaac             fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));
455897e99dd9SToby Isaac             cind++;
455997e99dd9SToby Isaac           }
456097e99dd9SToby Isaac         }
456197e99dd9SToby Isaac       } else {
456297e99dd9SToby Isaac         for (k = 0; k < dof; ++k) {
456397e99dd9SToby Isaac           if ((cind < cdof) && (k == cdofs[cind])) {
456497e99dd9SToby Isaac             fuse(&a[k], values[offset+     k ] * (flip ? flip[     k ] : 1.));
456597e99dd9SToby Isaac             cind++;
456697e99dd9SToby Isaac           }
4567a5e93ea8SMatthew G. Knepley         }
4568a5e93ea8SMatthew G. Knepley       }
4569a5e93ea8SMatthew G. Knepley     }
4570a5e93ea8SMatthew G. Knepley   }
4571a5e93ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4572a5e93ea8SMatthew G. Knepley }
4573a5e93ea8SMatthew G. Knepley 
457497e99dd9SToby 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[])
4575a6dfd86eSKarl Rupp {
4576552f7358SJed Brown   PetscScalar    *a;
45771a271a75SMatthew G. Knepley   PetscInt        fdof, foff, fcdof, foffset = *offset;
45781a271a75SMatthew G. Knepley   const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
457997e99dd9SToby Isaac   PetscInt        cind = 0, b;
4580552f7358SJed Brown   PetscErrorCode  ierr;
4581552f7358SJed Brown 
4582552f7358SJed Brown   PetscFunctionBegin;
4583552f7358SJed Brown   ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
4584552f7358SJed Brown   ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr);
45851a271a75SMatthew G. Knepley   ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
45861a271a75SMatthew G. Knepley   a    = &array[foff];
4587552f7358SJed Brown   if (!fcdof || setBC) {
458897e99dd9SToby Isaac     if (clperm) {
458997e99dd9SToby Isaac       if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));}}
459097e99dd9SToby Isaac       else      {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));}}
4591552f7358SJed Brown     } else {
459297e99dd9SToby Isaac       if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));}}
459397e99dd9SToby Isaac       else      {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));}}
4594552f7358SJed Brown     }
4595552f7358SJed Brown   } else {
4596552f7358SJed Brown     ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
459797e99dd9SToby Isaac     if (clperm) {
459897e99dd9SToby Isaac       if (perm) {
459997e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
460097e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
460197e99dd9SToby Isaac           fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));
4602552f7358SJed Brown         }
4603552f7358SJed Brown       } else {
460497e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
460597e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
460697e99dd9SToby Isaac           fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));
460797e99dd9SToby Isaac         }
460897e99dd9SToby Isaac       }
460997e99dd9SToby Isaac     } else {
461097e99dd9SToby Isaac       if (perm) {
461197e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
461297e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
461397e99dd9SToby Isaac           fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));
461497e99dd9SToby Isaac         }
461597e99dd9SToby Isaac       } else {
461697e99dd9SToby Isaac         for (b = 0; b < fdof; b++) {
461797e99dd9SToby Isaac           if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;}
461897e99dd9SToby Isaac           fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));
4619552f7358SJed Brown         }
4620552f7358SJed Brown       }
4621552f7358SJed Brown     }
4622552f7358SJed Brown   }
46231a271a75SMatthew G. Knepley   *offset += fdof;
4624552f7358SJed Brown   PetscFunctionReturn(0);
4625552f7358SJed Brown }
4626552f7358SJed Brown 
4627ba322698SMatthew 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[])
4628a5e93ea8SMatthew G. Knepley {
4629a5e93ea8SMatthew G. Knepley   PetscScalar    *a;
46301a271a75SMatthew G. Knepley   PetscInt        fdof, foff, fcdof, foffset = *offset;
46311a271a75SMatthew G. Knepley   const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
4632ba322698SMatthew G. Knepley   PetscInt        cind = 0, ncind = 0, b;
4633ba322698SMatthew G. Knepley   PetscBool       ncSet, fcSet;
4634a5e93ea8SMatthew G. Knepley   PetscErrorCode  ierr;
4635a5e93ea8SMatthew G. Knepley 
4636a5e93ea8SMatthew G. Knepley   PetscFunctionBegin;
4637a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
4638a5e93ea8SMatthew G. Knepley   ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr);
46391a271a75SMatthew G. Knepley   ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr);
46401a271a75SMatthew G. Knepley   a    = &array[foff];
4641a5e93ea8SMatthew G. Knepley   if (fcdof) {
4642ba322698SMatthew G. Knepley     /* We just override fcdof and fcdofs with Ncc and comps */
4643a5e93ea8SMatthew G. Knepley     ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
464497e99dd9SToby Isaac     if (clperm) {
464597e99dd9SToby Isaac       if (perm) {
4646ba322698SMatthew G. Knepley         if (comps) {
4647ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
4648ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
4649ba322698SMatthew G. Knepley             if ((ncind < Ncc)  && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;}
4650ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
4651ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));}
4652ba322698SMatthew G. Knepley           }
4653ba322698SMatthew G. Knepley         } else {
465497e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
465597e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
465697e99dd9SToby Isaac               fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));
4657a5e93ea8SMatthew G. Knepley               ++cind;
4658a5e93ea8SMatthew G. Knepley             }
4659a5e93ea8SMatthew G. Knepley           }
4660ba322698SMatthew G. Knepley         }
4661ba322698SMatthew G. Knepley       } else {
4662ba322698SMatthew G. Knepley         if (comps) {
4663ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
4664ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
4665ba322698SMatthew G. Knepley             if ((ncind < Ncc)  && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;}
4666ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
4667ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));}
4668ba322698SMatthew G. Knepley           }
4669a5e93ea8SMatthew G. Knepley         } else {
467097e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
467197e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
467297e99dd9SToby Isaac               fuse(&a[b], values[clperm[foffset+     b ]] * (flip ? flip[     b ] : 1.));
467397e99dd9SToby Isaac               ++cind;
467497e99dd9SToby Isaac             }
467597e99dd9SToby Isaac           }
467697e99dd9SToby Isaac         }
4677ba322698SMatthew G. Knepley       }
467897e99dd9SToby Isaac     } else {
467997e99dd9SToby Isaac       if (perm) {
4680ba322698SMatthew G. Knepley         if (comps) {
4681ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
4682ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
4683ba322698SMatthew G. Knepley             if ((ncind < Ncc)  && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;}
4684ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
4685ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));}
4686ba322698SMatthew G. Knepley           }
4687ba322698SMatthew G. Knepley         } else {
468897e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
468997e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
469097e99dd9SToby Isaac               fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));
469197e99dd9SToby Isaac               ++cind;
469297e99dd9SToby Isaac             }
469397e99dd9SToby Isaac           }
4694ba322698SMatthew G. Knepley         }
4695ba322698SMatthew G. Knepley       } else {
4696ba322698SMatthew G. Knepley         if (comps) {
4697ba322698SMatthew G. Knepley           for (b = 0; b < fdof; b++) {
4698ba322698SMatthew G. Knepley             ncSet = fcSet = PETSC_FALSE;
4699ba322698SMatthew G. Knepley             if ((ncind < Ncc)  && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;}
4700ba322698SMatthew G. Knepley             if ((cind < fcdof) && (b == fcdofs[cind])) {++cind;  fcSet = PETSC_TRUE;}
4701ba322698SMatthew G. Knepley             if (ncSet && fcSet) {fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));}
4702ba322698SMatthew G. Knepley           }
470397e99dd9SToby Isaac         } else {
470497e99dd9SToby Isaac           for (b = 0; b < fdof; b++) {
470597e99dd9SToby Isaac             if ((cind < fcdof) && (b == fcdofs[cind])) {
470697e99dd9SToby Isaac               fuse(&a[b], values[foffset+     b ] * (flip ? flip[     b ] : 1.));
4707a5e93ea8SMatthew G. Knepley               ++cind;
4708a5e93ea8SMatthew G. Knepley             }
4709a5e93ea8SMatthew G. Knepley           }
4710a5e93ea8SMatthew G. Knepley         }
4711a5e93ea8SMatthew G. Knepley       }
4712a5e93ea8SMatthew G. Knepley     }
4713ba322698SMatthew G. Knepley   }
47141a271a75SMatthew G. Knepley   *offset += fdof;
4715a5e93ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4716a5e93ea8SMatthew G. Knepley }
4717a5e93ea8SMatthew G. Knepley 
47188f3be42fSMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecSetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode)
4719a6dfd86eSKarl Rupp {
4720552f7358SJed Brown   PetscScalar    *array;
47211b406b76SMatthew G. Knepley   const PetscInt *cone, *coneO;
47221b406b76SMatthew G. Knepley   PetscInt        pStart, pEnd, p, numPoints, off, dof;
4723552f7358SJed Brown   PetscErrorCode  ierr;
4724552f7358SJed Brown 
47251b406b76SMatthew G. Knepley   PetscFunctionBeginHot;
4726b6ebb6e6SMatthew G. Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
4727b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr);
4728b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr);
4729b6ebb6e6SMatthew G. Knepley   ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr);
4730b6ebb6e6SMatthew G. Knepley   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
4731b6ebb6e6SMatthew G. Knepley   for (p = 0, off = 0; p <= numPoints; ++p, off += dof) {
4732b6ebb6e6SMatthew G. Knepley     const PetscInt cp = !p ? point : cone[p-1];
4733b6ebb6e6SMatthew G. Knepley     const PetscInt o  = !p ? 0     : coneO[p-1];
4734b6ebb6e6SMatthew G. Knepley 
4735b6ebb6e6SMatthew G. Knepley     if ((cp < pStart) || (cp >= pEnd)) {dof = 0; continue;}
4736b6ebb6e6SMatthew G. Knepley     ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr);
4737b6ebb6e6SMatthew G. Knepley     /* ADD_VALUES */
4738b6ebb6e6SMatthew G. Knepley     {
4739b6ebb6e6SMatthew G. Knepley       const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
4740b6ebb6e6SMatthew G. Knepley       PetscScalar    *a;
4741b6ebb6e6SMatthew G. Knepley       PetscInt        cdof, coff, cind = 0, k;
4742b6ebb6e6SMatthew G. Knepley 
4743b6ebb6e6SMatthew G. Knepley       ierr = PetscSectionGetConstraintDof(section, cp, &cdof);CHKERRQ(ierr);
4744b6ebb6e6SMatthew G. Knepley       ierr = PetscSectionGetOffset(section, cp, &coff);CHKERRQ(ierr);
4745b6ebb6e6SMatthew G. Knepley       a    = &array[coff];
4746b6ebb6e6SMatthew G. Knepley       if (!cdof) {
4747b6ebb6e6SMatthew G. Knepley         if (o >= 0) {
4748b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
4749b6ebb6e6SMatthew G. Knepley             a[k] += values[off+k];
4750b6ebb6e6SMatthew G. Knepley           }
4751b6ebb6e6SMatthew G. Knepley         } else {
4752b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
4753b6ebb6e6SMatthew G. Knepley             a[k] += values[off+dof-k-1];
4754b6ebb6e6SMatthew G. Knepley           }
4755b6ebb6e6SMatthew G. Knepley         }
4756b6ebb6e6SMatthew G. Knepley       } else {
4757b6ebb6e6SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(section, cp, &cdofs);CHKERRQ(ierr);
4758b6ebb6e6SMatthew G. Knepley         if (o >= 0) {
4759b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
4760b6ebb6e6SMatthew G. Knepley             if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
4761b6ebb6e6SMatthew G. Knepley             a[k] += values[off+k];
4762b6ebb6e6SMatthew G. Knepley           }
4763b6ebb6e6SMatthew G. Knepley         } else {
4764b6ebb6e6SMatthew G. Knepley           for (k = 0; k < dof; ++k) {
4765b6ebb6e6SMatthew G. Knepley             if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;}
4766b6ebb6e6SMatthew G. Knepley             a[k] += values[off+dof-k-1];
4767b6ebb6e6SMatthew G. Knepley           }
4768b6ebb6e6SMatthew G. Knepley         }
4769b6ebb6e6SMatthew G. Knepley       }
4770b6ebb6e6SMatthew G. Knepley     }
4771b6ebb6e6SMatthew G. Knepley   }
4772b6ebb6e6SMatthew G. Knepley   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
4773b6ebb6e6SMatthew G. Knepley   PetscFunctionReturn(0);
4774b6ebb6e6SMatthew G. Knepley }
47751b406b76SMatthew G. Knepley 
47761b406b76SMatthew G. Knepley /*@C
47771b406b76SMatthew G. Knepley   DMPlexVecSetClosure - Set an array of the values on the closure of 'point'
47781b406b76SMatthew G. Knepley 
47791b406b76SMatthew G. Knepley   Not collective
47801b406b76SMatthew G. Knepley 
47811b406b76SMatthew G. Knepley   Input Parameters:
47821b406b76SMatthew G. Knepley + dm - The DM
47831b406b76SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section
47841b406b76SMatthew G. Knepley . v - The local vector
4785eaf898f9SPatrick Sanan . point - The point in the DM
47861b406b76SMatthew G. Knepley . values - The array of values
478722c1ee49SMatthew 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,
478822c1ee49SMatthew G. Knepley          where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions.
47891b406b76SMatthew G. Knepley 
47901b406b76SMatthew G. Knepley   Fortran Notes:
47911b406b76SMatthew G. Knepley   This routine is only available in Fortran 90, and you must include petsc.h90 in your code.
47921b406b76SMatthew G. Knepley 
47931b406b76SMatthew G. Knepley   Level: intermediate
47941b406b76SMatthew G. Knepley 
47951b406b76SMatthew G. Knepley .seealso DMPlexVecGetClosure(), DMPlexMatSetClosure()
47961b406b76SMatthew G. Knepley @*/
47971b406b76SMatthew G. Knepley PetscErrorCode DMPlexVecSetClosure(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode)
47981b406b76SMatthew G. Knepley {
47991b406b76SMatthew G. Knepley   PetscSection    clSection;
48001b406b76SMatthew G. Knepley   IS              clPoints;
48011b406b76SMatthew G. Knepley   PetscScalar    *array;
48021b406b76SMatthew G. Knepley   PetscInt       *points = NULL;
480397e99dd9SToby Isaac   const PetscInt *clp, *clperm;
48041a271a75SMatthew G. Knepley   PetscInt        depth, numFields, numPoints, p;
48051b406b76SMatthew G. Knepley   PetscErrorCode  ierr;
48061b406b76SMatthew G. Knepley 
48071a271a75SMatthew G. Knepley   PetscFunctionBeginHot;
48081b406b76SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4809e87a4003SBarry Smith   if (!section) {ierr = DMGetSection(dm, &section);CHKERRQ(ierr);}
48101a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
48111a271a75SMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
48121b406b76SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
48131b406b76SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
48141b406b76SMatthew G. Knepley   if (depth == 1 && numFields < 2 && mode == ADD_VALUES) {
48158f3be42fSMatthew G. Knepley     ierr = DMPlexVecSetClosure_Depth1_Static(dm, section, v, point, values, mode);CHKERRQ(ierr);
48161b406b76SMatthew G. Knepley     PetscFunctionReturn(0);
48171b406b76SMatthew G. Knepley   }
48181a271a75SMatthew G. Knepley   /* Get points */
481997e99dd9SToby Isaac   ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &clperm);CHKERRQ(ierr);
4820923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
48211a271a75SMatthew G. Knepley   /* Get array */
4822552f7358SJed Brown   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
48231a271a75SMatthew G. Knepley   /* Get values */
4824ef90cfe2SMatthew G. Knepley   if (numFields > 0) {
482597e99dd9SToby Isaac     PetscInt offset = 0, f;
4826552f7358SJed Brown     for (f = 0; f < numFields; ++f) {
482797e99dd9SToby Isaac       const PetscInt    **perms = NULL;
482897e99dd9SToby Isaac       const PetscScalar **flips = NULL;
482997e99dd9SToby Isaac 
483097e99dd9SToby Isaac       ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
4831552f7358SJed Brown       switch (mode) {
4832552f7358SJed Brown       case INSERT_VALUES:
483397e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
483497e99dd9SToby Isaac           const PetscInt    point = points[2*p];
483597e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
483697e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
483797e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, clperm, values, &offset, array);
4838552f7358SJed Brown         } break;
4839552f7358SJed Brown       case INSERT_ALL_VALUES:
484097e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
484197e99dd9SToby Isaac           const PetscInt    point = points[2*p];
484297e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
484397e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
484497e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, clperm, values, &offset, array);
4845552f7358SJed Brown         } break;
4846a5e93ea8SMatthew G. Knepley       case INSERT_BC_VALUES:
484797e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
484897e99dd9SToby Isaac           const PetscInt    point = points[2*p];
484997e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
485097e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
4851ba322698SMatthew G. Knepley           updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, insert, clperm, values, &offset, array);
4852a5e93ea8SMatthew G. Knepley         } break;
4853552f7358SJed Brown       case ADD_VALUES:
485497e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
485597e99dd9SToby Isaac           const PetscInt    point = points[2*p];
485697e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
485797e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
485897e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, clperm, values, &offset, array);
4859552f7358SJed Brown         } break;
4860552f7358SJed Brown       case ADD_ALL_VALUES:
486197e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
486297e99dd9SToby Isaac           const PetscInt    point = points[2*p];
486397e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
486497e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
486597e99dd9SToby Isaac           updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, clperm, values, &offset, array);
4866552f7358SJed Brown         } break;
4867304ab55fSMatthew G. Knepley       case ADD_BC_VALUES:
486897e99dd9SToby Isaac         for (p = 0; p < numPoints; p++) {
486997e99dd9SToby Isaac           const PetscInt    point = points[2*p];
487097e99dd9SToby Isaac           const PetscInt    *perm = perms ? perms[p] : NULL;
487197e99dd9SToby Isaac           const PetscScalar *flip = flips ? flips[p] : NULL;
4872ba322698SMatthew G. Knepley           updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, add, clperm, values, &offset, array);
4873304ab55fSMatthew G. Knepley         } break;
4874552f7358SJed Brown       default:
4875f347f43bSBarry Smith         SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
4876552f7358SJed Brown       }
487797e99dd9SToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
48781a271a75SMatthew G. Knepley     }
4879552f7358SJed Brown   } else {
48801a271a75SMatthew G. Knepley     PetscInt dof, off;
488197e99dd9SToby Isaac     const PetscInt    **perms = NULL;
488297e99dd9SToby Isaac     const PetscScalar **flips = NULL;
48831a271a75SMatthew G. Knepley 
488497e99dd9SToby Isaac     ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
4885552f7358SJed Brown     switch (mode) {
4886552f7358SJed Brown     case INSERT_VALUES:
488797e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
488897e99dd9SToby Isaac         const PetscInt    point = points[2*p];
488997e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
489097e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
489197e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
489297e99dd9SToby Isaac         updatePoint_private(section, point, dof, insert, PETSC_FALSE, perm, flip, clperm, values, off, array);
4893552f7358SJed Brown       } break;
4894552f7358SJed Brown     case INSERT_ALL_VALUES:
489597e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
489697e99dd9SToby Isaac         const PetscInt    point = points[2*p];
489797e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
489897e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
489997e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
490097e99dd9SToby Isaac         updatePoint_private(section, point, dof, insert, PETSC_TRUE,  perm, flip, clperm, values, off, array);
4901552f7358SJed Brown       } break;
4902a5e93ea8SMatthew G. Knepley     case INSERT_BC_VALUES:
490397e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
490497e99dd9SToby Isaac         const PetscInt    point = points[2*p];
490597e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
490697e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
490797e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
490897e99dd9SToby Isaac         updatePointBC_private(section, point, dof, insert,  perm, flip, clperm, values, off, array);
4909a5e93ea8SMatthew G. Knepley       } break;
4910552f7358SJed Brown     case ADD_VALUES:
491197e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
491297e99dd9SToby Isaac         const PetscInt    point = points[2*p];
491397e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
491497e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
491597e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
491697e99dd9SToby Isaac         updatePoint_private(section, point, dof, add,    PETSC_FALSE, perm, flip, clperm, values, off, array);
4917552f7358SJed Brown       } break;
4918552f7358SJed Brown     case ADD_ALL_VALUES:
491997e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
492097e99dd9SToby Isaac         const PetscInt    point = points[2*p];
492197e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
492297e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
492397e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
492497e99dd9SToby Isaac         updatePoint_private(section, point, dof, add,    PETSC_TRUE,  perm, flip, clperm, values, off, array);
4925552f7358SJed Brown       } break;
4926304ab55fSMatthew G. Knepley     case ADD_BC_VALUES:
492797e99dd9SToby Isaac       for (p = 0, off = 0; p < numPoints; p++, off += dof) {
492897e99dd9SToby Isaac         const PetscInt    point = points[2*p];
492997e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
493097e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
493197e99dd9SToby Isaac         ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
493297e99dd9SToby Isaac         updatePointBC_private(section, point, dof, add,  perm, flip, clperm, values, off, array);
4933304ab55fSMatthew G. Knepley       } break;
4934552f7358SJed Brown     default:
4935f347f43bSBarry Smith       SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
4936552f7358SJed Brown     }
493797e99dd9SToby Isaac     ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr);
4938552f7358SJed Brown   }
49391a271a75SMatthew G. Knepley   /* Cleanup points */
4940923c78e0SToby Isaac   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
49411a271a75SMatthew G. Knepley   /* Cleanup array */
4942552f7358SJed Brown   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
4943552f7358SJed Brown   PetscFunctionReturn(0);
4944552f7358SJed Brown }
4945552f7358SJed Brown 
4946ba322698SMatthew G. Knepley PetscErrorCode DMPlexVecSetFieldClosure_Internal(DM dm, PetscSection section, Vec v, PetscBool fieldActive[], PetscInt point, PetscInt Ncc, const PetscInt comps[], const PetscScalar values[], InsertMode mode)
4947e07394fbSMatthew G. Knepley {
4948e07394fbSMatthew G. Knepley   PetscSection      clSection;
4949e07394fbSMatthew G. Knepley   IS                clPoints;
4950e07394fbSMatthew G. Knepley   PetscScalar       *array;
4951e07394fbSMatthew G. Knepley   PetscInt          *points = NULL;
4952b04c866fSMatthew G. Knepley   const PetscInt    *clp, *clperm;
4953e07394fbSMatthew G. Knepley   PetscInt          numFields, numPoints, p;
495497e99dd9SToby Isaac   PetscInt          offset = 0, f;
4955e07394fbSMatthew G. Knepley   PetscErrorCode    ierr;
4956e07394fbSMatthew G. Knepley 
4957e07394fbSMatthew G. Knepley   PetscFunctionBeginHot;
4958e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4959e87a4003SBarry Smith   if (!section) {ierr = DMGetSection(dm, &section);CHKERRQ(ierr);}
4960e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
4961e07394fbSMatthew G. Knepley   PetscValidHeaderSpecific(v, VEC_CLASSID, 3);
4962e07394fbSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
4963e07394fbSMatthew G. Knepley   /* Get points */
4964b04c866fSMatthew G. Knepley   ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &clperm);CHKERRQ(ierr);
4965923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
4966e07394fbSMatthew G. Knepley   /* Get array */
4967e07394fbSMatthew G. Knepley   ierr = VecGetArray(v, &array);CHKERRQ(ierr);
4968e07394fbSMatthew G. Knepley   /* Get values */
4969e07394fbSMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
497097e99dd9SToby Isaac     const PetscInt    **perms = NULL;
497197e99dd9SToby Isaac     const PetscScalar **flips = NULL;
497297e99dd9SToby Isaac 
4973e07394fbSMatthew G. Knepley     if (!fieldActive[f]) {
4974e07394fbSMatthew G. Knepley       for (p = 0; p < numPoints*2; p += 2) {
4975e07394fbSMatthew G. Knepley         PetscInt fdof;
4976e07394fbSMatthew G. Knepley         ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr);
4977e07394fbSMatthew G. Knepley         offset += fdof;
4978e07394fbSMatthew G. Knepley       }
4979e07394fbSMatthew G. Knepley       continue;
4980e07394fbSMatthew G. Knepley     }
498197e99dd9SToby Isaac     ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
4982e07394fbSMatthew G. Knepley     switch (mode) {
4983e07394fbSMatthew G. Knepley     case INSERT_VALUES:
498497e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
498597e99dd9SToby Isaac         const PetscInt    point = points[2*p];
498697e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
498797e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
4988b04c866fSMatthew G. Knepley         updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, clperm, values, &offset, array);
4989e07394fbSMatthew G. Knepley       } break;
4990e07394fbSMatthew G. Knepley     case INSERT_ALL_VALUES:
499197e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
499297e99dd9SToby Isaac         const PetscInt    point = points[2*p];
499397e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
499497e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
4995b04c866fSMatthew G. Knepley         updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, clperm, values, &offset, array);
4996e07394fbSMatthew G. Knepley         } break;
4997e07394fbSMatthew G. Knepley     case INSERT_BC_VALUES:
499897e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
499997e99dd9SToby Isaac         const PetscInt    point = points[2*p];
500097e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
500197e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
5002ba322698SMatthew G. Knepley         updatePointFieldsBC_private(section, point, perm, flip, f, Ncc, comps, insert, clperm, values, &offset, array);
5003e07394fbSMatthew G. Knepley       } break;
5004e07394fbSMatthew G. Knepley     case ADD_VALUES:
500597e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
500697e99dd9SToby Isaac         const PetscInt    point = points[2*p];
500797e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
500897e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
5009b04c866fSMatthew G. Knepley         updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, clperm, values, &offset, array);
5010e07394fbSMatthew G. Knepley       } break;
5011e07394fbSMatthew G. Knepley     case ADD_ALL_VALUES:
501297e99dd9SToby Isaac       for (p = 0; p < numPoints; p++) {
501397e99dd9SToby Isaac         const PetscInt    point = points[2*p];
501497e99dd9SToby Isaac         const PetscInt    *perm = perms ? perms[p] : NULL;
501597e99dd9SToby Isaac         const PetscScalar *flip = flips ? flips[p] : NULL;
5016b04c866fSMatthew G. Knepley         updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, clperm, values, &offset, array);
5017e07394fbSMatthew G. Knepley       } break;
5018e07394fbSMatthew G. Knepley     default:
5019f347f43bSBarry Smith       SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode);
5020e07394fbSMatthew G. Knepley     }
502197e99dd9SToby Isaac     ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr);
5022e07394fbSMatthew G. Knepley   }
5023e07394fbSMatthew G. Knepley   /* Cleanup points */
5024923c78e0SToby Isaac   ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5025e07394fbSMatthew G. Knepley   /* Cleanup array */
5026e07394fbSMatthew G. Knepley   ierr = VecRestoreArray(v, &array);CHKERRQ(ierr);
5027e07394fbSMatthew G. Knepley   PetscFunctionReturn(0);
5028e07394fbSMatthew G. Knepley }
5029e07394fbSMatthew G. Knepley 
50307cd05799SMatthew G. Knepley static PetscErrorCode DMPlexPrintMatSetValues(PetscViewer viewer, Mat A, PetscInt point, PetscInt numRIndices, const PetscInt rindices[], PetscInt numCIndices, const PetscInt cindices[], const PetscScalar values[])
5031552f7358SJed Brown {
5032552f7358SJed Brown   PetscMPIInt    rank;
5033552f7358SJed Brown   PetscInt       i, j;
5034552f7358SJed Brown   PetscErrorCode ierr;
5035552f7358SJed Brown 
5036552f7358SJed Brown   PetscFunctionBegin;
503782f516ccSBarry Smith   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr);
5038eaf898f9SPatrick Sanan   ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat for point %D\n", rank, point);CHKERRQ(ierr);
5039e4b003c7SBarry Smith   for (i = 0; i < numRIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat row indices[%D] = %D\n", rank, i, rindices[i]);CHKERRQ(ierr);}
5040e4b003c7SBarry Smith   for (i = 0; i < numCIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat col indices[%D] = %D\n", rank, i, cindices[i]);CHKERRQ(ierr);}
5041b0ecff45SMatthew G. Knepley   numCIndices = numCIndices ? numCIndices : numRIndices;
5042b0ecff45SMatthew G. Knepley   for (i = 0; i < numRIndices; i++) {
5043e4b003c7SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer, "[%d]", rank);CHKERRQ(ierr);
5044b0ecff45SMatthew G. Knepley     for (j = 0; j < numCIndices; j++) {
5045519f805aSKarl Rupp #if defined(PETSC_USE_COMPLEX)
50467eba1a17SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, " (%g,%g)", (double)PetscRealPart(values[i*numCIndices+j]), (double)PetscImaginaryPart(values[i*numCIndices+j]));CHKERRQ(ierr);
5047552f7358SJed Brown #else
5048b0ecff45SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, " %g", (double)values[i*numCIndices+j]);CHKERRQ(ierr);
5049552f7358SJed Brown #endif
5050552f7358SJed Brown     }
505177a6746dSMatthew G Knepley     ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr);
5052552f7358SJed Brown   }
5053552f7358SJed Brown   PetscFunctionReturn(0);
5054552f7358SJed Brown }
5055552f7358SJed Brown 
5056552f7358SJed Brown /* . off - The global offset of this point */
50574acb8e1eSToby Isaac PetscErrorCode DMPlexGetIndicesPoint_Internal(PetscSection section, PetscInt point, PetscInt off, PetscInt *loff, PetscBool setBC, const PetscInt perm[], PetscInt indices[])
5058a6dfd86eSKarl Rupp {
5059e6ccafaeSMatthew G Knepley   PetscInt        dof;    /* The number of unknowns on this point */
5060552f7358SJed Brown   PetscInt        cdof;   /* The number of constraints on this point */
5061552f7358SJed Brown   const PetscInt *cdofs; /* The indices of the constrained dofs on this point */
5062552f7358SJed Brown   PetscInt        cind = 0, k;
5063552f7358SJed Brown   PetscErrorCode  ierr;
5064552f7358SJed Brown 
5065552f7358SJed Brown   PetscFunctionBegin;
5066552f7358SJed Brown   ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr);
5067552f7358SJed Brown   ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr);
5068552f7358SJed Brown   if (!cdof || setBC) {
50694acb8e1eSToby Isaac     if (perm) {
50704acb8e1eSToby Isaac       for (k = 0; k < dof; k++) indices[*loff+perm[k]] = off + k;
5071552f7358SJed Brown     } else {
50724acb8e1eSToby Isaac       for (k = 0; k < dof; k++) indices[*loff+k] = off + k;
5073552f7358SJed Brown     }
5074552f7358SJed Brown   } else {
5075552f7358SJed Brown     ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr);
50764acb8e1eSToby Isaac     if (perm) {
50774acb8e1eSToby Isaac       for (k = 0; k < dof; ++k) {
50784acb8e1eSToby Isaac         if ((cind < cdof) && (k == cdofs[cind])) {
50794acb8e1eSToby Isaac           /* Insert check for returning constrained indices */
50804acb8e1eSToby Isaac           indices[*loff+perm[k]] = -(off+k+1);
50814acb8e1eSToby Isaac           ++cind;
50824acb8e1eSToby Isaac         } else {
50834acb8e1eSToby Isaac           indices[*loff+perm[k]] = off+k-cind;
50844acb8e1eSToby Isaac         }
50854acb8e1eSToby Isaac       }
50864acb8e1eSToby Isaac     } else {
5087552f7358SJed Brown       for (k = 0; k < dof; ++k) {
5088552f7358SJed Brown         if ((cind < cdof) && (k == cdofs[cind])) {
5089552f7358SJed Brown           /* Insert check for returning constrained indices */
5090e6ccafaeSMatthew G Knepley           indices[*loff+k] = -(off+k+1);
5091552f7358SJed Brown           ++cind;
5092552f7358SJed Brown         } else {
5093e6ccafaeSMatthew G Knepley           indices[*loff+k] = off+k-cind;
5094552f7358SJed Brown         }
5095552f7358SJed Brown       }
5096552f7358SJed Brown     }
5097552f7358SJed Brown   }
5098e6ccafaeSMatthew G Knepley   *loff += dof;
5099552f7358SJed Brown   PetscFunctionReturn(0);
5100552f7358SJed Brown }
5101552f7358SJed Brown 
51027e29afd2SMatthew G. Knepley /*
51037e29afd2SMatthew G. Knepley   This version only believes the point offset from the globalSection
51047e29afd2SMatthew G. Knepley 
51057e29afd2SMatthew G. Knepley  . off - The global offset of this point
51067e29afd2SMatthew G. Knepley */
51074acb8e1eSToby Isaac PetscErrorCode DMPlexGetIndicesPointFields_Internal(PetscSection section, PetscInt point, PetscInt off, PetscInt foffs[], PetscBool setBC, const PetscInt ***perms, PetscInt permsoff, PetscInt indices[])
5108a6dfd86eSKarl Rupp {
5109552f7358SJed Brown   PetscInt       numFields, foff, f;
5110552f7358SJed Brown   PetscErrorCode ierr;
5111552f7358SJed Brown 
5112552f7358SJed Brown   PetscFunctionBegin;
5113552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5114552f7358SJed Brown   for (f = 0, foff = 0; f < numFields; ++f) {
51154acb8e1eSToby Isaac     PetscInt        fdof, cfdof;
5116552f7358SJed Brown     const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
51174acb8e1eSToby Isaac     PetscInt        cind = 0, b;
51184acb8e1eSToby Isaac     const PetscInt  *perm = (perms && perms[f]) ? perms[f][permsoff] : NULL;
5119552f7358SJed Brown 
5120552f7358SJed Brown     ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
5121552f7358SJed Brown     ierr = PetscSectionGetFieldConstraintDof(section, point, f, &cfdof);CHKERRQ(ierr);
5122552f7358SJed Brown     if (!cfdof || setBC) {
51234acb8e1eSToby Isaac       if (perm) {for (b = 0; b < fdof; b++) {indices[foffs[f]+perm[b]] = off+foff+b;}}
51244acb8e1eSToby Isaac       else      {for (b = 0; b < fdof; b++) {indices[foffs[f]+     b ] = off+foff+b;}}
5125552f7358SJed Brown     } else {
5126552f7358SJed Brown       ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
51274acb8e1eSToby Isaac       if (perm) {
51284acb8e1eSToby Isaac         for (b = 0; b < fdof; b++) {
51294acb8e1eSToby Isaac           if ((cind < cfdof) && (b == fcdofs[cind])) {
51304acb8e1eSToby Isaac             indices[foffs[f]+perm[b]] = -(off+foff+b+1);
5131552f7358SJed Brown             ++cind;
5132552f7358SJed Brown           } else {
51334acb8e1eSToby Isaac             indices[foffs[f]+perm[b]] = off+foff+b-cind;
5134552f7358SJed Brown           }
5135552f7358SJed Brown         }
5136552f7358SJed Brown       } else {
51374acb8e1eSToby Isaac         for (b = 0; b < fdof; b++) {
51384acb8e1eSToby Isaac           if ((cind < cfdof) && (b == fcdofs[cind])) {
51394acb8e1eSToby Isaac             indices[foffs[f]+b] = -(off+foff+b+1);
5140552f7358SJed Brown             ++cind;
5141552f7358SJed Brown           } else {
51424acb8e1eSToby Isaac             indices[foffs[f]+b] = off+foff+b-cind;
5143552f7358SJed Brown           }
5144552f7358SJed Brown         }
5145552f7358SJed Brown       }
5146552f7358SJed Brown     }
5147a9096520SToby Isaac     foff     += (setBC ? fdof : (fdof - cfdof));
5148552f7358SJed Brown     foffs[f] += fdof;
5149552f7358SJed Brown   }
5150552f7358SJed Brown   PetscFunctionReturn(0);
5151552f7358SJed Brown }
5152552f7358SJed Brown 
51537e29afd2SMatthew G. Knepley /*
51547e29afd2SMatthew G. Knepley   This version believes the globalSection offsets for each field, rather than just the point offset
51557e29afd2SMatthew G. Knepley 
51567e29afd2SMatthew G. Knepley  . foffs - The offset into 'indices' for each field, since it is segregated by field
51577e29afd2SMatthew G. Knepley */
51587e29afd2SMatthew G. Knepley PetscErrorCode DMPlexGetIndicesPointFieldsSplit_Internal(PetscSection section, PetscSection globalSection, PetscInt point, PetscInt foffs[], PetscBool setBC, const PetscInt ***perms, PetscInt permsoff, PetscInt indices[])
51597e29afd2SMatthew G. Knepley {
51607e29afd2SMatthew G. Knepley   PetscInt       numFields, foff, f;
51617e29afd2SMatthew G. Knepley   PetscErrorCode ierr;
51627e29afd2SMatthew G. Knepley 
51637e29afd2SMatthew G. Knepley   PetscFunctionBegin;
51647e29afd2SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
51657e29afd2SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
51667e29afd2SMatthew G. Knepley     PetscInt        fdof, cfdof;
51677e29afd2SMatthew G. Knepley     const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */
51687e29afd2SMatthew G. Knepley     PetscInt        cind = 0, b;
51697e29afd2SMatthew G. Knepley     const PetscInt  *perm = (perms && perms[f]) ? perms[f][permsoff] : NULL;
51707e29afd2SMatthew G. Knepley 
51717e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr);
51727e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldConstraintDof(section, point, f, &cfdof);CHKERRQ(ierr);
51737e29afd2SMatthew G. Knepley     ierr = PetscSectionGetFieldOffset(globalSection, point, f, &foff);CHKERRQ(ierr);
51747e29afd2SMatthew G. Knepley     if (!cfdof || setBC) {
51757e29afd2SMatthew G. Knepley       if (perm) {for (b = 0; b < fdof; b++) {indices[foffs[f]+perm[b]] = foff+b;}}
51767e29afd2SMatthew G. Knepley       else      {for (b = 0; b < fdof; b++) {indices[foffs[f]+     b ] = foff+b;}}
51777e29afd2SMatthew G. Knepley     } else {
51787e29afd2SMatthew G. Knepley       ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr);
51797e29afd2SMatthew G. Knepley       if (perm) {
51807e29afd2SMatthew G. Knepley         for (b = 0; b < fdof; b++) {
51817e29afd2SMatthew G. Knepley           if ((cind < cfdof) && (b == fcdofs[cind])) {
51827e29afd2SMatthew G. Knepley             indices[foffs[f]+perm[b]] = -(foff+b+1);
51837e29afd2SMatthew G. Knepley             ++cind;
51847e29afd2SMatthew G. Knepley           } else {
51857e29afd2SMatthew G. Knepley             indices[foffs[f]+perm[b]] = foff+b-cind;
51867e29afd2SMatthew G. Knepley           }
51877e29afd2SMatthew G. Knepley         }
51887e29afd2SMatthew G. Knepley       } else {
51897e29afd2SMatthew G. Knepley         for (b = 0; b < fdof; b++) {
51907e29afd2SMatthew G. Knepley           if ((cind < cfdof) && (b == fcdofs[cind])) {
51917e29afd2SMatthew G. Knepley             indices[foffs[f]+b] = -(foff+b+1);
51927e29afd2SMatthew G. Knepley             ++cind;
51937e29afd2SMatthew G. Knepley           } else {
51947e29afd2SMatthew G. Knepley             indices[foffs[f]+b] = foff+b-cind;
51957e29afd2SMatthew G. Knepley           }
51967e29afd2SMatthew G. Knepley         }
51977e29afd2SMatthew G. Knepley       }
51987e29afd2SMatthew G. Knepley     }
51997e29afd2SMatthew G. Knepley     foffs[f] += fdof;
52007e29afd2SMatthew G. Knepley   }
52017e29afd2SMatthew G. Knepley   PetscFunctionReturn(0);
52027e29afd2SMatthew G. Knepley }
52037e29afd2SMatthew G. Knepley 
52044acb8e1eSToby 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)
5205d3d1a6afSToby Isaac {
5206d3d1a6afSToby Isaac   Mat             cMat;
5207d3d1a6afSToby Isaac   PetscSection    aSec, cSec;
5208d3d1a6afSToby Isaac   IS              aIS;
5209d3d1a6afSToby Isaac   PetscInt        aStart = -1, aEnd = -1;
5210d3d1a6afSToby Isaac   const PetscInt  *anchors;
5211e17c06e0SMatthew G. Knepley   PetscInt        numFields, f, p, q, newP = 0;
5212d3d1a6afSToby Isaac   PetscInt        newNumPoints = 0, newNumIndices = 0;
5213d3d1a6afSToby Isaac   PetscInt        *newPoints, *indices, *newIndices;
5214d3d1a6afSToby Isaac   PetscInt        maxAnchor, maxDof;
5215d3d1a6afSToby Isaac   PetscInt        newOffsets[32];
5216d3d1a6afSToby Isaac   PetscInt        *pointMatOffsets[32];
5217d3d1a6afSToby Isaac   PetscInt        *newPointOffsets[32];
5218d3d1a6afSToby Isaac   PetscScalar     *pointMat[32];
52196ecaa68aSToby Isaac   PetscScalar     *newValues=NULL,*tmpValues;
5220d3d1a6afSToby Isaac   PetscBool       anyConstrained = PETSC_FALSE;
5221d3d1a6afSToby Isaac   PetscErrorCode  ierr;
5222d3d1a6afSToby Isaac 
5223d3d1a6afSToby Isaac   PetscFunctionBegin;
5224d3d1a6afSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5225d3d1a6afSToby Isaac   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
5226d3d1a6afSToby Isaac   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
5227d3d1a6afSToby Isaac 
5228a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr);
5229d3d1a6afSToby Isaac   /* if there are point-to-point constraints */
5230d3d1a6afSToby Isaac   if (aSec) {
5231d3d1a6afSToby Isaac     ierr = PetscMemzero(newOffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
5232d3d1a6afSToby Isaac     ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr);
5233d3d1a6afSToby Isaac     ierr = PetscSectionGetChart(aSec,&aStart,&aEnd);CHKERRQ(ierr);
5234d3d1a6afSToby Isaac     /* figure out how many points are going to be in the new element matrix
5235d3d1a6afSToby Isaac      * (we allow double counting, because it's all just going to be summed
5236d3d1a6afSToby Isaac      * into the global matrix anyway) */
5237d3d1a6afSToby Isaac     for (p = 0; p < 2*numPoints; p+=2) {
5238d3d1a6afSToby Isaac       PetscInt b    = points[p];
52394b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
5240d3d1a6afSToby Isaac 
52414b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
52424b2f2278SToby Isaac       if (!bSecDof) {
52434b2f2278SToby Isaac         continue;
52444b2f2278SToby Isaac       }
5245d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
5246d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec,b,&bDof);CHKERRQ(ierr);
5247d3d1a6afSToby Isaac       }
5248d3d1a6afSToby Isaac       if (bDof) {
5249d3d1a6afSToby Isaac         /* this point is constrained */
5250d3d1a6afSToby Isaac         /* it is going to be replaced by its anchors */
5251d3d1a6afSToby Isaac         PetscInt bOff, q;
5252d3d1a6afSToby Isaac 
5253d3d1a6afSToby Isaac         anyConstrained = PETSC_TRUE;
5254d3d1a6afSToby Isaac         newNumPoints  += bDof;
5255d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec,b,&bOff);CHKERRQ(ierr);
5256d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
5257d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q];
5258d3d1a6afSToby Isaac           PetscInt aDof;
5259d3d1a6afSToby Isaac 
5260d3d1a6afSToby Isaac           ierr           = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
5261d3d1a6afSToby Isaac           newNumIndices += aDof;
5262d3d1a6afSToby Isaac           for (f = 0; f < numFields; ++f) {
5263d3d1a6afSToby Isaac             PetscInt fDof;
5264d3d1a6afSToby Isaac 
5265d3d1a6afSToby Isaac             ierr             = PetscSectionGetFieldDof(section, a, f, &fDof);CHKERRQ(ierr);
5266d3d1a6afSToby Isaac             newOffsets[f+1] += fDof;
5267d3d1a6afSToby Isaac           }
5268d3d1a6afSToby Isaac         }
5269d3d1a6afSToby Isaac       }
5270d3d1a6afSToby Isaac       else {
5271d3d1a6afSToby Isaac         /* this point is not constrained */
5272d3d1a6afSToby Isaac         newNumPoints++;
52734b2f2278SToby Isaac         newNumIndices += bSecDof;
5274d3d1a6afSToby Isaac         for (f = 0; f < numFields; ++f) {
5275d3d1a6afSToby Isaac           PetscInt fDof;
5276d3d1a6afSToby Isaac 
5277d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
5278d3d1a6afSToby Isaac           newOffsets[f+1] += fDof;
5279d3d1a6afSToby Isaac         }
5280d3d1a6afSToby Isaac       }
5281d3d1a6afSToby Isaac     }
5282d3d1a6afSToby Isaac   }
5283d3d1a6afSToby Isaac   if (!anyConstrained) {
528472b80496SMatthew G. Knepley     if (outNumPoints)  *outNumPoints  = 0;
528572b80496SMatthew G. Knepley     if (outNumIndices) *outNumIndices = 0;
528672b80496SMatthew G. Knepley     if (outPoints)     *outPoints     = NULL;
528772b80496SMatthew G. Knepley     if (outValues)     *outValues     = NULL;
528872b80496SMatthew G. Knepley     if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);}
5289d3d1a6afSToby Isaac     PetscFunctionReturn(0);
5290d3d1a6afSToby Isaac   }
5291d3d1a6afSToby Isaac 
52926ecaa68aSToby Isaac   if (outNumPoints)  *outNumPoints  = newNumPoints;
52936ecaa68aSToby Isaac   if (outNumIndices) *outNumIndices = newNumIndices;
52946ecaa68aSToby Isaac 
5295f13f9184SToby Isaac   for (f = 0; f < numFields; ++f) newOffsets[f+1] += newOffsets[f];
5296d3d1a6afSToby Isaac 
52976ecaa68aSToby Isaac   if (!outPoints && !outValues) {
52986ecaa68aSToby Isaac     if (offsets) {
52996ecaa68aSToby Isaac       for (f = 0; f <= numFields; f++) {
53006ecaa68aSToby Isaac         offsets[f] = newOffsets[f];
53016ecaa68aSToby Isaac       }
53026ecaa68aSToby Isaac     }
53036ecaa68aSToby Isaac     if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);}
53046ecaa68aSToby Isaac     PetscFunctionReturn(0);
53056ecaa68aSToby Isaac   }
53066ecaa68aSToby Isaac 
5307f347f43bSBarry Smith   if (numFields && newOffsets[numFields] != newNumIndices) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", newOffsets[numFields], newNumIndices);
5308d3d1a6afSToby Isaac 
5309f7c74593SToby Isaac   ierr = DMGetDefaultConstraints(dm, &cSec, &cMat);CHKERRQ(ierr);
5310d3d1a6afSToby Isaac 
5311d3d1a6afSToby Isaac   /* workspaces */
5312d3d1a6afSToby Isaac   if (numFields) {
5313d3d1a6afSToby Isaac     for (f = 0; f < numFields; f++) {
531469291d52SBarry Smith       ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr);
531569291d52SBarry Smith       ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr);
5316d3d1a6afSToby Isaac     }
5317d3d1a6afSToby Isaac   }
5318d3d1a6afSToby Isaac   else {
531969291d52SBarry Smith     ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr);
532069291d52SBarry Smith     ierr = DMGetWorkArray(dm,numPoints,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr);
5321d3d1a6afSToby Isaac   }
5322d3d1a6afSToby Isaac 
5323d3d1a6afSToby Isaac   /* get workspaces for the point-to-point matrices */
5324d3d1a6afSToby Isaac   if (numFields) {
53254b2f2278SToby Isaac     PetscInt totalOffset, totalMatOffset;
53264b2f2278SToby Isaac 
5327d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
5328d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
53294b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
5330d3d1a6afSToby Isaac 
53314b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
53324b2f2278SToby Isaac       if (!bSecDof) {
53334b2f2278SToby Isaac         for (f = 0; f < numFields; f++) {
53344b2f2278SToby Isaac           newPointOffsets[f][p + 1] = 0;
53354b2f2278SToby Isaac           pointMatOffsets[f][p + 1] = 0;
53364b2f2278SToby Isaac         }
53374b2f2278SToby Isaac         continue;
53384b2f2278SToby Isaac       }
5339d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
5340d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
5341d3d1a6afSToby Isaac       }
5342d3d1a6afSToby Isaac       if (bDof) {
5343d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
5344d3d1a6afSToby Isaac           PetscInt fDof, q, bOff, allFDof = 0;
5345d3d1a6afSToby Isaac 
5346d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
5347d3d1a6afSToby Isaac           ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
5348d3d1a6afSToby Isaac           for (q = 0; q < bDof; q++) {
5349d3d1a6afSToby Isaac             PetscInt a = anchors[bOff + q];
5350d3d1a6afSToby Isaac             PetscInt aFDof;
5351d3d1a6afSToby Isaac 
5352d3d1a6afSToby Isaac             ierr     = PetscSectionGetFieldDof(section, a, f, &aFDof);CHKERRQ(ierr);
5353d3d1a6afSToby Isaac             allFDof += aFDof;
5354d3d1a6afSToby Isaac           }
5355d3d1a6afSToby Isaac           newPointOffsets[f][p+1] = allFDof;
5356d3d1a6afSToby Isaac           pointMatOffsets[f][p+1] = fDof * allFDof;
5357d3d1a6afSToby Isaac         }
5358d3d1a6afSToby Isaac       }
5359d3d1a6afSToby Isaac       else {
5360d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
5361d3d1a6afSToby Isaac           PetscInt fDof;
5362d3d1a6afSToby Isaac 
5363d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr);
5364d3d1a6afSToby Isaac           newPointOffsets[f][p+1] = fDof;
5365d3d1a6afSToby Isaac           pointMatOffsets[f][p+1] = 0;
5366d3d1a6afSToby Isaac         }
5367d3d1a6afSToby Isaac       }
5368d3d1a6afSToby Isaac     }
53694b2f2278SToby Isaac     for (f = 0, totalOffset = 0, totalMatOffset = 0; f < numFields; f++) {
53704b2f2278SToby Isaac       newPointOffsets[f][0] = totalOffset;
53714b2f2278SToby Isaac       pointMatOffsets[f][0] = totalMatOffset;
5372d3d1a6afSToby Isaac       for (p = 0; p < numPoints; p++) {
5373d3d1a6afSToby Isaac         newPointOffsets[f][p+1] += newPointOffsets[f][p];
5374d3d1a6afSToby Isaac         pointMatOffsets[f][p+1] += pointMatOffsets[f][p];
5375d3d1a6afSToby Isaac       }
537619f70fd5SToby Isaac       totalOffset    = newPointOffsets[f][numPoints];
537719f70fd5SToby Isaac       totalMatOffset = pointMatOffsets[f][numPoints];
537869291d52SBarry Smith       ierr = DMGetWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr);
5379d3d1a6afSToby Isaac     }
5380d3d1a6afSToby Isaac   }
5381d3d1a6afSToby Isaac   else {
5382d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
5383d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
53844b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
5385d3d1a6afSToby Isaac 
53864b2f2278SToby Isaac       ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr);
53874b2f2278SToby Isaac       if (!bSecDof) {
53884b2f2278SToby Isaac         newPointOffsets[0][p + 1] = 0;
53894b2f2278SToby Isaac         pointMatOffsets[0][p + 1] = 0;
53904b2f2278SToby Isaac         continue;
53914b2f2278SToby Isaac       }
5392d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
5393d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
5394d3d1a6afSToby Isaac       }
5395d3d1a6afSToby Isaac       if (bDof) {
53964b2f2278SToby Isaac         PetscInt bOff, q, allDof = 0;
5397d3d1a6afSToby Isaac 
5398d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
5399d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
5400d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aDof;
5401d3d1a6afSToby Isaac 
5402d3d1a6afSToby Isaac           ierr    = PetscSectionGetDof(section, a, &aDof);CHKERRQ(ierr);
5403d3d1a6afSToby Isaac           allDof += aDof;
5404d3d1a6afSToby Isaac         }
5405d3d1a6afSToby Isaac         newPointOffsets[0][p+1] = allDof;
54064b2f2278SToby Isaac         pointMatOffsets[0][p+1] = bSecDof * allDof;
5407d3d1a6afSToby Isaac       }
5408d3d1a6afSToby Isaac       else {
54094b2f2278SToby Isaac         newPointOffsets[0][p+1] = bSecDof;
5410d3d1a6afSToby Isaac         pointMatOffsets[0][p+1] = 0;
5411d3d1a6afSToby Isaac       }
5412d3d1a6afSToby Isaac     }
5413d3d1a6afSToby Isaac     newPointOffsets[0][0] = 0;
5414d3d1a6afSToby Isaac     pointMatOffsets[0][0] = 0;
5415d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
5416d3d1a6afSToby Isaac       newPointOffsets[0][p+1] += newPointOffsets[0][p];
5417d3d1a6afSToby Isaac       pointMatOffsets[0][p+1] += pointMatOffsets[0][p];
5418d3d1a6afSToby Isaac     }
541969291d52SBarry Smith     ierr = DMGetWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr);
5420d3d1a6afSToby Isaac   }
5421d3d1a6afSToby Isaac 
54226ecaa68aSToby Isaac   /* output arrays */
542369291d52SBarry Smith   ierr = DMGetWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr);
54246ecaa68aSToby Isaac 
5425d3d1a6afSToby Isaac   /* get the point-to-point matrices; construct newPoints */
5426d3d1a6afSToby Isaac   ierr = PetscSectionGetMaxDof(aSec, &maxAnchor);CHKERRQ(ierr);
5427d3d1a6afSToby Isaac   ierr = PetscSectionGetMaxDof(section, &maxDof);CHKERRQ(ierr);
542869291d52SBarry Smith   ierr = DMGetWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr);
542969291d52SBarry Smith   ierr = DMGetWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr);
5430d3d1a6afSToby Isaac   if (numFields) {
5431d3d1a6afSToby Isaac     for (p = 0, newP = 0; p < numPoints; p++) {
5432d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
5433d3d1a6afSToby Isaac       PetscInt o    = points[2*p+1];
54344b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
5435d3d1a6afSToby Isaac 
54364b2f2278SToby Isaac       ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr);
54374b2f2278SToby Isaac       if (!bSecDof) {
54384b2f2278SToby Isaac         continue;
54394b2f2278SToby Isaac       }
5440d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
5441d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
5442d3d1a6afSToby Isaac       }
5443d3d1a6afSToby Isaac       if (bDof) {
5444d3d1a6afSToby Isaac         PetscInt fStart[32], fEnd[32], fAnchorStart[32], fAnchorEnd[32], bOff, q;
5445d3d1a6afSToby Isaac 
5446d3d1a6afSToby Isaac         fStart[0] = 0;
5447d3d1a6afSToby Isaac         fEnd[0]   = 0;
5448d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
5449d3d1a6afSToby Isaac           PetscInt fDof;
5450d3d1a6afSToby Isaac 
5451d3d1a6afSToby Isaac           ierr        = PetscSectionGetFieldDof(cSec, b, f, &fDof);CHKERRQ(ierr);
5452d3d1a6afSToby Isaac           fStart[f+1] = fStart[f] + fDof;
5453d3d1a6afSToby Isaac           fEnd[f+1]   = fStart[f+1];
5454d3d1a6afSToby Isaac         }
5455d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr);
54564acb8e1eSToby Isaac         ierr = DMPlexGetIndicesPointFields_Internal(cSec, b, bOff, fEnd, PETSC_TRUE, perms, p, indices);CHKERRQ(ierr);
5457d3d1a6afSToby Isaac 
5458d3d1a6afSToby Isaac         fAnchorStart[0] = 0;
5459d3d1a6afSToby Isaac         fAnchorEnd[0]   = 0;
5460d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
5461d3d1a6afSToby Isaac           PetscInt fDof = newPointOffsets[f][p + 1] - newPointOffsets[f][p];
5462d3d1a6afSToby Isaac 
5463d3d1a6afSToby Isaac           fAnchorStart[f+1] = fAnchorStart[f] + fDof;
5464d3d1a6afSToby Isaac           fAnchorEnd[f+1]   = fAnchorStart[f + 1];
5465d3d1a6afSToby Isaac         }
5466d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr);
5467d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
5468d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aOff;
5469d3d1a6afSToby Isaac 
5470d3d1a6afSToby 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 */
5471d3d1a6afSToby Isaac           newPoints[2*(newP + q)]     = a;
5472d3d1a6afSToby Isaac           newPoints[2*(newP + q) + 1] = 0;
5473302440fdSBarry Smith           ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr);
54744acb8e1eSToby Isaac           ierr = DMPlexGetIndicesPointFields_Internal(section, a, aOff, fAnchorEnd, PETSC_TRUE, NULL, -1, newIndices);CHKERRQ(ierr);
5475d3d1a6afSToby Isaac         }
5476d3d1a6afSToby Isaac         newP += bDof;
5477d3d1a6afSToby Isaac 
54786ecaa68aSToby Isaac         if (outValues) {
5479d3d1a6afSToby Isaac           /* get the point-to-point submatrix */
5480d3d1a6afSToby Isaac           for (f = 0; f < numFields; f++) {
5481d3d1a6afSToby 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);
5482d3d1a6afSToby Isaac           }
5483d3d1a6afSToby Isaac         }
54846ecaa68aSToby Isaac       }
5485d3d1a6afSToby Isaac       else {
5486d3d1a6afSToby Isaac         newPoints[2 * newP]     = b;
5487d3d1a6afSToby Isaac         newPoints[2 * newP + 1] = o;
5488d3d1a6afSToby Isaac         newP++;
5489d3d1a6afSToby Isaac       }
5490d3d1a6afSToby Isaac     }
5491d3d1a6afSToby Isaac   } else {
5492d3d1a6afSToby Isaac     for (p = 0; p < numPoints; p++) {
5493d3d1a6afSToby Isaac       PetscInt b    = points[2*p];
5494d3d1a6afSToby Isaac       PetscInt o    = points[2*p+1];
54954b2f2278SToby Isaac       PetscInt bDof = 0, bSecDof;
5496d3d1a6afSToby Isaac 
54974b2f2278SToby Isaac       ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr);
54984b2f2278SToby Isaac       if (!bSecDof) {
54994b2f2278SToby Isaac         continue;
55004b2f2278SToby Isaac       }
5501d3d1a6afSToby Isaac       if (b >= aStart && b < aEnd) {
5502d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr);
5503d3d1a6afSToby Isaac       }
5504d3d1a6afSToby Isaac       if (bDof) {
5505d3d1a6afSToby Isaac         PetscInt bEnd = 0, bAnchorEnd = 0, bOff;
5506d3d1a6afSToby Isaac 
5507d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr);
55084acb8e1eSToby Isaac         ierr = DMPlexGetIndicesPoint_Internal(cSec, b, bOff, &bEnd, PETSC_TRUE, (perms && perms[0]) ? perms[0][p] : NULL, indices);CHKERRQ(ierr);
5509d3d1a6afSToby Isaac 
5510d3d1a6afSToby Isaac         ierr = PetscSectionGetOffset (aSec, b, &bOff);CHKERRQ(ierr);
5511d3d1a6afSToby Isaac         for (q = 0; q < bDof; q++) {
5512d3d1a6afSToby Isaac           PetscInt a = anchors[bOff + q], aOff;
5513d3d1a6afSToby Isaac 
5514d3d1a6afSToby 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 */
5515d3d1a6afSToby Isaac 
5516d3d1a6afSToby Isaac           newPoints[2*(newP + q)]     = a;
5517d3d1a6afSToby Isaac           newPoints[2*(newP + q) + 1] = 0;
5518302440fdSBarry Smith           ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr);
55194acb8e1eSToby Isaac           ierr = DMPlexGetIndicesPoint_Internal(section, a, aOff, &bAnchorEnd, PETSC_TRUE, NULL, newIndices);CHKERRQ(ierr);
5520d3d1a6afSToby Isaac         }
5521d3d1a6afSToby Isaac         newP += bDof;
5522d3d1a6afSToby Isaac 
5523d3d1a6afSToby Isaac         /* get the point-to-point submatrix */
55246ecaa68aSToby Isaac         if (outValues) {
5525d3d1a6afSToby Isaac           ierr = MatGetValues(cMat,bEnd,indices,bAnchorEnd,newIndices,pointMat[0] + pointMatOffsets[0][p]);CHKERRQ(ierr);
5526d3d1a6afSToby Isaac         }
55276ecaa68aSToby Isaac       }
5528d3d1a6afSToby Isaac       else {
5529d3d1a6afSToby Isaac         newPoints[2 * newP]     = b;
5530d3d1a6afSToby Isaac         newPoints[2 * newP + 1] = o;
5531d3d1a6afSToby Isaac         newP++;
5532d3d1a6afSToby Isaac       }
5533d3d1a6afSToby Isaac     }
5534d3d1a6afSToby Isaac   }
5535d3d1a6afSToby Isaac 
55366ecaa68aSToby Isaac   if (outValues) {
553769291d52SBarry Smith     ierr = DMGetWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr);
5538d3d1a6afSToby Isaac     ierr = PetscMemzero(tmpValues,newNumIndices*numIndices*sizeof(*tmpValues));CHKERRQ(ierr);
5539d3d1a6afSToby Isaac     /* multiply constraints on the right */
5540d3d1a6afSToby Isaac     if (numFields) {
5541d3d1a6afSToby Isaac       for (f = 0; f < numFields; f++) {
5542d3d1a6afSToby Isaac         PetscInt oldOff = offsets[f];
5543d3d1a6afSToby Isaac 
5544d3d1a6afSToby Isaac         for (p = 0; p < numPoints; p++) {
5545d3d1a6afSToby Isaac           PetscInt cStart = newPointOffsets[f][p];
5546d3d1a6afSToby Isaac           PetscInt b      = points[2 * p];
5547d3d1a6afSToby Isaac           PetscInt c, r, k;
5548d3d1a6afSToby Isaac           PetscInt dof;
5549d3d1a6afSToby Isaac 
5550d3d1a6afSToby Isaac           ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr);
55514b2f2278SToby Isaac           if (!dof) {
55524b2f2278SToby Isaac             continue;
55534b2f2278SToby Isaac           }
5554d3d1a6afSToby Isaac           if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) {
5555d3d1a6afSToby Isaac             PetscInt nCols         = newPointOffsets[f][p+1]-cStart;
5556d3d1a6afSToby Isaac             const PetscScalar *mat = pointMat[f] + pointMatOffsets[f][p];
5557d3d1a6afSToby Isaac 
5558d3d1a6afSToby Isaac             for (r = 0; r < numIndices; r++) {
5559d3d1a6afSToby Isaac               for (c = 0; c < nCols; c++) {
5560d3d1a6afSToby Isaac                 for (k = 0; k < dof; k++) {
55614acb8e1eSToby Isaac                   tmpValues[r * newNumIndices + cStart + c] += values[r * numIndices + oldOff + k] * mat[k * nCols + c];
5562d3d1a6afSToby Isaac                 }
5563d3d1a6afSToby Isaac               }
5564d3d1a6afSToby Isaac             }
5565d3d1a6afSToby Isaac           }
5566d3d1a6afSToby Isaac           else {
5567d3d1a6afSToby Isaac             /* copy this column as is */
5568d3d1a6afSToby Isaac             for (r = 0; r < numIndices; r++) {
5569d3d1a6afSToby Isaac               for (c = 0; c < dof; c++) {
5570d3d1a6afSToby Isaac                 tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c];
5571d3d1a6afSToby Isaac               }
5572d3d1a6afSToby Isaac             }
5573d3d1a6afSToby Isaac           }
5574d3d1a6afSToby Isaac           oldOff += dof;
5575d3d1a6afSToby Isaac         }
5576d3d1a6afSToby Isaac       }
5577d3d1a6afSToby Isaac     }
5578d3d1a6afSToby Isaac     else {
5579d3d1a6afSToby Isaac       PetscInt oldOff = 0;
5580d3d1a6afSToby Isaac       for (p = 0; p < numPoints; p++) {
5581d3d1a6afSToby Isaac         PetscInt cStart = newPointOffsets[0][p];
5582d3d1a6afSToby Isaac         PetscInt b      = points[2 * p];
5583d3d1a6afSToby Isaac         PetscInt c, r, k;
5584d3d1a6afSToby Isaac         PetscInt dof;
5585d3d1a6afSToby Isaac 
5586d3d1a6afSToby Isaac         ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr);
55874b2f2278SToby Isaac         if (!dof) {
55884b2f2278SToby Isaac           continue;
55894b2f2278SToby Isaac         }
5590d3d1a6afSToby Isaac         if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) {
5591d3d1a6afSToby Isaac           PetscInt nCols         = newPointOffsets[0][p+1]-cStart;
5592d3d1a6afSToby Isaac           const PetscScalar *mat = pointMat[0] + pointMatOffsets[0][p];
5593d3d1a6afSToby Isaac 
5594d3d1a6afSToby Isaac           for (r = 0; r < numIndices; r++) {
5595d3d1a6afSToby Isaac             for (c = 0; c < nCols; c++) {
5596d3d1a6afSToby Isaac               for (k = 0; k < dof; k++) {
5597d3d1a6afSToby Isaac                 tmpValues[r * newNumIndices + cStart + c] += mat[k * nCols + c] * values[r * numIndices + oldOff + k];
5598d3d1a6afSToby Isaac               }
5599d3d1a6afSToby Isaac             }
5600d3d1a6afSToby Isaac           }
5601d3d1a6afSToby Isaac         }
5602d3d1a6afSToby Isaac         else {
5603d3d1a6afSToby Isaac           /* copy this column as is */
5604d3d1a6afSToby Isaac           for (r = 0; r < numIndices; r++) {
5605d3d1a6afSToby Isaac             for (c = 0; c < dof; c++) {
5606d3d1a6afSToby Isaac               tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c];
5607d3d1a6afSToby Isaac             }
5608d3d1a6afSToby Isaac           }
5609d3d1a6afSToby Isaac         }
5610d3d1a6afSToby Isaac         oldOff += dof;
5611d3d1a6afSToby Isaac       }
5612d3d1a6afSToby Isaac     }
5613d3d1a6afSToby Isaac 
56146ecaa68aSToby Isaac     if (multiplyLeft) {
561569291d52SBarry Smith       ierr = DMGetWorkArray(dm,newNumIndices*newNumIndices,MPIU_SCALAR,&newValues);CHKERRQ(ierr);
5616d3d1a6afSToby Isaac       ierr = PetscMemzero(newValues,newNumIndices*newNumIndices*sizeof(*newValues));CHKERRQ(ierr);
5617d3d1a6afSToby Isaac       /* multiply constraints transpose on the left */
5618d3d1a6afSToby Isaac       if (numFields) {
5619d3d1a6afSToby Isaac         for (f = 0; f < numFields; f++) {
5620d3d1a6afSToby Isaac           PetscInt oldOff = offsets[f];
5621d3d1a6afSToby Isaac 
5622d3d1a6afSToby Isaac           for (p = 0; p < numPoints; p++) {
5623d3d1a6afSToby Isaac             PetscInt rStart = newPointOffsets[f][p];
5624d3d1a6afSToby Isaac             PetscInt b      = points[2 * p];
5625d3d1a6afSToby Isaac             PetscInt c, r, k;
5626d3d1a6afSToby Isaac             PetscInt dof;
5627d3d1a6afSToby Isaac 
5628d3d1a6afSToby Isaac             ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr);
5629d3d1a6afSToby Isaac             if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) {
5630d3d1a6afSToby Isaac               PetscInt nRows                        = newPointOffsets[f][p+1]-rStart;
5631d3d1a6afSToby Isaac               const PetscScalar *PETSC_RESTRICT mat = pointMat[f] + pointMatOffsets[f][p];
5632d3d1a6afSToby Isaac 
5633d3d1a6afSToby Isaac               for (r = 0; r < nRows; r++) {
5634d3d1a6afSToby Isaac                 for (c = 0; c < newNumIndices; c++) {
5635d3d1a6afSToby Isaac                   for (k = 0; k < dof; k++) {
5636d3d1a6afSToby Isaac                     newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c];
5637d3d1a6afSToby Isaac                   }
5638d3d1a6afSToby Isaac                 }
5639d3d1a6afSToby Isaac               }
5640d3d1a6afSToby Isaac             }
5641d3d1a6afSToby Isaac             else {
5642d3d1a6afSToby Isaac               /* copy this row as is */
5643d3d1a6afSToby Isaac               for (r = 0; r < dof; r++) {
5644d3d1a6afSToby Isaac                 for (c = 0; c < newNumIndices; c++) {
5645d3d1a6afSToby Isaac                   newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c];
5646d3d1a6afSToby Isaac                 }
5647d3d1a6afSToby Isaac               }
5648d3d1a6afSToby Isaac             }
5649d3d1a6afSToby Isaac             oldOff += dof;
5650d3d1a6afSToby Isaac           }
5651d3d1a6afSToby Isaac         }
5652d3d1a6afSToby Isaac       }
5653d3d1a6afSToby Isaac       else {
5654d3d1a6afSToby Isaac         PetscInt oldOff = 0;
5655d3d1a6afSToby Isaac 
5656d3d1a6afSToby Isaac         for (p = 0; p < numPoints; p++) {
5657d3d1a6afSToby Isaac           PetscInt rStart = newPointOffsets[0][p];
5658d3d1a6afSToby Isaac           PetscInt b      = points[2 * p];
5659d3d1a6afSToby Isaac           PetscInt c, r, k;
5660d3d1a6afSToby Isaac           PetscInt dof;
5661d3d1a6afSToby Isaac 
5662d3d1a6afSToby Isaac           ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr);
5663d3d1a6afSToby Isaac           if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) {
5664d3d1a6afSToby Isaac             PetscInt nRows                        = newPointOffsets[0][p+1]-rStart;
5665d3d1a6afSToby Isaac             const PetscScalar *PETSC_RESTRICT mat = pointMat[0] + pointMatOffsets[0][p];
5666d3d1a6afSToby Isaac 
5667d3d1a6afSToby Isaac             for (r = 0; r < nRows; r++) {
5668d3d1a6afSToby Isaac               for (c = 0; c < newNumIndices; c++) {
5669d3d1a6afSToby Isaac                 for (k = 0; k < dof; k++) {
5670d3d1a6afSToby Isaac                   newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c];
5671d3d1a6afSToby Isaac                 }
5672d3d1a6afSToby Isaac               }
5673d3d1a6afSToby Isaac             }
5674d3d1a6afSToby Isaac           }
5675d3d1a6afSToby Isaac           else {
5676d3d1a6afSToby Isaac             /* copy this row as is */
56779fc93327SToby Isaac             for (r = 0; r < dof; r++) {
5678d3d1a6afSToby Isaac               for (c = 0; c < newNumIndices; c++) {
5679d3d1a6afSToby Isaac                 newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c];
5680d3d1a6afSToby Isaac               }
5681d3d1a6afSToby Isaac             }
5682d3d1a6afSToby Isaac           }
5683d3d1a6afSToby Isaac           oldOff += dof;
5684d3d1a6afSToby Isaac         }
5685d3d1a6afSToby Isaac       }
5686d3d1a6afSToby Isaac 
568769291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr);
56886ecaa68aSToby Isaac     }
56896ecaa68aSToby Isaac     else {
56906ecaa68aSToby Isaac       newValues = tmpValues;
56916ecaa68aSToby Isaac     }
56926ecaa68aSToby Isaac   }
56936ecaa68aSToby Isaac 
5694d3d1a6afSToby Isaac   /* clean up */
569569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr);
569669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr);
56976ecaa68aSToby Isaac 
5698d3d1a6afSToby Isaac   if (numFields) {
5699d3d1a6afSToby Isaac     for (f = 0; f < numFields; f++) {
570069291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr);
570169291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr);
570269291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr);
5703d3d1a6afSToby Isaac     }
5704d3d1a6afSToby Isaac   }
5705d3d1a6afSToby Isaac   else {
570669291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr);
570769291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr);
570869291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr);
5709d3d1a6afSToby Isaac   }
5710d3d1a6afSToby Isaac   ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);
5711d3d1a6afSToby Isaac 
5712d3d1a6afSToby Isaac   /* output */
57136ecaa68aSToby Isaac   if (outPoints) {
5714d3d1a6afSToby Isaac     *outPoints = newPoints;
57156ecaa68aSToby Isaac   }
57166ecaa68aSToby Isaac   else {
571769291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr);
57186ecaa68aSToby Isaac   }
571931620726SToby Isaac   if (outValues) {
5720d3d1a6afSToby Isaac     *outValues = newValues;
57216ecaa68aSToby Isaac   }
57226ecaa68aSToby Isaac   for (f = 0; f <= numFields; f++) {
5723d3d1a6afSToby Isaac     offsets[f] = newOffsets[f];
5724d3d1a6afSToby Isaac   }
5725d3d1a6afSToby Isaac   PetscFunctionReturn(0);
5726d3d1a6afSToby Isaac }
5727d3d1a6afSToby Isaac 
57287cd05799SMatthew G. Knepley /*@C
5729a87adde4SMatthew G. Knepley   DMPlexGetClosureIndices - Get the global indices in a vector v for all points in the closure of the given point
57307cd05799SMatthew G. Knepley 
57317cd05799SMatthew G. Knepley   Not collective
57327cd05799SMatthew G. Knepley 
57337cd05799SMatthew G. Knepley   Input Parameters:
57347cd05799SMatthew G. Knepley + dm - The DM
57357cd05799SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section
57367cd05799SMatthew G. Knepley . globalSection - The section describing the parallel layout in v, or NULL to use the default section
57377cd05799SMatthew G. Knepley - point - The mesh point
57387cd05799SMatthew G. Knepley 
57397cd05799SMatthew G. Knepley   Output parameters:
57407cd05799SMatthew G. Knepley + numIndices - The number of indices
57417cd05799SMatthew G. Knepley . indices - The indices
57427cd05799SMatthew G. Knepley - outOffsets - Field offset if not NULL
57437cd05799SMatthew G. Knepley 
57447cd05799SMatthew G. Knepley   Note: Must call DMPlexRestoreClosureIndices() to free allocated memory
57457cd05799SMatthew G. Knepley 
57467cd05799SMatthew G. Knepley   Level: advanced
57477cd05799SMatthew G. Knepley 
57487cd05799SMatthew G. Knepley .seealso DMPlexRestoreClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure()
57497cd05799SMatthew G. Knepley @*/
57506ecaa68aSToby Isaac PetscErrorCode DMPlexGetClosureIndices(DM dm, PetscSection section, PetscSection globalSection, PetscInt point, PetscInt *numIndices, PetscInt **indices, PetscInt *outOffsets)
57517773e69fSMatthew G. Knepley {
57527773e69fSMatthew G. Knepley   PetscSection    clSection;
57537773e69fSMatthew G. Knepley   IS              clPoints;
57547773e69fSMatthew G. Knepley   const PetscInt *clp;
57554acb8e1eSToby Isaac   const PetscInt  **perms[32] = {NULL};
57567773e69fSMatthew G. Knepley   PetscInt       *points = NULL, *pointsNew;
57577773e69fSMatthew G. Knepley   PetscInt        numPoints, numPointsNew;
57587773e69fSMatthew G. Knepley   PetscInt        offsets[32];
57597773e69fSMatthew G. Knepley   PetscInt        Nf, Nind, NindNew, off, globalOff, f, p;
57607773e69fSMatthew G. Knepley   PetscErrorCode  ierr;
57617773e69fSMatthew G. Knepley 
57627773e69fSMatthew G. Knepley   PetscFunctionBegin;
57637773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
57647773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
57657773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(globalSection, PETSC_SECTION_CLASSID, 3);
57667773e69fSMatthew G. Knepley   if (numIndices) PetscValidPointer(numIndices, 4);
57677773e69fSMatthew G. Knepley   PetscValidPointer(indices, 5);
57687773e69fSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
57697773e69fSMatthew G. Knepley   if (Nf > 31) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", Nf);
57707773e69fSMatthew G. Knepley   ierr = PetscMemzero(offsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
57717773e69fSMatthew G. Knepley   /* Get points in closure */
5772923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
57737773e69fSMatthew G. Knepley   /* Get number of indices and indices per field */
57747773e69fSMatthew G. Knepley   for (p = 0, Nind = 0; p < numPoints*2; p += 2) {
57757773e69fSMatthew G. Knepley     PetscInt dof, fdof;
57767773e69fSMatthew G. Knepley 
57777773e69fSMatthew G. Knepley     ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
57787773e69fSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
57797773e69fSMatthew G. Knepley       ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr);
57807773e69fSMatthew G. Knepley       offsets[f+1] += fdof;
57817773e69fSMatthew G. Knepley     }
57827773e69fSMatthew G. Knepley     Nind += dof;
57837773e69fSMatthew G. Knepley   }
57847773e69fSMatthew G. Knepley   for (f = 1; f < Nf; ++f) offsets[f+1] += offsets[f];
57858ccfff9cSToby Isaac   if (Nf && offsets[Nf] != Nind) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", offsets[Nf], Nind);
57864acb8e1eSToby Isaac   if (!Nf) offsets[1] = Nind;
57874acb8e1eSToby Isaac   /* Get dual space symmetries */
57884acb8e1eSToby Isaac   for (f = 0; f < PetscMax(1,Nf); f++) {
57894acb8e1eSToby Isaac     if (Nf) {ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
57904acb8e1eSToby Isaac     else    {ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
57914acb8e1eSToby Isaac   }
57927773e69fSMatthew G. Knepley   /* Correct for hanging node constraints */
57937773e69fSMatthew G. Knepley   {
57944acb8e1eSToby Isaac     ierr = DMPlexAnchorsModifyMat(dm, section, numPoints, Nind, points, perms, NULL, &numPointsNew, &NindNew, &pointsNew, NULL, offsets, PETSC_TRUE);CHKERRQ(ierr);
57957773e69fSMatthew G. Knepley     if (numPointsNew) {
57964acb8e1eSToby Isaac       for (f = 0; f < PetscMax(1,Nf); f++) {
57974acb8e1eSToby Isaac         if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
57984acb8e1eSToby Isaac         else    {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
57994acb8e1eSToby Isaac       }
58004acb8e1eSToby Isaac       for (f = 0; f < PetscMax(1,Nf); f++) {
58014acb8e1eSToby Isaac         if (Nf) {ierr = PetscSectionGetFieldPointSyms(section,f,numPointsNew,pointsNew,&perms[f],NULL);CHKERRQ(ierr);}
58024acb8e1eSToby Isaac         else    {ierr = PetscSectionGetPointSyms(section,numPointsNew,pointsNew,&perms[f],NULL);CHKERRQ(ierr);}
58034acb8e1eSToby Isaac       }
5804923c78e0SToby Isaac       ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
58057773e69fSMatthew G. Knepley       numPoints = numPointsNew;
58067773e69fSMatthew G. Knepley       Nind      = NindNew;
58077773e69fSMatthew G. Knepley       points    = pointsNew;
58087773e69fSMatthew G. Knepley     }
58097773e69fSMatthew G. Knepley   }
58107773e69fSMatthew G. Knepley   /* Calculate indices */
581169291d52SBarry Smith   ierr = DMGetWorkArray(dm, Nind, MPIU_INT, indices);CHKERRQ(ierr);
58127773e69fSMatthew G. Knepley   if (Nf) {
58136ecaa68aSToby Isaac     if (outOffsets) {
58146ecaa68aSToby Isaac       PetscInt f;
58156ecaa68aSToby Isaac 
581646bdb399SToby Isaac       for (f = 0; f <= Nf; f++) {
58176ecaa68aSToby Isaac         outOffsets[f] = offsets[f];
58186ecaa68aSToby Isaac       }
58196ecaa68aSToby Isaac     }
58204acb8e1eSToby Isaac     for (p = 0; p < numPoints; p++) {
58214acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr);
58224acb8e1eSToby Isaac       DMPlexGetIndicesPointFields_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, offsets, PETSC_FALSE, perms, p, *indices);
58237773e69fSMatthew G. Knepley     }
58247773e69fSMatthew G. Knepley   } else {
58254acb8e1eSToby Isaac     for (p = 0, off = 0; p < numPoints; p++) {
58264acb8e1eSToby Isaac       const PetscInt *perm = perms[0] ? perms[0][p] : NULL;
58274acb8e1eSToby Isaac 
58284acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr);
58294acb8e1eSToby Isaac       DMPlexGetIndicesPoint_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, *indices);
58307773e69fSMatthew G. Knepley     }
58317773e69fSMatthew G. Knepley   }
58327773e69fSMatthew G. Knepley   /* Cleanup points */
58334acb8e1eSToby Isaac   for (f = 0; f < PetscMax(1,Nf); f++) {
58344acb8e1eSToby Isaac     if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
58354acb8e1eSToby Isaac     else    {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);}
58364acb8e1eSToby Isaac   }
58377773e69fSMatthew G. Knepley   if (numPointsNew) {
583869291d52SBarry Smith     ierr = DMRestoreWorkArray(dm, 2*numPointsNew, MPIU_INT, &pointsNew);CHKERRQ(ierr);
58397773e69fSMatthew G. Knepley   } else {
5840923c78e0SToby Isaac     ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
58417773e69fSMatthew G. Knepley   }
58427773e69fSMatthew G. Knepley   if (numIndices) *numIndices = Nind;
58437773e69fSMatthew G. Knepley   PetscFunctionReturn(0);
58447773e69fSMatthew G. Knepley }
58457773e69fSMatthew G. Knepley 
58467cd05799SMatthew G. Knepley /*@C
58477cd05799SMatthew G. Knepley   DMPlexRestoreClosureIndices - Restore the indices in a vector v for all points in the closure of the given point
58487cd05799SMatthew G. Knepley 
58497cd05799SMatthew G. Knepley   Not collective
58507cd05799SMatthew G. Knepley 
58517cd05799SMatthew G. Knepley   Input Parameters:
58527cd05799SMatthew G. Knepley + dm - The DM
58537cd05799SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section
58547cd05799SMatthew G. Knepley . globalSection - The section describing the parallel layout in v, or NULL to use the default section
58557cd05799SMatthew G. Knepley . point - The mesh point
58567cd05799SMatthew G. Knepley . numIndices - The number of indices
58577cd05799SMatthew G. Knepley . indices - The indices
58587cd05799SMatthew G. Knepley - outOffsets - Field offset if not NULL
58597cd05799SMatthew G. Knepley 
58607cd05799SMatthew G. Knepley   Level: advanced
58617cd05799SMatthew G. Knepley 
58627cd05799SMatthew G. Knepley .seealso DMPlexGetClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure()
58637cd05799SMatthew G. Knepley @*/
586446bdb399SToby Isaac PetscErrorCode DMPlexRestoreClosureIndices(DM dm, PetscSection section, PetscSection globalSection, PetscInt point, PetscInt *numIndices, PetscInt **indices,PetscInt *outOffsets)
58657773e69fSMatthew G. Knepley {
58667773e69fSMatthew G. Knepley   PetscErrorCode ierr;
58677773e69fSMatthew G. Knepley 
58687773e69fSMatthew G. Knepley   PetscFunctionBegin;
58697773e69fSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
58707773e69fSMatthew G. Knepley   PetscValidPointer(indices, 5);
587169291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, indices);CHKERRQ(ierr);
58727773e69fSMatthew G. Knepley   PetscFunctionReturn(0);
58737773e69fSMatthew G. Knepley }
58747773e69fSMatthew G. Knepley 
58757f5d1fdeSMatthew G. Knepley /*@C
58767f5d1fdeSMatthew G. Knepley   DMPlexMatSetClosure - Set an array of the values on the closure of 'point'
58777f5d1fdeSMatthew G. Knepley 
58787f5d1fdeSMatthew G. Knepley   Not collective
58797f5d1fdeSMatthew G. Knepley 
58807f5d1fdeSMatthew G. Knepley   Input Parameters:
58817f5d1fdeSMatthew G. Knepley + dm - The DM
5882ebd6d717SJed Brown . section - The section describing the layout in v, or NULL to use the default section
5883ebd6d717SJed Brown . globalSection - The section describing the layout in v, or NULL to use the default global section
58847f5d1fdeSMatthew G. Knepley . A - The matrix
5885eaf898f9SPatrick Sanan . point - The point in the DM
58867f5d1fdeSMatthew G. Knepley . values - The array of values
58877f5d1fdeSMatthew G. Knepley - mode - The insert mode, where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions
58887f5d1fdeSMatthew G. Knepley 
58897f5d1fdeSMatthew G. Knepley   Fortran Notes:
58907f5d1fdeSMatthew G. Knepley   This routine is only available in Fortran 90, and you must include petsc.h90 in your code.
58917f5d1fdeSMatthew G. Knepley 
58927f5d1fdeSMatthew G. Knepley   Level: intermediate
58937f5d1fdeSMatthew G. Knepley 
58947f5d1fdeSMatthew G. Knepley .seealso DMPlexVecGetClosure(), DMPlexVecSetClosure()
58957f5d1fdeSMatthew G. Knepley @*/
58967c1f9639SMatthew G Knepley PetscErrorCode DMPlexMatSetClosure(DM dm, PetscSection section, PetscSection globalSection, Mat A, PetscInt point, const PetscScalar values[], InsertMode mode)
5897552f7358SJed Brown {
5898552f7358SJed Brown   DM_Plex            *mesh   = (DM_Plex*) dm->data;
58991b406b76SMatthew G. Knepley   PetscSection        clSection;
59001b406b76SMatthew G. Knepley   IS                  clPoints;
5901d3d1a6afSToby Isaac   PetscInt           *points = NULL, *newPoints;
59021b406b76SMatthew G. Knepley   const PetscInt     *clp;
5903552f7358SJed Brown   PetscInt           *indices;
5904552f7358SJed Brown   PetscInt            offsets[32];
59054acb8e1eSToby Isaac   const PetscInt    **perms[32] = {NULL};
59064acb8e1eSToby Isaac   const PetscScalar **flips[32] = {NULL};
5907923c78e0SToby Isaac   PetscInt            numFields, numPoints, newNumPoints, numIndices, newNumIndices, dof, off, globalOff, p, f;
59084acb8e1eSToby Isaac   PetscScalar        *valCopy = NULL;
5909d3d1a6afSToby Isaac   PetscScalar        *newValues;
5910552f7358SJed Brown   PetscErrorCode      ierr;
5911552f7358SJed Brown 
5912552f7358SJed Brown   PetscFunctionBegin;
5913552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5914e87a4003SBarry Smith   if (!section) {ierr = DMGetSection(dm, &section);CHKERRQ(ierr);}
59153dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2);
5916e87a4003SBarry Smith   if (!globalSection) {ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);}
59173dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(globalSection, PETSC_SECTION_CLASSID, 3);
59183dc93601SMatthew G. Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 4);
5919552f7358SJed Brown   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
592082f516ccSBarry Smith   if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields);
5921552f7358SJed Brown   ierr = PetscMemzero(offsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
5922923c78e0SToby Isaac   ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5923552f7358SJed Brown   for (p = 0, numIndices = 0; p < numPoints*2; p += 2) {
5924552f7358SJed Brown     PetscInt fdof;
5925552f7358SJed Brown 
5926552f7358SJed Brown     ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr);
5927552f7358SJed Brown     for (f = 0; f < numFields; ++f) {
5928552f7358SJed Brown       ierr          = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr);
5929552f7358SJed Brown       offsets[f+1] += fdof;
5930552f7358SJed Brown     }
5931552f7358SJed Brown     numIndices += dof;
5932552f7358SJed Brown   }
59330d644c17SKarl Rupp   for (f = 1; f < numFields; ++f) offsets[f+1] += offsets[f];
59340d644c17SKarl Rupp 
59358ccfff9cSToby Isaac   if (numFields && offsets[numFields] != numIndices) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", offsets[numFields], numIndices);
59364acb8e1eSToby Isaac   /* Get symmetries */
59374acb8e1eSToby Isaac   for (f = 0; f < PetscMax(1,numFields); f++) {
59384acb8e1eSToby Isaac     if (numFields) {ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
59394acb8e1eSToby Isaac     else           {ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
59404acb8e1eSToby Isaac     if (values && flips[f]) { /* may need to apply sign changes to the element matrix */
59414acb8e1eSToby Isaac       PetscInt foffset = offsets[f];
59424acb8e1eSToby Isaac 
59434acb8e1eSToby Isaac       for (p = 0; p < numPoints; p++) {
59444acb8e1eSToby Isaac         PetscInt point          = points[2*p], fdof;
59454acb8e1eSToby Isaac         const PetscScalar *flip = flips[f] ? flips[f][p] : NULL;
59464acb8e1eSToby Isaac 
59474acb8e1eSToby Isaac         if (!numFields) {
59484acb8e1eSToby Isaac           ierr = PetscSectionGetDof(section,point,&fdof);CHKERRQ(ierr);
59494acb8e1eSToby Isaac         } else {
59504acb8e1eSToby Isaac           ierr = PetscSectionGetFieldDof(section,point,f,&fdof);CHKERRQ(ierr);
59514acb8e1eSToby Isaac         }
59524acb8e1eSToby Isaac         if (flip) {
59534acb8e1eSToby Isaac           PetscInt i, j, k;
59544acb8e1eSToby Isaac 
59554acb8e1eSToby Isaac           if (!valCopy) {
595669291d52SBarry Smith             ierr = DMGetWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr);
59574acb8e1eSToby Isaac             for (j = 0; j < numIndices * numIndices; j++) valCopy[j] = values[j];
59584acb8e1eSToby Isaac             values = valCopy;
59594acb8e1eSToby Isaac           }
59604acb8e1eSToby Isaac           for (i = 0; i < fdof; i++) {
5961775f7be2SToby Isaac             PetscScalar fval = flip[i];
59624acb8e1eSToby Isaac 
59634acb8e1eSToby Isaac             for (k = 0; k < numIndices; k++) {
59644acb8e1eSToby Isaac               valCopy[numIndices * (foffset + i) + k] *= fval;
59654acb8e1eSToby Isaac               valCopy[numIndices * k + (foffset + i)] *= fval;
59664acb8e1eSToby Isaac             }
59674acb8e1eSToby Isaac           }
59684acb8e1eSToby Isaac         }
59694acb8e1eSToby Isaac         foffset += fdof;
59704acb8e1eSToby Isaac       }
59714acb8e1eSToby Isaac     }
59724acb8e1eSToby Isaac   }
59734acb8e1eSToby Isaac   ierr = DMPlexAnchorsModifyMat(dm,section,numPoints,numIndices,points,perms,values,&newNumPoints,&newNumIndices,&newPoints,&newValues,offsets,PETSC_TRUE);CHKERRQ(ierr);
5974d3d1a6afSToby Isaac   if (newNumPoints) {
59754acb8e1eSToby Isaac     if (valCopy) {
597669291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr);
59774acb8e1eSToby Isaac     }
59784acb8e1eSToby Isaac     for (f = 0; f < PetscMax(1,numFields); f++) {
59794acb8e1eSToby Isaac       if (numFields) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
59804acb8e1eSToby Isaac       else           {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
59814acb8e1eSToby Isaac     }
59824acb8e1eSToby Isaac     for (f = 0; f < PetscMax(1,numFields); f++) {
59834acb8e1eSToby Isaac       if (numFields) {ierr = PetscSectionGetFieldPointSyms(section,f,newNumPoints,newPoints,&perms[f],&flips[f]);CHKERRQ(ierr);}
59844acb8e1eSToby Isaac       else           {ierr = PetscSectionGetPointSyms(section,newNumPoints,newPoints,&perms[f],&flips[f]);CHKERRQ(ierr);}
59854acb8e1eSToby Isaac     }
5986923c78e0SToby Isaac     ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
5987d3d1a6afSToby Isaac     numPoints  = newNumPoints;
5988d3d1a6afSToby Isaac     numIndices = newNumIndices;
5989d3d1a6afSToby Isaac     points     = newPoints;
5990d3d1a6afSToby Isaac     values     = newValues;
5991d3d1a6afSToby Isaac   }
599269291d52SBarry Smith   ierr = DMGetWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr);
5993552f7358SJed Brown   if (numFields) {
59947e29afd2SMatthew G. Knepley     PetscBool useFieldOffsets;
59957e29afd2SMatthew G. Knepley 
59967e29afd2SMatthew G. Knepley     ierr = PetscSectionGetUseFieldOffsets(globalSection, &useFieldOffsets);CHKERRQ(ierr);
59977e29afd2SMatthew G. Knepley     if (useFieldOffsets) {
59987e29afd2SMatthew G. Knepley       for (p = 0; p < numPoints; p++) {
59997e29afd2SMatthew G. Knepley         DMPlexGetIndicesPointFieldsSplit_Internal(section, globalSection, points[2*p], offsets, PETSC_FALSE, perms, p, indices);
60007e29afd2SMatthew G. Knepley       }
60017e29afd2SMatthew G. Knepley     } else {
60024acb8e1eSToby Isaac       for (p = 0; p < numPoints; p++) {
60034acb8e1eSToby Isaac         ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr);
60044acb8e1eSToby Isaac         DMPlexGetIndicesPointFields_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, offsets, PETSC_FALSE, perms, p, indices);
6005552f7358SJed Brown       }
60067e29afd2SMatthew G. Knepley     }
6007552f7358SJed Brown   } else {
60084acb8e1eSToby Isaac     for (p = 0, off = 0; p < numPoints; p++) {
60094acb8e1eSToby Isaac       const PetscInt *perm = perms[0] ? perms[0][p] : NULL;
60104acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr);
60114acb8e1eSToby Isaac       DMPlexGetIndicesPoint_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, indices);
6012552f7358SJed Brown     }
6013552f7358SJed Brown   }
6014b0ecff45SMatthew G. Knepley   if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr);}
6015552f7358SJed Brown   ierr = MatSetValues(A, numIndices, indices, numIndices, indices, values, mode);
6016ab1d0545SMatthew G. Knepley   if (mesh->printFEM > 1) {
6017ab1d0545SMatthew G. Knepley     PetscInt i;
6018ab1d0545SMatthew G. Knepley     ierr = PetscPrintf(PETSC_COMM_SELF, "  Indices:");CHKERRQ(ierr);
60198ccfff9cSToby Isaac     for (i = 0; i < numIndices; ++i) {ierr = PetscPrintf(PETSC_COMM_SELF, " %D", indices[i]);CHKERRQ(ierr);}
6020ab1d0545SMatthew G. Knepley     ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
6021ab1d0545SMatthew G. Knepley   }
6022552f7358SJed Brown   if (ierr) {
6023552f7358SJed Brown     PetscMPIInt    rank;
6024552f7358SJed Brown     PetscErrorCode ierr2;
6025552f7358SJed Brown 
602682f516ccSBarry Smith     ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr2);
6027e4b003c7SBarry Smith     ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2);
6028b0ecff45SMatthew G. Knepley     ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr2);
602969291d52SBarry Smith     ierr2 = DMRestoreWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr2);
6030552f7358SJed Brown     CHKERRQ(ierr);
6031552f7358SJed Brown   }
60324acb8e1eSToby Isaac   for (f = 0; f < PetscMax(1,numFields); f++) {
60334acb8e1eSToby Isaac     if (numFields) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
60344acb8e1eSToby Isaac     else           {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);}
60354acb8e1eSToby Isaac   }
6036d3d1a6afSToby Isaac   if (newNumPoints) {
603769291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,newNumIndices*newNumIndices,MPIU_SCALAR,&newValues);CHKERRQ(ierr);
603869291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr);
6039d3d1a6afSToby Isaac   }
6040d3d1a6afSToby Isaac   else {
60414acb8e1eSToby Isaac     if (valCopy) {
604269291d52SBarry Smith       ierr = DMRestoreWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr);
60434acb8e1eSToby Isaac     }
6044923c78e0SToby Isaac     ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr);
6045d3d1a6afSToby Isaac   }
604669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr);
6047552f7358SJed Brown   PetscFunctionReturn(0);
6048552f7358SJed Brown }
6049552f7358SJed Brown 
6050de41b84cSMatthew 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)
6051de41b84cSMatthew G. Knepley {
6052de41b84cSMatthew G. Knepley   DM_Plex        *mesh   = (DM_Plex*) dmf->data;
6053de41b84cSMatthew G. Knepley   PetscInt       *fpoints = NULL, *ftotpoints = NULL;
6054de41b84cSMatthew G. Knepley   PetscInt       *cpoints = NULL;
6055de41b84cSMatthew G. Knepley   PetscInt       *findices, *cindices;
6056de41b84cSMatthew G. Knepley   PetscInt        foffsets[32], coffsets[32];
6057de41b84cSMatthew G. Knepley   CellRefiner     cellRefiner;
60584ca5e9f5SMatthew G. Knepley   PetscInt        numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f;
6059de41b84cSMatthew G. Knepley   PetscErrorCode  ierr;
6060de41b84cSMatthew G. Knepley 
6061de41b84cSMatthew G. Knepley   PetscFunctionBegin;
6062de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(dmf, DM_CLASSID, 1);
6063de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(dmc, DM_CLASSID, 4);
6064e87a4003SBarry Smith   if (!fsection) {ierr = DMGetSection(dmf, &fsection);CHKERRQ(ierr);}
6065de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2);
6066e87a4003SBarry Smith   if (!csection) {ierr = DMGetSection(dmc, &csection);CHKERRQ(ierr);}
6067de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5);
6068e87a4003SBarry Smith   if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);}
6069de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3);
6070e87a4003SBarry Smith   if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);}
6071de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6);
6072de41b84cSMatthew G. Knepley   PetscValidHeaderSpecific(A, MAT_CLASSID, 7);
6073de41b84cSMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr);
6074de41b84cSMatthew G. Knepley   if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields);
6075de41b84cSMatthew G. Knepley   ierr = PetscMemzero(foffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
6076de41b84cSMatthew G. Knepley   ierr = PetscMemzero(coffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
6077de41b84cSMatthew G. Knepley   /* Column indices */
6078de41b84cSMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
60794ca5e9f5SMatthew G. Knepley   maxFPoints = numCPoints;
6080de41b84cSMatthew G. Knepley   /* Compress out points not in the section */
6081de41b84cSMatthew G. Knepley   /*   TODO: Squeeze out points with 0 dof as well */
6082de41b84cSMatthew G. Knepley   ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr);
6083de41b84cSMatthew G. Knepley   for (p = 0, q = 0; p < numCPoints*2; p += 2) {
6084de41b84cSMatthew G. Knepley     if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) {
6085de41b84cSMatthew G. Knepley       cpoints[q*2]   = cpoints[p];
6086de41b84cSMatthew G. Knepley       cpoints[q*2+1] = cpoints[p+1];
6087de41b84cSMatthew G. Knepley       ++q;
6088de41b84cSMatthew G. Knepley     }
6089de41b84cSMatthew G. Knepley   }
6090de41b84cSMatthew G. Knepley   numCPoints = q;
6091de41b84cSMatthew G. Knepley   for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) {
6092de41b84cSMatthew G. Knepley     PetscInt fdof;
6093de41b84cSMatthew G. Knepley 
6094de41b84cSMatthew G. Knepley     ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr);
60954ca5e9f5SMatthew G. Knepley     if (!dof) continue;
6096de41b84cSMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
6097de41b84cSMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr);
6098de41b84cSMatthew G. Knepley       coffsets[f+1] += fdof;
6099de41b84cSMatthew G. Knepley     }
6100de41b84cSMatthew G. Knepley     numCIndices += dof;
6101de41b84cSMatthew G. Knepley   }
6102de41b84cSMatthew G. Knepley   for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f];
6103de41b84cSMatthew G. Knepley   /* Row indices */
6104de41b84cSMatthew G. Knepley   ierr = DMPlexGetCellRefiner_Internal(dmc, &cellRefiner);CHKERRQ(ierr);
6105de41b84cSMatthew G. Knepley   ierr = CellRefinerGetAffineTransforms_Internal(cellRefiner, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr);
610669291d52SBarry Smith   ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
6107de41b84cSMatthew G. Knepley   for (r = 0, q = 0; r < numSubcells; ++r) {
6108de41b84cSMatthew G. Knepley     /* TODO Map from coarse to fine cells */
6109de41b84cSMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
6110de41b84cSMatthew G. Knepley     /* Compress out points not in the section */
6111de41b84cSMatthew G. Knepley     ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr);
6112de41b84cSMatthew G. Knepley     for (p = 0; p < numFPoints*2; p += 2) {
6113de41b84cSMatthew G. Knepley       if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) {
61144ca5e9f5SMatthew G. Knepley         ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr);
61154ca5e9f5SMatthew G. Knepley         if (!dof) continue;
61164ca5e9f5SMatthew G. Knepley         for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break;
61174ca5e9f5SMatthew G. Knepley         if (s < q) continue;
6118de41b84cSMatthew G. Knepley         ftotpoints[q*2]   = fpoints[p];
6119de41b84cSMatthew G. Knepley         ftotpoints[q*2+1] = fpoints[p+1];
6120de41b84cSMatthew G. Knepley         ++q;
6121de41b84cSMatthew G. Knepley       }
6122de41b84cSMatthew G. Knepley     }
6123de41b84cSMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
6124de41b84cSMatthew G. Knepley   }
6125de41b84cSMatthew G. Knepley   numFPoints = q;
6126de41b84cSMatthew G. Knepley   for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) {
6127de41b84cSMatthew G. Knepley     PetscInt fdof;
6128de41b84cSMatthew G. Knepley 
6129de41b84cSMatthew G. Knepley     ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr);
61304ca5e9f5SMatthew G. Knepley     if (!dof) continue;
6131de41b84cSMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
6132de41b84cSMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr);
6133de41b84cSMatthew G. Knepley       foffsets[f+1] += fdof;
6134de41b84cSMatthew G. Knepley     }
6135de41b84cSMatthew G. Knepley     numFIndices += dof;
6136de41b84cSMatthew G. Knepley   }
6137de41b84cSMatthew G. Knepley   for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f];
6138de41b84cSMatthew G. Knepley 
61398ccfff9cSToby Isaac   if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices);
61408ccfff9cSToby Isaac   if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices);
614169291d52SBarry Smith   ierr = DMGetWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr);
614269291d52SBarry Smith   ierr = DMGetWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr);
6143de41b84cSMatthew G. Knepley   if (numFields) {
61444acb8e1eSToby Isaac     const PetscInt **permsF[32] = {NULL};
61454acb8e1eSToby Isaac     const PetscInt **permsC[32] = {NULL};
61464acb8e1eSToby Isaac 
61474acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
61484acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
61494acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
6150de41b84cSMatthew G. Knepley     }
61514acb8e1eSToby Isaac     for (p = 0; p < numFPoints; p++) {
61524acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
6153367003a6SStefano Zampini       ierr = DMPlexGetIndicesPointFields_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, findices);CHKERRQ(ierr);
61544acb8e1eSToby Isaac     }
61554acb8e1eSToby Isaac     for (p = 0; p < numCPoints; p++) {
61564acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
6157367003a6SStefano Zampini       ierr = DMPlexGetIndicesPointFields_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cindices);CHKERRQ(ierr);
61584acb8e1eSToby Isaac     }
61594acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
61604acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
61614acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
6162de41b84cSMatthew G. Knepley     }
6163de41b84cSMatthew G. Knepley   } else {
61644acb8e1eSToby Isaac     const PetscInt **permsF = NULL;
61654acb8e1eSToby Isaac     const PetscInt **permsC = NULL;
61664acb8e1eSToby Isaac 
61674acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
61684acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
61694acb8e1eSToby Isaac     for (p = 0, off = 0; p < numFPoints; p++) {
61704acb8e1eSToby Isaac       const PetscInt *perm = permsF ? permsF[p] : NULL;
61714acb8e1eSToby Isaac 
61724acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
61734acb8e1eSToby Isaac       ierr = DMPlexGetIndicesPoint_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, findices);CHKERRQ(ierr);
6174de41b84cSMatthew G. Knepley     }
61754acb8e1eSToby Isaac     for (p = 0, off = 0; p < numCPoints; p++) {
61764acb8e1eSToby Isaac       const PetscInt *perm = permsC ? permsC[p] : NULL;
61774acb8e1eSToby Isaac 
61784acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
61794acb8e1eSToby Isaac       ierr = DMPlexGetIndicesPoint_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cindices);CHKERRQ(ierr);
6180de41b84cSMatthew G. Knepley     }
61814acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
61824acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
6183de41b84cSMatthew G. Knepley   }
6184de41b84cSMatthew G. Knepley   if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr);}
61854acb8e1eSToby Isaac   /* TODO: flips */
6186de41b84cSMatthew G. Knepley   ierr = MatSetValues(A, numFIndices, findices, numCIndices, cindices, values, mode);
6187de41b84cSMatthew G. Knepley   if (ierr) {
6188de41b84cSMatthew G. Knepley     PetscMPIInt    rank;
6189de41b84cSMatthew G. Knepley     PetscErrorCode ierr2;
6190de41b84cSMatthew G. Knepley 
6191de41b84cSMatthew G. Knepley     ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr2);
6192e4b003c7SBarry Smith     ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2);
6193de41b84cSMatthew G. Knepley     ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr2);
619469291d52SBarry Smith     ierr2 = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr2);
619569291d52SBarry Smith     ierr2 = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr2);
6196de41b84cSMatthew G. Knepley     CHKERRQ(ierr);
6197de41b84cSMatthew G. Knepley   }
619869291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
6199de41b84cSMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
620069291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr);
620169291d52SBarry Smith   ierr = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr);
6202de41b84cSMatthew G. Knepley   PetscFunctionReturn(0);
6203de41b84cSMatthew G. Knepley }
6204de41b84cSMatthew G. Knepley 
62057c927364SMatthew G. Knepley PetscErrorCode DMPlexMatGetClosureIndicesRefined(DM dmf, PetscSection fsection, PetscSection globalFSection, DM dmc, PetscSection csection, PetscSection globalCSection, PetscInt point, PetscInt cindices[], PetscInt findices[])
62067c927364SMatthew G. Knepley {
62077c927364SMatthew G. Knepley   PetscInt      *fpoints = NULL, *ftotpoints = NULL;
62087c927364SMatthew G. Knepley   PetscInt      *cpoints = NULL;
62097c927364SMatthew G. Knepley   PetscInt       foffsets[32], coffsets[32];
62107c927364SMatthew G. Knepley   CellRefiner    cellRefiner;
62117c927364SMatthew G. Knepley   PetscInt       numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f;
62127c927364SMatthew G. Knepley   PetscErrorCode ierr;
62137c927364SMatthew G. Knepley 
62147c927364SMatthew G. Knepley   PetscFunctionBegin;
62157c927364SMatthew G. Knepley   PetscValidHeaderSpecific(dmf, DM_CLASSID, 1);
62167c927364SMatthew G. Knepley   PetscValidHeaderSpecific(dmc, DM_CLASSID, 4);
6217e87a4003SBarry Smith   if (!fsection) {ierr = DMGetSection(dmf, &fsection);CHKERRQ(ierr);}
62187c927364SMatthew G. Knepley   PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2);
6219e87a4003SBarry Smith   if (!csection) {ierr = DMGetSection(dmc, &csection);CHKERRQ(ierr);}
62207c927364SMatthew G. Knepley   PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5);
6221e87a4003SBarry Smith   if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);}
62227c927364SMatthew G. Knepley   PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3);
6223e87a4003SBarry Smith   if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);}
62247c927364SMatthew G. Knepley   PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6);
62257c927364SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr);
62267c927364SMatthew G. Knepley   if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields);
62277c927364SMatthew G. Knepley   ierr = PetscMemzero(foffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
62287c927364SMatthew G. Knepley   ierr = PetscMemzero(coffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr);
62297c927364SMatthew G. Knepley   /* Column indices */
62307c927364SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
62317c927364SMatthew G. Knepley   maxFPoints = numCPoints;
62327c927364SMatthew G. Knepley   /* Compress out points not in the section */
62337c927364SMatthew G. Knepley   /*   TODO: Squeeze out points with 0 dof as well */
62347c927364SMatthew G. Knepley   ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr);
62357c927364SMatthew G. Knepley   for (p = 0, q = 0; p < numCPoints*2; p += 2) {
62367c927364SMatthew G. Knepley     if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) {
62377c927364SMatthew G. Knepley       cpoints[q*2]   = cpoints[p];
62387c927364SMatthew G. Knepley       cpoints[q*2+1] = cpoints[p+1];
62397c927364SMatthew G. Knepley       ++q;
62407c927364SMatthew G. Knepley     }
62417c927364SMatthew G. Knepley   }
62427c927364SMatthew G. Knepley   numCPoints = q;
62437c927364SMatthew G. Knepley   for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) {
62447c927364SMatthew G. Knepley     PetscInt fdof;
62457c927364SMatthew G. Knepley 
62467c927364SMatthew G. Knepley     ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr);
62477c927364SMatthew G. Knepley     if (!dof) continue;
62487c927364SMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
62497c927364SMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr);
62507c927364SMatthew G. Knepley       coffsets[f+1] += fdof;
62517c927364SMatthew G. Knepley     }
62527c927364SMatthew G. Knepley     numCIndices += dof;
62537c927364SMatthew G. Knepley   }
62547c927364SMatthew G. Knepley   for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f];
62557c927364SMatthew G. Knepley   /* Row indices */
62567c927364SMatthew G. Knepley   ierr = DMPlexGetCellRefiner_Internal(dmc, &cellRefiner);CHKERRQ(ierr);
62577c927364SMatthew G. Knepley   ierr = CellRefinerGetAffineTransforms_Internal(cellRefiner, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr);
625869291d52SBarry Smith   ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
62597c927364SMatthew G. Knepley   for (r = 0, q = 0; r < numSubcells; ++r) {
62607c927364SMatthew G. Knepley     /* TODO Map from coarse to fine cells */
62617c927364SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
62627c927364SMatthew G. Knepley     /* Compress out points not in the section */
62637c927364SMatthew G. Knepley     ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr);
62647c927364SMatthew G. Knepley     for (p = 0; p < numFPoints*2; p += 2) {
62657c927364SMatthew G. Knepley       if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) {
62667c927364SMatthew G. Knepley         ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr);
62677c927364SMatthew G. Knepley         if (!dof) continue;
62687c927364SMatthew G. Knepley         for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break;
62697c927364SMatthew G. Knepley         if (s < q) continue;
62707c927364SMatthew G. Knepley         ftotpoints[q*2]   = fpoints[p];
62717c927364SMatthew G. Knepley         ftotpoints[q*2+1] = fpoints[p+1];
62727c927364SMatthew G. Knepley         ++q;
62737c927364SMatthew G. Knepley       }
62747c927364SMatthew G. Knepley     }
62757c927364SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr);
62767c927364SMatthew G. Knepley   }
62777c927364SMatthew G. Knepley   numFPoints = q;
62787c927364SMatthew G. Knepley   for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) {
62797c927364SMatthew G. Knepley     PetscInt fdof;
62807c927364SMatthew G. Knepley 
62817c927364SMatthew G. Knepley     ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr);
62827c927364SMatthew G. Knepley     if (!dof) continue;
62837c927364SMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
62847c927364SMatthew G. Knepley       ierr           = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr);
62857c927364SMatthew G. Knepley       foffsets[f+1] += fdof;
62867c927364SMatthew G. Knepley     }
62877c927364SMatthew G. Knepley     numFIndices += dof;
62887c927364SMatthew G. Knepley   }
62897c927364SMatthew G. Knepley   for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f];
62907c927364SMatthew G. Knepley 
62918ccfff9cSToby Isaac   if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices);
62928ccfff9cSToby Isaac   if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices);
62937c927364SMatthew G. Knepley   if (numFields) {
62944acb8e1eSToby Isaac     const PetscInt **permsF[32] = {NULL};
62954acb8e1eSToby Isaac     const PetscInt **permsC[32] = {NULL};
62964acb8e1eSToby Isaac 
62974acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
62984acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
62994acb8e1eSToby Isaac       ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
63007c927364SMatthew G. Knepley     }
63014acb8e1eSToby Isaac     for (p = 0; p < numFPoints; p++) {
63024acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
63034acb8e1eSToby Isaac       DMPlexGetIndicesPointFields_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, findices);
63044acb8e1eSToby Isaac     }
63054acb8e1eSToby Isaac     for (p = 0; p < numCPoints; p++) {
63064acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
63074acb8e1eSToby Isaac       DMPlexGetIndicesPointFields_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cindices);
63084acb8e1eSToby Isaac     }
63094acb8e1eSToby Isaac     for (f = 0; f < numFields; f++) {
63104acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr);
63114acb8e1eSToby Isaac       ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr);
63127c927364SMatthew G. Knepley     }
63137c927364SMatthew G. Knepley   } else {
63144acb8e1eSToby Isaac     const PetscInt **permsF = NULL;
63154acb8e1eSToby Isaac     const PetscInt **permsC = NULL;
63164acb8e1eSToby Isaac 
63174acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
63184acb8e1eSToby Isaac     ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
63194acb8e1eSToby Isaac     for (p = 0, off = 0; p < numFPoints; p++) {
63204acb8e1eSToby Isaac       const PetscInt *perm = permsF ? permsF[p] : NULL;
63214acb8e1eSToby Isaac 
63224acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr);
63234acb8e1eSToby Isaac       DMPlexGetIndicesPoint_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, findices);
63247c927364SMatthew G. Knepley     }
63254acb8e1eSToby Isaac     for (p = 0, off = 0; p < numCPoints; p++) {
63264acb8e1eSToby Isaac       const PetscInt *perm = permsC ? permsC[p] : NULL;
63274acb8e1eSToby Isaac 
63284acb8e1eSToby Isaac       ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr);
63294acb8e1eSToby Isaac       DMPlexGetIndicesPoint_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cindices);
63307c927364SMatthew G. Knepley     }
63314acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr);
63324acb8e1eSToby Isaac     ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr);
63337c927364SMatthew G. Knepley   }
633469291d52SBarry Smith   ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr);
63357c927364SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr);
63367c927364SMatthew G. Knepley   PetscFunctionReturn(0);
63377c927364SMatthew G. Knepley }
63387c927364SMatthew G. Knepley 
6339f96281f8SMatthew G. Knepley /*@
6340f96281f8SMatthew G. Knepley   DMPlexGetHybridBounds - Get the first mesh point of each dimension which is a hybrid
6341f96281f8SMatthew G. Knepley 
6342f96281f8SMatthew G. Knepley   Input Parameter:
6343f96281f8SMatthew G. Knepley . dm - The DMPlex object
6344f96281f8SMatthew G. Knepley 
6345f96281f8SMatthew G. Knepley   Output Parameters:
6346f96281f8SMatthew G. Knepley + cMax - The first hybrid cell
6347dc5a3409SMatthew G. Knepley . fMax - The first hybrid face
6348dc5a3409SMatthew G. Knepley . eMax - The first hybrid edge
6349dc5a3409SMatthew G. Knepley - vMax - The first hybrid vertex
6350f96281f8SMatthew G. Knepley 
6351f96281f8SMatthew G. Knepley   Level: developer
6352f96281f8SMatthew G. Knepley 
6353dc5a3409SMatthew G. Knepley .seealso DMPlexCreateHybridMesh(), DMPlexSetHybridBounds()
6354f96281f8SMatthew G. Knepley @*/
6355770b213bSMatthew G Knepley PetscErrorCode DMPlexGetHybridBounds(DM dm, PetscInt *cMax, PetscInt *fMax, PetscInt *eMax, PetscInt *vMax)
6356552f7358SJed Brown {
6357552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
6358770b213bSMatthew G Knepley   PetscInt       dim;
6359770b213bSMatthew G Knepley   PetscErrorCode ierr;
6360552f7358SJed Brown 
6361552f7358SJed Brown   PetscFunctionBegin;
6362552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6363c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
63647d5acc75SStefano Zampini   if (dim < 0) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM dimension not yet set");
6365770b213bSMatthew G Knepley   if (cMax) *cMax = mesh->hybridPointMax[dim];
63667d5acc75SStefano Zampini   if (fMax) *fMax = mesh->hybridPointMax[PetscMax(dim-1,0)];
6367770b213bSMatthew G Knepley   if (eMax) *eMax = mesh->hybridPointMax[1];
6368770b213bSMatthew G Knepley   if (vMax) *vMax = mesh->hybridPointMax[0];
6369552f7358SJed Brown   PetscFunctionReturn(0);
6370552f7358SJed Brown }
6371552f7358SJed Brown 
6372aeadca18SToby Isaac static PetscErrorCode DMPlexCreateDimStratum(DM dm, DMLabel depthLabel, DMLabel dimLabel, PetscInt d, PetscInt dMax)
63734a3e9fdbSToby Isaac {
63744a3e9fdbSToby Isaac   IS             is, his;
63757d5acc75SStefano Zampini   PetscInt       first = 0, stride;
63764a3e9fdbSToby Isaac   PetscBool      isStride;
63774a3e9fdbSToby Isaac   PetscErrorCode ierr;
63784a3e9fdbSToby Isaac 
63794a3e9fdbSToby Isaac   PetscFunctionBegin;
63804a3e9fdbSToby Isaac   ierr = DMLabelGetStratumIS(depthLabel, d, &is);CHKERRQ(ierr);
63814a3e9fdbSToby Isaac   ierr = PetscObjectTypeCompare((PetscObject) is, ISSTRIDE, &isStride);CHKERRQ(ierr);
63824a3e9fdbSToby Isaac   if (isStride) {
63834a3e9fdbSToby Isaac     ierr = ISStrideGetInfo(is, &first, &stride);CHKERRQ(ierr);
63844a3e9fdbSToby Isaac   }
63857d5acc75SStefano Zampini   if (is && (!isStride || stride != 1)) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "DM is not stratified: depth %D IS is not contiguous", d);
63864a3e9fdbSToby Isaac   ierr = ISCreateStride(PETSC_COMM_SELF, (dMax - first), first, 1, &his);CHKERRQ(ierr);
6387aeadca18SToby Isaac   ierr = DMLabelSetStratumIS(dimLabel, d, his);CHKERRQ(ierr);
63884a3e9fdbSToby Isaac   ierr = ISDestroy(&his);CHKERRQ(ierr);
63894a3e9fdbSToby Isaac   ierr = ISDestroy(&is);CHKERRQ(ierr);
63904a3e9fdbSToby Isaac   PetscFunctionReturn(0);
63914a3e9fdbSToby Isaac }
63924a3e9fdbSToby Isaac 
6393dc5a3409SMatthew G. Knepley /*@
6394dc5a3409SMatthew G. Knepley   DMPlexSetHybridBounds - Set the first mesh point of each dimension which is a hybrid
6395dc5a3409SMatthew G. Knepley 
6396dc5a3409SMatthew G. Knepley   Input Parameters:
6397dc5a3409SMatthew G. Knepley . dm   - The DMPlex object
6398dc5a3409SMatthew G. Knepley . cMax - The first hybrid cell
6399dc5a3409SMatthew G. Knepley . fMax - The first hybrid face
6400dc5a3409SMatthew G. Knepley . eMax - The first hybrid edge
6401dc5a3409SMatthew G. Knepley - vMax - The first hybrid vertex
6402dc5a3409SMatthew G. Knepley 
6403dc5a3409SMatthew G. Knepley   Level: developer
6404dc5a3409SMatthew G. Knepley 
6405dc5a3409SMatthew G. Knepley .seealso DMPlexCreateHybridMesh(), DMPlexGetHybridBounds()
6406dc5a3409SMatthew G. Knepley @*/
6407770b213bSMatthew G Knepley PetscErrorCode DMPlexSetHybridBounds(DM dm, PetscInt cMax, PetscInt fMax, PetscInt eMax, PetscInt vMax)
6408552f7358SJed Brown {
6409552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
6410770b213bSMatthew G Knepley   PetscInt       dim;
6411770b213bSMatthew G Knepley   PetscErrorCode ierr;
6412552f7358SJed Brown 
6413552f7358SJed Brown   PetscFunctionBegin;
6414552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6415c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
64167d5acc75SStefano Zampini   if (dim < 0) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM dimension not yet set");
6417770b213bSMatthew G Knepley   if (cMax >= 0) mesh->hybridPointMax[dim]               = cMax;
64187d5acc75SStefano Zampini   if (fMax >= 0) mesh->hybridPointMax[PetscMax(dim-1,0)] = fMax;
6419770b213bSMatthew G Knepley   if (eMax >= 0) mesh->hybridPointMax[1]                 = eMax;
6420770b213bSMatthew G Knepley   if (vMax >= 0) mesh->hybridPointMax[0]                 = vMax;
6421552f7358SJed Brown   PetscFunctionReturn(0);
6422552f7358SJed Brown }
6423552f7358SJed Brown 
64247cd05799SMatthew G. Knepley /*@C
64257cd05799SMatthew G. Knepley   DMPlexGetVTKCellHeight - Returns the height in the DAG used to determine which points are cells (normally 0)
64267cd05799SMatthew G. Knepley 
64277cd05799SMatthew G. Knepley   Input Parameter:
64287cd05799SMatthew G. Knepley . dm   - The DMPlex object
64297cd05799SMatthew G. Knepley 
64307cd05799SMatthew G. Knepley   Output Parameter:
64317cd05799SMatthew G. Knepley . cellHeight - The height of a cell
64327cd05799SMatthew G. Knepley 
64337cd05799SMatthew G. Knepley   Level: developer
64347cd05799SMatthew G. Knepley 
64357cd05799SMatthew G. Knepley .seealso DMPlexSetVTKCellHeight()
64367cd05799SMatthew G. Knepley @*/
6437552f7358SJed Brown PetscErrorCode DMPlexGetVTKCellHeight(DM dm, PetscInt *cellHeight)
6438552f7358SJed Brown {
6439552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
6440552f7358SJed Brown 
6441552f7358SJed Brown   PetscFunctionBegin;
6442552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6443552f7358SJed Brown   PetscValidPointer(cellHeight, 2);
6444552f7358SJed Brown   *cellHeight = mesh->vtkCellHeight;
6445552f7358SJed Brown   PetscFunctionReturn(0);
6446552f7358SJed Brown }
6447552f7358SJed Brown 
64487cd05799SMatthew G. Knepley /*@C
64497cd05799SMatthew G. Knepley   DMPlexSetVTKCellHeight - Sets the height in the DAG used to determine which points are cells (normally 0)
64507cd05799SMatthew G. Knepley 
64517cd05799SMatthew G. Knepley   Input Parameters:
64527cd05799SMatthew G. Knepley + dm   - The DMPlex object
64537cd05799SMatthew G. Knepley - cellHeight - The height of a cell
64547cd05799SMatthew G. Knepley 
64557cd05799SMatthew G. Knepley   Level: developer
64567cd05799SMatthew G. Knepley 
64577cd05799SMatthew G. Knepley .seealso DMPlexGetVTKCellHeight()
64587cd05799SMatthew G. Knepley @*/
6459552f7358SJed Brown PetscErrorCode DMPlexSetVTKCellHeight(DM dm, PetscInt cellHeight)
6460552f7358SJed Brown {
6461552f7358SJed Brown   DM_Plex *mesh = (DM_Plex*) dm->data;
6462552f7358SJed Brown 
6463552f7358SJed Brown   PetscFunctionBegin;
6464552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6465552f7358SJed Brown   mesh->vtkCellHeight = cellHeight;
6466552f7358SJed Brown   PetscFunctionReturn(0);
6467552f7358SJed Brown }
6468552f7358SJed Brown 
6469552f7358SJed Brown /* We can easily have a form that takes an IS instead */
6470ef48cebcSMatthew G. Knepley static PetscErrorCode DMPlexCreateNumbering_Private(DM dm, PetscInt pStart, PetscInt pEnd, PetscInt shift, PetscInt *globalSize, PetscSF sf, IS *numbering)
6471552f7358SJed Brown {
6472552f7358SJed Brown   PetscSection   section, globalSection;
6473552f7358SJed Brown   PetscInt      *numbers, p;
6474552f7358SJed Brown   PetscErrorCode ierr;
6475552f7358SJed Brown 
6476552f7358SJed Brown   PetscFunctionBegin;
647782f516ccSBarry Smith   ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), &section);CHKERRQ(ierr);
6478552f7358SJed Brown   ierr = PetscSectionSetChart(section, pStart, pEnd);CHKERRQ(ierr);
6479552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
6480552f7358SJed Brown     ierr = PetscSectionSetDof(section, p, 1);CHKERRQ(ierr);
6481552f7358SJed Brown   }
6482552f7358SJed Brown   ierr = PetscSectionSetUp(section);CHKERRQ(ierr);
648315b58121SMatthew G. Knepley   ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_FALSE, PETSC_FALSE, &globalSection);CHKERRQ(ierr);
6484854ce69bSBarry Smith   ierr = PetscMalloc1(pEnd - pStart, &numbers);CHKERRQ(ierr);
6485552f7358SJed Brown   for (p = pStart; p < pEnd; ++p) {
6486552f7358SJed Brown     ierr = PetscSectionGetOffset(globalSection, p, &numbers[p-pStart]);CHKERRQ(ierr);
6487ef48cebcSMatthew G. Knepley     if (numbers[p-pStart] < 0) numbers[p-pStart] -= shift;
6488ef48cebcSMatthew G. Knepley     else                       numbers[p-pStart] += shift;
6489552f7358SJed Brown   }
649082f516ccSBarry Smith   ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), pEnd - pStart, numbers, PETSC_OWN_POINTER, numbering);CHKERRQ(ierr);
6491ef48cebcSMatthew G. Knepley   if (globalSize) {
6492ef48cebcSMatthew G. Knepley     PetscLayout layout;
6493ef48cebcSMatthew G. Knepley     ierr = PetscSectionGetPointLayout(PetscObjectComm((PetscObject) dm), globalSection, &layout);CHKERRQ(ierr);
6494ef48cebcSMatthew G. Knepley     ierr = PetscLayoutGetSize(layout, globalSize);CHKERRQ(ierr);
6495ef48cebcSMatthew G. Knepley     ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
6496ef48cebcSMatthew G. Knepley   }
6497552f7358SJed Brown   ierr = PetscSectionDestroy(&section);CHKERRQ(ierr);
6498552f7358SJed Brown   ierr = PetscSectionDestroy(&globalSection);CHKERRQ(ierr);
6499552f7358SJed Brown   PetscFunctionReturn(0);
6500552f7358SJed Brown }
6501552f7358SJed Brown 
650281ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateCellNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalCellNumbers)
6503552f7358SJed Brown {
6504552f7358SJed Brown   PetscInt       cellHeight, cStart, cEnd, cMax;
6505552f7358SJed Brown   PetscErrorCode ierr;
6506552f7358SJed Brown 
6507552f7358SJed Brown   PetscFunctionBegin;
6508552f7358SJed Brown   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
6509552f7358SJed Brown   ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
65100298fd71SBarry Smith   ierr = DMPlexGetHybridBounds(dm, &cMax, NULL, NULL, NULL);CHKERRQ(ierr);
651181ed3555SMatthew G. Knepley   if (cMax >= 0 && !includeHybrid) cEnd = PetscMin(cEnd, cMax);
651281ed3555SMatthew G. Knepley   ierr = DMPlexCreateNumbering_Private(dm, cStart, cEnd, 0, NULL, dm->sf, globalCellNumbers);CHKERRQ(ierr);
651381ed3555SMatthew G. Knepley   PetscFunctionReturn(0);
6514552f7358SJed Brown }
651581ed3555SMatthew G. Knepley 
65168dab3259SMatthew G. Knepley /*@
65177cd05799SMatthew G. Knepley   DMPlexGetCellNumbering - Get a global cell numbering for all cells on this process
65187cd05799SMatthew G. Knepley 
65197cd05799SMatthew G. Knepley   Input Parameter:
65207cd05799SMatthew G. Knepley . dm   - The DMPlex object
65217cd05799SMatthew G. Knepley 
65227cd05799SMatthew G. Knepley   Output Parameter:
65237cd05799SMatthew G. Knepley . globalCellNumbers - Global cell numbers for all cells on this process
65247cd05799SMatthew G. Knepley 
65257cd05799SMatthew G. Knepley   Level: developer
65267cd05799SMatthew G. Knepley 
65277cd05799SMatthew G. Knepley .seealso DMPlexGetVertexNumbering()
65287cd05799SMatthew G. Knepley @*/
652981ed3555SMatthew G. Knepley PetscErrorCode DMPlexGetCellNumbering(DM dm, IS *globalCellNumbers)
653081ed3555SMatthew G. Knepley {
653181ed3555SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex*) dm->data;
653281ed3555SMatthew G. Knepley   PetscErrorCode ierr;
653381ed3555SMatthew G. Knepley 
653481ed3555SMatthew G. Knepley   PetscFunctionBegin;
653581ed3555SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
653681ed3555SMatthew G. Knepley   if (!mesh->globalCellNumbers) {ierr = DMPlexCreateCellNumbering_Internal(dm, PETSC_FALSE, &mesh->globalCellNumbers);CHKERRQ(ierr);}
6537552f7358SJed Brown   *globalCellNumbers = mesh->globalCellNumbers;
6538552f7358SJed Brown   PetscFunctionReturn(0);
6539552f7358SJed Brown }
6540552f7358SJed Brown 
654181ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateVertexNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalVertexNumbers)
654281ed3555SMatthew G. Knepley {
654381ed3555SMatthew G. Knepley   PetscInt       vStart, vEnd, vMax;
654481ed3555SMatthew G. Knepley   PetscErrorCode ierr;
654581ed3555SMatthew G. Knepley 
654681ed3555SMatthew G. Knepley   PetscFunctionBegin;
654781ed3555SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
654881ed3555SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
654981ed3555SMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, NULL, NULL, NULL, &vMax);CHKERRQ(ierr);
655081ed3555SMatthew G. Knepley   if (vMax >= 0 && !includeHybrid) vEnd = PetscMin(vEnd, vMax);
655181ed3555SMatthew G. Knepley   ierr = DMPlexCreateNumbering_Private(dm, vStart, vEnd, 0, NULL, dm->sf, globalVertexNumbers);CHKERRQ(ierr);
655281ed3555SMatthew G. Knepley   PetscFunctionReturn(0);
655381ed3555SMatthew G. Knepley }
655481ed3555SMatthew G. Knepley 
65558dab3259SMatthew G. Knepley /*@
65567cd05799SMatthew G. Knepley   DMPlexGetVertexNumbering - Get a global certex numbering for all vertices on this process
65577cd05799SMatthew G. Knepley 
65587cd05799SMatthew G. Knepley   Input Parameter:
65597cd05799SMatthew G. Knepley . dm   - The DMPlex object
65607cd05799SMatthew G. Knepley 
65617cd05799SMatthew G. Knepley   Output Parameter:
65627cd05799SMatthew G. Knepley . globalVertexNumbers - Global vertex numbers for all vertices on this process
65637cd05799SMatthew G. Knepley 
65647cd05799SMatthew G. Knepley   Level: developer
65657cd05799SMatthew G. Knepley 
65667cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering()
65677cd05799SMatthew G. Knepley @*/
6568552f7358SJed Brown PetscErrorCode DMPlexGetVertexNumbering(DM dm, IS *globalVertexNumbers)
6569552f7358SJed Brown {
6570552f7358SJed Brown   DM_Plex       *mesh = (DM_Plex*) dm->data;
6571552f7358SJed Brown   PetscErrorCode ierr;
6572552f7358SJed Brown 
6573552f7358SJed Brown   PetscFunctionBegin;
6574552f7358SJed Brown   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
657581ed3555SMatthew G. Knepley   if (!mesh->globalVertexNumbers) {ierr = DMPlexCreateVertexNumbering_Internal(dm, PETSC_FALSE, &mesh->globalVertexNumbers);CHKERRQ(ierr);}
6576552f7358SJed Brown   *globalVertexNumbers = mesh->globalVertexNumbers;
6577552f7358SJed Brown   PetscFunctionReturn(0);
6578552f7358SJed Brown }
6579552f7358SJed Brown 
65808dab3259SMatthew G. Knepley /*@
65817cd05799SMatthew G. Knepley   DMPlexCreatePointNumbering - Create a global numbering for all points on this process
65827cd05799SMatthew G. Knepley 
65837cd05799SMatthew G. Knepley   Input Parameter:
65847cd05799SMatthew G. Knepley . dm   - The DMPlex object
65857cd05799SMatthew G. Knepley 
65867cd05799SMatthew G. Knepley   Output Parameter:
65877cd05799SMatthew G. Knepley . globalPointNumbers - Global numbers for all points on this process
65887cd05799SMatthew G. Knepley 
65897cd05799SMatthew G. Knepley   Level: developer
65907cd05799SMatthew G. Knepley 
65917cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering()
65927cd05799SMatthew G. Knepley @*/
6593ef48cebcSMatthew G. Knepley PetscErrorCode DMPlexCreatePointNumbering(DM dm, IS *globalPointNumbers)
6594ef48cebcSMatthew G. Knepley {
6595ef48cebcSMatthew G. Knepley   IS             nums[4];
6596862913ffSStefano Zampini   PetscInt       depths[4], gdepths[4], starts[4];
6597ef48cebcSMatthew G. Knepley   PetscInt       depth, d, shift = 0;
6598ef48cebcSMatthew G. Knepley   PetscErrorCode ierr;
6599ef48cebcSMatthew G. Knepley 
6600ef48cebcSMatthew G. Knepley   PetscFunctionBegin;
6601ef48cebcSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6602ef48cebcSMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
66038abc87a0SMichael Lange   /* For unstratified meshes use dim instead of depth */
66048abc87a0SMichael Lange   if (depth < 0) {ierr = DMGetDimension(dm, &depth);CHKERRQ(ierr);}
6605862913ffSStefano Zampini   for (d = 0; d <= depth; ++d) {
6606862913ffSStefano Zampini     PetscInt end;
6607862913ffSStefano Zampini 
6608862913ffSStefano Zampini     depths[d] = depth-d;
6609862913ffSStefano Zampini     ierr = DMPlexGetDepthStratum(dm, depths[d], &starts[d], &end);CHKERRQ(ierr);
6610862913ffSStefano Zampini     if (!(starts[d]-end)) { starts[d] = depths[d] = -1; }
6611862913ffSStefano Zampini   }
6612862913ffSStefano Zampini   ierr = PetscSortIntWithArray(depth+1, starts, depths);CHKERRQ(ierr);
6613862913ffSStefano Zampini   ierr = MPIU_Allreduce(depths, gdepths, depth+1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);
6614862913ffSStefano Zampini   for (d = 0; d <= depth; ++d) {
6615862913ffSStefano 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]);
6616862913ffSStefano Zampini   }
6617ef48cebcSMatthew G. Knepley   for (d = 0; d <= depth; ++d) {
6618ef48cebcSMatthew G. Knepley     PetscInt pStart, pEnd, gsize;
6619ef48cebcSMatthew G. Knepley 
6620862913ffSStefano Zampini     ierr = DMPlexGetDepthStratum(dm, gdepths[d], &pStart, &pEnd);CHKERRQ(ierr);
6621ef48cebcSMatthew G. Knepley     ierr = DMPlexCreateNumbering_Private(dm, pStart, pEnd, shift, &gsize, dm->sf, &nums[d]);CHKERRQ(ierr);
6622ef48cebcSMatthew G. Knepley     shift += gsize;
6623ef48cebcSMatthew G. Knepley   }
6624302440fdSBarry Smith   ierr = ISConcatenate(PetscObjectComm((PetscObject) dm), depth+1, nums, globalPointNumbers);CHKERRQ(ierr);
6625ef48cebcSMatthew G. Knepley   for (d = 0; d <= depth; ++d) {ierr = ISDestroy(&nums[d]);CHKERRQ(ierr);}
6626ef48cebcSMatthew G. Knepley   PetscFunctionReturn(0);
6627ef48cebcSMatthew G. Knepley }
6628ef48cebcSMatthew G. Knepley 
662908a22f4bSMatthew G. Knepley 
663008a22f4bSMatthew G. Knepley /*@
663108a22f4bSMatthew G. Knepley   DMPlexCreateRankField - Create a cell field whose value is the rank of the owner
663208a22f4bSMatthew G. Knepley 
663308a22f4bSMatthew G. Knepley   Input Parameter:
663408a22f4bSMatthew G. Knepley . dm - The DMPlex object
663508a22f4bSMatthew G. Knepley 
663608a22f4bSMatthew G. Knepley   Output Parameter:
663708a22f4bSMatthew G. Knepley . ranks - The rank field
663808a22f4bSMatthew G. Knepley 
663908a22f4bSMatthew G. Knepley   Options Database Keys:
664008a22f4bSMatthew G. Knepley . -dm_partition_view - Adds the rank field into the DM output from -dm_view using the same viewer
664108a22f4bSMatthew G. Knepley 
664208a22f4bSMatthew G. Knepley   Level: intermediate
664308a22f4bSMatthew G. Knepley 
664408a22f4bSMatthew G. Knepley .seealso: DMView()
664508a22f4bSMatthew G. Knepley @*/
664608a22f4bSMatthew G. Knepley PetscErrorCode DMPlexCreateRankField(DM dm, Vec *ranks)
664708a22f4bSMatthew G. Knepley {
664808a22f4bSMatthew G. Knepley   DM             rdm;
664908a22f4bSMatthew G. Knepley   PetscDS        prob;
665008a22f4bSMatthew G. Knepley   PetscFE        fe;
665108a22f4bSMatthew G. Knepley   PetscScalar   *r;
665208a22f4bSMatthew G. Knepley   PetscMPIInt    rank;
665308a22f4bSMatthew G. Knepley   PetscInt       dim, cStart, cEnd, c;
665408a22f4bSMatthew G. Knepley   PetscErrorCode ierr;
665508a22f4bSMatthew G. Knepley 
665608a22f4bSMatthew G. Knepley   PetscFunctionBeginUser;
6657f95ace6aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6658f95ace6aSMatthew G. Knepley   PetscValidPointer(ranks, 2);
665908a22f4bSMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr);
666008a22f4bSMatthew G. Knepley   ierr = DMClone(dm, &rdm);CHKERRQ(ierr);
666108a22f4bSMatthew G. Knepley   ierr = DMGetDimension(rdm, &dim);CHKERRQ(ierr);
6662f95ace6aSMatthew G. Knepley   ierr = PetscFECreateDefault(PetscObjectComm((PetscObject) rdm), dim, 1, PETSC_TRUE, "PETSc___rank_", -1, &fe);CHKERRQ(ierr);
666308a22f4bSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) fe, "rank");CHKERRQ(ierr);
666408a22f4bSMatthew G. Knepley   ierr = DMGetDS(rdm, &prob);CHKERRQ(ierr);
666508a22f4bSMatthew G. Knepley   ierr = PetscDSSetDiscretization(prob, 0, (PetscObject) fe);CHKERRQ(ierr);
666608a22f4bSMatthew G. Knepley   ierr = PetscFEDestroy(&fe);CHKERRQ(ierr);
666708a22f4bSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(rdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
666808a22f4bSMatthew G. Knepley   ierr = DMCreateGlobalVector(rdm, ranks);CHKERRQ(ierr);
666908a22f4bSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *ranks, "partition");CHKERRQ(ierr);
667008a22f4bSMatthew G. Knepley   ierr = VecGetArray(*ranks, &r);CHKERRQ(ierr);
667108a22f4bSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
667208a22f4bSMatthew G. Knepley     PetscScalar *lr;
667308a22f4bSMatthew G. Knepley 
667408a22f4bSMatthew G. Knepley     ierr = DMPlexPointGlobalRef(rdm, c, r, &lr);CHKERRQ(ierr);
667508a22f4bSMatthew G. Knepley     *lr = rank;
667608a22f4bSMatthew G. Knepley   }
667708a22f4bSMatthew G. Knepley   ierr = VecRestoreArray(*ranks, &r);CHKERRQ(ierr);
667808a22f4bSMatthew G. Knepley   ierr = DMDestroy(&rdm);CHKERRQ(ierr);
667908a22f4bSMatthew G. Knepley   PetscFunctionReturn(0);
668008a22f4bSMatthew G. Knepley }
668108a22f4bSMatthew G. Knepley 
6682ca8062c8SMatthew G. Knepley /*@
668318e14f0cSMatthew G. Knepley   DMPlexCreateLabelField - Create a cell field whose value is the label value for that cell
668418e14f0cSMatthew G. Knepley 
668518e14f0cSMatthew G. Knepley   Input Parameters:
668618e14f0cSMatthew G. Knepley + dm    - The DMPlex
668718e14f0cSMatthew G. Knepley - label - The DMLabel
668818e14f0cSMatthew G. Knepley 
668918e14f0cSMatthew G. Knepley   Output Parameter:
669018e14f0cSMatthew G. Knepley . val - The label value field
669118e14f0cSMatthew G. Knepley 
669218e14f0cSMatthew G. Knepley   Options Database Keys:
669318e14f0cSMatthew G. Knepley . -dm_label_view - Adds the label value field into the DM output from -dm_view using the same viewer
669418e14f0cSMatthew G. Knepley 
669518e14f0cSMatthew G. Knepley   Level: intermediate
669618e14f0cSMatthew G. Knepley 
669718e14f0cSMatthew G. Knepley .seealso: DMView()
669818e14f0cSMatthew G. Knepley @*/
669918e14f0cSMatthew G. Knepley PetscErrorCode DMPlexCreateLabelField(DM dm, DMLabel label, Vec *val)
670018e14f0cSMatthew G. Knepley {
670118e14f0cSMatthew G. Knepley   DM             rdm;
670218e14f0cSMatthew G. Knepley   PetscDS        prob;
670318e14f0cSMatthew G. Knepley   PetscFE        fe;
670418e14f0cSMatthew G. Knepley   PetscScalar   *v;
670518e14f0cSMatthew G. Knepley   PetscInt       dim, cStart, cEnd, c;
670618e14f0cSMatthew G. Knepley   PetscErrorCode ierr;
670718e14f0cSMatthew G. Knepley 
670818e14f0cSMatthew G. Knepley   PetscFunctionBeginUser;
670918e14f0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
671018e14f0cSMatthew G. Knepley   PetscValidPointer(label, 2);
671118e14f0cSMatthew G. Knepley   PetscValidPointer(val, 3);
671218e14f0cSMatthew G. Knepley   ierr = DMClone(dm, &rdm);CHKERRQ(ierr);
671318e14f0cSMatthew G. Knepley   ierr = DMGetDimension(rdm, &dim);CHKERRQ(ierr);
671418e14f0cSMatthew G. Knepley   ierr = PetscFECreateDefault(PetscObjectComm((PetscObject) rdm), dim, 1, PETSC_TRUE, "PETSc___label_value_", -1, &fe);CHKERRQ(ierr);
671518e14f0cSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) fe, "label_value");CHKERRQ(ierr);
671618e14f0cSMatthew G. Knepley   ierr = DMGetDS(rdm, &prob);CHKERRQ(ierr);
671718e14f0cSMatthew G. Knepley   ierr = PetscDSSetDiscretization(prob, 0, (PetscObject) fe);CHKERRQ(ierr);
671818e14f0cSMatthew G. Knepley   ierr = PetscFEDestroy(&fe);CHKERRQ(ierr);
671918e14f0cSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(rdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
672018e14f0cSMatthew G. Knepley   ierr = DMCreateGlobalVector(rdm, val);CHKERRQ(ierr);
6721effbd7cbSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) *val, "label_value");CHKERRQ(ierr);
672218e14f0cSMatthew G. Knepley   ierr = VecGetArray(*val, &v);CHKERRQ(ierr);
672318e14f0cSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
672418e14f0cSMatthew G. Knepley     PetscScalar *lv;
672518e14f0cSMatthew G. Knepley     PetscInt     cval;
672618e14f0cSMatthew G. Knepley 
672718e14f0cSMatthew G. Knepley     ierr = DMPlexPointGlobalRef(rdm, c, v, &lv);CHKERRQ(ierr);
672818e14f0cSMatthew G. Knepley     ierr = DMLabelGetValue(label, c, &cval);CHKERRQ(ierr);
672918e14f0cSMatthew G. Knepley     *lv = cval;
673018e14f0cSMatthew G. Knepley   }
673118e14f0cSMatthew G. Knepley   ierr = VecRestoreArray(*val, &v);CHKERRQ(ierr);
673218e14f0cSMatthew G. Knepley   ierr = DMDestroy(&rdm);CHKERRQ(ierr);
673318e14f0cSMatthew G. Knepley   PetscFunctionReturn(0);
673418e14f0cSMatthew G. Knepley }
673518e14f0cSMatthew G. Knepley 
673618e14f0cSMatthew G. Knepley /*@
6737ca8062c8SMatthew G. Knepley   DMPlexCheckSymmetry - Check that the adjacency information in the mesh is symmetric.
6738ca8062c8SMatthew G. Knepley 
673969916449SMatthew G. Knepley   Input Parameter:
674069916449SMatthew G. Knepley . dm - The DMPlex object
6741ca8062c8SMatthew G. Knepley 
6742ca8062c8SMatthew G. Knepley   Note: This is a useful diagnostic when creating meshes programmatically.
6743ca8062c8SMatthew G. Knepley 
6744ca8062c8SMatthew G. Knepley   Level: developer
6745ca8062c8SMatthew G. Knepley 
67467d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSkeleton(), DMPlexCheckFaces()
6747ca8062c8SMatthew G. Knepley @*/
6748ca8062c8SMatthew G. Knepley PetscErrorCode DMPlexCheckSymmetry(DM dm)
6749ca8062c8SMatthew G. Knepley {
6750ca8062c8SMatthew G. Knepley   PetscSection    coneSection, supportSection;
6751ca8062c8SMatthew G. Knepley   const PetscInt *cone, *support;
6752ca8062c8SMatthew G. Knepley   PetscInt        coneSize, c, supportSize, s;
675357beb4faSStefano Zampini   PetscInt        pStart, pEnd, p, pp, csize, ssize;
675457beb4faSStefano Zampini   PetscBool       storagecheck = PETSC_TRUE;
6755ca8062c8SMatthew G. Knepley   PetscErrorCode  ierr;
6756ca8062c8SMatthew G. Knepley 
6757ca8062c8SMatthew G. Knepley   PetscFunctionBegin;
6758ca8062c8SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6759ca8062c8SMatthew G. Knepley   ierr = DMPlexGetConeSection(dm, &coneSection);CHKERRQ(ierr);
6760ca8062c8SMatthew G. Knepley   ierr = DMPlexGetSupportSection(dm, &supportSection);CHKERRQ(ierr);
6761ca8062c8SMatthew G. Knepley   /* Check that point p is found in the support of its cone points, and vice versa */
6762ca8062c8SMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
6763ca8062c8SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
6764ca8062c8SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
6765ca8062c8SMatthew G. Knepley     ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
6766ca8062c8SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
676742e66dfaSMatthew G. Knepley       PetscBool dup = PETSC_FALSE;
676842e66dfaSMatthew G. Knepley       PetscInt  d;
676942e66dfaSMatthew G. Knepley       for (d = c-1; d >= 0; --d) {
677042e66dfaSMatthew G. Knepley         if (cone[c] == cone[d]) {dup = PETSC_TRUE; break;}
677142e66dfaSMatthew G. Knepley       }
6772ca8062c8SMatthew G. Knepley       ierr = DMPlexGetSupportSize(dm, cone[c], &supportSize);CHKERRQ(ierr);
6773ca8062c8SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr);
6774ca8062c8SMatthew G. Knepley       for (s = 0; s < supportSize; ++s) {
6775ca8062c8SMatthew G. Knepley         if (support[s] == p) break;
6776ca8062c8SMatthew G. Knepley       }
677742e66dfaSMatthew G. Knepley       if ((s >= supportSize) || (dup && (support[s+1] != p))) {
67788ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", p);CHKERRQ(ierr);
6779ca8062c8SMatthew G. Knepley         for (s = 0; s < coneSize; ++s) {
67808ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[s]);CHKERRQ(ierr);
6781ca8062c8SMatthew G. Knepley         }
6782302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
67838ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", cone[c]);CHKERRQ(ierr);
6784ca8062c8SMatthew G. Knepley         for (s = 0; s < supportSize; ++s) {
67858ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[s]);CHKERRQ(ierr);
6786ca8062c8SMatthew G. Knepley         }
6787302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
67888ccfff9cSToby 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]);
67898ccfff9cSToby Isaac         else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in support of cone point %D", p, cone[c]);
6790ca8062c8SMatthew G. Knepley       }
679142e66dfaSMatthew G. Knepley     }
679257beb4faSStefano Zampini     ierr = DMPlexGetTreeParent(dm, p, &pp, NULL);CHKERRQ(ierr);
679357beb4faSStefano Zampini     if (p != pp) { storagecheck = PETSC_FALSE; continue; }
6794ca8062c8SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
6795ca8062c8SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, p, &support);CHKERRQ(ierr);
6796ca8062c8SMatthew G. Knepley     for (s = 0; s < supportSize; ++s) {
6797ca8062c8SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, support[s], &coneSize);CHKERRQ(ierr);
6798ca8062c8SMatthew G. Knepley       ierr = DMPlexGetCone(dm, support[s], &cone);CHKERRQ(ierr);
6799ca8062c8SMatthew G. Knepley       for (c = 0; c < coneSize; ++c) {
680057beb4faSStefano Zampini         ierr = DMPlexGetTreeParent(dm, cone[c], &pp, NULL);CHKERRQ(ierr);
680157beb4faSStefano Zampini         if (cone[c] != pp) { c = 0; break; }
6802ca8062c8SMatthew G. Knepley         if (cone[c] == p) break;
6803ca8062c8SMatthew G. Knepley       }
6804ca8062c8SMatthew G. Knepley       if (c >= coneSize) {
68058ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", p);CHKERRQ(ierr);
6806ca8062c8SMatthew G. Knepley         for (c = 0; c < supportSize; ++c) {
68078ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[c]);CHKERRQ(ierr);
6808ca8062c8SMatthew G. Knepley         }
6809302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
68108ccfff9cSToby Isaac         ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", support[s]);CHKERRQ(ierr);
6811ca8062c8SMatthew G. Knepley         for (c = 0; c < coneSize; ++c) {
68128ccfff9cSToby Isaac           ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[c]);CHKERRQ(ierr);
6813ca8062c8SMatthew G. Knepley         }
6814302440fdSBarry Smith         ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr);
68158ccfff9cSToby Isaac         SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in cone of support point %D", p, support[s]);
6816ca8062c8SMatthew G. Knepley       }
6817ca8062c8SMatthew G. Knepley     }
6818ca8062c8SMatthew G. Knepley   }
681957beb4faSStefano Zampini   if (storagecheck) {
6820ca8062c8SMatthew G. Knepley     ierr = PetscSectionGetStorageSize(coneSection, &csize);CHKERRQ(ierr);
6821ca8062c8SMatthew G. Knepley     ierr = PetscSectionGetStorageSize(supportSection, &ssize);CHKERRQ(ierr);
68228ccfff9cSToby Isaac     if (csize != ssize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Total cone size %D != Total support size %D", csize, ssize);
682357beb4faSStefano Zampini   }
6824ca8062c8SMatthew G. Knepley   PetscFunctionReturn(0);
6825ca8062c8SMatthew G. Knepley }
6826ca8062c8SMatthew G. Knepley 
6827ca8062c8SMatthew G. Knepley /*@
6828ca8062c8SMatthew G. Knepley   DMPlexCheckSkeleton - Check that each cell has the correct number of vertices
6829ca8062c8SMatthew G. Knepley 
6830ca8062c8SMatthew G. Knepley   Input Parameters:
6831ca8062c8SMatthew G. Knepley + dm - The DMPlex object
683258723a97SMatthew G. Knepley . isSimplex - Are the cells simplices or tensor products
683358723a97SMatthew G. Knepley - cellHeight - Normally 0
6834ca8062c8SMatthew G. Knepley 
6835ca8062c8SMatthew G. Knepley   Note: This is a useful diagnostic when creating meshes programmatically.
6836ca8062c8SMatthew G. Knepley 
6837ca8062c8SMatthew G. Knepley   Level: developer
6838ca8062c8SMatthew G. Knepley 
68397d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSymmetry(), DMPlexCheckFaces()
6840ca8062c8SMatthew G. Knepley @*/
684158723a97SMatthew G. Knepley PetscErrorCode DMPlexCheckSkeleton(DM dm, PetscBool isSimplex, PetscInt cellHeight)
6842ca8062c8SMatthew G. Knepley {
684342363296SMatthew G. Knepley   PetscInt       dim, numCorners, numHybridCorners, vStart, vEnd, cStart, cEnd, cMax, c;
6844ca8062c8SMatthew G. Knepley   PetscErrorCode ierr;
6845ca8062c8SMatthew G. Knepley 
6846ca8062c8SMatthew G. Knepley   PetscFunctionBegin;
6847ca8062c8SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6848c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
6849ca8062c8SMatthew G. Knepley   switch (dim) {
685042363296SMatthew G. Knepley   case 1: numCorners = isSimplex ? 2 : 2; numHybridCorners = isSimplex ? 2 : 2; break;
685142363296SMatthew G. Knepley   case 2: numCorners = isSimplex ? 3 : 4; numHybridCorners = isSimplex ? 4 : 4; break;
685242363296SMatthew G. Knepley   case 3: numCorners = isSimplex ? 4 : 8; numHybridCorners = isSimplex ? 6 : 8; break;
6853ca8062c8SMatthew G. Knepley   default:
68548ccfff9cSToby Isaac     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle meshes of dimension %D", dim);
6855ca8062c8SMatthew G. Knepley   }
685658723a97SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
685758723a97SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
6858ca8062c8SMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cMax, NULL, NULL, NULL);CHKERRQ(ierr);
6859ca8062c8SMatthew G. Knepley   cMax = cMax >= 0 ? cMax : cEnd;
6860ca8062c8SMatthew G. Knepley   for (c = cStart; c < cMax; ++c) {
686158723a97SMatthew G. Knepley     PetscInt *closure = NULL, closureSize, cl, coneSize = 0;
686258723a97SMatthew G. Knepley 
686358723a97SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
686458723a97SMatthew G. Knepley     for (cl = 0; cl < closureSize*2; cl += 2) {
686558723a97SMatthew G. Knepley       const PetscInt p = closure[cl];
686658723a97SMatthew G. Knepley       if ((p >= vStart) && (p < vEnd)) ++coneSize;
686758723a97SMatthew G. Knepley     }
686858723a97SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
68698ccfff9cSToby Isaac     if (coneSize != numCorners) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D has  %D vertices != %D", c, coneSize, numCorners);
6870ca8062c8SMatthew G. Knepley   }
687142363296SMatthew G. Knepley   for (c = cMax; c < cEnd; ++c) {
687242363296SMatthew G. Knepley     PetscInt *closure = NULL, closureSize, cl, coneSize = 0;
687342363296SMatthew G. Knepley 
687442363296SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
687542363296SMatthew G. Knepley     for (cl = 0; cl < closureSize*2; cl += 2) {
687642363296SMatthew G. Knepley       const PetscInt p = closure[cl];
687742363296SMatthew G. Knepley       if ((p >= vStart) && (p < vEnd)) ++coneSize;
687842363296SMatthew G. Knepley     }
687942363296SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
68808ccfff9cSToby Isaac     if (coneSize > numHybridCorners) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Hybrid cell %D has  %D vertices > %D", c, coneSize, numHybridCorners);
688142363296SMatthew G. Knepley   }
6882ca8062c8SMatthew G. Knepley   PetscFunctionReturn(0);
6883ca8062c8SMatthew G. Knepley }
68849bf0dad6SMatthew G. Knepley 
68859bf0dad6SMatthew G. Knepley /*@
68869bf0dad6SMatthew 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
68879bf0dad6SMatthew G. Knepley 
68889bf0dad6SMatthew G. Knepley   Input Parameters:
68899bf0dad6SMatthew G. Knepley + dm - The DMPlex object
68909bf0dad6SMatthew G. Knepley . isSimplex - Are the cells simplices or tensor products
68919bf0dad6SMatthew G. Knepley - cellHeight - Normally 0
68929bf0dad6SMatthew G. Knepley 
68939bf0dad6SMatthew G. Knepley   Note: This is a useful diagnostic when creating meshes programmatically.
68949bf0dad6SMatthew G. Knepley 
68959bf0dad6SMatthew G. Knepley   Level: developer
68969bf0dad6SMatthew G. Knepley 
68977d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSymmetry(), DMPlexCheckSkeleton()
68989bf0dad6SMatthew G. Knepley @*/
68999bf0dad6SMatthew G. Knepley PetscErrorCode DMPlexCheckFaces(DM dm, PetscBool isSimplex, PetscInt cellHeight)
69009bf0dad6SMatthew G. Knepley {
69013554e41dSMatthew G. Knepley   PetscInt       pMax[4];
69023554e41dSMatthew G. Knepley   PetscInt       dim, vStart, vEnd, cStart, cEnd, c, h;
69039bf0dad6SMatthew G. Knepley   PetscErrorCode ierr;
69049bf0dad6SMatthew G. Knepley 
69059bf0dad6SMatthew G. Knepley   PetscFunctionBegin;
69069bf0dad6SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6907c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
69089bf0dad6SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
690925abba81SMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &pMax[dim], &pMax[dim-1], &pMax[1], &pMax[0]);CHKERRQ(ierr);
69103554e41dSMatthew G. Knepley   for (h = cellHeight; h < dim; ++h) {
69113554e41dSMatthew G. Knepley     ierr = DMPlexGetHeightStratum(dm, h, &cStart, &cEnd);CHKERRQ(ierr);
69123554e41dSMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
69139bf0dad6SMatthew G. Knepley       const PetscInt *cone, *ornt, *faces;
69149bf0dad6SMatthew G. Knepley       PetscInt        numFaces, faceSize, coneSize,f;
69159bf0dad6SMatthew G. Knepley       PetscInt       *closure = NULL, closureSize, cl, numCorners = 0;
69169bf0dad6SMatthew G. Knepley 
691725abba81SMatthew G. Knepley       if (pMax[dim-h] >= 0 && c >= pMax[dim-h]) continue;
69189bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr);
69199bf0dad6SMatthew G. Knepley       ierr = DMPlexGetCone(dm, c, &cone);CHKERRQ(ierr);
69209bf0dad6SMatthew G. Knepley       ierr = DMPlexGetConeOrientation(dm, c, &ornt);CHKERRQ(ierr);
69219bf0dad6SMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
69229bf0dad6SMatthew G. Knepley       for (cl = 0; cl < closureSize*2; cl += 2) {
69239bf0dad6SMatthew G. Knepley         const PetscInt p = closure[cl];
69249bf0dad6SMatthew G. Knepley         if ((p >= vStart) && (p < vEnd)) closure[numCorners++] = p;
69259bf0dad6SMatthew G. Knepley       }
69263554e41dSMatthew G. Knepley       ierr = DMPlexGetRawFaces_Internal(dm, dim-h, numCorners, closure, &numFaces, &faceSize, &faces);CHKERRQ(ierr);
69278ccfff9cSToby Isaac       if (coneSize != numFaces) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D has %D faces but should have %D", c, coneSize, numFaces);
69289bf0dad6SMatthew G. Knepley       for (f = 0; f < numFaces; ++f) {
69299bf0dad6SMatthew G. Knepley         PetscInt *fclosure = NULL, fclosureSize, cl, fnumCorners = 0, v;
69309bf0dad6SMatthew G. Knepley 
69319bf0dad6SMatthew G. Knepley         ierr = DMPlexGetTransitiveClosure_Internal(dm, cone[f], ornt[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr);
69329bf0dad6SMatthew G. Knepley         for (cl = 0; cl < fclosureSize*2; cl += 2) {
69339bf0dad6SMatthew G. Knepley           const PetscInt p = fclosure[cl];
69349bf0dad6SMatthew G. Knepley           if ((p >= vStart) && (p < vEnd)) fclosure[fnumCorners++] = p;
69359bf0dad6SMatthew G. Knepley         }
69368ccfff9cSToby Isaac         if (fnumCorners != faceSize) SETERRQ5(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D (%D) of cell %D has %D vertices but should have %D", cone[f], f, c, fnumCorners, faceSize);
69379bf0dad6SMatthew G. Knepley         for (v = 0; v < fnumCorners; ++v) {
69388ccfff9cSToby Isaac           if (fclosure[v] != faces[f*faceSize+v]) SETERRQ6(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D (%d) of cell %D vertex %D, %D != %D", cone[f], f, c, v, fclosure[v], faces[f*faceSize+v]);
69399bf0dad6SMatthew G. Knepley         }
69409bf0dad6SMatthew G. Knepley         ierr = DMPlexRestoreTransitiveClosure(dm, cone[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr);
69419bf0dad6SMatthew G. Knepley       }
69429bf0dad6SMatthew G. Knepley       ierr = DMPlexRestoreFaces_Internal(dm, dim, c, &numFaces, &faceSize, &faces);CHKERRQ(ierr);
69439bf0dad6SMatthew G. Knepley       ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
69449bf0dad6SMatthew G. Knepley     }
69453554e41dSMatthew G. Knepley   }
6946552f7358SJed Brown   PetscFunctionReturn(0);
6947552f7358SJed Brown }
69483913d7c8SMatthew G. Knepley 
694903da9461SVaclav Hapla static PetscErrorCode DMPlexAreAllConePointsInArray_Private(DM dm, PetscInt p, PetscInt npoints, const PetscInt *points, PetscInt *missingPoint)
695003da9461SVaclav Hapla {
695103da9461SVaclav Hapla   PetscInt i,l,n;
695203da9461SVaclav Hapla   const PetscInt *cone;
695303da9461SVaclav Hapla   PetscErrorCode ierr;
695403da9461SVaclav Hapla 
695503da9461SVaclav Hapla   PetscFunctionBegin;
695603da9461SVaclav Hapla   *missingPoint = -1;
695703da9461SVaclav Hapla   ierr = DMPlexGetConeSize(dm, p, &n);CHKERRQ(ierr);
695803da9461SVaclav Hapla   ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
695903da9461SVaclav Hapla   for (i=0; i<n; i++) {
696003da9461SVaclav Hapla     ierr = PetscFindInt(cone[i], npoints, points, &l);CHKERRQ(ierr);
696103da9461SVaclav Hapla     if (l < 0) {
696203da9461SVaclav Hapla       *missingPoint = cone[i];
696303da9461SVaclav Hapla       break;
696403da9461SVaclav Hapla     }
696503da9461SVaclav Hapla   }
696603da9461SVaclav Hapla   PetscFunctionReturn(0);
696703da9461SVaclav Hapla }
696803da9461SVaclav Hapla 
696903da9461SVaclav Hapla /*@
697003da9461SVaclav Hapla   DMPlexCheckPointSF - Check that several sufficient conditions are met for the point SF of this plex.
697103da9461SVaclav Hapla 
697203da9461SVaclav Hapla   Input Parameters:
697303da9461SVaclav Hapla . dm - The DMPlex object
697403da9461SVaclav Hapla 
697503da9461SVaclav Hapla   Note: This is mainly intended for debugging/testing purposes.
697603da9461SVaclav Hapla 
697703da9461SVaclav Hapla   Level: developer
697803da9461SVaclav Hapla 
697903da9461SVaclav Hapla .seealso: DMGetPointSF(), DMPlexCheckSymmetry(), DMPlexCheckSkeleton(), DMPlexCheckFaces()
698003da9461SVaclav Hapla @*/
698103da9461SVaclav Hapla PetscErrorCode DMPlexCheckPointSF(DM dm)
698203da9461SVaclav Hapla {
698303da9461SVaclav Hapla   PetscSF sf;
698403da9461SVaclav Hapla   PetscInt d,depth,i,nleaves,p,plo,phi,missingPoint;
698503da9461SVaclav Hapla   const PetscInt *locals;
698603da9461SVaclav Hapla   PetscErrorCode ierr;
698703da9461SVaclav Hapla 
698803da9461SVaclav Hapla   PetscFunctionBegin;
698903da9461SVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
699003da9461SVaclav Hapla   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
699103da9461SVaclav Hapla   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
699203da9461SVaclav Hapla   ierr = PetscSFGetGraph(sf, NULL, &nleaves, &locals, NULL);CHKERRQ(ierr);
699303da9461SVaclav Hapla 
6994ece87651SVaclav Hapla   /* 1) check there are no faces in 2D, cells in 3D, in interface */
699503da9461SVaclav Hapla   ierr = DMPlexGetVTKCellHeight(dm, &d);CHKERRQ(ierr);
699603da9461SVaclav Hapla   ierr = DMPlexGetHeightStratum(dm, d, &plo, &phi);CHKERRQ(ierr);
699703da9461SVaclav Hapla   for (i=0; i<nleaves; i++) {
699803da9461SVaclav Hapla     p = locals[i];
699903da9461SVaclav Hapla     if (p >= plo && p < phi) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "point SF contains %d which is a cell",p);
700003da9461SVaclav Hapla   }
7001ece87651SVaclav Hapla 
7002ece87651SVaclav Hapla   /* 2) if some point is in interface, then all its cone points must be also in interface  */
7003ece87651SVaclav Hapla   for (i=0; i<nleaves; i++) {
7004ece87651SVaclav Hapla     p = locals[i];
7005ece87651SVaclav Hapla     ierr = DMPlexAreAllConePointsInArray_Private(dm, p, nleaves, locals, &missingPoint);CHKERRQ(ierr);
7006ece87651SVaclav Hapla     if (missingPoint >= 0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "point SF contains %d but not %d from its cone",p,missingPoint);
7007ece87651SVaclav Hapla   }
700803da9461SVaclav Hapla   PetscFunctionReturn(0);
700903da9461SVaclav Hapla }
701003da9461SVaclav Hapla 
7011068a5610SStefano Zampini typedef struct cell_stats
7012068a5610SStefano Zampini {
7013068a5610SStefano Zampini   PetscReal min, max, sum, squaresum;
7014068a5610SStefano Zampini   PetscInt  count;
7015068a5610SStefano Zampini } cell_stats_t;
7016068a5610SStefano Zampini 
7017068a5610SStefano Zampini static void cell_stats_reduce(void *a, void *b, int * len, MPI_Datatype *datatype)
7018068a5610SStefano Zampini {
7019068a5610SStefano Zampini   PetscInt i, N = *len;
7020068a5610SStefano Zampini 
7021068a5610SStefano Zampini   for (i = 0; i < N; i++) {
7022068a5610SStefano Zampini     cell_stats_t *A = (cell_stats_t *) a;
7023068a5610SStefano Zampini     cell_stats_t *B = (cell_stats_t *) b;
7024068a5610SStefano Zampini 
7025068a5610SStefano Zampini     B->min = PetscMin(A->min,B->min);
7026068a5610SStefano Zampini     B->max = PetscMax(A->max,B->max);
7027068a5610SStefano Zampini     B->sum += A->sum;
7028068a5610SStefano Zampini     B->squaresum += A->squaresum;
7029068a5610SStefano Zampini     B->count += A->count;
7030068a5610SStefano Zampini   }
7031068a5610SStefano Zampini }
7032068a5610SStefano Zampini 
7033068a5610SStefano Zampini /*@
7034068a5610SStefano Zampini   DMPlexCheckCellShape - Checks the Jacobian of the mapping and computes some minimal statistics.
7035068a5610SStefano Zampini 
7036068a5610SStefano Zampini   Input Parameters:
7037068a5610SStefano Zampini + dm - The DMPlex object
7038068a5610SStefano Zampini - output - If true, statistics will be displayed on stdout
7039068a5610SStefano Zampini 
7040068a5610SStefano Zampini   Note: This is mainly intended for debugging/testing purposes.
7041068a5610SStefano Zampini 
7042068a5610SStefano Zampini   Level: developer
7043068a5610SStefano Zampini 
7044068a5610SStefano Zampini .seealso: DMPlexCheckSymmetry(), DMPlexCheckSkeleton(), DMPlexCheckFaces()
7045068a5610SStefano Zampini @*/
7046068a5610SStefano Zampini PetscErrorCode DMPlexCheckCellShape(DM dm, PetscBool output)
7047068a5610SStefano Zampini {
7048068a5610SStefano Zampini   PetscMPIInt    rank,size;
7049068a5610SStefano Zampini   PetscInt       dim, c, cStart, cEnd, cMax, count = 0;
7050068a5610SStefano Zampini   cell_stats_t   stats, globalStats;
7051068a5610SStefano Zampini   PetscReal      *J, *invJ, min = 0, max = 0, mean = 0, stdev = 0;
7052068a5610SStefano Zampini   MPI_Comm       comm = PetscObjectComm((PetscObject)dm);
7053068a5610SStefano Zampini   DM             dmCoarse;
7054068a5610SStefano Zampini   PetscErrorCode ierr;
7055068a5610SStefano Zampini 
7056068a5610SStefano Zampini   PetscFunctionBegin;
7057068a5610SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7058068a5610SStefano Zampini   stats.min   = PETSC_MAX_REAL;
7059068a5610SStefano Zampini   stats.max   = PETSC_MIN_REAL;
7060068a5610SStefano Zampini   stats.sum   = stats.squaresum = 0.;
7061068a5610SStefano Zampini   stats.count = 0;
7062068a5610SStefano Zampini 
7063068a5610SStefano Zampini   ierr = DMGetCoordinateDim(dm,&dim);CHKERRQ(ierr);
7064068a5610SStefano Zampini   ierr = PetscMalloc2(dim * dim, &J, dim * dim, &invJ);CHKERRQ(ierr);
7065068a5610SStefano Zampini   ierr = DMPlexGetHeightStratum(dm,0,&cStart,&cEnd);CHKERRQ(ierr);
7066068a5610SStefano Zampini   ierr = DMPlexGetHybridBounds(dm,&cMax,NULL,NULL,NULL);CHKERRQ(ierr);
7067068a5610SStefano Zampini   cMax = cMax < 0 ? cEnd : cMax;
7068068a5610SStefano Zampini   for (c = cStart; c < cMax; c++) {
7069068a5610SStefano Zampini     PetscInt  i;
7070068a5610SStefano Zampini     PetscReal frobJ = 0., frobInvJ = 0., cond2, cond, detJ;
7071068a5610SStefano Zampini 
7072068a5610SStefano Zampini     ierr = DMPlexComputeCellGeometryAffineFEM(dm,c,NULL,J,invJ,&detJ);CHKERRQ(ierr);
7073068a5610SStefano Zampini     if (detJ < 0.0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Mesh cell %D is inverted", c);
7074068a5610SStefano Zampini     for (i = 0; i < dim * dim; i++) {
7075068a5610SStefano Zampini       frobJ    += J[i] * J[i];
7076068a5610SStefano Zampini       frobInvJ += invJ[i] * invJ[i];
7077068a5610SStefano Zampini     }
7078068a5610SStefano Zampini     cond2 = frobJ * frobInvJ;
7079068a5610SStefano Zampini     cond  = PetscSqrtReal(cond2);
7080068a5610SStefano Zampini 
7081068a5610SStefano Zampini     stats.min        = PetscMin(stats.min,cond);
7082068a5610SStefano Zampini     stats.max        = PetscMax(stats.max,cond);
7083068a5610SStefano Zampini     stats.sum       += cond;
7084068a5610SStefano Zampini     stats.squaresum += cond2;
7085068a5610SStefano Zampini     stats.count++;
7086068a5610SStefano Zampini   }
7087068a5610SStefano Zampini 
7088068a5610SStefano Zampini   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
7089068a5610SStefano Zampini   if (size > 1) {
7090068a5610SStefano Zampini     PetscMPIInt   blockLengths[2] = {4,1};
7091068a5610SStefano Zampini     MPI_Aint      blockOffsets[2] = {offsetof(cell_stats_t,min),offsetof(cell_stats_t,count)};
7092068a5610SStefano Zampini     MPI_Datatype  blockTypes[2]   = {MPIU_REAL,MPIU_INT}, statType;
7093068a5610SStefano Zampini     MPI_Op        statReduce;
7094068a5610SStefano Zampini 
7095068a5610SStefano Zampini     ierr = MPI_Type_create_struct(2,blockLengths,blockOffsets,blockTypes,&statType);CHKERRQ(ierr);
7096068a5610SStefano Zampini     ierr = MPI_Type_commit(&statType);CHKERRQ(ierr);
7097068a5610SStefano Zampini     ierr = MPI_Op_create(cell_stats_reduce, PETSC_TRUE, &statReduce);CHKERRQ(ierr);
7098068a5610SStefano Zampini     ierr = MPI_Reduce(&stats,&globalStats,1,statType,statReduce,0,comm);CHKERRQ(ierr);
7099068a5610SStefano Zampini     ierr = MPI_Op_free(&statReduce);CHKERRQ(ierr);
7100068a5610SStefano Zampini     ierr = MPI_Type_free(&statType);CHKERRQ(ierr);
7101068a5610SStefano Zampini   } else {
7102068a5610SStefano Zampini     ierr = PetscMemcpy(&globalStats,&stats,sizeof(stats));CHKERRQ(ierr);
7103068a5610SStefano Zampini   }
7104068a5610SStefano Zampini 
7105068a5610SStefano Zampini   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
7106068a5610SStefano Zampini   if (!rank) {
7107068a5610SStefano Zampini     count = globalStats.count;
7108068a5610SStefano Zampini     min   = globalStats.min;
7109068a5610SStefano Zampini     max   = globalStats.max;
7110068a5610SStefano Zampini     mean  = globalStats.sum / globalStats.count;
7111068a5610SStefano Zampini     stdev = globalStats.count > 1 ? PetscSqrtReal(PetscMax((globalStats.squaresum - globalStats.count * mean * mean) / (globalStats.count - 1),0)) : 0.0;
7112068a5610SStefano Zampini   }
7113068a5610SStefano Zampini 
7114068a5610SStefano Zampini   if (output) {
7115068a5610SStefano 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);
7116068a5610SStefano Zampini   }
7117068a5610SStefano Zampini   ierr = PetscFree2(J,invJ);CHKERRQ(ierr);
7118068a5610SStefano Zampini 
7119068a5610SStefano Zampini   ierr = DMGetCoarseDM(dm,&dmCoarse);CHKERRQ(ierr);
7120068a5610SStefano Zampini   if (dmCoarse) {
7121068a5610SStefano Zampini     PetscBool isplex;
7122068a5610SStefano Zampini 
7123068a5610SStefano Zampini     ierr = PetscObjectTypeCompare((PetscObject)dmCoarse,DMPLEX,&isplex);CHKERRQ(ierr);
7124068a5610SStefano Zampini     if (isplex) {
7125068a5610SStefano Zampini       ierr = DMPlexCheckCellShape(dmCoarse,output);CHKERRQ(ierr);
7126068a5610SStefano Zampini     }
7127068a5610SStefano Zampini   }
7128068a5610SStefano Zampini   PetscFunctionReturn(0);
7129068a5610SStefano Zampini }
7130068a5610SStefano Zampini 
7131bceba477SMatthew G. Knepley /* Pointwise interpolation
7132bceba477SMatthew G. Knepley      Just code FEM for now
7133bceba477SMatthew G. Knepley      u^f = I u^c
71344ca5e9f5SMatthew G. Knepley      sum_k u^f_k phi^f_k = I sum_j u^c_j phi^c_j
71354ca5e9f5SMatthew G. Knepley      u^f_i = sum_j psi^f_i I phi^c_j u^c_j
71364ca5e9f5SMatthew G. Knepley      I_{ij} = psi^f_i phi^c_j
7137bceba477SMatthew G. Knepley */
7138bceba477SMatthew G. Knepley PetscErrorCode DMCreateInterpolation_Plex(DM dmCoarse, DM dmFine, Mat *interpolation, Vec *scaling)
7139bceba477SMatthew G. Knepley {
7140bceba477SMatthew G. Knepley   PetscSection   gsc, gsf;
7141bceba477SMatthew G. Knepley   PetscInt       m, n;
7142a063dac3SMatthew G. Knepley   void          *ctx;
714368132eb9SMatthew G. Knepley   DM             cdm;
7144fd194bc8SStefano Zampini   PetscBool      regular, ismatis;
7145bceba477SMatthew G. Knepley   PetscErrorCode ierr;
7146bceba477SMatthew G. Knepley 
7147bceba477SMatthew G. Knepley   PetscFunctionBegin;
7148e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr);
7149bceba477SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr);
7150e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr);
7151bceba477SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr);
715268132eb9SMatthew G. Knepley 
7153fd194bc8SStefano Zampini   ierr = PetscStrcmp(dmCoarse->mattype, MATIS, &ismatis);CHKERRQ(ierr);
7154bceba477SMatthew G. Knepley   ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), interpolation);CHKERRQ(ierr);
7155bceba477SMatthew G. Knepley   ierr = MatSetSizes(*interpolation, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
7156fd194bc8SStefano Zampini   ierr = MatSetType(*interpolation, ismatis ? MATAIJ : dmCoarse->mattype);CHKERRQ(ierr);
7157a063dac3SMatthew G. Knepley   ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr);
715868132eb9SMatthew G. Knepley 
7159a8fb8f29SToby Isaac   ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr);
716068132eb9SMatthew G. Knepley   ierr = DMPlexGetRegularRefinement(dmFine, &regular);CHKERRQ(ierr);
716168132eb9SMatthew G. Knepley   if (regular && cdm == dmCoarse) {ierr = DMPlexComputeInterpolatorNested(dmCoarse, dmFine, *interpolation, ctx);CHKERRQ(ierr);}
716268132eb9SMatthew G. Knepley   else                            {ierr = DMPlexComputeInterpolatorGeneral(dmCoarse, dmFine, *interpolation, ctx);CHKERRQ(ierr);}
716368132eb9SMatthew G. Knepley   ierr = MatViewFromOptions(*interpolation, NULL, "-interp_mat_view");CHKERRQ(ierr);
71644db47ee9SStefano Zampini   if (scaling) {
71655d1c2e58SMatthew G. Knepley     /* Use naive scaling */
71665d1c2e58SMatthew G. Knepley     ierr = DMCreateInterpolationScale(dmCoarse, dmFine, *interpolation, scaling);CHKERRQ(ierr);
71674db47ee9SStefano Zampini   }
7168a063dac3SMatthew G. Knepley   PetscFunctionReturn(0);
7169a063dac3SMatthew G. Knepley }
7170bceba477SMatthew G. Knepley 
71716dbf9973SLawrence Mitchell PetscErrorCode DMCreateInjection_Plex(DM dmCoarse, DM dmFine, Mat *mat)
7172a063dac3SMatthew G. Knepley {
717390748bafSMatthew G. Knepley   PetscErrorCode ierr;
71746dbf9973SLawrence Mitchell   VecScatter     ctx;
717590748bafSMatthew G. Knepley 
7176a063dac3SMatthew G. Knepley   PetscFunctionBegin;
71776dbf9973SLawrence Mitchell   ierr = DMPlexComputeInjectorFEM(dmCoarse, dmFine, &ctx, NULL);CHKERRQ(ierr);
71786dbf9973SLawrence Mitchell   ierr = MatCreateScatter(PetscObjectComm((PetscObject)ctx), ctx, mat);CHKERRQ(ierr);
71796dbf9973SLawrence Mitchell   ierr = VecScatterDestroy(&ctx);CHKERRQ(ierr);
7180bceba477SMatthew G. Knepley   PetscFunctionReturn(0);
7181bceba477SMatthew G. Knepley }
7182bceba477SMatthew G. Knepley 
7183bd041c0cSMatthew G. Knepley PetscErrorCode DMCreateMassMatrix_Plex(DM dmCoarse, DM dmFine, Mat *mass)
7184bd041c0cSMatthew G. Knepley {
7185bd041c0cSMatthew G. Knepley   PetscSection   gsc, gsf;
7186bd041c0cSMatthew G. Knepley   PetscInt       m, n;
7187bd041c0cSMatthew G. Knepley   void          *ctx;
7188bd041c0cSMatthew G. Knepley   DM             cdm;
7189bd041c0cSMatthew G. Knepley   PetscBool      regular;
7190bd041c0cSMatthew G. Knepley   PetscErrorCode ierr;
7191bd041c0cSMatthew G. Knepley 
7192bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
7193e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr);
7194bd041c0cSMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr);
7195e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr);
7196bd041c0cSMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr);
7197bd041c0cSMatthew G. Knepley 
7198bd041c0cSMatthew G. Knepley   ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), mass);CHKERRQ(ierr);
7199bd041c0cSMatthew G. Knepley   ierr = MatSetSizes(*mass, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
7200bd041c0cSMatthew G. Knepley   ierr = MatSetType(*mass, dmCoarse->mattype);CHKERRQ(ierr);
7201bd041c0cSMatthew G. Knepley   ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr);
7202bd041c0cSMatthew G. Knepley 
7203bd041c0cSMatthew G. Knepley   ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr);
7204bd041c0cSMatthew G. Knepley   ierr = DMPlexGetRegularRefinement(dmFine, &regular);CHKERRQ(ierr);
7205bd041c0cSMatthew G. Knepley   if (regular && cdm == dmCoarse) {ierr = DMPlexComputeMassMatrixNested(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);}
7206bd041c0cSMatthew G. Knepley   else                            {ierr = DMPlexComputeMassMatrixGeneral(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);}
7207bd041c0cSMatthew G. Knepley   ierr = MatViewFromOptions(*mass, NULL, "-mass_mat_view");CHKERRQ(ierr);
7208bd041c0cSMatthew G. Knepley   PetscFunctionReturn(0);
7209bd041c0cSMatthew G. Knepley }
7210bd041c0cSMatthew G. Knepley 
7211fd59a867SMatthew G. Knepley PetscErrorCode DMCreateDefaultSection_Plex(DM dm)
7212fd59a867SMatthew G. Knepley {
7213fd59a867SMatthew G. Knepley   PetscSection   section;
7214ab1d0545SMatthew G. Knepley   IS            *bcPoints, *bcComps;
7215ebb3236fSMatthew G. Knepley   PetscBool     *isFE;
7216286d8613SMatthew G. Knepley   PetscInt      *bcFields, *numComp, *numDof;
7217ebb3236fSMatthew G. Knepley   PetscInt       depth, dim, numBd, numBC = 0, numFields, bd, bc = 0, f;
7218ebb3236fSMatthew G. Knepley   PetscInt       cStart, cEnd, cEndInterior;
7219fd59a867SMatthew G. Knepley   PetscErrorCode ierr;
7220fd59a867SMatthew G. Knepley 
7221fd59a867SMatthew G. Knepley   PetscFunctionBegin;
7222ebb3236fSMatthew G. Knepley   ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
7223ebb3236fSMatthew G. Knepley   /* FE and FV boundary conditions are handled slightly differently */
7224ebb3236fSMatthew G. Knepley   ierr = PetscMalloc1(numFields, &isFE);CHKERRQ(ierr);
7225ebb3236fSMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
7226ebb3236fSMatthew G. Knepley     PetscObject  obj;
7227ebb3236fSMatthew G. Knepley     PetscClassId id;
7228ebb3236fSMatthew G. Knepley 
7229ebb3236fSMatthew G. Knepley     ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr);
7230ebb3236fSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
7231ebb3236fSMatthew G. Knepley     if (id == PETSCFE_CLASSID)      {isFE[f] = PETSC_TRUE;}
7232ebb3236fSMatthew G. Knepley     else if (id == PETSCFV_CLASSID) {isFE[f] = PETSC_FALSE;}
72338ccfff9cSToby Isaac     else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", f);
7234ebb3236fSMatthew G. Knepley   }
72352f900235SMatthew G. Knepley   /* Allocate boundary point storage for FEM boundaries */
7236286d8613SMatthew G. Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
7237c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
7238ebb3236fSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
7239ebb3236fSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
7240dff059c6SToby Isaac   ierr = PetscDSGetNumBoundary(dm->prob, &numBd);CHKERRQ(ierr);
7241fdafae62SVaclav Hapla   if (!numFields && numBd) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "number of fields is zero and number of boundary conditions is nonzero (this should never happen)");
7242fd59a867SMatthew G. Knepley   for (bd = 0; bd < numBd; ++bd) {
72432f900235SMatthew G. Knepley     PetscInt                field;
7244f971fd6bSMatthew G. Knepley     DMBoundaryConditionType type;
7245385532a5SToby Isaac     const char             *labelName;
7246385532a5SToby Isaac     DMLabel                 label;
72472f900235SMatthew G. Knepley 
7248f971fd6bSMatthew G. Knepley     ierr = PetscDSGetBoundary(dm->prob, bd, &type, NULL, &labelName, &field, NULL, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
7249385532a5SToby Isaac     ierr = DMGetLabel(dm,labelName,&label);CHKERRQ(ierr);
7250f971fd6bSMatthew G. Knepley     if (label && isFE[field] && (type & DM_BC_ESSENTIAL)) ++numBC;
7251fd59a867SMatthew G. Knepley   }
72522f900235SMatthew G. Knepley   /* Add ghost cell boundaries for FVM */
7253ebb3236fSMatthew G. Knepley   for (f = 0; f < numFields; ++f) if (!isFE[f] && cEndInterior >= 0) ++numBC;
72546c8d74c4SMatthew G. Knepley   ierr = PetscCalloc3(numBC,&bcFields,numBC,&bcPoints,numBC,&bcComps);CHKERRQ(ierr);
7255ebb3236fSMatthew G. Knepley   /* Constrain ghost cells for FV */
7256ebb3236fSMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
7257ebb3236fSMatthew G. Knepley     PetscInt *newidx, c;
7258ebb3236fSMatthew G. Knepley 
7259ebb3236fSMatthew G. Knepley     if (isFE[f] || cEndInterior < 0) continue;
7260ebb3236fSMatthew G. Knepley     ierr = PetscMalloc1(cEnd-cEndInterior,&newidx);CHKERRQ(ierr);
7261ebb3236fSMatthew G. Knepley     for (c = cEndInterior; c < cEnd; ++c) newidx[c-cEndInterior] = c;
7262ebb3236fSMatthew G. Knepley     bcFields[bc] = f;
7263ebb3236fSMatthew G. Knepley     ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), cEnd-cEndInterior, newidx, PETSC_OWN_POINTER, &bcPoints[bc++]);CHKERRQ(ierr);
7264ebb3236fSMatthew G. Knepley   }
7265ebb3236fSMatthew G. Knepley   /* Handle FEM Dirichlet boundaries */
7266ebb3236fSMatthew G. Knepley   for (bd = 0; bd < numBd; ++bd) {
7267fd59a867SMatthew G. Knepley     const char             *bdLabel;
7268fd59a867SMatthew G. Knepley     DMLabel                 label;
72690e0f25f2SMatthew G. Knepley     const PetscInt         *comps;
7270fd59a867SMatthew G. Knepley     const PetscInt         *values;
72710e0f25f2SMatthew G. Knepley     PetscInt                bd2, field, numComps, numValues;
7272f971fd6bSMatthew G. Knepley     DMBoundaryConditionType type;
7273f971fd6bSMatthew G. Knepley     PetscBool               duplicate = PETSC_FALSE;
7274fd59a867SMatthew G. Knepley 
7275f971fd6bSMatthew G. Knepley     ierr = PetscDSGetBoundary(dm->prob, bd, &type, NULL, &bdLabel, &field, &numComps, &comps, NULL, &numValues, &values, NULL);CHKERRQ(ierr);
7276c58f1c22SToby Isaac     ierr = DMGetLabel(dm, bdLabel, &label);CHKERRQ(ierr);
7277385532a5SToby Isaac     if (!isFE[field] || !label) continue;
7278ebb3236fSMatthew G. Knepley     /* Only want to modify label once */
72797391c1cbSMatthew G. Knepley     for (bd2 = 0; bd2 < bd; ++bd2) {
72807391c1cbSMatthew G. Knepley       const char *bdname;
7281dff059c6SToby Isaac       ierr = PetscDSGetBoundary(dm->prob, bd2, NULL, NULL, &bdname, NULL, NULL, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
72827391c1cbSMatthew G. Knepley       ierr = PetscStrcmp(bdname, bdLabel, &duplicate);CHKERRQ(ierr);
72837391c1cbSMatthew G. Knepley       if (duplicate) break;
72847391c1cbSMatthew G. Knepley     }
7285ebb3236fSMatthew G. Knepley     if (!duplicate && (isFE[field])) {
7286b0bf5782SToby Isaac       /* don't complete cells, which are just present to give orientation to the boundary */
7287092e5057SToby Isaac       ierr = DMPlexLabelComplete(dm, label);CHKERRQ(ierr);
72887391c1cbSMatthew G. Knepley     }
7289ebb3236fSMatthew G. Knepley     /* Filter out cells, if you actually want to constrain cells you need to do things by hand right now */
7290f971fd6bSMatthew G. Knepley     if (type & DM_BC_ESSENTIAL) {
729193a5981aSMatthew G. Knepley       PetscInt       *newidx;
7292ebb3236fSMatthew G. Knepley       PetscInt        n, newn = 0, p, v;
729393a5981aSMatthew G. Knepley 
7294fd59a867SMatthew G. Knepley       bcFields[bc] = field;
72950e0f25f2SMatthew G. Knepley       if (numComps) {ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), numComps, comps, PETSC_COPY_VALUES, &bcComps[bc]);CHKERRQ(ierr);}
7296ebb3236fSMatthew G. Knepley       for (v = 0; v < numValues; ++v) {
7297ebb3236fSMatthew G. Knepley         IS              tmp;
7298ebb3236fSMatthew G. Knepley         const PetscInt *idx;
7299ebb3236fSMatthew G. Knepley 
7300c58f1c22SToby Isaac         ierr = DMGetStratumIS(dm, bdLabel, values[v], &tmp);CHKERRQ(ierr);
7301ebb3236fSMatthew G. Knepley         if (!tmp) continue;
730293a5981aSMatthew G. Knepley         ierr = ISGetLocalSize(tmp, &n);CHKERRQ(ierr);
730393a5981aSMatthew G. Knepley         ierr = ISGetIndices(tmp, &idx);CHKERRQ(ierr);
7304ebb3236fSMatthew G. Knepley         if (isFE[field]) {
730593a5981aSMatthew G. Knepley           for (p = 0; p < n; ++p) if ((idx[p] < cStart) || (idx[p] >= cEnd)) ++newn;
7306ebb3236fSMatthew G. Knepley         } else {
7307ebb3236fSMatthew G. Knepley           for (p = 0; p < n; ++p) if ((idx[p] >= cStart) || (idx[p] < cEnd)) ++newn;
7308ebb3236fSMatthew G. Knepley         }
730993a5981aSMatthew G. Knepley         ierr = ISRestoreIndices(tmp, &idx);CHKERRQ(ierr);
731093a5981aSMatthew G. Knepley         ierr = ISDestroy(&tmp);CHKERRQ(ierr);
7311fd59a867SMatthew G. Knepley       }
7312ebb3236fSMatthew G. Knepley       ierr = PetscMalloc1(newn,&newidx);CHKERRQ(ierr);
7313ebb3236fSMatthew G. Knepley       newn = 0;
7314ebb3236fSMatthew G. Knepley       for (v = 0; v < numValues; ++v) {
7315ebb3236fSMatthew G. Knepley         IS              tmp;
7316ebb3236fSMatthew G. Knepley         const PetscInt *idx;
7317ebb3236fSMatthew G. Knepley 
7318c58f1c22SToby Isaac         ierr = DMGetStratumIS(dm, bdLabel, values[v], &tmp);CHKERRQ(ierr);
7319ebb3236fSMatthew G. Knepley         if (!tmp) continue;
7320ebb3236fSMatthew G. Knepley         ierr = ISGetLocalSize(tmp, &n);CHKERRQ(ierr);
7321ebb3236fSMatthew G. Knepley         ierr = ISGetIndices(tmp, &idx);CHKERRQ(ierr);
7322ebb3236fSMatthew G. Knepley         if (isFE[field]) {
7323ebb3236fSMatthew G. Knepley           for (p = 0; p < n; ++p) if ((idx[p] < cStart) || (idx[p] >= cEnd)) newidx[newn++] = idx[p];
7324ebb3236fSMatthew G. Knepley         } else {
7325ebb3236fSMatthew G. Knepley           for (p = 0; p < n; ++p) if ((idx[p] >= cStart) || (idx[p] < cEnd)) newidx[newn++] = idx[p];
7326ebb3236fSMatthew G. Knepley         }
7327ebb3236fSMatthew G. Knepley         ierr = ISRestoreIndices(tmp, &idx);CHKERRQ(ierr);
7328ebb3236fSMatthew G. Knepley         ierr = ISDestroy(&tmp);CHKERRQ(ierr);
7329ebb3236fSMatthew G. Knepley       }
7330ebb3236fSMatthew G. Knepley       ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), newn, newidx, PETSC_OWN_POINTER, &bcPoints[bc++]);CHKERRQ(ierr);
7331ebb3236fSMatthew G. Knepley     }
7332fd59a867SMatthew G. Knepley   }
7333fd59a867SMatthew G. Knepley   /* Handle discretization */
7334ebb3236fSMatthew G. Knepley   ierr = PetscCalloc2(numFields,&numComp,numFields*(dim+1),&numDof);CHKERRQ(ierr);
7335fd59a867SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
73360bacfa0aSMatthew G. Knepley     PetscObject obj;
73370bacfa0aSMatthew G. Knepley 
73380bacfa0aSMatthew G. Knepley     ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr);
7339ebb3236fSMatthew G. Knepley     if (isFE[f]) {
73400bacfa0aSMatthew G. Knepley       PetscFE         fe = (PetscFE) obj;
7341286d8613SMatthew G. Knepley       const PetscInt *numFieldDof;
7342fd59a867SMatthew G. Knepley       PetscInt        d;
7343fd59a867SMatthew G. Knepley 
7344fd59a867SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &numComp[f]);CHKERRQ(ierr);
7345286d8613SMatthew G. Knepley       ierr = PetscFEGetNumDof(fe, &numFieldDof);CHKERRQ(ierr);
7346286d8613SMatthew G. Knepley       for (d = 0; d < dim+1; ++d) numDof[f*(dim+1)+d] = numFieldDof[d];
7347ebb3236fSMatthew G. Knepley     } else {
73480bacfa0aSMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
73490bacfa0aSMatthew G. Knepley 
73500bacfa0aSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &numComp[f]);CHKERRQ(ierr);
73510bacfa0aSMatthew G. Knepley       numDof[f*(dim+1)+dim] = numComp[f];
7352ebb3236fSMatthew G. Knepley     }
7353fd59a867SMatthew G. Knepley   }
7354286d8613SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
7355286d8613SMatthew G. Knepley     PetscInt d;
7356286d8613SMatthew G. Knepley     for (d = 1; d < dim; ++d) {
7357286d8613SMatthew G. Knepley       if ((numDof[f*(dim+1)+d] > 0) && (depth < dim)) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Mesh must be interpolated when unknowns are specified on edges or faces.");
7358286d8613SMatthew G. Knepley     }
7359286d8613SMatthew G. Knepley   }
7360ab1d0545SMatthew G. Knepley   ierr = DMPlexCreateSection(dm, dim, numFields, numComp, numDof, numBC, bcFields, bcComps, bcPoints, NULL, &section);CHKERRQ(ierr);
7361fd59a867SMatthew G. Knepley   for (f = 0; f < numFields; ++f) {
7362fd59a867SMatthew G. Knepley     PetscFE     fe;
7363fd59a867SMatthew G. Knepley     const char *name;
736418abd763SMatthew G. Knepley 
736518abd763SMatthew G. Knepley     ierr = DMGetField(dm, f, (PetscObject *) &fe);CHKERRQ(ierr);
7366fd59a867SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) fe, &name);CHKERRQ(ierr);
7367fd59a867SMatthew G. Knepley     ierr = PetscSectionSetFieldName(section, f, name);CHKERRQ(ierr);
7368fd59a867SMatthew G. Knepley   }
7369e87a4003SBarry Smith   ierr = DMSetSection(dm, section);CHKERRQ(ierr);
7370fd59a867SMatthew G. Knepley   ierr = PetscSectionDestroy(&section);CHKERRQ(ierr);
73710e0f25f2SMatthew G. Knepley   for (bc = 0; bc < numBC; ++bc) {ierr = ISDestroy(&bcPoints[bc]);CHKERRQ(ierr);ierr = ISDestroy(&bcComps[bc]);CHKERRQ(ierr);}
73720e0f25f2SMatthew G. Knepley   ierr = PetscFree3(bcFields,bcPoints,bcComps);CHKERRQ(ierr);
7373286d8613SMatthew G. Knepley   ierr = PetscFree2(numComp,numDof);CHKERRQ(ierr);
7374ebb3236fSMatthew G. Knepley   ierr = PetscFree(isFE);CHKERRQ(ierr);
7375bceba477SMatthew G. Knepley   PetscFunctionReturn(0);
7376bceba477SMatthew G. Knepley }
7377bceba477SMatthew G. Knepley 
73780aef6b92SMatthew G. Knepley /*@
73790aef6b92SMatthew G. Knepley   DMPlexGetRegularRefinement - Get the flag indicating that this mesh was obtained by regular refinement from its coarse mesh
73800aef6b92SMatthew G. Knepley 
73810aef6b92SMatthew G. Knepley   Input Parameter:
73820aef6b92SMatthew G. Knepley . dm - The DMPlex object
73830aef6b92SMatthew G. Knepley 
73840aef6b92SMatthew G. Knepley   Output Parameter:
73850aef6b92SMatthew G. Knepley . regular - The flag
73860aef6b92SMatthew G. Knepley 
73870aef6b92SMatthew G. Knepley   Level: intermediate
73880aef6b92SMatthew G. Knepley 
73890aef6b92SMatthew G. Knepley .seealso: DMPlexSetRegularRefinement()
73900aef6b92SMatthew G. Knepley @*/
73910aef6b92SMatthew G. Knepley PetscErrorCode DMPlexGetRegularRefinement(DM dm, PetscBool *regular)
73920aef6b92SMatthew G. Knepley {
73930aef6b92SMatthew G. Knepley   PetscFunctionBegin;
73940aef6b92SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
73950aef6b92SMatthew G. Knepley   PetscValidPointer(regular, 2);
73960aef6b92SMatthew G. Knepley   *regular = ((DM_Plex *) dm->data)->regularRefinement;
73970aef6b92SMatthew G. Knepley   PetscFunctionReturn(0);
73980aef6b92SMatthew G. Knepley }
73990aef6b92SMatthew G. Knepley 
74000aef6b92SMatthew G. Knepley /*@
74010aef6b92SMatthew G. Knepley   DMPlexSetRegularRefinement - Set the flag indicating that this mesh was obtained by regular refinement from its coarse mesh
74020aef6b92SMatthew G. Knepley 
74030aef6b92SMatthew G. Knepley   Input Parameters:
74040aef6b92SMatthew G. Knepley + dm - The DMPlex object
74050aef6b92SMatthew G. Knepley - regular - The flag
74060aef6b92SMatthew G. Knepley 
74070aef6b92SMatthew G. Knepley   Level: intermediate
74080aef6b92SMatthew G. Knepley 
74090aef6b92SMatthew G. Knepley .seealso: DMPlexGetRegularRefinement()
74100aef6b92SMatthew G. Knepley @*/
74110aef6b92SMatthew G. Knepley PetscErrorCode DMPlexSetRegularRefinement(DM dm, PetscBool regular)
74120aef6b92SMatthew G. Knepley {
74130aef6b92SMatthew G. Knepley   PetscFunctionBegin;
74140aef6b92SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
74150aef6b92SMatthew G. Knepley   ((DM_Plex *) dm->data)->regularRefinement = regular;
74160aef6b92SMatthew G. Knepley   PetscFunctionReturn(0);
74170aef6b92SMatthew G. Knepley }
74180aef6b92SMatthew G. Knepley 
7419f7c74593SToby Isaac /* anchors */
7420a68b90caSToby Isaac /*@
7421f7c74593SToby Isaac   DMPlexGetAnchors - Get the layout of the anchor (point-to-point) constraints.  Typically, the user will not have to
7422f7c74593SToby Isaac   call DMPlexGetAnchors() directly: if there are anchors, then DMPlexGetAnchors() is called during DMGetConstraints().
7423a68b90caSToby Isaac 
7424e228b242SToby Isaac   not collective
7425a68b90caSToby Isaac 
7426a68b90caSToby Isaac   Input Parameters:
7427a68b90caSToby Isaac . dm - The DMPlex object
7428a68b90caSToby Isaac 
7429a68b90caSToby Isaac   Output Parameters:
7430a68b90caSToby Isaac + anchorSection - If not NULL, set to the section describing which points anchor the constrained points.
7431a68b90caSToby Isaac - anchorIS - If not NULL, set to the list of anchors indexed by anchorSection
7432a68b90caSToby Isaac 
7433a68b90caSToby Isaac 
7434a68b90caSToby Isaac   Level: intermediate
7435a68b90caSToby Isaac 
7436f7c74593SToby Isaac .seealso: DMPlexSetAnchors(), DMGetConstraints(), DMSetConstraints()
7437a68b90caSToby Isaac @*/
7438a17985deSToby Isaac PetscErrorCode DMPlexGetAnchors(DM dm, PetscSection *anchorSection, IS *anchorIS)
7439a68b90caSToby Isaac {
7440a68b90caSToby Isaac   DM_Plex *plex = (DM_Plex *)dm->data;
744141e6d900SToby Isaac   PetscErrorCode ierr;
7442a68b90caSToby Isaac 
7443a68b90caSToby Isaac   PetscFunctionBegin;
7444a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
744541e6d900SToby Isaac   if (!plex->anchorSection && !plex->anchorIS && plex->createanchors) {ierr = (*plex->createanchors)(dm);CHKERRQ(ierr);}
7446a68b90caSToby Isaac   if (anchorSection) *anchorSection = plex->anchorSection;
7447a68b90caSToby Isaac   if (anchorIS) *anchorIS = plex->anchorIS;
7448a68b90caSToby Isaac   PetscFunctionReturn(0);
7449a68b90caSToby Isaac }
7450a68b90caSToby Isaac 
7451a68b90caSToby Isaac /*@
7452f7c74593SToby Isaac   DMPlexSetAnchors - Set the layout of the local anchor (point-to-point) constraints.  Unlike boundary conditions,
7453f7c74593SToby Isaac   when a point's degrees of freedom in a section are constrained to an outside value, the anchor constraints set a
7454a68b90caSToby Isaac   point's degrees of freedom to be a linear combination of other points' degrees of freedom.
7455a68b90caSToby Isaac 
7456a17985deSToby Isaac   After specifying the layout of constraints with DMPlexSetAnchors(), one specifies the constraints by calling
7457f7c74593SToby Isaac   DMGetConstraints() and filling in the entries in the constraint matrix.
7458a68b90caSToby Isaac 
7459e228b242SToby Isaac   collective on dm
7460a68b90caSToby Isaac 
7461a68b90caSToby Isaac   Input Parameters:
7462a68b90caSToby Isaac + dm - The DMPlex object
7463e228b242SToby 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).
7464e228b242SToby Isaac - anchorIS - The list of all anchor points.  Must have a local communicator (PETSC_COMM_SELF or derivative).
7465a68b90caSToby Isaac 
7466a68b90caSToby Isaac   The reference counts of anchorSection and anchorIS are incremented.
7467a68b90caSToby Isaac 
7468a68b90caSToby Isaac   Level: intermediate
7469a68b90caSToby Isaac 
7470f7c74593SToby Isaac .seealso: DMPlexGetAnchors(), DMGetConstraints(), DMSetConstraints()
7471a68b90caSToby Isaac @*/
7472a17985deSToby Isaac PetscErrorCode DMPlexSetAnchors(DM dm, PetscSection anchorSection, IS anchorIS)
7473a68b90caSToby Isaac {
7474a68b90caSToby Isaac   DM_Plex        *plex = (DM_Plex *)dm->data;
7475e228b242SToby Isaac   PetscMPIInt    result;
7476a68b90caSToby Isaac   PetscErrorCode ierr;
7477a68b90caSToby Isaac 
7478a68b90caSToby Isaac   PetscFunctionBegin;
7479a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7480e228b242SToby Isaac   if (anchorSection) {
7481e228b242SToby Isaac     PetscValidHeaderSpecific(anchorSection,PETSC_SECTION_CLASSID,2);
7482e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorSection),&result);CHKERRQ(ierr);
7483f6a3d38cSToby Isaac     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor section must have local communicator");
7484e228b242SToby Isaac   }
7485e228b242SToby Isaac   if (anchorIS) {
7486e228b242SToby Isaac     PetscValidHeaderSpecific(anchorIS,IS_CLASSID,3);
7487e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorIS),&result);CHKERRQ(ierr);
7488f6a3d38cSToby Isaac     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor IS must have local communicator");
7489e228b242SToby Isaac   }
7490a68b90caSToby Isaac 
7491a68b90caSToby Isaac   ierr = PetscObjectReference((PetscObject)anchorSection);CHKERRQ(ierr);
7492a68b90caSToby Isaac   ierr = PetscSectionDestroy(&plex->anchorSection);CHKERRQ(ierr);
7493a68b90caSToby Isaac   plex->anchorSection = anchorSection;
7494a68b90caSToby Isaac 
7495a68b90caSToby Isaac   ierr = PetscObjectReference((PetscObject)anchorIS);CHKERRQ(ierr);
7496a68b90caSToby Isaac   ierr = ISDestroy(&plex->anchorIS);CHKERRQ(ierr);
7497a68b90caSToby Isaac   plex->anchorIS = anchorIS;
7498a68b90caSToby Isaac 
7499a68b90caSToby Isaac #if defined(PETSC_USE_DEBUG)
7500a68b90caSToby Isaac   if (anchorIS && anchorSection) {
7501a68b90caSToby Isaac     PetscInt size, a, pStart, pEnd;
7502a68b90caSToby Isaac     const PetscInt *anchors;
7503a68b90caSToby Isaac 
7504a68b90caSToby Isaac     ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr);
7505a68b90caSToby Isaac     ierr = ISGetLocalSize(anchorIS,&size);CHKERRQ(ierr);
7506a68b90caSToby Isaac     ierr = ISGetIndices(anchorIS,&anchors);CHKERRQ(ierr);
7507a68b90caSToby Isaac     for (a = 0; a < size; a++) {
7508a68b90caSToby Isaac       PetscInt p;
7509a68b90caSToby Isaac 
7510a68b90caSToby Isaac       p = anchors[a];
7511a68b90caSToby Isaac       if (p >= pStart && p < pEnd) {
7512a68b90caSToby Isaac         PetscInt dof;
7513a68b90caSToby Isaac 
7514a68b90caSToby Isaac         ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr);
7515a68b90caSToby Isaac         if (dof) {
7516a68b90caSToby Isaac           PetscErrorCode ierr2;
7517a68b90caSToby Isaac 
7518a68b90caSToby Isaac           ierr2 = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr2);
75198ccfff9cSToby Isaac           SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"Point %D cannot be constrained and an anchor",p);
7520a68b90caSToby Isaac         }
7521a68b90caSToby Isaac       }
7522a68b90caSToby Isaac     }
7523a68b90caSToby Isaac     ierr = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr);
7524a68b90caSToby Isaac   }
7525a68b90caSToby Isaac #endif
7526f7c74593SToby Isaac   /* reset the generic constraints */
7527f7c74593SToby Isaac   ierr = DMSetDefaultConstraints(dm,NULL,NULL);CHKERRQ(ierr);
7528a68b90caSToby Isaac   PetscFunctionReturn(0);
7529a68b90caSToby Isaac }
7530a68b90caSToby Isaac 
7531f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintSection_Anchors(DM dm, PetscSection section, PetscSection *cSec)
7532a68b90caSToby Isaac {
7533f7c74593SToby Isaac   PetscSection anchorSection;
75346995de1eSToby Isaac   PetscInt pStart, pEnd, sStart, sEnd, p, dof, numFields, f;
7535a68b90caSToby Isaac   PetscErrorCode ierr;
7536a68b90caSToby Isaac 
7537a68b90caSToby Isaac   PetscFunctionBegin;
7538a68b90caSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7539a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr);
7540e228b242SToby Isaac   ierr = PetscSectionCreate(PETSC_COMM_SELF,cSec);CHKERRQ(ierr);
7541a68b90caSToby Isaac   ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr);
75426995de1eSToby Isaac   if (numFields) {
7543719ab38cSToby Isaac     PetscInt f;
7544a68b90caSToby Isaac     ierr = PetscSectionSetNumFields(*cSec,numFields);CHKERRQ(ierr);
7545719ab38cSToby Isaac 
7546719ab38cSToby Isaac     for (f = 0; f < numFields; f++) {
7547719ab38cSToby Isaac       PetscInt numComp;
7548719ab38cSToby Isaac 
7549719ab38cSToby Isaac       ierr = PetscSectionGetFieldComponents(section,f,&numComp);CHKERRQ(ierr);
7550719ab38cSToby Isaac       ierr = PetscSectionSetFieldComponents(*cSec,f,numComp);CHKERRQ(ierr);
7551719ab38cSToby Isaac     }
75526995de1eSToby Isaac   }
7553a68b90caSToby Isaac   ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr);
75546995de1eSToby Isaac   ierr = PetscSectionGetChart(section,&sStart,&sEnd);CHKERRQ(ierr);
75556995de1eSToby Isaac   pStart = PetscMax(pStart,sStart);
75566995de1eSToby Isaac   pEnd   = PetscMin(pEnd,sEnd);
75576995de1eSToby Isaac   pEnd   = PetscMax(pStart,pEnd);
7558a68b90caSToby Isaac   ierr = PetscSectionSetChart(*cSec,pStart,pEnd);CHKERRQ(ierr);
7559a68b90caSToby Isaac   for (p = pStart; p < pEnd; p++) {
7560a68b90caSToby Isaac     ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr);
7561a68b90caSToby Isaac     if (dof) {
7562a68b90caSToby Isaac       ierr = PetscSectionGetDof(section,p,&dof);CHKERRQ(ierr);
7563a68b90caSToby Isaac       ierr = PetscSectionSetDof(*cSec,p,dof);CHKERRQ(ierr);
7564a68b90caSToby Isaac       for (f = 0; f < numFields; f++) {
7565a68b90caSToby Isaac         ierr = PetscSectionGetFieldDof(section,p,f,&dof);CHKERRQ(ierr);
7566a68b90caSToby Isaac         ierr = PetscSectionSetFieldDof(*cSec,p,f,dof);CHKERRQ(ierr);
7567a68b90caSToby Isaac       }
7568a68b90caSToby Isaac     }
7569a68b90caSToby Isaac   }
7570a68b90caSToby Isaac   ierr = PetscSectionSetUp(*cSec);CHKERRQ(ierr);
7571a68b90caSToby Isaac   PetscFunctionReturn(0);
7572a68b90caSToby Isaac }
7573a68b90caSToby Isaac 
7574f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintMatrix_Anchors(DM dm, PetscSection section, PetscSection cSec, Mat *cMat)
7575a68b90caSToby Isaac {
7576f7c74593SToby Isaac   PetscSection aSec;
75770ac89760SToby Isaac   PetscInt pStart, pEnd, p, dof, aDof, aOff, off, nnz, annz, m, n, q, a, offset, *i, *j;
75780ac89760SToby Isaac   const PetscInt *anchors;
75790ac89760SToby Isaac   PetscInt numFields, f;
758066ad2231SToby Isaac   IS aIS;
75810ac89760SToby Isaac   PetscErrorCode ierr;
75820ac89760SToby Isaac 
75830ac89760SToby Isaac   PetscFunctionBegin;
75840ac89760SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
75850ac89760SToby Isaac   ierr = PetscSectionGetStorageSize(cSec, &m);CHKERRQ(ierr);
75860ac89760SToby Isaac   ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr);
75870ac89760SToby Isaac   ierr = MatCreate(PETSC_COMM_SELF,cMat);CHKERRQ(ierr);
75880ac89760SToby Isaac   ierr = MatSetSizes(*cMat,m,n,m,n);CHKERRQ(ierr);
7589302440fdSBarry Smith   ierr = MatSetType(*cMat,MATSEQAIJ);CHKERRQ(ierr);
7590a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr);
759166ad2231SToby Isaac   ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr);
75926995de1eSToby Isaac   /* cSec will be a subset of aSec and section */
75936995de1eSToby Isaac   ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
75940ac89760SToby Isaac   ierr = PetscMalloc1(m+1,&i);CHKERRQ(ierr);
75950ac89760SToby Isaac   i[0] = 0;
75960ac89760SToby Isaac   ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr);
75970ac89760SToby Isaac   for (p = pStart; p < pEnd; p++) {
7598f19733c5SToby Isaac     PetscInt rDof, rOff, r;
7599f19733c5SToby Isaac 
7600f19733c5SToby Isaac     ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
7601f19733c5SToby Isaac     if (!rDof) continue;
7602f19733c5SToby Isaac     ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
76030ac89760SToby Isaac     if (numFields) {
76040ac89760SToby Isaac       for (f = 0; f < numFields; f++) {
76050ac89760SToby Isaac         annz = 0;
7606f19733c5SToby Isaac         for (r = 0; r < rDof; r++) {
7607f19733c5SToby Isaac           a = anchors[rOff + r];
76080ac89760SToby Isaac           ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr);
76090ac89760SToby Isaac           annz += aDof;
76100ac89760SToby Isaac         }
76110ac89760SToby Isaac         ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr);
76120ac89760SToby Isaac         ierr = PetscSectionGetFieldOffset(cSec,p,f,&off);CHKERRQ(ierr);
76130ac89760SToby Isaac         for (q = 0; q < dof; q++) {
76140ac89760SToby Isaac           i[off + q + 1] = i[off + q] + annz;
76150ac89760SToby Isaac         }
76160ac89760SToby Isaac       }
76170ac89760SToby Isaac     }
76180ac89760SToby Isaac     else {
76190ac89760SToby Isaac       annz = 0;
76200ac89760SToby Isaac       for (q = 0; q < dof; q++) {
76210ac89760SToby Isaac         a = anchors[off + q];
76220ac89760SToby Isaac         ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
76230ac89760SToby Isaac         annz += aDof;
76240ac89760SToby Isaac       }
76250ac89760SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
76260ac89760SToby Isaac       ierr = PetscSectionGetOffset(cSec,p,&off);CHKERRQ(ierr);
76270ac89760SToby Isaac       for (q = 0; q < dof; q++) {
76280ac89760SToby Isaac         i[off + q + 1] = i[off + q] + annz;
76290ac89760SToby Isaac       }
76300ac89760SToby Isaac     }
76310ac89760SToby Isaac   }
76320ac89760SToby Isaac   nnz = i[m];
76330ac89760SToby Isaac   ierr = PetscMalloc1(nnz,&j);CHKERRQ(ierr);
76340ac89760SToby Isaac   offset = 0;
76350ac89760SToby Isaac   for (p = pStart; p < pEnd; p++) {
76360ac89760SToby Isaac     if (numFields) {
76370ac89760SToby Isaac       for (f = 0; f < numFields; f++) {
76380ac89760SToby Isaac         ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr);
76390ac89760SToby Isaac         for (q = 0; q < dof; q++) {
76400ac89760SToby Isaac           PetscInt rDof, rOff, r;
76410ac89760SToby Isaac           ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
76420ac89760SToby Isaac           ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
76430ac89760SToby Isaac           for (r = 0; r < rDof; r++) {
76440ac89760SToby Isaac             PetscInt s;
76450ac89760SToby Isaac 
76460ac89760SToby Isaac             a = anchors[rOff + r];
76470ac89760SToby Isaac             ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr);
76480ac89760SToby Isaac             ierr = PetscSectionGetFieldOffset(section,a,f,&aOff);CHKERRQ(ierr);
76490ac89760SToby Isaac             for (s = 0; s < aDof; s++) {
76500ac89760SToby Isaac               j[offset++] = aOff + s;
76510ac89760SToby Isaac             }
76520ac89760SToby Isaac           }
76530ac89760SToby Isaac         }
76540ac89760SToby Isaac       }
76550ac89760SToby Isaac     }
76560ac89760SToby Isaac     else {
76570ac89760SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
76580ac89760SToby Isaac       for (q = 0; q < dof; q++) {
76590ac89760SToby Isaac         PetscInt rDof, rOff, r;
76600ac89760SToby Isaac         ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr);
76610ac89760SToby Isaac         ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr);
76620ac89760SToby Isaac         for (r = 0; r < rDof; r++) {
76630ac89760SToby Isaac           PetscInt s;
76640ac89760SToby Isaac 
76650ac89760SToby Isaac           a = anchors[rOff + r];
76660ac89760SToby Isaac           ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr);
76670ac89760SToby Isaac           ierr = PetscSectionGetOffset(section,a,&aOff);CHKERRQ(ierr);
76680ac89760SToby Isaac           for (s = 0; s < aDof; s++) {
76690ac89760SToby Isaac             j[offset++] = aOff + s;
76700ac89760SToby Isaac           }
76710ac89760SToby Isaac         }
76720ac89760SToby Isaac       }
76730ac89760SToby Isaac     }
76740ac89760SToby Isaac   }
76750ac89760SToby Isaac   ierr = MatSeqAIJSetPreallocationCSR(*cMat,i,j,NULL);CHKERRQ(ierr);
767625570a81SToby Isaac   ierr = PetscFree(i);CHKERRQ(ierr);
767725570a81SToby Isaac   ierr = PetscFree(j);CHKERRQ(ierr);
767866ad2231SToby Isaac   ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);
76790ac89760SToby Isaac   PetscFunctionReturn(0);
76800ac89760SToby Isaac }
76810ac89760SToby Isaac 
768266ad2231SToby Isaac PetscErrorCode DMCreateDefaultConstraints_Plex(DM dm)
768366ad2231SToby Isaac {
7684f7c74593SToby Isaac   DM_Plex        *plex = (DM_Plex *)dm->data;
7685f7c74593SToby Isaac   PetscSection   anchorSection, section, cSec;
768666ad2231SToby Isaac   Mat            cMat;
768766ad2231SToby Isaac   PetscErrorCode ierr;
768866ad2231SToby Isaac 
768966ad2231SToby Isaac   PetscFunctionBegin;
769066ad2231SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7691a17985deSToby Isaac   ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr);
769266ad2231SToby Isaac   if (anchorSection) {
7693e228b242SToby Isaac     PetscDS  ds;
7694e228b242SToby Isaac     PetscInt nf;
7695e228b242SToby Isaac 
7696e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
7697f7c74593SToby Isaac     ierr = DMPlexCreateConstraintSection_Anchors(dm,section,&cSec);CHKERRQ(ierr);
7698f7c74593SToby Isaac     ierr = DMPlexCreateConstraintMatrix_Anchors(dm,section,cSec,&cMat);CHKERRQ(ierr);
7699e228b242SToby Isaac     ierr = DMGetDS(dm,&ds);CHKERRQ(ierr);
7700302440fdSBarry Smith     ierr = PetscDSGetNumFields(ds,&nf);CHKERRQ(ierr);
7701e228b242SToby Isaac     if (nf && plex->computeanchormatrix) {ierr = (*plex->computeanchormatrix)(dm,section,cSec,cMat);CHKERRQ(ierr);}
770266ad2231SToby Isaac     ierr = DMSetDefaultConstraints(dm,cSec,cMat);CHKERRQ(ierr);
770366ad2231SToby Isaac     ierr = PetscSectionDestroy(&cSec);CHKERRQ(ierr);
770466ad2231SToby Isaac     ierr = MatDestroy(&cMat);CHKERRQ(ierr);
770566ad2231SToby Isaac   }
770666ad2231SToby Isaac   PetscFunctionReturn(0);
770766ad2231SToby Isaac }
7708a93c429eSMatthew G. Knepley 
7709a93c429eSMatthew G. Knepley PetscErrorCode DMCreateSubDomainDM_Plex(DM dm, DMLabel label, PetscInt value, IS *is, DM *subdm)
7710a93c429eSMatthew G. Knepley {
7711a93c429eSMatthew G. Knepley   PetscDS        prob;
7712a93c429eSMatthew G. Knepley   IS             subis;
7713a93c429eSMatthew G. Knepley   PetscSection   section, subsection;
7714a93c429eSMatthew G. Knepley   PetscErrorCode ierr;
7715a93c429eSMatthew G. Knepley 
7716a93c429eSMatthew G. Knepley   PetscFunctionBegin;
7717a93c429eSMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
7718a93c429eSMatthew G. Knepley   if (!section) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set default section for DM before splitting subdomain");
7719a93c429eSMatthew G. Knepley   if (!subdm)   SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set output subDM for splitting subdomain");
7720a93c429eSMatthew G. Knepley   /* Create subdomain */
7721a93c429eSMatthew G. Knepley   ierr = DMPlexFilter(dm, label, value, subdm);CHKERRQ(ierr);
7722a93c429eSMatthew G. Knepley   /* Create submodel */
7723a93c429eSMatthew G. Knepley   ierr = DMPlexCreateSubpointIS(*subdm, &subis);CHKERRQ(ierr);
7724a93c429eSMatthew G. Knepley   ierr = PetscSectionCreateSubmeshSection(section, subis, &subsection);CHKERRQ(ierr);
7725a93c429eSMatthew G. Knepley   ierr = ISDestroy(&subis);CHKERRQ(ierr);
7726a93c429eSMatthew G. Knepley   ierr = DMSetDefaultSection(*subdm, subsection);CHKERRQ(ierr);
7727a93c429eSMatthew G. Knepley   ierr = PetscSectionDestroy(&subsection);CHKERRQ(ierr);
7728a93c429eSMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
7729a93c429eSMatthew G. Knepley   ierr = DMSetDS(*subdm, prob);CHKERRQ(ierr);
7730a93c429eSMatthew G. Knepley   /* Create map from submodel to global model */
7731a93c429eSMatthew G. Knepley   if (is) {
7732a93c429eSMatthew G. Knepley     PetscSection    sectionGlobal, subsectionGlobal;
7733a93c429eSMatthew G. Knepley     IS              spIS;
7734a93c429eSMatthew G. Knepley     const PetscInt *spmap;
7735a93c429eSMatthew G. Knepley     PetscInt       *subIndices;
7736a93c429eSMatthew G. Knepley     PetscInt        subSize = 0, subOff = 0, pStart, pEnd, p;
7737a93c429eSMatthew G. Knepley     PetscInt        Nf, f, bs = -1, bsLocal[2], bsMinMax[2];
7738a93c429eSMatthew G. Knepley 
7739a93c429eSMatthew G. Knepley     ierr = DMPlexCreateSubpointIS(*subdm, &spIS);CHKERRQ(ierr);
7740a93c429eSMatthew G. Knepley     ierr = ISGetIndices(spIS, &spmap);CHKERRQ(ierr);
7741a93c429eSMatthew G. Knepley     ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
7742a93c429eSMatthew G. Knepley     ierr = DMGetDefaultGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
7743a93c429eSMatthew G. Knepley     ierr = DMGetDefaultGlobalSection(*subdm, &subsectionGlobal);CHKERRQ(ierr);
7744a93c429eSMatthew G. Knepley     ierr = PetscSectionGetChart(subsection, &pStart, &pEnd);CHKERRQ(ierr);
7745a93c429eSMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
7746a93c429eSMatthew G. Knepley       PetscInt gdof, pSubSize  = 0;
7747a93c429eSMatthew G. Knepley 
7748a93c429eSMatthew G. Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
7749a93c429eSMatthew G. Knepley       if (gdof > 0) {
7750a93c429eSMatthew G. Knepley         for (f = 0; f < Nf; ++f) {
7751a93c429eSMatthew G. Knepley           PetscInt fdof, fcdof;
7752a93c429eSMatthew G. Knepley 
7753a93c429eSMatthew G. Knepley           ierr     = PetscSectionGetFieldDof(subsection, p, f, &fdof);CHKERRQ(ierr);
7754a93c429eSMatthew G. Knepley           ierr     = PetscSectionGetFieldConstraintDof(subsection, p, f, &fcdof);CHKERRQ(ierr);
7755a93c429eSMatthew G. Knepley           pSubSize += fdof-fcdof;
7756a93c429eSMatthew G. Knepley         }
7757a93c429eSMatthew G. Knepley         subSize += pSubSize;
7758a93c429eSMatthew G. Knepley         if (pSubSize) {
7759a93c429eSMatthew G. Knepley           if (bs < 0) {
7760a93c429eSMatthew G. Knepley             bs = pSubSize;
7761a93c429eSMatthew G. Knepley           } else if (bs != pSubSize) {
7762a93c429eSMatthew G. Knepley             /* Layout does not admit a pointwise block size */
7763a93c429eSMatthew G. Knepley             bs = 1;
7764a93c429eSMatthew G. Knepley           }
7765a93c429eSMatthew G. Knepley         }
7766a93c429eSMatthew G. Knepley       }
7767a93c429eSMatthew G. Knepley     }
7768a93c429eSMatthew G. Knepley     /* Must have same blocksize on all procs (some might have no points) */
7769a93c429eSMatthew G. Knepley     bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
7770a93c429eSMatthew G. Knepley     ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
7771a93c429eSMatthew G. Knepley     if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
7772a93c429eSMatthew G. Knepley     else                            {bs = bsMinMax[0];}
7773a93c429eSMatthew G. Knepley     ierr = PetscMalloc1(subSize, &subIndices);CHKERRQ(ierr);
7774a93c429eSMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
7775a93c429eSMatthew G. Knepley       PetscInt gdof, goff;
7776a93c429eSMatthew G. Knepley 
7777a93c429eSMatthew G. Knepley       ierr = PetscSectionGetDof(subsectionGlobal, p, &gdof);CHKERRQ(ierr);
7778a93c429eSMatthew G. Knepley       if (gdof > 0) {
7779a93c429eSMatthew G. Knepley         const PetscInt point = spmap[p];
7780a93c429eSMatthew G. Knepley 
7781a93c429eSMatthew G. Knepley         ierr = PetscSectionGetOffset(sectionGlobal, point, &goff);CHKERRQ(ierr);
7782a93c429eSMatthew G. Knepley         for (f = 0; f < Nf; ++f) {
7783a93c429eSMatthew G. Knepley           PetscInt fdof, fcdof, fc, f2, poff = 0;
7784a93c429eSMatthew G. Knepley 
7785a93c429eSMatthew G. Knepley           /* Can get rid of this loop by storing field information in the global section */
7786a93c429eSMatthew G. Knepley           for (f2 = 0; f2 < f; ++f2) {
7787a93c429eSMatthew G. Knepley             ierr  = PetscSectionGetFieldDof(section, p, f2, &fdof);CHKERRQ(ierr);
7788a93c429eSMatthew G. Knepley             ierr  = PetscSectionGetFieldConstraintDof(section, p, f2, &fcdof);CHKERRQ(ierr);
7789a93c429eSMatthew G. Knepley             poff += fdof-fcdof;
7790a93c429eSMatthew G. Knepley           }
7791a93c429eSMatthew G. Knepley           ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
7792a93c429eSMatthew G. Knepley           ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
7793a93c429eSMatthew G. Knepley           for (fc = 0; fc < fdof-fcdof; ++fc, ++subOff) {
7794a93c429eSMatthew G. Knepley             subIndices[subOff] = goff+poff+fc;
7795a93c429eSMatthew G. Knepley           }
7796a93c429eSMatthew G. Knepley         }
7797a93c429eSMatthew G. Knepley       }
7798a93c429eSMatthew G. Knepley     }
7799a93c429eSMatthew G. Knepley     ierr = ISRestoreIndices(spIS, &spmap);CHKERRQ(ierr);
7800a93c429eSMatthew G. Knepley     ierr = ISDestroy(&spIS);CHKERRQ(ierr);
7801a93c429eSMatthew G. Knepley     ierr = ISCreateGeneral(PetscObjectComm((PetscObject)dm), subSize, subIndices, PETSC_OWN_POINTER, is);CHKERRQ(ierr);
7802a93c429eSMatthew G. Knepley     if (bs > 1) {
7803a93c429eSMatthew G. Knepley       /* We need to check that the block size does not come from non-contiguous fields */
7804a93c429eSMatthew G. Knepley       PetscInt i, j, set = 1;
7805a93c429eSMatthew G. Knepley       for (i = 0; i < subSize; i += bs) {
7806a93c429eSMatthew G. Knepley         for (j = 0; j < bs; ++j) {
7807a93c429eSMatthew G. Knepley           if (subIndices[i+j] != subIndices[i]+j) {set = 0; break;}
7808a93c429eSMatthew G. Knepley         }
7809a93c429eSMatthew G. Knepley       }
7810a93c429eSMatthew G. Knepley       if (set) {ierr = ISSetBlockSize(*is, bs);CHKERRQ(ierr);}
7811a93c429eSMatthew G. Knepley     }
7812a93c429eSMatthew G. Knepley     /* Attach nullspace */
7813a93c429eSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
7814a93c429eSMatthew G. Knepley       (*subdm)->nullspaceConstructors[f] = dm->nullspaceConstructors[f];
7815a93c429eSMatthew G. Knepley       if ((*subdm)->nullspaceConstructors[f]) break;
7816a93c429eSMatthew G. Knepley     }
7817a93c429eSMatthew G. Knepley     if (f < Nf) {
7818a93c429eSMatthew G. Knepley       MatNullSpace nullSpace;
7819a93c429eSMatthew G. Knepley 
7820a93c429eSMatthew G. Knepley       ierr = (*(*subdm)->nullspaceConstructors[f])(*subdm, f, &nullSpace);CHKERRQ(ierr);
7821a93c429eSMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) *is, "nullspace", (PetscObject) nullSpace);CHKERRQ(ierr);
7822a93c429eSMatthew G. Knepley       ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
7823a93c429eSMatthew G. Knepley     }
7824a93c429eSMatthew G. Knepley   }
7825a93c429eSMatthew G. Knepley   PetscFunctionReturn(0);
7826a93c429eSMatthew G. Knepley }
7827