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, §ion);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); 6520298fd71SBarry Smith ierr = PetscSectionGetChart(coordSection, &pStart, NULL);CHKERRQ(ierr); 653552f7358SJed Brown if (pStart >= 0) {ierr = PetscSectionVecView(coordSection, coordinates, viewer);CHKERRQ(ierr);} 654c58f1c22SToby Isaac ierr = DMGetLabel(dm, "marker", &markers);CHKERRQ(ierr); 655552f7358SJed Brown ierr = DMLabelView(markers,viewer);CHKERRQ(ierr); 656552f7358SJed Brown if (size > 1) { 657552f7358SJed Brown PetscSF sf; 658552f7358SJed Brown 659552f7358SJed Brown ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr); 660552f7358SJed Brown ierr = PetscSFView(sf, viewer);CHKERRQ(ierr); 661552f7358SJed Brown } 662552f7358SJed Brown ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 663552f7358SJed Brown } else if (format == PETSC_VIEWER_ASCII_LATEX) { 6640588280cSMatthew G. Knepley const char *name, *color; 6650588280cSMatthew G. Knepley const char *defcolors[3] = {"gray", "orange", "green"}; 6660588280cSMatthew G. Knepley const char *deflcolors[4] = {"blue", "cyan", "red", "magenta"}; 667552f7358SJed Brown PetscReal scale = 2.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); 684c5929fdfSBarry Smith ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_numbers", &useNumbers, NULL);CHKERRQ(ierr); 685c5929fdfSBarry Smith ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_labels", names, &numLabels, &useLabels);CHKERRQ(ierr); 6860588280cSMatthew G. Knepley if (!useLabels) numLabels = 0; 687c5929fdfSBarry Smith ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_colors", colors, &numColors, &useColors);CHKERRQ(ierr); 6880588280cSMatthew G. Knepley if (!useColors) { 6890588280cSMatthew G. Knepley numColors = 3; 6900588280cSMatthew G. Knepley for (c = 0; c < numColors; ++c) {ierr = PetscStrallocpy(defcolors[c], &colors[c]);CHKERRQ(ierr);} 6910588280cSMatthew G. Knepley } 692c5929fdfSBarry Smith ierr = PetscOptionsGetStringArray(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_lcolors", lcolors, &numLColors, &useColors);CHKERRQ(ierr); 6930588280cSMatthew G. Knepley if (!useColors) { 6940588280cSMatthew G. Knepley numLColors = 4; 6950588280cSMatthew G. Knepley for (c = 0; c < numLColors; ++c) {ierr = PetscStrallocpy(deflcolors[c], &lcolors[c]);CHKERRQ(ierr);} 6960588280cSMatthew G. Knepley } 697202fd40aSStefano Zampini plotEdges = (PetscBool)(depth > 1 && useNumbers && dim < 3); 698202fd40aSStefano Zampini ierr = PetscOptionsGetBool(((PetscObject) viewer)->options,((PetscObject) viewer)->prefix, "-dm_plex_view_edges", &plotEdges, &flg);CHKERRQ(ierr); 699202fd40aSStefano Zampini if (flg && plotEdges && depth < dim) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Mesh must be interpolated"); 700202fd40aSStefano Zampini if (depth < dim) plotEdges = PETSC_FALSE; 70182f516ccSBarry Smith ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm), &rank);CHKERRQ(ierr); 70282f516ccSBarry Smith ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm), &size);CHKERRQ(ierr); 703552f7358SJed Brown ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr); 704770b213bSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, "\ 7050588280cSMatthew G. Knepley \\documentclass[tikz]{standalone}\n\n\ 706552f7358SJed Brown \\usepackage{pgflibraryshapes}\n\ 707552f7358SJed Brown \\usetikzlibrary{backgrounds}\n\ 708552f7358SJed Brown \\usetikzlibrary{arrows}\n\ 7090588280cSMatthew G. Knepley \\begin{document}\n");CHKERRQ(ierr); 7100588280cSMatthew G. Knepley if (size > 1) { 711f738dd31SMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, "%s for process ", name);CHKERRQ(ierr); 712770b213bSMatthew G Knepley for (p = 0; p < size; ++p) { 713770b213bSMatthew G Knepley if (p > 0 && p == size-1) { 714770b213bSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, ", and ", colors[p%numColors], p);CHKERRQ(ierr); 715770b213bSMatthew G Knepley } else if (p > 0) { 716770b213bSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, ", ", colors[p%numColors], p);CHKERRQ(ierr); 717770b213bSMatthew G Knepley } 718770b213bSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, "{\\textcolor{%s}%D}", colors[p%numColors], p);CHKERRQ(ierr); 719770b213bSMatthew G Knepley } 7200588280cSMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, ".\n\n\n");CHKERRQ(ierr); 7210588280cSMatthew G. Knepley } 7220588280cSMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, "\\begin{tikzpicture}[scale = %g,font=\\fontsize{8}{8}\\selectfont]\n", 1.0);CHKERRQ(ierr); 723552f7358SJed Brown /* Plot vertices */ 724552f7358SJed Brown ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 725552f7358SJed Brown ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr); 7264d4c343aSBarry Smith ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr); 727552f7358SJed Brown for (v = vStart; v < vEnd; ++v) { 728552f7358SJed Brown PetscInt off, dof, d; 7290588280cSMatthew G. Knepley PetscBool isLabeled = PETSC_FALSE; 730552f7358SJed Brown 731552f7358SJed Brown ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr); 732552f7358SJed Brown ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr); 7330588280cSMatthew G. Knepley ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\path (");CHKERRQ(ierr); 734f6dae198SJed Brown if (PetscUnlikely(dof > 3)) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_PLIB,"coordSection vertex %D has dof %D > 3",v,dof); 7350588280cSMatthew G. Knepley for (d = 0; d < dof; ++d) { 7360588280cSMatthew G. Knepley tcoords[d] = (double) (scale*PetscRealPart(coords[off+d])); 737c068d9bbSLisandro Dalcin tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d]; 7380588280cSMatthew G. Knepley } 7390588280cSMatthew G. Knepley /* Rotate coordinates since PGF makes z point out of the page instead of up */ 7400588280cSMatthew G. Knepley if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;} 741552f7358SJed Brown for (d = 0; d < dof; ++d) { 742552f7358SJed Brown if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);} 7430588280cSMatthew G. Knepley ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", tcoords[d]);CHKERRQ(ierr); 744552f7358SJed Brown } 7450588280cSMatthew G. Knepley color = colors[rank%numColors]; 7460588280cSMatthew G. Knepley for (l = 0; l < numLabels; ++l) { 7470588280cSMatthew G. Knepley PetscInt val; 748c58f1c22SToby Isaac ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr); 7490588280cSMatthew G. Knepley if (val >= 0) {color = lcolors[l%numLColors]; isLabeled = PETSC_TRUE; break;} 7500588280cSMatthew G. Knepley } 7510588280cSMatthew G. Knepley if (useNumbers) { 752e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D};\n", v, rank, color, v);CHKERRQ(ierr); 7530588280cSMatthew G. Knepley } else { 754e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [fill,inner sep=%dpt,shape=circle,color=%s] {};\n", v, rank, !isLabeled ? 1 : 2, color);CHKERRQ(ierr); 7550588280cSMatthew G. Knepley } 756552f7358SJed Brown } 757552f7358SJed Brown ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr); 758552f7358SJed Brown ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 759552f7358SJed Brown /* Plot edges */ 760202fd40aSStefano Zampini if (depth > 1 || plotEdges) {ierr = DMPlexGetDepthStratum(dm, 1, &eStart, &eEnd);CHKERRQ(ierr);} 761202fd40aSStefano Zampini if (plotEdges) { 762552f7358SJed Brown ierr = VecGetArray(coordinates, &coords);CHKERRQ(ierr); 763552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, "\\path\n");CHKERRQ(ierr); 764552f7358SJed Brown for (e = eStart; e < eEnd; ++e) { 765552f7358SJed Brown const PetscInt *cone; 766552f7358SJed Brown PetscInt coneSize, offA, offB, dof, d; 767552f7358SJed Brown 768552f7358SJed Brown ierr = DMPlexGetConeSize(dm, e, &coneSize);CHKERRQ(ierr); 769f347f43bSBarry Smith if (coneSize != 2) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Edge %D cone should have two vertices, not %D", e, coneSize); 770552f7358SJed Brown ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr); 771552f7358SJed Brown ierr = PetscSectionGetDof(coordSection, cone[0], &dof);CHKERRQ(ierr); 772552f7358SJed Brown ierr = PetscSectionGetOffset(coordSection, cone[0], &offA);CHKERRQ(ierr); 773552f7358SJed Brown ierr = PetscSectionGetOffset(coordSection, cone[1], &offB);CHKERRQ(ierr); 774552f7358SJed Brown ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(");CHKERRQ(ierr); 775552f7358SJed Brown for (d = 0; d < dof; ++d) { 776202fd40aSStefano Zampini tcoords[d] = (double) (0.5*scale*PetscRealPart(coords[offA+d]+coords[offB+d])); 777c068d9bbSLisandro Dalcin tcoords[d] = PetscAbs(tcoords[d]) < 1e-10 ? 0.0 : tcoords[d]; 778552f7358SJed Brown } 7790588280cSMatthew G. Knepley /* Rotate coordinates since PGF makes z point out of the page instead of up */ 7800588280cSMatthew G. Knepley if (dim == 3) {PetscReal tmp = tcoords[1]; tcoords[1] = tcoords[2]; tcoords[2] = -tmp;} 7810588280cSMatthew G. Knepley for (d = 0; d < dof; ++d) { 7820588280cSMatthew G. Knepley if (d > 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, ",");CHKERRQ(ierr);} 783f347f43bSBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, "%g", (double)tcoords[d]);CHKERRQ(ierr); 7840588280cSMatthew G. Knepley } 7850588280cSMatthew G. Knepley color = colors[rank%numColors]; 7860588280cSMatthew G. Knepley for (l = 0; l < numLabels; ++l) { 7870588280cSMatthew G. Knepley PetscInt val; 788c58f1c22SToby Isaac ierr = DMGetLabelValue(dm, names[l], v, &val);CHKERRQ(ierr); 7890750fff4SMatthew G. Knepley if (val >= 0) {color = lcolors[l%numLColors]; break;} 7900588280cSMatthew G. Knepley } 791e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, ") node(%D_%d) [draw,shape=circle,color=%s] {%D} --\n", e, rank, color, e);CHKERRQ(ierr); 792552f7358SJed Brown } 793552f7358SJed Brown ierr = VecRestoreArray(coordinates, &coords);CHKERRQ(ierr); 794552f7358SJed Brown ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 795552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, "(0,0);\n");CHKERRQ(ierr); 7960588280cSMatthew G. Knepley } 797552f7358SJed Brown /* Plot cells */ 7980588280cSMatthew G. Knepley if (dim == 3 || !useNumbers) { 7990588280cSMatthew G. Knepley for (e = eStart; e < eEnd; ++e) { 8000588280cSMatthew G. Knepley const PetscInt *cone; 8010588280cSMatthew G. Knepley 8020588280cSMatthew G. Knepley color = colors[rank%numColors]; 8030588280cSMatthew G. Knepley for (l = 0; l < numLabels; ++l) { 8040588280cSMatthew G. Knepley PetscInt val; 805c58f1c22SToby Isaac ierr = DMGetLabelValue(dm, names[l], e, &val);CHKERRQ(ierr); 8060588280cSMatthew G. Knepley if (val >= 0) {color = lcolors[l%numLColors]; break;} 8070588280cSMatthew G. Knepley } 8080588280cSMatthew G. Knepley ierr = DMPlexGetCone(dm, e, &cone);CHKERRQ(ierr); 809e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] (%D_%d) -- (%D_%d);\n", color, cone[0], rank, cone[1], rank);CHKERRQ(ierr); 8100588280cSMatthew G. Knepley } 8110588280cSMatthew G. Knepley } else { 812552f7358SJed Brown ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr); 813552f7358SJed Brown for (c = cStart; c < cEnd; ++c) { 8140298fd71SBarry Smith PetscInt *closure = NULL; 815552f7358SJed Brown PetscInt closureSize, firstPoint = -1; 816552f7358SJed Brown 817552f7358SJed Brown ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 818552f7358SJed Brown ierr = PetscViewerASCIISynchronizedPrintf(viewer, "\\draw[color=%s] ", colors[rank%numColors]);CHKERRQ(ierr); 819552f7358SJed Brown for (p = 0; p < closureSize*2; p += 2) { 820552f7358SJed Brown const PetscInt point = closure[p]; 821552f7358SJed Brown 822552f7358SJed Brown if ((point < vStart) || (point >= vEnd)) continue; 823552f7358SJed Brown if (firstPoint >= 0) {ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- ");CHKERRQ(ierr);} 824e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, "(%D_%d)", point, rank);CHKERRQ(ierr); 825552f7358SJed Brown if (firstPoint < 0) firstPoint = point; 826552f7358SJed Brown } 827552f7358SJed Brown /* Why doesn't this work? ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- cycle;\n");CHKERRQ(ierr); */ 828e4b003c7SBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer, " -- (%D_%d);\n", firstPoint, rank);CHKERRQ(ierr); 829552f7358SJed Brown ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 830552f7358SJed Brown } 8310588280cSMatthew G. Knepley } 832552f7358SJed Brown ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 8334d4c343aSBarry Smith ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr); 8340588280cSMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, "\\end{tikzpicture}\n");CHKERRQ(ierr); 835770b213bSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, "\\end{document}\n", name);CHKERRQ(ierr); 8360588280cSMatthew G. Knepley for (l = 0; l < numLabels; ++l) {ierr = PetscFree(names[l]);CHKERRQ(ierr);} 8370588280cSMatthew G. Knepley for (c = 0; c < numColors; ++c) {ierr = PetscFree(colors[c]);CHKERRQ(ierr);} 8380588280cSMatthew G. Knepley for (c = 0; c < numLColors; ++c) {ierr = PetscFree(lcolors[c]);CHKERRQ(ierr);} 8390588280cSMatthew G. Knepley ierr = PetscFree3(names, colors, lcolors);CHKERRQ(ierr); 840552f7358SJed Brown } else { 84182f516ccSBarry Smith MPI_Comm comm; 842834065abSMatthew G. Knepley PetscInt *sizes, *hybsizes; 843f73eea6eSMatthew G. Knepley PetscInt locDepth, depth, cellHeight, dim, d, pMax[4]; 844552f7358SJed Brown PetscInt pStart, pEnd, p; 845a57dd577SMatthew G Knepley PetscInt numLabels, l; 8461143a3c0SMatthew G. Knepley const char *name; 847552f7358SJed Brown PetscMPIInt size; 848552f7358SJed Brown 84982f516ccSBarry Smith ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr); 850552f7358SJed Brown ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr); 851c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 852f73eea6eSMatthew G. Knepley ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr); 8535f64d76eSMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) dm, &name);CHKERRQ(ierr); 854f73eea6eSMatthew G. Knepley if (name) {ierr = PetscViewerASCIIPrintf(viewer, "%s in %D dimension%s:\n", name, dim, dim == 1 ? "" : "s");CHKERRQ(ierr);} 855f73eea6eSMatthew G. Knepley else {ierr = PetscViewerASCIIPrintf(viewer, "Mesh in %D dimension%s:\n", dim, dim == 1 ? "" : "s");CHKERRQ(ierr);} 856f73eea6eSMatthew G. Knepley if (cellHeight) {ierr = PetscViewerASCIIPrintf(viewer, " Cells are at height %D\n", cellHeight);CHKERRQ(ierr);} 857552f7358SJed Brown ierr = DMPlexGetDepth(dm, &locDepth);CHKERRQ(ierr); 858b2566f29SBarry Smith ierr = MPIU_Allreduce(&locDepth, &depth, 1, MPIU_INT, MPI_MAX, comm);CHKERRQ(ierr); 859a04427b4SStefano Zampini ierr = DMPlexGetHybridBounds(dm, &pMax[depth], depth > 0 ? &pMax[depth-1] : NULL, depth > 1 ? &pMax[depth - 2] : NULL, &pMax[0]);CHKERRQ(ierr); 860dcca6d9dSJed Brown ierr = PetscMalloc2(size,&sizes,size,&hybsizes);CHKERRQ(ierr); 861552f7358SJed Brown if (depth == 1) { 862552f7358SJed Brown ierr = DMPlexGetDepthStratum(dm, 0, &pStart, &pEnd);CHKERRQ(ierr); 863552f7358SJed Brown pEnd = pEnd - pStart; 864a04427b4SStefano Zampini pMax[0] -= pStart; 865552f7358SJed Brown ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 866a04427b4SStefano Zampini ierr = MPI_Gather(&pMax[0], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 867f347f43bSBarry Smith ierr = PetscViewerASCIIPrintf(viewer, " %d-cells:", 0);CHKERRQ(ierr); 868a04427b4SStefano Zampini for (p = 0; p < size; ++p) { 869a04427b4SStefano Zampini if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);} 870a04427b4SStefano Zampini else {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);} 871a04427b4SStefano Zampini } 872552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr); 873552f7358SJed Brown ierr = DMPlexGetHeightStratum(dm, 0, &pStart, &pEnd);CHKERRQ(ierr); 874552f7358SJed Brown pEnd = pEnd - pStart; 875a04427b4SStefano Zampini pMax[depth] -= pStart; 876552f7358SJed Brown ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 877a04427b4SStefano Zampini ierr = MPI_Gather(&pMax[depth], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 878552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, " %D-cells:", dim);CHKERRQ(ierr); 879a04427b4SStefano Zampini for (p = 0; p < size; ++p) { 880a04427b4SStefano Zampini if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);} 881a04427b4SStefano Zampini else {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);} 882a04427b4SStefano Zampini } 883552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr); 884552f7358SJed Brown } else { 885cbb7f117SMark Adams PetscMPIInt rank; 886cbb7f117SMark Adams ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr); 887552f7358SJed Brown for (d = 0; d <= dim; d++) { 888552f7358SJed Brown ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr); 889834065abSMatthew G. Knepley pEnd -= pStart; 890834065abSMatthew G. Knepley pMax[d] -= pStart; 891552f7358SJed Brown ierr = MPI_Gather(&pEnd, 1, MPIU_INT, sizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 892834065abSMatthew G. Knepley ierr = MPI_Gather(&pMax[d], 1, MPIU_INT, hybsizes, 1, MPIU_INT, 0, comm);CHKERRQ(ierr); 893552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, " %D-cells:", d);CHKERRQ(ierr); 894834065abSMatthew G. Knepley for (p = 0; p < size; ++p) { 895cbb7f117SMark Adams if (!rank) { 896834065abSMatthew G. Knepley if (hybsizes[p] >= 0) {ierr = PetscViewerASCIIPrintf(viewer, " %D (%D)", sizes[p], sizes[p] - hybsizes[p]);CHKERRQ(ierr);} 897834065abSMatthew G. Knepley else {ierr = PetscViewerASCIIPrintf(viewer, " %D", sizes[p]);CHKERRQ(ierr);} 898834065abSMatthew G. Knepley } 899cbb7f117SMark Adams } 900552f7358SJed Brown ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr); 901552f7358SJed Brown } 902552f7358SJed Brown } 903834065abSMatthew G. Knepley ierr = PetscFree2(sizes,hybsizes);CHKERRQ(ierr); 904c58f1c22SToby Isaac ierr = DMGetNumLabels(dm, &numLabels);CHKERRQ(ierr); 905a57dd577SMatthew G Knepley if (numLabels) {ierr = PetscViewerASCIIPrintf(viewer, "Labels:\n");CHKERRQ(ierr);} 906a57dd577SMatthew G Knepley for (l = 0; l < numLabels; ++l) { 907a57dd577SMatthew G Knepley DMLabel label; 908a57dd577SMatthew G Knepley const char *name; 909a57dd577SMatthew G Knepley IS valueIS; 910a57dd577SMatthew G Knepley const PetscInt *values; 911a57dd577SMatthew G Knepley PetscInt numValues, v; 912a57dd577SMatthew G Knepley 913c58f1c22SToby Isaac ierr = DMGetLabelName(dm, l, &name);CHKERRQ(ierr); 914c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 915a57dd577SMatthew G Knepley ierr = DMLabelGetNumValues(label, &numValues);CHKERRQ(ierr); 916d72f73ffSMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, " %s: %D strata with value/size (", name, numValues);CHKERRQ(ierr); 917a57dd577SMatthew G Knepley ierr = DMLabelGetValueIS(label, &valueIS);CHKERRQ(ierr); 918a57dd577SMatthew G Knepley ierr = ISGetIndices(valueIS, &values);CHKERRQ(ierr); 919120dea56SMatthew G. Knepley ierr = PetscViewerASCIIUseTabs(viewer, PETSC_FALSE);CHKERRQ(ierr); 920a57dd577SMatthew G Knepley for (v = 0; v < numValues; ++v) { 921a57dd577SMatthew G Knepley PetscInt size; 922a57dd577SMatthew G Knepley 923a57dd577SMatthew G Knepley ierr = DMLabelGetStratumSize(label, values[v], &size);CHKERRQ(ierr); 924a57dd577SMatthew G Knepley if (v > 0) {ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);} 925d72f73ffSMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, "%D (%D)", values[v], size);CHKERRQ(ierr); 926a57dd577SMatthew G Knepley } 927a57dd577SMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, ")\n");CHKERRQ(ierr); 928120dea56SMatthew G. Knepley ierr = PetscViewerASCIIUseTabs(viewer, PETSC_TRUE);CHKERRQ(ierr); 929a57dd577SMatthew G Knepley ierr = ISRestoreIndices(valueIS, &values);CHKERRQ(ierr); 9304d41221fSMatthew G Knepley ierr = ISDestroy(&valueIS);CHKERRQ(ierr); 931a57dd577SMatthew G Knepley } 932a8fb8f29SToby Isaac ierr = DMGetCoarseDM(dm, &cdm);CHKERRQ(ierr); 9338e7ff633SMatthew G. Knepley if (cdm) { 9348e7ff633SMatthew G. Knepley ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 9358e7ff633SMatthew G. Knepley ierr = DMPlexView_Ascii(cdm, viewer);CHKERRQ(ierr); 9368e7ff633SMatthew G. Knepley ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 9378e7ff633SMatthew G. Knepley } 938552f7358SJed Brown } 939552f7358SJed Brown PetscFunctionReturn(0); 940552f7358SJed Brown } 941552f7358SJed Brown 9427cd05799SMatthew G. Knepley static PetscErrorCode DMPlexView_Draw(DM dm, PetscViewer viewer) 943e412dcbdSMatthew G. Knepley { 944e412dcbdSMatthew G. Knepley PetscDraw draw; 945e412dcbdSMatthew G. Knepley DM cdm; 946e412dcbdSMatthew G. Knepley PetscSection coordSection; 947e412dcbdSMatthew G. Knepley Vec coordinates; 948e412dcbdSMatthew G. Knepley const PetscScalar *coords; 94929494db1SLisandro Dalcin PetscReal xyl[2],xyr[2],bound[4] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL}; 950e412dcbdSMatthew G. Knepley PetscBool isnull; 951e412dcbdSMatthew G. Knepley PetscInt dim, vStart, vEnd, cStart, cEnd, c, N; 952e412dcbdSMatthew G. Knepley PetscErrorCode ierr; 953e412dcbdSMatthew G. Knepley 954e412dcbdSMatthew G. Knepley PetscFunctionBegin; 955e412dcbdSMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr); 956e412dcbdSMatthew G. Knepley if (dim != 2) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Cannot draw meshes of dimension %D", dim); 957e412dcbdSMatthew G. Knepley ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 958e87a4003SBarry Smith ierr = DMGetSection(cdm, &coordSection);CHKERRQ(ierr); 959e412dcbdSMatthew G. Knepley ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr); 960e412dcbdSMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 961e412dcbdSMatthew G. Knepley ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr); 962e412dcbdSMatthew G. Knepley 963e412dcbdSMatthew G. Knepley ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr); 964e412dcbdSMatthew G. Knepley ierr = PetscDrawIsNull(draw, &isnull);CHKERRQ(ierr); 965e412dcbdSMatthew G. Knepley if (isnull) PetscFunctionReturn(0); 966e412dcbdSMatthew G. Knepley ierr = PetscDrawSetTitle(draw, "Mesh");CHKERRQ(ierr); 967e412dcbdSMatthew G. Knepley 968e412dcbdSMatthew G. Knepley ierr = VecGetLocalSize(coordinates, &N);CHKERRQ(ierr); 969e412dcbdSMatthew G. Knepley ierr = VecGetArrayRead(coordinates, &coords);CHKERRQ(ierr); 970e412dcbdSMatthew G. Knepley for (c = 0; c < N; c += dim) { 9710c81f2a8SMatthew G. Knepley bound[0] = PetscMin(bound[0], PetscRealPart(coords[c])); bound[2] = PetscMax(bound[2], PetscRealPart(coords[c])); 9720c81f2a8SMatthew G. Knepley bound[1] = PetscMin(bound[1], PetscRealPart(coords[c+1])); bound[3] = PetscMax(bound[3], PetscRealPart(coords[c+1])); 973e412dcbdSMatthew G. Knepley } 974e412dcbdSMatthew G. Knepley ierr = VecRestoreArrayRead(coordinates, &coords);CHKERRQ(ierr); 97529494db1SLisandro Dalcin ierr = MPIU_Allreduce(&bound[0],xyl,2,MPIU_REAL,MPIU_MIN,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 97629494db1SLisandro Dalcin ierr = MPIU_Allreduce(&bound[2],xyr,2,MPIU_REAL,MPIU_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 97729494db1SLisandro Dalcin ierr = PetscDrawSetCoordinates(draw, xyl[0], xyl[1], xyr[0], xyr[1]);CHKERRQ(ierr); 978e412dcbdSMatthew G. Knepley ierr = PetscDrawClear(draw);CHKERRQ(ierr); 979e412dcbdSMatthew G. Knepley 980e412dcbdSMatthew G. Knepley for (c = cStart; c < cEnd; ++c) { 981e412dcbdSMatthew G. Knepley PetscScalar *coords = NULL; 98229494db1SLisandro Dalcin PetscInt numCoords,coneSize; 983e412dcbdSMatthew G. Knepley 98429494db1SLisandro Dalcin ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr); 985e412dcbdSMatthew G. Knepley ierr = DMPlexVecGetClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr); 98629494db1SLisandro Dalcin switch (coneSize) { 98729494db1SLisandro Dalcin case 3: 9880c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 9890c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 9900c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 991e412dcbdSMatthew G. Knepley break; 99229494db1SLisandro Dalcin case 4: 9930c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[0]), PetscRealPart(coords[1]), PetscRealPart(coords[2]), PetscRealPart(coords[3]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 9940c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[2]), PetscRealPart(coords[3]), PetscRealPart(coords[4]), PetscRealPart(coords[5]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 9950c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[4]), PetscRealPart(coords[5]), PetscRealPart(coords[6]), PetscRealPart(coords[7]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 9960c81f2a8SMatthew G. Knepley ierr = PetscDrawLine(draw, PetscRealPart(coords[6]), PetscRealPart(coords[7]), PetscRealPart(coords[0]), PetscRealPart(coords[1]), PETSC_DRAW_BLACK);CHKERRQ(ierr); 997e412dcbdSMatthew G. Knepley break; 99829494db1SLisandro Dalcin default: SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_SUP, "Cannot draw cells with %D facets", coneSize); 999e412dcbdSMatthew G. Knepley } 1000e412dcbdSMatthew G. Knepley ierr = DMPlexVecRestoreClosure(dm, coordSection, coordinates, c, &numCoords, &coords);CHKERRQ(ierr); 1001e412dcbdSMatthew G. Knepley } 1002e412dcbdSMatthew G. Knepley ierr = PetscDrawFlush(draw);CHKERRQ(ierr); 1003e412dcbdSMatthew G. Knepley ierr = PetscDrawPause(draw);CHKERRQ(ierr); 1004e412dcbdSMatthew G. Knepley ierr = PetscDrawSave(draw);CHKERRQ(ierr); 1005e412dcbdSMatthew G. Knepley PetscFunctionReturn(0); 1006e412dcbdSMatthew G. Knepley } 1007e412dcbdSMatthew G. Knepley 1008552f7358SJed Brown PetscErrorCode DMView_Plex(DM dm, PetscViewer viewer) 1009552f7358SJed Brown { 1010e655db49SSatish Balay PetscBool iascii, ishdf5, isvtk, isdraw, flg, isglvis; 1011552f7358SJed Brown PetscErrorCode ierr; 1012552f7358SJed Brown 1013552f7358SJed Brown PetscFunctionBegin; 1014552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1015552f7358SJed Brown PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2); 1016552f7358SJed Brown ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERASCII, &iascii);CHKERRQ(ierr); 1017fcf6c8fdSToby Isaac ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERVTK, &isvtk);CHKERRQ(ierr); 1018c6ccd67eSMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr); 1019e412dcbdSMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERDRAW, &isdraw);CHKERRQ(ierr); 10208135c375SStefano Zampini ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERGLVIS, &isglvis);CHKERRQ(ierr); 1021552f7358SJed Brown if (iascii) { 10228135c375SStefano Zampini PetscViewerFormat format; 10238135c375SStefano Zampini ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr); 10248135c375SStefano Zampini if (format == PETSC_VIEWER_ASCII_GLVIS) { 10258135c375SStefano Zampini ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr); 10268135c375SStefano Zampini } else { 1027552f7358SJed Brown ierr = DMPlexView_Ascii(dm, viewer);CHKERRQ(ierr); 10288135c375SStefano Zampini } 1029c6ccd67eSMatthew G. Knepley } else if (ishdf5) { 1030c6ccd67eSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5) 103139d25373SMatthew G. Knepley ierr = DMPlexView_HDF5_Internal(dm, viewer);CHKERRQ(ierr); 1032c6ccd67eSMatthew G. Knepley #else 1033c6ccd67eSMatthew G. Knepley SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5"); 1034552f7358SJed Brown #endif 1035e412dcbdSMatthew G. Knepley } else if (isvtk) { 1036fcf6c8fdSToby Isaac ierr = DMPlexVTKWriteAll((PetscObject) dm,viewer);CHKERRQ(ierr); 1037e412dcbdSMatthew G. Knepley } else if (isdraw) { 1038e412dcbdSMatthew G. Knepley ierr = DMPlexView_Draw(dm, viewer);CHKERRQ(ierr); 10398135c375SStefano Zampini } else if (isglvis) { 10408135c375SStefano Zampini ierr = DMPlexView_GLVis(dm, viewer);CHKERRQ(ierr); 104162201deeSVaclav Hapla } else { 1042a94aea51SVaclav Hapla SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex writing", ((PetscObject)viewer)->type_name); 1043fcf6c8fdSToby Isaac } 1044cb3ba0daSMatthew G. Knepley /* Optionally view the partition */ 1045cb3ba0daSMatthew G. Knepley ierr = PetscOptionsHasName(((PetscObject) dm)->options, ((PetscObject) dm)->prefix, "-dm_partition_view", &flg);CHKERRQ(ierr); 1046cb3ba0daSMatthew G. Knepley if (flg) { 1047cb3ba0daSMatthew G. Knepley Vec ranks; 1048cb3ba0daSMatthew G. Knepley ierr = DMPlexCreateRankField(dm, &ranks);CHKERRQ(ierr); 1049cb3ba0daSMatthew G. Knepley ierr = VecView(ranks, viewer);CHKERRQ(ierr); 1050cb3ba0daSMatthew G. Knepley ierr = VecDestroy(&ranks);CHKERRQ(ierr); 1051cb3ba0daSMatthew G. Knepley } 1052552f7358SJed Brown PetscFunctionReturn(0); 1053552f7358SJed Brown } 1054552f7358SJed Brown 10552c40f234SMatthew G. Knepley PetscErrorCode DMLoad_Plex(DM dm, PetscViewer viewer) 10562c40f234SMatthew G. Knepley { 1057d4f5a9a0SVaclav Hapla PetscBool ishdf5; 10582c40f234SMatthew G. Knepley PetscErrorCode ierr; 10592c40f234SMatthew G. Knepley 10602c40f234SMatthew G. Knepley PetscFunctionBegin; 10612c40f234SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 10622c40f234SMatthew G. Knepley PetscValidHeaderSpecific(viewer, PETSC_VIEWER_CLASSID, 2); 10632c40f234SMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr); 1064d4f5a9a0SVaclav Hapla if (ishdf5) { 10652c40f234SMatthew G. Knepley #if defined(PETSC_HAVE_HDF5) 10669c48423bSVaclav Hapla PetscViewerFormat format; 10679c48423bSVaclav Hapla ierr = PetscViewerGetFormat(viewer, &format);CHKERRQ(ierr); 10689c48423bSVaclav Hapla if (format == PETSC_VIEWER_HDF5_XDMF || format == PETSC_VIEWER_HDF5_VIZ) { 10699c48423bSVaclav Hapla ierr = DMPlexLoad_HDF5_Xdmf_Internal(dm, viewer);CHKERRQ(ierr); 10709c48423bSVaclav Hapla } else { 107139d25373SMatthew G. Knepley ierr = DMPlexLoad_HDF5_Internal(dm, viewer);CHKERRQ(ierr); 10729c48423bSVaclav Hapla } 10732c40f234SMatthew G. Knepley #else 10742c40f234SMatthew G. Knepley SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5"); 1075552f7358SJed Brown #endif 1076d4f5a9a0SVaclav Hapla } else { 1077d4f5a9a0SVaclav Hapla SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Viewer type %s not yet supported for DMPlex loading", ((PetscObject)viewer)->type_name); 1078552f7358SJed Brown } 1079552f7358SJed Brown PetscFunctionReturn(0); 1080552f7358SJed Brown } 1081552f7358SJed Brown 1082552f7358SJed Brown PetscErrorCode DMDestroy_Plex(DM dm) 1083552f7358SJed Brown { 1084552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1085552f7358SJed Brown PetscErrorCode ierr; 1086552f7358SJed Brown 1087552f7358SJed Brown PetscFunctionBegin; 10888135c375SStefano Zampini ierr = PetscObjectComposeFunction((PetscObject)dm,"DMSetUpGLVisViewer_C",NULL);CHKERRQ(ierr); 10898135c375SStefano Zampini ierr = PetscObjectComposeFunction((PetscObject)dm,"DMPlexInsertBoundaryValues_C", NULL);CHKERRQ(ierr); 10900d644c17SKarl Rupp if (--mesh->refct > 0) PetscFunctionReturn(0); 1091552f7358SJed Brown ierr = PetscSectionDestroy(&mesh->coneSection);CHKERRQ(ierr); 1092552f7358SJed Brown ierr = PetscFree(mesh->cones);CHKERRQ(ierr); 1093552f7358SJed Brown ierr = PetscFree(mesh->coneOrientations);CHKERRQ(ierr); 1094552f7358SJed Brown ierr = PetscSectionDestroy(&mesh->supportSection);CHKERRQ(ierr); 1095be36d101SStefano Zampini ierr = PetscSectionDestroy(&mesh->subdomainSection);CHKERRQ(ierr); 1096552f7358SJed Brown ierr = PetscFree(mesh->supports);CHKERRQ(ierr); 1097552f7358SJed Brown ierr = PetscFree(mesh->facesTmp);CHKERRQ(ierr); 1098d9deefdfSMatthew G. Knepley ierr = PetscFree(mesh->tetgenOpts);CHKERRQ(ierr); 1099d9deefdfSMatthew G. Knepley ierr = PetscFree(mesh->triangleOpts);CHKERRQ(ierr); 110077623264SMatthew G. Knepley ierr = PetscPartitionerDestroy(&mesh->partitioner);CHKERRQ(ierr); 1101a89082eeSMatthew G Knepley ierr = DMLabelDestroy(&mesh->subpointMap);CHKERRQ(ierr); 1102552f7358SJed Brown ierr = ISDestroy(&mesh->globalVertexNumbers);CHKERRQ(ierr); 1103552f7358SJed Brown ierr = ISDestroy(&mesh->globalCellNumbers);CHKERRQ(ierr); 1104a68b90caSToby Isaac ierr = PetscSectionDestroy(&mesh->anchorSection);CHKERRQ(ierr); 1105a68b90caSToby Isaac ierr = ISDestroy(&mesh->anchorIS);CHKERRQ(ierr); 1106d961a43aSToby Isaac ierr = PetscSectionDestroy(&mesh->parentSection);CHKERRQ(ierr); 1107d961a43aSToby Isaac ierr = PetscFree(mesh->parents);CHKERRQ(ierr); 1108d961a43aSToby Isaac ierr = PetscFree(mesh->childIDs);CHKERRQ(ierr); 1109d961a43aSToby Isaac ierr = PetscSectionDestroy(&mesh->childSection);CHKERRQ(ierr); 1110d961a43aSToby Isaac ierr = PetscFree(mesh->children);CHKERRQ(ierr); 1111d6a7ad0dSToby Isaac ierr = DMDestroy(&mesh->referenceTree);CHKERRQ(ierr); 1112fec49543SMatthew G. Knepley ierr = PetscGridHashDestroy(&mesh->lbox);CHKERRQ(ierr); 1113552f7358SJed Brown /* This was originally freed in DMDestroy(), but that prevents reference counting of backend objects */ 1114552f7358SJed Brown ierr = PetscFree(mesh);CHKERRQ(ierr); 1115552f7358SJed Brown PetscFunctionReturn(0); 1116552f7358SJed Brown } 1117552f7358SJed Brown 1118b412c318SBarry Smith PetscErrorCode DMCreateMatrix_Plex(DM dm, Mat *J) 1119552f7358SJed Brown { 11208d1174e4SMatthew G. Knepley PetscSection sectionGlobal; 1121acd755d7SMatthew G. Knepley PetscInt bs = -1, mbs; 1122552f7358SJed Brown PetscInt localSize; 1123837628f4SStefano Zampini PetscBool isShell, isBlock, isSeqBlock, isMPIBlock, isSymBlock, isSymSeqBlock, isSymMPIBlock, isMatIS; 1124552f7358SJed Brown PetscErrorCode ierr; 1125b412c318SBarry Smith MatType mtype; 11261428887cSShri Abhyankar ISLocalToGlobalMapping ltog; 1127552f7358SJed Brown 1128552f7358SJed Brown PetscFunctionBegin; 1129607a6623SBarry Smith ierr = MatInitializePackage();CHKERRQ(ierr); 1130b412c318SBarry Smith mtype = dm->mattype; 1131e87a4003SBarry Smith ierr = DMGetGlobalSection(dm, §ionGlobal);CHKERRQ(ierr); 1132552f7358SJed Brown /* ierr = PetscSectionGetStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr); */ 1133552f7358SJed Brown ierr = PetscSectionGetConstrainedStorageSize(sectionGlobal, &localSize);CHKERRQ(ierr); 113482f516ccSBarry Smith ierr = MatCreate(PetscObjectComm((PetscObject)dm), J);CHKERRQ(ierr); 1135552f7358SJed Brown ierr = MatSetSizes(*J, localSize, localSize, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr); 1136552f7358SJed Brown ierr = MatSetType(*J, mtype);CHKERRQ(ierr); 1137552f7358SJed Brown ierr = MatSetFromOptions(*J);CHKERRQ(ierr); 1138acd755d7SMatthew G. Knepley ierr = MatGetBlockSize(*J, &mbs);CHKERRQ(ierr); 1139acd755d7SMatthew G. Knepley if (mbs > 1) bs = mbs; 1140552f7358SJed Brown ierr = PetscStrcmp(mtype, MATSHELL, &isShell);CHKERRQ(ierr); 1141552f7358SJed Brown ierr = PetscStrcmp(mtype, MATBAIJ, &isBlock);CHKERRQ(ierr); 1142552f7358SJed Brown ierr = PetscStrcmp(mtype, MATSEQBAIJ, &isSeqBlock);CHKERRQ(ierr); 1143552f7358SJed Brown ierr = PetscStrcmp(mtype, MATMPIBAIJ, &isMPIBlock);CHKERRQ(ierr); 1144552f7358SJed Brown ierr = PetscStrcmp(mtype, MATSBAIJ, &isSymBlock);CHKERRQ(ierr); 1145552f7358SJed Brown ierr = PetscStrcmp(mtype, MATSEQSBAIJ, &isSymSeqBlock);CHKERRQ(ierr); 1146552f7358SJed Brown ierr = PetscStrcmp(mtype, MATMPISBAIJ, &isSymMPIBlock);CHKERRQ(ierr); 1147837628f4SStefano Zampini ierr = PetscStrcmp(mtype, MATIS, &isMatIS);CHKERRQ(ierr); 1148552f7358SJed Brown if (!isShell) { 1149be36d101SStefano Zampini PetscSection subSection; 1150837628f4SStefano Zampini PetscBool fillMatrix = (PetscBool)(!dm->prealloc_only && !isMatIS); 11510be3e97aSMatthew G. Knepley PetscInt *dnz, *onz, *dnzu, *onzu, bsLocal[2], bsMinMax[2], *ltogidx, lsize; 1152fad22124SMatthew G Knepley PetscInt pStart, pEnd, p, dof, cdof; 1153552f7358SJed Brown 115400140cc3SStefano Zampini /* Set localtoglobalmapping on the matrix for MatSetValuesLocal() to work (it also creates the local matrices in case of MATIS) */ 1155be36d101SStefano Zampini if (isMatIS) { /* need a different l2g map than the one computed by DMGetLocalToGlobalMapping */ 1156be36d101SStefano Zampini PetscSection section; 1157be36d101SStefano Zampini PetscInt size; 1158be36d101SStefano Zampini 1159e87a4003SBarry Smith ierr = DMGetSection(dm, §ion);CHKERRQ(ierr); 1160be36d101SStefano Zampini ierr = PetscSectionGetStorageSize(section, &size);CHKERRQ(ierr); 1161be36d101SStefano Zampini ierr = PetscMalloc1(size,<ogidx);CHKERRQ(ierr); 1162be36d101SStefano Zampini ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr); 1163be36d101SStefano Zampini } else { 116400140cc3SStefano Zampini ierr = DMGetLocalToGlobalMapping(dm,<og);CHKERRQ(ierr); 1165be36d101SStefano Zampini } 1166552f7358SJed Brown ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr); 1167be36d101SStefano Zampini for (p = pStart, lsize = 0; p < pEnd; ++p) { 1168a9d99c84SMatthew G. Knepley PetscInt bdof; 1169a9d99c84SMatthew G. Knepley 1170552f7358SJed Brown ierr = PetscSectionGetDof(sectionGlobal, p, &dof);CHKERRQ(ierr); 1171fad22124SMatthew G Knepley ierr = PetscSectionGetConstraintDof(sectionGlobal, p, &cdof);CHKERRQ(ierr); 11721d17a0a3SMatthew G. Knepley dof = dof < 0 ? -(dof+1) : dof; 11731d17a0a3SMatthew G. Knepley bdof = cdof && (dof-cdof) ? 1 : dof; 11741d17a0a3SMatthew G. Knepley if (dof) { 11751d17a0a3SMatthew G. Knepley if (bs < 0) {bs = bdof;} 1176be36d101SStefano Zampini else if (bs != bdof) {bs = 1; if (!isMatIS) break;} 1177be36d101SStefano Zampini } 1178be36d101SStefano Zampini if (isMatIS) { 1179be36d101SStefano Zampini PetscInt loff,c,off; 1180be36d101SStefano Zampini ierr = PetscSectionGetOffset(subSection, p, &loff);CHKERRQ(ierr); 1181be36d101SStefano Zampini ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr); 1182be36d101SStefano Zampini for (c = 0; c < dof-cdof; ++c, ++lsize) ltogidx[loff+c] = off > -1 ? off+c : -(off+1)+c; 1183552f7358SJed Brown } 11842a28c762SMatthew G Knepley } 11852a28c762SMatthew G Knepley /* Must have same blocksize on all procs (some might have no points) */ 11860be3e97aSMatthew G. Knepley bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs; 11870be3e97aSMatthew G. Knepley ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr); 11880be3e97aSMatthew G. Knepley if (bsMinMax[0] != bsMinMax[1]) {bs = 1;} 11890be3e97aSMatthew G. Knepley else {bs = bsMinMax[0];} 11904fa26246SMatthew G. Knepley bs = bs < 0 ? 1 : bs; 1191be36d101SStefano Zampini if (isMatIS) { 11924fa26246SMatthew G. Knepley PetscInt l; 11934fa26246SMatthew G. Knepley /* Must reduce indices by blocksize */ 11944fa26246SMatthew G. Knepley if (bs > 1) for (l = 0; l < lsize; ++l) ltogidx[l] /= bs; 11954fa26246SMatthew G. Knepley ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, lsize, ltogidx, PETSC_OWN_POINTER, <og);CHKERRQ(ierr); 1196be36d101SStefano Zampini } 1197be36d101SStefano Zampini ierr = MatSetLocalToGlobalMapping(*J,ltog,ltog);CHKERRQ(ierr); 1198be36d101SStefano Zampini if (isMatIS) { 1199be36d101SStefano Zampini ierr = ISLocalToGlobalMappingDestroy(<og);CHKERRQ(ierr); 1200be36d101SStefano Zampini } 12011795a4d1SJed Brown ierr = PetscCalloc4(localSize/bs, &dnz, localSize/bs, &onz, localSize/bs, &dnzu, localSize/bs, &onzu);CHKERRQ(ierr); 12028d1174e4SMatthew G. Knepley ierr = DMPlexPreallocateOperator(dm, bs, dnz, onz, dnzu, onzu, *J, fillMatrix);CHKERRQ(ierr); 1203552f7358SJed Brown ierr = PetscFree4(dnz, onz, dnzu, onzu);CHKERRQ(ierr); 1204552f7358SJed Brown } 1205b1f74addSMatthew G. Knepley ierr = MatSetDM(*J, dm);CHKERRQ(ierr); 1206552f7358SJed Brown PetscFunctionReturn(0); 1207552f7358SJed Brown } 1208552f7358SJed Brown 12097cd05799SMatthew G. Knepley /*@ 1210a8f00d21SMatthew G. Knepley DMPlexGetSubdomainSection - Returns the section associated with the subdomain 1211be36d101SStefano Zampini 1212be36d101SStefano Zampini Not collective 1213be36d101SStefano Zampini 1214be36d101SStefano Zampini Input Parameter: 1215be36d101SStefano Zampini . mesh - The DMPlex 1216be36d101SStefano Zampini 1217be36d101SStefano Zampini Output Parameters: 1218be36d101SStefano Zampini . subsection - The subdomain section 1219be36d101SStefano Zampini 1220be36d101SStefano Zampini Level: developer 1221be36d101SStefano Zampini 1222be36d101SStefano Zampini .seealso: 12237cd05799SMatthew G. Knepley @*/ 1224be36d101SStefano Zampini PetscErrorCode DMPlexGetSubdomainSection(DM dm, PetscSection *subsection) 1225be36d101SStefano Zampini { 1226be36d101SStefano Zampini DM_Plex *mesh = (DM_Plex*) dm->data; 1227be36d101SStefano Zampini PetscErrorCode ierr; 1228be36d101SStefano Zampini 1229be36d101SStefano Zampini PetscFunctionBegin; 1230be36d101SStefano Zampini PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1231be36d101SStefano Zampini if (!mesh->subdomainSection) { 1232be36d101SStefano Zampini PetscSection section; 1233be36d101SStefano Zampini PetscSF sf; 1234be36d101SStefano Zampini 1235be36d101SStefano Zampini ierr = PetscSFCreate(PETSC_COMM_SELF,&sf);CHKERRQ(ierr); 1236e87a4003SBarry Smith ierr = DMGetSection(dm,§ion);CHKERRQ(ierr); 1237be36d101SStefano Zampini ierr = PetscSectionCreateGlobalSection(section,sf,PETSC_FALSE,PETSC_TRUE,&mesh->subdomainSection);CHKERRQ(ierr); 1238be36d101SStefano Zampini ierr = PetscSFDestroy(&sf);CHKERRQ(ierr); 1239be36d101SStefano Zampini } 1240be36d101SStefano Zampini *subsection = mesh->subdomainSection; 1241be36d101SStefano Zampini PetscFunctionReturn(0); 1242be36d101SStefano Zampini } 1243be36d101SStefano Zampini 1244552f7358SJed Brown /*@ 1245552f7358SJed Brown DMPlexGetChart - Return the interval for all mesh points [pStart, pEnd) 1246552f7358SJed Brown 1247552f7358SJed Brown Not collective 1248552f7358SJed Brown 1249552f7358SJed Brown Input Parameter: 1250552f7358SJed Brown . mesh - The DMPlex 1251552f7358SJed Brown 1252552f7358SJed Brown Output Parameters: 1253552f7358SJed Brown + pStart - The first mesh point 1254552f7358SJed Brown - pEnd - The upper bound for mesh points 1255552f7358SJed Brown 1256552f7358SJed Brown Level: beginner 1257552f7358SJed Brown 1258552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart() 1259552f7358SJed Brown @*/ 1260552f7358SJed Brown PetscErrorCode DMPlexGetChart(DM dm, PetscInt *pStart, PetscInt *pEnd) 1261552f7358SJed Brown { 1262552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1263552f7358SJed Brown PetscErrorCode ierr; 1264552f7358SJed Brown 1265552f7358SJed Brown PetscFunctionBegin; 1266552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1267552f7358SJed Brown ierr = PetscSectionGetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr); 1268552f7358SJed Brown PetscFunctionReturn(0); 1269552f7358SJed Brown } 1270552f7358SJed Brown 1271552f7358SJed Brown /*@ 1272552f7358SJed Brown DMPlexSetChart - Set the interval for all mesh points [pStart, pEnd) 1273552f7358SJed Brown 1274552f7358SJed Brown Not collective 1275552f7358SJed Brown 1276552f7358SJed Brown Input Parameters: 1277552f7358SJed Brown + mesh - The DMPlex 1278552f7358SJed Brown . pStart - The first mesh point 1279552f7358SJed Brown - pEnd - The upper bound for mesh points 1280552f7358SJed Brown 1281552f7358SJed Brown Output Parameters: 1282552f7358SJed Brown 1283552f7358SJed Brown Level: beginner 1284552f7358SJed Brown 1285552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetChart() 1286552f7358SJed Brown @*/ 1287552f7358SJed Brown PetscErrorCode DMPlexSetChart(DM dm, PetscInt pStart, PetscInt pEnd) 1288552f7358SJed Brown { 1289552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1290552f7358SJed Brown PetscErrorCode ierr; 1291552f7358SJed Brown 1292552f7358SJed Brown PetscFunctionBegin; 1293552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1294552f7358SJed Brown ierr = PetscSectionSetChart(mesh->coneSection, pStart, pEnd);CHKERRQ(ierr); 1295552f7358SJed Brown ierr = PetscSectionSetChart(mesh->supportSection, pStart, pEnd);CHKERRQ(ierr); 1296552f7358SJed Brown PetscFunctionReturn(0); 1297552f7358SJed Brown } 1298552f7358SJed Brown 1299552f7358SJed Brown /*@ 1300eaf898f9SPatrick Sanan DMPlexGetConeSize - Return the number of in-edges for this point in the DAG 1301552f7358SJed Brown 1302552f7358SJed Brown Not collective 1303552f7358SJed Brown 1304552f7358SJed Brown Input Parameters: 1305552f7358SJed Brown + mesh - The DMPlex 1306eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart() 1307552f7358SJed Brown 1308552f7358SJed Brown Output Parameter: 1309552f7358SJed Brown . size - The cone size for point p 1310552f7358SJed Brown 1311552f7358SJed Brown Level: beginner 1312552f7358SJed Brown 1313552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart() 1314552f7358SJed Brown @*/ 1315552f7358SJed Brown PetscErrorCode DMPlexGetConeSize(DM dm, PetscInt p, PetscInt *size) 1316552f7358SJed Brown { 1317552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1318552f7358SJed Brown PetscErrorCode ierr; 1319552f7358SJed Brown 1320552f7358SJed Brown PetscFunctionBegin; 1321552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1322552f7358SJed Brown PetscValidPointer(size, 3); 1323552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, size);CHKERRQ(ierr); 1324552f7358SJed Brown PetscFunctionReturn(0); 1325552f7358SJed Brown } 1326552f7358SJed Brown 1327552f7358SJed Brown /*@ 1328eaf898f9SPatrick Sanan DMPlexSetConeSize - Set the number of in-edges for this point in the DAG 1329552f7358SJed Brown 1330552f7358SJed Brown Not collective 1331552f7358SJed Brown 1332552f7358SJed Brown Input Parameters: 1333552f7358SJed Brown + mesh - The DMPlex 1334eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1335552f7358SJed Brown - size - The cone size for point p 1336552f7358SJed Brown 1337552f7358SJed Brown Output Parameter: 1338552f7358SJed Brown 1339552f7358SJed Brown Note: 1340552f7358SJed Brown This should be called after DMPlexSetChart(). 1341552f7358SJed Brown 1342552f7358SJed Brown Level: beginner 1343552f7358SJed Brown 1344552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeSize(), DMPlexSetChart() 1345552f7358SJed Brown @*/ 1346552f7358SJed Brown PetscErrorCode DMPlexSetConeSize(DM dm, PetscInt p, PetscInt size) 1347552f7358SJed Brown { 1348552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1349552f7358SJed Brown PetscErrorCode ierr; 1350552f7358SJed Brown 1351552f7358SJed Brown PetscFunctionBegin; 1352552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1353552f7358SJed Brown ierr = PetscSectionSetDof(mesh->coneSection, p, size);CHKERRQ(ierr); 13540d644c17SKarl Rupp 1355552f7358SJed Brown mesh->maxConeSize = PetscMax(mesh->maxConeSize, size); 1356552f7358SJed Brown PetscFunctionReturn(0); 1357552f7358SJed Brown } 1358552f7358SJed Brown 1359f5a469b9SMatthew G. Knepley /*@ 1360eaf898f9SPatrick Sanan DMPlexAddConeSize - Add the given number of in-edges to this point in the DAG 1361f5a469b9SMatthew G. Knepley 1362f5a469b9SMatthew G. Knepley Not collective 1363f5a469b9SMatthew G. Knepley 1364f5a469b9SMatthew G. Knepley Input Parameters: 1365f5a469b9SMatthew G. Knepley + mesh - The DMPlex 1366eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1367f5a469b9SMatthew G. Knepley - size - The additional cone size for point p 1368f5a469b9SMatthew G. Knepley 1369f5a469b9SMatthew G. Knepley Output Parameter: 1370f5a469b9SMatthew G. Knepley 1371f5a469b9SMatthew G. Knepley Note: 1372f5a469b9SMatthew G. Knepley This should be called after DMPlexSetChart(). 1373f5a469b9SMatthew G. Knepley 1374f5a469b9SMatthew G. Knepley Level: beginner 1375f5a469b9SMatthew G. Knepley 1376f5a469b9SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexGetConeSize(), DMPlexSetChart() 1377f5a469b9SMatthew G. Knepley @*/ 1378f5a469b9SMatthew G. Knepley PetscErrorCode DMPlexAddConeSize(DM dm, PetscInt p, PetscInt size) 1379f5a469b9SMatthew G. Knepley { 1380f5a469b9SMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 1381f5a469b9SMatthew G. Knepley PetscInt csize; 1382f5a469b9SMatthew G. Knepley PetscErrorCode ierr; 1383f5a469b9SMatthew G. Knepley 1384f5a469b9SMatthew G. Knepley PetscFunctionBegin; 1385f5a469b9SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1386f5a469b9SMatthew G. Knepley ierr = PetscSectionAddDof(mesh->coneSection, p, size);CHKERRQ(ierr); 1387f5a469b9SMatthew G. Knepley ierr = PetscSectionGetDof(mesh->coneSection, p, &csize);CHKERRQ(ierr); 1388f5a469b9SMatthew G. Knepley 1389f5a469b9SMatthew G. Knepley mesh->maxConeSize = PetscMax(mesh->maxConeSize, csize); 1390f5a469b9SMatthew G. Knepley PetscFunctionReturn(0); 1391f5a469b9SMatthew G. Knepley } 1392f5a469b9SMatthew G. Knepley 1393552f7358SJed Brown /*@C 1394eaf898f9SPatrick Sanan DMPlexGetCone - Return the points on the in-edges for this point in the DAG 1395552f7358SJed Brown 1396552f7358SJed Brown Not collective 1397552f7358SJed Brown 1398552f7358SJed Brown Input Parameters: 1399552f7358SJed Brown + mesh - The DMPlex 1400eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart() 1401552f7358SJed Brown 1402552f7358SJed Brown Output Parameter: 1403552f7358SJed Brown . cone - An array of points which are on the in-edges for point p 1404552f7358SJed Brown 1405552f7358SJed Brown Level: beginner 1406552f7358SJed Brown 14073813dfbdSMatthew G Knepley Fortran Notes: 14083813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 14093813dfbdSMatthew G Knepley include petsc.h90 in your code. 14103813dfbdSMatthew G Knepley 14113813dfbdSMatthew G Knepley You must also call DMPlexRestoreCone() after you finish using the returned array. 1412552f7358SJed Brown 1413552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart() 1414552f7358SJed Brown @*/ 1415552f7358SJed Brown PetscErrorCode DMPlexGetCone(DM dm, PetscInt p, const PetscInt *cone[]) 1416552f7358SJed Brown { 1417552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1418552f7358SJed Brown PetscInt off; 1419552f7358SJed Brown PetscErrorCode ierr; 1420552f7358SJed Brown 1421552f7358SJed Brown PetscFunctionBegin; 1422552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1423552f7358SJed Brown PetscValidPointer(cone, 3); 1424552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 1425552f7358SJed Brown *cone = &mesh->cones[off]; 1426552f7358SJed Brown PetscFunctionReturn(0); 1427552f7358SJed Brown } 1428552f7358SJed Brown 1429552f7358SJed Brown /*@ 143092371b87SBarry 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 1431552f7358SJed Brown 1432552f7358SJed Brown Not collective 1433552f7358SJed Brown 1434552f7358SJed Brown Input Parameters: 1435552f7358SJed Brown + mesh - The DMPlex 1436eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1437552f7358SJed Brown - cone - An array of points which are on the in-edges for point p 1438552f7358SJed Brown 1439552f7358SJed Brown Output Parameter: 1440552f7358SJed Brown 1441552f7358SJed Brown Note: 1442552f7358SJed Brown This should be called after all calls to DMPlexSetConeSize() and DMSetUp(). 1443552f7358SJed Brown 144492371b87SBarry Smith Developer Note: Why not call this DMPlexSetCover() 144592371b87SBarry Smith 1446552f7358SJed Brown Level: beginner 1447552f7358SJed Brown 144892371b87SBarry Smith .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp(), DMPlexSetSupport(), DMPlexSetSupportSize() 1449552f7358SJed Brown @*/ 1450552f7358SJed Brown PetscErrorCode DMPlexSetCone(DM dm, PetscInt p, const PetscInt cone[]) 1451552f7358SJed Brown { 1452552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1453552f7358SJed Brown PetscInt pStart, pEnd; 1454552f7358SJed Brown PetscInt dof, off, c; 1455552f7358SJed Brown PetscErrorCode ierr; 1456552f7358SJed Brown 1457552f7358SJed Brown PetscFunctionBegin; 1458552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1459552f7358SJed Brown ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr); 1460552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 1461552f7358SJed Brown if (dof) PetscValidPointer(cone, 3); 1462552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 146382f516ccSBarry 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); 1464552f7358SJed Brown for (c = 0; c < dof; ++c) { 146582f516ccSBarry 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); 1466552f7358SJed Brown mesh->cones[off+c] = cone[c]; 1467552f7358SJed Brown } 1468552f7358SJed Brown PetscFunctionReturn(0); 1469552f7358SJed Brown } 1470552f7358SJed Brown 1471552f7358SJed Brown /*@C 1472eaf898f9SPatrick Sanan DMPlexGetConeOrientation - Return the orientations on the in-edges for this point in the DAG 1473552f7358SJed Brown 1474552f7358SJed Brown Not collective 1475552f7358SJed Brown 1476552f7358SJed Brown Input Parameters: 1477552f7358SJed Brown + mesh - The DMPlex 1478eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart() 1479552f7358SJed Brown 1480552f7358SJed Brown Output Parameter: 1481552f7358SJed Brown . coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an 1482552f7358SJed Brown integer giving the prescription for cone traversal. If it is negative, the cone is 1483552f7358SJed Brown traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives 1484552f7358SJed Brown the index of the cone point on which to start. 1485552f7358SJed Brown 1486552f7358SJed Brown Level: beginner 1487552f7358SJed Brown 14883813dfbdSMatthew G Knepley Fortran Notes: 14893813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 14903813dfbdSMatthew G Knepley include petsc.h90 in your code. 14913813dfbdSMatthew G Knepley 14923813dfbdSMatthew G Knepley You must also call DMPlexRestoreConeOrientation() after you finish using the returned array. 1493552f7358SJed Brown 1494552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetCone(), DMPlexSetChart() 1495552f7358SJed Brown @*/ 1496552f7358SJed Brown PetscErrorCode DMPlexGetConeOrientation(DM dm, PetscInt p, const PetscInt *coneOrientation[]) 1497552f7358SJed Brown { 1498552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1499552f7358SJed Brown PetscInt off; 1500552f7358SJed Brown PetscErrorCode ierr; 1501552f7358SJed Brown 1502552f7358SJed Brown PetscFunctionBegin; 1503552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1504552f7358SJed Brown #if defined(PETSC_USE_DEBUG) 1505552f7358SJed Brown { 1506552f7358SJed Brown PetscInt dof; 1507552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 1508552f7358SJed Brown if (dof) PetscValidPointer(coneOrientation, 3); 1509552f7358SJed Brown } 1510552f7358SJed Brown #endif 1511552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 15120d644c17SKarl Rupp 1513552f7358SJed Brown *coneOrientation = &mesh->coneOrientations[off]; 1514552f7358SJed Brown PetscFunctionReturn(0); 1515552f7358SJed Brown } 1516552f7358SJed Brown 1517552f7358SJed Brown /*@ 1518eaf898f9SPatrick Sanan DMPlexSetConeOrientation - Set the orientations on the in-edges for this point in the DAG 1519552f7358SJed Brown 1520552f7358SJed Brown Not collective 1521552f7358SJed Brown 1522552f7358SJed Brown Input Parameters: 1523552f7358SJed Brown + mesh - The DMPlex 1524eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1525552f7358SJed Brown - coneOrientation - An array of orientations which are on the in-edges for point p. An orientation is an 1526552f7358SJed Brown integer giving the prescription for cone traversal. If it is negative, the cone is 1527552f7358SJed Brown traversed in the opposite direction. Its value 'o', or if negative '-(o+1)', gives 1528552f7358SJed Brown the index of the cone point on which to start. 1529552f7358SJed Brown 1530552f7358SJed Brown Output Parameter: 1531552f7358SJed Brown 1532552f7358SJed Brown Note: 1533552f7358SJed Brown This should be called after all calls to DMPlexSetConeSize() and DMSetUp(). 1534552f7358SJed Brown 1535552f7358SJed Brown Level: beginner 1536552f7358SJed Brown 1537552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetConeOrientation(), DMPlexSetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp() 1538552f7358SJed Brown @*/ 1539552f7358SJed Brown PetscErrorCode DMPlexSetConeOrientation(DM dm, PetscInt p, const PetscInt coneOrientation[]) 1540552f7358SJed Brown { 1541552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1542552f7358SJed Brown PetscInt pStart, pEnd; 1543552f7358SJed Brown PetscInt dof, off, c; 1544552f7358SJed Brown PetscErrorCode ierr; 1545552f7358SJed Brown 1546552f7358SJed Brown PetscFunctionBegin; 1547552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1548552f7358SJed Brown ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr); 1549552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 1550552f7358SJed Brown if (dof) PetscValidPointer(coneOrientation, 3); 1551552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 155282f516ccSBarry 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); 1553552f7358SJed Brown for (c = 0; c < dof; ++c) { 1554552f7358SJed Brown PetscInt cdof, o = coneOrientation[c]; 1555552f7358SJed Brown 1556552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, mesh->cones[off+c], &cdof);CHKERRQ(ierr); 155782f516ccSBarry 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); 1558552f7358SJed Brown mesh->coneOrientations[off+c] = o; 1559552f7358SJed Brown } 1560552f7358SJed Brown PetscFunctionReturn(0); 1561552f7358SJed Brown } 1562552f7358SJed Brown 15637cd05799SMatthew G. Knepley /*@ 1564eaf898f9SPatrick Sanan DMPlexInsertCone - Insert a point into the in-edges for the point p in the DAG 15657cd05799SMatthew G. Knepley 15667cd05799SMatthew G. Knepley Not collective 15677cd05799SMatthew G. Knepley 15687cd05799SMatthew G. Knepley Input Parameters: 15697cd05799SMatthew G. Knepley + mesh - The DMPlex 1570eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 15717cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put 15727cd05799SMatthew G. Knepley - conePoint - The mesh point to insert 15737cd05799SMatthew G. Knepley 15747cd05799SMatthew G. Knepley Level: beginner 15757cd05799SMatthew G. Knepley 15767cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp() 15777cd05799SMatthew G. Knepley @*/ 1578552f7358SJed Brown PetscErrorCode DMPlexInsertCone(DM dm, PetscInt p, PetscInt conePos, PetscInt conePoint) 1579552f7358SJed Brown { 1580552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1581552f7358SJed Brown PetscInt pStart, pEnd; 1582552f7358SJed Brown PetscInt dof, off; 1583552f7358SJed Brown PetscErrorCode ierr; 1584552f7358SJed Brown 1585552f7358SJed Brown PetscFunctionBegin; 1586552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1587552f7358SJed Brown ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr); 158882f516ccSBarry 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); 158982f516ccSBarry 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); 159077c88f5bSMatthew G Knepley ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 159177c88f5bSMatthew G Knepley ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 159277c88f5bSMatthew 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); 1593552f7358SJed Brown mesh->cones[off+conePos] = conePoint; 1594552f7358SJed Brown PetscFunctionReturn(0); 1595552f7358SJed Brown } 1596552f7358SJed Brown 15977cd05799SMatthew G. Knepley /*@ 1598eaf898f9SPatrick Sanan DMPlexInsertConeOrientation - Insert a point orientation for the in-edge for the point p in the DAG 15997cd05799SMatthew G. Knepley 16007cd05799SMatthew G. Knepley Not collective 16017cd05799SMatthew G. Knepley 16027cd05799SMatthew G. Knepley Input Parameters: 16037cd05799SMatthew G. Knepley + mesh - The DMPlex 1604eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 16057cd05799SMatthew G. Knepley . conePos - The local index in the cone where the point should be put 16067cd05799SMatthew G. Knepley - coneOrientation - The point orientation to insert 16077cd05799SMatthew G. Knepley 16087cd05799SMatthew G. Knepley Level: beginner 16097cd05799SMatthew G. Knepley 16107cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp() 16117cd05799SMatthew G. Knepley @*/ 161277c88f5bSMatthew G Knepley PetscErrorCode DMPlexInsertConeOrientation(DM dm, PetscInt p, PetscInt conePos, PetscInt coneOrientation) 161377c88f5bSMatthew G Knepley { 161477c88f5bSMatthew G Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 161577c88f5bSMatthew G Knepley PetscInt pStart, pEnd; 161677c88f5bSMatthew G Knepley PetscInt dof, off; 161777c88f5bSMatthew G Knepley PetscErrorCode ierr; 161877c88f5bSMatthew G Knepley 161977c88f5bSMatthew G Knepley PetscFunctionBegin; 162077c88f5bSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 162177c88f5bSMatthew G Knepley ierr = PetscSectionGetChart(mesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr); 162277c88f5bSMatthew 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); 162377c88f5bSMatthew G Knepley ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 162477c88f5bSMatthew G Knepley ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 162577c88f5bSMatthew 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); 162677c88f5bSMatthew G Knepley mesh->coneOrientations[off+conePos] = coneOrientation; 162777c88f5bSMatthew G Knepley PetscFunctionReturn(0); 162877c88f5bSMatthew G Knepley } 162977c88f5bSMatthew G Knepley 1630552f7358SJed Brown /*@ 1631eaf898f9SPatrick Sanan DMPlexGetSupportSize - Return the number of out-edges for this point in the DAG 1632552f7358SJed Brown 1633552f7358SJed Brown Not collective 1634552f7358SJed Brown 1635552f7358SJed Brown Input Parameters: 1636552f7358SJed Brown + mesh - The DMPlex 1637eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart() 1638552f7358SJed Brown 1639552f7358SJed Brown Output Parameter: 1640552f7358SJed Brown . size - The support size for point p 1641552f7358SJed Brown 1642552f7358SJed Brown Level: beginner 1643552f7358SJed Brown 1644552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart(), DMPlexGetConeSize() 1645552f7358SJed Brown @*/ 1646552f7358SJed Brown PetscErrorCode DMPlexGetSupportSize(DM dm, PetscInt p, PetscInt *size) 1647552f7358SJed Brown { 1648552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1649552f7358SJed Brown PetscErrorCode ierr; 1650552f7358SJed Brown 1651552f7358SJed Brown PetscFunctionBegin; 1652552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1653552f7358SJed Brown PetscValidPointer(size, 3); 1654552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, p, size);CHKERRQ(ierr); 1655552f7358SJed Brown PetscFunctionReturn(0); 1656552f7358SJed Brown } 1657552f7358SJed Brown 1658552f7358SJed Brown /*@ 1659eaf898f9SPatrick Sanan DMPlexSetSupportSize - Set the number of out-edges for this point in the DAG 1660552f7358SJed Brown 1661552f7358SJed Brown Not collective 1662552f7358SJed Brown 1663552f7358SJed Brown Input Parameters: 1664552f7358SJed Brown + mesh - The DMPlex 1665eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1666552f7358SJed Brown - size - The support size for point p 1667552f7358SJed Brown 1668552f7358SJed Brown Output Parameter: 1669552f7358SJed Brown 1670552f7358SJed Brown Note: 1671552f7358SJed Brown This should be called after DMPlexSetChart(). 1672552f7358SJed Brown 1673552f7358SJed Brown Level: beginner 1674552f7358SJed Brown 1675552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexGetSupportSize(), DMPlexSetChart() 1676552f7358SJed Brown @*/ 1677552f7358SJed Brown PetscErrorCode DMPlexSetSupportSize(DM dm, PetscInt p, PetscInt size) 1678552f7358SJed Brown { 1679552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1680552f7358SJed Brown PetscErrorCode ierr; 1681552f7358SJed Brown 1682552f7358SJed Brown PetscFunctionBegin; 1683552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1684552f7358SJed Brown ierr = PetscSectionSetDof(mesh->supportSection, p, size);CHKERRQ(ierr); 16850d644c17SKarl Rupp 1686552f7358SJed Brown mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, size); 1687552f7358SJed Brown PetscFunctionReturn(0); 1688552f7358SJed Brown } 1689552f7358SJed Brown 1690552f7358SJed Brown /*@C 1691eaf898f9SPatrick Sanan DMPlexGetSupport - Return the points on the out-edges for this point in the DAG 1692552f7358SJed Brown 1693552f7358SJed Brown Not collective 1694552f7358SJed Brown 1695552f7358SJed Brown Input Parameters: 1696552f7358SJed Brown + mesh - The DMPlex 1697eaf898f9SPatrick Sanan - p - The point, which must lie in the chart set with DMPlexSetChart() 1698552f7358SJed Brown 1699552f7358SJed Brown Output Parameter: 1700552f7358SJed Brown . support - An array of points which are on the out-edges for point p 1701552f7358SJed Brown 1702552f7358SJed Brown Level: beginner 1703552f7358SJed Brown 17043813dfbdSMatthew G Knepley Fortran Notes: 17053813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 17063813dfbdSMatthew G Knepley include petsc.h90 in your code. 17073813dfbdSMatthew G Knepley 17083813dfbdSMatthew G Knepley You must also call DMPlexRestoreSupport() after you finish using the returned array. 17093813dfbdSMatthew G Knepley 1710552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone() 1711552f7358SJed Brown @*/ 1712552f7358SJed Brown PetscErrorCode DMPlexGetSupport(DM dm, PetscInt p, const PetscInt *support[]) 1713552f7358SJed Brown { 1714552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1715552f7358SJed Brown PetscInt off; 1716552f7358SJed Brown PetscErrorCode ierr; 1717552f7358SJed Brown 1718552f7358SJed Brown PetscFunctionBegin; 1719552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1720552f7358SJed Brown PetscValidPointer(support, 3); 1721552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr); 1722552f7358SJed Brown *support = &mesh->supports[off]; 1723552f7358SJed Brown PetscFunctionReturn(0); 1724552f7358SJed Brown } 1725552f7358SJed Brown 1726552f7358SJed Brown /*@ 172792371b87SBarry 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 1728552f7358SJed Brown 1729552f7358SJed Brown Not collective 1730552f7358SJed Brown 1731552f7358SJed Brown Input Parameters: 1732552f7358SJed Brown + mesh - The DMPlex 1733eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 173492371b87SBarry Smith - support - An array of points which are on the out-edges for point p 1735552f7358SJed Brown 1736552f7358SJed Brown Output Parameter: 1737552f7358SJed Brown 1738552f7358SJed Brown Note: 1739552f7358SJed Brown This should be called after all calls to DMPlexSetSupportSize() and DMSetUp(). 1740552f7358SJed Brown 1741552f7358SJed Brown Level: beginner 1742552f7358SJed Brown 174392371b87SBarry Smith .seealso: DMPlexSetCone(), DMPlexSetConeSize(), DMPlexCreate(), DMPlexGetSupport(), DMPlexSetChart(), DMPlexSetSupportSize(), DMSetUp() 1744552f7358SJed Brown @*/ 1745552f7358SJed Brown PetscErrorCode DMPlexSetSupport(DM dm, PetscInt p, const PetscInt support[]) 1746552f7358SJed Brown { 1747552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1748552f7358SJed Brown PetscInt pStart, pEnd; 1749552f7358SJed Brown PetscInt dof, off, c; 1750552f7358SJed Brown PetscErrorCode ierr; 1751552f7358SJed Brown 1752552f7358SJed Brown PetscFunctionBegin; 1753552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1754552f7358SJed Brown ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr); 1755552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr); 1756552f7358SJed Brown if (dof) PetscValidPointer(support, 3); 1757552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr); 175882f516ccSBarry 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); 1759552f7358SJed Brown for (c = 0; c < dof; ++c) { 176082f516ccSBarry 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); 1761552f7358SJed Brown mesh->supports[off+c] = support[c]; 1762552f7358SJed Brown } 1763552f7358SJed Brown PetscFunctionReturn(0); 1764552f7358SJed Brown } 1765552f7358SJed Brown 17667cd05799SMatthew G. Knepley /*@ 1767eaf898f9SPatrick Sanan DMPlexInsertSupport - Insert a point into the out-edges for the point p in the DAG 17687cd05799SMatthew G. Knepley 17697cd05799SMatthew G. Knepley Not collective 17707cd05799SMatthew G. Knepley 17717cd05799SMatthew G. Knepley Input Parameters: 17727cd05799SMatthew G. Knepley + mesh - The DMPlex 1773eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 17747cd05799SMatthew G. Knepley . supportPos - The local index in the cone where the point should be put 17757cd05799SMatthew G. Knepley - supportPoint - The mesh point to insert 17767cd05799SMatthew G. Knepley 17777cd05799SMatthew G. Knepley Level: beginner 17787cd05799SMatthew G. Knepley 17797cd05799SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexGetCone(), DMPlexSetChart(), DMPlexSetConeSize(), DMSetUp() 17807cd05799SMatthew G. Knepley @*/ 1781552f7358SJed Brown PetscErrorCode DMPlexInsertSupport(DM dm, PetscInt p, PetscInt supportPos, PetscInt supportPoint) 1782552f7358SJed Brown { 1783552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1784552f7358SJed Brown PetscInt pStart, pEnd; 1785552f7358SJed Brown PetscInt dof, off; 1786552f7358SJed Brown PetscErrorCode ierr; 1787552f7358SJed Brown 1788552f7358SJed Brown PetscFunctionBegin; 1789552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1790552f7358SJed Brown ierr = PetscSectionGetChart(mesh->supportSection, &pStart, &pEnd);CHKERRQ(ierr); 1791552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr); 1792552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, p, &off);CHKERRQ(ierr); 179382f516ccSBarry 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); 179482f516ccSBarry 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); 179582f516ccSBarry 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); 1796552f7358SJed Brown mesh->supports[off+supportPos] = supportPoint; 1797552f7358SJed Brown PetscFunctionReturn(0); 1798552f7358SJed Brown } 1799552f7358SJed Brown 1800552f7358SJed Brown /*@C 1801eaf898f9SPatrick Sanan DMPlexGetTransitiveClosure - Return the points on the transitive closure of the in-edges or out-edges for this point in the DAG 1802552f7358SJed Brown 1803552f7358SJed Brown Not collective 1804552f7358SJed Brown 1805552f7358SJed Brown Input Parameters: 1806552f7358SJed Brown + mesh - The DMPlex 1807eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 1808552f7358SJed Brown . useCone - PETSC_TRUE for in-edges, otherwise use out-edges 18090298fd71SBarry Smith - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used 1810552f7358SJed Brown 1811552f7358SJed Brown Output Parameters: 1812552f7358SJed Brown + numPoints - The number of points in the closure, so points[] is of size 2*numPoints 1813552f7358SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...] 1814552f7358SJed Brown 1815552f7358SJed Brown Note: 18160298fd71SBarry Smith If using internal storage (points is NULL on input), each call overwrites the last output. 1817552f7358SJed Brown 18183813dfbdSMatthew G Knepley Fortran Notes: 18193813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 18203813dfbdSMatthew G Knepley include petsc.h90 in your code. 18213813dfbdSMatthew G Knepley 18223813dfbdSMatthew G Knepley The numPoints argument is not present in the Fortran 90 binding since it is internal to the array. 18233813dfbdSMatthew G Knepley 1824552f7358SJed Brown Level: beginner 1825552f7358SJed Brown 1826552f7358SJed Brown .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone() 1827552f7358SJed Brown @*/ 1828552f7358SJed Brown PetscErrorCode DMPlexGetTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[]) 1829552f7358SJed Brown { 1830552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 1831552f7358SJed Brown PetscInt *closure, *fifo; 18320298fd71SBarry Smith const PetscInt *tmp = NULL, *tmpO = NULL; 1833552f7358SJed Brown PetscInt tmpSize, t; 1834552f7358SJed Brown PetscInt depth = 0, maxSize; 1835552f7358SJed Brown PetscInt closureSize = 2, fifoSize = 0, fifoStart = 0; 1836552f7358SJed Brown PetscErrorCode ierr; 1837552f7358SJed Brown 1838552f7358SJed Brown PetscFunctionBegin; 1839552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1840552f7358SJed Brown ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 1841552f7358SJed Brown /* This is only 1-level */ 1842552f7358SJed Brown if (useCone) { 1843552f7358SJed Brown ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr); 1844552f7358SJed Brown ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr); 1845552f7358SJed Brown ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr); 1846552f7358SJed Brown } else { 1847552f7358SJed Brown ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr); 1848552f7358SJed Brown ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr); 1849552f7358SJed Brown } 1850bfbcdd7aSMatthew G. Knepley if (depth == 1) { 1851bfbcdd7aSMatthew G. Knepley if (*points) { 1852bfbcdd7aSMatthew G. Knepley closure = *points; 1853bfbcdd7aSMatthew G. Knepley } else { 1854bfbcdd7aSMatthew G. Knepley maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1); 185569291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr); 1856bfbcdd7aSMatthew G. Knepley } 1857bfbcdd7aSMatthew G. Knepley closure[0] = p; closure[1] = 0; 1858bfbcdd7aSMatthew G. Knepley for (t = 0; t < tmpSize; ++t, closureSize += 2) { 1859bfbcdd7aSMatthew G. Knepley closure[closureSize] = tmp[t]; 1860bfbcdd7aSMatthew G. Knepley closure[closureSize+1] = tmpO ? tmpO[t] : 0; 1861bfbcdd7aSMatthew G. Knepley } 1862bfbcdd7aSMatthew G. Knepley if (numPoints) *numPoints = closureSize/2; 1863bfbcdd7aSMatthew G. Knepley if (points) *points = closure; 1864bfbcdd7aSMatthew G. Knepley PetscFunctionReturn(0); 1865bfbcdd7aSMatthew G. Knepley } 186624c766afSToby Isaac { 186724c766afSToby Isaac PetscInt c, coneSeries, s,supportSeries; 186824c766afSToby Isaac 186924c766afSToby Isaac c = mesh->maxConeSize; 187024c766afSToby Isaac coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1; 187124c766afSToby Isaac s = mesh->maxSupportSize; 187224c766afSToby Isaac supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1; 187324c766afSToby Isaac maxSize = 2*PetscMax(coneSeries,supportSeries); 187424c766afSToby Isaac } 187569291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr); 1876bfbcdd7aSMatthew G. Knepley if (*points) { 1877bfbcdd7aSMatthew G. Knepley closure = *points; 1878bfbcdd7aSMatthew G. Knepley } else { 187969291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr); 1880bfbcdd7aSMatthew G. Knepley } 1881bfbcdd7aSMatthew G. Knepley closure[0] = p; closure[1] = 0; 1882552f7358SJed Brown for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) { 1883552f7358SJed Brown const PetscInt cp = tmp[t]; 1884552f7358SJed Brown const PetscInt co = tmpO ? tmpO[t] : 0; 1885552f7358SJed Brown 1886552f7358SJed Brown closure[closureSize] = cp; 1887552f7358SJed Brown closure[closureSize+1] = co; 1888552f7358SJed Brown fifo[fifoSize] = cp; 1889552f7358SJed Brown fifo[fifoSize+1] = co; 1890552f7358SJed Brown } 1891bfbcdd7aSMatthew G. Knepley /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */ 1892552f7358SJed Brown while (fifoSize - fifoStart) { 1893552f7358SJed Brown const PetscInt q = fifo[fifoStart]; 1894552f7358SJed Brown const PetscInt o = fifo[fifoStart+1]; 1895552f7358SJed Brown const PetscInt rev = o >= 0 ? 0 : 1; 1896552f7358SJed Brown const PetscInt off = rev ? -(o+1) : o; 1897552f7358SJed Brown 1898552f7358SJed Brown if (useCone) { 1899552f7358SJed Brown ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr); 1900552f7358SJed Brown ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr); 1901552f7358SJed Brown ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr); 1902552f7358SJed Brown } else { 1903552f7358SJed Brown ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr); 1904552f7358SJed Brown ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr); 19050298fd71SBarry Smith tmpO = NULL; 1906552f7358SJed Brown } 1907552f7358SJed Brown for (t = 0; t < tmpSize; ++t) { 1908552f7358SJed Brown const PetscInt i = ((rev ? tmpSize-t : t) + off)%tmpSize; 1909552f7358SJed Brown const PetscInt cp = tmp[i]; 19102e1b13c2SMatthew 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. */ 19112e1b13c2SMatthew G. Knepley /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1) 19122e1b13c2SMatthew G. Knepley const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */ 19132e1b13c2SMatthew G. Knepley PetscInt co = tmpO ? tmpO[i] : 0; 1914552f7358SJed Brown PetscInt c; 1915552f7358SJed Brown 19162e1b13c2SMatthew G. Knepley if (rev) { 19172e1b13c2SMatthew G. Knepley PetscInt childSize, coff; 19182e1b13c2SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr); 19192e1b13c2SMatthew G. Knepley coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i]; 19202e1b13c2SMatthew G. Knepley co = childSize ? -(((coff+childSize-1)%childSize)+1) : 0; 19212e1b13c2SMatthew G. Knepley } 1922552f7358SJed Brown /* Check for duplicate */ 1923552f7358SJed Brown for (c = 0; c < closureSize; c += 2) { 1924552f7358SJed Brown if (closure[c] == cp) break; 1925552f7358SJed Brown } 1926552f7358SJed Brown if (c == closureSize) { 1927552f7358SJed Brown closure[closureSize] = cp; 1928552f7358SJed Brown closure[closureSize+1] = co; 1929552f7358SJed Brown fifo[fifoSize] = cp; 1930552f7358SJed Brown fifo[fifoSize+1] = co; 1931552f7358SJed Brown closureSize += 2; 1932552f7358SJed Brown fifoSize += 2; 1933552f7358SJed Brown } 1934552f7358SJed Brown } 1935552f7358SJed Brown fifoStart += 2; 1936552f7358SJed Brown } 1937552f7358SJed Brown if (numPoints) *numPoints = closureSize/2; 1938552f7358SJed Brown if (points) *points = closure; 193969291d52SBarry Smith ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr); 1940552f7358SJed Brown PetscFunctionReturn(0); 1941552f7358SJed Brown } 1942552f7358SJed Brown 19439bf0dad6SMatthew G. Knepley /*@C 1944eaf898f9SPatrick 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 19459bf0dad6SMatthew G. Knepley 19469bf0dad6SMatthew G. Knepley Not collective 19479bf0dad6SMatthew G. Knepley 19489bf0dad6SMatthew G. Knepley Input Parameters: 19499bf0dad6SMatthew G. Knepley + mesh - The DMPlex 1950eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 19519bf0dad6SMatthew G. Knepley . orientation - The orientation of the point 19529bf0dad6SMatthew G. Knepley . useCone - PETSC_TRUE for in-edges, otherwise use out-edges 19539bf0dad6SMatthew G. Knepley - points - If points is NULL on input, internal storage will be returned, otherwise the provided array is used 19549bf0dad6SMatthew G. Knepley 19559bf0dad6SMatthew G. Knepley Output Parameters: 19569bf0dad6SMatthew G. Knepley + numPoints - The number of points in the closure, so points[] is of size 2*numPoints 19579bf0dad6SMatthew G. Knepley - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...] 19589bf0dad6SMatthew G. Knepley 19599bf0dad6SMatthew G. Knepley Note: 19609bf0dad6SMatthew G. Knepley If using internal storage (points is NULL on input), each call overwrites the last output. 19619bf0dad6SMatthew G. Knepley 19629bf0dad6SMatthew G. Knepley Fortran Notes: 19639bf0dad6SMatthew G. Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 19649bf0dad6SMatthew G. Knepley include petsc.h90 in your code. 19659bf0dad6SMatthew G. Knepley 19669bf0dad6SMatthew G. Knepley The numPoints argument is not present in the Fortran 90 binding since it is internal to the array. 19679bf0dad6SMatthew G. Knepley 19689bf0dad6SMatthew G. Knepley Level: beginner 19699bf0dad6SMatthew G. Knepley 19709bf0dad6SMatthew G. Knepley .seealso: DMPlexRestoreTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone() 19719bf0dad6SMatthew G. Knepley @*/ 19729bf0dad6SMatthew G. Knepley PetscErrorCode DMPlexGetTransitiveClosure_Internal(DM dm, PetscInt p, PetscInt ornt, PetscBool useCone, PetscInt *numPoints, PetscInt *points[]) 19739bf0dad6SMatthew G. Knepley { 19749bf0dad6SMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 19759bf0dad6SMatthew G. Knepley PetscInt *closure, *fifo; 19769bf0dad6SMatthew G. Knepley const PetscInt *tmp = NULL, *tmpO = NULL; 19779bf0dad6SMatthew G. Knepley PetscInt tmpSize, t; 19789bf0dad6SMatthew G. Knepley PetscInt depth = 0, maxSize; 19799bf0dad6SMatthew G. Knepley PetscInt closureSize = 2, fifoSize = 0, fifoStart = 0; 19809bf0dad6SMatthew G. Knepley PetscErrorCode ierr; 19819bf0dad6SMatthew G. Knepley 19829bf0dad6SMatthew G. Knepley PetscFunctionBegin; 19839bf0dad6SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 19849bf0dad6SMatthew G. Knepley ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 19859bf0dad6SMatthew G. Knepley /* This is only 1-level */ 19869bf0dad6SMatthew G. Knepley if (useCone) { 19879bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, p, &tmpSize);CHKERRQ(ierr); 19889bf0dad6SMatthew G. Knepley ierr = DMPlexGetCone(dm, p, &tmp);CHKERRQ(ierr); 19899bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dm, p, &tmpO);CHKERRQ(ierr); 19909bf0dad6SMatthew G. Knepley } else { 19919bf0dad6SMatthew G. Knepley ierr = DMPlexGetSupportSize(dm, p, &tmpSize);CHKERRQ(ierr); 19929bf0dad6SMatthew G. Knepley ierr = DMPlexGetSupport(dm, p, &tmp);CHKERRQ(ierr); 19939bf0dad6SMatthew G. Knepley } 19949bf0dad6SMatthew G. Knepley if (depth == 1) { 19959bf0dad6SMatthew G. Knepley if (*points) { 19969bf0dad6SMatthew G. Knepley closure = *points; 19979bf0dad6SMatthew G. Knepley } else { 19989bf0dad6SMatthew G. Knepley maxSize = 2*(PetscMax(mesh->maxConeSize, mesh->maxSupportSize)+1); 199969291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr); 20009bf0dad6SMatthew G. Knepley } 20019bf0dad6SMatthew G. Knepley closure[0] = p; closure[1] = ornt; 20029bf0dad6SMatthew G. Knepley for (t = 0; t < tmpSize; ++t, closureSize += 2) { 20039bf0dad6SMatthew G. Knepley const PetscInt i = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize; 20049bf0dad6SMatthew G. Knepley closure[closureSize] = tmp[i]; 20059bf0dad6SMatthew G. Knepley closure[closureSize+1] = tmpO ? tmpO[i] : 0; 20069bf0dad6SMatthew G. Knepley } 20079bf0dad6SMatthew G. Knepley if (numPoints) *numPoints = closureSize/2; 20089bf0dad6SMatthew G. Knepley if (points) *points = closure; 20099bf0dad6SMatthew G. Knepley PetscFunctionReturn(0); 20109bf0dad6SMatthew G. Knepley } 201124c766afSToby Isaac { 201224c766afSToby Isaac PetscInt c, coneSeries, s,supportSeries; 201324c766afSToby Isaac 201424c766afSToby Isaac c = mesh->maxConeSize; 201524c766afSToby Isaac coneSeries = (c > 1) ? ((PetscPowInt(c,depth+1)-1)/(c-1)) : depth+1; 201624c766afSToby Isaac s = mesh->maxSupportSize; 201724c766afSToby Isaac supportSeries = (s > 1) ? ((PetscPowInt(s,depth+1)-1)/(s-1)) : depth+1; 201824c766afSToby Isaac maxSize = 2*PetscMax(coneSeries,supportSeries); 201924c766afSToby Isaac } 202069291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr); 20219bf0dad6SMatthew G. Knepley if (*points) { 20229bf0dad6SMatthew G. Knepley closure = *points; 20239bf0dad6SMatthew G. Knepley } else { 202469291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &closure);CHKERRQ(ierr); 20259bf0dad6SMatthew G. Knepley } 20269bf0dad6SMatthew G. Knepley closure[0] = p; closure[1] = ornt; 20279bf0dad6SMatthew G. Knepley for (t = 0; t < tmpSize; ++t, closureSize += 2, fifoSize += 2) { 20289bf0dad6SMatthew G. Knepley const PetscInt i = ornt >= 0 ? (t+ornt)%tmpSize : (-(ornt+1) + tmpSize-t)%tmpSize; 20299bf0dad6SMatthew G. Knepley const PetscInt cp = tmp[i]; 20309bf0dad6SMatthew G. Knepley PetscInt co = tmpO ? tmpO[i] : 0; 20319bf0dad6SMatthew G. Knepley 20329bf0dad6SMatthew G. Knepley if (ornt < 0) { 20339bf0dad6SMatthew G. Knepley PetscInt childSize, coff; 20349bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr); 203586b63641SMatthew G. Knepley coff = co < 0 ? -(tmpO[i]+1) : tmpO[i]; 20369bf0dad6SMatthew G. Knepley co = childSize ? -(((coff+childSize-1)%childSize)+1) : 0; 20379bf0dad6SMatthew G. Knepley } 20389bf0dad6SMatthew G. Knepley closure[closureSize] = cp; 20399bf0dad6SMatthew G. Knepley closure[closureSize+1] = co; 20409bf0dad6SMatthew G. Knepley fifo[fifoSize] = cp; 20419bf0dad6SMatthew G. Knepley fifo[fifoSize+1] = co; 20429bf0dad6SMatthew G. Knepley } 20439bf0dad6SMatthew G. Knepley /* Should kick out early when depth is reached, rather than checking all vertices for empty cones */ 20449bf0dad6SMatthew G. Knepley while (fifoSize - fifoStart) { 20459bf0dad6SMatthew G. Knepley const PetscInt q = fifo[fifoStart]; 20469bf0dad6SMatthew G. Knepley const PetscInt o = fifo[fifoStart+1]; 20479bf0dad6SMatthew G. Knepley const PetscInt rev = o >= 0 ? 0 : 1; 20489bf0dad6SMatthew G. Knepley const PetscInt off = rev ? -(o+1) : o; 20499bf0dad6SMatthew G. Knepley 20509bf0dad6SMatthew G. Knepley if (useCone) { 20519bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, q, &tmpSize);CHKERRQ(ierr); 20529bf0dad6SMatthew G. Knepley ierr = DMPlexGetCone(dm, q, &tmp);CHKERRQ(ierr); 20539bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dm, q, &tmpO);CHKERRQ(ierr); 20549bf0dad6SMatthew G. Knepley } else { 20559bf0dad6SMatthew G. Knepley ierr = DMPlexGetSupportSize(dm, q, &tmpSize);CHKERRQ(ierr); 20569bf0dad6SMatthew G. Knepley ierr = DMPlexGetSupport(dm, q, &tmp);CHKERRQ(ierr); 20579bf0dad6SMatthew G. Knepley tmpO = NULL; 20589bf0dad6SMatthew G. Knepley } 20599bf0dad6SMatthew G. Knepley for (t = 0; t < tmpSize; ++t) { 20609bf0dad6SMatthew G. Knepley const PetscInt i = ((rev ? tmpSize-t : t) + off)%tmpSize; 20619bf0dad6SMatthew G. Knepley const PetscInt cp = tmp[i]; 20629bf0dad6SMatthew 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. */ 20639bf0dad6SMatthew G. Knepley /* HACK: It is worse to get the size here, than to change the interpretation of -(*+1) 20649bf0dad6SMatthew G. Knepley const PetscInt co = tmpO ? (rev ? -(tmpO[i]+1) : tmpO[i]) : 0; */ 20659bf0dad6SMatthew G. Knepley PetscInt co = tmpO ? tmpO[i] : 0; 20669bf0dad6SMatthew G. Knepley PetscInt c; 20679bf0dad6SMatthew G. Knepley 20689bf0dad6SMatthew G. Knepley if (rev) { 20699bf0dad6SMatthew G. Knepley PetscInt childSize, coff; 20709bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, cp, &childSize);CHKERRQ(ierr); 20719bf0dad6SMatthew G. Knepley coff = tmpO[i] < 0 ? -(tmpO[i]+1) : tmpO[i]; 20729bf0dad6SMatthew G. Knepley co = childSize ? -(((coff+childSize-1)%childSize)+1) : 0; 20739bf0dad6SMatthew G. Knepley } 20749bf0dad6SMatthew G. Knepley /* Check for duplicate */ 20759bf0dad6SMatthew G. Knepley for (c = 0; c < closureSize; c += 2) { 20769bf0dad6SMatthew G. Knepley if (closure[c] == cp) break; 20779bf0dad6SMatthew G. Knepley } 20789bf0dad6SMatthew G. Knepley if (c == closureSize) { 20799bf0dad6SMatthew G. Knepley closure[closureSize] = cp; 20809bf0dad6SMatthew G. Knepley closure[closureSize+1] = co; 20819bf0dad6SMatthew G. Knepley fifo[fifoSize] = cp; 20829bf0dad6SMatthew G. Knepley fifo[fifoSize+1] = co; 20839bf0dad6SMatthew G. Knepley closureSize += 2; 20849bf0dad6SMatthew G. Knepley fifoSize += 2; 20859bf0dad6SMatthew G. Knepley } 20869bf0dad6SMatthew G. Knepley } 20879bf0dad6SMatthew G. Knepley fifoStart += 2; 20889bf0dad6SMatthew G. Knepley } 20899bf0dad6SMatthew G. Knepley if (numPoints) *numPoints = closureSize/2; 20909bf0dad6SMatthew G. Knepley if (points) *points = closure; 209169291d52SBarry Smith ierr = DMRestoreWorkArray(dm, maxSize, MPIU_INT, &fifo);CHKERRQ(ierr); 20929bf0dad6SMatthew G. Knepley PetscFunctionReturn(0); 20939bf0dad6SMatthew G. Knepley } 20949bf0dad6SMatthew G. Knepley 2095552f7358SJed Brown /*@C 2096eaf898f9SPatrick Sanan DMPlexRestoreTransitiveClosure - Restore the array of points on the transitive closure of the in-edges or out-edges for this point in the DAG 2097552f7358SJed Brown 2098552f7358SJed Brown Not collective 2099552f7358SJed Brown 2100552f7358SJed Brown Input Parameters: 2101552f7358SJed Brown + mesh - The DMPlex 2102eaf898f9SPatrick Sanan . p - The point, which must lie in the chart set with DMPlexSetChart() 2103552f7358SJed Brown . useCone - PETSC_TRUE for in-edges, otherwise use out-edges 2104e5c84f05SJed Brown . numPoints - The number of points in the closure, so points[] is of size 2*numPoints, zeroed on exit 2105e5c84f05SJed Brown - points - The points and point orientations, interleaved as pairs [p0, o0, p1, o1, ...], zeroed on exit 2106552f7358SJed Brown 2107552f7358SJed Brown Note: 21080298fd71SBarry Smith If not using internal storage (points is not NULL on input), this call is unnecessary 2109552f7358SJed Brown 21103813dfbdSMatthew G Knepley Fortran Notes: 21113813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 21123813dfbdSMatthew G Knepley include petsc.h90 in your code. 21133813dfbdSMatthew G Knepley 21143813dfbdSMatthew G Knepley The numPoints argument is not present in the Fortran 90 binding since it is internal to the array. 21153813dfbdSMatthew G Knepley 2116552f7358SJed Brown Level: beginner 2117552f7358SJed Brown 2118552f7358SJed Brown .seealso: DMPlexGetTransitiveClosure(), DMPlexCreate(), DMPlexSetCone(), DMPlexSetChart(), DMPlexGetCone() 2119552f7358SJed Brown @*/ 2120552f7358SJed Brown PetscErrorCode DMPlexRestoreTransitiveClosure(DM dm, PetscInt p, PetscBool useCone, PetscInt *numPoints, PetscInt *points[]) 2121552f7358SJed Brown { 2122552f7358SJed Brown PetscErrorCode ierr; 2123552f7358SJed Brown 2124552f7358SJed Brown PetscFunctionBegin; 2125552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2126e5c84f05SJed Brown if (numPoints) PetscValidIntPointer(numPoints,4); 2127e5c84f05SJed Brown if (points) PetscValidPointer(points,5); 212869291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, points);CHKERRQ(ierr); 21294ff43b2cSJed Brown if (numPoints) *numPoints = 0; 2130552f7358SJed Brown PetscFunctionReturn(0); 2131552f7358SJed Brown } 2132552f7358SJed Brown 2133552f7358SJed Brown /*@ 2134eaf898f9SPatrick Sanan DMPlexGetMaxSizes - Return the maximum number of in-edges (cone) and out-edges (support) for any point in the DAG 2135552f7358SJed Brown 2136552f7358SJed Brown Not collective 2137552f7358SJed Brown 2138552f7358SJed Brown Input Parameter: 2139552f7358SJed Brown . mesh - The DMPlex 2140552f7358SJed Brown 2141552f7358SJed Brown Output Parameters: 2142552f7358SJed Brown + maxConeSize - The maximum number of in-edges 2143552f7358SJed Brown - maxSupportSize - The maximum number of out-edges 2144552f7358SJed Brown 2145552f7358SJed Brown Level: beginner 2146552f7358SJed Brown 2147552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetConeSize(), DMPlexSetChart() 2148552f7358SJed Brown @*/ 2149552f7358SJed Brown PetscErrorCode DMPlexGetMaxSizes(DM dm, PetscInt *maxConeSize, PetscInt *maxSupportSize) 2150552f7358SJed Brown { 2151552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2152552f7358SJed Brown 2153552f7358SJed Brown PetscFunctionBegin; 2154552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2155552f7358SJed Brown if (maxConeSize) *maxConeSize = mesh->maxConeSize; 2156552f7358SJed Brown if (maxSupportSize) *maxSupportSize = mesh->maxSupportSize; 2157552f7358SJed Brown PetscFunctionReturn(0); 2158552f7358SJed Brown } 2159552f7358SJed Brown 2160552f7358SJed Brown PetscErrorCode DMSetUp_Plex(DM dm) 2161552f7358SJed Brown { 2162552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2163552f7358SJed Brown PetscInt size; 2164552f7358SJed Brown PetscErrorCode ierr; 2165552f7358SJed Brown 2166552f7358SJed Brown PetscFunctionBegin; 2167552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2168552f7358SJed Brown ierr = PetscSectionSetUp(mesh->coneSection);CHKERRQ(ierr); 2169552f7358SJed Brown ierr = PetscSectionGetStorageSize(mesh->coneSection, &size);CHKERRQ(ierr); 21701795a4d1SJed Brown ierr = PetscMalloc1(size, &mesh->cones);CHKERRQ(ierr); 21711795a4d1SJed Brown ierr = PetscCalloc1(size, &mesh->coneOrientations);CHKERRQ(ierr); 2172552f7358SJed Brown if (mesh->maxSupportSize) { 2173552f7358SJed Brown ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr); 2174552f7358SJed Brown ierr = PetscSectionGetStorageSize(mesh->supportSection, &size);CHKERRQ(ierr); 21751795a4d1SJed Brown ierr = PetscMalloc1(size, &mesh->supports);CHKERRQ(ierr); 2176552f7358SJed Brown } 2177552f7358SJed Brown PetscFunctionReturn(0); 2178552f7358SJed Brown } 2179552f7358SJed Brown 2180276c5506SMatthew G. Knepley PetscErrorCode DMCreateSubDM_Plex(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm) 2181552f7358SJed Brown { 2182552f7358SJed Brown PetscErrorCode ierr; 2183552f7358SJed Brown 2184552f7358SJed Brown PetscFunctionBegin; 21854d9407bcSMatthew G. Knepley if (subdm) {ierr = DMClone(dm, subdm);CHKERRQ(ierr);} 21864d9407bcSMatthew G. Knepley ierr = DMCreateSubDM_Section_Private(dm, numFields, fields, is, subdm);CHKERRQ(ierr); 2187c2939958SSatish Balay if (subdm) {(*subdm)->useNatural = dm->useNatural;} 2188736995cdSBlaise Bourdin if (dm->useNatural && dm->sfMigration) { 2189f94b4a02SBlaise Bourdin PetscSF sfMigrationInv,sfNatural; 2190f94b4a02SBlaise Bourdin PetscSection section, sectionSeq; 2191f94b4a02SBlaise Bourdin 21923dcd263cSBlaise Bourdin (*subdm)->sfMigration = dm->sfMigration; 21933dcd263cSBlaise Bourdin ierr = PetscObjectReference((PetscObject) dm->sfMigration);CHKERRQ(ierr); 2194e87a4003SBarry Smith ierr = DMGetSection((*subdm), §ion);CHKERRQ(ierr);CHKERRQ(ierr); 2195f94b4a02SBlaise Bourdin ierr = PetscSFCreateInverseSF((*subdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr); 2196f94b4a02SBlaise Bourdin ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*subdm)), §ionSeq);CHKERRQ(ierr); 2197f94b4a02SBlaise Bourdin ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr); 2198f94b4a02SBlaise Bourdin 2199f94b4a02SBlaise Bourdin ierr = DMPlexCreateGlobalToNaturalSF(*subdm, sectionSeq, (*subdm)->sfMigration, &sfNatural);CHKERRQ(ierr); 2200c40e9495SBlaise Bourdin (*subdm)->sfNatural = sfNatural; 2201f94b4a02SBlaise Bourdin ierr = PetscSectionDestroy(§ionSeq);CHKERRQ(ierr); 2202f94b4a02SBlaise Bourdin ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr); 2203f94b4a02SBlaise Bourdin } 2204552f7358SJed Brown PetscFunctionReturn(0); 2205552f7358SJed Brown } 2206552f7358SJed Brown 22072adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM_Plex(DM dms[], PetscInt len, IS **is, DM *superdm) 22082adcc780SMatthew G. Knepley { 22092adcc780SMatthew G. Knepley PetscErrorCode ierr; 22103dcd263cSBlaise Bourdin PetscInt i = 0; 22112adcc780SMatthew G. Knepley 22122adcc780SMatthew G. Knepley PetscFunctionBegin; 22132adcc780SMatthew G. Knepley if (superdm) {ierr = DMClone(dms[0], superdm);CHKERRQ(ierr);} 22142adcc780SMatthew G. Knepley ierr = DMCreateSuperDM_Section_Private(dms, len, is, superdm);CHKERRQ(ierr); 2215c40e9495SBlaise Bourdin (*superdm)->useNatural = PETSC_FALSE; 22163dcd263cSBlaise Bourdin for (i = 0; i < len; i++){ 22173dcd263cSBlaise Bourdin if (dms[i]->useNatural && dms[i]->sfMigration) { 22183dcd263cSBlaise Bourdin PetscSF sfMigrationInv,sfNatural; 22193dcd263cSBlaise Bourdin PetscSection section, sectionSeq; 22203dcd263cSBlaise Bourdin 22213dcd263cSBlaise Bourdin (*superdm)->sfMigration = dms[i]->sfMigration; 22223dcd263cSBlaise Bourdin ierr = PetscObjectReference((PetscObject) dms[i]->sfMigration);CHKERRQ(ierr); 2223c40e9495SBlaise Bourdin (*superdm)->useNatural = PETSC_TRUE; 2224cf0b7c11SKarl Rupp ierr = DMGetSection((*superdm), §ion);CHKERRQ(ierr); 22253dcd263cSBlaise Bourdin ierr = PetscSFCreateInverseSF((*superdm)->sfMigration, &sfMigrationInv);CHKERRQ(ierr); 22263dcd263cSBlaise Bourdin ierr = PetscSectionCreate(PetscObjectComm((PetscObject) (*superdm)), §ionSeq);CHKERRQ(ierr); 22273dcd263cSBlaise Bourdin ierr = PetscSFDistributeSection(sfMigrationInv, section, NULL, sectionSeq);CHKERRQ(ierr); 22283dcd263cSBlaise Bourdin 22293dcd263cSBlaise Bourdin ierr = DMPlexCreateGlobalToNaturalSF(*superdm, sectionSeq, (*superdm)->sfMigration, &sfNatural);CHKERRQ(ierr); 2230c40e9495SBlaise Bourdin (*superdm)->sfNatural = sfNatural; 22313dcd263cSBlaise Bourdin ierr = PetscSectionDestroy(§ionSeq);CHKERRQ(ierr); 22323dcd263cSBlaise Bourdin ierr = PetscSFDestroy(&sfMigrationInv);CHKERRQ(ierr); 22333dcd263cSBlaise Bourdin break; 22343dcd263cSBlaise Bourdin } 22353dcd263cSBlaise Bourdin } 22362adcc780SMatthew G. Knepley PetscFunctionReturn(0); 22372adcc780SMatthew G. Knepley } 22382adcc780SMatthew G. Knepley 2239552f7358SJed Brown /*@ 2240eaf898f9SPatrick Sanan DMPlexSymmetrize - Create support (out-edge) information from cone (in-edge) information 2241552f7358SJed Brown 2242552f7358SJed Brown Not collective 2243552f7358SJed Brown 2244552f7358SJed Brown Input Parameter: 2245552f7358SJed Brown . mesh - The DMPlex 2246552f7358SJed Brown 2247552f7358SJed Brown Output Parameter: 2248552f7358SJed Brown 2249552f7358SJed Brown Note: 2250552f7358SJed Brown This should be called after all calls to DMPlexSetCone() 2251552f7358SJed Brown 2252552f7358SJed Brown Level: beginner 2253552f7358SJed Brown 2254552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSetChart(), DMPlexSetConeSize(), DMPlexSetCone() 2255552f7358SJed Brown @*/ 2256552f7358SJed Brown PetscErrorCode DMPlexSymmetrize(DM dm) 2257552f7358SJed Brown { 2258552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2259552f7358SJed Brown PetscInt *offsets; 2260552f7358SJed Brown PetscInt supportSize; 2261552f7358SJed Brown PetscInt pStart, pEnd, p; 2262552f7358SJed Brown PetscErrorCode ierr; 2263552f7358SJed Brown 2264552f7358SJed Brown PetscFunctionBegin; 2265552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 226682f516ccSBarry Smith if (mesh->supports) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "Supports were already setup in this DMPlex"); 2267552f7358SJed Brown /* Calculate support sizes */ 2268552f7358SJed Brown ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 2269552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 2270552f7358SJed Brown PetscInt dof, off, c; 2271552f7358SJed Brown 2272552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 2273552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 2274552f7358SJed Brown for (c = off; c < off+dof; ++c) { 2275552f7358SJed Brown ierr = PetscSectionAddDof(mesh->supportSection, mesh->cones[c], 1);CHKERRQ(ierr); 2276552f7358SJed Brown } 2277552f7358SJed Brown } 2278552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 2279552f7358SJed Brown PetscInt dof; 2280552f7358SJed Brown 2281552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, p, &dof);CHKERRQ(ierr); 22820d644c17SKarl Rupp 2283552f7358SJed Brown mesh->maxSupportSize = PetscMax(mesh->maxSupportSize, dof); 2284552f7358SJed Brown } 2285552f7358SJed Brown ierr = PetscSectionSetUp(mesh->supportSection);CHKERRQ(ierr); 2286552f7358SJed Brown /* Calculate supports */ 2287552f7358SJed Brown ierr = PetscSectionGetStorageSize(mesh->supportSection, &supportSize);CHKERRQ(ierr); 22881795a4d1SJed Brown ierr = PetscMalloc1(supportSize, &mesh->supports);CHKERRQ(ierr); 22891795a4d1SJed Brown ierr = PetscCalloc1(pEnd - pStart, &offsets);CHKERRQ(ierr); 2290552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 2291552f7358SJed Brown PetscInt dof, off, c; 2292552f7358SJed Brown 2293552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, p, &dof);CHKERRQ(ierr); 2294552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, p, &off);CHKERRQ(ierr); 2295552f7358SJed Brown for (c = off; c < off+dof; ++c) { 2296552f7358SJed Brown const PetscInt q = mesh->cones[c]; 2297552f7358SJed Brown PetscInt offS; 2298552f7358SJed Brown 2299552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, q, &offS);CHKERRQ(ierr); 23000d644c17SKarl Rupp 2301552f7358SJed Brown mesh->supports[offS+offsets[q]] = p; 2302552f7358SJed Brown ++offsets[q]; 2303552f7358SJed Brown } 2304552f7358SJed Brown } 2305552f7358SJed Brown ierr = PetscFree(offsets);CHKERRQ(ierr); 2306552f7358SJed Brown PetscFunctionReturn(0); 2307552f7358SJed Brown } 2308552f7358SJed Brown 23097d5acc75SStefano Zampini static PetscErrorCode DMPlexCreateDimStratum(DM,DMLabel,DMLabel,PetscInt,PetscInt); 23107d5acc75SStefano Zampini 2311552f7358SJed Brown /*@ 2312eaf898f9SPatrick Sanan DMPlexStratify - The DAG for most topologies is a graded poset (http://en.wikipedia.org/wiki/Graded_poset), and 2313eaf898f9SPatrick Sanan can be illustrated by a Hasse Diagram (a http://en.wikipedia.org/wiki/Hasse_diagram). The strata group all points of the 2314552f7358SJed Brown same grade, and this function calculates the strata. This grade can be seen as the height (or depth) of the point in 2315552f7358SJed Brown the DAG. 2316552f7358SJed Brown 2317bf4602e4SToby Isaac Collective on dm 2318552f7358SJed Brown 2319552f7358SJed Brown Input Parameter: 2320552f7358SJed Brown . mesh - The DMPlex 2321552f7358SJed Brown 2322552f7358SJed Brown Output Parameter: 2323552f7358SJed Brown 2324552f7358SJed Brown Notes: 2325150b719bSJed Brown Concretely, DMPlexStratify() creates a new label named "depth" containing the dimension of each element: 0 for vertices, 2326150b719bSJed Brown 1 for edges, and so on. The depth label can be accessed through DMPlexGetDepthLabel() or DMPlexGetDepthStratum(), or 2327c58f1c22SToby Isaac manually via DMGetLabel(). The height is defined implicitly by height = maxDimension - depth, and can be accessed 2328150b719bSJed Brown via DMPlexGetHeightStratum(). For example, cells have height 0 and faces have height 1. 2329552f7358SJed Brown 2330150b719bSJed Brown DMPlexStratify() should be called after all calls to DMPlexSymmetrize() 2331552f7358SJed Brown 2332552f7358SJed Brown Level: beginner 2333552f7358SJed Brown 2334552f7358SJed Brown .seealso: DMPlexCreate(), DMPlexSymmetrize() 2335552f7358SJed Brown @*/ 2336552f7358SJed Brown PetscErrorCode DMPlexStratify(DM dm) 2337552f7358SJed Brown { 2338df0420ecSMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 2339aa50250dSMatthew G. Knepley DMLabel label; 2340552f7358SJed Brown PetscInt pStart, pEnd, p; 2341552f7358SJed Brown PetscInt numRoots = 0, numLeaves = 0; 23427d5acc75SStefano Zampini PetscInt cMax, fMax, eMax, vMax; 2343552f7358SJed Brown PetscErrorCode ierr; 2344552f7358SJed Brown 2345552f7358SJed Brown PetscFunctionBegin; 2346552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2347552f7358SJed Brown ierr = PetscLogEventBegin(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr); 2348552f7358SJed Brown /* Calculate depth */ 2349aa50250dSMatthew G. Knepley ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 2350c58f1c22SToby Isaac ierr = DMCreateLabel(dm, "depth");CHKERRQ(ierr); 2351aa50250dSMatthew G. Knepley ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr); 2352552f7358SJed Brown /* Initialize roots and count leaves */ 2353552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 2354552f7358SJed Brown PetscInt coneSize, supportSize; 2355552f7358SJed Brown 2356552f7358SJed Brown ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr); 2357552f7358SJed Brown ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr); 2358552f7358SJed Brown if (!coneSize && supportSize) { 2359552f7358SJed Brown ++numRoots; 2360aa50250dSMatthew G. Knepley ierr = DMLabelSetValue(label, p, 0);CHKERRQ(ierr); 2361552f7358SJed Brown } else if (!supportSize && coneSize) { 2362552f7358SJed Brown ++numLeaves; 2363552f7358SJed Brown } else if (!supportSize && !coneSize) { 2364552f7358SJed Brown /* Isolated points */ 2365aa50250dSMatthew G. Knepley ierr = DMLabelSetValue(label, p, 0);CHKERRQ(ierr); 2366552f7358SJed Brown } 2367552f7358SJed Brown } 2368552f7358SJed Brown if (numRoots + numLeaves == (pEnd - pStart)) { 2369552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 2370552f7358SJed Brown PetscInt coneSize, supportSize; 2371552f7358SJed Brown 2372552f7358SJed Brown ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr); 2373552f7358SJed Brown ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr); 2374552f7358SJed Brown if (!supportSize && coneSize) { 2375aa50250dSMatthew G. Knepley ierr = DMLabelSetValue(label, p, 1);CHKERRQ(ierr); 2376552f7358SJed Brown } 2377552f7358SJed Brown } 2378552f7358SJed Brown } else { 237974ef644bSMatthew G. Knepley IS pointIS; 238074ef644bSMatthew G. Knepley PetscInt numPoints = 0, level = 0; 2381552f7358SJed Brown 238274ef644bSMatthew G. Knepley ierr = DMLabelGetStratumIS(label, level, &pointIS);CHKERRQ(ierr); 238374ef644bSMatthew G. Knepley if (pointIS) {ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);} 238474ef644bSMatthew G. Knepley while (numPoints) { 238574ef644bSMatthew G. Knepley const PetscInt *points; 238674ef644bSMatthew G. Knepley const PetscInt newLevel = level+1; 238774ef644bSMatthew G. Knepley 238874ef644bSMatthew G. Knepley ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr); 238974ef644bSMatthew G. Knepley for (p = 0; p < numPoints; ++p) { 239074ef644bSMatthew G. Knepley const PetscInt point = points[p]; 239174ef644bSMatthew G. Knepley const PetscInt *support; 239274ef644bSMatthew G. Knepley PetscInt supportSize, s; 239374ef644bSMatthew G. Knepley 239474ef644bSMatthew G. Knepley ierr = DMPlexGetSupportSize(dm, point, &supportSize);CHKERRQ(ierr); 239574ef644bSMatthew G. Knepley ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr); 239674ef644bSMatthew G. Knepley for (s = 0; s < supportSize; ++s) { 239774ef644bSMatthew G. Knepley ierr = DMLabelSetValue(label, support[s], newLevel);CHKERRQ(ierr); 2398552f7358SJed Brown } 2399552f7358SJed Brown } 24005edfc765SMatthew G. Knepley ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr); 240174ef644bSMatthew G. Knepley ++level; 240274ef644bSMatthew G. Knepley ierr = ISDestroy(&pointIS);CHKERRQ(ierr); 240374ef644bSMatthew G. Knepley ierr = DMLabelGetStratumIS(label, level, &pointIS);CHKERRQ(ierr); 240474ef644bSMatthew G. Knepley if (pointIS) {ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);} 240574ef644bSMatthew G. Knepley else {numPoints = 0;} 240674ef644bSMatthew G. Knepley } 240774ef644bSMatthew G. Knepley ierr = ISDestroy(&pointIS);CHKERRQ(ierr); 240874ef644bSMatthew G. Knepley } 2409bf4602e4SToby Isaac { /* just in case there is an empty process */ 2410bf4602e4SToby Isaac PetscInt numValues, maxValues = 0, v; 2411bf4602e4SToby Isaac 2412bf4602e4SToby Isaac ierr = DMLabelGetNumValues(label,&numValues);CHKERRQ(ierr); 24134de306b1SToby Isaac for (v = 0; v < numValues; v++) { 24144de306b1SToby Isaac IS pointIS; 24154de306b1SToby Isaac 24164de306b1SToby Isaac ierr = DMLabelGetStratumIS(label, v, &pointIS);CHKERRQ(ierr); 24174de306b1SToby Isaac if (pointIS) { 24184de306b1SToby Isaac PetscInt min, max, numPoints; 24194de306b1SToby Isaac PetscInt start; 24204de306b1SToby Isaac PetscBool contig; 24214de306b1SToby Isaac 24224de306b1SToby Isaac ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr); 24234de306b1SToby Isaac ierr = ISGetMinMax(pointIS, &min, &max);CHKERRQ(ierr); 24244de306b1SToby Isaac ierr = ISContiguousLocal(pointIS,min,max+1,&start,&contig);CHKERRQ(ierr); 24254de306b1SToby Isaac if (start == 0 && contig) { 24264de306b1SToby Isaac ierr = ISDestroy(&pointIS);CHKERRQ(ierr); 24274de306b1SToby Isaac ierr = ISCreateStride(PETSC_COMM_SELF,numPoints,min,1,&pointIS);CHKERRQ(ierr); 24284de306b1SToby Isaac ierr = DMLabelSetStratumIS(label, v, pointIS);CHKERRQ(ierr); 24294de306b1SToby Isaac } 24304de306b1SToby Isaac } 24314de306b1SToby Isaac ierr = ISDestroy(&pointIS);CHKERRQ(ierr); 24324de306b1SToby Isaac } 24336d1e82d3SBarry Smith ierr = MPI_Allreduce(&numValues,&maxValues,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 2434bf4602e4SToby Isaac for (v = numValues; v < maxValues; v++) { 2435bf4602e4SToby Isaac DMLabelAddStratum(label,v);CHKERRQ(ierr); 2436bf4602e4SToby Isaac } 2437bf4602e4SToby Isaac } 2438df0420ecSMatthew G. Knepley ierr = DMLabelGetState(label, &mesh->depthState);CHKERRQ(ierr); 24397d5acc75SStefano Zampini 24407d5acc75SStefano Zampini ierr = DMPlexGetHybridBounds(dm, &cMax, &fMax, &eMax, &vMax);CHKERRQ(ierr); 24417d5acc75SStefano Zampini if (cMax >= 0 || fMax >= 0 || eMax >= 0 || vMax >= 0) { 24427d5acc75SStefano Zampini DMLabel dimLabel; 24437d5acc75SStefano Zampini PetscInt dim; 24447d5acc75SStefano Zampini 24457d5acc75SStefano Zampini ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 24467d5acc75SStefano Zampini ierr = DMGetLabel(dm, "dim", &dimLabel);CHKERRQ(ierr); 24477d5acc75SStefano Zampini if (!dimLabel) { 24487d5acc75SStefano Zampini ierr = DMCreateLabel(dm, "dim");CHKERRQ(ierr); 24497d5acc75SStefano Zampini ierr = DMGetLabel(dm, "dim", &dimLabel);CHKERRQ(ierr); 24507d5acc75SStefano Zampini } 24517d5acc75SStefano Zampini if (cMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, dim, cMax);CHKERRQ(ierr);} 24527d5acc75SStefano Zampini if (fMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, dim - 1, fMax);CHKERRQ(ierr);} 24537d5acc75SStefano Zampini if (eMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, 1, eMax);CHKERRQ(ierr);} 24547d5acc75SStefano Zampini if (vMax >= 0) {ierr = DMPlexCreateDimStratum(dm, label, dimLabel, 0, vMax);CHKERRQ(ierr);} 24557d5acc75SStefano Zampini } 2456552f7358SJed Brown ierr = PetscLogEventEnd(DMPLEX_Stratify,dm,0,0,0);CHKERRQ(ierr); 2457552f7358SJed Brown PetscFunctionReturn(0); 2458552f7358SJed Brown } 2459552f7358SJed Brown 2460552f7358SJed Brown /*@C 2461552f7358SJed Brown DMPlexGetJoin - Get an array for the join of the set of points 2462552f7358SJed Brown 2463552f7358SJed Brown Not Collective 2464552f7358SJed Brown 2465552f7358SJed Brown Input Parameters: 2466552f7358SJed Brown + dm - The DMPlex object 2467552f7358SJed Brown . numPoints - The number of input points for the join 2468552f7358SJed Brown - points - The input points 2469552f7358SJed Brown 2470552f7358SJed Brown Output Parameters: 2471552f7358SJed Brown + numCoveredPoints - The number of points in the join 2472552f7358SJed Brown - coveredPoints - The points in the join 2473552f7358SJed Brown 2474552f7358SJed Brown Level: intermediate 2475552f7358SJed Brown 2476552f7358SJed Brown Note: Currently, this is restricted to a single level join 2477552f7358SJed Brown 24783813dfbdSMatthew G Knepley Fortran Notes: 24793813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 24803813dfbdSMatthew G Knepley include petsc.h90 in your code. 24813813dfbdSMatthew G Knepley 24823813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 24833813dfbdSMatthew G Knepley 2484552f7358SJed Brown .keywords: mesh 2485552f7358SJed Brown .seealso: DMPlexRestoreJoin(), DMPlexGetMeet() 2486552f7358SJed Brown @*/ 2487552f7358SJed Brown PetscErrorCode DMPlexGetJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints) 2488552f7358SJed Brown { 2489552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2490552f7358SJed Brown PetscInt *join[2]; 2491552f7358SJed Brown PetscInt joinSize, i = 0; 2492552f7358SJed Brown PetscInt dof, off, p, c, m; 2493552f7358SJed Brown PetscErrorCode ierr; 2494552f7358SJed Brown 2495552f7358SJed Brown PetscFunctionBegin; 2496552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2497552f7358SJed Brown PetscValidPointer(points, 2); 2498552f7358SJed Brown PetscValidPointer(numCoveredPoints, 3); 2499552f7358SJed Brown PetscValidPointer(coveredPoints, 4); 250069291d52SBarry Smith ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[0]);CHKERRQ(ierr); 250169291d52SBarry Smith ierr = DMGetWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1]);CHKERRQ(ierr); 2502552f7358SJed Brown /* Copy in support of first point */ 2503552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, points[0], &dof);CHKERRQ(ierr); 2504552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, points[0], &off);CHKERRQ(ierr); 2505552f7358SJed Brown for (joinSize = 0; joinSize < dof; ++joinSize) { 2506552f7358SJed Brown join[i][joinSize] = mesh->supports[off+joinSize]; 2507552f7358SJed Brown } 2508552f7358SJed Brown /* Check each successive support */ 2509552f7358SJed Brown for (p = 1; p < numPoints; ++p) { 2510552f7358SJed Brown PetscInt newJoinSize = 0; 2511552f7358SJed Brown 2512552f7358SJed Brown ierr = PetscSectionGetDof(mesh->supportSection, points[p], &dof);CHKERRQ(ierr); 2513552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->supportSection, points[p], &off);CHKERRQ(ierr); 2514552f7358SJed Brown for (c = 0; c < dof; ++c) { 2515552f7358SJed Brown const PetscInt point = mesh->supports[off+c]; 2516552f7358SJed Brown 2517552f7358SJed Brown for (m = 0; m < joinSize; ++m) { 2518552f7358SJed Brown if (point == join[i][m]) { 2519552f7358SJed Brown join[1-i][newJoinSize++] = point; 2520552f7358SJed Brown break; 2521552f7358SJed Brown } 2522552f7358SJed Brown } 2523552f7358SJed Brown } 2524552f7358SJed Brown joinSize = newJoinSize; 2525552f7358SJed Brown i = 1-i; 2526552f7358SJed Brown } 2527552f7358SJed Brown *numCoveredPoints = joinSize; 2528552f7358SJed Brown *coveredPoints = join[i]; 252969291d52SBarry Smith ierr = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr); 2530552f7358SJed Brown PetscFunctionReturn(0); 2531552f7358SJed Brown } 2532552f7358SJed Brown 2533552f7358SJed Brown /*@C 2534552f7358SJed Brown DMPlexRestoreJoin - Restore an array for the join of the set of points 2535552f7358SJed Brown 2536552f7358SJed Brown Not Collective 2537552f7358SJed Brown 2538552f7358SJed Brown Input Parameters: 2539552f7358SJed Brown + dm - The DMPlex object 2540552f7358SJed Brown . numPoints - The number of input points for the join 2541552f7358SJed Brown - points - The input points 2542552f7358SJed Brown 2543552f7358SJed Brown Output Parameters: 2544552f7358SJed Brown + numCoveredPoints - The number of points in the join 2545552f7358SJed Brown - coveredPoints - The points in the join 2546552f7358SJed Brown 25473813dfbdSMatthew G Knepley Fortran Notes: 25483813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 25493813dfbdSMatthew G Knepley include petsc.h90 in your code. 25503813dfbdSMatthew G Knepley 25513813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 25523813dfbdSMatthew G Knepley 2553552f7358SJed Brown Level: intermediate 2554552f7358SJed Brown 2555552f7358SJed Brown .keywords: mesh 2556552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexGetFullJoin(), DMPlexGetMeet() 2557552f7358SJed Brown @*/ 2558552f7358SJed Brown PetscErrorCode DMPlexRestoreJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints) 2559552f7358SJed Brown { 2560552f7358SJed Brown PetscErrorCode ierr; 2561552f7358SJed Brown 2562552f7358SJed Brown PetscFunctionBegin; 2563552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2564d7902bd2SMatthew G. Knepley if (points) PetscValidIntPointer(points,3); 2565d7902bd2SMatthew G. Knepley if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4); 2566d7902bd2SMatthew G. Knepley PetscValidPointer(coveredPoints, 5); 256769291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr); 2568d7902bd2SMatthew G. Knepley if (numCoveredPoints) *numCoveredPoints = 0; 2569552f7358SJed Brown PetscFunctionReturn(0); 2570552f7358SJed Brown } 2571552f7358SJed Brown 2572552f7358SJed Brown /*@C 2573552f7358SJed Brown DMPlexGetFullJoin - Get an array for the join of the set of points 2574552f7358SJed Brown 2575552f7358SJed Brown Not Collective 2576552f7358SJed Brown 2577552f7358SJed Brown Input Parameters: 2578552f7358SJed Brown + dm - The DMPlex object 2579552f7358SJed Brown . numPoints - The number of input points for the join 2580552f7358SJed Brown - points - The input points 2581552f7358SJed Brown 2582552f7358SJed Brown Output Parameters: 2583552f7358SJed Brown + numCoveredPoints - The number of points in the join 2584552f7358SJed Brown - coveredPoints - The points in the join 2585552f7358SJed Brown 25863813dfbdSMatthew G Knepley Fortran Notes: 25873813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 25883813dfbdSMatthew G Knepley include petsc.h90 in your code. 25893813dfbdSMatthew G Knepley 25903813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 25913813dfbdSMatthew G Knepley 2592552f7358SJed Brown Level: intermediate 2593552f7358SJed Brown 2594552f7358SJed Brown .keywords: mesh 2595552f7358SJed Brown .seealso: DMPlexGetJoin(), DMPlexRestoreJoin(), DMPlexGetMeet() 2596552f7358SJed Brown @*/ 2597552f7358SJed Brown PetscErrorCode DMPlexGetFullJoin(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints) 2598552f7358SJed Brown { 2599552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2600552f7358SJed Brown PetscInt *offsets, **closures; 2601552f7358SJed Brown PetscInt *join[2]; 2602552f7358SJed Brown PetscInt depth = 0, maxSize, joinSize = 0, i = 0; 260324c766afSToby Isaac PetscInt p, d, c, m, ms; 2604552f7358SJed Brown PetscErrorCode ierr; 2605552f7358SJed Brown 2606552f7358SJed Brown PetscFunctionBegin; 2607552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2608552f7358SJed Brown PetscValidPointer(points, 2); 2609552f7358SJed Brown PetscValidPointer(numCoveredPoints, 3); 2610552f7358SJed Brown PetscValidPointer(coveredPoints, 4); 2611552f7358SJed Brown 2612552f7358SJed Brown ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 26131795a4d1SJed Brown ierr = PetscCalloc1(numPoints, &closures);CHKERRQ(ierr); 261469291d52SBarry Smith ierr = DMGetWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr); 261524c766afSToby Isaac ms = mesh->maxSupportSize; 261624c766afSToby Isaac maxSize = (ms > 1) ? ((PetscPowInt(ms,depth+1)-1)/(ms-1)) : depth + 1; 261769291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[0]);CHKERRQ(ierr); 261869291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &join[1]);CHKERRQ(ierr); 2619552f7358SJed Brown 2620552f7358SJed Brown for (p = 0; p < numPoints; ++p) { 2621552f7358SJed Brown PetscInt closureSize; 2622552f7358SJed Brown 2623552f7358SJed Brown ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_FALSE, &closureSize, &closures[p]);CHKERRQ(ierr); 26240d644c17SKarl Rupp 2625552f7358SJed Brown offsets[p*(depth+2)+0] = 0; 2626552f7358SJed Brown for (d = 0; d < depth+1; ++d) { 2627552f7358SJed Brown PetscInt pStart, pEnd, i; 2628552f7358SJed Brown 2629552f7358SJed Brown ierr = DMPlexGetDepthStratum(dm, d, &pStart, &pEnd);CHKERRQ(ierr); 2630552f7358SJed Brown for (i = offsets[p*(depth+2)+d]; i < closureSize; ++i) { 2631552f7358SJed Brown if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) { 2632552f7358SJed Brown offsets[p*(depth+2)+d+1] = i; 2633552f7358SJed Brown break; 2634552f7358SJed Brown } 2635552f7358SJed Brown } 2636552f7358SJed Brown if (i == closureSize) offsets[p*(depth+2)+d+1] = i; 2637552f7358SJed Brown } 263882f516ccSBarry 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); 2639552f7358SJed Brown } 2640552f7358SJed Brown for (d = 0; d < depth+1; ++d) { 2641552f7358SJed Brown PetscInt dof; 2642552f7358SJed Brown 2643552f7358SJed Brown /* Copy in support of first point */ 2644552f7358SJed Brown dof = offsets[d+1] - offsets[d]; 2645552f7358SJed Brown for (joinSize = 0; joinSize < dof; ++joinSize) { 2646552f7358SJed Brown join[i][joinSize] = closures[0][(offsets[d]+joinSize)*2]; 2647552f7358SJed Brown } 2648552f7358SJed Brown /* Check each successive cone */ 2649552f7358SJed Brown for (p = 1; p < numPoints && joinSize; ++p) { 2650552f7358SJed Brown PetscInt newJoinSize = 0; 2651552f7358SJed Brown 2652552f7358SJed Brown dof = offsets[p*(depth+2)+d+1] - offsets[p*(depth+2)+d]; 2653552f7358SJed Brown for (c = 0; c < dof; ++c) { 2654552f7358SJed Brown const PetscInt point = closures[p][(offsets[p*(depth+2)+d]+c)*2]; 2655552f7358SJed Brown 2656552f7358SJed Brown for (m = 0; m < joinSize; ++m) { 2657552f7358SJed Brown if (point == join[i][m]) { 2658552f7358SJed Brown join[1-i][newJoinSize++] = point; 2659552f7358SJed Brown break; 2660552f7358SJed Brown } 2661552f7358SJed Brown } 2662552f7358SJed Brown } 2663552f7358SJed Brown joinSize = newJoinSize; 2664552f7358SJed Brown i = 1-i; 2665552f7358SJed Brown } 2666552f7358SJed Brown if (joinSize) break; 2667552f7358SJed Brown } 2668552f7358SJed Brown *numCoveredPoints = joinSize; 2669552f7358SJed Brown *coveredPoints = join[i]; 2670552f7358SJed Brown for (p = 0; p < numPoints; ++p) { 26710298fd71SBarry Smith ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_FALSE, NULL, &closures[p]);CHKERRQ(ierr); 2672552f7358SJed Brown } 2673552f7358SJed Brown ierr = PetscFree(closures);CHKERRQ(ierr); 267469291d52SBarry Smith ierr = DMRestoreWorkArray(dm, numPoints*(depth+2), MPIU_INT, &offsets);CHKERRQ(ierr); 267569291d52SBarry Smith ierr = DMRestoreWorkArray(dm, mesh->maxSupportSize, MPIU_INT, &join[1-i]);CHKERRQ(ierr); 2676552f7358SJed Brown PetscFunctionReturn(0); 2677552f7358SJed Brown } 2678552f7358SJed Brown 2679552f7358SJed Brown /*@C 2680552f7358SJed Brown DMPlexGetMeet - Get an array for the meet of the set of points 2681552f7358SJed Brown 2682552f7358SJed Brown Not Collective 2683552f7358SJed Brown 2684552f7358SJed Brown Input Parameters: 2685552f7358SJed Brown + dm - The DMPlex object 2686552f7358SJed Brown . numPoints - The number of input points for the meet 2687552f7358SJed Brown - points - The input points 2688552f7358SJed Brown 2689552f7358SJed Brown Output Parameters: 2690552f7358SJed Brown + numCoveredPoints - The number of points in the meet 2691552f7358SJed Brown - coveredPoints - The points in the meet 2692552f7358SJed Brown 2693552f7358SJed Brown Level: intermediate 2694552f7358SJed Brown 2695552f7358SJed Brown Note: Currently, this is restricted to a single level meet 2696552f7358SJed Brown 26973813dfbdSMatthew G Knepley Fortran Notes: 26983813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 26993813dfbdSMatthew G Knepley include petsc.h90 in your code. 27003813dfbdSMatthew G Knepley 27013813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 27023813dfbdSMatthew G Knepley 2703552f7358SJed Brown .keywords: mesh 2704552f7358SJed Brown .seealso: DMPlexRestoreMeet(), DMPlexGetJoin() 2705552f7358SJed Brown @*/ 2706552f7358SJed Brown PetscErrorCode DMPlexGetMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveringPoints, const PetscInt **coveringPoints) 2707552f7358SJed Brown { 2708552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2709552f7358SJed Brown PetscInt *meet[2]; 2710552f7358SJed Brown PetscInt meetSize, i = 0; 2711552f7358SJed Brown PetscInt dof, off, p, c, m; 2712552f7358SJed Brown PetscErrorCode ierr; 2713552f7358SJed Brown 2714552f7358SJed Brown PetscFunctionBegin; 2715552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2716552f7358SJed Brown PetscValidPointer(points, 2); 2717552f7358SJed Brown PetscValidPointer(numCoveringPoints, 3); 2718552f7358SJed Brown PetscValidPointer(coveringPoints, 4); 271969291d52SBarry Smith ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[0]);CHKERRQ(ierr); 272069291d52SBarry Smith ierr = DMGetWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1]);CHKERRQ(ierr); 2721552f7358SJed Brown /* Copy in cone of first point */ 2722552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, points[0], &dof);CHKERRQ(ierr); 2723552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, points[0], &off);CHKERRQ(ierr); 2724552f7358SJed Brown for (meetSize = 0; meetSize < dof; ++meetSize) { 2725552f7358SJed Brown meet[i][meetSize] = mesh->cones[off+meetSize]; 2726552f7358SJed Brown } 2727552f7358SJed Brown /* Check each successive cone */ 2728552f7358SJed Brown for (p = 1; p < numPoints; ++p) { 2729552f7358SJed Brown PetscInt newMeetSize = 0; 2730552f7358SJed Brown 2731552f7358SJed Brown ierr = PetscSectionGetDof(mesh->coneSection, points[p], &dof);CHKERRQ(ierr); 2732552f7358SJed Brown ierr = PetscSectionGetOffset(mesh->coneSection, points[p], &off);CHKERRQ(ierr); 2733552f7358SJed Brown for (c = 0; c < dof; ++c) { 2734552f7358SJed Brown const PetscInt point = mesh->cones[off+c]; 2735552f7358SJed Brown 2736552f7358SJed Brown for (m = 0; m < meetSize; ++m) { 2737552f7358SJed Brown if (point == meet[i][m]) { 2738552f7358SJed Brown meet[1-i][newMeetSize++] = point; 2739552f7358SJed Brown break; 2740552f7358SJed Brown } 2741552f7358SJed Brown } 2742552f7358SJed Brown } 2743552f7358SJed Brown meetSize = newMeetSize; 2744552f7358SJed Brown i = 1-i; 2745552f7358SJed Brown } 2746552f7358SJed Brown *numCoveringPoints = meetSize; 2747552f7358SJed Brown *coveringPoints = meet[i]; 274869291d52SBarry Smith ierr = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr); 2749552f7358SJed Brown PetscFunctionReturn(0); 2750552f7358SJed Brown } 2751552f7358SJed Brown 2752552f7358SJed Brown /*@C 2753552f7358SJed Brown DMPlexRestoreMeet - Restore an array for the meet of the set of points 2754552f7358SJed Brown 2755552f7358SJed Brown Not Collective 2756552f7358SJed Brown 2757552f7358SJed Brown Input Parameters: 2758552f7358SJed Brown + dm - The DMPlex object 2759552f7358SJed Brown . numPoints - The number of input points for the meet 2760552f7358SJed Brown - points - The input points 2761552f7358SJed Brown 2762552f7358SJed Brown Output Parameters: 2763552f7358SJed Brown + numCoveredPoints - The number of points in the meet 2764552f7358SJed Brown - coveredPoints - The points in the meet 2765552f7358SJed Brown 2766552f7358SJed Brown Level: intermediate 2767552f7358SJed Brown 27683813dfbdSMatthew G Knepley Fortran Notes: 27693813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 27703813dfbdSMatthew G Knepley include petsc.h90 in your code. 27713813dfbdSMatthew G Knepley 27723813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 27733813dfbdSMatthew G Knepley 2774552f7358SJed Brown .keywords: mesh 2775552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexGetFullMeet(), DMPlexGetJoin() 2776552f7358SJed Brown @*/ 2777552f7358SJed Brown PetscErrorCode DMPlexRestoreMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints) 2778552f7358SJed Brown { 2779552f7358SJed Brown PetscErrorCode ierr; 2780552f7358SJed Brown 2781552f7358SJed Brown PetscFunctionBegin; 2782552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2783d7902bd2SMatthew G. Knepley if (points) PetscValidIntPointer(points,3); 2784d7902bd2SMatthew G. Knepley if (numCoveredPoints) PetscValidIntPointer(numCoveredPoints,4); 2785d7902bd2SMatthew G. Knepley PetscValidPointer(coveredPoints,5); 278669291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, (void*) coveredPoints);CHKERRQ(ierr); 2787d7902bd2SMatthew G. Knepley if (numCoveredPoints) *numCoveredPoints = 0; 2788552f7358SJed Brown PetscFunctionReturn(0); 2789552f7358SJed Brown } 2790552f7358SJed Brown 2791552f7358SJed Brown /*@C 2792552f7358SJed Brown DMPlexGetFullMeet - Get an array for the meet of the set of points 2793552f7358SJed Brown 2794552f7358SJed Brown Not Collective 2795552f7358SJed Brown 2796552f7358SJed Brown Input Parameters: 2797552f7358SJed Brown + dm - The DMPlex object 2798552f7358SJed Brown . numPoints - The number of input points for the meet 2799552f7358SJed Brown - points - The input points 2800552f7358SJed Brown 2801552f7358SJed Brown Output Parameters: 2802552f7358SJed Brown + numCoveredPoints - The number of points in the meet 2803552f7358SJed Brown - coveredPoints - The points in the meet 2804552f7358SJed Brown 2805552f7358SJed Brown Level: intermediate 2806552f7358SJed Brown 28073813dfbdSMatthew G Knepley Fortran Notes: 28083813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 28093813dfbdSMatthew G Knepley include petsc.h90 in your code. 28103813dfbdSMatthew G Knepley 28113813dfbdSMatthew G Knepley The numCoveredPoints argument is not present in the Fortran 90 binding since it is internal to the array. 28123813dfbdSMatthew G Knepley 2813552f7358SJed Brown .keywords: mesh 2814552f7358SJed Brown .seealso: DMPlexGetMeet(), DMPlexRestoreMeet(), DMPlexGetJoin() 2815552f7358SJed Brown @*/ 2816552f7358SJed Brown PetscErrorCode DMPlexGetFullMeet(DM dm, PetscInt numPoints, const PetscInt points[], PetscInt *numCoveredPoints, const PetscInt **coveredPoints) 2817552f7358SJed Brown { 2818552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 2819552f7358SJed Brown PetscInt *offsets, **closures; 2820552f7358SJed Brown PetscInt *meet[2]; 2821552f7358SJed Brown PetscInt height = 0, maxSize, meetSize = 0, i = 0; 282224c766afSToby Isaac PetscInt p, h, c, m, mc; 2823552f7358SJed Brown PetscErrorCode ierr; 2824552f7358SJed Brown 2825552f7358SJed Brown PetscFunctionBegin; 2826552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2827552f7358SJed Brown PetscValidPointer(points, 2); 2828552f7358SJed Brown PetscValidPointer(numCoveredPoints, 3); 2829552f7358SJed Brown PetscValidPointer(coveredPoints, 4); 2830552f7358SJed Brown 2831552f7358SJed Brown ierr = DMPlexGetDepth(dm, &height);CHKERRQ(ierr); 2832785e854fSJed Brown ierr = PetscMalloc1(numPoints, &closures);CHKERRQ(ierr); 283369291d52SBarry Smith ierr = DMGetWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr); 283424c766afSToby Isaac mc = mesh->maxConeSize; 283524c766afSToby Isaac maxSize = (mc > 1) ? ((PetscPowInt(mc,height+1)-1)/(mc-1)) : height + 1; 283669291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[0]);CHKERRQ(ierr); 283769291d52SBarry Smith ierr = DMGetWorkArray(dm, maxSize, MPIU_INT, &meet[1]);CHKERRQ(ierr); 2838552f7358SJed Brown 2839552f7358SJed Brown for (p = 0; p < numPoints; ++p) { 2840552f7358SJed Brown PetscInt closureSize; 2841552f7358SJed Brown 2842552f7358SJed Brown ierr = DMPlexGetTransitiveClosure(dm, points[p], PETSC_TRUE, &closureSize, &closures[p]);CHKERRQ(ierr); 28430d644c17SKarl Rupp 2844552f7358SJed Brown offsets[p*(height+2)+0] = 0; 2845552f7358SJed Brown for (h = 0; h < height+1; ++h) { 2846552f7358SJed Brown PetscInt pStart, pEnd, i; 2847552f7358SJed Brown 2848552f7358SJed Brown ierr = DMPlexGetHeightStratum(dm, h, &pStart, &pEnd);CHKERRQ(ierr); 2849552f7358SJed Brown for (i = offsets[p*(height+2)+h]; i < closureSize; ++i) { 2850552f7358SJed Brown if ((pStart > closures[p][i*2]) || (pEnd <= closures[p][i*2])) { 2851552f7358SJed Brown offsets[p*(height+2)+h+1] = i; 2852552f7358SJed Brown break; 2853552f7358SJed Brown } 2854552f7358SJed Brown } 2855552f7358SJed Brown if (i == closureSize) offsets[p*(height+2)+h+1] = i; 2856552f7358SJed Brown } 285782f516ccSBarry 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); 2858552f7358SJed Brown } 2859552f7358SJed Brown for (h = 0; h < height+1; ++h) { 2860552f7358SJed Brown PetscInt dof; 2861552f7358SJed Brown 2862552f7358SJed Brown /* Copy in cone of first point */ 2863552f7358SJed Brown dof = offsets[h+1] - offsets[h]; 2864552f7358SJed Brown for (meetSize = 0; meetSize < dof; ++meetSize) { 2865552f7358SJed Brown meet[i][meetSize] = closures[0][(offsets[h]+meetSize)*2]; 2866552f7358SJed Brown } 2867552f7358SJed Brown /* Check each successive cone */ 2868552f7358SJed Brown for (p = 1; p < numPoints && meetSize; ++p) { 2869552f7358SJed Brown PetscInt newMeetSize = 0; 2870552f7358SJed Brown 2871552f7358SJed Brown dof = offsets[p*(height+2)+h+1] - offsets[p*(height+2)+h]; 2872552f7358SJed Brown for (c = 0; c < dof; ++c) { 2873552f7358SJed Brown const PetscInt point = closures[p][(offsets[p*(height+2)+h]+c)*2]; 2874552f7358SJed Brown 2875552f7358SJed Brown for (m = 0; m < meetSize; ++m) { 2876552f7358SJed Brown if (point == meet[i][m]) { 2877552f7358SJed Brown meet[1-i][newMeetSize++] = point; 2878552f7358SJed Brown break; 2879552f7358SJed Brown } 2880552f7358SJed Brown } 2881552f7358SJed Brown } 2882552f7358SJed Brown meetSize = newMeetSize; 2883552f7358SJed Brown i = 1-i; 2884552f7358SJed Brown } 2885552f7358SJed Brown if (meetSize) break; 2886552f7358SJed Brown } 2887552f7358SJed Brown *numCoveredPoints = meetSize; 2888552f7358SJed Brown *coveredPoints = meet[i]; 2889552f7358SJed Brown for (p = 0; p < numPoints; ++p) { 28900298fd71SBarry Smith ierr = DMPlexRestoreTransitiveClosure(dm, points[p], PETSC_TRUE, NULL, &closures[p]);CHKERRQ(ierr); 2891552f7358SJed Brown } 2892552f7358SJed Brown ierr = PetscFree(closures);CHKERRQ(ierr); 289369291d52SBarry Smith ierr = DMRestoreWorkArray(dm, numPoints*(height+2), MPIU_INT, &offsets);CHKERRQ(ierr); 289469291d52SBarry Smith ierr = DMRestoreWorkArray(dm, mesh->maxConeSize, MPIU_INT, &meet[1-i]);CHKERRQ(ierr); 2895552f7358SJed Brown PetscFunctionReturn(0); 2896552f7358SJed Brown } 2897552f7358SJed Brown 28984e3744c5SMatthew G. Knepley /*@C 28994e3744c5SMatthew G. Knepley DMPlexEqual - Determine if two DMs have the same topology 29004e3744c5SMatthew G. Knepley 29014e3744c5SMatthew G. Knepley Not Collective 29024e3744c5SMatthew G. Knepley 29034e3744c5SMatthew G. Knepley Input Parameters: 29044e3744c5SMatthew G. Knepley + dmA - A DMPlex object 29054e3744c5SMatthew G. Knepley - dmB - A DMPlex object 29064e3744c5SMatthew G. Knepley 29074e3744c5SMatthew G. Knepley Output Parameters: 29084e3744c5SMatthew G. Knepley . equal - PETSC_TRUE if the topologies are identical 29094e3744c5SMatthew G. Knepley 29104e3744c5SMatthew G. Knepley Level: intermediate 29114e3744c5SMatthew G. Knepley 29124e3744c5SMatthew G. Knepley Notes: 29134e3744c5SMatthew G. Knepley We are not solving graph isomorphism, so we do not permutation. 29144e3744c5SMatthew G. Knepley 29154e3744c5SMatthew G. Knepley .keywords: mesh 29164e3744c5SMatthew G. Knepley .seealso: DMPlexGetCone() 29174e3744c5SMatthew G. Knepley @*/ 29184e3744c5SMatthew G. Knepley PetscErrorCode DMPlexEqual(DM dmA, DM dmB, PetscBool *equal) 29194e3744c5SMatthew G. Knepley { 29204e3744c5SMatthew G. Knepley PetscInt depth, depthB, pStart, pEnd, pStartB, pEndB, p; 29214e3744c5SMatthew G. Knepley PetscErrorCode ierr; 29224e3744c5SMatthew G. Knepley 29234e3744c5SMatthew G. Knepley PetscFunctionBegin; 29244e3744c5SMatthew G. Knepley PetscValidHeaderSpecific(dmA, DM_CLASSID, 1); 29254e3744c5SMatthew G. Knepley PetscValidHeaderSpecific(dmB, DM_CLASSID, 2); 29264e3744c5SMatthew G. Knepley PetscValidPointer(equal, 3); 29274e3744c5SMatthew G. Knepley 29284e3744c5SMatthew G. Knepley *equal = PETSC_FALSE; 29294e3744c5SMatthew G. Knepley ierr = DMPlexGetDepth(dmA, &depth);CHKERRQ(ierr); 29304e3744c5SMatthew G. Knepley ierr = DMPlexGetDepth(dmB, &depthB);CHKERRQ(ierr); 29314e3744c5SMatthew G. Knepley if (depth != depthB) PetscFunctionReturn(0); 29324e3744c5SMatthew G. Knepley ierr = DMPlexGetChart(dmA, &pStart, &pEnd);CHKERRQ(ierr); 29334e3744c5SMatthew G. Knepley ierr = DMPlexGetChart(dmB, &pStartB, &pEndB);CHKERRQ(ierr); 29344e3744c5SMatthew G. Knepley if ((pStart != pStartB) || (pEnd != pEndB)) PetscFunctionReturn(0); 29354e3744c5SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 29364e3744c5SMatthew G. Knepley const PetscInt *cone, *coneB, *ornt, *orntB, *support, *supportB; 29374e3744c5SMatthew G. Knepley PetscInt coneSize, coneSizeB, c, supportSize, supportSizeB, s; 29384e3744c5SMatthew G. Knepley 29394e3744c5SMatthew G. Knepley ierr = DMPlexGetConeSize(dmA, p, &coneSize);CHKERRQ(ierr); 29404e3744c5SMatthew G. Knepley ierr = DMPlexGetCone(dmA, p, &cone);CHKERRQ(ierr); 29414e3744c5SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dmA, p, &ornt);CHKERRQ(ierr); 29424e3744c5SMatthew G. Knepley ierr = DMPlexGetConeSize(dmB, p, &coneSizeB);CHKERRQ(ierr); 29434e3744c5SMatthew G. Knepley ierr = DMPlexGetCone(dmB, p, &coneB);CHKERRQ(ierr); 29444e3744c5SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dmB, p, &orntB);CHKERRQ(ierr); 29454e3744c5SMatthew G. Knepley if (coneSize != coneSizeB) PetscFunctionReturn(0); 29464e3744c5SMatthew G. Knepley for (c = 0; c < coneSize; ++c) { 29474e3744c5SMatthew G. Knepley if (cone[c] != coneB[c]) PetscFunctionReturn(0); 29484e3744c5SMatthew G. Knepley if (ornt[c] != orntB[c]) PetscFunctionReturn(0); 29494e3744c5SMatthew G. Knepley } 29504e3744c5SMatthew G. Knepley ierr = DMPlexGetSupportSize(dmA, p, &supportSize);CHKERRQ(ierr); 29514e3744c5SMatthew G. Knepley ierr = DMPlexGetSupport(dmA, p, &support);CHKERRQ(ierr); 29524e3744c5SMatthew G. Knepley ierr = DMPlexGetSupportSize(dmB, p, &supportSizeB);CHKERRQ(ierr); 29534e3744c5SMatthew G. Knepley ierr = DMPlexGetSupport(dmB, p, &supportB);CHKERRQ(ierr); 29544e3744c5SMatthew G. Knepley if (supportSize != supportSizeB) PetscFunctionReturn(0); 29554e3744c5SMatthew G. Knepley for (s = 0; s < supportSize; ++s) { 29564e3744c5SMatthew G. Knepley if (support[s] != supportB[s]) PetscFunctionReturn(0); 29574e3744c5SMatthew G. Knepley } 29584e3744c5SMatthew G. Knepley } 29594e3744c5SMatthew G. Knepley *equal = PETSC_TRUE; 29604e3744c5SMatthew G. Knepley PetscFunctionReturn(0); 29614e3744c5SMatthew G. Knepley } 29624e3744c5SMatthew G. Knepley 29637cd05799SMatthew G. Knepley /*@C 29647cd05799SMatthew G. Knepley DMPlexGetNumFaceVertices - Returns the number of vertices on a face 29657cd05799SMatthew G. Knepley 29667cd05799SMatthew G. Knepley Not Collective 29677cd05799SMatthew G. Knepley 29687cd05799SMatthew G. Knepley Input Parameters: 29697cd05799SMatthew G. Knepley + dm - The DMPlex 29707cd05799SMatthew G. Knepley . cellDim - The cell dimension 29717cd05799SMatthew G. Knepley - numCorners - The number of vertices on a cell 29727cd05799SMatthew G. Knepley 29737cd05799SMatthew G. Knepley Output Parameters: 29747cd05799SMatthew G. Knepley . numFaceVertices - The number of vertices on a face 29757cd05799SMatthew G. Knepley 29767cd05799SMatthew G. Knepley Level: developer 29777cd05799SMatthew G. Knepley 29787cd05799SMatthew G. Knepley Notes: 29797cd05799SMatthew G. Knepley Of course this can only work for a restricted set of symmetric shapes 29807cd05799SMatthew G. Knepley 29817cd05799SMatthew G. Knepley .seealso: DMPlexGetCone() 29827cd05799SMatthew G. Knepley @*/ 298318ad9376SMatthew G. Knepley PetscErrorCode DMPlexGetNumFaceVertices(DM dm, PetscInt cellDim, PetscInt numCorners, PetscInt *numFaceVertices) 2984a6dfd86eSKarl Rupp { 298582f516ccSBarry Smith MPI_Comm comm; 2986552f7358SJed Brown PetscErrorCode ierr; 2987552f7358SJed Brown 2988552f7358SJed Brown PetscFunctionBegin; 298982f516ccSBarry Smith ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr); 2990552f7358SJed Brown PetscValidPointer(numFaceVertices,3); 2991552f7358SJed Brown switch (cellDim) { 2992552f7358SJed Brown case 0: 2993552f7358SJed Brown *numFaceVertices = 0; 2994552f7358SJed Brown break; 2995552f7358SJed Brown case 1: 2996552f7358SJed Brown *numFaceVertices = 1; 2997552f7358SJed Brown break; 2998552f7358SJed Brown case 2: 2999552f7358SJed Brown switch (numCorners) { 300019436ca2SJed Brown case 3: /* triangle */ 300119436ca2SJed Brown *numFaceVertices = 2; /* Edge has 2 vertices */ 3002552f7358SJed Brown break; 300319436ca2SJed Brown case 4: /* quadrilateral */ 300419436ca2SJed Brown *numFaceVertices = 2; /* Edge has 2 vertices */ 3005552f7358SJed Brown break; 300619436ca2SJed Brown case 6: /* quadratic triangle, tri and quad cohesive Lagrange cells */ 300719436ca2SJed Brown *numFaceVertices = 3; /* Edge has 3 vertices */ 3008552f7358SJed Brown break; 300919436ca2SJed Brown case 9: /* quadratic quadrilateral, quadratic quad cohesive Lagrange cells */ 301019436ca2SJed Brown *numFaceVertices = 3; /* Edge has 3 vertices */ 3011552f7358SJed Brown break; 3012552f7358SJed Brown default: 3013f347f43bSBarry Smith SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim); 3014552f7358SJed Brown } 3015552f7358SJed Brown break; 3016552f7358SJed Brown case 3: 3017552f7358SJed Brown switch (numCorners) { 301819436ca2SJed Brown case 4: /* tetradehdron */ 301919436ca2SJed Brown *numFaceVertices = 3; /* Face has 3 vertices */ 3020552f7358SJed Brown break; 302119436ca2SJed Brown case 6: /* tet cohesive cells */ 302219436ca2SJed Brown *numFaceVertices = 4; /* Face has 4 vertices */ 3023552f7358SJed Brown break; 302419436ca2SJed Brown case 8: /* hexahedron */ 302519436ca2SJed Brown *numFaceVertices = 4; /* Face has 4 vertices */ 3026552f7358SJed Brown break; 302719436ca2SJed Brown case 9: /* tet cohesive Lagrange cells */ 302819436ca2SJed Brown *numFaceVertices = 6; /* Face has 6 vertices */ 3029552f7358SJed Brown break; 303019436ca2SJed Brown case 10: /* quadratic tetrahedron */ 303119436ca2SJed Brown *numFaceVertices = 6; /* Face has 6 vertices */ 3032552f7358SJed Brown break; 303319436ca2SJed Brown case 12: /* hex cohesive Lagrange cells */ 303419436ca2SJed Brown *numFaceVertices = 6; /* Face has 6 vertices */ 3035552f7358SJed Brown break; 303619436ca2SJed Brown case 18: /* quadratic tet cohesive Lagrange cells */ 303719436ca2SJed Brown *numFaceVertices = 6; /* Face has 6 vertices */ 3038552f7358SJed Brown break; 303919436ca2SJed Brown case 27: /* quadratic hexahedron, quadratic hex cohesive Lagrange cells */ 304019436ca2SJed Brown *numFaceVertices = 9; /* Face has 9 vertices */ 3041552f7358SJed Brown break; 3042552f7358SJed Brown default: 3043f347f43bSBarry Smith SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid number of face corners %D for dimension %D", numCorners, cellDim); 3044552f7358SJed Brown } 3045552f7358SJed Brown break; 3046552f7358SJed Brown default: 3047f347f43bSBarry Smith SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Invalid cell dimension %D", cellDim); 3048552f7358SJed Brown } 3049552f7358SJed Brown PetscFunctionReturn(0); 3050552f7358SJed Brown } 3051552f7358SJed Brown 3052552f7358SJed Brown /*@ 3053aa50250dSMatthew G. Knepley DMPlexGetDepthLabel - Get the DMLabel recording the depth of each point 3054552f7358SJed Brown 3055552f7358SJed Brown Not Collective 3056552f7358SJed Brown 3057aa50250dSMatthew G. Knepley Input Parameter: 3058552f7358SJed Brown . dm - The DMPlex object 3059552f7358SJed Brown 3060aa50250dSMatthew G. Knepley Output Parameter: 3061aa50250dSMatthew G. Knepley . depthLabel - The DMLabel recording point depth 3062552f7358SJed Brown 3063552f7358SJed Brown Level: developer 3064552f7358SJed Brown 3065aa50250dSMatthew G. Knepley .keywords: mesh, points 3066aa50250dSMatthew G. Knepley .seealso: DMPlexGetDepth(), DMPlexGetHeightStratum(), DMPlexGetDepthStratum() 3067aa50250dSMatthew G. Knepley @*/ 3068aa50250dSMatthew G. Knepley PetscErrorCode DMPlexGetDepthLabel(DM dm, DMLabel *depthLabel) 3069aa50250dSMatthew G. Knepley { 3070aa50250dSMatthew G. Knepley PetscErrorCode ierr; 3071aa50250dSMatthew G. Knepley 3072aa50250dSMatthew G. Knepley PetscFunctionBegin; 3073aa50250dSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3074aa50250dSMatthew G. Knepley PetscValidPointer(depthLabel, 2); 3075c58f1c22SToby Isaac if (!dm->depthLabel) {ierr = DMGetLabel(dm, "depth", &dm->depthLabel);CHKERRQ(ierr);} 3076c58f1c22SToby Isaac *depthLabel = dm->depthLabel; 3077aa50250dSMatthew G. Knepley PetscFunctionReturn(0); 3078aa50250dSMatthew G. Knepley } 3079aa50250dSMatthew G. Knepley 3080aa50250dSMatthew G. Knepley /*@ 3081aa50250dSMatthew G. Knepley DMPlexGetDepth - Get the depth of the DAG representing this mesh 3082aa50250dSMatthew G. Knepley 3083aa50250dSMatthew G. Knepley Not Collective 3084aa50250dSMatthew G. Knepley 3085aa50250dSMatthew G. Knepley Input Parameter: 3086aa50250dSMatthew G. Knepley . dm - The DMPlex object 3087aa50250dSMatthew G. Knepley 3088aa50250dSMatthew G. Knepley Output Parameter: 3089aa50250dSMatthew G. Knepley . depth - The number of strata (breadth first levels) in the DAG 3090aa50250dSMatthew G. Knepley 3091aa50250dSMatthew G. Knepley Level: developer 3092552f7358SJed Brown 3093552f7358SJed Brown .keywords: mesh, points 3094aa50250dSMatthew G. Knepley .seealso: DMPlexGetDepthLabel(), DMPlexGetHeightStratum(), DMPlexGetDepthStratum() 3095552f7358SJed Brown @*/ 3096552f7358SJed Brown PetscErrorCode DMPlexGetDepth(DM dm, PetscInt *depth) 3097552f7358SJed Brown { 3098aa50250dSMatthew G. Knepley DMLabel label; 3099aa50250dSMatthew G. Knepley PetscInt d = 0; 3100552f7358SJed Brown PetscErrorCode ierr; 3101552f7358SJed Brown 3102552f7358SJed Brown PetscFunctionBegin; 3103552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3104552f7358SJed Brown PetscValidPointer(depth, 2); 3105aa50250dSMatthew G. Knepley ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr); 3106aa50250dSMatthew G. Knepley if (label) {ierr = DMLabelGetNumValues(label, &d);CHKERRQ(ierr);} 3107552f7358SJed Brown *depth = d-1; 3108552f7358SJed Brown PetscFunctionReturn(0); 3109552f7358SJed Brown } 3110552f7358SJed Brown 3111552f7358SJed Brown /*@ 3112552f7358SJed Brown DMPlexGetDepthStratum - Get the bounds [start, end) for all points at a certain depth. 3113552f7358SJed Brown 3114552f7358SJed Brown Not Collective 3115552f7358SJed Brown 3116552f7358SJed Brown Input Parameters: 3117552f7358SJed Brown + dm - The DMPlex object 3118552f7358SJed Brown - stratumValue - The requested depth 3119552f7358SJed Brown 3120552f7358SJed Brown Output Parameters: 3121552f7358SJed Brown + start - The first point at this depth 3122552f7358SJed Brown - end - One beyond the last point at this depth 3123552f7358SJed Brown 3124552f7358SJed Brown Level: developer 3125552f7358SJed Brown 3126552f7358SJed Brown .keywords: mesh, points 3127552f7358SJed Brown .seealso: DMPlexGetHeightStratum(), DMPlexGetDepth() 3128552f7358SJed Brown @*/ 31290adebc6cSBarry Smith PetscErrorCode DMPlexGetDepthStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end) 31300adebc6cSBarry Smith { 3131aa50250dSMatthew G. Knepley DMLabel label; 313263d1a920SMatthew G. Knepley PetscInt pStart, pEnd; 3133552f7358SJed Brown PetscErrorCode ierr; 3134552f7358SJed Brown 3135552f7358SJed Brown PetscFunctionBegin; 3136552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 313763d1a920SMatthew G. Knepley if (start) {PetscValidPointer(start, 3); *start = 0;} 313863d1a920SMatthew G. Knepley if (end) {PetscValidPointer(end, 4); *end = 0;} 3139552f7358SJed Brown ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 31400d644c17SKarl Rupp if (pStart == pEnd) PetscFunctionReturn(0); 314163d1a920SMatthew G. Knepley if (stratumValue < 0) { 314263d1a920SMatthew G. Knepley if (start) *start = pStart; 314363d1a920SMatthew G. Knepley if (end) *end = pEnd; 314463d1a920SMatthew G. Knepley PetscFunctionReturn(0); 3145552f7358SJed Brown } 3146aa50250dSMatthew G. Knepley ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr); 314763d1a920SMatthew G. Knepley if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found"); 314863d1a920SMatthew G. Knepley ierr = DMLabelGetStratumBounds(label, stratumValue, start, end);CHKERRQ(ierr); 3149552f7358SJed Brown PetscFunctionReturn(0); 3150552f7358SJed Brown } 3151552f7358SJed Brown 3152552f7358SJed Brown /*@ 3153552f7358SJed Brown DMPlexGetHeightStratum - Get the bounds [start, end) for all points at a certain height. 3154552f7358SJed Brown 3155552f7358SJed Brown Not Collective 3156552f7358SJed Brown 3157552f7358SJed Brown Input Parameters: 3158552f7358SJed Brown + dm - The DMPlex object 3159552f7358SJed Brown - stratumValue - The requested height 3160552f7358SJed Brown 3161552f7358SJed Brown Output Parameters: 3162552f7358SJed Brown + start - The first point at this height 3163552f7358SJed Brown - end - One beyond the last point at this height 3164552f7358SJed Brown 3165552f7358SJed Brown Level: developer 3166552f7358SJed Brown 3167552f7358SJed Brown .keywords: mesh, points 3168552f7358SJed Brown .seealso: DMPlexGetDepthStratum(), DMPlexGetDepth() 3169552f7358SJed Brown @*/ 31700adebc6cSBarry Smith PetscErrorCode DMPlexGetHeightStratum(DM dm, PetscInt stratumValue, PetscInt *start, PetscInt *end) 31710adebc6cSBarry Smith { 3172aa50250dSMatthew G. Knepley DMLabel label; 317363d1a920SMatthew G. Knepley PetscInt depth, pStart, pEnd; 3174552f7358SJed Brown PetscErrorCode ierr; 3175552f7358SJed Brown 3176552f7358SJed Brown PetscFunctionBegin; 3177552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 317863d1a920SMatthew G. Knepley if (start) {PetscValidPointer(start, 3); *start = 0;} 317963d1a920SMatthew G. Knepley if (end) {PetscValidPointer(end, 4); *end = 0;} 3180552f7358SJed Brown ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 31810d644c17SKarl Rupp if (pStart == pEnd) PetscFunctionReturn(0); 318263d1a920SMatthew G. Knepley if (stratumValue < 0) { 318363d1a920SMatthew G. Knepley if (start) *start = pStart; 318463d1a920SMatthew G. Knepley if (end) *end = pEnd; 318563d1a920SMatthew G. Knepley PetscFunctionReturn(0); 3186552f7358SJed Brown } 3187aa50250dSMatthew G. Knepley ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr); 318813903a91SSatish Balay if (!label) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "No label named depth was found"); 318963d1a920SMatthew G. Knepley ierr = DMLabelGetNumValues(label, &depth);CHKERRQ(ierr); 319063d1a920SMatthew G. Knepley ierr = DMLabelGetStratumBounds(label, depth-1-stratumValue, start, end);CHKERRQ(ierr); 3191552f7358SJed Brown PetscFunctionReturn(0); 3192552f7358SJed Brown } 3193552f7358SJed Brown 3194552f7358SJed Brown /* Set the number of dof on each point and separate by fields */ 31957cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionInitial(DM dm, PetscInt dim, PetscInt numFields,const PetscInt numComp[],const PetscInt numDof[], PetscSection *section) 3196a6dfd86eSKarl Rupp { 3197ee55978aSMatthew G. Knepley PetscInt *pMax; 3198470f9322SMatthew G. Knepley PetscInt depth, cellHeight, pStart = 0, pEnd = 0; 3199ee55978aSMatthew G. Knepley PetscInt Nf, p, d, dep, f; 3200fa716be8SMatthew G. Knepley PetscBool *isFE; 3201552f7358SJed Brown PetscErrorCode ierr; 3202552f7358SJed Brown 3203552f7358SJed Brown PetscFunctionBegin; 3204fa716be8SMatthew G. Knepley ierr = PetscMalloc1(numFields, &isFE);CHKERRQ(ierr); 3205ee55978aSMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 3206fa716be8SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 3207fa716be8SMatthew G. Knepley PetscObject obj; 3208fa716be8SMatthew G. Knepley PetscClassId id; 3209fa716be8SMatthew G. Knepley 3210ee55978aSMatthew G. Knepley isFE[f] = PETSC_FALSE; 3211ee55978aSMatthew G. Knepley if (f >= Nf) continue; 3212fa716be8SMatthew G. Knepley ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr); 3213fa716be8SMatthew G. Knepley ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr); 3214fa716be8SMatthew G. Knepley if (id == PETSCFE_CLASSID) {isFE[f] = PETSC_TRUE;} 3215fa716be8SMatthew G. Knepley else if (id == PETSCFV_CLASSID) {isFE[f] = PETSC_FALSE;} 3216552f7358SJed Brown } 321782f516ccSBarry Smith ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), section);CHKERRQ(ierr); 3218552f7358SJed Brown if (numFields > 0) { 3219552f7358SJed Brown ierr = PetscSectionSetNumFields(*section, numFields);CHKERRQ(ierr); 3220552f7358SJed Brown if (numComp) { 3221552f7358SJed Brown for (f = 0; f < numFields; ++f) { 3222552f7358SJed Brown ierr = PetscSectionSetFieldComponents(*section, f, numComp[f]);CHKERRQ(ierr); 3223d484f18aSToby Isaac if (isFE[f]) { 3224d484f18aSToby Isaac PetscFE fe; 3225d484f18aSToby Isaac PetscDualSpace dspace; 3226d484f18aSToby Isaac const PetscInt ***perms; 3227d484f18aSToby Isaac const PetscScalar ***flips; 3228d484f18aSToby Isaac const PetscInt *numDof; 3229d484f18aSToby Isaac 3230d484f18aSToby Isaac ierr = DMGetField(dm,f,(PetscObject *) &fe);CHKERRQ(ierr); 3231d484f18aSToby Isaac ierr = PetscFEGetDualSpace(fe,&dspace);CHKERRQ(ierr); 3232d484f18aSToby Isaac ierr = PetscDualSpaceGetSymmetries(dspace,&perms,&flips);CHKERRQ(ierr); 3233d484f18aSToby Isaac ierr = PetscDualSpaceGetNumDof(dspace,&numDof);CHKERRQ(ierr); 3234d484f18aSToby Isaac if (perms || flips) { 3235d484f18aSToby Isaac DM K; 3236d484f18aSToby Isaac DMLabel depthLabel; 3237d484f18aSToby Isaac PetscInt depth, h; 3238d484f18aSToby Isaac PetscSectionSym sym; 3239d484f18aSToby Isaac 3240d484f18aSToby Isaac ierr = PetscDualSpaceGetDM(dspace,&K);CHKERRQ(ierr); 3241d484f18aSToby Isaac ierr = DMPlexGetDepthLabel(dm,&depthLabel);CHKERRQ(ierr); 3242d484f18aSToby Isaac ierr = DMPlexGetDepth(dm,&depth);CHKERRQ(ierr); 3243d484f18aSToby Isaac ierr = PetscSectionSymCreateLabel(PetscObjectComm((PetscObject)*section),depthLabel,&sym);CHKERRQ(ierr); 3244d484f18aSToby Isaac for (h = 0; h <= depth; h++) { 3245d484f18aSToby Isaac PetscDualSpace hspace; 3246d484f18aSToby Isaac PetscInt kStart, kEnd; 3247d484f18aSToby Isaac PetscInt kConeSize; 3248d484f18aSToby Isaac const PetscInt **perms0 = NULL; 3249d484f18aSToby Isaac const PetscScalar **flips0 = NULL; 3250d484f18aSToby Isaac 3251d484f18aSToby Isaac ierr = PetscDualSpaceGetHeightSubspace(dspace,h,&hspace);CHKERRQ(ierr); 3252d484f18aSToby Isaac ierr = DMPlexGetHeightStratum(K,h,&kStart,&kEnd);CHKERRQ(ierr); 3253d484f18aSToby Isaac if (!hspace) continue; 3254d484f18aSToby Isaac ierr = PetscDualSpaceGetSymmetries(hspace,&perms,&flips);CHKERRQ(ierr); 3255d484f18aSToby Isaac if (perms) perms0 = perms[0]; 3256d484f18aSToby Isaac if (flips) flips0 = flips[0]; 3257d484f18aSToby Isaac if (!(perms0 || flips0)) continue; 3258d484f18aSToby Isaac ierr = DMPlexGetConeSize(K,kStart,&kConeSize);CHKERRQ(ierr); 3259d484f18aSToby Isaac ierr = PetscSectionSymLabelSetStratum(sym,depth - h,numDof[depth - h],-kConeSize,kConeSize,PETSC_USE_POINTER,perms0 ? &perms0[-kConeSize] : NULL,flips0 ? &flips0[-kConeSize] : NULL);CHKERRQ(ierr); 3260d484f18aSToby Isaac } 3261d484f18aSToby Isaac ierr = PetscSectionSetFieldSym(*section,f,sym);CHKERRQ(ierr); 3262d484f18aSToby Isaac ierr = PetscSectionSymDestroy(&sym);CHKERRQ(ierr); 3263d484f18aSToby Isaac } 3264d484f18aSToby Isaac } 3265552f7358SJed Brown } 3266552f7358SJed Brown } 3267552f7358SJed Brown } 3268552f7358SJed Brown ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 3269552f7358SJed Brown ierr = PetscSectionSetChart(*section, pStart, pEnd);CHKERRQ(ierr); 3270916f0f19SMatthew G. Knepley ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 32719ac3fadcSMatthew G. Knepley ierr = PetscMalloc1(depth+1,&pMax);CHKERRQ(ierr); 32729ac3fadcSMatthew 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); 3273470f9322SMatthew G. Knepley ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr); 3274470f9322SMatthew G. Knepley for (dep = 0; dep <= depth - cellHeight; ++dep) { 3275916f0f19SMatthew G. Knepley d = dim == depth ? dep : (!dep ? 0 : dim); 3276916f0f19SMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, dep, &pStart, &pEnd);CHKERRQ(ierr); 3277fa716be8SMatthew G. Knepley pMax[dep] = pMax[dep] < 0 ? pEnd : pMax[dep]; 3278552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 3279ee55978aSMatthew G. Knepley PetscInt tot = 0; 3280ee55978aSMatthew G. Knepley 3281552f7358SJed Brown for (f = 0; f < numFields; ++f) { 3282fa716be8SMatthew G. Knepley if (isFE[f] && p >= pMax[dep]) continue; 3283552f7358SJed Brown ierr = PetscSectionSetFieldDof(*section, p, f, numDof[f*(dim+1)+d]);CHKERRQ(ierr); 3284ee55978aSMatthew G. Knepley tot += numDof[f*(dim+1)+d]; 3285552f7358SJed Brown } 3286ee55978aSMatthew G. Knepley ierr = PetscSectionSetDof(*section, p, tot);CHKERRQ(ierr); 3287552f7358SJed Brown } 3288552f7358SJed Brown } 32899ac3fadcSMatthew G. Knepley ierr = PetscFree(pMax);CHKERRQ(ierr); 3290fa716be8SMatthew G. Knepley ierr = PetscFree(isFE);CHKERRQ(ierr); 3291552f7358SJed Brown PetscFunctionReturn(0); 3292552f7358SJed Brown } 3293552f7358SJed Brown 3294552f7358SJed Brown /* Set the number of dof on each point and separate by fields 3295ab1d0545SMatthew G. Knepley If bcComps is NULL or the IS is NULL, constrain every dof on the point 3296552f7358SJed Brown */ 32977cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCDof(DM dm, PetscInt numBC, const PetscInt bcField[], const IS bcComps[], const IS bcPoints[], PetscSection section) 3298a6dfd86eSKarl Rupp { 3299552f7358SJed Brown PetscInt numFields; 3300552f7358SJed Brown PetscInt bc; 3301a68b90caSToby Isaac PetscSection aSec; 3302552f7358SJed Brown PetscErrorCode ierr; 3303552f7358SJed Brown 3304552f7358SJed Brown PetscFunctionBegin; 3305552f7358SJed Brown ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 3306552f7358SJed Brown for (bc = 0; bc < numBC; ++bc) { 3307552f7358SJed Brown PetscInt field = 0; 3308ab1d0545SMatthew G. Knepley const PetscInt *comp; 3309552f7358SJed Brown const PetscInt *idx; 3310ab1d0545SMatthew G. Knepley PetscInt Nc = -1, n, i; 3311552f7358SJed Brown 33120d644c17SKarl Rupp if (numFields) field = bcField[bc]; 3313ab1d0545SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISGetLocalSize(bcComps[bc], &Nc);CHKERRQ(ierr);} 3314ab1d0545SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISGetIndices(bcComps[bc], &comp);CHKERRQ(ierr);} 3315552f7358SJed Brown ierr = ISGetLocalSize(bcPoints[bc], &n);CHKERRQ(ierr); 3316552f7358SJed Brown ierr = ISGetIndices(bcPoints[bc], &idx);CHKERRQ(ierr); 3317552f7358SJed Brown for (i = 0; i < n; ++i) { 3318552f7358SJed Brown const PetscInt p = idx[i]; 331906ff1081SMatthew G. Knepley PetscInt numConst; 3320552f7358SJed Brown 3321552f7358SJed Brown if (numFields) { 3322552f7358SJed Brown ierr = PetscSectionGetFieldDof(section, p, field, &numConst);CHKERRQ(ierr); 3323552f7358SJed Brown } else { 3324552f7358SJed Brown ierr = PetscSectionGetDof(section, p, &numConst);CHKERRQ(ierr); 3325552f7358SJed Brown } 332606ff1081SMatthew G. Knepley /* If Nc < 0, constrain every dof on the point */ 332706ff1081SMatthew G. Knepley if (Nc > 0) numConst = PetscMin(numConst, Nc); 332806ff1081SMatthew G. Knepley if (numFields) {ierr = PetscSectionAddFieldConstraintDof(section, p, field, numConst);CHKERRQ(ierr);} 3329552f7358SJed Brown ierr = PetscSectionAddConstraintDof(section, p, numConst);CHKERRQ(ierr); 3330552f7358SJed Brown } 3331552f7358SJed Brown ierr = ISRestoreIndices(bcPoints[bc], &idx);CHKERRQ(ierr); 333206ff1081SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISRestoreIndices(bcComps[bc], &comp);CHKERRQ(ierr);} 3333552f7358SJed Brown } 3334a17985deSToby Isaac ierr = DMPlexGetAnchors(dm, &aSec, NULL);CHKERRQ(ierr); 3335a68b90caSToby Isaac if (aSec) { 3336a68b90caSToby Isaac PetscInt aStart, aEnd, a; 3337a68b90caSToby Isaac 3338a68b90caSToby Isaac ierr = PetscSectionGetChart(aSec, &aStart, &aEnd);CHKERRQ(ierr); 3339a68b90caSToby Isaac for (a = aStart; a < aEnd; a++) { 3340ab1d0545SMatthew G. Knepley PetscInt dof, f; 3341a68b90caSToby Isaac 3342a68b90caSToby Isaac ierr = PetscSectionGetDof(aSec, a, &dof);CHKERRQ(ierr); 3343a68b90caSToby Isaac if (dof) { 3344a68b90caSToby Isaac /* if there are point-to-point constraints, then all dofs are constrained */ 3345a68b90caSToby Isaac ierr = PetscSectionGetDof(section, a, &dof);CHKERRQ(ierr); 3346a68b90caSToby Isaac ierr = PetscSectionSetConstraintDof(section, a, dof);CHKERRQ(ierr); 3347a68b90caSToby Isaac for (f = 0; f < numFields; f++) { 3348a68b90caSToby Isaac ierr = PetscSectionGetFieldDof(section, a, f, &dof);CHKERRQ(ierr); 3349a68b90caSToby Isaac ierr = PetscSectionSetFieldConstraintDof(section, a, f, dof);CHKERRQ(ierr); 3350a68b90caSToby Isaac } 3351a68b90caSToby Isaac } 3352a68b90caSToby Isaac } 3353a68b90caSToby Isaac } 3354552f7358SJed Brown PetscFunctionReturn(0); 3355552f7358SJed Brown } 3356552f7358SJed Brown 3357ab1d0545SMatthew G. Knepley /* Set the constrained field indices on each point 3358ab1d0545SMatthew G. Knepley If bcComps is NULL or the IS is NULL, constrain every dof on the point 3359ab1d0545SMatthew G. Knepley */ 33607cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCIndicesField(DM dm, PetscInt numBC,const PetscInt bcField[], const IS bcComps[], const IS bcPoints[], PetscSection section) 33610adebc6cSBarry Smith { 3362ab1d0545SMatthew G. Knepley PetscSection aSec; 3363ab1d0545SMatthew G. Knepley PetscInt *indices; 3364503335f2SSander Arens PetscInt numFields, cdof, maxDof = 0, pStart, pEnd, p, bc, f, d; 3365552f7358SJed Brown PetscErrorCode ierr; 3366552f7358SJed Brown 3367552f7358SJed Brown PetscFunctionBegin; 3368552f7358SJed Brown ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 3369ab1d0545SMatthew G. Knepley if (!numFields) PetscFunctionReturn(0); 3370ab1d0545SMatthew G. Knepley /* Initialize all field indices to -1 */ 3371552f7358SJed Brown ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 3372503335f2SSander Arens for (p = pStart; p < pEnd; ++p) {ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr); maxDof = PetscMax(maxDof, cdof);} 3373ab1d0545SMatthew G. Knepley ierr = PetscMalloc1(maxDof, &indices);CHKERRQ(ierr); 3374ab1d0545SMatthew G. Knepley for (d = 0; d < maxDof; ++d) indices[d] = -1; 3375ab1d0545SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) for (f = 0; f < numFields; ++f) {ierr = PetscSectionSetFieldConstraintIndices(section, p, f, indices);CHKERRQ(ierr);} 3376ab1d0545SMatthew G. Knepley /* Handle BC constraints */ 3377ab1d0545SMatthew G. Knepley for (bc = 0; bc < numBC; ++bc) { 3378ab1d0545SMatthew G. Knepley const PetscInt field = bcField[bc]; 3379ab1d0545SMatthew G. Knepley const PetscInt *comp, *idx; 3380ab1d0545SMatthew G. Knepley PetscInt Nc = -1, n, i; 3381552f7358SJed Brown 3382ab1d0545SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISGetLocalSize(bcComps[bc], &Nc);CHKERRQ(ierr);} 3383ab1d0545SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISGetIndices(bcComps[bc], &comp);CHKERRQ(ierr);} 3384ab1d0545SMatthew G. Knepley ierr = ISGetLocalSize(bcPoints[bc], &n);CHKERRQ(ierr); 3385ab1d0545SMatthew G. Knepley ierr = ISGetIndices(bcPoints[bc], &idx);CHKERRQ(ierr); 3386ab1d0545SMatthew G. Knepley for (i = 0; i < n; ++i) { 3387ab1d0545SMatthew G. Knepley const PetscInt p = idx[i]; 3388ab1d0545SMatthew G. Knepley const PetscInt *find; 3389503335f2SSander Arens PetscInt fdof, fcdof, c; 3390ab1d0545SMatthew G. Knepley 3391503335f2SSander Arens ierr = PetscSectionGetFieldDof(section, p, field, &fdof);CHKERRQ(ierr); 3392503335f2SSander Arens if (!fdof) continue; 3393ab1d0545SMatthew G. Knepley if (Nc < 0) { 3394503335f2SSander Arens for (d = 0; d < fdof; ++d) indices[d] = d; 3395503335f2SSander Arens fcdof = fdof; 3396552f7358SJed Brown } else { 3397503335f2SSander Arens ierr = PetscSectionGetFieldConstraintDof(section, p, field, &fcdof);CHKERRQ(ierr); 3398ab1d0545SMatthew G. Knepley ierr = PetscSectionGetFieldConstraintIndices(section, p, field, &find);CHKERRQ(ierr); 3399ab1d0545SMatthew G. Knepley for (d = 0; d < fcdof; ++d) {if (find[d] < 0) break; indices[d] = find[d];} 3400503335f2SSander Arens for (c = 0; c < Nc; ++c) indices[d++] = comp[c]; 3401503335f2SSander Arens ierr = PetscSortRemoveDupsInt(&d, indices);CHKERRQ(ierr); 3402503335f2SSander Arens for (c = d; c < fcdof; ++c) indices[c] = -1; 3403503335f2SSander Arens fcdof = d; 3404552f7358SJed Brown } 3405503335f2SSander Arens ierr = PetscSectionSetFieldConstraintDof(section, p, field, fcdof);CHKERRQ(ierr); 3406ab1d0545SMatthew G. Knepley ierr = PetscSectionSetFieldConstraintIndices(section, p, field, indices);CHKERRQ(ierr); 3407552f7358SJed Brown } 3408ab1d0545SMatthew G. Knepley if (bcComps && bcComps[bc]) {ierr = ISRestoreIndices(bcComps[bc], &comp);CHKERRQ(ierr);} 3409ab1d0545SMatthew G. Knepley ierr = ISRestoreIndices(bcPoints[bc], &idx);CHKERRQ(ierr); 3410552f7358SJed Brown } 3411ab1d0545SMatthew G. Knepley /* Handle anchors */ 3412ab1d0545SMatthew G. Knepley ierr = DMPlexGetAnchors(dm, &aSec, NULL);CHKERRQ(ierr); 3413ab1d0545SMatthew G. Knepley if (aSec) { 3414ab1d0545SMatthew G. Knepley PetscInt aStart, aEnd, a; 3415552f7358SJed Brown 3416ab1d0545SMatthew G. Knepley for (d = 0; d < maxDof; ++d) indices[d] = d; 3417ab1d0545SMatthew G. Knepley ierr = PetscSectionGetChart(aSec, &aStart, &aEnd);CHKERRQ(ierr); 3418ab1d0545SMatthew G. Knepley for (a = aStart; a < aEnd; a++) { 3419503335f2SSander Arens PetscInt dof, f; 3420ab1d0545SMatthew G. Knepley 3421ab1d0545SMatthew G. Knepley ierr = PetscSectionGetDof(aSec, a, &dof);CHKERRQ(ierr); 3422ab1d0545SMatthew G. Knepley if (dof) { 3423ab1d0545SMatthew G. Knepley /* if there are point-to-point constraints, then all dofs are constrained */ 3424ab1d0545SMatthew G. Knepley for (f = 0; f < numFields; f++) { 3425ab1d0545SMatthew G. Knepley ierr = PetscSectionSetFieldConstraintIndices(section, a, f, indices);CHKERRQ(ierr); 3426ab1d0545SMatthew G. Knepley } 3427ab1d0545SMatthew G. Knepley } 3428ab1d0545SMatthew G. Knepley } 3429ab1d0545SMatthew G. Knepley } 3430ab1d0545SMatthew G. Knepley ierr = PetscFree(indices);CHKERRQ(ierr); 3431ab1d0545SMatthew G. Knepley PetscFunctionReturn(0); 3432ab1d0545SMatthew G. Knepley } 3433ab1d0545SMatthew G. Knepley 3434ab1d0545SMatthew G. Knepley /* Set the constrained indices on each point */ 34357cd05799SMatthew G. Knepley static PetscErrorCode DMPlexCreateSectionBCIndices(DM dm, PetscSection section) 3436ab1d0545SMatthew G. Knepley { 3437ab1d0545SMatthew G. Knepley PetscInt *indices; 3438ab1d0545SMatthew G. Knepley PetscInt numFields, maxDof, pStart, pEnd, p, f, d; 3439ab1d0545SMatthew G. Knepley PetscErrorCode ierr; 3440ab1d0545SMatthew G. Knepley 3441ab1d0545SMatthew G. Knepley PetscFunctionBegin; 3442ab1d0545SMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 3443ab1d0545SMatthew G. Knepley ierr = PetscSectionGetMaxDof(section, &maxDof);CHKERRQ(ierr); 3444ab1d0545SMatthew G. Knepley ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 3445ab1d0545SMatthew G. Knepley ierr = PetscMalloc1(maxDof, &indices);CHKERRQ(ierr); 3446ab1d0545SMatthew G. Knepley for (d = 0; d < maxDof; ++d) indices[d] = -1; 3447552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 3448552f7358SJed Brown PetscInt cdof, d; 3449552f7358SJed Brown 3450552f7358SJed Brown ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr); 3451552f7358SJed Brown if (cdof) { 3452552f7358SJed Brown if (numFields) { 3453552f7358SJed Brown PetscInt numConst = 0, foff = 0; 3454552f7358SJed Brown 3455552f7358SJed Brown for (f = 0; f < numFields; ++f) { 3456ab1d0545SMatthew G. Knepley const PetscInt *find; 3457ab1d0545SMatthew G. Knepley PetscInt fcdof, fdof; 3458552f7358SJed Brown 3459552f7358SJed Brown ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr); 3460ab1d0545SMatthew G. Knepley ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr); 3461ab1d0545SMatthew G. Knepley /* Change constraint numbering from field component to local dof number */ 3462ab1d0545SMatthew G. Knepley ierr = PetscSectionGetFieldConstraintIndices(section, p, f, &find);CHKERRQ(ierr); 3463ab1d0545SMatthew G. Knepley for (d = 0; d < fcdof; ++d) indices[numConst+d] = find[d] + foff; 3464ab1d0545SMatthew G. Knepley numConst += fcdof; 3465552f7358SJed Brown foff += fdof; 3466552f7358SJed Brown } 3467503335f2SSander Arens if (cdof != numConst) {ierr = PetscSectionSetConstraintDof(section, p, numConst);CHKERRQ(ierr);} 3468552f7358SJed Brown } else { 34690d644c17SKarl Rupp for (d = 0; d < cdof; ++d) indices[d] = d; 3470552f7358SJed Brown } 3471552f7358SJed Brown ierr = PetscSectionSetConstraintIndices(section, p, indices);CHKERRQ(ierr); 3472552f7358SJed Brown } 3473552f7358SJed Brown } 3474552f7358SJed Brown ierr = PetscFree(indices);CHKERRQ(ierr); 3475552f7358SJed Brown PetscFunctionReturn(0); 3476552f7358SJed Brown } 3477552f7358SJed Brown 3478552f7358SJed Brown /*@C 3479552f7358SJed Brown DMPlexCreateSection - Create a PetscSection based upon the dof layout specification provided. 3480552f7358SJed Brown 3481552f7358SJed Brown Not Collective 3482552f7358SJed Brown 3483552f7358SJed Brown Input Parameters: 3484552f7358SJed Brown + dm - The DMPlex object 3485552f7358SJed Brown . dim - The spatial dimension of the problem 3486552f7358SJed Brown . numFields - The number of fields in the problem 3487552f7358SJed Brown . numComp - An array of size numFields that holds the number of components for each field 3488552f7358SJed 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 3489552f7358SJed Brown . numBC - The number of boundary conditions 3490552f7358SJed Brown . bcField - An array of size numBC giving the field number for each boundry condition 3491ab1d0545SMatthew G. Knepley . bcComps - [Optional] An array of size numBC giving an IS holding the field components to which each boundary condition applies 3492ab1d0545SMatthew G. Knepley . bcPoints - An array of size numBC giving an IS holding the Plex points to which each boundary condition applies 3493f8f126e8SMatthew G. Knepley - perm - Optional permutation of the chart, or NULL 3494552f7358SJed Brown 3495552f7358SJed Brown Output Parameter: 3496552f7358SJed Brown . section - The PetscSection object 3497552f7358SJed Brown 349895452b02SPatrick Sanan Notes: 349995452b02SPatrick 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 3500f8f126e8SMatthew G. Knepley number of dof for field 0 on each edge. 3501f8f126e8SMatthew G. Knepley 3502f8f126e8SMatthew G. Knepley The chart permutation is the same one set using PetscSectionSetPermutation() 3503552f7358SJed Brown 3504552f7358SJed Brown Level: developer 3505552f7358SJed Brown 35063813dfbdSMatthew G Knepley Fortran Notes: 35073813dfbdSMatthew G Knepley A Fortran 90 version is available as DMPlexCreateSectionF90() 35083813dfbdSMatthew G Knepley 3509552f7358SJed Brown .keywords: mesh, elements 3510f8f126e8SMatthew G. Knepley .seealso: DMPlexCreate(), PetscSectionCreate(), PetscSectionSetPermutation() 3511552f7358SJed Brown @*/ 3512ab1d0545SMatthew 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) 3513a6dfd86eSKarl Rupp { 3514a68b90caSToby Isaac PetscSection aSec; 3515552f7358SJed Brown PetscErrorCode ierr; 3516552f7358SJed Brown 3517552f7358SJed Brown PetscFunctionBegin; 3518552f7358SJed Brown ierr = DMPlexCreateSectionInitial(dm, dim, numFields, numComp, numDof, section);CHKERRQ(ierr); 3519ab1d0545SMatthew G. Knepley ierr = DMPlexCreateSectionBCDof(dm, numBC, bcField, bcComps, bcPoints, *section);CHKERRQ(ierr); 3520f8f126e8SMatthew G. Knepley if (perm) {ierr = PetscSectionSetPermutation(*section, perm);CHKERRQ(ierr);} 3521*5e5b47fcSMatthew G. Knepley ierr = PetscSectionSetFromOptions(*section);CHKERRQ(ierr); 3522552f7358SJed Brown ierr = PetscSectionSetUp(*section);CHKERRQ(ierr); 3523a17985deSToby Isaac ierr = DMPlexGetAnchors(dm,&aSec,NULL);CHKERRQ(ierr); 3524ab1d0545SMatthew G. Knepley if (numBC || aSec) { 3525ab1d0545SMatthew G. Knepley ierr = DMPlexCreateSectionBCIndicesField(dm, numBC, bcField, bcComps, bcPoints, *section);CHKERRQ(ierr); 3526ab1d0545SMatthew G. Knepley ierr = DMPlexCreateSectionBCIndices(dm, *section);CHKERRQ(ierr); 3527ab1d0545SMatthew G. Knepley } 3528ce1779c8SBarry Smith ierr = PetscSectionViewFromOptions(*section,NULL,"-section_view");CHKERRQ(ierr); 3529552f7358SJed Brown PetscFunctionReturn(0); 3530552f7358SJed Brown } 3531552f7358SJed Brown 35320adebc6cSBarry Smith PetscErrorCode DMCreateCoordinateDM_Plex(DM dm, DM *cdm) 35330adebc6cSBarry Smith { 3534efe440bfSMatthew G. Knepley PetscSection section, s; 3535efe440bfSMatthew G. Knepley Mat m; 35363e922f36SToby Isaac PetscInt maxHeight; 3537552f7358SJed Brown PetscErrorCode ierr; 3538552f7358SJed Brown 3539552f7358SJed Brown PetscFunctionBegin; 354038221697SMatthew G. Knepley ierr = DMClone(dm, cdm);CHKERRQ(ierr); 35413e922f36SToby Isaac ierr = DMPlexGetMaxProjectionHeight(dm, &maxHeight);CHKERRQ(ierr); 35423e922f36SToby Isaac ierr = DMPlexSetMaxProjectionHeight(*cdm, maxHeight);CHKERRQ(ierr); 354382f516ccSBarry Smith ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), §ion);CHKERRQ(ierr); 3544e87a4003SBarry Smith ierr = DMSetSection(*cdm, section);CHKERRQ(ierr); 35451d799100SJed Brown ierr = PetscSectionDestroy(§ion);CHKERRQ(ierr); 3546efe440bfSMatthew G. Knepley ierr = PetscSectionCreate(PETSC_COMM_SELF, &s);CHKERRQ(ierr); 3547efe440bfSMatthew G. Knepley ierr = MatCreate(PETSC_COMM_SELF, &m);CHKERRQ(ierr); 3548efe440bfSMatthew G. Knepley ierr = DMSetDefaultConstraints(*cdm, s, m);CHKERRQ(ierr); 3549efe440bfSMatthew G. Knepley ierr = PetscSectionDestroy(&s);CHKERRQ(ierr); 3550efe440bfSMatthew G. Knepley ierr = MatDestroy(&m);CHKERRQ(ierr); 3551552f7358SJed Brown PetscFunctionReturn(0); 3552552f7358SJed Brown } 3553552f7358SJed Brown 3554f19dbd58SToby Isaac PetscErrorCode DMCreateCoordinateField_Plex(DM dm, DMField *field) 3555f19dbd58SToby Isaac { 3556f19dbd58SToby Isaac Vec coordsLocal; 3557f19dbd58SToby Isaac DM coordsDM; 3558f19dbd58SToby Isaac PetscErrorCode ierr; 3559f19dbd58SToby Isaac 3560f19dbd58SToby Isaac PetscFunctionBegin; 3561f19dbd58SToby Isaac *field = NULL; 3562f19dbd58SToby Isaac ierr = DMGetCoordinatesLocal(dm,&coordsLocal);CHKERRQ(ierr); 3563f19dbd58SToby Isaac ierr = DMGetCoordinateDM(dm,&coordsDM);CHKERRQ(ierr); 3564f19dbd58SToby Isaac if (coordsLocal && coordsDM) { 3565f19dbd58SToby Isaac ierr = DMFieldCreateDS(coordsDM, 0, coordsLocal, field);CHKERRQ(ierr); 3566f19dbd58SToby Isaac } 3567f19dbd58SToby Isaac PetscFunctionReturn(0); 3568f19dbd58SToby Isaac } 3569f19dbd58SToby Isaac 35707cd05799SMatthew G. Knepley /*@C 35717cd05799SMatthew G. Knepley DMPlexGetConeSection - Return a section which describes the layout of cone data 35727cd05799SMatthew G. Knepley 35737cd05799SMatthew G. Knepley Not Collective 35747cd05799SMatthew G. Knepley 35757cd05799SMatthew G. Knepley Input Parameters: 35767cd05799SMatthew G. Knepley . dm - The DMPlex object 35777cd05799SMatthew G. Knepley 35787cd05799SMatthew G. Knepley Output Parameter: 35797cd05799SMatthew G. Knepley . section - The PetscSection object 35807cd05799SMatthew G. Knepley 35817cd05799SMatthew G. Knepley Level: developer 35827cd05799SMatthew G. Knepley 35837cd05799SMatthew G. Knepley .seealso: DMPlexGetSupportSection(), DMPlexGetCones(), DMPlexGetConeOrientations() 35847cd05799SMatthew G. Knepley @*/ 35850adebc6cSBarry Smith PetscErrorCode DMPlexGetConeSection(DM dm, PetscSection *section) 35860adebc6cSBarry Smith { 3587552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 3588552f7358SJed Brown 3589552f7358SJed Brown PetscFunctionBegin; 3590552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3591552f7358SJed Brown if (section) *section = mesh->coneSection; 3592552f7358SJed Brown PetscFunctionReturn(0); 3593552f7358SJed Brown } 3594552f7358SJed Brown 35957cd05799SMatthew G. Knepley /*@C 35967cd05799SMatthew G. Knepley DMPlexGetSupportSection - Return a section which describes the layout of support data 35977cd05799SMatthew G. Knepley 35987cd05799SMatthew G. Knepley Not Collective 35997cd05799SMatthew G. Knepley 36007cd05799SMatthew G. Knepley Input Parameters: 36017cd05799SMatthew G. Knepley . dm - The DMPlex object 36027cd05799SMatthew G. Knepley 36037cd05799SMatthew G. Knepley Output Parameter: 36047cd05799SMatthew G. Knepley . section - The PetscSection object 36057cd05799SMatthew G. Knepley 36067cd05799SMatthew G. Knepley Level: developer 36077cd05799SMatthew G. Knepley 36087cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection() 36097cd05799SMatthew G. Knepley @*/ 36108cb4d582SMatthew G. Knepley PetscErrorCode DMPlexGetSupportSection(DM dm, PetscSection *section) 36118cb4d582SMatthew G. Knepley { 36128cb4d582SMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 36138cb4d582SMatthew G. Knepley 36148cb4d582SMatthew G. Knepley PetscFunctionBegin; 36158cb4d582SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 36168cb4d582SMatthew G. Knepley if (section) *section = mesh->supportSection; 36178cb4d582SMatthew G. Knepley PetscFunctionReturn(0); 36188cb4d582SMatthew G. Knepley } 36198cb4d582SMatthew G. Knepley 36207cd05799SMatthew G. Knepley /*@C 36217cd05799SMatthew G. Knepley DMPlexGetCones - Return cone data 36227cd05799SMatthew G. Knepley 36237cd05799SMatthew G. Knepley Not Collective 36247cd05799SMatthew G. Knepley 36257cd05799SMatthew G. Knepley Input Parameters: 36267cd05799SMatthew G. Knepley . dm - The DMPlex object 36277cd05799SMatthew G. Knepley 36287cd05799SMatthew G. Knepley Output Parameter: 36297cd05799SMatthew G. Knepley . cones - The cone for each point 36307cd05799SMatthew G. Knepley 36317cd05799SMatthew G. Knepley Level: developer 36327cd05799SMatthew G. Knepley 36337cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection() 36347cd05799SMatthew G. Knepley @*/ 3635a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetCones(DM dm, PetscInt *cones[]) 3636a6dfd86eSKarl Rupp { 3637552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 3638552f7358SJed Brown 3639552f7358SJed Brown PetscFunctionBegin; 3640552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3641552f7358SJed Brown if (cones) *cones = mesh->cones; 3642552f7358SJed Brown PetscFunctionReturn(0); 3643552f7358SJed Brown } 3644552f7358SJed Brown 36457cd05799SMatthew G. Knepley /*@C 36467cd05799SMatthew G. Knepley DMPlexGetConeOrientations - Return cone orientation data 36477cd05799SMatthew G. Knepley 36487cd05799SMatthew G. Knepley Not Collective 36497cd05799SMatthew G. Knepley 36507cd05799SMatthew G. Knepley Input Parameters: 36517cd05799SMatthew G. Knepley . dm - The DMPlex object 36527cd05799SMatthew G. Knepley 36537cd05799SMatthew G. Knepley Output Parameter: 36547cd05799SMatthew G. Knepley . coneOrientations - The cone orientation for each point 36557cd05799SMatthew G. Knepley 36567cd05799SMatthew G. Knepley Level: developer 36577cd05799SMatthew G. Knepley 36587cd05799SMatthew G. Knepley .seealso: DMPlexGetConeSection() 36597cd05799SMatthew G. Knepley @*/ 3660a6dfd86eSKarl Rupp PetscErrorCode DMPlexGetConeOrientations(DM dm, PetscInt *coneOrientations[]) 3661a6dfd86eSKarl Rupp { 3662552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 3663552f7358SJed Brown 3664552f7358SJed Brown PetscFunctionBegin; 3665552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3666552f7358SJed Brown if (coneOrientations) *coneOrientations = mesh->coneOrientations; 3667552f7358SJed Brown PetscFunctionReturn(0); 3668552f7358SJed Brown } 3669552f7358SJed Brown 3670552f7358SJed Brown /******************************** FEM Support **********************************/ 3671552f7358SJed Brown 36727391a63aSMatthew G. Knepley PetscErrorCode DMPlexCreateSpectralClosurePermutation(DM dm, PetscInt point, PetscSection section) 36733194fc30SMatthew G. Knepley { 36747391a63aSMatthew G. Knepley DMLabel label; 36753194fc30SMatthew G. Knepley PetscInt *perm; 36767391a63aSMatthew G. Knepley PetscInt dim, depth, eStart, k, Nf, f, Nc, c, i, j, size = 0, offset = 0, foffset = 0; 36773194fc30SMatthew G. Knepley PetscErrorCode ierr; 36783194fc30SMatthew G. Knepley 36793194fc30SMatthew G. Knepley PetscFunctionBegin; 36807391a63aSMatthew G. Knepley if (point < 0) {ierr = DMPlexGetDepthStratum(dm, 1, &point, NULL);CHKERRQ(ierr);} 36813194fc30SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 36827391a63aSMatthew G. Knepley ierr = DMPlexGetDepthLabel(dm, &label);CHKERRQ(ierr); 36837391a63aSMatthew G. Knepley ierr = DMLabelGetValue(label, point, &depth);CHKERRQ(ierr); 36847391a63aSMatthew G. Knepley if (depth == 1) {eStart = point;} 36857391a63aSMatthew G. Knepley else if (depth == dim) { 36867391a63aSMatthew G. Knepley const PetscInt *cone; 36877391a63aSMatthew G. Knepley 36887391a63aSMatthew G. Knepley ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr); 36897391a63aSMatthew G. Knepley eStart = cone[0]; 36907391a63aSMatthew G. Knepley } else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Point %D of depth %D cannot be used to bootstrap spectral ordering", point, depth); 3691e87a4003SBarry Smith if (!section) {ierr = DMGetSection(dm, §ion);CHKERRQ(ierr);} 36923194fc30SMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr); 369389eabcffSMatthew G. Knepley if (dim <= 1) PetscFunctionReturn(0); 36943194fc30SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 36953194fc30SMatthew G. Knepley /* An order k SEM disc has k-1 dofs on an edge */ 36963194fc30SMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr); 36973194fc30SMatthew G. Knepley ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr); 36983194fc30SMatthew G. Knepley k = k/Nc + 1; 369989eabcffSMatthew G. Knepley size += PetscPowInt(k+1, dim)*Nc; 37003194fc30SMatthew G. Knepley } 37013194fc30SMatthew G. Knepley ierr = PetscMalloc1(size, &perm);CHKERRQ(ierr); 37023194fc30SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 370389eabcffSMatthew G. Knepley switch (dim) { 370489eabcffSMatthew G. Knepley case 2: 37053194fc30SMatthew 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} */ 37063194fc30SMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr); 37073194fc30SMatthew G. Knepley ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr); 37083194fc30SMatthew G. Knepley k = k/Nc + 1; 37093194fc30SMatthew G. Knepley /* The SEM order is 37103194fc30SMatthew G. Knepley 37113194fc30SMatthew G. Knepley v_lb, {e_b}, v_rb, 371289eabcffSMatthew G. Knepley e^{(k-1)-i}_l, {f^{i*(k-1)}}, e^i_r, 37133194fc30SMatthew G. Knepley v_lt, reverse {e_t}, v_rt 37143194fc30SMatthew G. Knepley */ 37153194fc30SMatthew G. Knepley { 37163194fc30SMatthew G. Knepley const PetscInt of = 0; 37173194fc30SMatthew G. Knepley const PetscInt oeb = of + PetscSqr(k-1); 37183194fc30SMatthew G. Knepley const PetscInt oer = oeb + (k-1); 37193194fc30SMatthew G. Knepley const PetscInt oet = oer + (k-1); 37203194fc30SMatthew G. Knepley const PetscInt oel = oet + (k-1); 37213194fc30SMatthew G. Knepley const PetscInt ovlb = oel + (k-1); 37223194fc30SMatthew G. Knepley const PetscInt ovrb = ovlb + 1; 37233194fc30SMatthew G. Knepley const PetscInt ovrt = ovrb + 1; 37243194fc30SMatthew G. Knepley const PetscInt ovlt = ovrt + 1; 37253194fc30SMatthew G. Knepley PetscInt o; 37263194fc30SMatthew G. Knepley 37273194fc30SMatthew G. Knepley /* bottom */ 37283194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlb*Nc + c + foffset; 37293194fc30SMatthew G. Knepley for (o = oeb; o < oer; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 37303194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrb*Nc + c + foffset; 37313194fc30SMatthew G. Knepley /* middle */ 37323194fc30SMatthew G. Knepley for (i = 0; i < k-1; ++i) { 37333194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oel+(k-2)-i)*Nc + c + foffset; 37343194fc30SMatthew 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; 37353194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oer+i)*Nc + c + foffset; 37363194fc30SMatthew G. Knepley } 37373194fc30SMatthew G. Knepley /* top */ 37383194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovlt*Nc + c + foffset; 37393194fc30SMatthew G. Knepley for (o = oel-1; o >= oet; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 37403194fc30SMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovrt*Nc + c + foffset; 37413194fc30SMatthew G. Knepley foffset = offset; 37423194fc30SMatthew G. Knepley } 374389eabcffSMatthew G. Knepley break; 374489eabcffSMatthew G. Knepley case 3: 374589eabcffSMatthew G. Knepley /* The original hex closure is 374689eabcffSMatthew G. Knepley 374789eabcffSMatthew G. Knepley {c, 374889eabcffSMatthew G. Knepley f_b, f_t, f_f, f_b, f_r, f_l, 374989eabcffSMatthew 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, 375089eabcffSMatthew G. Knepley v_blf, v_blb, v_brb, v_brf, v_tlf, v_trf, v_trb, v_tlb} 375189eabcffSMatthew G. Knepley */ 375289eabcffSMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, eStart, f, &k);CHKERRQ(ierr); 375389eabcffSMatthew G. Knepley ierr = PetscSectionGetFieldComponents(section, f, &Nc);CHKERRQ(ierr); 375489eabcffSMatthew G. Knepley k = k/Nc + 1; 375589eabcffSMatthew G. Knepley /* The SEM order is 375689eabcffSMatthew G. Knepley Bottom Slice 375789eabcffSMatthew G. Knepley v_blf, {e^{(k-1)-n}_bf}, v_brf, 375889eabcffSMatthew G. Knepley e^{i}_bl, f^{n*(k-1)+(k-1)-i}_b, e^{(k-1)-i}_br, 375989eabcffSMatthew G. Knepley v_blb, {e_bb}, v_brb, 376089eabcffSMatthew G. Knepley 376189eabcffSMatthew G. Knepley Middle Slice (j) 376289eabcffSMatthew G. Knepley {e^{(k-1)-j}_lf}, {f^{j*(k-1)+n}_f}, e^j_rf, 376389eabcffSMatthew G. Knepley f^{i*(k-1)+j}_l, {c^{(j*(k-1) + i)*(k-1)+n}_t}, f^{j*(k-1)+i}_r, 376489eabcffSMatthew G. Knepley e^j_lb, {f^{j*(k-1)+(k-1)-n}_b}, e^{(k-1)-j}_rb, 376589eabcffSMatthew G. Knepley 376689eabcffSMatthew G. Knepley Top Slice 376789eabcffSMatthew G. Knepley v_tlf, {e_tf}, v_trf, 376889eabcffSMatthew G. Knepley e^{(k-1)-i}_tl, {f^{i*(k-1)}_t}, e^{i}_tr, 376989eabcffSMatthew G. Knepley v_tlb, {e^{(k-1)-n}_tb}, v_trb, 377089eabcffSMatthew G. Knepley */ 377189eabcffSMatthew G. Knepley { 377289eabcffSMatthew G. Knepley const PetscInt oc = 0; 377389eabcffSMatthew G. Knepley const PetscInt ofb = oc + PetscSqr(k-1)*(k-1); 377489eabcffSMatthew G. Knepley const PetscInt oft = ofb + PetscSqr(k-1); 377589eabcffSMatthew G. Knepley const PetscInt off = oft + PetscSqr(k-1); 377689eabcffSMatthew G. Knepley const PetscInt ofk = off + PetscSqr(k-1); 377789eabcffSMatthew G. Knepley const PetscInt ofr = ofk + PetscSqr(k-1); 377889eabcffSMatthew G. Knepley const PetscInt ofl = ofr + PetscSqr(k-1); 377989eabcffSMatthew G. Knepley const PetscInt oebl = ofl + PetscSqr(k-1); 378089eabcffSMatthew G. Knepley const PetscInt oebb = oebl + (k-1); 378189eabcffSMatthew G. Knepley const PetscInt oebr = oebb + (k-1); 378289eabcffSMatthew G. Knepley const PetscInt oebf = oebr + (k-1); 378389eabcffSMatthew G. Knepley const PetscInt oetf = oebf + (k-1); 378489eabcffSMatthew G. Knepley const PetscInt oetr = oetf + (k-1); 378589eabcffSMatthew G. Knepley const PetscInt oetb = oetr + (k-1); 378689eabcffSMatthew G. Knepley const PetscInt oetl = oetb + (k-1); 378789eabcffSMatthew G. Knepley const PetscInt oerf = oetl + (k-1); 378889eabcffSMatthew G. Knepley const PetscInt oelf = oerf + (k-1); 378989eabcffSMatthew G. Knepley const PetscInt oelb = oelf + (k-1); 379089eabcffSMatthew G. Knepley const PetscInt oerb = oelb + (k-1); 379189eabcffSMatthew G. Knepley const PetscInt ovblf = oerb + (k-1); 379289eabcffSMatthew G. Knepley const PetscInt ovblb = ovblf + 1; 379389eabcffSMatthew G. Knepley const PetscInt ovbrb = ovblb + 1; 379489eabcffSMatthew G. Knepley const PetscInt ovbrf = ovbrb + 1; 379589eabcffSMatthew G. Knepley const PetscInt ovtlf = ovbrf + 1; 379689eabcffSMatthew G. Knepley const PetscInt ovtrf = ovtlf + 1; 379789eabcffSMatthew G. Knepley const PetscInt ovtrb = ovtrf + 1; 379889eabcffSMatthew G. Knepley const PetscInt ovtlb = ovtrb + 1; 379989eabcffSMatthew G. Knepley PetscInt o, n; 380089eabcffSMatthew G. Knepley 380189eabcffSMatthew G. Knepley /* Bottom Slice */ 380289eabcffSMatthew G. Knepley /* bottom */ 380389eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblf*Nc + c + foffset; 380489eabcffSMatthew G. Knepley for (o = oetf-1; o >= oebf; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 380589eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrf*Nc + c + foffset; 380689eabcffSMatthew G. Knepley /* middle */ 380789eabcffSMatthew G. Knepley for (i = 0; i < k-1; ++i) { 380889eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebl+i)*Nc + c + foffset; 3809316b7f87SMax 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;} 381089eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oebr+(k-2)-i)*Nc + c + foffset; 38113194fc30SMatthew G. Knepley } 381289eabcffSMatthew G. Knepley /* top */ 381389eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovblb*Nc + c + foffset; 381489eabcffSMatthew G. Knepley for (o = oebb; o < oebr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 381589eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovbrb*Nc + c + foffset; 381689eabcffSMatthew G. Knepley 381789eabcffSMatthew G. Knepley /* Middle Slice */ 381889eabcffSMatthew G. Knepley for (j = 0; j < k-1; ++j) { 381989eabcffSMatthew G. Knepley /* bottom */ 382089eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelf+(k-2)-j)*Nc + c + foffset; 382189eabcffSMatthew 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; 382289eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerf+j)*Nc + c + foffset; 382389eabcffSMatthew G. Knepley /* middle */ 382489eabcffSMatthew G. Knepley for (i = 0; i < k-1; ++i) { 382589eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofl+i*(k-1)+j)*Nc + c + foffset; 382689eabcffSMatthew 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; 382789eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (ofr+j*(k-1)+i)*Nc + c + foffset; 382889eabcffSMatthew G. Knepley } 382989eabcffSMatthew G. Knepley /* top */ 383089eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oelb+j)*Nc + c + foffset; 383189eabcffSMatthew 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; 383289eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oerb+(k-2)-j)*Nc + c + foffset; 383389eabcffSMatthew G. Knepley } 383489eabcffSMatthew G. Knepley 383589eabcffSMatthew G. Knepley /* Top Slice */ 383689eabcffSMatthew G. Knepley /* bottom */ 383789eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlf*Nc + c + foffset; 383889eabcffSMatthew G. Knepley for (o = oetf; o < oetr; ++o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 383989eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrf*Nc + c + foffset; 384089eabcffSMatthew G. Knepley /* middle */ 384189eabcffSMatthew G. Knepley for (i = 0; i < k-1; ++i) { 384289eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetl+(k-2)-i)*Nc + c + foffset; 384389eabcffSMatthew 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; 384489eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = (oetr+i)*Nc + c + foffset; 384589eabcffSMatthew G. Knepley } 384689eabcffSMatthew G. Knepley /* top */ 384789eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtlb*Nc + c + foffset; 384889eabcffSMatthew G. Knepley for (o = oetl-1; o >= oetb; --o) for (c = 0; c < Nc; ++c, ++offset) perm[offset] = o*Nc + c + foffset; 384989eabcffSMatthew G. Knepley for (c = 0; c < Nc; ++c, ++offset) perm[offset] = ovtrb*Nc + c + foffset; 385089eabcffSMatthew G. Knepley 385189eabcffSMatthew G. Knepley foffset = offset; 385289eabcffSMatthew G. Knepley } 385389eabcffSMatthew G. Knepley break; 385489eabcffSMatthew G. Knepley default: SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "No spectral ordering for dimension %D", dim); 385589eabcffSMatthew G. Knepley } 385689eabcffSMatthew G. Knepley } 385789eabcffSMatthew G. Knepley if (offset != size) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Number of permutation entries %D != %D", offset, size); 38583194fc30SMatthew G. Knepley /* Check permutation */ 38593194fc30SMatthew G. Knepley { 38603194fc30SMatthew G. Knepley PetscInt *check; 38613194fc30SMatthew G. Knepley 38623194fc30SMatthew G. Knepley ierr = PetscMalloc1(size, &check);CHKERRQ(ierr); 38633194fc30SMatthew 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]);} 38643194fc30SMatthew G. Knepley for (i = 0; i < size; ++i) check[perm[i]] = i; 38653194fc30SMatthew G. Knepley for (i = 0; i < size; ++i) {if (check[i] < 0) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Missing permutation index %D", i);} 38663194fc30SMatthew G. Knepley ierr = PetscFree(check);CHKERRQ(ierr); 38673194fc30SMatthew G. Knepley } 38681fdd32a2SMatthew G. Knepley ierr = PetscSectionSetClosurePermutation_Internal(section, (PetscObject) dm, size, PETSC_OWN_POINTER, perm);CHKERRQ(ierr); 38693194fc30SMatthew G. Knepley PetscFunctionReturn(0); 38703194fc30SMatthew G. Knepley } 38713194fc30SMatthew G. Knepley 3872e071409bSToby Isaac PetscErrorCode DMPlexGetPointDualSpaceFEM(DM dm, PetscInt point, PetscInt field, PetscDualSpace *dspace) 3873e071409bSToby Isaac { 3874e071409bSToby Isaac PetscDS prob; 3875e071409bSToby Isaac PetscInt depth, Nf, h; 3876e071409bSToby Isaac DMLabel label; 3877e071409bSToby Isaac PetscErrorCode ierr; 3878e071409bSToby Isaac 3879e071409bSToby Isaac PetscFunctionBeginHot; 3880e071409bSToby Isaac prob = dm->prob; 3881e071409bSToby Isaac Nf = prob->Nf; 3882e071409bSToby Isaac label = dm->depthLabel; 3883e071409bSToby Isaac *dspace = NULL; 3884e071409bSToby Isaac if (field < Nf) { 3885e071409bSToby Isaac PetscObject disc = prob->disc[field]; 3886e071409bSToby Isaac 3887e071409bSToby Isaac if (disc->classid == PETSCFE_CLASSID) { 3888e071409bSToby Isaac PetscDualSpace dsp; 3889e071409bSToby Isaac 3890e071409bSToby Isaac ierr = PetscFEGetDualSpace((PetscFE)disc,&dsp);CHKERRQ(ierr); 3891e071409bSToby Isaac ierr = DMLabelGetNumValues(label,&depth);CHKERRQ(ierr); 3892e071409bSToby Isaac ierr = DMLabelGetValue(label,point,&h);CHKERRQ(ierr); 3893e071409bSToby Isaac h = depth - 1 - h; 3894e071409bSToby Isaac if (h) { 3895e071409bSToby Isaac ierr = PetscDualSpaceGetHeightSubspace(dsp,h,dspace);CHKERRQ(ierr); 3896e071409bSToby Isaac } else { 3897e071409bSToby Isaac *dspace = dsp; 3898e071409bSToby Isaac } 3899e071409bSToby Isaac } 3900e071409bSToby Isaac } 3901e071409bSToby Isaac PetscFunctionReturn(0); 3902e071409bSToby Isaac } 3903e071409bSToby Isaac 3904e071409bSToby Isaac 39051a271a75SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecGetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[]) 3906a6dfd86eSKarl Rupp { 3907552f7358SJed Brown PetscScalar *array, *vArray; 3908d9917b9dSMatthew G. Knepley const PetscInt *cone, *coneO; 39091a271a75SMatthew G. Knepley PetscInt pStart, pEnd, p, numPoints, size = 0, offset = 0; 3910552f7358SJed Brown PetscErrorCode ierr; 3911552f7358SJed Brown 39121b406b76SMatthew G. Knepley PetscFunctionBeginHot; 39132a3aaacfSMatthew G. Knepley ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 39145a1bb5cfSMatthew G. Knepley ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr); 39155a1bb5cfSMatthew G. Knepley ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr); 39165a1bb5cfSMatthew G. Knepley ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr); 39173f7cbbe7SMatthew G. Knepley if (!values || !*values) { 39189df71ca4SMatthew G. Knepley if ((point >= pStart) && (point < pEnd)) { 39199df71ca4SMatthew G. Knepley PetscInt dof; 3920d9917b9dSMatthew G. Knepley 39219df71ca4SMatthew G. Knepley ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 39229df71ca4SMatthew G. Knepley size += dof; 39239df71ca4SMatthew G. Knepley } 39249df71ca4SMatthew G. Knepley for (p = 0; p < numPoints; ++p) { 39259df71ca4SMatthew G. Knepley const PetscInt cp = cone[p]; 39262a3aaacfSMatthew G. Knepley PetscInt dof; 39275a1bb5cfSMatthew G. Knepley 39285a1bb5cfSMatthew G. Knepley if ((cp < pStart) || (cp >= pEnd)) continue; 39292a3aaacfSMatthew G. Knepley ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr); 39305a1bb5cfSMatthew G. Knepley size += dof; 39315a1bb5cfSMatthew G. Knepley } 39323f7cbbe7SMatthew G. Knepley if (!values) { 39333f7cbbe7SMatthew G. Knepley if (csize) *csize = size; 39343f7cbbe7SMatthew G. Knepley PetscFunctionReturn(0); 39353f7cbbe7SMatthew G. Knepley } 393669291d52SBarry Smith ierr = DMGetWorkArray(dm, size, MPIU_SCALAR, &array);CHKERRQ(ierr); 3937982e9ed1SMatthew G. Knepley } else { 3938982e9ed1SMatthew G. Knepley array = *values; 3939982e9ed1SMatthew G. Knepley } 39409df71ca4SMatthew G. Knepley size = 0; 39415a1bb5cfSMatthew G. Knepley ierr = VecGetArray(v, &vArray);CHKERRQ(ierr); 39429df71ca4SMatthew G. Knepley if ((point >= pStart) && (point < pEnd)) { 39439df71ca4SMatthew G. Knepley PetscInt dof, off, d; 39449df71ca4SMatthew G. Knepley PetscScalar *varr; 3945d9917b9dSMatthew G. Knepley 39469df71ca4SMatthew G. Knepley ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 39479df71ca4SMatthew G. Knepley ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr); 39489df71ca4SMatthew G. Knepley varr = &vArray[off]; 39491a271a75SMatthew G. Knepley for (d = 0; d < dof; ++d, ++offset) { 39501a271a75SMatthew G. Knepley array[offset] = varr[d]; 39519df71ca4SMatthew G. Knepley } 39529df71ca4SMatthew G. Knepley size += dof; 39539df71ca4SMatthew G. Knepley } 39549df71ca4SMatthew G. Knepley for (p = 0; p < numPoints; ++p) { 39559df71ca4SMatthew G. Knepley const PetscInt cp = cone[p]; 39569df71ca4SMatthew G. Knepley PetscInt o = coneO[p]; 39575a1bb5cfSMatthew G. Knepley PetscInt dof, off, d; 39585a1bb5cfSMatthew G. Knepley PetscScalar *varr; 39595a1bb5cfSMatthew G. Knepley 396052ed52e8SMatthew G. Knepley if ((cp < pStart) || (cp >= pEnd)) continue; 39615a1bb5cfSMatthew G. Knepley ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr); 39625a1bb5cfSMatthew G. Knepley ierr = PetscSectionGetOffset(section, cp, &off);CHKERRQ(ierr); 39635a1bb5cfSMatthew G. Knepley varr = &vArray[off]; 39645a1bb5cfSMatthew G. Knepley if (o >= 0) { 39651a271a75SMatthew G. Knepley for (d = 0; d < dof; ++d, ++offset) { 39661a271a75SMatthew G. Knepley array[offset] = varr[d]; 39675a1bb5cfSMatthew G. Knepley } 39685a1bb5cfSMatthew G. Knepley } else { 39691a271a75SMatthew G. Knepley for (d = dof-1; d >= 0; --d, ++offset) { 39701a271a75SMatthew G. Knepley array[offset] = varr[d]; 39715a1bb5cfSMatthew G. Knepley } 39725a1bb5cfSMatthew G. Knepley } 39739df71ca4SMatthew G. Knepley size += dof; 39745a1bb5cfSMatthew G. Knepley } 39755a1bb5cfSMatthew G. Knepley ierr = VecRestoreArray(v, &vArray);CHKERRQ(ierr); 39769df71ca4SMatthew G. Knepley if (!*values) { 39775a1bb5cfSMatthew G. Knepley if (csize) *csize = size; 39785a1bb5cfSMatthew G. Knepley *values = array; 39799df71ca4SMatthew G. Knepley } else { 39808ccfff9cSToby Isaac if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size); 39818c312ff3SMatthew G. Knepley *csize = size; 39829df71ca4SMatthew G. Knepley } 39835a1bb5cfSMatthew G. Knepley PetscFunctionReturn(0); 39845a1bb5cfSMatthew G. Knepley } 3985d9917b9dSMatthew G. Knepley 3986923c78e0SToby Isaac static PetscErrorCode DMPlexGetCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp) 3987923c78e0SToby Isaac { 3988923c78e0SToby Isaac const PetscInt *cla; 3989923c78e0SToby Isaac PetscInt np, *pts = NULL; 3990923c78e0SToby Isaac PetscErrorCode ierr; 3991923c78e0SToby Isaac 3992923c78e0SToby Isaac PetscFunctionBeginHot; 3993923c78e0SToby Isaac ierr = PetscSectionGetClosureIndex(section, (PetscObject) dm, clSec, clPoints);CHKERRQ(ierr); 3994923c78e0SToby Isaac if (!*clPoints) { 3995923c78e0SToby Isaac PetscInt pStart, pEnd, p, q; 3996923c78e0SToby Isaac 3997923c78e0SToby Isaac ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 3998923c78e0SToby Isaac ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_TRUE, &np, &pts);CHKERRQ(ierr); 3999923c78e0SToby Isaac /* Compress out points not in the section */ 4000923c78e0SToby Isaac for (p = 0, q = 0; p < np; p++) { 4001923c78e0SToby Isaac PetscInt r = pts[2*p]; 4002923c78e0SToby Isaac if ((r >= pStart) && (r < pEnd)) { 4003923c78e0SToby Isaac pts[q*2] = r; 4004923c78e0SToby Isaac pts[q*2+1] = pts[2*p+1]; 4005923c78e0SToby Isaac ++q; 4006923c78e0SToby Isaac } 4007923c78e0SToby Isaac } 4008923c78e0SToby Isaac np = q; 4009923c78e0SToby Isaac cla = NULL; 4010923c78e0SToby Isaac } else { 4011923c78e0SToby Isaac PetscInt dof, off; 4012923c78e0SToby Isaac 4013923c78e0SToby Isaac ierr = PetscSectionGetDof(*clSec, point, &dof);CHKERRQ(ierr); 4014923c78e0SToby Isaac ierr = PetscSectionGetOffset(*clSec, point, &off);CHKERRQ(ierr); 4015923c78e0SToby Isaac ierr = ISGetIndices(*clPoints, &cla);CHKERRQ(ierr); 4016923c78e0SToby Isaac np = dof/2; 4017923c78e0SToby Isaac pts = (PetscInt *) &cla[off]; 4018923c78e0SToby Isaac } 4019923c78e0SToby Isaac *numPoints = np; 4020923c78e0SToby Isaac *points = pts; 4021923c78e0SToby Isaac *clp = cla; 4022923c78e0SToby Isaac 4023923c78e0SToby Isaac PetscFunctionReturn(0); 4024923c78e0SToby Isaac } 4025923c78e0SToby Isaac 4026923c78e0SToby Isaac static PetscErrorCode DMPlexRestoreCompressedClosure(DM dm, PetscSection section, PetscInt point, PetscInt *numPoints, PetscInt **points, PetscSection *clSec, IS *clPoints, const PetscInt **clp) 4027923c78e0SToby Isaac { 4028923c78e0SToby Isaac PetscErrorCode ierr; 4029923c78e0SToby Isaac 4030923c78e0SToby Isaac PetscFunctionBeginHot; 4031923c78e0SToby Isaac if (!*clPoints) { 4032923c78e0SToby Isaac ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_TRUE, numPoints, points);CHKERRQ(ierr); 4033923c78e0SToby Isaac } else { 4034923c78e0SToby Isaac ierr = ISRestoreIndices(*clPoints, clp);CHKERRQ(ierr); 4035923c78e0SToby Isaac } 4036923c78e0SToby Isaac *numPoints = 0; 4037923c78e0SToby Isaac *points = NULL; 4038923c78e0SToby Isaac *clSec = NULL; 4039923c78e0SToby Isaac *clPoints = NULL; 4040923c78e0SToby Isaac *clp = NULL; 4041923c78e0SToby Isaac PetscFunctionReturn(0); 4042923c78e0SToby Isaac } 4043923c78e0SToby Isaac 404497e99dd9SToby 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[]) 40451a271a75SMatthew G. Knepley { 40461a271a75SMatthew G. Knepley PetscInt offset = 0, p; 404797e99dd9SToby Isaac const PetscInt **perms = NULL; 404897e99dd9SToby Isaac const PetscScalar **flips = NULL; 40491a271a75SMatthew G. Knepley PetscErrorCode ierr; 40501a271a75SMatthew G. Knepley 40511a271a75SMatthew G. Knepley PetscFunctionBeginHot; 4052fe02ba77SJed Brown *size = 0; 405397e99dd9SToby Isaac ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr); 405497e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 405597e99dd9SToby Isaac const PetscInt point = points[2*p]; 405697e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 405797e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 40581a271a75SMatthew G. Knepley PetscInt dof, off, d; 40591a271a75SMatthew G. Knepley const PetscScalar *varr; 40601a271a75SMatthew G. Knepley 40611a271a75SMatthew G. Knepley ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 40621a271a75SMatthew G. Knepley ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr); 40631a271a75SMatthew G. Knepley varr = &vArray[off]; 406497e99dd9SToby Isaac if (clperm) { 406597e99dd9SToby Isaac if (perm) { 406697e99dd9SToby Isaac for (d = 0; d < dof; d++) array[clperm[offset + perm[d]]] = varr[d]; 40671a271a75SMatthew G. Knepley } else { 406897e99dd9SToby Isaac for (d = 0; d < dof; d++) array[clperm[offset + d ]] = varr[d]; 406997e99dd9SToby Isaac } 407097e99dd9SToby Isaac if (flip) { 407197e99dd9SToby Isaac for (d = 0; d < dof; d++) array[clperm[offset + d ]] *= flip[d]; 407297e99dd9SToby Isaac } 407397e99dd9SToby Isaac } else { 407497e99dd9SToby Isaac if (perm) { 407597e99dd9SToby Isaac for (d = 0; d < dof; d++) array[offset + perm[d]] = varr[d]; 407697e99dd9SToby Isaac } else { 407797e99dd9SToby Isaac for (d = 0; d < dof; d++) array[offset + d ] = varr[d]; 407897e99dd9SToby Isaac } 407997e99dd9SToby Isaac if (flip) { 408097e99dd9SToby Isaac for (d = 0; d < dof; d++) array[offset + d ] *= flip[d]; 40811a271a75SMatthew G. Knepley } 40821a271a75SMatthew G. Knepley } 408397e99dd9SToby Isaac offset += dof; 408497e99dd9SToby Isaac } 408597e99dd9SToby Isaac ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr); 40861a271a75SMatthew G. Knepley *size = offset; 40871a271a75SMatthew G. Knepley PetscFunctionReturn(0); 40881a271a75SMatthew G. Knepley } 40891a271a75SMatthew G. Knepley 409097e99dd9SToby 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[]) 40911a271a75SMatthew G. Knepley { 40921a271a75SMatthew G. Knepley PetscInt offset = 0, f; 40931a271a75SMatthew G. Knepley PetscErrorCode ierr; 40941a271a75SMatthew G. Knepley 40951a271a75SMatthew G. Knepley PetscFunctionBeginHot; 4096fe02ba77SJed Brown *size = 0; 40971a271a75SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 409897e99dd9SToby Isaac PetscInt p; 409997e99dd9SToby Isaac const PetscInt **perms = NULL; 410097e99dd9SToby Isaac const PetscScalar **flips = NULL; 41011a271a75SMatthew G. Knepley 410297e99dd9SToby Isaac ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 410397e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 410497e99dd9SToby Isaac const PetscInt point = points[2*p]; 410597e99dd9SToby Isaac PetscInt fdof, foff, b; 41061a271a75SMatthew G. Knepley const PetscScalar *varr; 410797e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 410897e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 41091a271a75SMatthew G. Knepley 41101a271a75SMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr); 41111a271a75SMatthew G. Knepley ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr); 41121a271a75SMatthew G. Knepley varr = &vArray[foff]; 411397e99dd9SToby Isaac if (clperm) { 411497e99dd9SToby Isaac if (perm) {for (b = 0; b < fdof; b++) {array[clperm[offset + perm[b]]] = varr[b];}} 411597e99dd9SToby Isaac else {for (b = 0; b < fdof; b++) {array[clperm[offset + b ]] = varr[b];}} 411697e99dd9SToby Isaac if (flip) {for (b = 0; b < fdof; b++) {array[clperm[offset + b ]] *= flip[b];}} 41171a271a75SMatthew G. Knepley } else { 411897e99dd9SToby Isaac if (perm) {for (b = 0; b < fdof; b++) {array[offset + perm[b]] = varr[b];}} 411997e99dd9SToby Isaac else {for (b = 0; b < fdof; b++) {array[offset + b ] = varr[b];}} 412097e99dd9SToby Isaac if (flip) {for (b = 0; b < fdof; b++) {array[offset + b ] *= flip[b];}} 41211a271a75SMatthew G. Knepley } 412297e99dd9SToby Isaac offset += fdof; 41231a271a75SMatthew G. Knepley } 412497e99dd9SToby Isaac ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 41251a271a75SMatthew G. Knepley } 41261a271a75SMatthew G. Knepley *size = offset; 41271a271a75SMatthew G. Knepley PetscFunctionReturn(0); 41281a271a75SMatthew G. Knepley } 41291a271a75SMatthew G. Knepley 4130552f7358SJed Brown /*@C 4131552f7358SJed Brown DMPlexVecGetClosure - Get an array of the values on the closure of 'point' 4132552f7358SJed Brown 4133552f7358SJed Brown Not collective 4134552f7358SJed Brown 4135552f7358SJed Brown Input Parameters: 4136552f7358SJed Brown + dm - The DM 4137552f7358SJed Brown . section - The section describing the layout in v, or NULL to use the default section 4138552f7358SJed Brown . v - The local vector 413922c1ee49SMatthew G. Knepley . point - The point in the DM 414022c1ee49SMatthew G. Knepley . csize - The size of the input values array, or NULL 414122c1ee49SMatthew G. Knepley - values - An array to use for the values, or NULL to have it allocated automatically 4142552f7358SJed Brown 4143552f7358SJed Brown Output Parameters: 414422c1ee49SMatthew G. Knepley + csize - The number of values in the closure 414522c1ee49SMatthew G. Knepley - values - The array of values. If the user provided NULL, it is a borrowed array and should not be freed 414622c1ee49SMatthew G. Knepley 414722c1ee49SMatthew G. Knepley $ Note that DMPlexVecGetClosure/DMPlexVecRestoreClosure only allocates the values array if it set to NULL in the 414822c1ee49SMatthew G. Knepley $ calling function. This is because DMPlexVecGetClosure() is typically called in the inner loop of a Vec or Mat 414922c1ee49SMatthew G. Knepley $ assembly function, and a user may already have allocated storage for this operation. 415022c1ee49SMatthew G. Knepley $ 415122c1ee49SMatthew G. Knepley $ A typical use could be 415222c1ee49SMatthew G. Knepley $ 415322c1ee49SMatthew G. Knepley $ values = NULL; 415422c1ee49SMatthew G. Knepley $ ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr); 415522c1ee49SMatthew G. Knepley $ for (cl = 0; cl < clSize; ++cl) { 415622c1ee49SMatthew G. Knepley $ <Compute on closure> 415722c1ee49SMatthew G. Knepley $ } 415822c1ee49SMatthew G. Knepley $ ierr = DMPlexVecRestoreClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr); 415922c1ee49SMatthew G. Knepley $ 416022c1ee49SMatthew G. Knepley $ or 416122c1ee49SMatthew G. Knepley $ 416222c1ee49SMatthew G. Knepley $ PetscMalloc1(clMaxSize, &values); 416322c1ee49SMatthew G. Knepley $ for (p = pStart; p < pEnd; ++p) { 416422c1ee49SMatthew G. Knepley $ clSize = clMaxSize; 416522c1ee49SMatthew G. Knepley $ ierr = DMPlexVecGetClosure(dm, NULL, v, p, &clSize, &values);CHKERRQ(ierr); 416622c1ee49SMatthew G. Knepley $ for (cl = 0; cl < clSize; ++cl) { 416722c1ee49SMatthew G. Knepley $ <Compute on closure> 416822c1ee49SMatthew G. Knepley $ } 416922c1ee49SMatthew G. Knepley $ } 417022c1ee49SMatthew G. Knepley $ PetscFree(values); 4171552f7358SJed Brown 4172552f7358SJed Brown Fortran Notes: 4173552f7358SJed Brown Since it returns an array, this routine is only available in Fortran 90, and you must 4174552f7358SJed Brown include petsc.h90 in your code. 4175552f7358SJed Brown 4176552f7358SJed Brown The csize argument is not present in the Fortran 90 binding since it is internal to the array. 4177552f7358SJed Brown 4178552f7358SJed Brown Level: intermediate 4179552f7358SJed Brown 4180552f7358SJed Brown .seealso DMPlexVecRestoreClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure() 4181552f7358SJed Brown @*/ 4182552f7358SJed Brown PetscErrorCode DMPlexVecGetClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[]) 4183552f7358SJed Brown { 4184552f7358SJed Brown PetscSection clSection; 4185d9917b9dSMatthew G. Knepley IS clPoints; 41868a84db2dSMatthew G. Knepley PetscScalar *array; 41878a84db2dSMatthew G. Knepley const PetscScalar *vArray; 4188552f7358SJed Brown PetscInt *points = NULL; 41898f3be42fSMatthew G. Knepley const PetscInt *clp, *perm; 41901a271a75SMatthew G. Knepley PetscInt depth, numFields, numPoints, size; 4191552f7358SJed Brown PetscErrorCode ierr; 4192552f7358SJed Brown 4193d9917b9dSMatthew G. Knepley PetscFunctionBeginHot; 4194552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4195e87a4003SBarry Smith if (!section) {ierr = DMGetSection(dm, §ion);CHKERRQ(ierr);} 41961a271a75SMatthew G. Knepley PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 41971a271a75SMatthew G. Knepley PetscValidHeaderSpecific(v, VEC_CLASSID, 3); 4198552f7358SJed Brown ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 4199552f7358SJed Brown ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 4200552f7358SJed Brown if (depth == 1 && numFields < 2) { 42011a271a75SMatthew G. Knepley ierr = DMPlexVecGetClosure_Depth1_Static(dm, section, v, point, csize, values);CHKERRQ(ierr); 4202552f7358SJed Brown PetscFunctionReturn(0); 4203552f7358SJed Brown } 42041a271a75SMatthew G. Knepley /* Get points */ 4205923c78e0SToby Isaac ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 42061fdd32a2SMatthew G. Knepley ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &perm);CHKERRQ(ierr); 42071a271a75SMatthew G. Knepley /* Get array */ 4208bd6c0d32SMatthew G. Knepley if (!values || !*values) { 42091a271a75SMatthew G. Knepley PetscInt asize = 0, dof, p; 4210552f7358SJed Brown 42111a271a75SMatthew G. Knepley for (p = 0; p < numPoints*2; p += 2) { 4212552f7358SJed Brown ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr); 42131a271a75SMatthew G. Knepley asize += dof; 4214552f7358SJed Brown } 4215bd6c0d32SMatthew G. Knepley if (!values) { 4216923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 42171a271a75SMatthew G. Knepley if (csize) *csize = asize; 4218bd6c0d32SMatthew G. Knepley PetscFunctionReturn(0); 4219bd6c0d32SMatthew G. Knepley } 422069291d52SBarry Smith ierr = DMGetWorkArray(dm, asize, MPIU_SCALAR, &array);CHKERRQ(ierr); 4221d0f6b257SMatthew G. Knepley } else { 4222d0f6b257SMatthew G. Knepley array = *values; 4223d0f6b257SMatthew G. Knepley } 42248a84db2dSMatthew G. Knepley ierr = VecGetArrayRead(v, &vArray);CHKERRQ(ierr); 42251a271a75SMatthew G. Knepley /* Get values */ 422697e99dd9SToby Isaac if (numFields > 0) {ierr = DMPlexVecGetClosure_Fields_Static(dm, section, numPoints, points, numFields, perm, vArray, &size, array);CHKERRQ(ierr);} 422797e99dd9SToby Isaac else {ierr = DMPlexVecGetClosure_Static(dm, section, numPoints, points, perm, vArray, &size, array);CHKERRQ(ierr);} 42281a271a75SMatthew G. Knepley /* Cleanup points */ 4229923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 42301a271a75SMatthew G. Knepley /* Cleanup array */ 42318a84db2dSMatthew G. Knepley ierr = VecRestoreArrayRead(v, &vArray);CHKERRQ(ierr); 4232d0f6b257SMatthew G. Knepley if (!*values) { 4233552f7358SJed Brown if (csize) *csize = size; 4234552f7358SJed Brown *values = array; 4235d0f6b257SMatthew G. Knepley } else { 4236f347f43bSBarry Smith if (size > *csize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Size of input array %D < actual size %D", *csize, size); 4237d0f6b257SMatthew G. Knepley *csize = size; 4238d0f6b257SMatthew G. Knepley } 4239552f7358SJed Brown PetscFunctionReturn(0); 4240552f7358SJed Brown } 4241552f7358SJed Brown 4242552f7358SJed Brown /*@C 4243552f7358SJed Brown DMPlexVecRestoreClosure - Restore the array of the values on the closure of 'point' 4244552f7358SJed Brown 4245552f7358SJed Brown Not collective 4246552f7358SJed Brown 4247552f7358SJed Brown Input Parameters: 4248552f7358SJed Brown + dm - The DM 42490298fd71SBarry Smith . section - The section describing the layout in v, or NULL to use the default section 4250552f7358SJed Brown . v - The local vector 4251eaf898f9SPatrick Sanan . point - The point in the DM 42520298fd71SBarry Smith . csize - The number of values in the closure, or NULL 4253552f7358SJed Brown - values - The array of values, which is a borrowed array and should not be freed 4254552f7358SJed Brown 425522c1ee49SMatthew 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() 425622c1ee49SMatthew G. Knepley 42573813dfbdSMatthew G Knepley Fortran Notes: 42583813dfbdSMatthew G Knepley Since it returns an array, this routine is only available in Fortran 90, and you must 42593813dfbdSMatthew G Knepley include petsc.h90 in your code. 42603813dfbdSMatthew G Knepley 42613813dfbdSMatthew G Knepley The csize argument is not present in the Fortran 90 binding since it is internal to the array. 42623813dfbdSMatthew G Knepley 4263552f7358SJed Brown Level: intermediate 4264552f7358SJed Brown 4265552f7358SJed Brown .seealso DMPlexVecGetClosure(), DMPlexVecSetClosure(), DMPlexMatSetClosure() 4266552f7358SJed Brown @*/ 42677c1f9639SMatthew G Knepley PetscErrorCode DMPlexVecRestoreClosure(DM dm, PetscSection section, Vec v, PetscInt point, PetscInt *csize, PetscScalar *values[]) 4268a6dfd86eSKarl Rupp { 4269552f7358SJed Brown PetscInt size = 0; 4270552f7358SJed Brown PetscErrorCode ierr; 4271552f7358SJed Brown 4272552f7358SJed Brown PetscFunctionBegin; 4273552f7358SJed Brown /* Should work without recalculating size */ 427469291d52SBarry Smith ierr = DMRestoreWorkArray(dm, size, MPIU_SCALAR, (void*) values);CHKERRQ(ierr); 4275c9fdaa05SMatthew G. Knepley *values = NULL; 4276552f7358SJed Brown PetscFunctionReturn(0); 4277552f7358SJed Brown } 4278552f7358SJed Brown 4279552f7358SJed Brown PETSC_STATIC_INLINE void add (PetscScalar *x, PetscScalar y) {*x += y;} 4280552f7358SJed Brown PETSC_STATIC_INLINE void insert(PetscScalar *x, PetscScalar y) {*x = y;} 4281552f7358SJed Brown 428297e99dd9SToby 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[]) 4283552f7358SJed Brown { 4284552f7358SJed Brown PetscInt cdof; /* The number of constraints on this point */ 4285552f7358SJed Brown const PetscInt *cdofs; /* The indices of the constrained dofs on this point */ 4286552f7358SJed Brown PetscScalar *a; 4287552f7358SJed Brown PetscInt off, cind = 0, k; 4288552f7358SJed Brown PetscErrorCode ierr; 4289552f7358SJed Brown 4290552f7358SJed Brown PetscFunctionBegin; 4291552f7358SJed Brown ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr); 4292552f7358SJed Brown ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr); 4293552f7358SJed Brown a = &array[off]; 4294552f7358SJed Brown if (!cdof || setBC) { 429597e99dd9SToby Isaac if (clperm) { 429697e99dd9SToby Isaac if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.));}} 429797e99dd9SToby Isaac else {for (k = 0; k < dof; ++k) {fuse(&a[k], values[clperm[offset+ k ]] * (flip ? flip[ k ] : 1.));}} 4298552f7358SJed Brown } else { 429997e99dd9SToby Isaac if (perm) {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.));}} 430097e99dd9SToby Isaac else {for (k = 0; k < dof; ++k) {fuse(&a[k], values[offset+ k ] * (flip ? flip[ k ] : 1.));}} 4301552f7358SJed Brown } 4302552f7358SJed Brown } else { 4303552f7358SJed Brown ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr); 430497e99dd9SToby Isaac if (clperm) { 430597e99dd9SToby Isaac if (perm) {for (k = 0; k < dof; ++k) { 4306552f7358SJed Brown if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 430797e99dd9SToby Isaac fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.)); 4308552f7358SJed Brown } 4309552f7358SJed Brown } else { 4310552f7358SJed Brown for (k = 0; k < dof; ++k) { 4311552f7358SJed Brown if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 431297e99dd9SToby Isaac fuse(&a[k], values[clperm[offset+ k ]] * (flip ? flip[ k ] : 1.)); 431397e99dd9SToby Isaac } 431497e99dd9SToby Isaac } 431597e99dd9SToby Isaac } else { 431697e99dd9SToby Isaac if (perm) { 431797e99dd9SToby Isaac for (k = 0; k < dof; ++k) { 431897e99dd9SToby Isaac if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 431997e99dd9SToby Isaac fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.)); 432097e99dd9SToby Isaac } 432197e99dd9SToby Isaac } else { 432297e99dd9SToby Isaac for (k = 0; k < dof; ++k) { 432397e99dd9SToby Isaac if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 432497e99dd9SToby Isaac fuse(&a[k], values[offset+ k ] * (flip ? flip[ k ] : 1.)); 432597e99dd9SToby Isaac } 4326552f7358SJed Brown } 4327552f7358SJed Brown } 4328552f7358SJed Brown } 4329552f7358SJed Brown PetscFunctionReturn(0); 4330552f7358SJed Brown } 4331552f7358SJed Brown 433297e99dd9SToby 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[]) 4333a5e93ea8SMatthew G. Knepley { 4334a5e93ea8SMatthew G. Knepley PetscInt cdof; /* The number of constraints on this point */ 4335a5e93ea8SMatthew G. Knepley const PetscInt *cdofs; /* The indices of the constrained dofs on this point */ 4336a5e93ea8SMatthew G. Knepley PetscScalar *a; 4337a5e93ea8SMatthew G. Knepley PetscInt off, cind = 0, k; 4338a5e93ea8SMatthew G. Knepley PetscErrorCode ierr; 4339a5e93ea8SMatthew G. Knepley 4340a5e93ea8SMatthew G. Knepley PetscFunctionBegin; 4341a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr); 4342a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetOffset(section, point, &off);CHKERRQ(ierr); 4343a5e93ea8SMatthew G. Knepley a = &array[off]; 4344a5e93ea8SMatthew G. Knepley if (cdof) { 4345a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr); 434697e99dd9SToby Isaac if (clperm) { 434797e99dd9SToby Isaac if (perm) { 4348a5e93ea8SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4349a5e93ea8SMatthew G. Knepley if ((cind < cdof) && (k == cdofs[cind])) { 435097e99dd9SToby Isaac fuse(&a[k], values[clperm[offset+perm[k]]] * (flip ? flip[perm[k]] : 1.)); 435197e99dd9SToby Isaac cind++; 4352a5e93ea8SMatthew G. Knepley } 4353a5e93ea8SMatthew G. Knepley } 4354a5e93ea8SMatthew G. Knepley } else { 4355a5e93ea8SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4356a5e93ea8SMatthew G. Knepley if ((cind < cdof) && (k == cdofs[cind])) { 435797e99dd9SToby Isaac fuse(&a[k], values[clperm[offset+ k ]] * (flip ? flip[ k ] : 1.)); 435897e99dd9SToby Isaac cind++; 435997e99dd9SToby Isaac } 436097e99dd9SToby Isaac } 436197e99dd9SToby Isaac } 436297e99dd9SToby Isaac } else { 436397e99dd9SToby Isaac if (perm) { 436497e99dd9SToby Isaac for (k = 0; k < dof; ++k) { 436597e99dd9SToby Isaac if ((cind < cdof) && (k == cdofs[cind])) { 436697e99dd9SToby Isaac fuse(&a[k], values[offset+perm[k]] * (flip ? flip[perm[k]] : 1.)); 436797e99dd9SToby Isaac cind++; 436897e99dd9SToby Isaac } 436997e99dd9SToby Isaac } 437097e99dd9SToby Isaac } else { 437197e99dd9SToby Isaac for (k = 0; k < dof; ++k) { 437297e99dd9SToby Isaac if ((cind < cdof) && (k == cdofs[cind])) { 437397e99dd9SToby Isaac fuse(&a[k], values[offset+ k ] * (flip ? flip[ k ] : 1.)); 437497e99dd9SToby Isaac cind++; 437597e99dd9SToby Isaac } 4376a5e93ea8SMatthew G. Knepley } 4377a5e93ea8SMatthew G. Knepley } 4378a5e93ea8SMatthew G. Knepley } 4379a5e93ea8SMatthew G. Knepley } 4380a5e93ea8SMatthew G. Knepley PetscFunctionReturn(0); 4381a5e93ea8SMatthew G. Knepley } 4382a5e93ea8SMatthew G. Knepley 438397e99dd9SToby 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[]) 4384a6dfd86eSKarl Rupp { 4385552f7358SJed Brown PetscScalar *a; 43861a271a75SMatthew G. Knepley PetscInt fdof, foff, fcdof, foffset = *offset; 43871a271a75SMatthew G. Knepley const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */ 438897e99dd9SToby Isaac PetscInt cind = 0, b; 4389552f7358SJed Brown PetscErrorCode ierr; 4390552f7358SJed Brown 4391552f7358SJed Brown PetscFunctionBegin; 4392552f7358SJed Brown ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr); 4393552f7358SJed Brown ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr); 43941a271a75SMatthew G. Knepley ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr); 43951a271a75SMatthew G. Knepley a = &array[foff]; 4396552f7358SJed Brown if (!fcdof || setBC) { 439797e99dd9SToby Isaac if (clperm) { 439897e99dd9SToby Isaac if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));}} 439997e99dd9SToby Isaac else {for (b = 0; b < fdof; b++) {fuse(&a[b], values[clperm[foffset+ b ]] * (flip ? flip[ b ] : 1.));}} 4400552f7358SJed Brown } else { 440197e99dd9SToby Isaac if (perm) {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));}} 440297e99dd9SToby Isaac else {for (b = 0; b < fdof; b++) {fuse(&a[b], values[foffset+ b ] * (flip ? flip[ b ] : 1.));}} 4403552f7358SJed Brown } 4404552f7358SJed Brown } else { 4405552f7358SJed Brown ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr); 440697e99dd9SToby Isaac if (clperm) { 440797e99dd9SToby Isaac if (perm) { 440897e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 440997e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;} 441097e99dd9SToby Isaac fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.)); 4411552f7358SJed Brown } 4412552f7358SJed Brown } else { 441397e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 441497e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;} 441597e99dd9SToby Isaac fuse(&a[b], values[clperm[foffset+ b ]] * (flip ? flip[ b ] : 1.)); 441697e99dd9SToby Isaac } 441797e99dd9SToby Isaac } 441897e99dd9SToby Isaac } else { 441997e99dd9SToby Isaac if (perm) { 442097e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 442197e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;} 442297e99dd9SToby Isaac fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.)); 442397e99dd9SToby Isaac } 442497e99dd9SToby Isaac } else { 442597e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 442697e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; continue;} 442797e99dd9SToby Isaac fuse(&a[b], values[foffset+ b ] * (flip ? flip[ b ] : 1.)); 4428552f7358SJed Brown } 4429552f7358SJed Brown } 4430552f7358SJed Brown } 4431552f7358SJed Brown } 44321a271a75SMatthew G. Knepley *offset += fdof; 4433552f7358SJed Brown PetscFunctionReturn(0); 4434552f7358SJed Brown } 4435552f7358SJed Brown 4436ba322698SMatthew 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[]) 4437a5e93ea8SMatthew G. Knepley { 4438a5e93ea8SMatthew G. Knepley PetscScalar *a; 44391a271a75SMatthew G. Knepley PetscInt fdof, foff, fcdof, foffset = *offset; 44401a271a75SMatthew G. Knepley const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */ 4441ba322698SMatthew G. Knepley PetscInt cind = 0, ncind = 0, b; 4442ba322698SMatthew G. Knepley PetscBool ncSet, fcSet; 4443a5e93ea8SMatthew G. Knepley PetscErrorCode ierr; 4444a5e93ea8SMatthew G. Knepley 4445a5e93ea8SMatthew G. Knepley PetscFunctionBegin; 4446a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr); 4447a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetFieldConstraintDof(section, point, f, &fcdof);CHKERRQ(ierr); 44481a271a75SMatthew G. Knepley ierr = PetscSectionGetFieldOffset(section, point, f, &foff);CHKERRQ(ierr); 44491a271a75SMatthew G. Knepley a = &array[foff]; 4450a5e93ea8SMatthew G. Knepley if (fcdof) { 4451ba322698SMatthew G. Knepley /* We just override fcdof and fcdofs with Ncc and comps */ 4452a5e93ea8SMatthew G. Knepley ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr); 445397e99dd9SToby Isaac if (clperm) { 445497e99dd9SToby Isaac if (perm) { 4455ba322698SMatthew G. Knepley if (comps) { 4456ba322698SMatthew G. Knepley for (b = 0; b < fdof; b++) { 4457ba322698SMatthew G. Knepley ncSet = fcSet = PETSC_FALSE; 4458ba322698SMatthew G. Knepley if ((ncind < Ncc) && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;} 4459ba322698SMatthew G. Knepley if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; fcSet = PETSC_TRUE;} 4460ba322698SMatthew G. Knepley if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.));} 4461ba322698SMatthew G. Knepley } 4462ba322698SMatthew G. Knepley } else { 446397e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 446497e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) { 446597e99dd9SToby Isaac fuse(&a[b], values[clperm[foffset+perm[b]]] * (flip ? flip[perm[b]] : 1.)); 4466a5e93ea8SMatthew G. Knepley ++cind; 4467a5e93ea8SMatthew G. Knepley } 4468a5e93ea8SMatthew G. Knepley } 4469ba322698SMatthew G. Knepley } 4470ba322698SMatthew G. Knepley } else { 4471ba322698SMatthew G. Knepley if (comps) { 4472ba322698SMatthew G. Knepley for (b = 0; b < fdof; b++) { 4473ba322698SMatthew G. Knepley ncSet = fcSet = PETSC_FALSE; 4474ba322698SMatthew G. Knepley if ((ncind < Ncc) && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;} 4475ba322698SMatthew G. Knepley if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; fcSet = PETSC_TRUE;} 4476ba322698SMatthew G. Knepley if (ncSet && fcSet) {fuse(&a[b], values[clperm[foffset+ b ]] * (flip ? flip[ b ] : 1.));} 4477ba322698SMatthew G. Knepley } 4478a5e93ea8SMatthew G. Knepley } else { 447997e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 448097e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) { 448197e99dd9SToby Isaac fuse(&a[b], values[clperm[foffset+ b ]] * (flip ? flip[ b ] : 1.)); 448297e99dd9SToby Isaac ++cind; 448397e99dd9SToby Isaac } 448497e99dd9SToby Isaac } 448597e99dd9SToby Isaac } 4486ba322698SMatthew G. Knepley } 448797e99dd9SToby Isaac } else { 448897e99dd9SToby Isaac if (perm) { 4489ba322698SMatthew G. Knepley if (comps) { 4490ba322698SMatthew G. Knepley for (b = 0; b < fdof; b++) { 4491ba322698SMatthew G. Knepley ncSet = fcSet = PETSC_FALSE; 4492ba322698SMatthew G. Knepley if ((ncind < Ncc) && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;} 4493ba322698SMatthew G. Knepley if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; fcSet = PETSC_TRUE;} 4494ba322698SMatthew G. Knepley if (ncSet && fcSet) {fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.));} 4495ba322698SMatthew G. Knepley } 4496ba322698SMatthew G. Knepley } else { 449797e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 449897e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) { 449997e99dd9SToby Isaac fuse(&a[b], values[foffset+perm[b]] * (flip ? flip[perm[b]] : 1.)); 450097e99dd9SToby Isaac ++cind; 450197e99dd9SToby Isaac } 450297e99dd9SToby Isaac } 4503ba322698SMatthew G. Knepley } 4504ba322698SMatthew G. Knepley } else { 4505ba322698SMatthew G. Knepley if (comps) { 4506ba322698SMatthew G. Knepley for (b = 0; b < fdof; b++) { 4507ba322698SMatthew G. Knepley ncSet = fcSet = PETSC_FALSE; 4508ba322698SMatthew G. Knepley if ((ncind < Ncc) && (b == comps[ncind])) {++ncind; ncSet = PETSC_TRUE;} 4509ba322698SMatthew G. Knepley if ((cind < fcdof) && (b == fcdofs[cind])) {++cind; fcSet = PETSC_TRUE;} 4510ba322698SMatthew G. Knepley if (ncSet && fcSet) {fuse(&a[b], values[foffset+ b ] * (flip ? flip[ b ] : 1.));} 4511ba322698SMatthew G. Knepley } 451297e99dd9SToby Isaac } else { 451397e99dd9SToby Isaac for (b = 0; b < fdof; b++) { 451497e99dd9SToby Isaac if ((cind < fcdof) && (b == fcdofs[cind])) { 451597e99dd9SToby Isaac fuse(&a[b], values[foffset+ b ] * (flip ? flip[ b ] : 1.)); 4516a5e93ea8SMatthew G. Knepley ++cind; 4517a5e93ea8SMatthew G. Knepley } 4518a5e93ea8SMatthew G. Knepley } 4519a5e93ea8SMatthew G. Knepley } 4520a5e93ea8SMatthew G. Knepley } 4521a5e93ea8SMatthew G. Knepley } 4522ba322698SMatthew G. Knepley } 45231a271a75SMatthew G. Knepley *offset += fdof; 4524a5e93ea8SMatthew G. Knepley PetscFunctionReturn(0); 4525a5e93ea8SMatthew G. Knepley } 4526a5e93ea8SMatthew G. Knepley 45278f3be42fSMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode DMPlexVecSetClosure_Depth1_Static(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode) 4528a6dfd86eSKarl Rupp { 4529552f7358SJed Brown PetscScalar *array; 45301b406b76SMatthew G. Knepley const PetscInt *cone, *coneO; 45311b406b76SMatthew G. Knepley PetscInt pStart, pEnd, p, numPoints, off, dof; 4532552f7358SJed Brown PetscErrorCode ierr; 4533552f7358SJed Brown 45341b406b76SMatthew G. Knepley PetscFunctionBeginHot; 4535b6ebb6e6SMatthew G. Knepley ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 4536b6ebb6e6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, point, &numPoints);CHKERRQ(ierr); 4537b6ebb6e6SMatthew G. Knepley ierr = DMPlexGetCone(dm, point, &cone);CHKERRQ(ierr); 4538b6ebb6e6SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dm, point, &coneO);CHKERRQ(ierr); 4539b6ebb6e6SMatthew G. Knepley ierr = VecGetArray(v, &array);CHKERRQ(ierr); 4540b6ebb6e6SMatthew G. Knepley for (p = 0, off = 0; p <= numPoints; ++p, off += dof) { 4541b6ebb6e6SMatthew G. Knepley const PetscInt cp = !p ? point : cone[p-1]; 4542b6ebb6e6SMatthew G. Knepley const PetscInt o = !p ? 0 : coneO[p-1]; 4543b6ebb6e6SMatthew G. Knepley 4544b6ebb6e6SMatthew G. Knepley if ((cp < pStart) || (cp >= pEnd)) {dof = 0; continue;} 4545b6ebb6e6SMatthew G. Knepley ierr = PetscSectionGetDof(section, cp, &dof);CHKERRQ(ierr); 4546b6ebb6e6SMatthew G. Knepley /* ADD_VALUES */ 4547b6ebb6e6SMatthew G. Knepley { 4548b6ebb6e6SMatthew G. Knepley const PetscInt *cdofs; /* The indices of the constrained dofs on this point */ 4549b6ebb6e6SMatthew G. Knepley PetscScalar *a; 4550b6ebb6e6SMatthew G. Knepley PetscInt cdof, coff, cind = 0, k; 4551b6ebb6e6SMatthew G. Knepley 4552b6ebb6e6SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(section, cp, &cdof);CHKERRQ(ierr); 4553b6ebb6e6SMatthew G. Knepley ierr = PetscSectionGetOffset(section, cp, &coff);CHKERRQ(ierr); 4554b6ebb6e6SMatthew G. Knepley a = &array[coff]; 4555b6ebb6e6SMatthew G. Knepley if (!cdof) { 4556b6ebb6e6SMatthew G. Knepley if (o >= 0) { 4557b6ebb6e6SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4558b6ebb6e6SMatthew G. Knepley a[k] += values[off+k]; 4559b6ebb6e6SMatthew G. Knepley } 4560b6ebb6e6SMatthew G. Knepley } else { 4561b6ebb6e6SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4562b6ebb6e6SMatthew G. Knepley a[k] += values[off+dof-k-1]; 4563b6ebb6e6SMatthew G. Knepley } 4564b6ebb6e6SMatthew G. Knepley } 4565b6ebb6e6SMatthew G. Knepley } else { 4566b6ebb6e6SMatthew G. Knepley ierr = PetscSectionGetConstraintIndices(section, cp, &cdofs);CHKERRQ(ierr); 4567b6ebb6e6SMatthew G. Knepley if (o >= 0) { 4568b6ebb6e6SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4569b6ebb6e6SMatthew G. Knepley if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 4570b6ebb6e6SMatthew G. Knepley a[k] += values[off+k]; 4571b6ebb6e6SMatthew G. Knepley } 4572b6ebb6e6SMatthew G. Knepley } else { 4573b6ebb6e6SMatthew G. Knepley for (k = 0; k < dof; ++k) { 4574b6ebb6e6SMatthew G. Knepley if ((cind < cdof) && (k == cdofs[cind])) {++cind; continue;} 4575b6ebb6e6SMatthew G. Knepley a[k] += values[off+dof-k-1]; 4576b6ebb6e6SMatthew G. Knepley } 4577b6ebb6e6SMatthew G. Knepley } 4578b6ebb6e6SMatthew G. Knepley } 4579b6ebb6e6SMatthew G. Knepley } 4580b6ebb6e6SMatthew G. Knepley } 4581b6ebb6e6SMatthew G. Knepley ierr = VecRestoreArray(v, &array);CHKERRQ(ierr); 4582b6ebb6e6SMatthew G. Knepley PetscFunctionReturn(0); 4583b6ebb6e6SMatthew G. Knepley } 45841b406b76SMatthew G. Knepley 45851b406b76SMatthew G. Knepley /*@C 45861b406b76SMatthew G. Knepley DMPlexVecSetClosure - Set an array of the values on the closure of 'point' 45871b406b76SMatthew G. Knepley 45881b406b76SMatthew G. Knepley Not collective 45891b406b76SMatthew G. Knepley 45901b406b76SMatthew G. Knepley Input Parameters: 45911b406b76SMatthew G. Knepley + dm - The DM 45921b406b76SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section 45931b406b76SMatthew G. Knepley . v - The local vector 4594eaf898f9SPatrick Sanan . point - The point in the DM 45951b406b76SMatthew G. Knepley . values - The array of values 459622c1ee49SMatthew 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, 459722c1ee49SMatthew G. Knepley where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions. 45981b406b76SMatthew G. Knepley 45991b406b76SMatthew G. Knepley Fortran Notes: 46001b406b76SMatthew G. Knepley This routine is only available in Fortran 90, and you must include petsc.h90 in your code. 46011b406b76SMatthew G. Knepley 46021b406b76SMatthew G. Knepley Level: intermediate 46031b406b76SMatthew G. Knepley 46041b406b76SMatthew G. Knepley .seealso DMPlexVecGetClosure(), DMPlexMatSetClosure() 46051b406b76SMatthew G. Knepley @*/ 46061b406b76SMatthew G. Knepley PetscErrorCode DMPlexVecSetClosure(DM dm, PetscSection section, Vec v, PetscInt point, const PetscScalar values[], InsertMode mode) 46071b406b76SMatthew G. Knepley { 46081b406b76SMatthew G. Knepley PetscSection clSection; 46091b406b76SMatthew G. Knepley IS clPoints; 46101b406b76SMatthew G. Knepley PetscScalar *array; 46111b406b76SMatthew G. Knepley PetscInt *points = NULL; 461297e99dd9SToby Isaac const PetscInt *clp, *clperm; 46131a271a75SMatthew G. Knepley PetscInt depth, numFields, numPoints, p; 46141b406b76SMatthew G. Knepley PetscErrorCode ierr; 46151b406b76SMatthew G. Knepley 46161a271a75SMatthew G. Knepley PetscFunctionBeginHot; 46171b406b76SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4618e87a4003SBarry Smith if (!section) {ierr = DMGetSection(dm, §ion);CHKERRQ(ierr);} 46191a271a75SMatthew G. Knepley PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 46201a271a75SMatthew G. Knepley PetscValidHeaderSpecific(v, VEC_CLASSID, 3); 46211b406b76SMatthew G. Knepley ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 46221b406b76SMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 46231b406b76SMatthew G. Knepley if (depth == 1 && numFields < 2 && mode == ADD_VALUES) { 46248f3be42fSMatthew G. Knepley ierr = DMPlexVecSetClosure_Depth1_Static(dm, section, v, point, values, mode);CHKERRQ(ierr); 46251b406b76SMatthew G. Knepley PetscFunctionReturn(0); 46261b406b76SMatthew G. Knepley } 46271a271a75SMatthew G. Knepley /* Get points */ 462897e99dd9SToby Isaac ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &clperm);CHKERRQ(ierr); 4629923c78e0SToby Isaac ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 46301a271a75SMatthew G. Knepley /* Get array */ 4631552f7358SJed Brown ierr = VecGetArray(v, &array);CHKERRQ(ierr); 46321a271a75SMatthew G. Knepley /* Get values */ 4633ef90cfe2SMatthew G. Knepley if (numFields > 0) { 463497e99dd9SToby Isaac PetscInt offset = 0, f; 4635552f7358SJed Brown for (f = 0; f < numFields; ++f) { 463697e99dd9SToby Isaac const PetscInt **perms = NULL; 463797e99dd9SToby Isaac const PetscScalar **flips = NULL; 463897e99dd9SToby Isaac 463997e99dd9SToby Isaac ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 4640552f7358SJed Brown switch (mode) { 4641552f7358SJed Brown case INSERT_VALUES: 464297e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 464397e99dd9SToby Isaac const PetscInt point = points[2*p]; 464497e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 464597e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 464697e99dd9SToby Isaac updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, clperm, values, &offset, array); 4647552f7358SJed Brown } break; 4648552f7358SJed Brown case INSERT_ALL_VALUES: 464997e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 465097e99dd9SToby Isaac const PetscInt point = points[2*p]; 465197e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 465297e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 465397e99dd9SToby Isaac updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, clperm, values, &offset, array); 4654552f7358SJed Brown } break; 4655a5e93ea8SMatthew G. Knepley case INSERT_BC_VALUES: 465697e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 465797e99dd9SToby Isaac const PetscInt point = points[2*p]; 465897e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 465997e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4660ba322698SMatthew G. Knepley updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, insert, clperm, values, &offset, array); 4661a5e93ea8SMatthew G. Knepley } break; 4662552f7358SJed Brown case ADD_VALUES: 466397e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 466497e99dd9SToby Isaac const PetscInt point = points[2*p]; 466597e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 466697e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 466797e99dd9SToby Isaac updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, clperm, values, &offset, array); 4668552f7358SJed Brown } break; 4669552f7358SJed Brown case ADD_ALL_VALUES: 467097e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 467197e99dd9SToby Isaac const PetscInt point = points[2*p]; 467297e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 467397e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 467497e99dd9SToby Isaac updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, clperm, values, &offset, array); 4675552f7358SJed Brown } break; 4676304ab55fSMatthew G. Knepley case ADD_BC_VALUES: 467797e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 467897e99dd9SToby Isaac const PetscInt point = points[2*p]; 467997e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 468097e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4681ba322698SMatthew G. Knepley updatePointFieldsBC_private(section, point, perm, flip, f, -1, NULL, add, clperm, values, &offset, array); 4682304ab55fSMatthew G. Knepley } break; 4683552f7358SJed Brown default: 4684f347f43bSBarry Smith SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode); 4685552f7358SJed Brown } 468697e99dd9SToby Isaac ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 46871a271a75SMatthew G. Knepley } 4688552f7358SJed Brown } else { 46891a271a75SMatthew G. Knepley PetscInt dof, off; 469097e99dd9SToby Isaac const PetscInt **perms = NULL; 469197e99dd9SToby Isaac const PetscScalar **flips = NULL; 46921a271a75SMatthew G. Knepley 469397e99dd9SToby Isaac ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr); 4694552f7358SJed Brown switch (mode) { 4695552f7358SJed Brown case INSERT_VALUES: 469697e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 469797e99dd9SToby Isaac const PetscInt point = points[2*p]; 469897e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 469997e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 470097e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 470197e99dd9SToby Isaac updatePoint_private(section, point, dof, insert, PETSC_FALSE, perm, flip, clperm, values, off, array); 4702552f7358SJed Brown } break; 4703552f7358SJed Brown case INSERT_ALL_VALUES: 470497e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 470597e99dd9SToby Isaac const PetscInt point = points[2*p]; 470697e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 470797e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 470897e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 470997e99dd9SToby Isaac updatePoint_private(section, point, dof, insert, PETSC_TRUE, perm, flip, clperm, values, off, array); 4710552f7358SJed Brown } break; 4711a5e93ea8SMatthew G. Knepley case INSERT_BC_VALUES: 471297e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 471397e99dd9SToby Isaac const PetscInt point = points[2*p]; 471497e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 471597e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 471697e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 471797e99dd9SToby Isaac updatePointBC_private(section, point, dof, insert, perm, flip, clperm, values, off, array); 4718a5e93ea8SMatthew G. Knepley } break; 4719552f7358SJed Brown case ADD_VALUES: 472097e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 472197e99dd9SToby Isaac const PetscInt point = points[2*p]; 472297e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 472397e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 472497e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 472597e99dd9SToby Isaac updatePoint_private(section, point, dof, add, PETSC_FALSE, perm, flip, clperm, values, off, array); 4726552f7358SJed Brown } break; 4727552f7358SJed Brown case ADD_ALL_VALUES: 472897e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 472997e99dd9SToby Isaac const PetscInt point = points[2*p]; 473097e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 473197e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 473297e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 473397e99dd9SToby Isaac updatePoint_private(section, point, dof, add, PETSC_TRUE, perm, flip, clperm, values, off, array); 4734552f7358SJed Brown } break; 4735304ab55fSMatthew G. Knepley case ADD_BC_VALUES: 473697e99dd9SToby Isaac for (p = 0, off = 0; p < numPoints; p++, off += dof) { 473797e99dd9SToby Isaac const PetscInt point = points[2*p]; 473897e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 473997e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 474097e99dd9SToby Isaac ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 474197e99dd9SToby Isaac updatePointBC_private(section, point, dof, add, perm, flip, clperm, values, off, array); 4742304ab55fSMatthew G. Knepley } break; 4743552f7358SJed Brown default: 4744f347f43bSBarry Smith SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode); 4745552f7358SJed Brown } 474697e99dd9SToby Isaac ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms,&flips);CHKERRQ(ierr); 4747552f7358SJed Brown } 47481a271a75SMatthew G. Knepley /* Cleanup points */ 4749923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 47501a271a75SMatthew G. Knepley /* Cleanup array */ 4751552f7358SJed Brown ierr = VecRestoreArray(v, &array);CHKERRQ(ierr); 4752552f7358SJed Brown PetscFunctionReturn(0); 4753552f7358SJed Brown } 4754552f7358SJed Brown 4755ba322698SMatthew 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) 4756e07394fbSMatthew G. Knepley { 4757e07394fbSMatthew G. Knepley PetscSection clSection; 4758e07394fbSMatthew G. Knepley IS clPoints; 4759e07394fbSMatthew G. Knepley PetscScalar *array; 4760e07394fbSMatthew G. Knepley PetscInt *points = NULL; 4761b04c866fSMatthew G. Knepley const PetscInt *clp, *clperm; 4762e07394fbSMatthew G. Knepley PetscInt numFields, numPoints, p; 476397e99dd9SToby Isaac PetscInt offset = 0, f; 4764e07394fbSMatthew G. Knepley PetscErrorCode ierr; 4765e07394fbSMatthew G. Knepley 4766e07394fbSMatthew G. Knepley PetscFunctionBeginHot; 4767e07394fbSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4768e87a4003SBarry Smith if (!section) {ierr = DMGetSection(dm, §ion);CHKERRQ(ierr);} 4769e07394fbSMatthew G. Knepley PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 4770e07394fbSMatthew G. Knepley PetscValidHeaderSpecific(v, VEC_CLASSID, 3); 4771e07394fbSMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 4772e07394fbSMatthew G. Knepley /* Get points */ 4773b04c866fSMatthew G. Knepley ierr = PetscSectionGetClosureInversePermutation_Internal(section, (PetscObject) dm, NULL, &clperm);CHKERRQ(ierr); 4774923c78e0SToby Isaac ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 4775e07394fbSMatthew G. Knepley /* Get array */ 4776e07394fbSMatthew G. Knepley ierr = VecGetArray(v, &array);CHKERRQ(ierr); 4777e07394fbSMatthew G. Knepley /* Get values */ 4778e07394fbSMatthew G. Knepley for (f = 0; f < numFields; ++f) { 477997e99dd9SToby Isaac const PetscInt **perms = NULL; 478097e99dd9SToby Isaac const PetscScalar **flips = NULL; 478197e99dd9SToby Isaac 4782e07394fbSMatthew G. Knepley if (!fieldActive[f]) { 4783e07394fbSMatthew G. Knepley for (p = 0; p < numPoints*2; p += 2) { 4784e07394fbSMatthew G. Knepley PetscInt fdof; 4785e07394fbSMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr); 4786e07394fbSMatthew G. Knepley offset += fdof; 4787e07394fbSMatthew G. Knepley } 4788e07394fbSMatthew G. Knepley continue; 4789e07394fbSMatthew G. Knepley } 479097e99dd9SToby Isaac ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 4791e07394fbSMatthew G. Knepley switch (mode) { 4792e07394fbSMatthew G. Knepley case INSERT_VALUES: 479397e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 479497e99dd9SToby Isaac const PetscInt point = points[2*p]; 479597e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 479697e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4797b04c866fSMatthew G. Knepley updatePointFields_private(section, point, perm, flip, f, insert, PETSC_FALSE, clperm, values, &offset, array); 4798e07394fbSMatthew G. Knepley } break; 4799e07394fbSMatthew G. Knepley case INSERT_ALL_VALUES: 480097e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 480197e99dd9SToby Isaac const PetscInt point = points[2*p]; 480297e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 480397e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4804b04c866fSMatthew G. Knepley updatePointFields_private(section, point, perm, flip, f, insert, PETSC_TRUE, clperm, values, &offset, array); 4805e07394fbSMatthew G. Knepley } break; 4806e07394fbSMatthew G. Knepley case INSERT_BC_VALUES: 480797e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 480897e99dd9SToby Isaac const PetscInt point = points[2*p]; 480997e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 481097e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4811ba322698SMatthew G. Knepley updatePointFieldsBC_private(section, point, perm, flip, f, Ncc, comps, insert, clperm, values, &offset, array); 4812e07394fbSMatthew G. Knepley } break; 4813e07394fbSMatthew G. Knepley case ADD_VALUES: 481497e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 481597e99dd9SToby Isaac const PetscInt point = points[2*p]; 481697e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 481797e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4818b04c866fSMatthew G. Knepley updatePointFields_private(section, point, perm, flip, f, add, PETSC_FALSE, clperm, values, &offset, array); 4819e07394fbSMatthew G. Knepley } break; 4820e07394fbSMatthew G. Knepley case ADD_ALL_VALUES: 482197e99dd9SToby Isaac for (p = 0; p < numPoints; p++) { 482297e99dd9SToby Isaac const PetscInt point = points[2*p]; 482397e99dd9SToby Isaac const PetscInt *perm = perms ? perms[p] : NULL; 482497e99dd9SToby Isaac const PetscScalar *flip = flips ? flips[p] : NULL; 4825b04c866fSMatthew G. Knepley updatePointFields_private(section, point, perm, flip, f, add, PETSC_TRUE, clperm, values, &offset, array); 4826e07394fbSMatthew G. Knepley } break; 4827e07394fbSMatthew G. Knepley default: 4828f347f43bSBarry Smith SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insert mode %d", mode); 4829e07394fbSMatthew G. Knepley } 483097e99dd9SToby Isaac ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms,&flips);CHKERRQ(ierr); 4831e07394fbSMatthew G. Knepley } 4832e07394fbSMatthew G. Knepley /* Cleanup points */ 4833923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 4834e07394fbSMatthew G. Knepley /* Cleanup array */ 4835e07394fbSMatthew G. Knepley ierr = VecRestoreArray(v, &array);CHKERRQ(ierr); 4836e07394fbSMatthew G. Knepley PetscFunctionReturn(0); 4837e07394fbSMatthew G. Knepley } 4838e07394fbSMatthew G. Knepley 48397cd05799SMatthew G. Knepley static PetscErrorCode DMPlexPrintMatSetValues(PetscViewer viewer, Mat A, PetscInt point, PetscInt numRIndices, const PetscInt rindices[], PetscInt numCIndices, const PetscInt cindices[], const PetscScalar values[]) 4840552f7358SJed Brown { 4841552f7358SJed Brown PetscMPIInt rank; 4842552f7358SJed Brown PetscInt i, j; 4843552f7358SJed Brown PetscErrorCode ierr; 4844552f7358SJed Brown 4845552f7358SJed Brown PetscFunctionBegin; 484682f516ccSBarry Smith ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr); 4847eaf898f9SPatrick Sanan ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat for point %D\n", rank, point);CHKERRQ(ierr); 4848e4b003c7SBarry Smith for (i = 0; i < numRIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat row indices[%D] = %D\n", rank, i, rindices[i]);CHKERRQ(ierr);} 4849e4b003c7SBarry Smith for (i = 0; i < numCIndices; i++) {ierr = PetscViewerASCIIPrintf(viewer, "[%d]mat col indices[%D] = %D\n", rank, i, cindices[i]);CHKERRQ(ierr);} 4850b0ecff45SMatthew G. Knepley numCIndices = numCIndices ? numCIndices : numRIndices; 4851b0ecff45SMatthew G. Knepley for (i = 0; i < numRIndices; i++) { 4852e4b003c7SBarry Smith ierr = PetscViewerASCIIPrintf(viewer, "[%d]", rank);CHKERRQ(ierr); 4853b0ecff45SMatthew G. Knepley for (j = 0; j < numCIndices; j++) { 4854519f805aSKarl Rupp #if defined(PETSC_USE_COMPLEX) 48557eba1a17SMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, " (%g,%g)", (double)PetscRealPart(values[i*numCIndices+j]), (double)PetscImaginaryPart(values[i*numCIndices+j]));CHKERRQ(ierr); 4856552f7358SJed Brown #else 4857b0ecff45SMatthew G. Knepley ierr = PetscViewerASCIIPrintf(viewer, " %g", (double)values[i*numCIndices+j]);CHKERRQ(ierr); 4858552f7358SJed Brown #endif 4859552f7358SJed Brown } 486077a6746dSMatthew G Knepley ierr = PetscViewerASCIIPrintf(viewer, "\n");CHKERRQ(ierr); 4861552f7358SJed Brown } 4862552f7358SJed Brown PetscFunctionReturn(0); 4863552f7358SJed Brown } 4864552f7358SJed Brown 4865552f7358SJed Brown /* . off - The global offset of this point */ 48664acb8e1eSToby Isaac PetscErrorCode DMPlexGetIndicesPoint_Internal(PetscSection section, PetscInt point, PetscInt off, PetscInt *loff, PetscBool setBC, const PetscInt perm[], PetscInt indices[]) 4867a6dfd86eSKarl Rupp { 4868e6ccafaeSMatthew G Knepley PetscInt dof; /* The number of unknowns on this point */ 4869552f7358SJed Brown PetscInt cdof; /* The number of constraints on this point */ 4870552f7358SJed Brown const PetscInt *cdofs; /* The indices of the constrained dofs on this point */ 4871552f7358SJed Brown PetscInt cind = 0, k; 4872552f7358SJed Brown PetscErrorCode ierr; 4873552f7358SJed Brown 4874552f7358SJed Brown PetscFunctionBegin; 4875552f7358SJed Brown ierr = PetscSectionGetDof(section, point, &dof);CHKERRQ(ierr); 4876552f7358SJed Brown ierr = PetscSectionGetConstraintDof(section, point, &cdof);CHKERRQ(ierr); 4877552f7358SJed Brown if (!cdof || setBC) { 48784acb8e1eSToby Isaac if (perm) { 48794acb8e1eSToby Isaac for (k = 0; k < dof; k++) indices[*loff+perm[k]] = off + k; 4880552f7358SJed Brown } else { 48814acb8e1eSToby Isaac for (k = 0; k < dof; k++) indices[*loff+k] = off + k; 4882552f7358SJed Brown } 4883552f7358SJed Brown } else { 4884552f7358SJed Brown ierr = PetscSectionGetConstraintIndices(section, point, &cdofs);CHKERRQ(ierr); 48854acb8e1eSToby Isaac if (perm) { 48864acb8e1eSToby Isaac for (k = 0; k < dof; ++k) { 48874acb8e1eSToby Isaac if ((cind < cdof) && (k == cdofs[cind])) { 48884acb8e1eSToby Isaac /* Insert check for returning constrained indices */ 48894acb8e1eSToby Isaac indices[*loff+perm[k]] = -(off+k+1); 48904acb8e1eSToby Isaac ++cind; 48914acb8e1eSToby Isaac } else { 48924acb8e1eSToby Isaac indices[*loff+perm[k]] = off+k-cind; 48934acb8e1eSToby Isaac } 48944acb8e1eSToby Isaac } 48954acb8e1eSToby Isaac } else { 4896552f7358SJed Brown for (k = 0; k < dof; ++k) { 4897552f7358SJed Brown if ((cind < cdof) && (k == cdofs[cind])) { 4898552f7358SJed Brown /* Insert check for returning constrained indices */ 4899e6ccafaeSMatthew G Knepley indices[*loff+k] = -(off+k+1); 4900552f7358SJed Brown ++cind; 4901552f7358SJed Brown } else { 4902e6ccafaeSMatthew G Knepley indices[*loff+k] = off+k-cind; 4903552f7358SJed Brown } 4904552f7358SJed Brown } 4905552f7358SJed Brown } 4906552f7358SJed Brown } 4907e6ccafaeSMatthew G Knepley *loff += dof; 4908552f7358SJed Brown PetscFunctionReturn(0); 4909552f7358SJed Brown } 4910552f7358SJed Brown 4911552f7358SJed Brown /* . off - The global offset of this point */ 49124acb8e1eSToby Isaac PetscErrorCode DMPlexGetIndicesPointFields_Internal(PetscSection section, PetscInt point, PetscInt off, PetscInt foffs[], PetscBool setBC, const PetscInt ***perms, PetscInt permsoff, PetscInt indices[]) 4913a6dfd86eSKarl Rupp { 4914552f7358SJed Brown PetscInt numFields, foff, f; 4915552f7358SJed Brown PetscErrorCode ierr; 4916552f7358SJed Brown 4917552f7358SJed Brown PetscFunctionBegin; 4918552f7358SJed Brown ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 4919552f7358SJed Brown for (f = 0, foff = 0; f < numFields; ++f) { 49204acb8e1eSToby Isaac PetscInt fdof, cfdof; 4921552f7358SJed Brown const PetscInt *fcdofs; /* The indices of the constrained dofs for field f on this point */ 49224acb8e1eSToby Isaac PetscInt cind = 0, b; 49234acb8e1eSToby Isaac const PetscInt *perm = (perms && perms[f]) ? perms[f][permsoff] : NULL; 4924552f7358SJed Brown 4925552f7358SJed Brown ierr = PetscSectionGetFieldDof(section, point, f, &fdof);CHKERRQ(ierr); 4926552f7358SJed Brown ierr = PetscSectionGetFieldConstraintDof(section, point, f, &cfdof);CHKERRQ(ierr); 4927552f7358SJed Brown if (!cfdof || setBC) { 49284acb8e1eSToby Isaac if (perm) {for (b = 0; b < fdof; b++) {indices[foffs[f]+perm[b]] = off+foff+b;}} 49294acb8e1eSToby Isaac else {for (b = 0; b < fdof; b++) {indices[foffs[f]+ b ] = off+foff+b;}} 4930552f7358SJed Brown } else { 4931552f7358SJed Brown ierr = PetscSectionGetFieldConstraintIndices(section, point, f, &fcdofs);CHKERRQ(ierr); 49324acb8e1eSToby Isaac if (perm) { 49334acb8e1eSToby Isaac for (b = 0; b < fdof; b++) { 49344acb8e1eSToby Isaac if ((cind < cfdof) && (b == fcdofs[cind])) { 49354acb8e1eSToby Isaac indices[foffs[f]+perm[b]] = -(off+foff+b+1); 4936552f7358SJed Brown ++cind; 4937552f7358SJed Brown } else { 49384acb8e1eSToby Isaac indices[foffs[f]+perm[b]] = off+foff+b-cind; 4939552f7358SJed Brown } 4940552f7358SJed Brown } 4941552f7358SJed Brown } else { 49424acb8e1eSToby Isaac for (b = 0; b < fdof; b++) { 49434acb8e1eSToby Isaac if ((cind < cfdof) && (b == fcdofs[cind])) { 49444acb8e1eSToby Isaac indices[foffs[f]+b] = -(off+foff+b+1); 4945552f7358SJed Brown ++cind; 4946552f7358SJed Brown } else { 49474acb8e1eSToby Isaac indices[foffs[f]+b] = off+foff+b-cind; 4948552f7358SJed Brown } 4949552f7358SJed Brown } 4950552f7358SJed Brown } 4951552f7358SJed Brown } 4952a9096520SToby Isaac foff += (setBC ? fdof : (fdof - cfdof)); 4953552f7358SJed Brown foffs[f] += fdof; 4954552f7358SJed Brown } 4955552f7358SJed Brown PetscFunctionReturn(0); 4956552f7358SJed Brown } 4957552f7358SJed Brown 49584acb8e1eSToby 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) 4959d3d1a6afSToby Isaac { 4960d3d1a6afSToby Isaac Mat cMat; 4961d3d1a6afSToby Isaac PetscSection aSec, cSec; 4962d3d1a6afSToby Isaac IS aIS; 4963d3d1a6afSToby Isaac PetscInt aStart = -1, aEnd = -1; 4964d3d1a6afSToby Isaac const PetscInt *anchors; 4965e17c06e0SMatthew G. Knepley PetscInt numFields, f, p, q, newP = 0; 4966d3d1a6afSToby Isaac PetscInt newNumPoints = 0, newNumIndices = 0; 4967d3d1a6afSToby Isaac PetscInt *newPoints, *indices, *newIndices; 4968d3d1a6afSToby Isaac PetscInt maxAnchor, maxDof; 4969d3d1a6afSToby Isaac PetscInt newOffsets[32]; 4970d3d1a6afSToby Isaac PetscInt *pointMatOffsets[32]; 4971d3d1a6afSToby Isaac PetscInt *newPointOffsets[32]; 4972d3d1a6afSToby Isaac PetscScalar *pointMat[32]; 49736ecaa68aSToby Isaac PetscScalar *newValues=NULL,*tmpValues; 4974d3d1a6afSToby Isaac PetscBool anyConstrained = PETSC_FALSE; 4975d3d1a6afSToby Isaac PetscErrorCode ierr; 4976d3d1a6afSToby Isaac 4977d3d1a6afSToby Isaac PetscFunctionBegin; 4978d3d1a6afSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4979d3d1a6afSToby Isaac PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 4980d3d1a6afSToby Isaac ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 4981d3d1a6afSToby Isaac 4982a17985deSToby Isaac ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr); 4983d3d1a6afSToby Isaac /* if there are point-to-point constraints */ 4984d3d1a6afSToby Isaac if (aSec) { 4985d3d1a6afSToby Isaac ierr = PetscMemzero(newOffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 4986d3d1a6afSToby Isaac ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr); 4987d3d1a6afSToby Isaac ierr = PetscSectionGetChart(aSec,&aStart,&aEnd);CHKERRQ(ierr); 4988d3d1a6afSToby Isaac /* figure out how many points are going to be in the new element matrix 4989d3d1a6afSToby Isaac * (we allow double counting, because it's all just going to be summed 4990d3d1a6afSToby Isaac * into the global matrix anyway) */ 4991d3d1a6afSToby Isaac for (p = 0; p < 2*numPoints; p+=2) { 4992d3d1a6afSToby Isaac PetscInt b = points[p]; 49934b2f2278SToby Isaac PetscInt bDof = 0, bSecDof; 4994d3d1a6afSToby Isaac 49954b2f2278SToby Isaac ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr); 49964b2f2278SToby Isaac if (!bSecDof) { 49974b2f2278SToby Isaac continue; 49984b2f2278SToby Isaac } 4999d3d1a6afSToby Isaac if (b >= aStart && b < aEnd) { 5000d3d1a6afSToby Isaac ierr = PetscSectionGetDof(aSec,b,&bDof);CHKERRQ(ierr); 5001d3d1a6afSToby Isaac } 5002d3d1a6afSToby Isaac if (bDof) { 5003d3d1a6afSToby Isaac /* this point is constrained */ 5004d3d1a6afSToby Isaac /* it is going to be replaced by its anchors */ 5005d3d1a6afSToby Isaac PetscInt bOff, q; 5006d3d1a6afSToby Isaac 5007d3d1a6afSToby Isaac anyConstrained = PETSC_TRUE; 5008d3d1a6afSToby Isaac newNumPoints += bDof; 5009d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(aSec,b,&bOff);CHKERRQ(ierr); 5010d3d1a6afSToby Isaac for (q = 0; q < bDof; q++) { 5011d3d1a6afSToby Isaac PetscInt a = anchors[bOff + q]; 5012d3d1a6afSToby Isaac PetscInt aDof; 5013d3d1a6afSToby Isaac 5014d3d1a6afSToby Isaac ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr); 5015d3d1a6afSToby Isaac newNumIndices += aDof; 5016d3d1a6afSToby Isaac for (f = 0; f < numFields; ++f) { 5017d3d1a6afSToby Isaac PetscInt fDof; 5018d3d1a6afSToby Isaac 5019d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section, a, f, &fDof);CHKERRQ(ierr); 5020d3d1a6afSToby Isaac newOffsets[f+1] += fDof; 5021d3d1a6afSToby Isaac } 5022d3d1a6afSToby Isaac } 5023d3d1a6afSToby Isaac } 5024d3d1a6afSToby Isaac else { 5025d3d1a6afSToby Isaac /* this point is not constrained */ 5026d3d1a6afSToby Isaac newNumPoints++; 50274b2f2278SToby Isaac newNumIndices += bSecDof; 5028d3d1a6afSToby Isaac for (f = 0; f < numFields; ++f) { 5029d3d1a6afSToby Isaac PetscInt fDof; 5030d3d1a6afSToby Isaac 5031d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr); 5032d3d1a6afSToby Isaac newOffsets[f+1] += fDof; 5033d3d1a6afSToby Isaac } 5034d3d1a6afSToby Isaac } 5035d3d1a6afSToby Isaac } 5036d3d1a6afSToby Isaac } 5037d3d1a6afSToby Isaac if (!anyConstrained) { 503872b80496SMatthew G. Knepley if (outNumPoints) *outNumPoints = 0; 503972b80496SMatthew G. Knepley if (outNumIndices) *outNumIndices = 0; 504072b80496SMatthew G. Knepley if (outPoints) *outPoints = NULL; 504172b80496SMatthew G. Knepley if (outValues) *outValues = NULL; 504272b80496SMatthew G. Knepley if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);} 5043d3d1a6afSToby Isaac PetscFunctionReturn(0); 5044d3d1a6afSToby Isaac } 5045d3d1a6afSToby Isaac 50466ecaa68aSToby Isaac if (outNumPoints) *outNumPoints = newNumPoints; 50476ecaa68aSToby Isaac if (outNumIndices) *outNumIndices = newNumIndices; 50486ecaa68aSToby Isaac 5049f13f9184SToby Isaac for (f = 0; f < numFields; ++f) newOffsets[f+1] += newOffsets[f]; 5050d3d1a6afSToby Isaac 50516ecaa68aSToby Isaac if (!outPoints && !outValues) { 50526ecaa68aSToby Isaac if (offsets) { 50536ecaa68aSToby Isaac for (f = 0; f <= numFields; f++) { 50546ecaa68aSToby Isaac offsets[f] = newOffsets[f]; 50556ecaa68aSToby Isaac } 50566ecaa68aSToby Isaac } 50576ecaa68aSToby Isaac if (aSec) {ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);} 50586ecaa68aSToby Isaac PetscFunctionReturn(0); 50596ecaa68aSToby Isaac } 50606ecaa68aSToby Isaac 5061f347f43bSBarry Smith if (numFields && newOffsets[numFields] != newNumIndices) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", newOffsets[numFields], newNumIndices); 5062d3d1a6afSToby Isaac 5063f7c74593SToby Isaac ierr = DMGetDefaultConstraints(dm, &cSec, &cMat);CHKERRQ(ierr); 5064d3d1a6afSToby Isaac 5065d3d1a6afSToby Isaac /* workspaces */ 5066d3d1a6afSToby Isaac if (numFields) { 5067d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 506869291d52SBarry Smith ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr); 506969291d52SBarry Smith ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr); 5070d3d1a6afSToby Isaac } 5071d3d1a6afSToby Isaac } 5072d3d1a6afSToby Isaac else { 507369291d52SBarry Smith ierr = DMGetWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr); 507469291d52SBarry Smith ierr = DMGetWorkArray(dm,numPoints,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr); 5075d3d1a6afSToby Isaac } 5076d3d1a6afSToby Isaac 5077d3d1a6afSToby Isaac /* get workspaces for the point-to-point matrices */ 5078d3d1a6afSToby Isaac if (numFields) { 50794b2f2278SToby Isaac PetscInt totalOffset, totalMatOffset; 50804b2f2278SToby Isaac 5081d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5082d3d1a6afSToby Isaac PetscInt b = points[2*p]; 50834b2f2278SToby Isaac PetscInt bDof = 0, bSecDof; 5084d3d1a6afSToby Isaac 50854b2f2278SToby Isaac ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr); 50864b2f2278SToby Isaac if (!bSecDof) { 50874b2f2278SToby Isaac for (f = 0; f < numFields; f++) { 50884b2f2278SToby Isaac newPointOffsets[f][p + 1] = 0; 50894b2f2278SToby Isaac pointMatOffsets[f][p + 1] = 0; 50904b2f2278SToby Isaac } 50914b2f2278SToby Isaac continue; 50924b2f2278SToby Isaac } 5093d3d1a6afSToby Isaac if (b >= aStart && b < aEnd) { 5094d3d1a6afSToby Isaac ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr); 5095d3d1a6afSToby Isaac } 5096d3d1a6afSToby Isaac if (bDof) { 5097d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5098d3d1a6afSToby Isaac PetscInt fDof, q, bOff, allFDof = 0; 5099d3d1a6afSToby Isaac 5100d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr); 5101d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr); 5102d3d1a6afSToby Isaac for (q = 0; q < bDof; q++) { 5103d3d1a6afSToby Isaac PetscInt a = anchors[bOff + q]; 5104d3d1a6afSToby Isaac PetscInt aFDof; 5105d3d1a6afSToby Isaac 5106d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section, a, f, &aFDof);CHKERRQ(ierr); 5107d3d1a6afSToby Isaac allFDof += aFDof; 5108d3d1a6afSToby Isaac } 5109d3d1a6afSToby Isaac newPointOffsets[f][p+1] = allFDof; 5110d3d1a6afSToby Isaac pointMatOffsets[f][p+1] = fDof * allFDof; 5111d3d1a6afSToby Isaac } 5112d3d1a6afSToby Isaac } 5113d3d1a6afSToby Isaac else { 5114d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5115d3d1a6afSToby Isaac PetscInt fDof; 5116d3d1a6afSToby Isaac 5117d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section, b, f, &fDof);CHKERRQ(ierr); 5118d3d1a6afSToby Isaac newPointOffsets[f][p+1] = fDof; 5119d3d1a6afSToby Isaac pointMatOffsets[f][p+1] = 0; 5120d3d1a6afSToby Isaac } 5121d3d1a6afSToby Isaac } 5122d3d1a6afSToby Isaac } 51234b2f2278SToby Isaac for (f = 0, totalOffset = 0, totalMatOffset = 0; f < numFields; f++) { 51244b2f2278SToby Isaac newPointOffsets[f][0] = totalOffset; 51254b2f2278SToby Isaac pointMatOffsets[f][0] = totalMatOffset; 5126d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5127d3d1a6afSToby Isaac newPointOffsets[f][p+1] += newPointOffsets[f][p]; 5128d3d1a6afSToby Isaac pointMatOffsets[f][p+1] += pointMatOffsets[f][p]; 5129d3d1a6afSToby Isaac } 513019f70fd5SToby Isaac totalOffset = newPointOffsets[f][numPoints]; 513119f70fd5SToby Isaac totalMatOffset = pointMatOffsets[f][numPoints]; 513269291d52SBarry Smith ierr = DMGetWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr); 5133d3d1a6afSToby Isaac } 5134d3d1a6afSToby Isaac } 5135d3d1a6afSToby Isaac else { 5136d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5137d3d1a6afSToby Isaac PetscInt b = points[2*p]; 51384b2f2278SToby Isaac PetscInt bDof = 0, bSecDof; 5139d3d1a6afSToby Isaac 51404b2f2278SToby Isaac ierr = PetscSectionGetDof(section,b,&bSecDof);CHKERRQ(ierr); 51414b2f2278SToby Isaac if (!bSecDof) { 51424b2f2278SToby Isaac newPointOffsets[0][p + 1] = 0; 51434b2f2278SToby Isaac pointMatOffsets[0][p + 1] = 0; 51444b2f2278SToby Isaac continue; 51454b2f2278SToby Isaac } 5146d3d1a6afSToby Isaac if (b >= aStart && b < aEnd) { 5147d3d1a6afSToby Isaac ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr); 5148d3d1a6afSToby Isaac } 5149d3d1a6afSToby Isaac if (bDof) { 51504b2f2278SToby Isaac PetscInt bOff, q, allDof = 0; 5151d3d1a6afSToby Isaac 5152d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr); 5153d3d1a6afSToby Isaac for (q = 0; q < bDof; q++) { 5154d3d1a6afSToby Isaac PetscInt a = anchors[bOff + q], aDof; 5155d3d1a6afSToby Isaac 5156d3d1a6afSToby Isaac ierr = PetscSectionGetDof(section, a, &aDof);CHKERRQ(ierr); 5157d3d1a6afSToby Isaac allDof += aDof; 5158d3d1a6afSToby Isaac } 5159d3d1a6afSToby Isaac newPointOffsets[0][p+1] = allDof; 51604b2f2278SToby Isaac pointMatOffsets[0][p+1] = bSecDof * allDof; 5161d3d1a6afSToby Isaac } 5162d3d1a6afSToby Isaac else { 51634b2f2278SToby Isaac newPointOffsets[0][p+1] = bSecDof; 5164d3d1a6afSToby Isaac pointMatOffsets[0][p+1] = 0; 5165d3d1a6afSToby Isaac } 5166d3d1a6afSToby Isaac } 5167d3d1a6afSToby Isaac newPointOffsets[0][0] = 0; 5168d3d1a6afSToby Isaac pointMatOffsets[0][0] = 0; 5169d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5170d3d1a6afSToby Isaac newPointOffsets[0][p+1] += newPointOffsets[0][p]; 5171d3d1a6afSToby Isaac pointMatOffsets[0][p+1] += pointMatOffsets[0][p]; 5172d3d1a6afSToby Isaac } 517369291d52SBarry Smith ierr = DMGetWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr); 5174d3d1a6afSToby Isaac } 5175d3d1a6afSToby Isaac 51766ecaa68aSToby Isaac /* output arrays */ 517769291d52SBarry Smith ierr = DMGetWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr); 51786ecaa68aSToby Isaac 5179d3d1a6afSToby Isaac /* get the point-to-point matrices; construct newPoints */ 5180d3d1a6afSToby Isaac ierr = PetscSectionGetMaxDof(aSec, &maxAnchor);CHKERRQ(ierr); 5181d3d1a6afSToby Isaac ierr = PetscSectionGetMaxDof(section, &maxDof);CHKERRQ(ierr); 518269291d52SBarry Smith ierr = DMGetWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr); 518369291d52SBarry Smith ierr = DMGetWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr); 5184d3d1a6afSToby Isaac if (numFields) { 5185d3d1a6afSToby Isaac for (p = 0, newP = 0; p < numPoints; p++) { 5186d3d1a6afSToby Isaac PetscInt b = points[2*p]; 5187d3d1a6afSToby Isaac PetscInt o = points[2*p+1]; 51884b2f2278SToby Isaac PetscInt bDof = 0, bSecDof; 5189d3d1a6afSToby Isaac 51904b2f2278SToby Isaac ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr); 51914b2f2278SToby Isaac if (!bSecDof) { 51924b2f2278SToby Isaac continue; 51934b2f2278SToby Isaac } 5194d3d1a6afSToby Isaac if (b >= aStart && b < aEnd) { 5195d3d1a6afSToby Isaac ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr); 5196d3d1a6afSToby Isaac } 5197d3d1a6afSToby Isaac if (bDof) { 5198d3d1a6afSToby Isaac PetscInt fStart[32], fEnd[32], fAnchorStart[32], fAnchorEnd[32], bOff, q; 5199d3d1a6afSToby Isaac 5200d3d1a6afSToby Isaac fStart[0] = 0; 5201d3d1a6afSToby Isaac fEnd[0] = 0; 5202d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5203d3d1a6afSToby Isaac PetscInt fDof; 5204d3d1a6afSToby Isaac 5205d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(cSec, b, f, &fDof);CHKERRQ(ierr); 5206d3d1a6afSToby Isaac fStart[f+1] = fStart[f] + fDof; 5207d3d1a6afSToby Isaac fEnd[f+1] = fStart[f+1]; 5208d3d1a6afSToby Isaac } 5209d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr); 52104acb8e1eSToby Isaac ierr = DMPlexGetIndicesPointFields_Internal(cSec, b, bOff, fEnd, PETSC_TRUE, perms, p, indices);CHKERRQ(ierr); 5211d3d1a6afSToby Isaac 5212d3d1a6afSToby Isaac fAnchorStart[0] = 0; 5213d3d1a6afSToby Isaac fAnchorEnd[0] = 0; 5214d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5215d3d1a6afSToby Isaac PetscInt fDof = newPointOffsets[f][p + 1] - newPointOffsets[f][p]; 5216d3d1a6afSToby Isaac 5217d3d1a6afSToby Isaac fAnchorStart[f+1] = fAnchorStart[f] + fDof; 5218d3d1a6afSToby Isaac fAnchorEnd[f+1] = fAnchorStart[f + 1]; 5219d3d1a6afSToby Isaac } 5220d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(aSec, b, &bOff);CHKERRQ(ierr); 5221d3d1a6afSToby Isaac for (q = 0; q < bDof; q++) { 5222d3d1a6afSToby Isaac PetscInt a = anchors[bOff + q], aOff; 5223d3d1a6afSToby Isaac 5224d3d1a6afSToby 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 */ 5225d3d1a6afSToby Isaac newPoints[2*(newP + q)] = a; 5226d3d1a6afSToby Isaac newPoints[2*(newP + q) + 1] = 0; 5227302440fdSBarry Smith ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr); 52284acb8e1eSToby Isaac ierr = DMPlexGetIndicesPointFields_Internal(section, a, aOff, fAnchorEnd, PETSC_TRUE, NULL, -1, newIndices);CHKERRQ(ierr); 5229d3d1a6afSToby Isaac } 5230d3d1a6afSToby Isaac newP += bDof; 5231d3d1a6afSToby Isaac 52326ecaa68aSToby Isaac if (outValues) { 5233d3d1a6afSToby Isaac /* get the point-to-point submatrix */ 5234d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5235d3d1a6afSToby 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); 5236d3d1a6afSToby Isaac } 5237d3d1a6afSToby Isaac } 52386ecaa68aSToby Isaac } 5239d3d1a6afSToby Isaac else { 5240d3d1a6afSToby Isaac newPoints[2 * newP] = b; 5241d3d1a6afSToby Isaac newPoints[2 * newP + 1] = o; 5242d3d1a6afSToby Isaac newP++; 5243d3d1a6afSToby Isaac } 5244d3d1a6afSToby Isaac } 5245d3d1a6afSToby Isaac } else { 5246d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5247d3d1a6afSToby Isaac PetscInt b = points[2*p]; 5248d3d1a6afSToby Isaac PetscInt o = points[2*p+1]; 52494b2f2278SToby Isaac PetscInt bDof = 0, bSecDof; 5250d3d1a6afSToby Isaac 52514b2f2278SToby Isaac ierr = PetscSectionGetDof(section, b, &bSecDof);CHKERRQ(ierr); 52524b2f2278SToby Isaac if (!bSecDof) { 52534b2f2278SToby Isaac continue; 52544b2f2278SToby Isaac } 5255d3d1a6afSToby Isaac if (b >= aStart && b < aEnd) { 5256d3d1a6afSToby Isaac ierr = PetscSectionGetDof(aSec, b, &bDof);CHKERRQ(ierr); 5257d3d1a6afSToby Isaac } 5258d3d1a6afSToby Isaac if (bDof) { 5259d3d1a6afSToby Isaac PetscInt bEnd = 0, bAnchorEnd = 0, bOff; 5260d3d1a6afSToby Isaac 5261d3d1a6afSToby Isaac ierr = PetscSectionGetOffset(cSec, b, &bOff);CHKERRQ(ierr); 52624acb8e1eSToby Isaac ierr = DMPlexGetIndicesPoint_Internal(cSec, b, bOff, &bEnd, PETSC_TRUE, (perms && perms[0]) ? perms[0][p] : NULL, indices);CHKERRQ(ierr); 5263d3d1a6afSToby Isaac 5264d3d1a6afSToby Isaac ierr = PetscSectionGetOffset (aSec, b, &bOff);CHKERRQ(ierr); 5265d3d1a6afSToby Isaac for (q = 0; q < bDof; q++) { 5266d3d1a6afSToby Isaac PetscInt a = anchors[bOff + q], aOff; 5267d3d1a6afSToby Isaac 5268d3d1a6afSToby 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 */ 5269d3d1a6afSToby Isaac 5270d3d1a6afSToby Isaac newPoints[2*(newP + q)] = a; 5271d3d1a6afSToby Isaac newPoints[2*(newP + q) + 1] = 0; 5272302440fdSBarry Smith ierr = PetscSectionGetOffset(section, a, &aOff);CHKERRQ(ierr); 52734acb8e1eSToby Isaac ierr = DMPlexGetIndicesPoint_Internal(section, a, aOff, &bAnchorEnd, PETSC_TRUE, NULL, newIndices);CHKERRQ(ierr); 5274d3d1a6afSToby Isaac } 5275d3d1a6afSToby Isaac newP += bDof; 5276d3d1a6afSToby Isaac 5277d3d1a6afSToby Isaac /* get the point-to-point submatrix */ 52786ecaa68aSToby Isaac if (outValues) { 5279d3d1a6afSToby Isaac ierr = MatGetValues(cMat,bEnd,indices,bAnchorEnd,newIndices,pointMat[0] + pointMatOffsets[0][p]);CHKERRQ(ierr); 5280d3d1a6afSToby Isaac } 52816ecaa68aSToby Isaac } 5282d3d1a6afSToby Isaac else { 5283d3d1a6afSToby Isaac newPoints[2 * newP] = b; 5284d3d1a6afSToby Isaac newPoints[2 * newP + 1] = o; 5285d3d1a6afSToby Isaac newP++; 5286d3d1a6afSToby Isaac } 5287d3d1a6afSToby Isaac } 5288d3d1a6afSToby Isaac } 5289d3d1a6afSToby Isaac 52906ecaa68aSToby Isaac if (outValues) { 529169291d52SBarry Smith ierr = DMGetWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr); 5292d3d1a6afSToby Isaac ierr = PetscMemzero(tmpValues,newNumIndices*numIndices*sizeof(*tmpValues));CHKERRQ(ierr); 5293d3d1a6afSToby Isaac /* multiply constraints on the right */ 5294d3d1a6afSToby Isaac if (numFields) { 5295d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5296d3d1a6afSToby Isaac PetscInt oldOff = offsets[f]; 5297d3d1a6afSToby Isaac 5298d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5299d3d1a6afSToby Isaac PetscInt cStart = newPointOffsets[f][p]; 5300d3d1a6afSToby Isaac PetscInt b = points[2 * p]; 5301d3d1a6afSToby Isaac PetscInt c, r, k; 5302d3d1a6afSToby Isaac PetscInt dof; 5303d3d1a6afSToby Isaac 5304d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr); 53054b2f2278SToby Isaac if (!dof) { 53064b2f2278SToby Isaac continue; 53074b2f2278SToby Isaac } 5308d3d1a6afSToby Isaac if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) { 5309d3d1a6afSToby Isaac PetscInt nCols = newPointOffsets[f][p+1]-cStart; 5310d3d1a6afSToby Isaac const PetscScalar *mat = pointMat[f] + pointMatOffsets[f][p]; 5311d3d1a6afSToby Isaac 5312d3d1a6afSToby Isaac for (r = 0; r < numIndices; r++) { 5313d3d1a6afSToby Isaac for (c = 0; c < nCols; c++) { 5314d3d1a6afSToby Isaac for (k = 0; k < dof; k++) { 53154acb8e1eSToby Isaac tmpValues[r * newNumIndices + cStart + c] += values[r * numIndices + oldOff + k] * mat[k * nCols + c]; 5316d3d1a6afSToby Isaac } 5317d3d1a6afSToby Isaac } 5318d3d1a6afSToby Isaac } 5319d3d1a6afSToby Isaac } 5320d3d1a6afSToby Isaac else { 5321d3d1a6afSToby Isaac /* copy this column as is */ 5322d3d1a6afSToby Isaac for (r = 0; r < numIndices; r++) { 5323d3d1a6afSToby Isaac for (c = 0; c < dof; c++) { 5324d3d1a6afSToby Isaac tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c]; 5325d3d1a6afSToby Isaac } 5326d3d1a6afSToby Isaac } 5327d3d1a6afSToby Isaac } 5328d3d1a6afSToby Isaac oldOff += dof; 5329d3d1a6afSToby Isaac } 5330d3d1a6afSToby Isaac } 5331d3d1a6afSToby Isaac } 5332d3d1a6afSToby Isaac else { 5333d3d1a6afSToby Isaac PetscInt oldOff = 0; 5334d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5335d3d1a6afSToby Isaac PetscInt cStart = newPointOffsets[0][p]; 5336d3d1a6afSToby Isaac PetscInt b = points[2 * p]; 5337d3d1a6afSToby Isaac PetscInt c, r, k; 5338d3d1a6afSToby Isaac PetscInt dof; 5339d3d1a6afSToby Isaac 5340d3d1a6afSToby Isaac ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr); 53414b2f2278SToby Isaac if (!dof) { 53424b2f2278SToby Isaac continue; 53434b2f2278SToby Isaac } 5344d3d1a6afSToby Isaac if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) { 5345d3d1a6afSToby Isaac PetscInt nCols = newPointOffsets[0][p+1]-cStart; 5346d3d1a6afSToby Isaac const PetscScalar *mat = pointMat[0] + pointMatOffsets[0][p]; 5347d3d1a6afSToby Isaac 5348d3d1a6afSToby Isaac for (r = 0; r < numIndices; r++) { 5349d3d1a6afSToby Isaac for (c = 0; c < nCols; c++) { 5350d3d1a6afSToby Isaac for (k = 0; k < dof; k++) { 5351d3d1a6afSToby Isaac tmpValues[r * newNumIndices + cStart + c] += mat[k * nCols + c] * values[r * numIndices + oldOff + k]; 5352d3d1a6afSToby Isaac } 5353d3d1a6afSToby Isaac } 5354d3d1a6afSToby Isaac } 5355d3d1a6afSToby Isaac } 5356d3d1a6afSToby Isaac else { 5357d3d1a6afSToby Isaac /* copy this column as is */ 5358d3d1a6afSToby Isaac for (r = 0; r < numIndices; r++) { 5359d3d1a6afSToby Isaac for (c = 0; c < dof; c++) { 5360d3d1a6afSToby Isaac tmpValues[r * newNumIndices + cStart + c] = values[r * numIndices + oldOff + c]; 5361d3d1a6afSToby Isaac } 5362d3d1a6afSToby Isaac } 5363d3d1a6afSToby Isaac } 5364d3d1a6afSToby Isaac oldOff += dof; 5365d3d1a6afSToby Isaac } 5366d3d1a6afSToby Isaac } 5367d3d1a6afSToby Isaac 53686ecaa68aSToby Isaac if (multiplyLeft) { 536969291d52SBarry Smith ierr = DMGetWorkArray(dm,newNumIndices*newNumIndices,MPIU_SCALAR,&newValues);CHKERRQ(ierr); 5370d3d1a6afSToby Isaac ierr = PetscMemzero(newValues,newNumIndices*newNumIndices*sizeof(*newValues));CHKERRQ(ierr); 5371d3d1a6afSToby Isaac /* multiply constraints transpose on the left */ 5372d3d1a6afSToby Isaac if (numFields) { 5373d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 5374d3d1a6afSToby Isaac PetscInt oldOff = offsets[f]; 5375d3d1a6afSToby Isaac 5376d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5377d3d1a6afSToby Isaac PetscInt rStart = newPointOffsets[f][p]; 5378d3d1a6afSToby Isaac PetscInt b = points[2 * p]; 5379d3d1a6afSToby Isaac PetscInt c, r, k; 5380d3d1a6afSToby Isaac PetscInt dof; 5381d3d1a6afSToby Isaac 5382d3d1a6afSToby Isaac ierr = PetscSectionGetFieldDof(section,b,f,&dof);CHKERRQ(ierr); 5383d3d1a6afSToby Isaac if (pointMatOffsets[f][p] < pointMatOffsets[f][p + 1]) { 5384d3d1a6afSToby Isaac PetscInt nRows = newPointOffsets[f][p+1]-rStart; 5385d3d1a6afSToby Isaac const PetscScalar *PETSC_RESTRICT mat = pointMat[f] + pointMatOffsets[f][p]; 5386d3d1a6afSToby Isaac 5387d3d1a6afSToby Isaac for (r = 0; r < nRows; r++) { 5388d3d1a6afSToby Isaac for (c = 0; c < newNumIndices; c++) { 5389d3d1a6afSToby Isaac for (k = 0; k < dof; k++) { 5390d3d1a6afSToby Isaac newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c]; 5391d3d1a6afSToby Isaac } 5392d3d1a6afSToby Isaac } 5393d3d1a6afSToby Isaac } 5394d3d1a6afSToby Isaac } 5395d3d1a6afSToby Isaac else { 5396d3d1a6afSToby Isaac /* copy this row as is */ 5397d3d1a6afSToby Isaac for (r = 0; r < dof; r++) { 5398d3d1a6afSToby Isaac for (c = 0; c < newNumIndices; c++) { 5399d3d1a6afSToby Isaac newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c]; 5400d3d1a6afSToby Isaac } 5401d3d1a6afSToby Isaac } 5402d3d1a6afSToby Isaac } 5403d3d1a6afSToby Isaac oldOff += dof; 5404d3d1a6afSToby Isaac } 5405d3d1a6afSToby Isaac } 5406d3d1a6afSToby Isaac } 5407d3d1a6afSToby Isaac else { 5408d3d1a6afSToby Isaac PetscInt oldOff = 0; 5409d3d1a6afSToby Isaac 5410d3d1a6afSToby Isaac for (p = 0; p < numPoints; p++) { 5411d3d1a6afSToby Isaac PetscInt rStart = newPointOffsets[0][p]; 5412d3d1a6afSToby Isaac PetscInt b = points[2 * p]; 5413d3d1a6afSToby Isaac PetscInt c, r, k; 5414d3d1a6afSToby Isaac PetscInt dof; 5415d3d1a6afSToby Isaac 5416d3d1a6afSToby Isaac ierr = PetscSectionGetDof(section,b,&dof);CHKERRQ(ierr); 5417d3d1a6afSToby Isaac if (pointMatOffsets[0][p] < pointMatOffsets[0][p + 1]) { 5418d3d1a6afSToby Isaac PetscInt nRows = newPointOffsets[0][p+1]-rStart; 5419d3d1a6afSToby Isaac const PetscScalar *PETSC_RESTRICT mat = pointMat[0] + pointMatOffsets[0][p]; 5420d3d1a6afSToby Isaac 5421d3d1a6afSToby Isaac for (r = 0; r < nRows; r++) { 5422d3d1a6afSToby Isaac for (c = 0; c < newNumIndices; c++) { 5423d3d1a6afSToby Isaac for (k = 0; k < dof; k++) { 5424d3d1a6afSToby Isaac newValues[(rStart + r) * newNumIndices + c] += mat[k * nRows + r] * tmpValues[(oldOff + k) * newNumIndices + c]; 5425d3d1a6afSToby Isaac } 5426d3d1a6afSToby Isaac } 5427d3d1a6afSToby Isaac } 5428d3d1a6afSToby Isaac } 5429d3d1a6afSToby Isaac else { 5430d3d1a6afSToby Isaac /* copy this row as is */ 54319fc93327SToby Isaac for (r = 0; r < dof; r++) { 5432d3d1a6afSToby Isaac for (c = 0; c < newNumIndices; c++) { 5433d3d1a6afSToby Isaac newValues[(rStart + r) * newNumIndices + c] = tmpValues[(oldOff + r) * newNumIndices + c]; 5434d3d1a6afSToby Isaac } 5435d3d1a6afSToby Isaac } 5436d3d1a6afSToby Isaac } 5437d3d1a6afSToby Isaac oldOff += dof; 5438d3d1a6afSToby Isaac } 5439d3d1a6afSToby Isaac } 5440d3d1a6afSToby Isaac 544169291d52SBarry Smith ierr = DMRestoreWorkArray(dm,newNumIndices*numIndices,MPIU_SCALAR,&tmpValues);CHKERRQ(ierr); 54426ecaa68aSToby Isaac } 54436ecaa68aSToby Isaac else { 54446ecaa68aSToby Isaac newValues = tmpValues; 54456ecaa68aSToby Isaac } 54466ecaa68aSToby Isaac } 54476ecaa68aSToby Isaac 5448d3d1a6afSToby Isaac /* clean up */ 544969291d52SBarry Smith ierr = DMRestoreWorkArray(dm,maxDof,MPIU_INT,&indices);CHKERRQ(ierr); 545069291d52SBarry Smith ierr = DMRestoreWorkArray(dm,maxAnchor*maxDof,MPIU_INT,&newIndices);CHKERRQ(ierr); 54516ecaa68aSToby Isaac 5452d3d1a6afSToby Isaac if (numFields) { 5453d3d1a6afSToby Isaac for (f = 0; f < numFields; f++) { 545469291d52SBarry Smith ierr = DMRestoreWorkArray(dm,pointMatOffsets[f][numPoints],MPIU_SCALAR,&pointMat[f]);CHKERRQ(ierr); 545569291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[f]);CHKERRQ(ierr); 545669291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[f]);CHKERRQ(ierr); 5457d3d1a6afSToby Isaac } 5458d3d1a6afSToby Isaac } 5459d3d1a6afSToby Isaac else { 546069291d52SBarry Smith ierr = DMRestoreWorkArray(dm,pointMatOffsets[0][numPoints],MPIU_SCALAR,&pointMat[0]);CHKERRQ(ierr); 546169291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&pointMatOffsets[0]);CHKERRQ(ierr); 546269291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numPoints+1,MPIU_INT,&newPointOffsets[0]);CHKERRQ(ierr); 5463d3d1a6afSToby Isaac } 5464d3d1a6afSToby Isaac ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr); 5465d3d1a6afSToby Isaac 5466d3d1a6afSToby Isaac /* output */ 54676ecaa68aSToby Isaac if (outPoints) { 5468d3d1a6afSToby Isaac *outPoints = newPoints; 54696ecaa68aSToby Isaac } 54706ecaa68aSToby Isaac else { 547169291d52SBarry Smith ierr = DMRestoreWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr); 54726ecaa68aSToby Isaac } 547331620726SToby Isaac if (outValues) { 5474d3d1a6afSToby Isaac *outValues = newValues; 54756ecaa68aSToby Isaac } 54766ecaa68aSToby Isaac for (f = 0; f <= numFields; f++) { 5477d3d1a6afSToby Isaac offsets[f] = newOffsets[f]; 5478d3d1a6afSToby Isaac } 5479d3d1a6afSToby Isaac PetscFunctionReturn(0); 5480d3d1a6afSToby Isaac } 5481d3d1a6afSToby Isaac 54827cd05799SMatthew G. Knepley /*@C 5483a87adde4SMatthew G. Knepley DMPlexGetClosureIndices - Get the global indices in a vector v for all points in the closure of the given point 54847cd05799SMatthew G. Knepley 54857cd05799SMatthew G. Knepley Not collective 54867cd05799SMatthew G. Knepley 54877cd05799SMatthew G. Knepley Input Parameters: 54887cd05799SMatthew G. Knepley + dm - The DM 54897cd05799SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section 54907cd05799SMatthew G. Knepley . globalSection - The section describing the parallel layout in v, or NULL to use the default section 54917cd05799SMatthew G. Knepley - point - The mesh point 54927cd05799SMatthew G. Knepley 54937cd05799SMatthew G. Knepley Output parameters: 54947cd05799SMatthew G. Knepley + numIndices - The number of indices 54957cd05799SMatthew G. Knepley . indices - The indices 54967cd05799SMatthew G. Knepley - outOffsets - Field offset if not NULL 54977cd05799SMatthew G. Knepley 54987cd05799SMatthew G. Knepley Note: Must call DMPlexRestoreClosureIndices() to free allocated memory 54997cd05799SMatthew G. Knepley 55007cd05799SMatthew G. Knepley Level: advanced 55017cd05799SMatthew G. Knepley 55027cd05799SMatthew G. Knepley .seealso DMPlexRestoreClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure() 55037cd05799SMatthew G. Knepley @*/ 55046ecaa68aSToby Isaac PetscErrorCode DMPlexGetClosureIndices(DM dm, PetscSection section, PetscSection globalSection, PetscInt point, PetscInt *numIndices, PetscInt **indices, PetscInt *outOffsets) 55057773e69fSMatthew G. Knepley { 55067773e69fSMatthew G. Knepley PetscSection clSection; 55077773e69fSMatthew G. Knepley IS clPoints; 55087773e69fSMatthew G. Knepley const PetscInt *clp; 55094acb8e1eSToby Isaac const PetscInt **perms[32] = {NULL}; 55107773e69fSMatthew G. Knepley PetscInt *points = NULL, *pointsNew; 55117773e69fSMatthew G. Knepley PetscInt numPoints, numPointsNew; 55127773e69fSMatthew G. Knepley PetscInt offsets[32]; 55137773e69fSMatthew G. Knepley PetscInt Nf, Nind, NindNew, off, globalOff, f, p; 55147773e69fSMatthew G. Knepley PetscErrorCode ierr; 55157773e69fSMatthew G. Knepley 55167773e69fSMatthew G. Knepley PetscFunctionBegin; 55177773e69fSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 55187773e69fSMatthew G. Knepley PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 55197773e69fSMatthew G. Knepley PetscValidHeaderSpecific(globalSection, PETSC_SECTION_CLASSID, 3); 55207773e69fSMatthew G. Knepley if (numIndices) PetscValidPointer(numIndices, 4); 55217773e69fSMatthew G. Knepley PetscValidPointer(indices, 5); 55227773e69fSMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr); 55237773e69fSMatthew G. Knepley if (Nf > 31) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", Nf); 55247773e69fSMatthew G. Knepley ierr = PetscMemzero(offsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 55257773e69fSMatthew G. Knepley /* Get points in closure */ 5526923c78e0SToby Isaac ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 55277773e69fSMatthew G. Knepley /* Get number of indices and indices per field */ 55287773e69fSMatthew G. Knepley for (p = 0, Nind = 0; p < numPoints*2; p += 2) { 55297773e69fSMatthew G. Knepley PetscInt dof, fdof; 55307773e69fSMatthew G. Knepley 55317773e69fSMatthew G. Knepley ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr); 55327773e69fSMatthew G. Knepley for (f = 0; f < Nf; ++f) { 55337773e69fSMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr); 55347773e69fSMatthew G. Knepley offsets[f+1] += fdof; 55357773e69fSMatthew G. Knepley } 55367773e69fSMatthew G. Knepley Nind += dof; 55377773e69fSMatthew G. Knepley } 55387773e69fSMatthew G. Knepley for (f = 1; f < Nf; ++f) offsets[f+1] += offsets[f]; 55398ccfff9cSToby Isaac if (Nf && offsets[Nf] != Nind) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", offsets[Nf], Nind); 55404acb8e1eSToby Isaac if (!Nf) offsets[1] = Nind; 55414acb8e1eSToby Isaac /* Get dual space symmetries */ 55424acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,Nf); f++) { 55434acb8e1eSToby Isaac if (Nf) {ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55444acb8e1eSToby Isaac else {ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55454acb8e1eSToby Isaac } 55467773e69fSMatthew G. Knepley /* Correct for hanging node constraints */ 55477773e69fSMatthew G. Knepley { 55484acb8e1eSToby Isaac ierr = DMPlexAnchorsModifyMat(dm, section, numPoints, Nind, points, perms, NULL, &numPointsNew, &NindNew, &pointsNew, NULL, offsets, PETSC_TRUE);CHKERRQ(ierr); 55497773e69fSMatthew G. Knepley if (numPointsNew) { 55504acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,Nf); f++) { 55514acb8e1eSToby Isaac if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55524acb8e1eSToby Isaac else {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55534acb8e1eSToby Isaac } 55544acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,Nf); f++) { 55554acb8e1eSToby Isaac if (Nf) {ierr = PetscSectionGetFieldPointSyms(section,f,numPointsNew,pointsNew,&perms[f],NULL);CHKERRQ(ierr);} 55564acb8e1eSToby Isaac else {ierr = PetscSectionGetPointSyms(section,numPointsNew,pointsNew,&perms[f],NULL);CHKERRQ(ierr);} 55574acb8e1eSToby Isaac } 5558923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 55597773e69fSMatthew G. Knepley numPoints = numPointsNew; 55607773e69fSMatthew G. Knepley Nind = NindNew; 55617773e69fSMatthew G. Knepley points = pointsNew; 55627773e69fSMatthew G. Knepley } 55637773e69fSMatthew G. Knepley } 55647773e69fSMatthew G. Knepley /* Calculate indices */ 556569291d52SBarry Smith ierr = DMGetWorkArray(dm, Nind, MPIU_INT, indices);CHKERRQ(ierr); 55667773e69fSMatthew G. Knepley if (Nf) { 55676ecaa68aSToby Isaac if (outOffsets) { 55686ecaa68aSToby Isaac PetscInt f; 55696ecaa68aSToby Isaac 557046bdb399SToby Isaac for (f = 0; f <= Nf; f++) { 55716ecaa68aSToby Isaac outOffsets[f] = offsets[f]; 55726ecaa68aSToby Isaac } 55736ecaa68aSToby Isaac } 55744acb8e1eSToby Isaac for (p = 0; p < numPoints; p++) { 55754acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr); 55764acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, offsets, PETSC_FALSE, perms, p, *indices); 55777773e69fSMatthew G. Knepley } 55787773e69fSMatthew G. Knepley } else { 55794acb8e1eSToby Isaac for (p = 0, off = 0; p < numPoints; p++) { 55804acb8e1eSToby Isaac const PetscInt *perm = perms[0] ? perms[0][p] : NULL; 55814acb8e1eSToby Isaac 55824acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr); 55834acb8e1eSToby Isaac DMPlexGetIndicesPoint_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, *indices); 55847773e69fSMatthew G. Knepley } 55857773e69fSMatthew G. Knepley } 55867773e69fSMatthew G. Knepley /* Cleanup points */ 55874acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,Nf); f++) { 55884acb8e1eSToby Isaac if (Nf) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55894acb8e1eSToby Isaac else {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],NULL);CHKERRQ(ierr);} 55904acb8e1eSToby Isaac } 55917773e69fSMatthew G. Knepley if (numPointsNew) { 559269291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 2*numPointsNew, MPIU_INT, &pointsNew);CHKERRQ(ierr); 55937773e69fSMatthew G. Knepley } else { 5594923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 55957773e69fSMatthew G. Knepley } 55967773e69fSMatthew G. Knepley if (numIndices) *numIndices = Nind; 55977773e69fSMatthew G. Knepley PetscFunctionReturn(0); 55987773e69fSMatthew G. Knepley } 55997773e69fSMatthew G. Knepley 56007cd05799SMatthew G. Knepley /*@C 56017cd05799SMatthew G. Knepley DMPlexRestoreClosureIndices - Restore the indices in a vector v for all points in the closure of the given point 56027cd05799SMatthew G. Knepley 56037cd05799SMatthew G. Knepley Not collective 56047cd05799SMatthew G. Knepley 56057cd05799SMatthew G. Knepley Input Parameters: 56067cd05799SMatthew G. Knepley + dm - The DM 56077cd05799SMatthew G. Knepley . section - The section describing the layout in v, or NULL to use the default section 56087cd05799SMatthew G. Knepley . globalSection - The section describing the parallel layout in v, or NULL to use the default section 56097cd05799SMatthew G. Knepley . point - The mesh point 56107cd05799SMatthew G. Knepley . numIndices - The number of indices 56117cd05799SMatthew G. Knepley . indices - The indices 56127cd05799SMatthew G. Knepley - outOffsets - Field offset if not NULL 56137cd05799SMatthew G. Knepley 56147cd05799SMatthew G. Knepley Level: advanced 56157cd05799SMatthew G. Knepley 56167cd05799SMatthew G. Knepley .seealso DMPlexGetClosureIndices(), DMPlexVecGetClosure(), DMPlexMatSetClosure() 56177cd05799SMatthew G. Knepley @*/ 561846bdb399SToby Isaac PetscErrorCode DMPlexRestoreClosureIndices(DM dm, PetscSection section, PetscSection globalSection, PetscInt point, PetscInt *numIndices, PetscInt **indices,PetscInt *outOffsets) 56197773e69fSMatthew G. Knepley { 56207773e69fSMatthew G. Knepley PetscErrorCode ierr; 56217773e69fSMatthew G. Knepley 56227773e69fSMatthew G. Knepley PetscFunctionBegin; 56237773e69fSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 56247773e69fSMatthew G. Knepley PetscValidPointer(indices, 5); 562569291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 0, MPIU_INT, indices);CHKERRQ(ierr); 56267773e69fSMatthew G. Knepley PetscFunctionReturn(0); 56277773e69fSMatthew G. Knepley } 56287773e69fSMatthew G. Knepley 56297f5d1fdeSMatthew G. Knepley /*@C 56307f5d1fdeSMatthew G. Knepley DMPlexMatSetClosure - Set an array of the values on the closure of 'point' 56317f5d1fdeSMatthew G. Knepley 56327f5d1fdeSMatthew G. Knepley Not collective 56337f5d1fdeSMatthew G. Knepley 56347f5d1fdeSMatthew G. Knepley Input Parameters: 56357f5d1fdeSMatthew G. Knepley + dm - The DM 5636ebd6d717SJed Brown . section - The section describing the layout in v, or NULL to use the default section 5637ebd6d717SJed Brown . globalSection - The section describing the layout in v, or NULL to use the default global section 56387f5d1fdeSMatthew G. Knepley . A - The matrix 5639eaf898f9SPatrick Sanan . point - The point in the DM 56407f5d1fdeSMatthew G. Knepley . values - The array of values 56417f5d1fdeSMatthew G. Knepley - mode - The insert mode, where INSERT_ALL_VALUES and ADD_ALL_VALUES also overwrite boundary conditions 56427f5d1fdeSMatthew G. Knepley 56437f5d1fdeSMatthew G. Knepley Fortran Notes: 56447f5d1fdeSMatthew G. Knepley This routine is only available in Fortran 90, and you must include petsc.h90 in your code. 56457f5d1fdeSMatthew G. Knepley 56467f5d1fdeSMatthew G. Knepley Level: intermediate 56477f5d1fdeSMatthew G. Knepley 56487f5d1fdeSMatthew G. Knepley .seealso DMPlexVecGetClosure(), DMPlexVecSetClosure() 56497f5d1fdeSMatthew G. Knepley @*/ 56507c1f9639SMatthew G Knepley PetscErrorCode DMPlexMatSetClosure(DM dm, PetscSection section, PetscSection globalSection, Mat A, PetscInt point, const PetscScalar values[], InsertMode mode) 5651552f7358SJed Brown { 5652552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 56531b406b76SMatthew G. Knepley PetscSection clSection; 56541b406b76SMatthew G. Knepley IS clPoints; 5655d3d1a6afSToby Isaac PetscInt *points = NULL, *newPoints; 56561b406b76SMatthew G. Knepley const PetscInt *clp; 5657552f7358SJed Brown PetscInt *indices; 5658552f7358SJed Brown PetscInt offsets[32]; 56594acb8e1eSToby Isaac const PetscInt **perms[32] = {NULL}; 56604acb8e1eSToby Isaac const PetscScalar **flips[32] = {NULL}; 5661923c78e0SToby Isaac PetscInt numFields, numPoints, newNumPoints, numIndices, newNumIndices, dof, off, globalOff, p, f; 56624acb8e1eSToby Isaac PetscScalar *valCopy = NULL; 5663d3d1a6afSToby Isaac PetscScalar *newValues; 5664552f7358SJed Brown PetscErrorCode ierr; 5665552f7358SJed Brown 5666552f7358SJed Brown PetscFunctionBegin; 5667552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5668e87a4003SBarry Smith if (!section) {ierr = DMGetSection(dm, §ion);CHKERRQ(ierr);} 56693dc93601SMatthew G. Knepley PetscValidHeaderSpecific(section, PETSC_SECTION_CLASSID, 2); 5670e87a4003SBarry Smith if (!globalSection) {ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);} 56713dc93601SMatthew G. Knepley PetscValidHeaderSpecific(globalSection, PETSC_SECTION_CLASSID, 3); 56723dc93601SMatthew G. Knepley PetscValidHeaderSpecific(A, MAT_CLASSID, 4); 5673552f7358SJed Brown ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr); 567482f516ccSBarry Smith if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields); 5675552f7358SJed Brown ierr = PetscMemzero(offsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 5676923c78e0SToby Isaac ierr = DMPlexGetCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 5677552f7358SJed Brown for (p = 0, numIndices = 0; p < numPoints*2; p += 2) { 5678552f7358SJed Brown PetscInt fdof; 5679552f7358SJed Brown 5680552f7358SJed Brown ierr = PetscSectionGetDof(section, points[p], &dof);CHKERRQ(ierr); 5681552f7358SJed Brown for (f = 0; f < numFields; ++f) { 5682552f7358SJed Brown ierr = PetscSectionGetFieldDof(section, points[p], f, &fdof);CHKERRQ(ierr); 5683552f7358SJed Brown offsets[f+1] += fdof; 5684552f7358SJed Brown } 5685552f7358SJed Brown numIndices += dof; 5686552f7358SJed Brown } 56870d644c17SKarl Rupp for (f = 1; f < numFields; ++f) offsets[f+1] += offsets[f]; 56880d644c17SKarl Rupp 56898ccfff9cSToby Isaac if (numFields && offsets[numFields] != numIndices) SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", offsets[numFields], numIndices); 56904acb8e1eSToby Isaac /* Get symmetries */ 56914acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,numFields); f++) { 56924acb8e1eSToby Isaac if (numFields) {ierr = PetscSectionGetFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 56934acb8e1eSToby Isaac else {ierr = PetscSectionGetPointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 56944acb8e1eSToby Isaac if (values && flips[f]) { /* may need to apply sign changes to the element matrix */ 56954acb8e1eSToby Isaac PetscInt foffset = offsets[f]; 56964acb8e1eSToby Isaac 56974acb8e1eSToby Isaac for (p = 0; p < numPoints; p++) { 56984acb8e1eSToby Isaac PetscInt point = points[2*p], fdof; 56994acb8e1eSToby Isaac const PetscScalar *flip = flips[f] ? flips[f][p] : NULL; 57004acb8e1eSToby Isaac 57014acb8e1eSToby Isaac if (!numFields) { 57024acb8e1eSToby Isaac ierr = PetscSectionGetDof(section,point,&fdof);CHKERRQ(ierr); 57034acb8e1eSToby Isaac } else { 57044acb8e1eSToby Isaac ierr = PetscSectionGetFieldDof(section,point,f,&fdof);CHKERRQ(ierr); 57054acb8e1eSToby Isaac } 57064acb8e1eSToby Isaac if (flip) { 57074acb8e1eSToby Isaac PetscInt i, j, k; 57084acb8e1eSToby Isaac 57094acb8e1eSToby Isaac if (!valCopy) { 571069291d52SBarry Smith ierr = DMGetWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr); 57114acb8e1eSToby Isaac for (j = 0; j < numIndices * numIndices; j++) valCopy[j] = values[j]; 57124acb8e1eSToby Isaac values = valCopy; 57134acb8e1eSToby Isaac } 57144acb8e1eSToby Isaac for (i = 0; i < fdof; i++) { 5715775f7be2SToby Isaac PetscScalar fval = flip[i]; 57164acb8e1eSToby Isaac 57174acb8e1eSToby Isaac for (k = 0; k < numIndices; k++) { 57184acb8e1eSToby Isaac valCopy[numIndices * (foffset + i) + k] *= fval; 57194acb8e1eSToby Isaac valCopy[numIndices * k + (foffset + i)] *= fval; 57204acb8e1eSToby Isaac } 57214acb8e1eSToby Isaac } 57224acb8e1eSToby Isaac } 57234acb8e1eSToby Isaac foffset += fdof; 57244acb8e1eSToby Isaac } 57254acb8e1eSToby Isaac } 57264acb8e1eSToby Isaac } 57274acb8e1eSToby Isaac ierr = DMPlexAnchorsModifyMat(dm,section,numPoints,numIndices,points,perms,values,&newNumPoints,&newNumIndices,&newPoints,&newValues,offsets,PETSC_TRUE);CHKERRQ(ierr); 5728d3d1a6afSToby Isaac if (newNumPoints) { 57294acb8e1eSToby Isaac if (valCopy) { 573069291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr); 57314acb8e1eSToby Isaac } 57324acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,numFields); f++) { 57334acb8e1eSToby Isaac if (numFields) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 57344acb8e1eSToby Isaac else {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 57354acb8e1eSToby Isaac } 57364acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,numFields); f++) { 57374acb8e1eSToby Isaac if (numFields) {ierr = PetscSectionGetFieldPointSyms(section,f,newNumPoints,newPoints,&perms[f],&flips[f]);CHKERRQ(ierr);} 57384acb8e1eSToby Isaac else {ierr = PetscSectionGetPointSyms(section,newNumPoints,newPoints,&perms[f],&flips[f]);CHKERRQ(ierr);} 57394acb8e1eSToby Isaac } 5740923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 5741d3d1a6afSToby Isaac numPoints = newNumPoints; 5742d3d1a6afSToby Isaac numIndices = newNumIndices; 5743d3d1a6afSToby Isaac points = newPoints; 5744d3d1a6afSToby Isaac values = newValues; 5745d3d1a6afSToby Isaac } 574669291d52SBarry Smith ierr = DMGetWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr); 5747552f7358SJed Brown if (numFields) { 57484acb8e1eSToby Isaac for (p = 0; p < numPoints; p++) { 57494acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr); 57504acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, offsets, PETSC_FALSE, perms, p, indices); 5751552f7358SJed Brown } 5752552f7358SJed Brown } else { 57534acb8e1eSToby Isaac for (p = 0, off = 0; p < numPoints; p++) { 57544acb8e1eSToby Isaac const PetscInt *perm = perms[0] ? perms[0][p] : NULL; 57554acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalSection, points[2*p], &globalOff);CHKERRQ(ierr); 57564acb8e1eSToby Isaac DMPlexGetIndicesPoint_Internal(section, points[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, indices); 5757552f7358SJed Brown } 5758552f7358SJed Brown } 5759b0ecff45SMatthew G. Knepley if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr);} 5760552f7358SJed Brown ierr = MatSetValues(A, numIndices, indices, numIndices, indices, values, mode); 5761ab1d0545SMatthew G. Knepley if (mesh->printFEM > 1) { 5762ab1d0545SMatthew G. Knepley PetscInt i; 5763ab1d0545SMatthew G. Knepley ierr = PetscPrintf(PETSC_COMM_SELF, " Indices:");CHKERRQ(ierr); 57648ccfff9cSToby Isaac for (i = 0; i < numIndices; ++i) {ierr = PetscPrintf(PETSC_COMM_SELF, " %D", indices[i]);CHKERRQ(ierr);} 5765ab1d0545SMatthew G. Knepley ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr); 5766ab1d0545SMatthew G. Knepley } 5767552f7358SJed Brown if (ierr) { 5768552f7358SJed Brown PetscMPIInt rank; 5769552f7358SJed Brown PetscErrorCode ierr2; 5770552f7358SJed Brown 577182f516ccSBarry Smith ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr2); 5772e4b003c7SBarry Smith ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2); 5773b0ecff45SMatthew G. Knepley ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numIndices, indices, 0, NULL, values);CHKERRQ(ierr2); 577469291d52SBarry Smith ierr2 = DMRestoreWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr2); 5775552f7358SJed Brown CHKERRQ(ierr); 5776552f7358SJed Brown } 57774acb8e1eSToby Isaac for (f = 0; f < PetscMax(1,numFields); f++) { 57784acb8e1eSToby Isaac if (numFields) {ierr = PetscSectionRestoreFieldPointSyms(section,f,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 57794acb8e1eSToby Isaac else {ierr = PetscSectionRestorePointSyms(section,numPoints,points,&perms[f],&flips[f]);CHKERRQ(ierr);} 57804acb8e1eSToby Isaac } 5781d3d1a6afSToby Isaac if (newNumPoints) { 578269291d52SBarry Smith ierr = DMRestoreWorkArray(dm,newNumIndices*newNumIndices,MPIU_SCALAR,&newValues);CHKERRQ(ierr); 578369291d52SBarry Smith ierr = DMRestoreWorkArray(dm,2*newNumPoints,MPIU_INT,&newPoints);CHKERRQ(ierr); 5784d3d1a6afSToby Isaac } 5785d3d1a6afSToby Isaac else { 57864acb8e1eSToby Isaac if (valCopy) { 578769291d52SBarry Smith ierr = DMRestoreWorkArray(dm,numIndices*numIndices,MPIU_SCALAR,&valCopy);CHKERRQ(ierr); 57884acb8e1eSToby Isaac } 5789923c78e0SToby Isaac ierr = DMPlexRestoreCompressedClosure(dm,section,point,&numPoints,&points,&clSection,&clPoints,&clp);CHKERRQ(ierr); 5790d3d1a6afSToby Isaac } 579169291d52SBarry Smith ierr = DMRestoreWorkArray(dm, numIndices, MPIU_INT, &indices);CHKERRQ(ierr); 5792552f7358SJed Brown PetscFunctionReturn(0); 5793552f7358SJed Brown } 5794552f7358SJed Brown 5795de41b84cSMatthew 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) 5796de41b84cSMatthew G. Knepley { 5797de41b84cSMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dmf->data; 5798de41b84cSMatthew G. Knepley PetscInt *fpoints = NULL, *ftotpoints = NULL; 5799de41b84cSMatthew G. Knepley PetscInt *cpoints = NULL; 5800de41b84cSMatthew G. Knepley PetscInt *findices, *cindices; 5801de41b84cSMatthew G. Knepley PetscInt foffsets[32], coffsets[32]; 5802de41b84cSMatthew G. Knepley CellRefiner cellRefiner; 58034ca5e9f5SMatthew G. Knepley PetscInt numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f; 5804de41b84cSMatthew G. Knepley PetscErrorCode ierr; 5805de41b84cSMatthew G. Knepley 5806de41b84cSMatthew G. Knepley PetscFunctionBegin; 5807de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(dmf, DM_CLASSID, 1); 5808de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(dmc, DM_CLASSID, 4); 5809e87a4003SBarry Smith if (!fsection) {ierr = DMGetSection(dmf, &fsection);CHKERRQ(ierr);} 5810de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2); 5811e87a4003SBarry Smith if (!csection) {ierr = DMGetSection(dmc, &csection);CHKERRQ(ierr);} 5812de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5); 5813e87a4003SBarry Smith if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);} 5814de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3); 5815e87a4003SBarry Smith if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);} 5816de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6); 5817de41b84cSMatthew G. Knepley PetscValidHeaderSpecific(A, MAT_CLASSID, 7); 5818de41b84cSMatthew G. Knepley ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr); 5819de41b84cSMatthew G. Knepley if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields); 5820de41b84cSMatthew G. Knepley ierr = PetscMemzero(foffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 5821de41b84cSMatthew G. Knepley ierr = PetscMemzero(coffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 5822de41b84cSMatthew G. Knepley /* Column indices */ 5823de41b84cSMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr); 58244ca5e9f5SMatthew G. Knepley maxFPoints = numCPoints; 5825de41b84cSMatthew G. Knepley /* Compress out points not in the section */ 5826de41b84cSMatthew G. Knepley /* TODO: Squeeze out points with 0 dof as well */ 5827de41b84cSMatthew G. Knepley ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr); 5828de41b84cSMatthew G. Knepley for (p = 0, q = 0; p < numCPoints*2; p += 2) { 5829de41b84cSMatthew G. Knepley if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) { 5830de41b84cSMatthew G. Knepley cpoints[q*2] = cpoints[p]; 5831de41b84cSMatthew G. Knepley cpoints[q*2+1] = cpoints[p+1]; 5832de41b84cSMatthew G. Knepley ++q; 5833de41b84cSMatthew G. Knepley } 5834de41b84cSMatthew G. Knepley } 5835de41b84cSMatthew G. Knepley numCPoints = q; 5836de41b84cSMatthew G. Knepley for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) { 5837de41b84cSMatthew G. Knepley PetscInt fdof; 5838de41b84cSMatthew G. Knepley 5839de41b84cSMatthew G. Knepley ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr); 58404ca5e9f5SMatthew G. Knepley if (!dof) continue; 5841de41b84cSMatthew G. Knepley for (f = 0; f < numFields; ++f) { 5842de41b84cSMatthew G. Knepley ierr = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr); 5843de41b84cSMatthew G. Knepley coffsets[f+1] += fdof; 5844de41b84cSMatthew G. Knepley } 5845de41b84cSMatthew G. Knepley numCIndices += dof; 5846de41b84cSMatthew G. Knepley } 5847de41b84cSMatthew G. Knepley for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f]; 5848de41b84cSMatthew G. Knepley /* Row indices */ 5849de41b84cSMatthew G. Knepley ierr = DMPlexGetCellRefiner_Internal(dmc, &cellRefiner);CHKERRQ(ierr); 5850de41b84cSMatthew G. Knepley ierr = CellRefinerGetAffineTransforms_Internal(cellRefiner, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr); 585169291d52SBarry Smith ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr); 5852de41b84cSMatthew G. Knepley for (r = 0, q = 0; r < numSubcells; ++r) { 5853de41b84cSMatthew G. Knepley /* TODO Map from coarse to fine cells */ 5854de41b84cSMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr); 5855de41b84cSMatthew G. Knepley /* Compress out points not in the section */ 5856de41b84cSMatthew G. Knepley ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr); 5857de41b84cSMatthew G. Knepley for (p = 0; p < numFPoints*2; p += 2) { 5858de41b84cSMatthew G. Knepley if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) { 58594ca5e9f5SMatthew G. Knepley ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr); 58604ca5e9f5SMatthew G. Knepley if (!dof) continue; 58614ca5e9f5SMatthew G. Knepley for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break; 58624ca5e9f5SMatthew G. Knepley if (s < q) continue; 5863de41b84cSMatthew G. Knepley ftotpoints[q*2] = fpoints[p]; 5864de41b84cSMatthew G. Knepley ftotpoints[q*2+1] = fpoints[p+1]; 5865de41b84cSMatthew G. Knepley ++q; 5866de41b84cSMatthew G. Knepley } 5867de41b84cSMatthew G. Knepley } 5868de41b84cSMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr); 5869de41b84cSMatthew G. Knepley } 5870de41b84cSMatthew G. Knepley numFPoints = q; 5871de41b84cSMatthew G. Knepley for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) { 5872de41b84cSMatthew G. Knepley PetscInt fdof; 5873de41b84cSMatthew G. Knepley 5874de41b84cSMatthew G. Knepley ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr); 58754ca5e9f5SMatthew G. Knepley if (!dof) continue; 5876de41b84cSMatthew G. Knepley for (f = 0; f < numFields; ++f) { 5877de41b84cSMatthew G. Knepley ierr = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr); 5878de41b84cSMatthew G. Knepley foffsets[f+1] += fdof; 5879de41b84cSMatthew G. Knepley } 5880de41b84cSMatthew G. Knepley numFIndices += dof; 5881de41b84cSMatthew G. Knepley } 5882de41b84cSMatthew G. Knepley for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f]; 5883de41b84cSMatthew G. Knepley 58848ccfff9cSToby Isaac if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices); 58858ccfff9cSToby Isaac if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices); 588669291d52SBarry Smith ierr = DMGetWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr); 588769291d52SBarry Smith ierr = DMGetWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr); 5888de41b84cSMatthew G. Knepley if (numFields) { 58894acb8e1eSToby Isaac const PetscInt **permsF[32] = {NULL}; 58904acb8e1eSToby Isaac const PetscInt **permsC[32] = {NULL}; 58914acb8e1eSToby Isaac 58924acb8e1eSToby Isaac for (f = 0; f < numFields; f++) { 58934acb8e1eSToby Isaac ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr); 58944acb8e1eSToby Isaac ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr); 5895de41b84cSMatthew G. Knepley } 58964acb8e1eSToby Isaac for (p = 0; p < numFPoints; p++) { 58974acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr); 58984acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, findices); 58994acb8e1eSToby Isaac } 59004acb8e1eSToby Isaac for (p = 0; p < numCPoints; p++) { 59014acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr); 59024acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cindices); 59034acb8e1eSToby Isaac } 59044acb8e1eSToby Isaac for (f = 0; f < numFields; f++) { 59054acb8e1eSToby Isaac ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr); 59064acb8e1eSToby Isaac ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr); 5907de41b84cSMatthew G. Knepley } 5908de41b84cSMatthew G. Knepley } else { 59094acb8e1eSToby Isaac const PetscInt **permsF = NULL; 59104acb8e1eSToby Isaac const PetscInt **permsC = NULL; 59114acb8e1eSToby Isaac 59124acb8e1eSToby Isaac ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr); 59134acb8e1eSToby Isaac ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr); 59144acb8e1eSToby Isaac for (p = 0, off = 0; p < numFPoints; p++) { 59154acb8e1eSToby Isaac const PetscInt *perm = permsF ? permsF[p] : NULL; 59164acb8e1eSToby Isaac 59174acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr); 59184acb8e1eSToby Isaac ierr = DMPlexGetIndicesPoint_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, findices);CHKERRQ(ierr); 5919de41b84cSMatthew G. Knepley } 59204acb8e1eSToby Isaac for (p = 0, off = 0; p < numCPoints; p++) { 59214acb8e1eSToby Isaac const PetscInt *perm = permsC ? permsC[p] : NULL; 59224acb8e1eSToby Isaac 59234acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr); 59244acb8e1eSToby Isaac ierr = DMPlexGetIndicesPoint_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cindices);CHKERRQ(ierr); 5925de41b84cSMatthew G. Knepley } 59264acb8e1eSToby Isaac ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr); 59274acb8e1eSToby Isaac ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr); 5928de41b84cSMatthew G. Knepley } 5929de41b84cSMatthew G. Knepley if (mesh->printSetValues) {ierr = DMPlexPrintMatSetValues(PETSC_VIEWER_STDOUT_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr);} 59304acb8e1eSToby Isaac /* TODO: flips */ 5931de41b84cSMatthew G. Knepley ierr = MatSetValues(A, numFIndices, findices, numCIndices, cindices, values, mode); 5932de41b84cSMatthew G. Knepley if (ierr) { 5933de41b84cSMatthew G. Knepley PetscMPIInt rank; 5934de41b84cSMatthew G. Knepley PetscErrorCode ierr2; 5935de41b84cSMatthew G. Knepley 5936de41b84cSMatthew G. Knepley ierr2 = MPI_Comm_rank(PetscObjectComm((PetscObject)A), &rank);CHKERRQ(ierr2); 5937e4b003c7SBarry Smith ierr2 = (*PetscErrorPrintf)("[%d]ERROR in DMPlexMatSetClosure\n", rank);CHKERRQ(ierr2); 5938de41b84cSMatthew G. Knepley ierr2 = DMPlexPrintMatSetValues(PETSC_VIEWER_STDERR_SELF, A, point, numFIndices, findices, numCIndices, cindices, values);CHKERRQ(ierr2); 593969291d52SBarry Smith ierr2 = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr2); 594069291d52SBarry Smith ierr2 = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr2); 5941de41b84cSMatthew G. Knepley CHKERRQ(ierr); 5942de41b84cSMatthew G. Knepley } 594369291d52SBarry Smith ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr); 5944de41b84cSMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr); 594569291d52SBarry Smith ierr = DMRestoreWorkArray(dmf, numFIndices, MPIU_INT, &findices);CHKERRQ(ierr); 594669291d52SBarry Smith ierr = DMRestoreWorkArray(dmc, numCIndices, MPIU_INT, &cindices);CHKERRQ(ierr); 5947de41b84cSMatthew G. Knepley PetscFunctionReturn(0); 5948de41b84cSMatthew G. Knepley } 5949de41b84cSMatthew G. Knepley 59507c927364SMatthew G. Knepley PetscErrorCode DMPlexMatGetClosureIndicesRefined(DM dmf, PetscSection fsection, PetscSection globalFSection, DM dmc, PetscSection csection, PetscSection globalCSection, PetscInt point, PetscInt cindices[], PetscInt findices[]) 59517c927364SMatthew G. Knepley { 59527c927364SMatthew G. Knepley PetscInt *fpoints = NULL, *ftotpoints = NULL; 59537c927364SMatthew G. Knepley PetscInt *cpoints = NULL; 59547c927364SMatthew G. Knepley PetscInt foffsets[32], coffsets[32]; 59557c927364SMatthew G. Knepley CellRefiner cellRefiner; 59567c927364SMatthew G. Knepley PetscInt numFields, numSubcells, maxFPoints, numFPoints, numCPoints, numFIndices, numCIndices, dof, off, globalOff, pStart, pEnd, p, q, r, s, f; 59577c927364SMatthew G. Knepley PetscErrorCode ierr; 59587c927364SMatthew G. Knepley 59597c927364SMatthew G. Knepley PetscFunctionBegin; 59607c927364SMatthew G. Knepley PetscValidHeaderSpecific(dmf, DM_CLASSID, 1); 59617c927364SMatthew G. Knepley PetscValidHeaderSpecific(dmc, DM_CLASSID, 4); 5962e87a4003SBarry Smith if (!fsection) {ierr = DMGetSection(dmf, &fsection);CHKERRQ(ierr);} 59637c927364SMatthew G. Knepley PetscValidHeaderSpecific(fsection, PETSC_SECTION_CLASSID, 2); 5964e87a4003SBarry Smith if (!csection) {ierr = DMGetSection(dmc, &csection);CHKERRQ(ierr);} 59657c927364SMatthew G. Knepley PetscValidHeaderSpecific(csection, PETSC_SECTION_CLASSID, 5); 5966e87a4003SBarry Smith if (!globalFSection) {ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);} 59677c927364SMatthew G. Knepley PetscValidHeaderSpecific(globalFSection, PETSC_SECTION_CLASSID, 3); 5968e87a4003SBarry Smith if (!globalCSection) {ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);} 59697c927364SMatthew G. Knepley PetscValidHeaderSpecific(globalCSection, PETSC_SECTION_CLASSID, 6); 59707c927364SMatthew G. Knepley ierr = PetscSectionGetNumFields(fsection, &numFields);CHKERRQ(ierr); 59717c927364SMatthew G. Knepley if (numFields > 31) SETERRQ1(PetscObjectComm((PetscObject)dmf), PETSC_ERR_ARG_OUTOFRANGE, "Number of fields %D limited to 31", numFields); 59727c927364SMatthew G. Knepley ierr = PetscMemzero(foffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 59737c927364SMatthew G. Knepley ierr = PetscMemzero(coffsets, 32 * sizeof(PetscInt));CHKERRQ(ierr); 59747c927364SMatthew G. Knepley /* Column indices */ 59757c927364SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr); 59767c927364SMatthew G. Knepley maxFPoints = numCPoints; 59777c927364SMatthew G. Knepley /* Compress out points not in the section */ 59787c927364SMatthew G. Knepley /* TODO: Squeeze out points with 0 dof as well */ 59797c927364SMatthew G. Knepley ierr = PetscSectionGetChart(csection, &pStart, &pEnd);CHKERRQ(ierr); 59807c927364SMatthew G. Knepley for (p = 0, q = 0; p < numCPoints*2; p += 2) { 59817c927364SMatthew G. Knepley if ((cpoints[p] >= pStart) && (cpoints[p] < pEnd)) { 59827c927364SMatthew G. Knepley cpoints[q*2] = cpoints[p]; 59837c927364SMatthew G. Knepley cpoints[q*2+1] = cpoints[p+1]; 59847c927364SMatthew G. Knepley ++q; 59857c927364SMatthew G. Knepley } 59867c927364SMatthew G. Knepley } 59877c927364SMatthew G. Knepley numCPoints = q; 59887c927364SMatthew G. Knepley for (p = 0, numCIndices = 0; p < numCPoints*2; p += 2) { 59897c927364SMatthew G. Knepley PetscInt fdof; 59907c927364SMatthew G. Knepley 59917c927364SMatthew G. Knepley ierr = PetscSectionGetDof(csection, cpoints[p], &dof);CHKERRQ(ierr); 59927c927364SMatthew G. Knepley if (!dof) continue; 59937c927364SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 59947c927364SMatthew G. Knepley ierr = PetscSectionGetFieldDof(csection, cpoints[p], f, &fdof);CHKERRQ(ierr); 59957c927364SMatthew G. Knepley coffsets[f+1] += fdof; 59967c927364SMatthew G. Knepley } 59977c927364SMatthew G. Knepley numCIndices += dof; 59987c927364SMatthew G. Knepley } 59997c927364SMatthew G. Knepley for (f = 1; f < numFields; ++f) coffsets[f+1] += coffsets[f]; 60007c927364SMatthew G. Knepley /* Row indices */ 60017c927364SMatthew G. Knepley ierr = DMPlexGetCellRefiner_Internal(dmc, &cellRefiner);CHKERRQ(ierr); 60027c927364SMatthew G. Knepley ierr = CellRefinerGetAffineTransforms_Internal(cellRefiner, &numSubcells, NULL, NULL, NULL);CHKERRQ(ierr); 600369291d52SBarry Smith ierr = DMGetWorkArray(dmf, maxFPoints*2*numSubcells, MPIU_INT, &ftotpoints);CHKERRQ(ierr); 60047c927364SMatthew G. Knepley for (r = 0, q = 0; r < numSubcells; ++r) { 60057c927364SMatthew G. Knepley /* TODO Map from coarse to fine cells */ 60067c927364SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dmf, point*numSubcells + r, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr); 60077c927364SMatthew G. Knepley /* Compress out points not in the section */ 60087c927364SMatthew G. Knepley ierr = PetscSectionGetChart(fsection, &pStart, &pEnd);CHKERRQ(ierr); 60097c927364SMatthew G. Knepley for (p = 0; p < numFPoints*2; p += 2) { 60107c927364SMatthew G. Knepley if ((fpoints[p] >= pStart) && (fpoints[p] < pEnd)) { 60117c927364SMatthew G. Knepley ierr = PetscSectionGetDof(fsection, fpoints[p], &dof);CHKERRQ(ierr); 60127c927364SMatthew G. Knepley if (!dof) continue; 60137c927364SMatthew G. Knepley for (s = 0; s < q; ++s) if (fpoints[p] == ftotpoints[s*2]) break; 60147c927364SMatthew G. Knepley if (s < q) continue; 60157c927364SMatthew G. Knepley ftotpoints[q*2] = fpoints[p]; 60167c927364SMatthew G. Knepley ftotpoints[q*2+1] = fpoints[p+1]; 60177c927364SMatthew G. Knepley ++q; 60187c927364SMatthew G. Knepley } 60197c927364SMatthew G. Knepley } 60207c927364SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dmf, point, PETSC_TRUE, &numFPoints, &fpoints);CHKERRQ(ierr); 60217c927364SMatthew G. Knepley } 60227c927364SMatthew G. Knepley numFPoints = q; 60237c927364SMatthew G. Knepley for (p = 0, numFIndices = 0; p < numFPoints*2; p += 2) { 60247c927364SMatthew G. Knepley PetscInt fdof; 60257c927364SMatthew G. Knepley 60267c927364SMatthew G. Knepley ierr = PetscSectionGetDof(fsection, ftotpoints[p], &dof);CHKERRQ(ierr); 60277c927364SMatthew G. Knepley if (!dof) continue; 60287c927364SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 60297c927364SMatthew G. Knepley ierr = PetscSectionGetFieldDof(fsection, ftotpoints[p], f, &fdof);CHKERRQ(ierr); 60307c927364SMatthew G. Knepley foffsets[f+1] += fdof; 60317c927364SMatthew G. Knepley } 60327c927364SMatthew G. Knepley numFIndices += dof; 60337c927364SMatthew G. Knepley } 60347c927364SMatthew G. Knepley for (f = 1; f < numFields; ++f) foffsets[f+1] += foffsets[f]; 60357c927364SMatthew G. Knepley 60368ccfff9cSToby Isaac if (numFields && foffsets[numFields] != numFIndices) SETERRQ2(PetscObjectComm((PetscObject)dmf), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", foffsets[numFields], numFIndices); 60378ccfff9cSToby Isaac if (numFields && coffsets[numFields] != numCIndices) SETERRQ2(PetscObjectComm((PetscObject)dmc), PETSC_ERR_PLIB, "Invalid size for closure %D should be %D", coffsets[numFields], numCIndices); 60387c927364SMatthew G. Knepley if (numFields) { 60394acb8e1eSToby Isaac const PetscInt **permsF[32] = {NULL}; 60404acb8e1eSToby Isaac const PetscInt **permsC[32] = {NULL}; 60414acb8e1eSToby Isaac 60424acb8e1eSToby Isaac for (f = 0; f < numFields; f++) { 60434acb8e1eSToby Isaac ierr = PetscSectionGetFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr); 60444acb8e1eSToby Isaac ierr = PetscSectionGetFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr); 60457c927364SMatthew G. Knepley } 60464acb8e1eSToby Isaac for (p = 0; p < numFPoints; p++) { 60474acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr); 60484acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, foffsets, PETSC_FALSE, permsF, p, findices); 60494acb8e1eSToby Isaac } 60504acb8e1eSToby Isaac for (p = 0; p < numCPoints; p++) { 60514acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr); 60524acb8e1eSToby Isaac DMPlexGetIndicesPointFields_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, coffsets, PETSC_FALSE, permsC, p, cindices); 60534acb8e1eSToby Isaac } 60544acb8e1eSToby Isaac for (f = 0; f < numFields; f++) { 60554acb8e1eSToby Isaac ierr = PetscSectionRestoreFieldPointSyms(fsection,f,numFPoints,ftotpoints,&permsF[f],NULL);CHKERRQ(ierr); 60564acb8e1eSToby Isaac ierr = PetscSectionRestoreFieldPointSyms(csection,f,numCPoints,cpoints,&permsC[f],NULL);CHKERRQ(ierr); 60577c927364SMatthew G. Knepley } 60587c927364SMatthew G. Knepley } else { 60594acb8e1eSToby Isaac const PetscInt **permsF = NULL; 60604acb8e1eSToby Isaac const PetscInt **permsC = NULL; 60614acb8e1eSToby Isaac 60624acb8e1eSToby Isaac ierr = PetscSectionGetPointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr); 60634acb8e1eSToby Isaac ierr = PetscSectionGetPointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr); 60644acb8e1eSToby Isaac for (p = 0, off = 0; p < numFPoints; p++) { 60654acb8e1eSToby Isaac const PetscInt *perm = permsF ? permsF[p] : NULL; 60664acb8e1eSToby Isaac 60674acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalFSection, ftotpoints[2*p], &globalOff);CHKERRQ(ierr); 60684acb8e1eSToby Isaac DMPlexGetIndicesPoint_Internal(fsection, ftotpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, findices); 60697c927364SMatthew G. Knepley } 60704acb8e1eSToby Isaac for (p = 0, off = 0; p < numCPoints; p++) { 60714acb8e1eSToby Isaac const PetscInt *perm = permsC ? permsC[p] : NULL; 60724acb8e1eSToby Isaac 60734acb8e1eSToby Isaac ierr = PetscSectionGetOffset(globalCSection, cpoints[2*p], &globalOff);CHKERRQ(ierr); 60744acb8e1eSToby Isaac DMPlexGetIndicesPoint_Internal(csection, cpoints[2*p], globalOff < 0 ? -(globalOff+1) : globalOff, &off, PETSC_FALSE, perm, cindices); 60757c927364SMatthew G. Knepley } 60764acb8e1eSToby Isaac ierr = PetscSectionRestorePointSyms(fsection,numFPoints,ftotpoints,&permsF,NULL);CHKERRQ(ierr); 60774acb8e1eSToby Isaac ierr = PetscSectionRestorePointSyms(csection,numCPoints,cpoints,&permsC,NULL);CHKERRQ(ierr); 60787c927364SMatthew G. Knepley } 607969291d52SBarry Smith ierr = DMRestoreWorkArray(dmf, numCPoints*2*4, MPIU_INT, &ftotpoints);CHKERRQ(ierr); 60807c927364SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dmc, point, PETSC_TRUE, &numCPoints, &cpoints);CHKERRQ(ierr); 60817c927364SMatthew G. Knepley PetscFunctionReturn(0); 60827c927364SMatthew G. Knepley } 60837c927364SMatthew G. Knepley 6084f96281f8SMatthew G. Knepley /*@ 6085f96281f8SMatthew G. Knepley DMPlexGetHybridBounds - Get the first mesh point of each dimension which is a hybrid 6086f96281f8SMatthew G. Knepley 6087f96281f8SMatthew G. Knepley Input Parameter: 6088f96281f8SMatthew G. Knepley . dm - The DMPlex object 6089f96281f8SMatthew G. Knepley 6090f96281f8SMatthew G. Knepley Output Parameters: 6091f96281f8SMatthew G. Knepley + cMax - The first hybrid cell 6092dc5a3409SMatthew G. Knepley . fMax - The first hybrid face 6093dc5a3409SMatthew G. Knepley . eMax - The first hybrid edge 6094dc5a3409SMatthew G. Knepley - vMax - The first hybrid vertex 6095f96281f8SMatthew G. Knepley 6096f96281f8SMatthew G. Knepley Level: developer 6097f96281f8SMatthew G. Knepley 6098dc5a3409SMatthew G. Knepley .seealso DMPlexCreateHybridMesh(), DMPlexSetHybridBounds() 6099f96281f8SMatthew G. Knepley @*/ 6100770b213bSMatthew G Knepley PetscErrorCode DMPlexGetHybridBounds(DM dm, PetscInt *cMax, PetscInt *fMax, PetscInt *eMax, PetscInt *vMax) 6101552f7358SJed Brown { 6102552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 6103770b213bSMatthew G Knepley PetscInt dim; 6104770b213bSMatthew G Knepley PetscErrorCode ierr; 6105552f7358SJed Brown 6106552f7358SJed Brown PetscFunctionBegin; 6107552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6108c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 61097d5acc75SStefano Zampini if (dim < 0) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM dimension not yet set"); 6110770b213bSMatthew G Knepley if (cMax) *cMax = mesh->hybridPointMax[dim]; 61117d5acc75SStefano Zampini if (fMax) *fMax = mesh->hybridPointMax[PetscMax(dim-1,0)]; 6112770b213bSMatthew G Knepley if (eMax) *eMax = mesh->hybridPointMax[1]; 6113770b213bSMatthew G Knepley if (vMax) *vMax = mesh->hybridPointMax[0]; 6114552f7358SJed Brown PetscFunctionReturn(0); 6115552f7358SJed Brown } 6116552f7358SJed Brown 6117aeadca18SToby Isaac static PetscErrorCode DMPlexCreateDimStratum(DM dm, DMLabel depthLabel, DMLabel dimLabel, PetscInt d, PetscInt dMax) 61184a3e9fdbSToby Isaac { 61194a3e9fdbSToby Isaac IS is, his; 61207d5acc75SStefano Zampini PetscInt first = 0, stride; 61214a3e9fdbSToby Isaac PetscBool isStride; 61224a3e9fdbSToby Isaac PetscErrorCode ierr; 61234a3e9fdbSToby Isaac 61244a3e9fdbSToby Isaac PetscFunctionBegin; 61254a3e9fdbSToby Isaac ierr = DMLabelGetStratumIS(depthLabel, d, &is);CHKERRQ(ierr); 61264a3e9fdbSToby Isaac ierr = PetscObjectTypeCompare((PetscObject) is, ISSTRIDE, &isStride);CHKERRQ(ierr); 61274a3e9fdbSToby Isaac if (isStride) { 61284a3e9fdbSToby Isaac ierr = ISStrideGetInfo(is, &first, &stride);CHKERRQ(ierr); 61294a3e9fdbSToby Isaac } 61307d5acc75SStefano 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); 61314a3e9fdbSToby Isaac ierr = ISCreateStride(PETSC_COMM_SELF, (dMax - first), first, 1, &his);CHKERRQ(ierr); 6132aeadca18SToby Isaac ierr = DMLabelSetStratumIS(dimLabel, d, his);CHKERRQ(ierr); 61334a3e9fdbSToby Isaac ierr = ISDestroy(&his);CHKERRQ(ierr); 61344a3e9fdbSToby Isaac ierr = ISDestroy(&is);CHKERRQ(ierr); 61354a3e9fdbSToby Isaac PetscFunctionReturn(0); 61364a3e9fdbSToby Isaac } 61374a3e9fdbSToby Isaac 6138dc5a3409SMatthew G. Knepley /*@ 6139dc5a3409SMatthew G. Knepley DMPlexSetHybridBounds - Set the first mesh point of each dimension which is a hybrid 6140dc5a3409SMatthew G. Knepley 6141dc5a3409SMatthew G. Knepley Input Parameters: 6142dc5a3409SMatthew G. Knepley . dm - The DMPlex object 6143dc5a3409SMatthew G. Knepley . cMax - The first hybrid cell 6144dc5a3409SMatthew G. Knepley . fMax - The first hybrid face 6145dc5a3409SMatthew G. Knepley . eMax - The first hybrid edge 6146dc5a3409SMatthew G. Knepley - vMax - The first hybrid vertex 6147dc5a3409SMatthew G. Knepley 6148dc5a3409SMatthew G. Knepley Level: developer 6149dc5a3409SMatthew G. Knepley 6150dc5a3409SMatthew G. Knepley .seealso DMPlexCreateHybridMesh(), DMPlexGetHybridBounds() 6151dc5a3409SMatthew G. Knepley @*/ 6152770b213bSMatthew G Knepley PetscErrorCode DMPlexSetHybridBounds(DM dm, PetscInt cMax, PetscInt fMax, PetscInt eMax, PetscInt vMax) 6153552f7358SJed Brown { 6154552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 6155770b213bSMatthew G Knepley PetscInt dim; 6156770b213bSMatthew G Knepley PetscErrorCode ierr; 6157552f7358SJed Brown 6158552f7358SJed Brown PetscFunctionBegin; 6159552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6160c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 61617d5acc75SStefano Zampini if (dim < 0) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM dimension not yet set"); 6162770b213bSMatthew G Knepley if (cMax >= 0) mesh->hybridPointMax[dim] = cMax; 61637d5acc75SStefano Zampini if (fMax >= 0) mesh->hybridPointMax[PetscMax(dim-1,0)] = fMax; 6164770b213bSMatthew G Knepley if (eMax >= 0) mesh->hybridPointMax[1] = eMax; 6165770b213bSMatthew G Knepley if (vMax >= 0) mesh->hybridPointMax[0] = vMax; 6166552f7358SJed Brown PetscFunctionReturn(0); 6167552f7358SJed Brown } 6168552f7358SJed Brown 61697cd05799SMatthew G. Knepley /*@C 61707cd05799SMatthew G. Knepley DMPlexGetVTKCellHeight - Returns the height in the DAG used to determine which points are cells (normally 0) 61717cd05799SMatthew G. Knepley 61727cd05799SMatthew G. Knepley Input Parameter: 61737cd05799SMatthew G. Knepley . dm - The DMPlex object 61747cd05799SMatthew G. Knepley 61757cd05799SMatthew G. Knepley Output Parameter: 61767cd05799SMatthew G. Knepley . cellHeight - The height of a cell 61777cd05799SMatthew G. Knepley 61787cd05799SMatthew G. Knepley Level: developer 61797cd05799SMatthew G. Knepley 61807cd05799SMatthew G. Knepley .seealso DMPlexSetVTKCellHeight() 61817cd05799SMatthew G. Knepley @*/ 6182552f7358SJed Brown PetscErrorCode DMPlexGetVTKCellHeight(DM dm, PetscInt *cellHeight) 6183552f7358SJed Brown { 6184552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 6185552f7358SJed Brown 6186552f7358SJed Brown PetscFunctionBegin; 6187552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6188552f7358SJed Brown PetscValidPointer(cellHeight, 2); 6189552f7358SJed Brown *cellHeight = mesh->vtkCellHeight; 6190552f7358SJed Brown PetscFunctionReturn(0); 6191552f7358SJed Brown } 6192552f7358SJed Brown 61937cd05799SMatthew G. Knepley /*@C 61947cd05799SMatthew G. Knepley DMPlexSetVTKCellHeight - Sets the height in the DAG used to determine which points are cells (normally 0) 61957cd05799SMatthew G. Knepley 61967cd05799SMatthew G. Knepley Input Parameters: 61977cd05799SMatthew G. Knepley + dm - The DMPlex object 61987cd05799SMatthew G. Knepley - cellHeight - The height of a cell 61997cd05799SMatthew G. Knepley 62007cd05799SMatthew G. Knepley Level: developer 62017cd05799SMatthew G. Knepley 62027cd05799SMatthew G. Knepley .seealso DMPlexGetVTKCellHeight() 62037cd05799SMatthew G. Knepley @*/ 6204552f7358SJed Brown PetscErrorCode DMPlexSetVTKCellHeight(DM dm, PetscInt cellHeight) 6205552f7358SJed Brown { 6206552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 6207552f7358SJed Brown 6208552f7358SJed Brown PetscFunctionBegin; 6209552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6210552f7358SJed Brown mesh->vtkCellHeight = cellHeight; 6211552f7358SJed Brown PetscFunctionReturn(0); 6212552f7358SJed Brown } 6213552f7358SJed Brown 6214552f7358SJed Brown /* We can easily have a form that takes an IS instead */ 6215ef48cebcSMatthew G. Knepley static PetscErrorCode DMPlexCreateNumbering_Private(DM dm, PetscInt pStart, PetscInt pEnd, PetscInt shift, PetscInt *globalSize, PetscSF sf, IS *numbering) 6216552f7358SJed Brown { 6217552f7358SJed Brown PetscSection section, globalSection; 6218552f7358SJed Brown PetscInt *numbers, p; 6219552f7358SJed Brown PetscErrorCode ierr; 6220552f7358SJed Brown 6221552f7358SJed Brown PetscFunctionBegin; 622282f516ccSBarry Smith ierr = PetscSectionCreate(PetscObjectComm((PetscObject)dm), §ion);CHKERRQ(ierr); 6223552f7358SJed Brown ierr = PetscSectionSetChart(section, pStart, pEnd);CHKERRQ(ierr); 6224552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 6225552f7358SJed Brown ierr = PetscSectionSetDof(section, p, 1);CHKERRQ(ierr); 6226552f7358SJed Brown } 6227552f7358SJed Brown ierr = PetscSectionSetUp(section);CHKERRQ(ierr); 622815b58121SMatthew G. Knepley ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_FALSE, PETSC_FALSE, &globalSection);CHKERRQ(ierr); 6229854ce69bSBarry Smith ierr = PetscMalloc1(pEnd - pStart, &numbers);CHKERRQ(ierr); 6230552f7358SJed Brown for (p = pStart; p < pEnd; ++p) { 6231552f7358SJed Brown ierr = PetscSectionGetOffset(globalSection, p, &numbers[p-pStart]);CHKERRQ(ierr); 6232ef48cebcSMatthew G. Knepley if (numbers[p-pStart] < 0) numbers[p-pStart] -= shift; 6233ef48cebcSMatthew G. Knepley else numbers[p-pStart] += shift; 6234552f7358SJed Brown } 623582f516ccSBarry Smith ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), pEnd - pStart, numbers, PETSC_OWN_POINTER, numbering);CHKERRQ(ierr); 6236ef48cebcSMatthew G. Knepley if (globalSize) { 6237ef48cebcSMatthew G. Knepley PetscLayout layout; 6238ef48cebcSMatthew G. Knepley ierr = PetscSectionGetPointLayout(PetscObjectComm((PetscObject) dm), globalSection, &layout);CHKERRQ(ierr); 6239ef48cebcSMatthew G. Knepley ierr = PetscLayoutGetSize(layout, globalSize);CHKERRQ(ierr); 6240ef48cebcSMatthew G. Knepley ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr); 6241ef48cebcSMatthew G. Knepley } 6242552f7358SJed Brown ierr = PetscSectionDestroy(§ion);CHKERRQ(ierr); 6243552f7358SJed Brown ierr = PetscSectionDestroy(&globalSection);CHKERRQ(ierr); 6244552f7358SJed Brown PetscFunctionReturn(0); 6245552f7358SJed Brown } 6246552f7358SJed Brown 624781ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateCellNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalCellNumbers) 6248552f7358SJed Brown { 6249552f7358SJed Brown PetscInt cellHeight, cStart, cEnd, cMax; 6250552f7358SJed Brown PetscErrorCode ierr; 6251552f7358SJed Brown 6252552f7358SJed Brown PetscFunctionBegin; 6253552f7358SJed Brown ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr); 6254552f7358SJed Brown ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr); 62550298fd71SBarry Smith ierr = DMPlexGetHybridBounds(dm, &cMax, NULL, NULL, NULL);CHKERRQ(ierr); 625681ed3555SMatthew G. Knepley if (cMax >= 0 && !includeHybrid) cEnd = PetscMin(cEnd, cMax); 625781ed3555SMatthew G. Knepley ierr = DMPlexCreateNumbering_Private(dm, cStart, cEnd, 0, NULL, dm->sf, globalCellNumbers);CHKERRQ(ierr); 625881ed3555SMatthew G. Knepley PetscFunctionReturn(0); 6259552f7358SJed Brown } 626081ed3555SMatthew G. Knepley 62617cd05799SMatthew G. Knepley /*@C 62627cd05799SMatthew G. Knepley DMPlexGetCellNumbering - Get a global cell numbering for all cells on this process 62637cd05799SMatthew G. Knepley 62647cd05799SMatthew G. Knepley Input Parameter: 62657cd05799SMatthew G. Knepley . dm - The DMPlex object 62667cd05799SMatthew G. Knepley 62677cd05799SMatthew G. Knepley Output Parameter: 62687cd05799SMatthew G. Knepley . globalCellNumbers - Global cell numbers for all cells on this process 62697cd05799SMatthew G. Knepley 62707cd05799SMatthew G. Knepley Level: developer 62717cd05799SMatthew G. Knepley 62727cd05799SMatthew G. Knepley .seealso DMPlexGetVertexNumbering() 62737cd05799SMatthew G. Knepley @*/ 627481ed3555SMatthew G. Knepley PetscErrorCode DMPlexGetCellNumbering(DM dm, IS *globalCellNumbers) 627581ed3555SMatthew G. Knepley { 627681ed3555SMatthew G. Knepley DM_Plex *mesh = (DM_Plex*) dm->data; 627781ed3555SMatthew G. Knepley PetscErrorCode ierr; 627881ed3555SMatthew G. Knepley 627981ed3555SMatthew G. Knepley PetscFunctionBegin; 628081ed3555SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 628181ed3555SMatthew G. Knepley if (!mesh->globalCellNumbers) {ierr = DMPlexCreateCellNumbering_Internal(dm, PETSC_FALSE, &mesh->globalCellNumbers);CHKERRQ(ierr);} 6282552f7358SJed Brown *globalCellNumbers = mesh->globalCellNumbers; 6283552f7358SJed Brown PetscFunctionReturn(0); 6284552f7358SJed Brown } 6285552f7358SJed Brown 628681ed3555SMatthew G. Knepley PetscErrorCode DMPlexCreateVertexNumbering_Internal(DM dm, PetscBool includeHybrid, IS *globalVertexNumbers) 628781ed3555SMatthew G. Knepley { 628881ed3555SMatthew G. Knepley PetscInt vStart, vEnd, vMax; 628981ed3555SMatthew G. Knepley PetscErrorCode ierr; 629081ed3555SMatthew G. Knepley 629181ed3555SMatthew G. Knepley PetscFunctionBegin; 629281ed3555SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 629381ed3555SMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 629481ed3555SMatthew G. Knepley ierr = DMPlexGetHybridBounds(dm, NULL, NULL, NULL, &vMax);CHKERRQ(ierr); 629581ed3555SMatthew G. Knepley if (vMax >= 0 && !includeHybrid) vEnd = PetscMin(vEnd, vMax); 629681ed3555SMatthew G. Knepley ierr = DMPlexCreateNumbering_Private(dm, vStart, vEnd, 0, NULL, dm->sf, globalVertexNumbers);CHKERRQ(ierr); 629781ed3555SMatthew G. Knepley PetscFunctionReturn(0); 629881ed3555SMatthew G. Knepley } 629981ed3555SMatthew G. Knepley 63007cd05799SMatthew G. Knepley /*@C 63017cd05799SMatthew G. Knepley DMPlexGetVertexNumbering - Get a global certex numbering for all vertices on this process 63027cd05799SMatthew G. Knepley 63037cd05799SMatthew G. Knepley Input Parameter: 63047cd05799SMatthew G. Knepley . dm - The DMPlex object 63057cd05799SMatthew G. Knepley 63067cd05799SMatthew G. Knepley Output Parameter: 63077cd05799SMatthew G. Knepley . globalVertexNumbers - Global vertex numbers for all vertices on this process 63087cd05799SMatthew G. Knepley 63097cd05799SMatthew G. Knepley Level: developer 63107cd05799SMatthew G. Knepley 63117cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering() 63127cd05799SMatthew G. Knepley @*/ 6313552f7358SJed Brown PetscErrorCode DMPlexGetVertexNumbering(DM dm, IS *globalVertexNumbers) 6314552f7358SJed Brown { 6315552f7358SJed Brown DM_Plex *mesh = (DM_Plex*) dm->data; 6316552f7358SJed Brown PetscErrorCode ierr; 6317552f7358SJed Brown 6318552f7358SJed Brown PetscFunctionBegin; 6319552f7358SJed Brown PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 632081ed3555SMatthew G. Knepley if (!mesh->globalVertexNumbers) {ierr = DMPlexCreateVertexNumbering_Internal(dm, PETSC_FALSE, &mesh->globalVertexNumbers);CHKERRQ(ierr);} 6321552f7358SJed Brown *globalVertexNumbers = mesh->globalVertexNumbers; 6322552f7358SJed Brown PetscFunctionReturn(0); 6323552f7358SJed Brown } 6324552f7358SJed Brown 63257cd05799SMatthew G. Knepley /*@C 63267cd05799SMatthew G. Knepley DMPlexCreatePointNumbering - Create a global numbering for all points on this process 63277cd05799SMatthew G. Knepley 63287cd05799SMatthew G. Knepley Input Parameter: 63297cd05799SMatthew G. Knepley . dm - The DMPlex object 63307cd05799SMatthew G. Knepley 63317cd05799SMatthew G. Knepley Output Parameter: 63327cd05799SMatthew G. Knepley . globalPointNumbers - Global numbers for all points on this process 63337cd05799SMatthew G. Knepley 63347cd05799SMatthew G. Knepley Level: developer 63357cd05799SMatthew G. Knepley 63367cd05799SMatthew G. Knepley .seealso DMPlexGetCellNumbering() 63377cd05799SMatthew G. Knepley @*/ 6338ef48cebcSMatthew G. Knepley PetscErrorCode DMPlexCreatePointNumbering(DM dm, IS *globalPointNumbers) 6339ef48cebcSMatthew G. Knepley { 6340ef48cebcSMatthew G. Knepley IS nums[4]; 6341ef48cebcSMatthew G. Knepley PetscInt depths[4]; 6342ef48cebcSMatthew G. Knepley PetscInt depth, d, shift = 0; 6343ef48cebcSMatthew G. Knepley PetscErrorCode ierr; 6344ef48cebcSMatthew G. Knepley 6345ef48cebcSMatthew G. Knepley PetscFunctionBegin; 6346ef48cebcSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6347ef48cebcSMatthew G. Knepley ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 63488abc87a0SMichael Lange /* For unstratified meshes use dim instead of depth */ 63498abc87a0SMichael Lange if (depth < 0) {ierr = DMGetDimension(dm, &depth);CHKERRQ(ierr);} 6350ef48cebcSMatthew G. Knepley depths[0] = depth; depths[1] = 0; 6351ef48cebcSMatthew G. Knepley for (d = 2; d <= depth; ++d) depths[d] = depth-d+1; 6352ef48cebcSMatthew G. Knepley for (d = 0; d <= depth; ++d) { 6353ef48cebcSMatthew G. Knepley PetscInt pStart, pEnd, gsize; 6354ef48cebcSMatthew G. Knepley 6355ef48cebcSMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, depths[d], &pStart, &pEnd);CHKERRQ(ierr); 6356ef48cebcSMatthew G. Knepley ierr = DMPlexCreateNumbering_Private(dm, pStart, pEnd, shift, &gsize, dm->sf, &nums[d]);CHKERRQ(ierr); 6357ef48cebcSMatthew G. Knepley shift += gsize; 6358ef48cebcSMatthew G. Knepley } 6359302440fdSBarry Smith ierr = ISConcatenate(PetscObjectComm((PetscObject) dm), depth+1, nums, globalPointNumbers);CHKERRQ(ierr); 6360ef48cebcSMatthew G. Knepley for (d = 0; d <= depth; ++d) {ierr = ISDestroy(&nums[d]);CHKERRQ(ierr);} 6361ef48cebcSMatthew G. Knepley PetscFunctionReturn(0); 6362ef48cebcSMatthew G. Knepley } 6363ef48cebcSMatthew G. Knepley 636408a22f4bSMatthew G. Knepley 636508a22f4bSMatthew G. Knepley /*@ 636608a22f4bSMatthew G. Knepley DMPlexCreateRankField - Create a cell field whose value is the rank of the owner 636708a22f4bSMatthew G. Knepley 636808a22f4bSMatthew G. Knepley Input Parameter: 636908a22f4bSMatthew G. Knepley . dm - The DMPlex object 637008a22f4bSMatthew G. Knepley 637108a22f4bSMatthew G. Knepley Output Parameter: 637208a22f4bSMatthew G. Knepley . ranks - The rank field 637308a22f4bSMatthew G. Knepley 637408a22f4bSMatthew G. Knepley Options Database Keys: 637508a22f4bSMatthew G. Knepley . -dm_partition_view - Adds the rank field into the DM output from -dm_view using the same viewer 637608a22f4bSMatthew G. Knepley 637708a22f4bSMatthew G. Knepley Level: intermediate 637808a22f4bSMatthew G. Knepley 637908a22f4bSMatthew G. Knepley .seealso: DMView() 638008a22f4bSMatthew G. Knepley @*/ 638108a22f4bSMatthew G. Knepley PetscErrorCode DMPlexCreateRankField(DM dm, Vec *ranks) 638208a22f4bSMatthew G. Knepley { 638308a22f4bSMatthew G. Knepley DM rdm; 638408a22f4bSMatthew G. Knepley PetscDS prob; 638508a22f4bSMatthew G. Knepley PetscFE fe; 638608a22f4bSMatthew G. Knepley PetscScalar *r; 638708a22f4bSMatthew G. Knepley PetscMPIInt rank; 638808a22f4bSMatthew G. Knepley PetscInt dim, cStart, cEnd, c; 638908a22f4bSMatthew G. Knepley PetscErrorCode ierr; 639008a22f4bSMatthew G. Knepley 639108a22f4bSMatthew G. Knepley PetscFunctionBeginUser; 639208a22f4bSMatthew G. Knepley ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr); 639308a22f4bSMatthew G. Knepley ierr = DMClone(dm, &rdm);CHKERRQ(ierr); 639408a22f4bSMatthew G. Knepley ierr = DMGetDimension(rdm, &dim);CHKERRQ(ierr); 6395e8d98e54SMatthew G. Knepley ierr = PetscFECreateDefault(PetscObjectComm((PetscObject) rdm), dim, 1, PETSC_TRUE, NULL, -1, &fe);CHKERRQ(ierr); 639608a22f4bSMatthew G. Knepley ierr = PetscObjectSetName((PetscObject) fe, "rank");CHKERRQ(ierr); 639708a22f4bSMatthew G. Knepley ierr = DMGetDS(rdm, &prob);CHKERRQ(ierr); 639808a22f4bSMatthew G. Knepley ierr = PetscDSSetDiscretization(prob, 0, (PetscObject) fe);CHKERRQ(ierr); 639908a22f4bSMatthew G. Knepley ierr = PetscFEDestroy(&fe);CHKERRQ(ierr); 640008a22f4bSMatthew G. Knepley ierr = DMPlexGetHeightStratum(rdm, 0, &cStart, &cEnd);CHKERRQ(ierr); 640108a22f4bSMatthew G. Knepley ierr = DMCreateGlobalVector(rdm, ranks);CHKERRQ(ierr); 640208a22f4bSMatthew G. Knepley ierr = PetscObjectSetName((PetscObject) *ranks, "partition");CHKERRQ(ierr); 640308a22f4bSMatthew G. Knepley ierr = VecGetArray(*ranks, &r);CHKERRQ(ierr); 640408a22f4bSMatthew G. Knepley for (c = cStart; c < cEnd; ++c) { 640508a22f4bSMatthew G. Knepley PetscScalar *lr; 640608a22f4bSMatthew G. Knepley 640708a22f4bSMatthew G. Knepley ierr = DMPlexPointGlobalRef(rdm, c, r, &lr);CHKERRQ(ierr); 640808a22f4bSMatthew G. Knepley *lr = rank; 640908a22f4bSMatthew G. Knepley } 641008a22f4bSMatthew G. Knepley ierr = VecRestoreArray(*ranks, &r);CHKERRQ(ierr); 641108a22f4bSMatthew G. Knepley ierr = DMDestroy(&rdm);CHKERRQ(ierr); 641208a22f4bSMatthew G. Knepley PetscFunctionReturn(0); 641308a22f4bSMatthew G. Knepley } 641408a22f4bSMatthew G. Knepley 6415ca8062c8SMatthew G. Knepley /*@ 6416ca8062c8SMatthew G. Knepley DMPlexCheckSymmetry - Check that the adjacency information in the mesh is symmetric. 6417ca8062c8SMatthew G. Knepley 641869916449SMatthew G. Knepley Input Parameter: 641969916449SMatthew G. Knepley . dm - The DMPlex object 6420ca8062c8SMatthew G. Knepley 6421ca8062c8SMatthew G. Knepley Note: This is a useful diagnostic when creating meshes programmatically. 6422ca8062c8SMatthew G. Knepley 6423ca8062c8SMatthew G. Knepley Level: developer 6424ca8062c8SMatthew G. Knepley 64257d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSkeleton(), DMPlexCheckFaces() 6426ca8062c8SMatthew G. Knepley @*/ 6427ca8062c8SMatthew G. Knepley PetscErrorCode DMPlexCheckSymmetry(DM dm) 6428ca8062c8SMatthew G. Knepley { 6429ca8062c8SMatthew G. Knepley PetscSection coneSection, supportSection; 6430ca8062c8SMatthew G. Knepley const PetscInt *cone, *support; 6431ca8062c8SMatthew G. Knepley PetscInt coneSize, c, supportSize, s; 6432ca8062c8SMatthew G. Knepley PetscInt pStart, pEnd, p, csize, ssize; 6433ca8062c8SMatthew G. Knepley PetscErrorCode ierr; 6434ca8062c8SMatthew G. Knepley 6435ca8062c8SMatthew G. Knepley PetscFunctionBegin; 6436ca8062c8SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6437ca8062c8SMatthew G. Knepley ierr = DMPlexGetConeSection(dm, &coneSection);CHKERRQ(ierr); 6438ca8062c8SMatthew G. Knepley ierr = DMPlexGetSupportSection(dm, &supportSection);CHKERRQ(ierr); 6439ca8062c8SMatthew G. Knepley /* Check that point p is found in the support of its cone points, and vice versa */ 6440ca8062c8SMatthew G. Knepley ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr); 6441ca8062c8SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 6442ca8062c8SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr); 6443ca8062c8SMatthew G. Knepley ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr); 6444ca8062c8SMatthew G. Knepley for (c = 0; c < coneSize; ++c) { 644542e66dfaSMatthew G. Knepley PetscBool dup = PETSC_FALSE; 644642e66dfaSMatthew G. Knepley PetscInt d; 644742e66dfaSMatthew G. Knepley for (d = c-1; d >= 0; --d) { 644842e66dfaSMatthew G. Knepley if (cone[c] == cone[d]) {dup = PETSC_TRUE; break;} 644942e66dfaSMatthew G. Knepley } 6450ca8062c8SMatthew G. Knepley ierr = DMPlexGetSupportSize(dm, cone[c], &supportSize);CHKERRQ(ierr); 6451ca8062c8SMatthew G. Knepley ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr); 6452ca8062c8SMatthew G. Knepley for (s = 0; s < supportSize; ++s) { 6453ca8062c8SMatthew G. Knepley if (support[s] == p) break; 6454ca8062c8SMatthew G. Knepley } 645542e66dfaSMatthew G. Knepley if ((s >= supportSize) || (dup && (support[s+1] != p))) { 64568ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", p);CHKERRQ(ierr); 6457ca8062c8SMatthew G. Knepley for (s = 0; s < coneSize; ++s) { 64588ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[s]);CHKERRQ(ierr); 6459ca8062c8SMatthew G. Knepley } 6460302440fdSBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr); 64618ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", cone[c]);CHKERRQ(ierr); 6462ca8062c8SMatthew G. Knepley for (s = 0; s < supportSize; ++s) { 64638ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[s]);CHKERRQ(ierr); 6464ca8062c8SMatthew G. Knepley } 6465302440fdSBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr); 64668ccfff9cSToby 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]); 64678ccfff9cSToby Isaac else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in support of cone point %D", p, cone[c]); 6468ca8062c8SMatthew G. Knepley } 646942e66dfaSMatthew G. Knepley } 6470ca8062c8SMatthew G. Knepley ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr); 6471ca8062c8SMatthew G. Knepley ierr = DMPlexGetSupport(dm, p, &support);CHKERRQ(ierr); 6472ca8062c8SMatthew G. Knepley for (s = 0; s < supportSize; ++s) { 6473ca8062c8SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, support[s], &coneSize);CHKERRQ(ierr); 6474ca8062c8SMatthew G. Knepley ierr = DMPlexGetCone(dm, support[s], &cone);CHKERRQ(ierr); 6475ca8062c8SMatthew G. Knepley for (c = 0; c < coneSize; ++c) { 6476ca8062c8SMatthew G. Knepley if (cone[c] == p) break; 6477ca8062c8SMatthew G. Knepley } 6478ca8062c8SMatthew G. Knepley if (c >= coneSize) { 64798ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D support: ", p);CHKERRQ(ierr); 6480ca8062c8SMatthew G. Knepley for (c = 0; c < supportSize; ++c) { 64818ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", support[c]);CHKERRQ(ierr); 6482ca8062c8SMatthew G. Knepley } 6483302440fdSBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr); 64848ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "p: %D cone: ", support[s]);CHKERRQ(ierr); 6485ca8062c8SMatthew G. Knepley for (c = 0; c < coneSize; ++c) { 64868ccfff9cSToby Isaac ierr = PetscPrintf(PETSC_COMM_SELF, "%D, ", cone[c]);CHKERRQ(ierr); 6487ca8062c8SMatthew G. Knepley } 6488302440fdSBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF, "\n");CHKERRQ(ierr); 64898ccfff9cSToby Isaac SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Point %D not found in cone of support point %D", p, support[s]); 6490ca8062c8SMatthew G. Knepley } 6491ca8062c8SMatthew G. Knepley } 6492ca8062c8SMatthew G. Knepley } 6493ca8062c8SMatthew G. Knepley ierr = PetscSectionGetStorageSize(coneSection, &csize);CHKERRQ(ierr); 6494ca8062c8SMatthew G. Knepley ierr = PetscSectionGetStorageSize(supportSection, &ssize);CHKERRQ(ierr); 64958ccfff9cSToby Isaac if (csize != ssize) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Total cone size %D != Total support size %D", csize, ssize); 6496ca8062c8SMatthew G. Knepley PetscFunctionReturn(0); 6497ca8062c8SMatthew G. Knepley } 6498ca8062c8SMatthew G. Knepley 6499ca8062c8SMatthew G. Knepley /*@ 6500ca8062c8SMatthew G. Knepley DMPlexCheckSkeleton - Check that each cell has the correct number of vertices 6501ca8062c8SMatthew G. Knepley 6502ca8062c8SMatthew G. Knepley Input Parameters: 6503ca8062c8SMatthew G. Knepley + dm - The DMPlex object 650458723a97SMatthew G. Knepley . isSimplex - Are the cells simplices or tensor products 650558723a97SMatthew G. Knepley - cellHeight - Normally 0 6506ca8062c8SMatthew G. Knepley 6507ca8062c8SMatthew G. Knepley Note: This is a useful diagnostic when creating meshes programmatically. 6508ca8062c8SMatthew G. Knepley 6509ca8062c8SMatthew G. Knepley Level: developer 6510ca8062c8SMatthew G. Knepley 65117d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSymmetry(), DMPlexCheckFaces() 6512ca8062c8SMatthew G. Knepley @*/ 651358723a97SMatthew G. Knepley PetscErrorCode DMPlexCheckSkeleton(DM dm, PetscBool isSimplex, PetscInt cellHeight) 6514ca8062c8SMatthew G. Knepley { 651542363296SMatthew G. Knepley PetscInt dim, numCorners, numHybridCorners, vStart, vEnd, cStart, cEnd, cMax, c; 6516ca8062c8SMatthew G. Knepley PetscErrorCode ierr; 6517ca8062c8SMatthew G. Knepley 6518ca8062c8SMatthew G. Knepley PetscFunctionBegin; 6519ca8062c8SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6520c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 6521ca8062c8SMatthew G. Knepley switch (dim) { 652242363296SMatthew G. Knepley case 1: numCorners = isSimplex ? 2 : 2; numHybridCorners = isSimplex ? 2 : 2; break; 652342363296SMatthew G. Knepley case 2: numCorners = isSimplex ? 3 : 4; numHybridCorners = isSimplex ? 4 : 4; break; 652442363296SMatthew G. Knepley case 3: numCorners = isSimplex ? 4 : 8; numHybridCorners = isSimplex ? 6 : 8; break; 6525ca8062c8SMatthew G. Knepley default: 65268ccfff9cSToby Isaac SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle meshes of dimension %D", dim); 6527ca8062c8SMatthew G. Knepley } 652858723a97SMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 652958723a97SMatthew G. Knepley ierr = DMPlexGetHeightStratum(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr); 6530ca8062c8SMatthew G. Knepley ierr = DMPlexGetHybridBounds(dm, &cMax, NULL, NULL, NULL);CHKERRQ(ierr); 6531ca8062c8SMatthew G. Knepley cMax = cMax >= 0 ? cMax : cEnd; 6532ca8062c8SMatthew G. Knepley for (c = cStart; c < cMax; ++c) { 653358723a97SMatthew G. Knepley PetscInt *closure = NULL, closureSize, cl, coneSize = 0; 653458723a97SMatthew G. Knepley 653558723a97SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 653658723a97SMatthew G. Knepley for (cl = 0; cl < closureSize*2; cl += 2) { 653758723a97SMatthew G. Knepley const PetscInt p = closure[cl]; 653858723a97SMatthew G. Knepley if ((p >= vStart) && (p < vEnd)) ++coneSize; 653958723a97SMatthew G. Knepley } 654058723a97SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 65418ccfff9cSToby Isaac if (coneSize != numCorners) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D has %D vertices != %D", c, coneSize, numCorners); 6542ca8062c8SMatthew G. Knepley } 654342363296SMatthew G. Knepley for (c = cMax; c < cEnd; ++c) { 654442363296SMatthew G. Knepley PetscInt *closure = NULL, closureSize, cl, coneSize = 0; 654542363296SMatthew G. Knepley 654642363296SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 654742363296SMatthew G. Knepley for (cl = 0; cl < closureSize*2; cl += 2) { 654842363296SMatthew G. Knepley const PetscInt p = closure[cl]; 654942363296SMatthew G. Knepley if ((p >= vStart) && (p < vEnd)) ++coneSize; 655042363296SMatthew G. Knepley } 655142363296SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 65528ccfff9cSToby Isaac if (coneSize > numHybridCorners) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Hybrid cell %D has %D vertices > %D", c, coneSize, numHybridCorners); 655342363296SMatthew G. Knepley } 6554ca8062c8SMatthew G. Knepley PetscFunctionReturn(0); 6555ca8062c8SMatthew G. Knepley } 65569bf0dad6SMatthew G. Knepley 65579bf0dad6SMatthew G. Knepley /*@ 65589bf0dad6SMatthew 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 65599bf0dad6SMatthew G. Knepley 65609bf0dad6SMatthew G. Knepley Input Parameters: 65619bf0dad6SMatthew G. Knepley + dm - The DMPlex object 65629bf0dad6SMatthew G. Knepley . isSimplex - Are the cells simplices or tensor products 65639bf0dad6SMatthew G. Knepley - cellHeight - Normally 0 65649bf0dad6SMatthew G. Knepley 65659bf0dad6SMatthew G. Knepley Note: This is a useful diagnostic when creating meshes programmatically. 65669bf0dad6SMatthew G. Knepley 65679bf0dad6SMatthew G. Knepley Level: developer 65689bf0dad6SMatthew G. Knepley 65697d5acc75SStefano Zampini .seealso: DMCreate(), DMPlexCheckSymmetry(), DMPlexCheckSkeleton() 65709bf0dad6SMatthew G. Knepley @*/ 65719bf0dad6SMatthew G. Knepley PetscErrorCode DMPlexCheckFaces(DM dm, PetscBool isSimplex, PetscInt cellHeight) 65729bf0dad6SMatthew G. Knepley { 65733554e41dSMatthew G. Knepley PetscInt pMax[4]; 65743554e41dSMatthew G. Knepley PetscInt dim, vStart, vEnd, cStart, cEnd, c, h; 65759bf0dad6SMatthew G. Knepley PetscErrorCode ierr; 65769bf0dad6SMatthew G. Knepley 65779bf0dad6SMatthew G. Knepley PetscFunctionBegin; 65789bf0dad6SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6579c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 65809bf0dad6SMatthew G. Knepley ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 658125abba81SMatthew G. Knepley ierr = DMPlexGetHybridBounds(dm, &pMax[dim], &pMax[dim-1], &pMax[1], &pMax[0]);CHKERRQ(ierr); 65823554e41dSMatthew G. Knepley for (h = cellHeight; h < dim; ++h) { 65833554e41dSMatthew G. Knepley ierr = DMPlexGetHeightStratum(dm, h, &cStart, &cEnd);CHKERRQ(ierr); 65843554e41dSMatthew G. Knepley for (c = cStart; c < cEnd; ++c) { 65859bf0dad6SMatthew G. Knepley const PetscInt *cone, *ornt, *faces; 65869bf0dad6SMatthew G. Knepley PetscInt numFaces, faceSize, coneSize,f; 65879bf0dad6SMatthew G. Knepley PetscInt *closure = NULL, closureSize, cl, numCorners = 0; 65889bf0dad6SMatthew G. Knepley 658925abba81SMatthew G. Knepley if (pMax[dim-h] >= 0 && c >= pMax[dim-h]) continue; 65909bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeSize(dm, c, &coneSize);CHKERRQ(ierr); 65919bf0dad6SMatthew G. Knepley ierr = DMPlexGetCone(dm, c, &cone);CHKERRQ(ierr); 65929bf0dad6SMatthew G. Knepley ierr = DMPlexGetConeOrientation(dm, c, &ornt);CHKERRQ(ierr); 65939bf0dad6SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 65949bf0dad6SMatthew G. Knepley for (cl = 0; cl < closureSize*2; cl += 2) { 65959bf0dad6SMatthew G. Knepley const PetscInt p = closure[cl]; 65969bf0dad6SMatthew G. Knepley if ((p >= vStart) && (p < vEnd)) closure[numCorners++] = p; 65979bf0dad6SMatthew G. Knepley } 65983554e41dSMatthew G. Knepley ierr = DMPlexGetRawFaces_Internal(dm, dim-h, numCorners, closure, &numFaces, &faceSize, &faces);CHKERRQ(ierr); 65998ccfff9cSToby Isaac if (coneSize != numFaces) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Cell %D has %D faces but should have %D", c, coneSize, numFaces); 66009bf0dad6SMatthew G. Knepley for (f = 0; f < numFaces; ++f) { 66019bf0dad6SMatthew G. Knepley PetscInt *fclosure = NULL, fclosureSize, cl, fnumCorners = 0, v; 66029bf0dad6SMatthew G. Knepley 66039bf0dad6SMatthew G. Knepley ierr = DMPlexGetTransitiveClosure_Internal(dm, cone[f], ornt[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr); 66049bf0dad6SMatthew G. Knepley for (cl = 0; cl < fclosureSize*2; cl += 2) { 66059bf0dad6SMatthew G. Knepley const PetscInt p = fclosure[cl]; 66069bf0dad6SMatthew G. Knepley if ((p >= vStart) && (p < vEnd)) fclosure[fnumCorners++] = p; 66079bf0dad6SMatthew G. Knepley } 66088ccfff9cSToby 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); 66099bf0dad6SMatthew G. Knepley for (v = 0; v < fnumCorners; ++v) { 66108ccfff9cSToby 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]); 66119bf0dad6SMatthew G. Knepley } 66129bf0dad6SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dm, cone[f], PETSC_TRUE, &fclosureSize, &fclosure);CHKERRQ(ierr); 66139bf0dad6SMatthew G. Knepley } 66149bf0dad6SMatthew G. Knepley ierr = DMPlexRestoreFaces_Internal(dm, dim, c, &numFaces, &faceSize, &faces);CHKERRQ(ierr); 66159bf0dad6SMatthew G. Knepley ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr); 66169bf0dad6SMatthew G. Knepley } 66173554e41dSMatthew G. Knepley } 6618552f7358SJed Brown PetscFunctionReturn(0); 6619552f7358SJed Brown } 66203913d7c8SMatthew G. Knepley 6621bceba477SMatthew G. Knepley /* Pointwise interpolation 6622bceba477SMatthew G. Knepley Just code FEM for now 6623bceba477SMatthew G. Knepley u^f = I u^c 66244ca5e9f5SMatthew G. Knepley sum_k u^f_k phi^f_k = I sum_j u^c_j phi^c_j 66254ca5e9f5SMatthew G. Knepley u^f_i = sum_j psi^f_i I phi^c_j u^c_j 66264ca5e9f5SMatthew G. Knepley I_{ij} = psi^f_i phi^c_j 6627bceba477SMatthew G. Knepley */ 6628bceba477SMatthew G. Knepley PetscErrorCode DMCreateInterpolation_Plex(DM dmCoarse, DM dmFine, Mat *interpolation, Vec *scaling) 6629bceba477SMatthew G. Knepley { 6630bceba477SMatthew G. Knepley PetscSection gsc, gsf; 6631bceba477SMatthew G. Knepley PetscInt m, n; 6632a063dac3SMatthew G. Knepley void *ctx; 663368132eb9SMatthew G. Knepley DM cdm; 6634fd194bc8SStefano Zampini PetscBool regular, ismatis; 6635bceba477SMatthew G. Knepley PetscErrorCode ierr; 6636bceba477SMatthew G. Knepley 6637bceba477SMatthew G. Knepley PetscFunctionBegin; 6638e87a4003SBarry Smith ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr); 6639bceba477SMatthew G. Knepley ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr); 6640e87a4003SBarry Smith ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr); 6641bceba477SMatthew G. Knepley ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr); 664268132eb9SMatthew G. Knepley 6643fd194bc8SStefano Zampini ierr = PetscStrcmp(dmCoarse->mattype, MATIS, &ismatis);CHKERRQ(ierr); 6644bceba477SMatthew G. Knepley ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), interpolation);CHKERRQ(ierr); 6645bceba477SMatthew G. Knepley ierr = MatSetSizes(*interpolation, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr); 6646fd194bc8SStefano Zampini ierr = MatSetType(*interpolation, ismatis ? MATAIJ : dmCoarse->mattype);CHKERRQ(ierr); 6647a063dac3SMatthew G. Knepley ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr); 664868132eb9SMatthew G. Knepley 6649a8fb8f29SToby Isaac ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr); 665068132eb9SMatthew G. Knepley ierr = DMPlexGetRegularRefinement(dmFine, ®ular);CHKERRQ(ierr); 665168132eb9SMatthew G. Knepley if (regular && cdm == dmCoarse) {ierr = DMPlexComputeInterpolatorNested(dmCoarse, dmFine, *interpolation, ctx);CHKERRQ(ierr);} 665268132eb9SMatthew G. Knepley else {ierr = DMPlexComputeInterpolatorGeneral(dmCoarse, dmFine, *interpolation, ctx);CHKERRQ(ierr);} 665368132eb9SMatthew G. Knepley ierr = MatViewFromOptions(*interpolation, NULL, "-interp_mat_view");CHKERRQ(ierr); 66545d1c2e58SMatthew G. Knepley /* Use naive scaling */ 66555d1c2e58SMatthew G. Knepley ierr = DMCreateInterpolationScale(dmCoarse, dmFine, *interpolation, scaling);CHKERRQ(ierr); 6656a063dac3SMatthew G. Knepley PetscFunctionReturn(0); 6657a063dac3SMatthew G. Knepley } 6658bceba477SMatthew G. Knepley 66596dbf9973SLawrence Mitchell PetscErrorCode DMCreateInjection_Plex(DM dmCoarse, DM dmFine, Mat *mat) 6660a063dac3SMatthew G. Knepley { 666190748bafSMatthew G. Knepley PetscErrorCode ierr; 66626dbf9973SLawrence Mitchell VecScatter ctx; 666390748bafSMatthew G. Knepley 6664a063dac3SMatthew G. Knepley PetscFunctionBegin; 66656dbf9973SLawrence Mitchell ierr = DMPlexComputeInjectorFEM(dmCoarse, dmFine, &ctx, NULL);CHKERRQ(ierr); 66666dbf9973SLawrence Mitchell ierr = MatCreateScatter(PetscObjectComm((PetscObject)ctx), ctx, mat);CHKERRQ(ierr); 66676dbf9973SLawrence Mitchell ierr = VecScatterDestroy(&ctx);CHKERRQ(ierr); 6668bceba477SMatthew G. Knepley PetscFunctionReturn(0); 6669bceba477SMatthew G. Knepley } 6670bceba477SMatthew G. Knepley 6671bd041c0cSMatthew G. Knepley PetscErrorCode DMCreateMassMatrix_Plex(DM dmCoarse, DM dmFine, Mat *mass) 6672bd041c0cSMatthew G. Knepley { 6673bd041c0cSMatthew G. Knepley PetscSection gsc, gsf; 6674bd041c0cSMatthew G. Knepley PetscInt m, n; 6675bd041c0cSMatthew G. Knepley void *ctx; 6676bd041c0cSMatthew G. Knepley DM cdm; 6677bd041c0cSMatthew G. Knepley PetscBool regular; 6678bd041c0cSMatthew G. Knepley PetscErrorCode ierr; 6679bd041c0cSMatthew G. Knepley 6680bd041c0cSMatthew G. Knepley PetscFunctionBegin; 6681e87a4003SBarry Smith ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr); 6682bd041c0cSMatthew G. Knepley ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr); 6683e87a4003SBarry Smith ierr = DMGetGlobalSection(dmCoarse, &gsc);CHKERRQ(ierr); 6684bd041c0cSMatthew G. Knepley ierr = PetscSectionGetConstrainedStorageSize(gsc, &n);CHKERRQ(ierr); 6685bd041c0cSMatthew G. Knepley 6686bd041c0cSMatthew G. Knepley ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), mass);CHKERRQ(ierr); 6687bd041c0cSMatthew G. Knepley ierr = MatSetSizes(*mass, m, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr); 6688bd041c0cSMatthew G. Knepley ierr = MatSetType(*mass, dmCoarse->mattype);CHKERRQ(ierr); 6689bd041c0cSMatthew G. Knepley ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr); 6690bd041c0cSMatthew G. Knepley 6691bd041c0cSMatthew G. Knepley ierr = DMGetCoarseDM(dmFine, &cdm);CHKERRQ(ierr); 6692bd041c0cSMatthew G. Knepley ierr = DMPlexGetRegularRefinement(dmFine, ®ular);CHKERRQ(ierr); 6693bd041c0cSMatthew G. Knepley if (regular && cdm == dmCoarse) {ierr = DMPlexComputeMassMatrixNested(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);} 6694bd041c0cSMatthew G. Knepley else {ierr = DMPlexComputeMassMatrixGeneral(dmCoarse, dmFine, *mass, ctx);CHKERRQ(ierr);} 6695bd041c0cSMatthew G. Knepley ierr = MatViewFromOptions(*mass, NULL, "-mass_mat_view");CHKERRQ(ierr); 6696bd041c0cSMatthew G. Knepley PetscFunctionReturn(0); 6697bd041c0cSMatthew G. Knepley } 6698bd041c0cSMatthew G. Knepley 6699fd59a867SMatthew G. Knepley PetscErrorCode DMCreateDefaultSection_Plex(DM dm) 6700fd59a867SMatthew G. Knepley { 6701fd59a867SMatthew G. Knepley PetscSection section; 6702ab1d0545SMatthew G. Knepley IS *bcPoints, *bcComps; 6703ebb3236fSMatthew G. Knepley PetscBool *isFE; 6704286d8613SMatthew G. Knepley PetscInt *bcFields, *numComp, *numDof; 6705ebb3236fSMatthew G. Knepley PetscInt depth, dim, numBd, numBC = 0, numFields, bd, bc = 0, f; 6706ebb3236fSMatthew G. Knepley PetscInt cStart, cEnd, cEndInterior; 6707fd59a867SMatthew G. Knepley PetscErrorCode ierr; 6708fd59a867SMatthew G. Knepley 6709fd59a867SMatthew G. Knepley PetscFunctionBegin; 6710ebb3236fSMatthew G. Knepley ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr); 6711ebb3236fSMatthew G. Knepley /* FE and FV boundary conditions are handled slightly differently */ 6712ebb3236fSMatthew G. Knepley ierr = PetscMalloc1(numFields, &isFE);CHKERRQ(ierr); 6713ebb3236fSMatthew G. Knepley for (f = 0; f < numFields; ++f) { 6714ebb3236fSMatthew G. Knepley PetscObject obj; 6715ebb3236fSMatthew G. Knepley PetscClassId id; 6716ebb3236fSMatthew G. Knepley 6717ebb3236fSMatthew G. Knepley ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr); 6718ebb3236fSMatthew G. Knepley ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr); 6719ebb3236fSMatthew G. Knepley if (id == PETSCFE_CLASSID) {isFE[f] = PETSC_TRUE;} 6720ebb3236fSMatthew G. Knepley else if (id == PETSCFV_CLASSID) {isFE[f] = PETSC_FALSE;} 67218ccfff9cSToby Isaac else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", f); 6722ebb3236fSMatthew G. Knepley } 67232f900235SMatthew G. Knepley /* Allocate boundary point storage for FEM boundaries */ 6724286d8613SMatthew G. Knepley ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr); 6725c73cfb54SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 6726ebb3236fSMatthew G. Knepley ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr); 6727ebb3236fSMatthew G. Knepley ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr); 6728dff059c6SToby Isaac ierr = PetscDSGetNumBoundary(dm->prob, &numBd);CHKERRQ(ierr); 6729fdafae62SVaclav 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)"); 6730fd59a867SMatthew G. Knepley for (bd = 0; bd < numBd; ++bd) { 67312f900235SMatthew G. Knepley PetscInt field; 6732f971fd6bSMatthew G. Knepley DMBoundaryConditionType type; 6733385532a5SToby Isaac const char *labelName; 6734385532a5SToby Isaac DMLabel label; 67352f900235SMatthew G. Knepley 6736f971fd6bSMatthew G. Knepley ierr = PetscDSGetBoundary(dm->prob, bd, &type, NULL, &labelName, &field, NULL, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr); 6737385532a5SToby Isaac ierr = DMGetLabel(dm,labelName,&label);CHKERRQ(ierr); 6738f971fd6bSMatthew G. Knepley if (label && isFE[field] && (type & DM_BC_ESSENTIAL)) ++numBC; 6739fd59a867SMatthew G. Knepley } 67402f900235SMatthew G. Knepley /* Add ghost cell boundaries for FVM */ 6741ebb3236fSMatthew G. Knepley for (f = 0; f < numFields; ++f) if (!isFE[f] && cEndInterior >= 0) ++numBC; 67426c8d74c4SMatthew G. Knepley ierr = PetscCalloc3(numBC,&bcFields,numBC,&bcPoints,numBC,&bcComps);CHKERRQ(ierr); 6743ebb3236fSMatthew G. Knepley /* Constrain ghost cells for FV */ 6744ebb3236fSMatthew G. Knepley for (f = 0; f < numFields; ++f) { 6745ebb3236fSMatthew G. Knepley PetscInt *newidx, c; 6746ebb3236fSMatthew G. Knepley 6747ebb3236fSMatthew G. Knepley if (isFE[f] || cEndInterior < 0) continue; 6748ebb3236fSMatthew G. Knepley ierr = PetscMalloc1(cEnd-cEndInterior,&newidx);CHKERRQ(ierr); 6749ebb3236fSMatthew G. Knepley for (c = cEndInterior; c < cEnd; ++c) newidx[c-cEndInterior] = c; 6750ebb3236fSMatthew G. Knepley bcFields[bc] = f; 6751ebb3236fSMatthew G. Knepley ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), cEnd-cEndInterior, newidx, PETSC_OWN_POINTER, &bcPoints[bc++]);CHKERRQ(ierr); 6752ebb3236fSMatthew G. Knepley } 6753ebb3236fSMatthew G. Knepley /* Handle FEM Dirichlet boundaries */ 6754ebb3236fSMatthew G. Knepley for (bd = 0; bd < numBd; ++bd) { 6755fd59a867SMatthew G. Knepley const char *bdLabel; 6756fd59a867SMatthew G. Knepley DMLabel label; 67570e0f25f2SMatthew G. Knepley const PetscInt *comps; 6758fd59a867SMatthew G. Knepley const PetscInt *values; 67590e0f25f2SMatthew G. Knepley PetscInt bd2, field, numComps, numValues; 6760f971fd6bSMatthew G. Knepley DMBoundaryConditionType type; 6761f971fd6bSMatthew G. Knepley PetscBool duplicate = PETSC_FALSE; 6762fd59a867SMatthew G. Knepley 6763f971fd6bSMatthew G. Knepley ierr = PetscDSGetBoundary(dm->prob, bd, &type, NULL, &bdLabel, &field, &numComps, &comps, NULL, &numValues, &values, NULL);CHKERRQ(ierr); 6764c58f1c22SToby Isaac ierr = DMGetLabel(dm, bdLabel, &label);CHKERRQ(ierr); 6765385532a5SToby Isaac if (!isFE[field] || !label) continue; 6766ebb3236fSMatthew G. Knepley /* Only want to modify label once */ 67677391c1cbSMatthew G. Knepley for (bd2 = 0; bd2 < bd; ++bd2) { 67687391c1cbSMatthew G. Knepley const char *bdname; 6769dff059c6SToby Isaac ierr = PetscDSGetBoundary(dm->prob, bd2, NULL, NULL, &bdname, NULL, NULL, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr); 67707391c1cbSMatthew G. Knepley ierr = PetscStrcmp(bdname, bdLabel, &duplicate);CHKERRQ(ierr); 67717391c1cbSMatthew G. Knepley if (duplicate) break; 67727391c1cbSMatthew G. Knepley } 6773ebb3236fSMatthew G. Knepley if (!duplicate && (isFE[field])) { 6774b0bf5782SToby Isaac /* don't complete cells, which are just present to give orientation to the boundary */ 6775092e5057SToby Isaac ierr = DMPlexLabelComplete(dm, label);CHKERRQ(ierr); 67767391c1cbSMatthew G. Knepley } 6777ebb3236fSMatthew G. Knepley /* Filter out cells, if you actually want to constrain cells you need to do things by hand right now */ 6778f971fd6bSMatthew G. Knepley if (type & DM_BC_ESSENTIAL) { 677993a5981aSMatthew G. Knepley PetscInt *newidx; 6780ebb3236fSMatthew G. Knepley PetscInt n, newn = 0, p, v; 678193a5981aSMatthew G. Knepley 6782fd59a867SMatthew G. Knepley bcFields[bc] = field; 67830e0f25f2SMatthew G. Knepley if (numComps) {ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), numComps, comps, PETSC_COPY_VALUES, &bcComps[bc]);CHKERRQ(ierr);} 6784ebb3236fSMatthew G. Knepley for (v = 0; v < numValues; ++v) { 6785ebb3236fSMatthew G. Knepley IS tmp; 6786ebb3236fSMatthew G. Knepley const PetscInt *idx; 6787ebb3236fSMatthew G. Knepley 6788c58f1c22SToby Isaac ierr = DMGetStratumIS(dm, bdLabel, values[v], &tmp);CHKERRQ(ierr); 6789ebb3236fSMatthew G. Knepley if (!tmp) continue; 679093a5981aSMatthew G. Knepley ierr = ISGetLocalSize(tmp, &n);CHKERRQ(ierr); 679193a5981aSMatthew G. Knepley ierr = ISGetIndices(tmp, &idx);CHKERRQ(ierr); 6792ebb3236fSMatthew G. Knepley if (isFE[field]) { 679393a5981aSMatthew G. Knepley for (p = 0; p < n; ++p) if ((idx[p] < cStart) || (idx[p] >= cEnd)) ++newn; 6794ebb3236fSMatthew G. Knepley } else { 6795ebb3236fSMatthew G. Knepley for (p = 0; p < n; ++p) if ((idx[p] >= cStart) || (idx[p] < cEnd)) ++newn; 6796ebb3236fSMatthew G. Knepley } 679793a5981aSMatthew G. Knepley ierr = ISRestoreIndices(tmp, &idx);CHKERRQ(ierr); 679893a5981aSMatthew G. Knepley ierr = ISDestroy(&tmp);CHKERRQ(ierr); 6799fd59a867SMatthew G. Knepley } 6800ebb3236fSMatthew G. Knepley ierr = PetscMalloc1(newn,&newidx);CHKERRQ(ierr); 6801ebb3236fSMatthew G. Knepley newn = 0; 6802ebb3236fSMatthew G. Knepley for (v = 0; v < numValues; ++v) { 6803ebb3236fSMatthew G. Knepley IS tmp; 6804ebb3236fSMatthew G. Knepley const PetscInt *idx; 6805ebb3236fSMatthew G. Knepley 6806c58f1c22SToby Isaac ierr = DMGetStratumIS(dm, bdLabel, values[v], &tmp);CHKERRQ(ierr); 6807ebb3236fSMatthew G. Knepley if (!tmp) continue; 6808ebb3236fSMatthew G. Knepley ierr = ISGetLocalSize(tmp, &n);CHKERRQ(ierr); 6809ebb3236fSMatthew G. Knepley ierr = ISGetIndices(tmp, &idx);CHKERRQ(ierr); 6810ebb3236fSMatthew G. Knepley if (isFE[field]) { 6811ebb3236fSMatthew G. Knepley for (p = 0; p < n; ++p) if ((idx[p] < cStart) || (idx[p] >= cEnd)) newidx[newn++] = idx[p]; 6812ebb3236fSMatthew G. Knepley } else { 6813ebb3236fSMatthew G. Knepley for (p = 0; p < n; ++p) if ((idx[p] >= cStart) || (idx[p] < cEnd)) newidx[newn++] = idx[p]; 6814ebb3236fSMatthew G. Knepley } 6815ebb3236fSMatthew G. Knepley ierr = ISRestoreIndices(tmp, &idx);CHKERRQ(ierr); 6816ebb3236fSMatthew G. Knepley ierr = ISDestroy(&tmp);CHKERRQ(ierr); 6817ebb3236fSMatthew G. Knepley } 6818ebb3236fSMatthew G. Knepley ierr = ISCreateGeneral(PetscObjectComm((PetscObject) dm), newn, newidx, PETSC_OWN_POINTER, &bcPoints[bc++]);CHKERRQ(ierr); 6819ebb3236fSMatthew G. Knepley } 6820fd59a867SMatthew G. Knepley } 6821fd59a867SMatthew G. Knepley /* Handle discretization */ 6822ebb3236fSMatthew G. Knepley ierr = PetscCalloc2(numFields,&numComp,numFields*(dim+1),&numDof);CHKERRQ(ierr); 6823fd59a867SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 68240bacfa0aSMatthew G. Knepley PetscObject obj; 68250bacfa0aSMatthew G. Knepley 68260bacfa0aSMatthew G. Knepley ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr); 6827ebb3236fSMatthew G. Knepley if (isFE[f]) { 68280bacfa0aSMatthew G. Knepley PetscFE fe = (PetscFE) obj; 6829286d8613SMatthew G. Knepley const PetscInt *numFieldDof; 6830fd59a867SMatthew G. Knepley PetscInt d; 6831fd59a867SMatthew G. Knepley 6832fd59a867SMatthew G. Knepley ierr = PetscFEGetNumComponents(fe, &numComp[f]);CHKERRQ(ierr); 6833286d8613SMatthew G. Knepley ierr = PetscFEGetNumDof(fe, &numFieldDof);CHKERRQ(ierr); 6834286d8613SMatthew G. Knepley for (d = 0; d < dim+1; ++d) numDof[f*(dim+1)+d] = numFieldDof[d]; 6835ebb3236fSMatthew G. Knepley } else { 68360bacfa0aSMatthew G. Knepley PetscFV fv = (PetscFV) obj; 68370bacfa0aSMatthew G. Knepley 68380bacfa0aSMatthew G. Knepley ierr = PetscFVGetNumComponents(fv, &numComp[f]);CHKERRQ(ierr); 68390bacfa0aSMatthew G. Knepley numDof[f*(dim+1)+dim] = numComp[f]; 6840ebb3236fSMatthew G. Knepley } 6841fd59a867SMatthew G. Knepley } 6842286d8613SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 6843286d8613SMatthew G. Knepley PetscInt d; 6844286d8613SMatthew G. Knepley for (d = 1; d < dim; ++d) { 6845286d8613SMatthew 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."); 6846286d8613SMatthew G. Knepley } 6847286d8613SMatthew G. Knepley } 6848ab1d0545SMatthew G. Knepley ierr = DMPlexCreateSection(dm, dim, numFields, numComp, numDof, numBC, bcFields, bcComps, bcPoints, NULL, §ion);CHKERRQ(ierr); 6849fd59a867SMatthew G. Knepley for (f = 0; f < numFields; ++f) { 6850fd59a867SMatthew G. Knepley PetscFE fe; 6851fd59a867SMatthew G. Knepley const char *name; 685218abd763SMatthew G. Knepley 685318abd763SMatthew G. Knepley ierr = DMGetField(dm, f, (PetscObject *) &fe);CHKERRQ(ierr); 6854fd59a867SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) fe, &name);CHKERRQ(ierr); 6855fd59a867SMatthew G. Knepley ierr = PetscSectionSetFieldName(section, f, name);CHKERRQ(ierr); 6856fd59a867SMatthew G. Knepley } 6857e87a4003SBarry Smith ierr = DMSetSection(dm, section);CHKERRQ(ierr); 6858fd59a867SMatthew G. Knepley ierr = PetscSectionDestroy(§ion);CHKERRQ(ierr); 68590e0f25f2SMatthew G. Knepley for (bc = 0; bc < numBC; ++bc) {ierr = ISDestroy(&bcPoints[bc]);CHKERRQ(ierr);ierr = ISDestroy(&bcComps[bc]);CHKERRQ(ierr);} 68600e0f25f2SMatthew G. Knepley ierr = PetscFree3(bcFields,bcPoints,bcComps);CHKERRQ(ierr); 6861286d8613SMatthew G. Knepley ierr = PetscFree2(numComp,numDof);CHKERRQ(ierr); 6862ebb3236fSMatthew G. Knepley ierr = PetscFree(isFE);CHKERRQ(ierr); 6863bceba477SMatthew G. Knepley PetscFunctionReturn(0); 6864bceba477SMatthew G. Knepley } 6865bceba477SMatthew G. Knepley 68660aef6b92SMatthew G. Knepley /*@ 68670aef6b92SMatthew G. Knepley DMPlexGetRegularRefinement - Get the flag indicating that this mesh was obtained by regular refinement from its coarse mesh 68680aef6b92SMatthew G. Knepley 68690aef6b92SMatthew G. Knepley Input Parameter: 68700aef6b92SMatthew G. Knepley . dm - The DMPlex object 68710aef6b92SMatthew G. Knepley 68720aef6b92SMatthew G. Knepley Output Parameter: 68730aef6b92SMatthew G. Knepley . regular - The flag 68740aef6b92SMatthew G. Knepley 68750aef6b92SMatthew G. Knepley Level: intermediate 68760aef6b92SMatthew G. Knepley 68770aef6b92SMatthew G. Knepley .seealso: DMPlexSetRegularRefinement() 68780aef6b92SMatthew G. Knepley @*/ 68790aef6b92SMatthew G. Knepley PetscErrorCode DMPlexGetRegularRefinement(DM dm, PetscBool *regular) 68800aef6b92SMatthew G. Knepley { 68810aef6b92SMatthew G. Knepley PetscFunctionBegin; 68820aef6b92SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 68830aef6b92SMatthew G. Knepley PetscValidPointer(regular, 2); 68840aef6b92SMatthew G. Knepley *regular = ((DM_Plex *) dm->data)->regularRefinement; 68850aef6b92SMatthew G. Knepley PetscFunctionReturn(0); 68860aef6b92SMatthew G. Knepley } 68870aef6b92SMatthew G. Knepley 68880aef6b92SMatthew G. Knepley /*@ 68890aef6b92SMatthew G. Knepley DMPlexSetRegularRefinement - Set the flag indicating that this mesh was obtained by regular refinement from its coarse mesh 68900aef6b92SMatthew G. Knepley 68910aef6b92SMatthew G. Knepley Input Parameters: 68920aef6b92SMatthew G. Knepley + dm - The DMPlex object 68930aef6b92SMatthew G. Knepley - regular - The flag 68940aef6b92SMatthew G. Knepley 68950aef6b92SMatthew G. Knepley Level: intermediate 68960aef6b92SMatthew G. Knepley 68970aef6b92SMatthew G. Knepley .seealso: DMPlexGetRegularRefinement() 68980aef6b92SMatthew G. Knepley @*/ 68990aef6b92SMatthew G. Knepley PetscErrorCode DMPlexSetRegularRefinement(DM dm, PetscBool regular) 69000aef6b92SMatthew G. Knepley { 69010aef6b92SMatthew G. Knepley PetscFunctionBegin; 69020aef6b92SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 69030aef6b92SMatthew G. Knepley ((DM_Plex *) dm->data)->regularRefinement = regular; 69040aef6b92SMatthew G. Knepley PetscFunctionReturn(0); 69050aef6b92SMatthew G. Knepley } 69060aef6b92SMatthew G. Knepley 6907f7c74593SToby Isaac /* anchors */ 6908a68b90caSToby Isaac /*@ 6909f7c74593SToby Isaac DMPlexGetAnchors - Get the layout of the anchor (point-to-point) constraints. Typically, the user will not have to 6910f7c74593SToby Isaac call DMPlexGetAnchors() directly: if there are anchors, then DMPlexGetAnchors() is called during DMGetConstraints(). 6911a68b90caSToby Isaac 6912e228b242SToby Isaac not collective 6913a68b90caSToby Isaac 6914a68b90caSToby Isaac Input Parameters: 6915a68b90caSToby Isaac . dm - The DMPlex object 6916a68b90caSToby Isaac 6917a68b90caSToby Isaac Output Parameters: 6918a68b90caSToby Isaac + anchorSection - If not NULL, set to the section describing which points anchor the constrained points. 6919a68b90caSToby Isaac - anchorIS - If not NULL, set to the list of anchors indexed by anchorSection 6920a68b90caSToby Isaac 6921a68b90caSToby Isaac 6922a68b90caSToby Isaac Level: intermediate 6923a68b90caSToby Isaac 6924f7c74593SToby Isaac .seealso: DMPlexSetAnchors(), DMGetConstraints(), DMSetConstraints() 6925a68b90caSToby Isaac @*/ 6926a17985deSToby Isaac PetscErrorCode DMPlexGetAnchors(DM dm, PetscSection *anchorSection, IS *anchorIS) 6927a68b90caSToby Isaac { 6928a68b90caSToby Isaac DM_Plex *plex = (DM_Plex *)dm->data; 692941e6d900SToby Isaac PetscErrorCode ierr; 6930a68b90caSToby Isaac 6931a68b90caSToby Isaac PetscFunctionBegin; 6932a68b90caSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 693341e6d900SToby Isaac if (!plex->anchorSection && !plex->anchorIS && plex->createanchors) {ierr = (*plex->createanchors)(dm);CHKERRQ(ierr);} 6934a68b90caSToby Isaac if (anchorSection) *anchorSection = plex->anchorSection; 6935a68b90caSToby Isaac if (anchorIS) *anchorIS = plex->anchorIS; 6936a68b90caSToby Isaac PetscFunctionReturn(0); 6937a68b90caSToby Isaac } 6938a68b90caSToby Isaac 6939a68b90caSToby Isaac /*@ 6940f7c74593SToby Isaac DMPlexSetAnchors - Set the layout of the local anchor (point-to-point) constraints. Unlike boundary conditions, 6941f7c74593SToby Isaac when a point's degrees of freedom in a section are constrained to an outside value, the anchor constraints set a 6942a68b90caSToby Isaac point's degrees of freedom to be a linear combination of other points' degrees of freedom. 6943a68b90caSToby Isaac 6944a17985deSToby Isaac After specifying the layout of constraints with DMPlexSetAnchors(), one specifies the constraints by calling 6945f7c74593SToby Isaac DMGetConstraints() and filling in the entries in the constraint matrix. 6946a68b90caSToby Isaac 6947e228b242SToby Isaac collective on dm 6948a68b90caSToby Isaac 6949a68b90caSToby Isaac Input Parameters: 6950a68b90caSToby Isaac + dm - The DMPlex object 6951e228b242SToby 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). 6952e228b242SToby Isaac - anchorIS - The list of all anchor points. Must have a local communicator (PETSC_COMM_SELF or derivative). 6953a68b90caSToby Isaac 6954a68b90caSToby Isaac The reference counts of anchorSection and anchorIS are incremented. 6955a68b90caSToby Isaac 6956a68b90caSToby Isaac Level: intermediate 6957a68b90caSToby Isaac 6958f7c74593SToby Isaac .seealso: DMPlexGetAnchors(), DMGetConstraints(), DMSetConstraints() 6959a68b90caSToby Isaac @*/ 6960a17985deSToby Isaac PetscErrorCode DMPlexSetAnchors(DM dm, PetscSection anchorSection, IS anchorIS) 6961a68b90caSToby Isaac { 6962a68b90caSToby Isaac DM_Plex *plex = (DM_Plex *)dm->data; 6963e228b242SToby Isaac PetscMPIInt result; 6964a68b90caSToby Isaac PetscErrorCode ierr; 6965a68b90caSToby Isaac 6966a68b90caSToby Isaac PetscFunctionBegin; 6967a68b90caSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6968e228b242SToby Isaac if (anchorSection) { 6969e228b242SToby Isaac PetscValidHeaderSpecific(anchorSection,PETSC_SECTION_CLASSID,2); 6970e228b242SToby Isaac ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorSection),&result);CHKERRQ(ierr); 6971f6a3d38cSToby Isaac if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor section must have local communicator"); 6972e228b242SToby Isaac } 6973e228b242SToby Isaac if (anchorIS) { 6974e228b242SToby Isaac PetscValidHeaderSpecific(anchorIS,IS_CLASSID,3); 6975e228b242SToby Isaac ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)anchorIS),&result);CHKERRQ(ierr); 6976f6a3d38cSToby Isaac if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"anchor IS must have local communicator"); 6977e228b242SToby Isaac } 6978a68b90caSToby Isaac 6979a68b90caSToby Isaac ierr = PetscObjectReference((PetscObject)anchorSection);CHKERRQ(ierr); 6980a68b90caSToby Isaac ierr = PetscSectionDestroy(&plex->anchorSection);CHKERRQ(ierr); 6981a68b90caSToby Isaac plex->anchorSection = anchorSection; 6982a68b90caSToby Isaac 6983a68b90caSToby Isaac ierr = PetscObjectReference((PetscObject)anchorIS);CHKERRQ(ierr); 6984a68b90caSToby Isaac ierr = ISDestroy(&plex->anchorIS);CHKERRQ(ierr); 6985a68b90caSToby Isaac plex->anchorIS = anchorIS; 6986a68b90caSToby Isaac 6987a68b90caSToby Isaac #if defined(PETSC_USE_DEBUG) 6988a68b90caSToby Isaac if (anchorIS && anchorSection) { 6989a68b90caSToby Isaac PetscInt size, a, pStart, pEnd; 6990a68b90caSToby Isaac const PetscInt *anchors; 6991a68b90caSToby Isaac 6992a68b90caSToby Isaac ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr); 6993a68b90caSToby Isaac ierr = ISGetLocalSize(anchorIS,&size);CHKERRQ(ierr); 6994a68b90caSToby Isaac ierr = ISGetIndices(anchorIS,&anchors);CHKERRQ(ierr); 6995a68b90caSToby Isaac for (a = 0; a < size; a++) { 6996a68b90caSToby Isaac PetscInt p; 6997a68b90caSToby Isaac 6998a68b90caSToby Isaac p = anchors[a]; 6999a68b90caSToby Isaac if (p >= pStart && p < pEnd) { 7000a68b90caSToby Isaac PetscInt dof; 7001a68b90caSToby Isaac 7002a68b90caSToby Isaac ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr); 7003a68b90caSToby Isaac if (dof) { 7004a68b90caSToby Isaac PetscErrorCode ierr2; 7005a68b90caSToby Isaac 7006a68b90caSToby Isaac ierr2 = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr2); 70078ccfff9cSToby Isaac SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"Point %D cannot be constrained and an anchor",p); 7008a68b90caSToby Isaac } 7009a68b90caSToby Isaac } 7010a68b90caSToby Isaac } 7011a68b90caSToby Isaac ierr = ISRestoreIndices(anchorIS,&anchors);CHKERRQ(ierr); 7012a68b90caSToby Isaac } 7013a68b90caSToby Isaac #endif 7014f7c74593SToby Isaac /* reset the generic constraints */ 7015f7c74593SToby Isaac ierr = DMSetDefaultConstraints(dm,NULL,NULL);CHKERRQ(ierr); 7016a68b90caSToby Isaac PetscFunctionReturn(0); 7017a68b90caSToby Isaac } 7018a68b90caSToby Isaac 7019f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintSection_Anchors(DM dm, PetscSection section, PetscSection *cSec) 7020a68b90caSToby Isaac { 7021f7c74593SToby Isaac PetscSection anchorSection; 70226995de1eSToby Isaac PetscInt pStart, pEnd, sStart, sEnd, p, dof, numFields, f; 7023a68b90caSToby Isaac PetscErrorCode ierr; 7024a68b90caSToby Isaac 7025a68b90caSToby Isaac PetscFunctionBegin; 7026a68b90caSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7027a17985deSToby Isaac ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr); 7028e228b242SToby Isaac ierr = PetscSectionCreate(PETSC_COMM_SELF,cSec);CHKERRQ(ierr); 7029a68b90caSToby Isaac ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr); 70306995de1eSToby Isaac if (numFields) { 7031719ab38cSToby Isaac PetscInt f; 7032a68b90caSToby Isaac ierr = PetscSectionSetNumFields(*cSec,numFields);CHKERRQ(ierr); 7033719ab38cSToby Isaac 7034719ab38cSToby Isaac for (f = 0; f < numFields; f++) { 7035719ab38cSToby Isaac PetscInt numComp; 7036719ab38cSToby Isaac 7037719ab38cSToby Isaac ierr = PetscSectionGetFieldComponents(section,f,&numComp);CHKERRQ(ierr); 7038719ab38cSToby Isaac ierr = PetscSectionSetFieldComponents(*cSec,f,numComp);CHKERRQ(ierr); 7039719ab38cSToby Isaac } 70406995de1eSToby Isaac } 7041a68b90caSToby Isaac ierr = PetscSectionGetChart(anchorSection,&pStart,&pEnd);CHKERRQ(ierr); 70426995de1eSToby Isaac ierr = PetscSectionGetChart(section,&sStart,&sEnd);CHKERRQ(ierr); 70436995de1eSToby Isaac pStart = PetscMax(pStart,sStart); 70446995de1eSToby Isaac pEnd = PetscMin(pEnd,sEnd); 70456995de1eSToby Isaac pEnd = PetscMax(pStart,pEnd); 7046a68b90caSToby Isaac ierr = PetscSectionSetChart(*cSec,pStart,pEnd);CHKERRQ(ierr); 7047a68b90caSToby Isaac for (p = pStart; p < pEnd; p++) { 7048a68b90caSToby Isaac ierr = PetscSectionGetDof(anchorSection,p,&dof);CHKERRQ(ierr); 7049a68b90caSToby Isaac if (dof) { 7050a68b90caSToby Isaac ierr = PetscSectionGetDof(section,p,&dof);CHKERRQ(ierr); 7051a68b90caSToby Isaac ierr = PetscSectionSetDof(*cSec,p,dof);CHKERRQ(ierr); 7052a68b90caSToby Isaac for (f = 0; f < numFields; f++) { 7053a68b90caSToby Isaac ierr = PetscSectionGetFieldDof(section,p,f,&dof);CHKERRQ(ierr); 7054a68b90caSToby Isaac ierr = PetscSectionSetFieldDof(*cSec,p,f,dof);CHKERRQ(ierr); 7055a68b90caSToby Isaac } 7056a68b90caSToby Isaac } 7057a68b90caSToby Isaac } 7058a68b90caSToby Isaac ierr = PetscSectionSetUp(*cSec);CHKERRQ(ierr); 7059a68b90caSToby Isaac PetscFunctionReturn(0); 7060a68b90caSToby Isaac } 7061a68b90caSToby Isaac 7062f7c74593SToby Isaac static PetscErrorCode DMPlexCreateConstraintMatrix_Anchors(DM dm, PetscSection section, PetscSection cSec, Mat *cMat) 7063a68b90caSToby Isaac { 7064f7c74593SToby Isaac PetscSection aSec; 70650ac89760SToby Isaac PetscInt pStart, pEnd, p, dof, aDof, aOff, off, nnz, annz, m, n, q, a, offset, *i, *j; 70660ac89760SToby Isaac const PetscInt *anchors; 70670ac89760SToby Isaac PetscInt numFields, f; 706866ad2231SToby Isaac IS aIS; 70690ac89760SToby Isaac PetscErrorCode ierr; 70700ac89760SToby Isaac 70710ac89760SToby Isaac PetscFunctionBegin; 70720ac89760SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 70730ac89760SToby Isaac ierr = PetscSectionGetStorageSize(cSec, &m);CHKERRQ(ierr); 70740ac89760SToby Isaac ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr); 70750ac89760SToby Isaac ierr = MatCreate(PETSC_COMM_SELF,cMat);CHKERRQ(ierr); 70760ac89760SToby Isaac ierr = MatSetSizes(*cMat,m,n,m,n);CHKERRQ(ierr); 7077302440fdSBarry Smith ierr = MatSetType(*cMat,MATSEQAIJ);CHKERRQ(ierr); 7078a17985deSToby Isaac ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr); 707966ad2231SToby Isaac ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr); 70806995de1eSToby Isaac /* cSec will be a subset of aSec and section */ 70816995de1eSToby Isaac ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr); 70820ac89760SToby Isaac ierr = PetscMalloc1(m+1,&i);CHKERRQ(ierr); 70830ac89760SToby Isaac i[0] = 0; 70840ac89760SToby Isaac ierr = PetscSectionGetNumFields(section,&numFields);CHKERRQ(ierr); 70850ac89760SToby Isaac for (p = pStart; p < pEnd; p++) { 7086f19733c5SToby Isaac PetscInt rDof, rOff, r; 7087f19733c5SToby Isaac 7088f19733c5SToby Isaac ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr); 7089f19733c5SToby Isaac if (!rDof) continue; 7090f19733c5SToby Isaac ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr); 70910ac89760SToby Isaac if (numFields) { 70920ac89760SToby Isaac for (f = 0; f < numFields; f++) { 70930ac89760SToby Isaac annz = 0; 7094f19733c5SToby Isaac for (r = 0; r < rDof; r++) { 7095f19733c5SToby Isaac a = anchors[rOff + r]; 70960ac89760SToby Isaac ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr); 70970ac89760SToby Isaac annz += aDof; 70980ac89760SToby Isaac } 70990ac89760SToby Isaac ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr); 71000ac89760SToby Isaac ierr = PetscSectionGetFieldOffset(cSec,p,f,&off);CHKERRQ(ierr); 71010ac89760SToby Isaac for (q = 0; q < dof; q++) { 71020ac89760SToby Isaac i[off + q + 1] = i[off + q] + annz; 71030ac89760SToby Isaac } 71040ac89760SToby Isaac } 71050ac89760SToby Isaac } 71060ac89760SToby Isaac else { 71070ac89760SToby Isaac annz = 0; 71080ac89760SToby Isaac for (q = 0; q < dof; q++) { 71090ac89760SToby Isaac a = anchors[off + q]; 71100ac89760SToby Isaac ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr); 71110ac89760SToby Isaac annz += aDof; 71120ac89760SToby Isaac } 71130ac89760SToby Isaac ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr); 71140ac89760SToby Isaac ierr = PetscSectionGetOffset(cSec,p,&off);CHKERRQ(ierr); 71150ac89760SToby Isaac for (q = 0; q < dof; q++) { 71160ac89760SToby Isaac i[off + q + 1] = i[off + q] + annz; 71170ac89760SToby Isaac } 71180ac89760SToby Isaac } 71190ac89760SToby Isaac } 71200ac89760SToby Isaac nnz = i[m]; 71210ac89760SToby Isaac ierr = PetscMalloc1(nnz,&j);CHKERRQ(ierr); 71220ac89760SToby Isaac offset = 0; 71230ac89760SToby Isaac for (p = pStart; p < pEnd; p++) { 71240ac89760SToby Isaac if (numFields) { 71250ac89760SToby Isaac for (f = 0; f < numFields; f++) { 71260ac89760SToby Isaac ierr = PetscSectionGetFieldDof(cSec,p,f,&dof);CHKERRQ(ierr); 71270ac89760SToby Isaac for (q = 0; q < dof; q++) { 71280ac89760SToby Isaac PetscInt rDof, rOff, r; 71290ac89760SToby Isaac ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr); 71300ac89760SToby Isaac ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr); 71310ac89760SToby Isaac for (r = 0; r < rDof; r++) { 71320ac89760SToby Isaac PetscInt s; 71330ac89760SToby Isaac 71340ac89760SToby Isaac a = anchors[rOff + r]; 71350ac89760SToby Isaac ierr = PetscSectionGetFieldDof(section,a,f,&aDof);CHKERRQ(ierr); 71360ac89760SToby Isaac ierr = PetscSectionGetFieldOffset(section,a,f,&aOff);CHKERRQ(ierr); 71370ac89760SToby Isaac for (s = 0; s < aDof; s++) { 71380ac89760SToby Isaac j[offset++] = aOff + s; 71390ac89760SToby Isaac } 71400ac89760SToby Isaac } 71410ac89760SToby Isaac } 71420ac89760SToby Isaac } 71430ac89760SToby Isaac } 71440ac89760SToby Isaac else { 71450ac89760SToby Isaac ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr); 71460ac89760SToby Isaac for (q = 0; q < dof; q++) { 71470ac89760SToby Isaac PetscInt rDof, rOff, r; 71480ac89760SToby Isaac ierr = PetscSectionGetDof(aSec,p,&rDof);CHKERRQ(ierr); 71490ac89760SToby Isaac ierr = PetscSectionGetOffset(aSec,p,&rOff);CHKERRQ(ierr); 71500ac89760SToby Isaac for (r = 0; r < rDof; r++) { 71510ac89760SToby Isaac PetscInt s; 71520ac89760SToby Isaac 71530ac89760SToby Isaac a = anchors[rOff + r]; 71540ac89760SToby Isaac ierr = PetscSectionGetDof(section,a,&aDof);CHKERRQ(ierr); 71550ac89760SToby Isaac ierr = PetscSectionGetOffset(section,a,&aOff);CHKERRQ(ierr); 71560ac89760SToby Isaac for (s = 0; s < aDof; s++) { 71570ac89760SToby Isaac j[offset++] = aOff + s; 71580ac89760SToby Isaac } 71590ac89760SToby Isaac } 71600ac89760SToby Isaac } 71610ac89760SToby Isaac } 71620ac89760SToby Isaac } 71630ac89760SToby Isaac ierr = MatSeqAIJSetPreallocationCSR(*cMat,i,j,NULL);CHKERRQ(ierr); 716425570a81SToby Isaac ierr = PetscFree(i);CHKERRQ(ierr); 716525570a81SToby Isaac ierr = PetscFree(j);CHKERRQ(ierr); 716666ad2231SToby Isaac ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr); 71670ac89760SToby Isaac PetscFunctionReturn(0); 71680ac89760SToby Isaac } 71690ac89760SToby Isaac 717066ad2231SToby Isaac PetscErrorCode DMCreateDefaultConstraints_Plex(DM dm) 717166ad2231SToby Isaac { 7172f7c74593SToby Isaac DM_Plex *plex = (DM_Plex *)dm->data; 7173f7c74593SToby Isaac PetscSection anchorSection, section, cSec; 717466ad2231SToby Isaac Mat cMat; 717566ad2231SToby Isaac PetscErrorCode ierr; 717666ad2231SToby Isaac 717766ad2231SToby Isaac PetscFunctionBegin; 717866ad2231SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7179a17985deSToby Isaac ierr = DMPlexGetAnchors(dm,&anchorSection,NULL);CHKERRQ(ierr); 718066ad2231SToby Isaac if (anchorSection) { 7181e228b242SToby Isaac PetscDS ds; 7182e228b242SToby Isaac PetscInt nf; 7183e228b242SToby Isaac 7184e87a4003SBarry Smith ierr = DMGetSection(dm,§ion);CHKERRQ(ierr); 7185f7c74593SToby Isaac ierr = DMPlexCreateConstraintSection_Anchors(dm,section,&cSec);CHKERRQ(ierr); 7186f7c74593SToby Isaac ierr = DMPlexCreateConstraintMatrix_Anchors(dm,section,cSec,&cMat);CHKERRQ(ierr); 7187e228b242SToby Isaac ierr = DMGetDS(dm,&ds);CHKERRQ(ierr); 7188302440fdSBarry Smith ierr = PetscDSGetNumFields(ds,&nf);CHKERRQ(ierr); 7189e228b242SToby Isaac if (nf && plex->computeanchormatrix) {ierr = (*plex->computeanchormatrix)(dm,section,cSec,cMat);CHKERRQ(ierr);} 719066ad2231SToby Isaac ierr = DMSetDefaultConstraints(dm,cSec,cMat);CHKERRQ(ierr); 719166ad2231SToby Isaac ierr = PetscSectionDestroy(&cSec);CHKERRQ(ierr); 719266ad2231SToby Isaac ierr = MatDestroy(&cMat);CHKERRQ(ierr); 719366ad2231SToby Isaac } 719466ad2231SToby Isaac PetscFunctionReturn(0); 719566ad2231SToby Isaac } 7196a93c429eSMatthew G. Knepley 7197a93c429eSMatthew G. Knepley PetscErrorCode DMCreateSubDomainDM_Plex(DM dm, DMLabel label, PetscInt value, IS *is, DM *subdm) 7198a93c429eSMatthew G. Knepley { 7199a93c429eSMatthew G. Knepley PetscDS prob; 7200a93c429eSMatthew G. Knepley IS subis; 7201a93c429eSMatthew G. Knepley PetscSection section, subsection; 7202a93c429eSMatthew G. Knepley PetscErrorCode ierr; 7203a93c429eSMatthew G. Knepley 7204a93c429eSMatthew G. Knepley PetscFunctionBegin; 7205a93c429eSMatthew G. Knepley ierr = DMGetDefaultSection(dm, §ion);CHKERRQ(ierr); 7206a93c429eSMatthew G. Knepley if (!section) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set default section for DM before splitting subdomain"); 7207a93c429eSMatthew G. Knepley if (!subdm) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Must set output subDM for splitting subdomain"); 7208a93c429eSMatthew G. Knepley /* Create subdomain */ 7209a93c429eSMatthew G. Knepley ierr = DMPlexFilter(dm, label, value, subdm);CHKERRQ(ierr); 7210a93c429eSMatthew G. Knepley /* Create submodel */ 7211a93c429eSMatthew G. Knepley ierr = DMPlexCreateSubpointIS(*subdm, &subis);CHKERRQ(ierr); 7212a93c429eSMatthew G. Knepley ierr = PetscSectionCreateSubmeshSection(section, subis, &subsection);CHKERRQ(ierr); 7213a93c429eSMatthew G. Knepley ierr = ISDestroy(&subis);CHKERRQ(ierr); 7214a93c429eSMatthew G. Knepley ierr = DMSetDefaultSection(*subdm, subsection);CHKERRQ(ierr); 7215a93c429eSMatthew G. Knepley ierr = PetscSectionDestroy(&subsection);CHKERRQ(ierr); 7216a93c429eSMatthew G. Knepley ierr = DMGetDS(dm, &prob);CHKERRQ(ierr); 7217a93c429eSMatthew G. Knepley ierr = DMSetDS(*subdm, prob);CHKERRQ(ierr); 7218a93c429eSMatthew G. Knepley /* Create map from submodel to global model */ 7219a93c429eSMatthew G. Knepley if (is) { 7220a93c429eSMatthew G. Knepley PetscSection sectionGlobal, subsectionGlobal; 7221a93c429eSMatthew G. Knepley IS spIS; 7222a93c429eSMatthew G. Knepley const PetscInt *spmap; 7223a93c429eSMatthew G. Knepley PetscInt *subIndices; 7224a93c429eSMatthew G. Knepley PetscInt subSize = 0, subOff = 0, pStart, pEnd, p; 7225a93c429eSMatthew G. Knepley PetscInt Nf, f, bs = -1, bsLocal[2], bsMinMax[2]; 7226a93c429eSMatthew G. Knepley 7227a93c429eSMatthew G. Knepley ierr = DMPlexCreateSubpointIS(*subdm, &spIS);CHKERRQ(ierr); 7228a93c429eSMatthew G. Knepley ierr = ISGetIndices(spIS, &spmap);CHKERRQ(ierr); 7229a93c429eSMatthew G. Knepley ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr); 7230a93c429eSMatthew G. Knepley ierr = DMGetDefaultGlobalSection(dm, §ionGlobal);CHKERRQ(ierr); 7231a93c429eSMatthew G. Knepley ierr = DMGetDefaultGlobalSection(*subdm, &subsectionGlobal);CHKERRQ(ierr); 7232a93c429eSMatthew G. Knepley ierr = PetscSectionGetChart(subsection, &pStart, &pEnd);CHKERRQ(ierr); 7233a93c429eSMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 7234a93c429eSMatthew G. Knepley PetscInt gdof, pSubSize = 0; 7235a93c429eSMatthew G. Knepley 7236a93c429eSMatthew G. Knepley ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr); 7237a93c429eSMatthew G. Knepley if (gdof > 0) { 7238a93c429eSMatthew G. Knepley for (f = 0; f < Nf; ++f) { 7239a93c429eSMatthew G. Knepley PetscInt fdof, fcdof; 7240a93c429eSMatthew G. Knepley 7241a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldDof(subsection, p, f, &fdof);CHKERRQ(ierr); 7242a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldConstraintDof(subsection, p, f, &fcdof);CHKERRQ(ierr); 7243a93c429eSMatthew G. Knepley pSubSize += fdof-fcdof; 7244a93c429eSMatthew G. Knepley } 7245a93c429eSMatthew G. Knepley subSize += pSubSize; 7246a93c429eSMatthew G. Knepley if (pSubSize) { 7247a93c429eSMatthew G. Knepley if (bs < 0) { 7248a93c429eSMatthew G. Knepley bs = pSubSize; 7249a93c429eSMatthew G. Knepley } else if (bs != pSubSize) { 7250a93c429eSMatthew G. Knepley /* Layout does not admit a pointwise block size */ 7251a93c429eSMatthew G. Knepley bs = 1; 7252a93c429eSMatthew G. Knepley } 7253a93c429eSMatthew G. Knepley } 7254a93c429eSMatthew G. Knepley } 7255a93c429eSMatthew G. Knepley } 7256a93c429eSMatthew G. Knepley /* Must have same blocksize on all procs (some might have no points) */ 7257a93c429eSMatthew G. Knepley bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs; 7258a93c429eSMatthew G. Knepley ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr); 7259a93c429eSMatthew G. Knepley if (bsMinMax[0] != bsMinMax[1]) {bs = 1;} 7260a93c429eSMatthew G. Knepley else {bs = bsMinMax[0];} 7261a93c429eSMatthew G. Knepley ierr = PetscMalloc1(subSize, &subIndices);CHKERRQ(ierr); 7262a93c429eSMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 7263a93c429eSMatthew G. Knepley PetscInt gdof, goff; 7264a93c429eSMatthew G. Knepley 7265a93c429eSMatthew G. Knepley ierr = PetscSectionGetDof(subsectionGlobal, p, &gdof);CHKERRQ(ierr); 7266a93c429eSMatthew G. Knepley if (gdof > 0) { 7267a93c429eSMatthew G. Knepley const PetscInt point = spmap[p]; 7268a93c429eSMatthew G. Knepley 7269a93c429eSMatthew G. Knepley ierr = PetscSectionGetOffset(sectionGlobal, point, &goff);CHKERRQ(ierr); 7270a93c429eSMatthew G. Knepley for (f = 0; f < Nf; ++f) { 7271a93c429eSMatthew G. Knepley PetscInt fdof, fcdof, fc, f2, poff = 0; 7272a93c429eSMatthew G. Knepley 7273a93c429eSMatthew G. Knepley /* Can get rid of this loop by storing field information in the global section */ 7274a93c429eSMatthew G. Knepley for (f2 = 0; f2 < f; ++f2) { 7275a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, p, f2, &fdof);CHKERRQ(ierr); 7276a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldConstraintDof(section, p, f2, &fcdof);CHKERRQ(ierr); 7277a93c429eSMatthew G. Knepley poff += fdof-fcdof; 7278a93c429eSMatthew G. Knepley } 7279a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr); 7280a93c429eSMatthew G. Knepley ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr); 7281a93c429eSMatthew G. Knepley for (fc = 0; fc < fdof-fcdof; ++fc, ++subOff) { 7282a93c429eSMatthew G. Knepley subIndices[subOff] = goff+poff+fc; 7283a93c429eSMatthew G. Knepley } 7284a93c429eSMatthew G. Knepley } 7285a93c429eSMatthew G. Knepley } 7286a93c429eSMatthew G. Knepley } 7287a93c429eSMatthew G. Knepley ierr = ISRestoreIndices(spIS, &spmap);CHKERRQ(ierr); 7288a93c429eSMatthew G. Knepley ierr = ISDestroy(&spIS);CHKERRQ(ierr); 7289a93c429eSMatthew G. Knepley ierr = ISCreateGeneral(PetscObjectComm((PetscObject)dm), subSize, subIndices, PETSC_OWN_POINTER, is);CHKERRQ(ierr); 7290a93c429eSMatthew G. Knepley if (bs > 1) { 7291a93c429eSMatthew G. Knepley /* We need to check that the block size does not come from non-contiguous fields */ 7292a93c429eSMatthew G. Knepley PetscInt i, j, set = 1; 7293a93c429eSMatthew G. Knepley for (i = 0; i < subSize; i += bs) { 7294a93c429eSMatthew G. Knepley for (j = 0; j < bs; ++j) { 7295a93c429eSMatthew G. Knepley if (subIndices[i+j] != subIndices[i]+j) {set = 0; break;} 7296a93c429eSMatthew G. Knepley } 7297a93c429eSMatthew G. Knepley } 7298a93c429eSMatthew G. Knepley if (set) {ierr = ISSetBlockSize(*is, bs);CHKERRQ(ierr);} 7299a93c429eSMatthew G. Knepley } 7300a93c429eSMatthew G. Knepley /* Attach nullspace */ 7301a93c429eSMatthew G. Knepley for (f = 0; f < Nf; ++f) { 7302a93c429eSMatthew G. Knepley (*subdm)->nullspaceConstructors[f] = dm->nullspaceConstructors[f]; 7303a93c429eSMatthew G. Knepley if ((*subdm)->nullspaceConstructors[f]) break; 7304a93c429eSMatthew G. Knepley } 7305a93c429eSMatthew G. Knepley if (f < Nf) { 7306a93c429eSMatthew G. Knepley MatNullSpace nullSpace; 7307a93c429eSMatthew G. Knepley 7308a93c429eSMatthew G. Knepley ierr = (*(*subdm)->nullspaceConstructors[f])(*subdm, f, &nullSpace);CHKERRQ(ierr); 7309a93c429eSMatthew G. Knepley ierr = PetscObjectCompose((PetscObject) *is, "nullspace", (PetscObject) nullSpace);CHKERRQ(ierr); 7310a93c429eSMatthew G. Knepley ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr); 7311a93c429eSMatthew G. Knepley } 7312a93c429eSMatthew G. Knepley } 7313a93c429eSMatthew G. Knepley PetscFunctionReturn(0); 7314a93c429eSMatthew G. Knepley } 7315