1af0996ceSBarry Smith #include <petsc/private/dmimpl.h> /*I "petscdm.h" I*/ 2c58f1c22SToby Isaac #include <petsc/private/dmlabelimpl.h> /*I "petscdmlabel.h" I*/ 3e6f8dbb6SToby Isaac #include <petsc/private/petscdsimpl.h> /*I "petscds.h" I*/ 43e922f36SToby Isaac #include <petscdmplex.h> 5f19dbd58SToby Isaac #include <petscdmfield.h> 60c312b8eSJed Brown #include <petscsf.h> 72764a2aaSMatthew G. Knepley #include <petscds.h> 847c6ae99SBarry Smith 9732e2eb9SMatthew G Knepley PetscClassId DM_CLASSID; 10d67d17b1SMatthew G. Knepley PetscClassId DMLABEL_CLASSID; 1158cd63d5SVaclav Hapla PetscLogEvent DM_Convert, DM_GlobalToLocal, DM_LocalToGlobal, DM_LocalToLocal, DM_LocatePoints, DM_Coarsen, DM_Refine, DM_CreateInterpolation, DM_CreateRestriction, DM_CreateInjection, DM_CreateMatrix, DM_Load; 1267a56275SMatthew G Knepley 13e249ee26SToby Isaac const char *const DMBoundaryTypes[] = {"NONE","GHOSTED","MIRROR","PERIODIC","TWIST","DMBoundaryType","DM_BOUNDARY_",0}; 1440967b3bSMatthew G. Knepley const char *const DMBoundaryConditionTypes[] = {"INVALID","ESSENTIAL","NATURAL","INVALID","INVALID","ESSENTIAL_FIELD","NATURAL_FIELD","INVALID","INVALID","INVALID","NATURAL_RIEMANN","DMBoundaryConditionType","DM_BC_",0}; 15ba2698f1SMatthew G. Knepley const char *const DMPolytopeTypes[] = {"point", "segment", "triangle", "quadrilateral", "segment tensor prism", "tetrahedron", "hexahedron", "triangular prism", "triangular tensor prism", "quadrilateral tensor prism", "unknown", "DMPolytopeType", "DM_POLYTOPE_", 0}; 16a4121054SBarry Smith /*@ 17de043629SMatthew G Knepley DMCreate - Creates an empty DM object. The type can then be set with DMSetType(). 18a4121054SBarry Smith 19a4121054SBarry Smith If you never call DMSetType() it will generate an 20a4121054SBarry Smith error when you try to use the vector. 21a4121054SBarry Smith 22d083f849SBarry Smith Collective 23a4121054SBarry Smith 24a4121054SBarry Smith Input Parameter: 25a4121054SBarry Smith . comm - The communicator for the DM object 26a4121054SBarry Smith 27a4121054SBarry Smith Output Parameter: 28a4121054SBarry Smith . dm - The DM object 29a4121054SBarry Smith 30a4121054SBarry Smith Level: beginner 31a4121054SBarry Smith 328472ad0fSDave May .seealso: DMSetType(), DMDA, DMSLICED, DMCOMPOSITE, DMPLEX, DMMOAB, DMNETWORK 33a4121054SBarry Smith @*/ 347087cfbeSBarry Smith PetscErrorCode DMCreate(MPI_Comm comm,DM *dm) 35a4121054SBarry Smith { 36a4121054SBarry Smith DM v; 37e5e52638SMatthew G. Knepley PetscDS ds; 38a4121054SBarry Smith PetscErrorCode ierr; 39a4121054SBarry Smith 40a4121054SBarry Smith PetscFunctionBegin; 411411c6eeSJed Brown PetscValidPointer(dm,2); 420298fd71SBarry Smith *dm = NULL; 43607a6623SBarry Smith ierr = DMInitializePackage();CHKERRQ(ierr); 44a4121054SBarry Smith 4573107ff1SLisandro Dalcin ierr = PetscHeaderCreate(v, DM_CLASSID, "DM", "Distribution Manager", "DM", comm, DMDestroy, DMView);CHKERRQ(ierr); 46e7c4fc90SDmitry Karpeev 4749be4549SMatthew G. Knepley v->setupcalled = PETSC_FALSE; 4849be4549SMatthew G. Knepley v->setfromoptionscalled = PETSC_FALSE; 490298fd71SBarry Smith v->ltogmap = NULL; 501411c6eeSJed Brown v->bs = 1; 51171400e9SBarry Smith v->coloringtype = IS_COLORING_GLOBAL; 5288ed4aceSMatthew G Knepley ierr = PetscSFCreate(comm, &v->sf);CHKERRQ(ierr); 531bb6d2a8SBarry Smith ierr = PetscSFCreate(comm, &v->sectionSF);CHKERRQ(ierr); 54c58f1c22SToby Isaac v->labels = NULL; 5534aa8a36SMatthew G. Knepley v->adjacency[0] = PETSC_FALSE; 5634aa8a36SMatthew G. Knepley v->adjacency[1] = PETSC_TRUE; 57c58f1c22SToby Isaac v->depthLabel = NULL; 58ba2698f1SMatthew G. Knepley v->celltypeLabel = NULL; 591bb6d2a8SBarry Smith v->localSection = NULL; 601bb6d2a8SBarry Smith v->globalSection = NULL; 61fba222abSToby Isaac v->defaultConstraintSection = NULL; 62fba222abSToby Isaac v->defaultConstraintMat = NULL; 63c6b900c6SMatthew G. Knepley v->L = NULL; 64c6b900c6SMatthew G. Knepley v->maxCell = NULL; 655dc8c3f7SMatthew G. Knepley v->bdtype = NULL; 669a9a41abSToby Isaac v->dimEmbed = PETSC_DEFAULT; 6796173672SStefano Zampini v->dim = PETSC_DETERMINE; 68435a35e8SMatthew G Knepley { 69435a35e8SMatthew G Knepley PetscInt i; 70435a35e8SMatthew G Knepley for (i = 0; i < 10; ++i) { 710298fd71SBarry Smith v->nullspaceConstructors[i] = NULL; 72f9d4088aSMatthew G. Knepley v->nearnullspaceConstructors[i] = NULL; 73435a35e8SMatthew G Knepley } 74435a35e8SMatthew G Knepley } 75e5e52638SMatthew G. Knepley ierr = PetscDSCreate(PetscObjectComm((PetscObject) v), &ds);CHKERRQ(ierr); 76b3cf3223SMatthew G. Knepley ierr = DMSetRegionDS(v, NULL, NULL, ds);CHKERRQ(ierr); 77e5e52638SMatthew G. Knepley ierr = PetscDSDestroy(&ds);CHKERRQ(ierr); 7814f150ffSMatthew G. Knepley v->dmBC = NULL; 79a8fb8f29SToby Isaac v->coarseMesh = NULL; 80f4d763aaSMatthew G. Knepley v->outputSequenceNum = -1; 81cdb7a50dSMatthew G. Knepley v->outputSequenceVal = 0.0; 82c0dedaeaSBarry Smith ierr = DMSetVecType(v,VECSTANDARD);CHKERRQ(ierr); 83b412c318SBarry Smith ierr = DMSetMatType(v,MATAIJ);CHKERRQ(ierr); 844a7a4c06SLawrence Mitchell 851411c6eeSJed Brown *dm = v; 86a4121054SBarry Smith PetscFunctionReturn(0); 87a4121054SBarry Smith } 88a4121054SBarry Smith 8938221697SMatthew G. Knepley /*@ 9038221697SMatthew G. Knepley DMClone - Creates a DM object with the same topology as the original. 9138221697SMatthew G. Knepley 92d083f849SBarry Smith Collective 9338221697SMatthew G. Knepley 9438221697SMatthew G. Knepley Input Parameter: 9538221697SMatthew G. Knepley . dm - The original DM object 9638221697SMatthew G. Knepley 9738221697SMatthew G. Knepley Output Parameter: 9838221697SMatthew G. Knepley . newdm - The new DM object 9938221697SMatthew G. Knepley 10038221697SMatthew G. Knepley Level: beginner 10138221697SMatthew G. Knepley 1021cb8cacdSPatrick Sanan Notes: 1031cb8cacdSPatrick Sanan For some DM implementations this is a shallow clone, the result of which may share (referent counted) information with its parent. For example, 1041cb8cacdSPatrick Sanan DMClone() applied to a DMPLEX object will result in a new DMPLEX that shares the topology with the original DMPLEX. It does not 1051cb8cacdSPatrick Sanan share the PetscSection of the original DM. 1061bb6d2a8SBarry Smith 10789706ed2SPatrick Sanan The clone is considered set up iff the original is. 10889706ed2SPatrick Sanan 10992cfd99aSMartin Diehl .seealso: DMDestroy(), DMCreate(), DMSetType(), DMSetLocalSection(), DMSetGlobalSection() 1101bb6d2a8SBarry Smith 11138221697SMatthew G. Knepley @*/ 11238221697SMatthew G. Knepley PetscErrorCode DMClone(DM dm, DM *newdm) 11338221697SMatthew G. Knepley { 11438221697SMatthew G. Knepley PetscSF sf; 11538221697SMatthew G. Knepley Vec coords; 11638221697SMatthew G. Knepley void *ctx; 117a3219837SMatthew G. Knepley PetscInt dim, cdim; 11838221697SMatthew G. Knepley PetscErrorCode ierr; 11938221697SMatthew G. Knepley 12038221697SMatthew G. Knepley PetscFunctionBegin; 12138221697SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 12238221697SMatthew G. Knepley PetscValidPointer(newdm,2); 12338221697SMatthew G. Knepley ierr = DMCreate(PetscObjectComm((PetscObject) dm), newdm);CHKERRQ(ierr); 1245d80c0bfSVaclav Hapla ierr = DMCopyLabels(dm, *newdm, PETSC_COPY_VALUES, PETSC_TRUE);CHKERRQ(ierr); 125ddf8437dSMatthew G. Knepley (*newdm)->leveldown = dm->leveldown; 126ddf8437dSMatthew G. Knepley (*newdm)->levelup = dm->levelup; 1271de53e9aSMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 1281de53e9aSMatthew G. Knepley ierr = DMSetDimension(*newdm, dim);CHKERRQ(ierr); 12938221697SMatthew G. Knepley if (dm->ops->clone) { 13038221697SMatthew G. Knepley ierr = (*dm->ops->clone)(dm, newdm);CHKERRQ(ierr); 13138221697SMatthew G. Knepley } 1323f22bcbcSToby Isaac (*newdm)->setupcalled = dm->setupcalled; 13338221697SMatthew G. Knepley ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr); 13438221697SMatthew G. Knepley ierr = DMSetPointSF(*newdm, sf);CHKERRQ(ierr); 13538221697SMatthew G. Knepley ierr = DMGetApplicationContext(dm, &ctx);CHKERRQ(ierr); 13638221697SMatthew G. Knepley ierr = DMSetApplicationContext(*newdm, ctx);CHKERRQ(ierr); 137be4c1c3eSMatthew G. Knepley if (dm->coordinateDM) { 138be4c1c3eSMatthew G. Knepley DM ncdm; 139be4c1c3eSMatthew G. Knepley PetscSection cs; 1405a0206caSToby Isaac PetscInt pEnd = -1, pEndMax = -1; 141be4c1c3eSMatthew G. Knepley 14292fd8e1eSJed Brown ierr = DMGetLocalSection(dm->coordinateDM, &cs);CHKERRQ(ierr); 143be4c1c3eSMatthew G. Knepley if (cs) {ierr = PetscSectionGetChart(cs, NULL, &pEnd);CHKERRQ(ierr);} 1445a0206caSToby Isaac ierr = MPI_Allreduce(&pEnd,&pEndMax,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 1455a0206caSToby Isaac if (pEndMax >= 0) { 146be4c1c3eSMatthew G. Knepley ierr = DMClone(dm->coordinateDM, &ncdm);CHKERRQ(ierr); 14783bfc06fSMatthew Knepley ierr = DMCopyDisc(dm->coordinateDM, ncdm);CHKERRQ(ierr); 14892fd8e1eSJed Brown ierr = DMSetLocalSection(ncdm, cs);CHKERRQ(ierr); 149a61e840bSMatthew G. Knepley ierr = DMSetCoordinateDM(*newdm, ncdm);CHKERRQ(ierr); 150be4c1c3eSMatthew G. Knepley ierr = DMDestroy(&ncdm);CHKERRQ(ierr); 151be4c1c3eSMatthew G. Knepley } 152be4c1c3eSMatthew G. Knepley } 153a3219837SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 154a3219837SMatthew G. Knepley ierr = DMSetCoordinateDim(*newdm, cdim);CHKERRQ(ierr); 15538221697SMatthew G. Knepley ierr = DMGetCoordinatesLocal(dm, &coords);CHKERRQ(ierr); 15638221697SMatthew G. Knepley if (coords) { 15738221697SMatthew G. Knepley ierr = DMSetCoordinatesLocal(*newdm, coords);CHKERRQ(ierr); 15838221697SMatthew G. Knepley } else { 15938221697SMatthew G. Knepley ierr = DMGetCoordinates(dm, &coords);CHKERRQ(ierr); 16038221697SMatthew G. Knepley if (coords) {ierr = DMSetCoordinates(*newdm, coords);CHKERRQ(ierr);} 16138221697SMatthew G. Knepley } 16290b157c4SStefano Zampini { 16390b157c4SStefano Zampini PetscBool isper; 164c6b900c6SMatthew G. Knepley const PetscReal *maxCell, *L; 1655dc8c3f7SMatthew G. Knepley const DMBoundaryType *bd; 16690b157c4SStefano Zampini ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr); 16790b157c4SStefano Zampini ierr = DMSetPeriodicity(*newdm, isper, maxCell, L, bd);CHKERRQ(ierr); 168c6b900c6SMatthew G. Knepley } 16934aa8a36SMatthew G. Knepley { 17034aa8a36SMatthew G. Knepley PetscBool useCone, useClosure; 17134aa8a36SMatthew G. Knepley 17234aa8a36SMatthew G. Knepley ierr = DMGetAdjacency(dm, PETSC_DEFAULT, &useCone, &useClosure);CHKERRQ(ierr); 17334aa8a36SMatthew G. Knepley ierr = DMSetAdjacency(*newdm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr); 17434aa8a36SMatthew G. Knepley } 17538221697SMatthew G. Knepley PetscFunctionReturn(0); 17638221697SMatthew G. Knepley } 17738221697SMatthew G. Knepley 1789a42bb27SBarry Smith /*@C 179564755cdSBarry Smith DMSetVecType - Sets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector() 1809a42bb27SBarry Smith 181d083f849SBarry Smith Logically Collective on da 1829a42bb27SBarry Smith 1839a42bb27SBarry Smith Input Parameter: 1849a42bb27SBarry Smith + da - initial distributed array 185e9e886b6SKarl Rupp . ctype - the vector type, currently either VECSTANDARD, VECCUDA, or VECVIENNACL 1869a42bb27SBarry Smith 1879a42bb27SBarry Smith Options Database: 188dd85299cSBarry Smith . -dm_vec_type ctype 1899a42bb27SBarry Smith 1909a42bb27SBarry Smith Level: intermediate 1919a42bb27SBarry Smith 192a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMGetVecType(), DMSetMatType(), DMGetMatType() 1939a42bb27SBarry Smith @*/ 19419fd82e9SBarry Smith PetscErrorCode DMSetVecType(DM da,VecType ctype) 1959a42bb27SBarry Smith { 1969a42bb27SBarry Smith PetscErrorCode ierr; 1979a42bb27SBarry Smith 1989a42bb27SBarry Smith PetscFunctionBegin; 1999a42bb27SBarry Smith PetscValidHeaderSpecific(da,DM_CLASSID,1); 2009a42bb27SBarry Smith ierr = PetscFree(da->vectype);CHKERRQ(ierr); 20119fd82e9SBarry Smith ierr = PetscStrallocpy(ctype,(char**)&da->vectype);CHKERRQ(ierr); 2029a42bb27SBarry Smith PetscFunctionReturn(0); 2039a42bb27SBarry Smith } 2049a42bb27SBarry Smith 205c0dedaeaSBarry Smith /*@C 206c0dedaeaSBarry Smith DMGetVecType - Gets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector() 207c0dedaeaSBarry Smith 208d083f849SBarry Smith Logically Collective on da 209c0dedaeaSBarry Smith 210c0dedaeaSBarry Smith Input Parameter: 211c0dedaeaSBarry Smith . da - initial distributed array 212c0dedaeaSBarry Smith 213c0dedaeaSBarry Smith Output Parameter: 214c0dedaeaSBarry Smith . ctype - the vector type 215c0dedaeaSBarry Smith 216c0dedaeaSBarry Smith Level: intermediate 217c0dedaeaSBarry Smith 218a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMSetMatType(), DMGetMatType(), DMSetVecType() 219c0dedaeaSBarry Smith @*/ 220c0dedaeaSBarry Smith PetscErrorCode DMGetVecType(DM da,VecType *ctype) 221c0dedaeaSBarry Smith { 222c0dedaeaSBarry Smith PetscFunctionBegin; 223c0dedaeaSBarry Smith PetscValidHeaderSpecific(da,DM_CLASSID,1); 224c0dedaeaSBarry Smith *ctype = da->vectype; 225c0dedaeaSBarry Smith PetscFunctionReturn(0); 226c0dedaeaSBarry Smith } 227c0dedaeaSBarry Smith 2285f1ad066SMatthew G Knepley /*@ 22934f98d34SBarry Smith VecGetDM - Gets the DM defining the data layout of the vector 2305f1ad066SMatthew G Knepley 2315f1ad066SMatthew G Knepley Not collective 2325f1ad066SMatthew G Knepley 2335f1ad066SMatthew G Knepley Input Parameter: 2345f1ad066SMatthew G Knepley . v - The Vec 2355f1ad066SMatthew G Knepley 2365f1ad066SMatthew G Knepley Output Parameter: 2375f1ad066SMatthew G Knepley . dm - The DM 2385f1ad066SMatthew G Knepley 2395f1ad066SMatthew G Knepley Level: intermediate 2405f1ad066SMatthew G Knepley 2415f1ad066SMatthew G Knepley .seealso: VecSetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType() 2425f1ad066SMatthew G Knepley @*/ 2435f1ad066SMatthew G Knepley PetscErrorCode VecGetDM(Vec v, DM *dm) 2445f1ad066SMatthew G Knepley { 2455f1ad066SMatthew G Knepley PetscErrorCode ierr; 2465f1ad066SMatthew G Knepley 2475f1ad066SMatthew G Knepley PetscFunctionBegin; 2485f1ad066SMatthew G Knepley PetscValidHeaderSpecific(v,VEC_CLASSID,1); 2495f1ad066SMatthew G Knepley PetscValidPointer(dm,2); 2505f1ad066SMatthew G Knepley ierr = PetscObjectQuery((PetscObject) v, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr); 2515f1ad066SMatthew G Knepley PetscFunctionReturn(0); 2525f1ad066SMatthew G Knepley } 2535f1ad066SMatthew G Knepley 2545f1ad066SMatthew G Knepley /*@ 255d9805387SMatthew G. Knepley VecSetDM - Sets the DM defining the data layout of the vector. 2565f1ad066SMatthew G Knepley 2575f1ad066SMatthew G Knepley Not collective 2585f1ad066SMatthew G Knepley 2595f1ad066SMatthew G Knepley Input Parameters: 2605f1ad066SMatthew G Knepley + v - The Vec 2615f1ad066SMatthew G Knepley - dm - The DM 2625f1ad066SMatthew G Knepley 263d9805387SMatthew G. Knepley Note: This is NOT the same as DMCreateGlobalVector() since it does not change the view methods or perform other customization, but merely sets the DM member. 264d9805387SMatthew G. Knepley 2655f1ad066SMatthew G Knepley Level: intermediate 2665f1ad066SMatthew G Knepley 2675f1ad066SMatthew G Knepley .seealso: VecGetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType() 2685f1ad066SMatthew G Knepley @*/ 2695f1ad066SMatthew G Knepley PetscErrorCode VecSetDM(Vec v, DM dm) 2705f1ad066SMatthew G Knepley { 2715f1ad066SMatthew G Knepley PetscErrorCode ierr; 2725f1ad066SMatthew G Knepley 2735f1ad066SMatthew G Knepley PetscFunctionBegin; 2745f1ad066SMatthew G Knepley PetscValidHeaderSpecific(v,VEC_CLASSID,1); 275d7f50e27SLisandro Dalcin if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2); 2765f1ad066SMatthew G Knepley ierr = PetscObjectCompose((PetscObject) v, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr); 2775f1ad066SMatthew G Knepley PetscFunctionReturn(0); 2785f1ad066SMatthew G Knepley } 2795f1ad066SMatthew G Knepley 280521d9a4cSLisandro Dalcin /*@C 2818f1509bcSBarry Smith DMSetISColoringType - Sets the type of coloring, global or local, that is created by the DM 2828f1509bcSBarry Smith 283d083f849SBarry Smith Logically Collective on dm 2848f1509bcSBarry Smith 2858f1509bcSBarry Smith Input Parameters: 2868f1509bcSBarry Smith + dm - the DM context 2878f1509bcSBarry Smith - ctype - the matrix type 2888f1509bcSBarry Smith 2898f1509bcSBarry Smith Options Database: 2908f1509bcSBarry Smith . -dm_is_coloring_type - global or local 2918f1509bcSBarry Smith 2928f1509bcSBarry Smith Level: intermediate 2938f1509bcSBarry Smith 2948f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(), 2958f1509bcSBarry Smith DMGetISColoringType() 2968f1509bcSBarry Smith @*/ 2978f1509bcSBarry Smith PetscErrorCode DMSetISColoringType(DM dm,ISColoringType ctype) 2988f1509bcSBarry Smith { 2998f1509bcSBarry Smith PetscFunctionBegin; 3008f1509bcSBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3018f1509bcSBarry Smith dm->coloringtype = ctype; 3028f1509bcSBarry Smith PetscFunctionReturn(0); 3038f1509bcSBarry Smith } 3048f1509bcSBarry Smith 3058f1509bcSBarry Smith /*@C 3068f1509bcSBarry Smith DMGetISColoringType - Gets the type of coloring, global or local, that is created by the DM 307521d9a4cSLisandro Dalcin 308d083f849SBarry Smith Logically Collective on dm 309521d9a4cSLisandro Dalcin 310521d9a4cSLisandro Dalcin Input Parameter: 3118f1509bcSBarry Smith . dm - the DM context 3128f1509bcSBarry Smith 3138f1509bcSBarry Smith Output Parameter: 3148f1509bcSBarry Smith . ctype - the matrix type 3158f1509bcSBarry Smith 3168f1509bcSBarry Smith Options Database: 3178f1509bcSBarry Smith . -dm_is_coloring_type - global or local 3188f1509bcSBarry Smith 3198f1509bcSBarry Smith Level: intermediate 3208f1509bcSBarry Smith 3218f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(), 3228f1509bcSBarry Smith DMGetISColoringType() 3238f1509bcSBarry Smith @*/ 3248f1509bcSBarry Smith PetscErrorCode DMGetISColoringType(DM dm,ISColoringType *ctype) 3258f1509bcSBarry Smith { 3268f1509bcSBarry Smith PetscFunctionBegin; 3278f1509bcSBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3288f1509bcSBarry Smith *ctype = dm->coloringtype; 3298f1509bcSBarry Smith PetscFunctionReturn(0); 3308f1509bcSBarry Smith } 3318f1509bcSBarry Smith 3328f1509bcSBarry Smith /*@C 3338f1509bcSBarry Smith DMSetMatType - Sets the type of matrix created with DMCreateMatrix() 3348f1509bcSBarry Smith 335d083f849SBarry Smith Logically Collective on dm 3368f1509bcSBarry Smith 3378f1509bcSBarry Smith Input Parameters: 338521d9a4cSLisandro Dalcin + dm - the DM context 339a2b5a043SBarry Smith - ctype - the matrix type 340521d9a4cSLisandro Dalcin 341521d9a4cSLisandro Dalcin Options Database: 342521d9a4cSLisandro Dalcin . -dm_mat_type ctype 343521d9a4cSLisandro Dalcin 344521d9a4cSLisandro Dalcin Level: intermediate 345521d9a4cSLisandro Dalcin 346a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(), DMSetMatType(), DMGetMatType() 347521d9a4cSLisandro Dalcin @*/ 34819fd82e9SBarry Smith PetscErrorCode DMSetMatType(DM dm,MatType ctype) 349521d9a4cSLisandro Dalcin { 350521d9a4cSLisandro Dalcin PetscErrorCode ierr; 35188f0584fSBarry Smith 352521d9a4cSLisandro Dalcin PetscFunctionBegin; 353521d9a4cSLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 354521d9a4cSLisandro Dalcin ierr = PetscFree(dm->mattype);CHKERRQ(ierr); 35519fd82e9SBarry Smith ierr = PetscStrallocpy(ctype,(char**)&dm->mattype);CHKERRQ(ierr); 356521d9a4cSLisandro Dalcin PetscFunctionReturn(0); 357521d9a4cSLisandro Dalcin } 358521d9a4cSLisandro Dalcin 359c0dedaeaSBarry Smith /*@C 360c0dedaeaSBarry Smith DMGetMatType - Gets the type of matrix created with DMCreateMatrix() 361c0dedaeaSBarry Smith 362d083f849SBarry Smith Logically Collective on dm 363c0dedaeaSBarry Smith 364c0dedaeaSBarry Smith Input Parameter: 365c0dedaeaSBarry Smith . dm - the DM context 366c0dedaeaSBarry Smith 367c0dedaeaSBarry Smith Output Parameter: 368c0dedaeaSBarry Smith . ctype - the matrix type 369c0dedaeaSBarry Smith 370c0dedaeaSBarry Smith Options Database: 371c0dedaeaSBarry Smith . -dm_mat_type ctype 372c0dedaeaSBarry Smith 373c0dedaeaSBarry Smith Level: intermediate 374c0dedaeaSBarry Smith 375a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMSetMatType(), DMSetMatType(), DMGetMatType() 376c0dedaeaSBarry Smith @*/ 377c0dedaeaSBarry Smith PetscErrorCode DMGetMatType(DM dm,MatType *ctype) 378c0dedaeaSBarry Smith { 379c0dedaeaSBarry Smith PetscFunctionBegin; 380c0dedaeaSBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 381c0dedaeaSBarry Smith *ctype = dm->mattype; 382c0dedaeaSBarry Smith PetscFunctionReturn(0); 383c0dedaeaSBarry Smith } 384c0dedaeaSBarry Smith 385c688c046SMatthew G Knepley /*@ 38634f98d34SBarry Smith MatGetDM - Gets the DM defining the data layout of the matrix 387c688c046SMatthew G Knepley 388c688c046SMatthew G Knepley Not collective 389c688c046SMatthew G Knepley 390c688c046SMatthew G Knepley Input Parameter: 391c688c046SMatthew G Knepley . A - The Mat 392c688c046SMatthew G Knepley 393c688c046SMatthew G Knepley Output Parameter: 394c688c046SMatthew G Knepley . dm - The DM 395c688c046SMatthew G Knepley 396c688c046SMatthew G Knepley Level: intermediate 397c688c046SMatthew G Knepley 3988f1509bcSBarry Smith Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with 3998f1509bcSBarry Smith the Mat through a PetscObjectCompose() operation 4008f1509bcSBarry Smith 401c688c046SMatthew G Knepley .seealso: MatSetDM(), DMCreateMatrix(), DMSetMatType() 402c688c046SMatthew G Knepley @*/ 403c688c046SMatthew G Knepley PetscErrorCode MatGetDM(Mat A, DM *dm) 404c688c046SMatthew G Knepley { 405c688c046SMatthew G Knepley PetscErrorCode ierr; 406c688c046SMatthew G Knepley 407c688c046SMatthew G Knepley PetscFunctionBegin; 408c688c046SMatthew G Knepley PetscValidHeaderSpecific(A,MAT_CLASSID,1); 409c688c046SMatthew G Knepley PetscValidPointer(dm,2); 410c688c046SMatthew G Knepley ierr = PetscObjectQuery((PetscObject) A, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr); 411c688c046SMatthew G Knepley PetscFunctionReturn(0); 412c688c046SMatthew G Knepley } 413c688c046SMatthew G Knepley 414c688c046SMatthew G Knepley /*@ 415c688c046SMatthew G Knepley MatSetDM - Sets the DM defining the data layout of the matrix 416c688c046SMatthew G Knepley 417c688c046SMatthew G Knepley Not collective 418c688c046SMatthew G Knepley 419c688c046SMatthew G Knepley Input Parameters: 420c688c046SMatthew G Knepley + A - The Mat 421c688c046SMatthew G Knepley - dm - The DM 422c688c046SMatthew G Knepley 423c688c046SMatthew G Knepley Level: intermediate 424c688c046SMatthew G Knepley 4258f1509bcSBarry Smith Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with 4268f1509bcSBarry Smith the Mat through a PetscObjectCompose() operation 4278f1509bcSBarry Smith 4288f1509bcSBarry Smith 429c688c046SMatthew G Knepley .seealso: MatGetDM(), DMCreateMatrix(), DMSetMatType() 430c688c046SMatthew G Knepley @*/ 431c688c046SMatthew G Knepley PetscErrorCode MatSetDM(Mat A, DM dm) 432c688c046SMatthew G Knepley { 433c688c046SMatthew G Knepley PetscErrorCode ierr; 434c688c046SMatthew G Knepley 435c688c046SMatthew G Knepley PetscFunctionBegin; 436c688c046SMatthew G Knepley PetscValidHeaderSpecific(A,MAT_CLASSID,1); 4378865f1eaSKarl Rupp if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2); 438c688c046SMatthew G Knepley ierr = PetscObjectCompose((PetscObject) A, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr); 439c688c046SMatthew G Knepley PetscFunctionReturn(0); 440c688c046SMatthew G Knepley } 441c688c046SMatthew G Knepley 4429a42bb27SBarry Smith /*@C 4439a42bb27SBarry Smith DMSetOptionsPrefix - Sets the prefix used for searching for all 4446757b960SDave May DM options in the database. 4459a42bb27SBarry Smith 446d083f849SBarry Smith Logically Collective on dm 4479a42bb27SBarry Smith 4489a42bb27SBarry Smith Input Parameter: 4498353ddbbSDave May + da - the DM context 4509a42bb27SBarry Smith - prefix - the prefix to prepend to all option names 4519a42bb27SBarry Smith 4529a42bb27SBarry Smith Notes: 4539a42bb27SBarry Smith A hyphen (-) must NOT be given at the beginning of the prefix name. 4549a42bb27SBarry Smith The first character of all runtime options is AUTOMATICALLY the hyphen. 4559a42bb27SBarry Smith 4569a42bb27SBarry Smith Level: advanced 4579a42bb27SBarry Smith 4589a42bb27SBarry Smith .seealso: DMSetFromOptions() 4599a42bb27SBarry Smith @*/ 4607087cfbeSBarry Smith PetscErrorCode DMSetOptionsPrefix(DM dm,const char prefix[]) 4619a42bb27SBarry Smith { 4629a42bb27SBarry Smith PetscErrorCode ierr; 4639a42bb27SBarry Smith 4649a42bb27SBarry Smith PetscFunctionBegin; 4659a42bb27SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 4669a42bb27SBarry Smith ierr = PetscObjectSetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr); 467691be533SLawrence Mitchell if (dm->sf) { 468691be533SLawrence Mitchell ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->sf,prefix);CHKERRQ(ierr); 469691be533SLawrence Mitchell } 4701bb6d2a8SBarry Smith if (dm->sectionSF) { 4711bb6d2a8SBarry Smith ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->sectionSF,prefix);CHKERRQ(ierr); 472691be533SLawrence Mitchell } 4739a42bb27SBarry Smith PetscFunctionReturn(0); 4749a42bb27SBarry Smith } 4759a42bb27SBarry Smith 47631697293SDave May /*@C 47731697293SDave May DMAppendOptionsPrefix - Appends to the prefix used for searching for all 47831697293SDave May DM options in the database. 47931697293SDave May 480d083f849SBarry Smith Logically Collective on dm 48131697293SDave May 48231697293SDave May Input Parameters: 48331697293SDave May + dm - the DM context 48431697293SDave May - prefix - the prefix string to prepend to all DM option requests 48531697293SDave May 48631697293SDave May Notes: 48731697293SDave May A hyphen (-) must NOT be given at the beginning of the prefix name. 48831697293SDave May The first character of all runtime options is AUTOMATICALLY the hyphen. 48931697293SDave May 49031697293SDave May Level: advanced 49131697293SDave May 49231697293SDave May .seealso: DMSetOptionsPrefix(), DMGetOptionsPrefix() 49331697293SDave May @*/ 49431697293SDave May PetscErrorCode DMAppendOptionsPrefix(DM dm,const char prefix[]) 49531697293SDave May { 49631697293SDave May PetscErrorCode ierr; 49731697293SDave May 49831697293SDave May PetscFunctionBegin; 49931697293SDave May PetscValidHeaderSpecific(dm,DM_CLASSID,1); 50031697293SDave May ierr = PetscObjectAppendOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr); 50131697293SDave May PetscFunctionReturn(0); 50231697293SDave May } 50331697293SDave May 50431697293SDave May /*@C 50531697293SDave May DMGetOptionsPrefix - Gets the prefix used for searching for all 50631697293SDave May DM options in the database. 50731697293SDave May 50831697293SDave May Not Collective 50931697293SDave May 51031697293SDave May Input Parameters: 51131697293SDave May . dm - the DM context 51231697293SDave May 51331697293SDave May Output Parameters: 51431697293SDave May . prefix - pointer to the prefix string used is returned 51531697293SDave May 51695452b02SPatrick Sanan Notes: 51795452b02SPatrick Sanan On the fortran side, the user should pass in a string 'prefix' of 51831697293SDave May sufficient length to hold the prefix. 51931697293SDave May 52031697293SDave May Level: advanced 52131697293SDave May 52231697293SDave May .seealso: DMSetOptionsPrefix(), DMAppendOptionsPrefix() 52331697293SDave May @*/ 52431697293SDave May PetscErrorCode DMGetOptionsPrefix(DM dm,const char *prefix[]) 52531697293SDave May { 52631697293SDave May PetscErrorCode ierr; 52731697293SDave May 52831697293SDave May PetscFunctionBegin; 52931697293SDave May PetscValidHeaderSpecific(dm,DM_CLASSID,1); 53031697293SDave May ierr = PetscObjectGetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr); 53131697293SDave May PetscFunctionReturn(0); 53231697293SDave May } 53331697293SDave May 53488bdff64SToby Isaac static PetscErrorCode DMCountNonCyclicReferences(DM dm, PetscBool recurseCoarse, PetscBool recurseFine, PetscInt *ncrefct) 53588bdff64SToby Isaac { 5366eb26441SStefano Zampini PetscInt refct = ((PetscObject) dm)->refct; 53788bdff64SToby Isaac PetscErrorCode ierr; 53888bdff64SToby Isaac 53988bdff64SToby Isaac PetscFunctionBegin; 540aab5bcd8SJed Brown *ncrefct = 0; 54188bdff64SToby Isaac if (dm->coarseMesh && dm->coarseMesh->fineMesh == dm) { 54288bdff64SToby Isaac refct--; 54388bdff64SToby Isaac if (recurseCoarse) { 54488bdff64SToby Isaac PetscInt coarseCount; 54588bdff64SToby Isaac 54688bdff64SToby Isaac ierr = DMCountNonCyclicReferences(dm->coarseMesh, PETSC_TRUE, PETSC_FALSE,&coarseCount);CHKERRQ(ierr); 54788bdff64SToby Isaac refct += coarseCount; 54888bdff64SToby Isaac } 54988bdff64SToby Isaac } 55088bdff64SToby Isaac if (dm->fineMesh && dm->fineMesh->coarseMesh == dm) { 55188bdff64SToby Isaac refct--; 55288bdff64SToby Isaac if (recurseFine) { 55388bdff64SToby Isaac PetscInt fineCount; 55488bdff64SToby Isaac 55588bdff64SToby Isaac ierr = DMCountNonCyclicReferences(dm->fineMesh, PETSC_FALSE, PETSC_TRUE,&fineCount);CHKERRQ(ierr); 55688bdff64SToby Isaac refct += fineCount; 55788bdff64SToby Isaac } 55888bdff64SToby Isaac } 55988bdff64SToby Isaac *ncrefct = refct; 56088bdff64SToby Isaac PetscFunctionReturn(0); 56188bdff64SToby Isaac } 56288bdff64SToby Isaac 563f4cdcedcSVaclav Hapla PetscErrorCode DMDestroyLabelLinkList_Internal(DM dm) 564354557abSToby Isaac { 5655d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 566354557abSToby Isaac PetscErrorCode ierr; 567354557abSToby Isaac 568354557abSToby Isaac PetscFunctionBegin; 569354557abSToby Isaac /* destroy the labels */ 570354557abSToby Isaac while (next) { 571354557abSToby Isaac DMLabelLink tmp = next->next; 572354557abSToby Isaac 5735d80c0bfSVaclav Hapla if (next->label == dm->depthLabel) dm->depthLabel = NULL; 574ba2698f1SMatthew G. Knepley if (next->label == dm->celltypeLabel) dm->celltypeLabel = NULL; 575354557abSToby Isaac ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr); 576354557abSToby Isaac ierr = PetscFree(next);CHKERRQ(ierr); 577354557abSToby Isaac next = tmp; 578354557abSToby Isaac } 5795d80c0bfSVaclav Hapla dm->labels = NULL; 580354557abSToby Isaac PetscFunctionReturn(0); 581354557abSToby Isaac } 582354557abSToby Isaac 58347c6ae99SBarry Smith /*@ 5848472ad0fSDave May DMDestroy - Destroys a vector packer or DM. 58547c6ae99SBarry Smith 586d083f849SBarry Smith Collective on dm 58747c6ae99SBarry Smith 58847c6ae99SBarry Smith Input Parameter: 58947c6ae99SBarry Smith . dm - the DM object to destroy 59047c6ae99SBarry Smith 59147c6ae99SBarry Smith Level: developer 59247c6ae99SBarry Smith 593e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 59447c6ae99SBarry Smith 59547c6ae99SBarry Smith @*/ 596fcfd50ebSBarry Smith PetscErrorCode DMDestroy(DM *dm) 59747c6ae99SBarry Smith { 5986eb26441SStefano Zampini PetscInt cnt; 599dfe15315SJed Brown DMNamedVecLink nlink,nnext; 60047c6ae99SBarry Smith PetscErrorCode ierr; 60147c6ae99SBarry Smith 60247c6ae99SBarry Smith PetscFunctionBegin; 6036bf464f9SBarry Smith if (!*dm) PetscFunctionReturn(0); 6046bf464f9SBarry Smith PetscValidHeaderSpecific((*dm),DM_CLASSID,1); 60587e657c6SBarry Smith 60688bdff64SToby Isaac /* count all non-cyclic references in the doubly-linked list of coarse<->fine meshes */ 60788bdff64SToby Isaac ierr = DMCountNonCyclicReferences(*dm,PETSC_TRUE,PETSC_TRUE,&cnt);CHKERRQ(ierr); 60888bdff64SToby Isaac --((PetscObject)(*dm))->refct; 60988bdff64SToby Isaac if (--cnt > 0) {*dm = 0; PetscFunctionReturn(0);} 6106bf464f9SBarry Smith if (((PetscObject)(*dm))->refct < 0) PetscFunctionReturn(0); 6116bf464f9SBarry Smith ((PetscObject)(*dm))->refct = 0; 6126eb26441SStefano Zampini 6136eb26441SStefano Zampini ierr = DMClearGlobalVectors(*dm);CHKERRQ(ierr); 6146eb26441SStefano Zampini ierr = DMClearLocalVectors(*dm);CHKERRQ(ierr); 6156eb26441SStefano Zampini 616f490541aSPeter Brune nnext=(*dm)->namedglobal; 6170298fd71SBarry Smith (*dm)->namedglobal = NULL; 618f490541aSPeter Brune for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named vectors */ 6192348bcf4SPeter Brune nnext = nlink->next; 6202348bcf4SPeter Brune if (nlink->status != DMVEC_STATUS_IN) SETERRQ1(((PetscObject)*dm)->comm,PETSC_ERR_ARG_WRONGSTATE,"DM still has Vec named '%s' checked out",nlink->name); 6212348bcf4SPeter Brune ierr = PetscFree(nlink->name);CHKERRQ(ierr); 6222348bcf4SPeter Brune ierr = VecDestroy(&nlink->X);CHKERRQ(ierr); 6232348bcf4SPeter Brune ierr = PetscFree(nlink);CHKERRQ(ierr); 6242348bcf4SPeter Brune } 625f490541aSPeter Brune nnext=(*dm)->namedlocal; 6260298fd71SBarry Smith (*dm)->namedlocal = NULL; 627f490541aSPeter Brune for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named local vectors */ 628f490541aSPeter Brune nnext = nlink->next; 629f490541aSPeter Brune if (nlink->status != DMVEC_STATUS_IN) SETERRQ1(((PetscObject)*dm)->comm,PETSC_ERR_ARG_WRONGSTATE,"DM still has Vec named '%s' checked out",nlink->name); 630f490541aSPeter Brune ierr = PetscFree(nlink->name);CHKERRQ(ierr); 631f490541aSPeter Brune ierr = VecDestroy(&nlink->X);CHKERRQ(ierr); 632f490541aSPeter Brune ierr = PetscFree(nlink);CHKERRQ(ierr); 633f490541aSPeter Brune } 6342348bcf4SPeter Brune 635b17ce1afSJed Brown /* Destroy the list of hooks */ 636c833c3b5SJed Brown { 637c833c3b5SJed Brown DMCoarsenHookLink link,next; 638b17ce1afSJed Brown for (link=(*dm)->coarsenhook; link; link=next) { 639b17ce1afSJed Brown next = link->next; 640b17ce1afSJed Brown ierr = PetscFree(link);CHKERRQ(ierr); 641b17ce1afSJed Brown } 6420298fd71SBarry Smith (*dm)->coarsenhook = NULL; 643c833c3b5SJed Brown } 644c833c3b5SJed Brown { 645c833c3b5SJed Brown DMRefineHookLink link,next; 646c833c3b5SJed Brown for (link=(*dm)->refinehook; link; link=next) { 647c833c3b5SJed Brown next = link->next; 648c833c3b5SJed Brown ierr = PetscFree(link);CHKERRQ(ierr); 649c833c3b5SJed Brown } 6500298fd71SBarry Smith (*dm)->refinehook = NULL; 651c833c3b5SJed Brown } 652be081cd6SPeter Brune { 653be081cd6SPeter Brune DMSubDomainHookLink link,next; 654be081cd6SPeter Brune for (link=(*dm)->subdomainhook; link; link=next) { 655be081cd6SPeter Brune next = link->next; 656be081cd6SPeter Brune ierr = PetscFree(link);CHKERRQ(ierr); 657be081cd6SPeter Brune } 6580298fd71SBarry Smith (*dm)->subdomainhook = NULL; 659be081cd6SPeter Brune } 660baf369e7SPeter Brune { 661baf369e7SPeter Brune DMGlobalToLocalHookLink link,next; 662baf369e7SPeter Brune for (link=(*dm)->gtolhook; link; link=next) { 663baf369e7SPeter Brune next = link->next; 664baf369e7SPeter Brune ierr = PetscFree(link);CHKERRQ(ierr); 665baf369e7SPeter Brune } 6660298fd71SBarry Smith (*dm)->gtolhook = NULL; 667baf369e7SPeter Brune } 668d4d07f1eSToby Isaac { 669d4d07f1eSToby Isaac DMLocalToGlobalHookLink link,next; 670d4d07f1eSToby Isaac for (link=(*dm)->ltoghook; link; link=next) { 671d4d07f1eSToby Isaac next = link->next; 672d4d07f1eSToby Isaac ierr = PetscFree(link);CHKERRQ(ierr); 673d4d07f1eSToby Isaac } 674d4d07f1eSToby Isaac (*dm)->ltoghook = NULL; 675d4d07f1eSToby Isaac } 676aa1993deSMatthew G Knepley /* Destroy the work arrays */ 677aa1993deSMatthew G Knepley { 678aa1993deSMatthew G Knepley DMWorkLink link,next; 679aa1993deSMatthew G Knepley if ((*dm)->workout) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Work array still checked out"); 680aa1993deSMatthew G Knepley for (link=(*dm)->workin; link; link=next) { 681aa1993deSMatthew G Knepley next = link->next; 682aa1993deSMatthew G Knepley ierr = PetscFree(link->mem);CHKERRQ(ierr); 683aa1993deSMatthew G Knepley ierr = PetscFree(link);CHKERRQ(ierr); 684aa1993deSMatthew G Knepley } 6850298fd71SBarry Smith (*dm)->workin = NULL; 686aa1993deSMatthew G Knepley } 687c58f1c22SToby Isaac /* destroy the labels */ 688f4cdcedcSVaclav Hapla ierr = DMDestroyLabelLinkList_Internal(*dm);CHKERRQ(ierr); 689f4cdcedcSVaclav Hapla /* destroy the fields */ 690e5e52638SMatthew G. Knepley ierr = DMClearFields(*dm);CHKERRQ(ierr); 691f4cdcedcSVaclav Hapla /* destroy the boundaries */ 692e6f8dbb6SToby Isaac { 693e6f8dbb6SToby Isaac DMBoundary next = (*dm)->boundary; 694e6f8dbb6SToby Isaac while (next) { 695e6f8dbb6SToby Isaac DMBoundary b = next; 696e6f8dbb6SToby Isaac 697e6f8dbb6SToby Isaac next = b->next; 698e6f8dbb6SToby Isaac ierr = PetscFree(b);CHKERRQ(ierr); 699e6f8dbb6SToby Isaac } 700e6f8dbb6SToby Isaac } 701b17ce1afSJed Brown 70252536dc3SBarry Smith ierr = PetscObjectDestroy(&(*dm)->dmksp);CHKERRQ(ierr); 70352536dc3SBarry Smith ierr = PetscObjectDestroy(&(*dm)->dmsnes);CHKERRQ(ierr); 70452536dc3SBarry Smith ierr = PetscObjectDestroy(&(*dm)->dmts);CHKERRQ(ierr); 70552536dc3SBarry Smith 7061a266240SBarry Smith if ((*dm)->ctx && (*dm)->ctxdestroy) { 7071a266240SBarry Smith ierr = (*(*dm)->ctxdestroy)(&(*dm)->ctx);CHKERRQ(ierr); 7081a266240SBarry Smith } 70971cd77b2SBarry Smith ierr = MatFDColoringDestroy(&(*dm)->fd);CHKERRQ(ierr); 7106bf464f9SBarry Smith ierr = ISLocalToGlobalMappingDestroy(&(*dm)->ltogmap);CHKERRQ(ierr); 7116bf464f9SBarry Smith ierr = PetscFree((*dm)->vectype);CHKERRQ(ierr); 712073dac72SJed Brown ierr = PetscFree((*dm)->mattype);CHKERRQ(ierr); 71388ed4aceSMatthew G Knepley 7141bb6d2a8SBarry Smith ierr = PetscSectionDestroy(&(*dm)->localSection);CHKERRQ(ierr); 7151bb6d2a8SBarry Smith ierr = PetscSectionDestroy(&(*dm)->globalSection);CHKERRQ(ierr); 7168b1ab98fSJed Brown ierr = PetscLayoutDestroy(&(*dm)->map);CHKERRQ(ierr); 717fba222abSToby Isaac ierr = PetscSectionDestroy(&(*dm)->defaultConstraintSection);CHKERRQ(ierr); 718fba222abSToby Isaac ierr = MatDestroy(&(*dm)->defaultConstraintMat);CHKERRQ(ierr); 71988ed4aceSMatthew G Knepley ierr = PetscSFDestroy(&(*dm)->sf);CHKERRQ(ierr); 7201bb6d2a8SBarry Smith ierr = PetscSFDestroy(&(*dm)->sectionSF);CHKERRQ(ierr); 721736995cdSBlaise Bourdin if ((*dm)->useNatural) { 722736995cdSBlaise Bourdin if ((*dm)->sfNatural) { 7238e4ac7eaSMatthew G. Knepley ierr = PetscSFDestroy(&(*dm)->sfNatural);CHKERRQ(ierr); 724736995cdSBlaise Bourdin } 725736995cdSBlaise Bourdin ierr = PetscObjectDereference((PetscObject) (*dm)->sfMigration);CHKERRQ(ierr); 726736995cdSBlaise Bourdin } 72788bdff64SToby Isaac if ((*dm)->coarseMesh && (*dm)->coarseMesh->fineMesh == *dm) { 72888bdff64SToby Isaac ierr = DMSetFineDM((*dm)->coarseMesh,NULL);CHKERRQ(ierr); 72988bdff64SToby Isaac } 7306eb26441SStefano Zampini 731a8fb8f29SToby Isaac ierr = DMDestroy(&(*dm)->coarseMesh);CHKERRQ(ierr); 73288bdff64SToby Isaac if ((*dm)->fineMesh && (*dm)->fineMesh->coarseMesh == *dm) { 73388bdff64SToby Isaac ierr = DMSetCoarseDM((*dm)->fineMesh,NULL);CHKERRQ(ierr); 73488bdff64SToby Isaac } 73588bdff64SToby Isaac ierr = DMDestroy(&(*dm)->fineMesh);CHKERRQ(ierr); 736f19dbd58SToby Isaac ierr = DMFieldDestroy(&(*dm)->coordinateField);CHKERRQ(ierr); 7376636e97aSMatthew G Knepley ierr = DMDestroy(&(*dm)->coordinateDM);CHKERRQ(ierr); 7386636e97aSMatthew G Knepley ierr = VecDestroy(&(*dm)->coordinates);CHKERRQ(ierr); 7396636e97aSMatthew G Knepley ierr = VecDestroy(&(*dm)->coordinatesLocal);CHKERRQ(ierr); 7405dc8c3f7SMatthew G. Knepley ierr = PetscFree3((*dm)->L,(*dm)->maxCell,(*dm)->bdtype);CHKERRQ(ierr); 741ca3d3a14SMatthew G. Knepley if ((*dm)->transformDestroy) {ierr = (*(*dm)->transformDestroy)(*dm, (*dm)->transformCtx);CHKERRQ(ierr);} 742ca3d3a14SMatthew G. Knepley ierr = DMDestroy(&(*dm)->transformDM);CHKERRQ(ierr); 743ca3d3a14SMatthew G. Knepley ierr = VecDestroy(&(*dm)->transform);CHKERRQ(ierr); 7446636e97aSMatthew G Knepley 745e5e52638SMatthew G. Knepley ierr = DMClearDS(*dm);CHKERRQ(ierr); 74614f150ffSMatthew G. Knepley ierr = DMDestroy(&(*dm)->dmBC);CHKERRQ(ierr); 747e04113cfSBarry Smith /* if memory was published with SAWs then destroy it */ 748e04113cfSBarry Smith ierr = PetscObjectSAWsViewOff((PetscObject)*dm);CHKERRQ(ierr); 749732e2eb9SMatthew G Knepley 750ed3c66a1SDave May if ((*dm)->ops->destroy) { 7516bf464f9SBarry Smith ierr = (*(*dm)->ops->destroy)(*dm);CHKERRQ(ierr); 752ed3c66a1SDave May } 753c0f0dcc3SMatthew G. Knepley ierr = DMMonitorCancel(*dm);CHKERRQ(ierr); 754435a35e8SMatthew G Knepley /* We do not destroy (*dm)->data here so that we can reference count backend objects */ 755732e2eb9SMatthew G Knepley ierr = PetscHeaderDestroy(dm);CHKERRQ(ierr); 75647c6ae99SBarry Smith PetscFunctionReturn(0); 75747c6ae99SBarry Smith } 75847c6ae99SBarry Smith 759d7bf68aeSBarry Smith /*@ 760d7bf68aeSBarry Smith DMSetUp - sets up the data structures inside a DM object 761d7bf68aeSBarry Smith 762d083f849SBarry Smith Collective on dm 763d7bf68aeSBarry Smith 764d7bf68aeSBarry Smith Input Parameter: 765d7bf68aeSBarry Smith . dm - the DM object to setup 766d7bf68aeSBarry Smith 767d7bf68aeSBarry Smith Level: developer 768d7bf68aeSBarry Smith 769e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 770d7bf68aeSBarry Smith 771d7bf68aeSBarry Smith @*/ 7727087cfbeSBarry Smith PetscErrorCode DMSetUp(DM dm) 773d7bf68aeSBarry Smith { 774d7bf68aeSBarry Smith PetscErrorCode ierr; 775d7bf68aeSBarry Smith 776d7bf68aeSBarry Smith PetscFunctionBegin; 777171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 7788387afaaSJed Brown if (dm->setupcalled) PetscFunctionReturn(0); 779d7bf68aeSBarry Smith if (dm->ops->setup) { 780d7bf68aeSBarry Smith ierr = (*dm->ops->setup)(dm);CHKERRQ(ierr); 781d7bf68aeSBarry Smith } 7828387afaaSJed Brown dm->setupcalled = PETSC_TRUE; 783d7bf68aeSBarry Smith PetscFunctionReturn(0); 784d7bf68aeSBarry Smith } 785d7bf68aeSBarry Smith 786d7bf68aeSBarry Smith /*@ 787d7bf68aeSBarry Smith DMSetFromOptions - sets parameters in a DM from the options database 788d7bf68aeSBarry Smith 789d083f849SBarry Smith Collective on dm 790d7bf68aeSBarry Smith 791d7bf68aeSBarry Smith Input Parameter: 792d7bf68aeSBarry Smith . dm - the DM object to set options for 793d7bf68aeSBarry Smith 794732e2eb9SMatthew G Knepley Options Database: 7954164ae61SDominic Meiser + -dm_preallocate_only - Only preallocate the matrix for DMCreateMatrix(), but do not fill it with zeros 7964164ae61SDominic Meiser . -dm_vec_type <type> - type of vector to create inside DM 7974164ae61SDominic Meiser . -dm_mat_type <type> - type of matrix to create inside DM 7988f1509bcSBarry Smith - -dm_is_coloring_type - <global or local> 799732e2eb9SMatthew G Knepley 800384a6580SVaclav Hapla DMPLEX Specific Checks 801384a6580SVaclav Hapla + -dm_plex_check_symmetry - Check that the adjacency information in the mesh is symmetric - DMPlexCheckSymmetry() 802384a6580SVaclav Hapla . -dm_plex_check_skeleton - Check that each cell has the correct number of vertices (only for homogeneous simplex or tensor meshes) - DMPlexCheckSkeleton() 803384a6580SVaclav Hapla . -dm_plex_check_faces - Check that the faces of each cell give a vertex order this is consistent with what we expect from the cell type - DMPlexCheckFaces() 804384a6580SVaclav Hapla . -dm_plex_check_geometry - Check that cells have positive volume - DMPlexCheckGeometry() 805384a6580SVaclav Hapla . -dm_plex_check_pointsf - Check some necessary conditions for PointSF - DMPlexCheckPointSF() 806384a6580SVaclav Hapla . -dm_plex_check_interface_cones - Check points on inter-partition interfaces have conforming order of cone points - DMPlexCheckInterfaceCones() 807384a6580SVaclav Hapla - -dm_plex_check_all - Perform all the checks above 808d7bf68aeSBarry Smith 80995eb5ee5SVaclav Hapla Level: intermediate 81095eb5ee5SVaclav Hapla 81195eb5ee5SVaclav Hapla .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), 81295eb5ee5SVaclav Hapla DMPlexCheckSymmetry(), DMPlexCheckSkeleton(), DMPlexCheckFaces(), DMPlexCheckGeometry(), DMPlexCheckPointSF(), DMPlexCheckInterfaceCones() 813d7bf68aeSBarry Smith 814d7bf68aeSBarry Smith @*/ 8157087cfbeSBarry Smith PetscErrorCode DMSetFromOptions(DM dm) 816d7bf68aeSBarry Smith { 8177781c08eSBarry Smith char typeName[256]; 818ca266f36SBarry Smith PetscBool flg; 819d7bf68aeSBarry Smith PetscErrorCode ierr; 820d7bf68aeSBarry Smith 821d7bf68aeSBarry Smith PetscFunctionBegin; 822171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 82349be4549SMatthew G. Knepley dm->setfromoptionscalled = PETSC_TRUE; 82449be4549SMatthew G. Knepley if (dm->sf) {ierr = PetscSFSetFromOptions(dm->sf);CHKERRQ(ierr);} 8251bb6d2a8SBarry Smith if (dm->sectionSF) {ierr = PetscSFSetFromOptions(dm->sectionSF);CHKERRQ(ierr);} 8263194b578SJed Brown ierr = PetscObjectOptionsBegin((PetscObject)dm);CHKERRQ(ierr); 8270298fd71SBarry Smith ierr = PetscOptionsBool("-dm_preallocate_only","only preallocate matrix, but do not set column indices","DMSetMatrixPreallocateOnly",dm->prealloc_only,&dm->prealloc_only,NULL);CHKERRQ(ierr); 828a264d7a6SBarry Smith ierr = PetscOptionsFList("-dm_vec_type","Vector type used for created vectors","DMSetVecType",VecList,dm->vectype,typeName,256,&flg);CHKERRQ(ierr); 829f9ba7244SBarry Smith if (flg) { 830f9ba7244SBarry Smith ierr = DMSetVecType(dm,typeName);CHKERRQ(ierr); 831f9ba7244SBarry Smith } 832a264d7a6SBarry Smith ierr = PetscOptionsFList("-dm_mat_type","Matrix type used for created matrices","DMSetMatType",MatList,dm->mattype ? dm->mattype : typeName,typeName,sizeof(typeName),&flg);CHKERRQ(ierr); 833073dac72SJed Brown if (flg) { 834521d9a4cSLisandro Dalcin ierr = DMSetMatType(dm,typeName);CHKERRQ(ierr); 835073dac72SJed Brown } 8368f1509bcSBarry Smith ierr = PetscOptionsEnum("-dm_is_coloring_type","Global or local coloring of Jacobian","DMSetISColoringType",ISColoringTypes,(PetscEnum)dm->coloringtype,(PetscEnum*)&dm->coloringtype,NULL);CHKERRQ(ierr); 837f9ba7244SBarry Smith if (dm->ops->setfromoptions) { 838e55864a3SBarry Smith ierr = (*dm->ops->setfromoptions)(PetscOptionsObject,dm);CHKERRQ(ierr); 839f9ba7244SBarry Smith } 840f9ba7244SBarry Smith /* process any options handlers added with PetscObjectAddOptionsHandler() */ 8410633abcbSJed Brown ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject) dm);CHKERRQ(ierr); 84282fcb398SMatthew G Knepley ierr = PetscOptionsEnd();CHKERRQ(ierr); 843d7bf68aeSBarry Smith PetscFunctionReturn(0); 844d7bf68aeSBarry Smith } 845d7bf68aeSBarry Smith 846fc9bc008SSatish Balay /*@C 847fe2efc57SMark DMViewFromOptions - View from Options 848fe2efc57SMark 849fe2efc57SMark Collective on DM 850fe2efc57SMark 851fe2efc57SMark Input Parameters: 852fe2efc57SMark + dm - the DM object 853736c3998SJose E. Roman . obj - Optional object 854736c3998SJose E. Roman - name - command line option 855fe2efc57SMark 856fe2efc57SMark Level: intermediate 857fe2efc57SMark .seealso: DM, DMView, PetscObjectViewFromOptions(), DMCreate() 858fe2efc57SMark @*/ 859fe2efc57SMark PetscErrorCode DMViewFromOptions(DM dm,PetscObject obj,const char name[]) 860fe2efc57SMark { 861fe2efc57SMark PetscErrorCode ierr; 862fe2efc57SMark 863fe2efc57SMark PetscFunctionBegin; 864fe2efc57SMark PetscValidHeaderSpecific(dm,DM_CLASSID,1); 865fe2efc57SMark ierr = PetscObjectViewFromOptions((PetscObject)dm,obj,name);CHKERRQ(ierr); 866fe2efc57SMark PetscFunctionReturn(0); 867fe2efc57SMark } 868fe2efc57SMark 869fe2efc57SMark /*@C 870224748a4SBarry Smith DMView - Views a DM 87147c6ae99SBarry Smith 872d083f849SBarry Smith Collective on dm 87347c6ae99SBarry Smith 87447c6ae99SBarry Smith Input Parameter: 87547c6ae99SBarry Smith + dm - the DM object to view 87647c6ae99SBarry Smith - v - the viewer 87747c6ae99SBarry Smith 878224748a4SBarry Smith Level: beginner 87947c6ae99SBarry Smith 880e727c939SJed Brown .seealso DMDestroy(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 88147c6ae99SBarry Smith 88247c6ae99SBarry Smith @*/ 8837087cfbeSBarry Smith PetscErrorCode DMView(DM dm,PetscViewer v) 88447c6ae99SBarry Smith { 88547c6ae99SBarry Smith PetscErrorCode ierr; 88632c0f0efSBarry Smith PetscBool isbinary; 88776a8abe0SBarry Smith PetscMPIInt size; 88876a8abe0SBarry Smith PetscViewerFormat format; 88947c6ae99SBarry Smith 89047c6ae99SBarry Smith PetscFunctionBegin; 891171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 8923014e516SBarry Smith if (!v) { 893ce94432eSBarry Smith ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)dm),&v);CHKERRQ(ierr); 8943014e516SBarry Smith } 895b1b135c8SBarry Smith PetscValidHeaderSpecific(v,PETSC_VIEWER_CLASSID,2); 89674903a4fSStefano Zampini /* Ideally, we would like to have this test on. 89774903a4fSStefano Zampini However, it currently breaks socket viz via GLVis. 89874903a4fSStefano Zampini During DMView(parallel_mesh,glvis_viewer), each 89974903a4fSStefano Zampini process opens a sequential ASCII socket to visualize 90074903a4fSStefano Zampini the local mesh, and PetscObjectView(dm,local_socket) 90174903a4fSStefano Zampini is internally called inside VecView_GLVis, incurring 90274903a4fSStefano Zampini in an error here */ 90374903a4fSStefano Zampini /* PetscCheckSameComm(dm,1,v,2); */ 9048bfd1ab9SVaclav Hapla ierr = PetscViewerCheckWritable(v);CHKERRQ(ierr); 905b1b135c8SBarry Smith 90676a8abe0SBarry Smith ierr = PetscViewerGetFormat(v,&format);CHKERRQ(ierr); 90776a8abe0SBarry Smith ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm),&size);CHKERRQ(ierr); 90876a8abe0SBarry Smith if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(0); 90998c3331eSBarry Smith ierr = PetscObjectPrintClassNamePrefixType((PetscObject)dm,v);CHKERRQ(ierr); 91032c0f0efSBarry Smith ierr = PetscObjectTypeCompare((PetscObject)v,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr); 91132c0f0efSBarry Smith if (isbinary) { 91255849f57SBarry Smith PetscInt classid = DM_FILE_CLASSID; 91332c0f0efSBarry Smith char type[256]; 91432c0f0efSBarry Smith 91532c0f0efSBarry Smith ierr = PetscViewerBinaryWrite(v,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr); 91632c0f0efSBarry Smith ierr = PetscStrncpy(type,((PetscObject)dm)->type_name,256);CHKERRQ(ierr); 91732c0f0efSBarry Smith ierr = PetscViewerBinaryWrite(v,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr); 91832c0f0efSBarry Smith } 9190c010503SBarry Smith if (dm->ops->view) { 9200c010503SBarry Smith ierr = (*dm->ops->view)(dm,v);CHKERRQ(ierr); 92147c6ae99SBarry Smith } 92247c6ae99SBarry Smith PetscFunctionReturn(0); 92347c6ae99SBarry Smith } 92447c6ae99SBarry Smith 92547c6ae99SBarry Smith /*@ 9268472ad0fSDave May DMCreateGlobalVector - Creates a global vector from a DM object 92747c6ae99SBarry Smith 928d083f849SBarry Smith Collective on dm 92947c6ae99SBarry Smith 93047c6ae99SBarry Smith Input Parameter: 93147c6ae99SBarry Smith . dm - the DM object 93247c6ae99SBarry Smith 93347c6ae99SBarry Smith Output Parameter: 93447c6ae99SBarry Smith . vec - the global vector 93547c6ae99SBarry Smith 936073dac72SJed Brown Level: beginner 93747c6ae99SBarry Smith 938e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 93947c6ae99SBarry Smith 94047c6ae99SBarry Smith @*/ 9417087cfbeSBarry Smith PetscErrorCode DMCreateGlobalVector(DM dm,Vec *vec) 94247c6ae99SBarry Smith { 94347c6ae99SBarry Smith PetscErrorCode ierr; 94447c6ae99SBarry Smith 94547c6ae99SBarry Smith PetscFunctionBegin; 946171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 947b9d85ea2SLisandro Dalcin PetscValidPointer(vec,2); 948b9d85ea2SLisandro Dalcin if (!dm->ops->createglobalvector) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateGlobalVector",((PetscObject)dm)->type_name); 94947c6ae99SBarry Smith ierr = (*dm->ops->createglobalvector)(dm,vec);CHKERRQ(ierr); 950c6b011d8SStefano Zampini #if defined(PETSC_USE_DEBUG) 951c6b011d8SStefano Zampini { 952c6b011d8SStefano Zampini DM vdm; 953c6b011d8SStefano Zampini 954c6b011d8SStefano Zampini ierr = VecGetDM(*vec,&vdm);CHKERRQ(ierr); 955c6b011d8SStefano Zampini if (!vdm) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_PLIB,"DM type '%s' did not attach the DM to the vector\n",((PetscObject)dm)->type_name); 956c6b011d8SStefano Zampini } 957c6b011d8SStefano Zampini #endif 95847c6ae99SBarry Smith PetscFunctionReturn(0); 95947c6ae99SBarry Smith } 96047c6ae99SBarry Smith 96147c6ae99SBarry Smith /*@ 9628472ad0fSDave May DMCreateLocalVector - Creates a local vector from a DM object 96347c6ae99SBarry Smith 96447c6ae99SBarry Smith Not Collective 96547c6ae99SBarry Smith 96647c6ae99SBarry Smith Input Parameter: 96747c6ae99SBarry Smith . dm - the DM object 96847c6ae99SBarry Smith 96947c6ae99SBarry Smith Output Parameter: 97047c6ae99SBarry Smith . vec - the local vector 97147c6ae99SBarry Smith 972073dac72SJed Brown Level: beginner 97347c6ae99SBarry Smith 974e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 97547c6ae99SBarry Smith 97647c6ae99SBarry Smith @*/ 9777087cfbeSBarry Smith PetscErrorCode DMCreateLocalVector(DM dm,Vec *vec) 97847c6ae99SBarry Smith { 97947c6ae99SBarry Smith PetscErrorCode ierr; 98047c6ae99SBarry Smith 98147c6ae99SBarry Smith PetscFunctionBegin; 982171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 983b9d85ea2SLisandro Dalcin PetscValidPointer(vec,2); 984b9d85ea2SLisandro Dalcin if (!dm->ops->createlocalvector) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateLocalVector",((PetscObject)dm)->type_name); 98547c6ae99SBarry Smith ierr = (*dm->ops->createlocalvector)(dm,vec);CHKERRQ(ierr); 986c6b011d8SStefano Zampini #if defined(PETSC_USE_DEBUG) 987c6b011d8SStefano Zampini { 988c6b011d8SStefano Zampini DM vdm; 989c6b011d8SStefano Zampini 990c6b011d8SStefano Zampini ierr = VecGetDM(*vec,&vdm);CHKERRQ(ierr); 991c6b011d8SStefano Zampini if (!vdm) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"DM type '%s' did not attach the DM to the vector\n",((PetscObject)dm)->type_name); 992c6b011d8SStefano Zampini } 993c6b011d8SStefano Zampini #endif 99447c6ae99SBarry Smith PetscFunctionReturn(0); 99547c6ae99SBarry Smith } 99647c6ae99SBarry Smith 9971411c6eeSJed Brown /*@ 9981411c6eeSJed Brown DMGetLocalToGlobalMapping - Accesses the local-to-global mapping in a DM. 9991411c6eeSJed Brown 1000d083f849SBarry Smith Collective on dm 10011411c6eeSJed Brown 10021411c6eeSJed Brown Input Parameter: 10031411c6eeSJed Brown . dm - the DM that provides the mapping 10041411c6eeSJed Brown 10051411c6eeSJed Brown Output Parameter: 10061411c6eeSJed Brown . ltog - the mapping 10071411c6eeSJed Brown 10081411c6eeSJed Brown Level: intermediate 10091411c6eeSJed Brown 10101411c6eeSJed Brown Notes: 10111411c6eeSJed Brown This mapping can then be used by VecSetLocalToGlobalMapping() or 10121411c6eeSJed Brown MatSetLocalToGlobalMapping(). 10131411c6eeSJed Brown 1014fc31e74dSBarry Smith .seealso: DMCreateLocalVector() 10151411c6eeSJed Brown @*/ 10167087cfbeSBarry Smith PetscErrorCode DMGetLocalToGlobalMapping(DM dm,ISLocalToGlobalMapping *ltog) 10171411c6eeSJed Brown { 10180be3e97aSMatthew G. Knepley PetscInt bs = -1, bsLocal[2], bsMinMax[2]; 10191411c6eeSJed Brown PetscErrorCode ierr; 10201411c6eeSJed Brown 10211411c6eeSJed Brown PetscFunctionBegin; 10221411c6eeSJed Brown PetscValidHeaderSpecific(dm,DM_CLASSID,1); 10231411c6eeSJed Brown PetscValidPointer(ltog,2); 10241411c6eeSJed Brown if (!dm->ltogmap) { 102537d0c07bSMatthew G Knepley PetscSection section, sectionGlobal; 102637d0c07bSMatthew G Knepley 102792fd8e1eSJed Brown ierr = DMGetLocalSection(dm, §ion);CHKERRQ(ierr); 102837d0c07bSMatthew G Knepley if (section) { 1029a974ec88SMatthew G. Knepley const PetscInt *cdofs; 103037d0c07bSMatthew G Knepley PetscInt *ltog; 1031ccf3bd66SMatthew G. Knepley PetscInt pStart, pEnd, n, p, k, l; 103237d0c07bSMatthew G Knepley 1033e87a4003SBarry Smith ierr = DMGetGlobalSection(dm, §ionGlobal);CHKERRQ(ierr); 103437d0c07bSMatthew G Knepley ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 1035ccf3bd66SMatthew G. Knepley ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr); 1036ccf3bd66SMatthew G. Knepley ierr = PetscMalloc1(n, <og);CHKERRQ(ierr); /* We want the local+overlap size */ 103737d0c07bSMatthew G Knepley for (p = pStart, l = 0; p < pEnd; ++p) { 1038a974ec88SMatthew G. Knepley PetscInt bdof, cdof, dof, off, c, cind = 0; 103937d0c07bSMatthew G Knepley 104037d0c07bSMatthew G Knepley /* Should probably use constrained dofs */ 104137d0c07bSMatthew G Knepley ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr); 1042a974ec88SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr); 1043a974ec88SMatthew G. Knepley ierr = PetscSectionGetConstraintIndices(section, p, &cdofs);CHKERRQ(ierr); 104437d0c07bSMatthew G Knepley ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr); 10451a7dc684SMatthew G. Knepley /* If you have dofs, and constraints, and they are unequal, we set the blocksize to 1 */ 10461a7dc684SMatthew G. Knepley bdof = cdof && (dof-cdof) ? 1 : dof; 10471a7dc684SMatthew G. Knepley if (dof) { 1048b190aa46SMatthew G. Knepley if (bs < 0) {bs = bdof;} 1049b190aa46SMatthew G. Knepley else if (bs != bdof) {bs = 1;} 10501a7dc684SMatthew G. Knepley } 105137d0c07bSMatthew G Knepley for (c = 0; c < dof; ++c, ++l) { 1052a974ec88SMatthew G. Knepley if ((cind < cdof) && (c == cdofs[cind])) ltog[l] = off < 0 ? off-c : off+c; 1053a974ec88SMatthew G. Knepley else ltog[l] = (off < 0 ? -(off+1) : off) + c; 105437d0c07bSMatthew G Knepley } 105537d0c07bSMatthew G Knepley } 1056bff27382SMatthew G. Knepley /* Must have same blocksize on all procs (some might have no points) */ 10570be3e97aSMatthew G. Knepley bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs; 10580be3e97aSMatthew G. Knepley ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr); 10590be3e97aSMatthew G. Knepley if (bsMinMax[0] != bsMinMax[1]) {bs = 1;} 10600be3e97aSMatthew G. Knepley else {bs = bsMinMax[0];} 10617591dbb2SMatthew G. Knepley bs = bs < 0 ? 1 : bs; 10627591dbb2SMatthew G. Knepley /* Must reduce indices by blocksize */ 1063ccf3bd66SMatthew G. Knepley if (bs > 1) { 1064ccf3bd66SMatthew G. Knepley for (l = 0, k = 0; l < n; l += bs, ++k) ltog[k] = ltog[l]/bs; 1065ccf3bd66SMatthew G. Knepley n /= bs; 1066ccf3bd66SMatthew G. Knepley } 1067ccf3bd66SMatthew G. Knepley ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, n, ltog, PETSC_OWN_POINTER, &dm->ltogmap);CHKERRQ(ierr); 10683bb1ff40SBarry Smith ierr = PetscLogObjectParent((PetscObject)dm, (PetscObject)dm->ltogmap);CHKERRQ(ierr); 106937d0c07bSMatthew G Knepley } else { 1070b9d85ea2SLisandro Dalcin if (!dm->ops->getlocaltoglobalmapping) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMGetLocalToGlobalMapping",((PetscObject)dm)->type_name); 1071184d77edSJed Brown ierr = (*dm->ops->getlocaltoglobalmapping)(dm);CHKERRQ(ierr); 10721411c6eeSJed Brown } 107337d0c07bSMatthew G Knepley } 10741411c6eeSJed Brown *ltog = dm->ltogmap; 10751411c6eeSJed Brown PetscFunctionReturn(0); 10761411c6eeSJed Brown } 10771411c6eeSJed Brown 10781411c6eeSJed Brown /*@ 10791411c6eeSJed Brown DMGetBlockSize - Gets the inherent block size associated with a DM 10801411c6eeSJed Brown 10811411c6eeSJed Brown Not Collective 10821411c6eeSJed Brown 10831411c6eeSJed Brown Input Parameter: 10841411c6eeSJed Brown . dm - the DM with block structure 10851411c6eeSJed Brown 10861411c6eeSJed Brown Output Parameter: 10871411c6eeSJed Brown . bs - the block size, 1 implies no exploitable block structure 10881411c6eeSJed Brown 10891411c6eeSJed Brown Level: intermediate 10901411c6eeSJed Brown 1091fc31e74dSBarry Smith .seealso: ISCreateBlock(), VecSetBlockSize(), MatSetBlockSize(), DMGetLocalToGlobalMapping() 10921411c6eeSJed Brown @*/ 10937087cfbeSBarry Smith PetscErrorCode DMGetBlockSize(DM dm,PetscInt *bs) 10941411c6eeSJed Brown { 10951411c6eeSJed Brown PetscFunctionBegin; 10961411c6eeSJed Brown PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1097534a8f05SLisandro Dalcin PetscValidIntPointer(bs,2); 10981411c6eeSJed Brown if (dm->bs < 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"DM does not have enough information to provide a block size yet"); 10991411c6eeSJed Brown *bs = dm->bs; 11001411c6eeSJed Brown PetscFunctionReturn(0); 11011411c6eeSJed Brown } 11021411c6eeSJed Brown 110347c6ae99SBarry Smith /*@ 11048472ad0fSDave May DMCreateInterpolation - Gets interpolation matrix between two DM objects 110547c6ae99SBarry Smith 1106*a5bc1bf3SBarry Smith Collective on dmc 110747c6ae99SBarry Smith 110847c6ae99SBarry Smith Input Parameter: 1109*a5bc1bf3SBarry Smith + dmc - the DM object 1110*a5bc1bf3SBarry Smith - dmf - the second, finer DM object 111147c6ae99SBarry Smith 111247c6ae99SBarry Smith Output Parameter: 111347c6ae99SBarry Smith + mat - the interpolation 111447c6ae99SBarry Smith - vec - the scaling (optional) 111547c6ae99SBarry Smith 111647c6ae99SBarry Smith Level: developer 111747c6ae99SBarry Smith 111895452b02SPatrick Sanan Notes: 111995452b02SPatrick Sanan For DMDA objects this only works for "uniform refinement", that is the refined mesh was obtained DMRefine() or the coarse mesh was obtained by 112085afcc9aSBarry Smith DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation. 1121d52bd9f3SBarry Smith 11221f588964SMatthew G Knepley For DMDA objects you can use this interpolation (more precisely the interpolation from the DMGetCoordinateDM()) to interpolate the mesh coordinate vectors 1123d52bd9f3SBarry Smith EXCEPT in the periodic case where it does not make sense since the coordinate vectors are not periodic. 112485afcc9aSBarry Smith 112585afcc9aSBarry Smith 11262ed6491fSPatrick Sanan .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction(), DMCreateInterpolationScale() 112747c6ae99SBarry Smith 112847c6ae99SBarry Smith @*/ 1129*a5bc1bf3SBarry Smith PetscErrorCode DMCreateInterpolation(DM dmc,DM dmf,Mat *mat,Vec *vec) 113047c6ae99SBarry Smith { 113147c6ae99SBarry Smith PetscErrorCode ierr; 113247c6ae99SBarry Smith 113347c6ae99SBarry Smith PetscFunctionBegin; 1134*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dmc,DM_CLASSID,1); 1135*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dmf,DM_CLASSID,2); 1136c7d20fa0SStefano Zampini PetscValidPointer(mat,3); 1137*a5bc1bf3SBarry Smith if (!dmc->ops->createinterpolation) SETERRQ1(PetscObjectComm((PetscObject)dmc),PETSC_ERR_SUP,"DM type %s does not implement DMCreateInterpolation",((PetscObject)dmc)->type_name); 1138*a5bc1bf3SBarry Smith ierr = PetscLogEventBegin(DM_CreateInterpolation,dmc,dmf,0,0);CHKERRQ(ierr); 1139*a5bc1bf3SBarry Smith ierr = (*dmc->ops->createinterpolation)(dmc,dmf,mat,vec);CHKERRQ(ierr); 1140*a5bc1bf3SBarry Smith ierr = PetscLogEventEnd(DM_CreateInterpolation,dmc,dmf,0,0);CHKERRQ(ierr); 114147c6ae99SBarry Smith PetscFunctionReturn(0); 114247c6ae99SBarry Smith } 114347c6ae99SBarry Smith 11443ad4599aSBarry Smith /*@ 1145d3e313eaSPatrick Sanan DMCreateInterpolationScale - Forms L = 1/(R*1) such that diag(L)*R preserves scale and is thus suitable for state (versus residual) restriction. 11462ed6491fSPatrick Sanan 11472ed6491fSPatrick Sanan Input Parameters: 11482ed6491fSPatrick Sanan + dac - DM that defines a coarse mesh 11492ed6491fSPatrick Sanan . daf - DM that defines a fine mesh 11502ed6491fSPatrick Sanan - mat - the restriction (or interpolation operator) from fine to coarse 11512ed6491fSPatrick Sanan 11522ed6491fSPatrick Sanan Output Parameter: 11532ed6491fSPatrick Sanan . scale - the scaled vector 11542ed6491fSPatrick Sanan 11552ed6491fSPatrick Sanan Level: developer 11562ed6491fSPatrick Sanan 11572ed6491fSPatrick Sanan .seealso: DMCreateInterpolation() 11582ed6491fSPatrick Sanan 11592ed6491fSPatrick Sanan @*/ 11602ed6491fSPatrick Sanan PetscErrorCode DMCreateInterpolationScale(DM dac,DM daf,Mat mat,Vec *scale) 11612ed6491fSPatrick Sanan { 11622ed6491fSPatrick Sanan PetscErrorCode ierr; 11632ed6491fSPatrick Sanan Vec fine; 11642ed6491fSPatrick Sanan PetscScalar one = 1.0; 11652ed6491fSPatrick Sanan 11662ed6491fSPatrick Sanan PetscFunctionBegin; 11672ed6491fSPatrick Sanan ierr = DMCreateGlobalVector(daf,&fine);CHKERRQ(ierr); 11682ed6491fSPatrick Sanan ierr = DMCreateGlobalVector(dac,scale);CHKERRQ(ierr); 11692ed6491fSPatrick Sanan ierr = VecSet(fine,one);CHKERRQ(ierr); 11702ed6491fSPatrick Sanan ierr = MatRestrict(mat,fine,*scale);CHKERRQ(ierr); 11712ed6491fSPatrick Sanan ierr = VecDestroy(&fine);CHKERRQ(ierr); 11722ed6491fSPatrick Sanan ierr = VecReciprocal(*scale);CHKERRQ(ierr); 11732ed6491fSPatrick Sanan PetscFunctionReturn(0); 11742ed6491fSPatrick Sanan } 11752ed6491fSPatrick Sanan 11762ed6491fSPatrick Sanan /*@ 11773ad4599aSBarry Smith DMCreateRestriction - Gets restriction matrix between two DM objects 11783ad4599aSBarry Smith 1179*a5bc1bf3SBarry Smith Collective on dmc 11803ad4599aSBarry Smith 11813ad4599aSBarry Smith Input Parameter: 1182*a5bc1bf3SBarry Smith + dmc - the DM object 1183*a5bc1bf3SBarry Smith - dmf - the second, finer DM object 11843ad4599aSBarry Smith 11853ad4599aSBarry Smith Output Parameter: 11863ad4599aSBarry Smith . mat - the restriction 11873ad4599aSBarry Smith 11883ad4599aSBarry Smith 11893ad4599aSBarry Smith Level: developer 11903ad4599aSBarry Smith 119195452b02SPatrick Sanan Notes: 119295452b02SPatrick Sanan For DMDA objects this only works for "uniform refinement", that is the refined mesh was obtained DMRefine() or the coarse mesh was obtained by 11933ad4599aSBarry Smith DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation. 11943ad4599aSBarry Smith 11953ad4599aSBarry Smith 11963ad4599aSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateInterpolation() 11973ad4599aSBarry Smith 11983ad4599aSBarry Smith @*/ 1199*a5bc1bf3SBarry Smith PetscErrorCode DMCreateRestriction(DM dmc,DM dmf,Mat *mat) 12003ad4599aSBarry Smith { 12013ad4599aSBarry Smith PetscErrorCode ierr; 12023ad4599aSBarry Smith 12033ad4599aSBarry Smith PetscFunctionBegin; 1204*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dmc,DM_CLASSID,1); 1205*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dmf,DM_CLASSID,2); 12065a84ad33SLisandro Dalcin PetscValidPointer(mat,3); 1207*a5bc1bf3SBarry Smith if (!dmc->ops->createrestriction) SETERRQ1(PetscObjectComm((PetscObject)dmc),PETSC_ERR_SUP,"DM type %s does not implement DMCreateRestriction",((PetscObject)dmc)->type_name); 1208*a5bc1bf3SBarry Smith ierr = PetscLogEventBegin(DM_CreateRestriction,dmc,dmf,0,0);CHKERRQ(ierr); 1209*a5bc1bf3SBarry Smith ierr = (*dmc->ops->createrestriction)(dmc,dmf,mat);CHKERRQ(ierr); 1210*a5bc1bf3SBarry Smith ierr = PetscLogEventEnd(DM_CreateRestriction,dmc,dmf,0,0);CHKERRQ(ierr); 12113ad4599aSBarry Smith PetscFunctionReturn(0); 12123ad4599aSBarry Smith } 12133ad4599aSBarry Smith 121447c6ae99SBarry Smith /*@ 12158472ad0fSDave May DMCreateInjection - Gets injection matrix between two DM objects 121647c6ae99SBarry Smith 1217*a5bc1bf3SBarry Smith Collective on dac 121847c6ae99SBarry Smith 121947c6ae99SBarry Smith Input Parameter: 1220*a5bc1bf3SBarry Smith + dac - the DM object 1221*a5bc1bf3SBarry Smith - daf - the second, finer DM object 122247c6ae99SBarry Smith 122347c6ae99SBarry Smith Output Parameter: 12246dbf9973SLawrence Mitchell . mat - the injection 122547c6ae99SBarry Smith 122647c6ae99SBarry Smith Level: developer 122747c6ae99SBarry Smith 122895452b02SPatrick Sanan Notes: 122995452b02SPatrick Sanan For DMDA objects this only works for "uniform refinement", that is the refined mesh was obtained DMRefine() or the coarse mesh was obtained by 123085afcc9aSBarry Smith DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the injection. 123185afcc9aSBarry Smith 1232e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMCreateInterpolation() 123347c6ae99SBarry Smith 123447c6ae99SBarry Smith @*/ 1235*a5bc1bf3SBarry Smith PetscErrorCode DMCreateInjection(DM dac,DM daf,Mat *mat) 123647c6ae99SBarry Smith { 123747c6ae99SBarry Smith PetscErrorCode ierr; 123847c6ae99SBarry Smith 123947c6ae99SBarry Smith PetscFunctionBegin; 1240*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dac,DM_CLASSID,1); 1241*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(daf,DM_CLASSID,2); 12425a84ad33SLisandro Dalcin PetscValidPointer(mat,3); 1243*a5bc1bf3SBarry Smith if (!dac->ops->createinjection) SETERRQ1(PetscObjectComm((PetscObject)dac),PETSC_ERR_SUP,"DM type %s does not implement DMCreateInjection",((PetscObject)dac)->type_name); 1244*a5bc1bf3SBarry Smith ierr = PetscLogEventBegin(DM_CreateInjection,dac,daf,0,0);CHKERRQ(ierr); 1245*a5bc1bf3SBarry Smith ierr = (*dac->ops->createinjection)(dac,daf,mat);CHKERRQ(ierr); 1246*a5bc1bf3SBarry Smith ierr = PetscLogEventEnd(DM_CreateInjection,dac,daf,0,0);CHKERRQ(ierr); 124747c6ae99SBarry Smith PetscFunctionReturn(0); 124847c6ae99SBarry Smith } 124947c6ae99SBarry Smith 1250b412c318SBarry Smith /*@ 1251bd041c0cSMatthew G. Knepley DMCreateMassMatrix - Gets mass matrix between two DM objects, M_ij = \int \phi_i \psi_j 1252bd041c0cSMatthew G. Knepley 1253*a5bc1bf3SBarry Smith Collective on dac 1254bd041c0cSMatthew G. Knepley 1255bd041c0cSMatthew G. Knepley Input Parameter: 1256*a5bc1bf3SBarry Smith + dac - the DM object 1257*a5bc1bf3SBarry Smith - daf - the second, finer DM object 1258bd041c0cSMatthew G. Knepley 1259bd041c0cSMatthew G. Knepley Output Parameter: 1260bd041c0cSMatthew G. Knepley . mat - the interpolation 1261bd041c0cSMatthew G. Knepley 1262bd041c0cSMatthew G. Knepley Level: developer 1263bd041c0cSMatthew G. Knepley 1264bd041c0cSMatthew G. Knepley .seealso DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction(), DMCreateInterpolation(), DMCreateInjection() 1265bd041c0cSMatthew G. Knepley @*/ 1266*a5bc1bf3SBarry Smith PetscErrorCode DMCreateMassMatrix(DM dac, DM daf, Mat *mat) 1267bd041c0cSMatthew G. Knepley { 1268bd041c0cSMatthew G. Knepley PetscErrorCode ierr; 1269bd041c0cSMatthew G. Knepley 1270bd041c0cSMatthew G. Knepley PetscFunctionBegin; 1271*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dac, DM_CLASSID, 1); 1272*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(daf, DM_CLASSID, 2); 12735a84ad33SLisandro Dalcin PetscValidPointer(mat,3); 1274*a5bc1bf3SBarry Smith if (!dac->ops->createmassmatrix) SETERRQ1(PetscObjectComm((PetscObject)dac),PETSC_ERR_SUP,"DM type %s does not implement DMCreateMassMatrix",((PetscObject)dac)->type_name); 1275*a5bc1bf3SBarry Smith ierr = (*dac->ops->createmassmatrix)(dac, daf, mat);CHKERRQ(ierr); 1276bd041c0cSMatthew G. Knepley PetscFunctionReturn(0); 1277bd041c0cSMatthew G. Knepley } 1278bd041c0cSMatthew G. Knepley 1279bd041c0cSMatthew G. Knepley /*@ 1280b412c318SBarry Smith DMCreateColoring - Gets coloring for a DM 128147c6ae99SBarry Smith 1282d083f849SBarry Smith Collective on dm 128347c6ae99SBarry Smith 128447c6ae99SBarry Smith Input Parameter: 128547c6ae99SBarry Smith + dm - the DM object 12865bdb020cSBarry Smith - ctype - IS_COLORING_LOCAL or IS_COLORING_GLOBAL 128747c6ae99SBarry Smith 128847c6ae99SBarry Smith Output Parameter: 128947c6ae99SBarry Smith . coloring - the coloring 129047c6ae99SBarry Smith 1291ec5066bdSBarry Smith Notes: 1292ec5066bdSBarry Smith Coloring of matrices can be computed directly from the sparse matrix nonzero structure via the MatColoring object or from the mesh from which the 1293ec5066bdSBarry Smith matrix comes from. In general using the mesh produces a more optimal coloring (fewer colors). 1294ec5066bdSBarry Smith 1295ec5066bdSBarry Smith This produces a coloring with the distance of 2, see MatSetColoringDistance() which can be used for efficiently computing Jacobians with MatFDColoringCreate() 1296ec5066bdSBarry Smith 129747c6ae99SBarry Smith Level: developer 129847c6ae99SBarry Smith 1299ec5066bdSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateMatrix(), DMSetMatType(), MatColoring, MatFDColoringCreate() 130047c6ae99SBarry Smith 1301aab9d709SJed Brown @*/ 1302b412c318SBarry Smith PetscErrorCode DMCreateColoring(DM dm,ISColoringType ctype,ISColoring *coloring) 130347c6ae99SBarry Smith { 130447c6ae99SBarry Smith PetscErrorCode ierr; 130547c6ae99SBarry Smith 130647c6ae99SBarry Smith PetscFunctionBegin; 1307171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 13085a84ad33SLisandro Dalcin PetscValidPointer(coloring,3); 1309b9d85ea2SLisandro Dalcin if (!dm->ops->getcoloring) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateColoring",((PetscObject)dm)->type_name); 1310b412c318SBarry Smith ierr = (*dm->ops->getcoloring)(dm,ctype,coloring);CHKERRQ(ierr); 131147c6ae99SBarry Smith PetscFunctionReturn(0); 131247c6ae99SBarry Smith } 131347c6ae99SBarry Smith 1314b412c318SBarry Smith /*@ 13158472ad0fSDave May DMCreateMatrix - Gets empty Jacobian for a DM 131647c6ae99SBarry Smith 1317d083f849SBarry Smith Collective on dm 131847c6ae99SBarry Smith 131947c6ae99SBarry Smith Input Parameter: 1320b412c318SBarry Smith . dm - the DM object 132147c6ae99SBarry Smith 132247c6ae99SBarry Smith Output Parameter: 132347c6ae99SBarry Smith . mat - the empty Jacobian 132447c6ae99SBarry Smith 1325073dac72SJed Brown Level: beginner 132647c6ae99SBarry Smith 132795452b02SPatrick Sanan Notes: 132895452b02SPatrick Sanan This properly preallocates the number of nonzeros in the sparse matrix so you 132994013140SBarry Smith do not need to do it yourself. 133094013140SBarry Smith 133194013140SBarry Smith By default it also sets the nonzero structure and puts in the zero entries. To prevent setting 13327889ec69SBarry Smith the nonzero pattern call DMSetMatrixPreallocateOnly() 133394013140SBarry Smith 133494013140SBarry Smith For structured grid problems, when you call MatView() on this matrix it is displayed using the global natural ordering, NOT in the ordering used 133594013140SBarry Smith internally by PETSc. 133694013140SBarry Smith 133794013140SBarry Smith For structured grid problems, in general it is easiest to use MatSetValuesStencil() or MatSetValuesLocal() to put values into the matrix because MatSetValues() requires 1338aa219208SBarry Smith the indices for the global numbering for DMDAs which is complicated. 133994013140SBarry Smith 1340b412c318SBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMSetMatType() 134147c6ae99SBarry Smith 1342aab9d709SJed Brown @*/ 1343b412c318SBarry Smith PetscErrorCode DMCreateMatrix(DM dm,Mat *mat) 134447c6ae99SBarry Smith { 134547c6ae99SBarry Smith PetscErrorCode ierr; 134647c6ae99SBarry Smith 134747c6ae99SBarry Smith PetscFunctionBegin; 1348171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1349c7b7c8a4SJed Brown PetscValidPointer(mat,3); 1350b9d85ea2SLisandro Dalcin if (!dm->ops->creatematrix) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateMatrix",((PetscObject)dm)->type_name); 13515a84ad33SLisandro Dalcin ierr = MatInitializePackage();CHKERRQ(ierr); 1352fdc842d1SBarry Smith ierr = PetscLogEventBegin(DM_CreateMatrix,0,0,0,0);CHKERRQ(ierr); 1353b412c318SBarry Smith ierr = (*dm->ops->creatematrix)(dm,mat);CHKERRQ(ierr); 1354c6b011d8SStefano Zampini #if defined(PETSC_USE_DEBUG) 1355c6b011d8SStefano Zampini { 1356c6b011d8SStefano Zampini DM mdm; 1357c6b011d8SStefano Zampini 1358c6b011d8SStefano Zampini ierr = MatGetDM(*mat,&mdm);CHKERRQ(ierr); 1359c6b011d8SStefano Zampini if (!mdm) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_PLIB,"DM type '%s' did not attach the DM to the matrix\n",((PetscObject)dm)->type_name); 1360c6b011d8SStefano Zampini } 1361c6b011d8SStefano Zampini #endif 1362e571a35bSMatthew G. Knepley /* Handle nullspace and near nullspace */ 1363e5e52638SMatthew G. Knepley if (dm->Nf) { 1364e571a35bSMatthew G. Knepley MatNullSpace nullSpace; 1365e571a35bSMatthew G. Knepley PetscInt Nf; 1366e571a35bSMatthew G. Knepley 1367e5e52638SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 1368e571a35bSMatthew G. Knepley if (Nf == 1) { 1369e571a35bSMatthew G. Knepley if (dm->nullspaceConstructors[0]) { 1370e571a35bSMatthew G. Knepley ierr = (*dm->nullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr); 1371e571a35bSMatthew G. Knepley ierr = MatSetNullSpace(*mat, nullSpace);CHKERRQ(ierr); 1372e571a35bSMatthew G. Knepley ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr); 1373e571a35bSMatthew G. Knepley } 1374e571a35bSMatthew G. Knepley if (dm->nearnullspaceConstructors[0]) { 1375e571a35bSMatthew G. Knepley ierr = (*dm->nearnullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr); 1376e571a35bSMatthew G. Knepley ierr = MatSetNearNullSpace(*mat, nullSpace);CHKERRQ(ierr); 1377e571a35bSMatthew G. Knepley ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr); 1378e571a35bSMatthew G. Knepley } 1379e571a35bSMatthew G. Knepley } 1380e571a35bSMatthew G. Knepley } 1381fdc842d1SBarry Smith ierr = PetscLogEventEnd(DM_CreateMatrix,0,0,0,0);CHKERRQ(ierr); 138247c6ae99SBarry Smith PetscFunctionReturn(0); 138347c6ae99SBarry Smith } 138447c6ae99SBarry Smith 1385732e2eb9SMatthew G Knepley /*@ 1386950540a4SJed Brown DMSetMatrixPreallocateOnly - When DMCreateMatrix() is called the matrix will be properly 1387732e2eb9SMatthew G Knepley preallocated but the nonzero structure and zero values will not be set. 1388732e2eb9SMatthew G Knepley 1389d083f849SBarry Smith Logically Collective on dm 1390732e2eb9SMatthew G Knepley 1391732e2eb9SMatthew G Knepley Input Parameter: 1392732e2eb9SMatthew G Knepley + dm - the DM 1393732e2eb9SMatthew G Knepley - only - PETSC_TRUE if only want preallocation 1394732e2eb9SMatthew G Knepley 1395732e2eb9SMatthew G Knepley Level: developer 1396b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixStructureOnly() 1397732e2eb9SMatthew G Knepley @*/ 1398732e2eb9SMatthew G Knepley PetscErrorCode DMSetMatrixPreallocateOnly(DM dm, PetscBool only) 1399732e2eb9SMatthew G Knepley { 1400732e2eb9SMatthew G Knepley PetscFunctionBegin; 1401732e2eb9SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1402732e2eb9SMatthew G Knepley dm->prealloc_only = only; 1403732e2eb9SMatthew G Knepley PetscFunctionReturn(0); 1404732e2eb9SMatthew G Knepley } 1405732e2eb9SMatthew G Knepley 1406b06ff27eSHong Zhang /*@ 1407b06ff27eSHong Zhang DMSetMatrixStructureOnly - When DMCreateMatrix() is called, the matrix structure will be created 1408b06ff27eSHong Zhang but the array for values will not be allocated. 1409b06ff27eSHong Zhang 1410d083f849SBarry Smith Logically Collective on dm 1411b06ff27eSHong Zhang 1412b06ff27eSHong Zhang Input Parameter: 1413b06ff27eSHong Zhang + dm - the DM 1414b06ff27eSHong Zhang - only - PETSC_TRUE if only want matrix stucture 1415b06ff27eSHong Zhang 1416b06ff27eSHong Zhang Level: developer 1417b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixPreallocateOnly() 1418b06ff27eSHong Zhang @*/ 1419b06ff27eSHong Zhang PetscErrorCode DMSetMatrixStructureOnly(DM dm, PetscBool only) 1420b06ff27eSHong Zhang { 1421b06ff27eSHong Zhang PetscFunctionBegin; 1422b06ff27eSHong Zhang PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1423b06ff27eSHong Zhang dm->structure_only = only; 1424b06ff27eSHong Zhang PetscFunctionReturn(0); 1425b06ff27eSHong Zhang } 1426b06ff27eSHong Zhang 1427a89ea682SMatthew G Knepley /*@C 1428aa1993deSMatthew G Knepley DMGetWorkArray - Gets a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray() 1429a89ea682SMatthew G Knepley 1430a89ea682SMatthew G Knepley Not Collective 1431a89ea682SMatthew G Knepley 1432a89ea682SMatthew G Knepley Input Parameters: 1433a89ea682SMatthew G Knepley + dm - the DM object 1434aa1993deSMatthew G Knepley . count - The minium size 143569291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT) 1436a89ea682SMatthew G Knepley 1437a89ea682SMatthew G Knepley Output Parameter: 1438a89ea682SMatthew G Knepley . array - the work array 1439a89ea682SMatthew G Knepley 1440a89ea682SMatthew G Knepley Level: developer 1441a89ea682SMatthew G Knepley 1442a89ea682SMatthew G Knepley .seealso DMDestroy(), DMCreate() 1443a89ea682SMatthew G Knepley @*/ 144469291d52SBarry Smith PetscErrorCode DMGetWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem) 1445a89ea682SMatthew G Knepley { 1446a89ea682SMatthew G Knepley PetscErrorCode ierr; 1447aa1993deSMatthew G Knepley DMWorkLink link; 144869291d52SBarry Smith PetscMPIInt dsize; 1449a89ea682SMatthew G Knepley 1450a89ea682SMatthew G Knepley PetscFunctionBegin; 1451a89ea682SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1452aa1993deSMatthew G Knepley PetscValidPointer(mem,4); 1453aa1993deSMatthew G Knepley if (dm->workin) { 1454aa1993deSMatthew G Knepley link = dm->workin; 1455aa1993deSMatthew G Knepley dm->workin = dm->workin->next; 1456aa1993deSMatthew G Knepley } else { 1457b00a9115SJed Brown ierr = PetscNewLog(dm,&link);CHKERRQ(ierr); 1458a89ea682SMatthew G Knepley } 145969291d52SBarry Smith ierr = MPI_Type_size(dtype,&dsize);CHKERRQ(ierr); 14605056fcd2SBarry Smith if (((size_t)dsize*count) > link->bytes) { 1461aa1993deSMatthew G Knepley ierr = PetscFree(link->mem);CHKERRQ(ierr); 1462854ce69bSBarry Smith ierr = PetscMalloc(dsize*count,&link->mem);CHKERRQ(ierr); 1463854ce69bSBarry Smith link->bytes = dsize*count; 1464aa1993deSMatthew G Knepley } 1465aa1993deSMatthew G Knepley link->next = dm->workout; 1466aa1993deSMatthew G Knepley dm->workout = link; 1467aa1993deSMatthew G Knepley *(void**)mem = link->mem; 1468a89ea682SMatthew G Knepley PetscFunctionReturn(0); 1469a89ea682SMatthew G Knepley } 1470a89ea682SMatthew G Knepley 1471aa1993deSMatthew G Knepley /*@C 1472aa1993deSMatthew G Knepley DMRestoreWorkArray - Restores a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray() 1473aa1993deSMatthew G Knepley 1474aa1993deSMatthew G Knepley Not Collective 1475aa1993deSMatthew G Knepley 1476aa1993deSMatthew G Knepley Input Parameters: 1477aa1993deSMatthew G Knepley + dm - the DM object 1478aa1993deSMatthew G Knepley . count - The minium size 147969291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT 1480aa1993deSMatthew G Knepley 1481aa1993deSMatthew G Knepley Output Parameter: 1482aa1993deSMatthew G Knepley . array - the work array 1483aa1993deSMatthew G Knepley 1484aa1993deSMatthew G Knepley Level: developer 1485aa1993deSMatthew G Knepley 148695452b02SPatrick Sanan Developer Notes: 148795452b02SPatrick Sanan count and dtype are ignored, they are only needed for DMGetWorkArray() 1488aa1993deSMatthew G Knepley .seealso DMDestroy(), DMCreate() 1489aa1993deSMatthew G Knepley @*/ 149069291d52SBarry Smith PetscErrorCode DMRestoreWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem) 1491aa1993deSMatthew G Knepley { 1492aa1993deSMatthew G Knepley DMWorkLink *p,link; 1493aa1993deSMatthew G Knepley 1494aa1993deSMatthew G Knepley PetscFunctionBegin; 1495aa1993deSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1496aa1993deSMatthew G Knepley PetscValidPointer(mem,4); 1497aa1993deSMatthew G Knepley for (p=&dm->workout; (link=*p); p=&link->next) { 1498aa1993deSMatthew G Knepley if (link->mem == *(void**)mem) { 1499aa1993deSMatthew G Knepley *p = link->next; 1500aa1993deSMatthew G Knepley link->next = dm->workin; 1501aa1993deSMatthew G Knepley dm->workin = link; 15020298fd71SBarry Smith *(void**)mem = NULL; 1503aa1993deSMatthew G Knepley PetscFunctionReturn(0); 1504aa1993deSMatthew G Knepley } 1505aa1993deSMatthew G Knepley } 1506aa1993deSMatthew G Knepley SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Array was not checked out"); 1507aa1993deSMatthew G Knepley } 1508e7c4fc90SDmitry Karpeev 1509435a35e8SMatthew G Knepley PetscErrorCode DMSetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace)) 1510435a35e8SMatthew G Knepley { 1511435a35e8SMatthew G Knepley PetscFunctionBegin; 1512435a35e8SMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 151382f516ccSBarry Smith if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field); 1514435a35e8SMatthew G Knepley dm->nullspaceConstructors[field] = nullsp; 1515435a35e8SMatthew G Knepley PetscFunctionReturn(0); 1516435a35e8SMatthew G Knepley } 1517435a35e8SMatthew G Knepley 15180a50eb56SMatthew G. Knepley PetscErrorCode DMGetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace)) 15190a50eb56SMatthew G. Knepley { 15200a50eb56SMatthew G. Knepley PetscFunctionBegin; 15210a50eb56SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1522f9d4088aSMatthew G. Knepley PetscValidPointer(nullsp, 3); 15230a50eb56SMatthew G. Knepley if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field); 15240a50eb56SMatthew G. Knepley *nullsp = dm->nullspaceConstructors[field]; 15250a50eb56SMatthew G. Knepley PetscFunctionReturn(0); 15260a50eb56SMatthew G. Knepley } 15270a50eb56SMatthew G. Knepley 1528f9d4088aSMatthew G. Knepley PetscErrorCode DMSetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace)) 1529f9d4088aSMatthew G. Knepley { 1530f9d4088aSMatthew G. Knepley PetscFunctionBegin; 1531f9d4088aSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1532f9d4088aSMatthew G. Knepley if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field); 1533f9d4088aSMatthew G. Knepley dm->nearnullspaceConstructors[field] = nullsp; 1534f9d4088aSMatthew G. Knepley PetscFunctionReturn(0); 1535f9d4088aSMatthew G. Knepley } 1536f9d4088aSMatthew G. Knepley 1537f9d4088aSMatthew G. Knepley PetscErrorCode DMGetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace)) 1538f9d4088aSMatthew G. Knepley { 1539f9d4088aSMatthew G. Knepley PetscFunctionBegin; 1540f9d4088aSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 1541f9d4088aSMatthew G. Knepley PetscValidPointer(nullsp, 3); 1542f9d4088aSMatthew G. Knepley if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field); 1543f9d4088aSMatthew G. Knepley *nullsp = dm->nearnullspaceConstructors[field]; 1544f9d4088aSMatthew G. Knepley PetscFunctionReturn(0); 1545f9d4088aSMatthew G. Knepley } 1546f9d4088aSMatthew G. Knepley 15474f3b5142SJed Brown /*@C 15484d343eeaSMatthew G Knepley DMCreateFieldIS - Creates a set of IS objects with the global indices of dofs for each field 15494d343eeaSMatthew G Knepley 15504d343eeaSMatthew G Knepley Not collective 15514d343eeaSMatthew G Knepley 15524d343eeaSMatthew G Knepley Input Parameter: 15534d343eeaSMatthew G Knepley . dm - the DM object 15544d343eeaSMatthew G Knepley 15554d343eeaSMatthew G Knepley Output Parameters: 15560298fd71SBarry Smith + numFields - The number of fields (or NULL if not requested) 15570298fd71SBarry Smith . fieldNames - The name for each field (or NULL if not requested) 15580298fd71SBarry Smith - fields - The global indices for each field (or NULL if not requested) 15594d343eeaSMatthew G Knepley 15604d343eeaSMatthew G Knepley Level: intermediate 15614d343eeaSMatthew G Knepley 156221c9b008SJed Brown Notes: 156321c9b008SJed Brown The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with 156421c9b008SJed Brown PetscFree(), every entry of fields should be destroyed with ISDestroy(), and both arrays should be freed with 156521c9b008SJed Brown PetscFree(). 156621c9b008SJed Brown 15674d343eeaSMatthew G Knepley .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix() 15684d343eeaSMatthew G Knepley @*/ 156937d0c07bSMatthew G Knepley PetscErrorCode DMCreateFieldIS(DM dm, PetscInt *numFields, char ***fieldNames, IS **fields) 15704d343eeaSMatthew G Knepley { 157137d0c07bSMatthew G Knepley PetscSection section, sectionGlobal; 15724d343eeaSMatthew G Knepley PetscErrorCode ierr; 15734d343eeaSMatthew G Knepley 15744d343eeaSMatthew G Knepley PetscFunctionBegin; 15754d343eeaSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 157669ca1f37SDmitry Karpeev if (numFields) { 1577534a8f05SLisandro Dalcin PetscValidIntPointer(numFields,2); 157869ca1f37SDmitry Karpeev *numFields = 0; 157969ca1f37SDmitry Karpeev } 158037d0c07bSMatthew G Knepley if (fieldNames) { 158137d0c07bSMatthew G Knepley PetscValidPointer(fieldNames,3); 15820298fd71SBarry Smith *fieldNames = NULL; 158369ca1f37SDmitry Karpeev } 158469ca1f37SDmitry Karpeev if (fields) { 158569ca1f37SDmitry Karpeev PetscValidPointer(fields,4); 15860298fd71SBarry Smith *fields = NULL; 158769ca1f37SDmitry Karpeev } 158892fd8e1eSJed Brown ierr = DMGetLocalSection(dm, §ion);CHKERRQ(ierr); 158937d0c07bSMatthew G Knepley if (section) { 15903a544194SStefano Zampini PetscInt *fieldSizes, *fieldNc, **fieldIndices; 159137d0c07bSMatthew G Knepley PetscInt nF, f, pStart, pEnd, p; 159237d0c07bSMatthew G Knepley 1593e87a4003SBarry Smith ierr = DMGetGlobalSection(dm, §ionGlobal);CHKERRQ(ierr); 159437d0c07bSMatthew G Knepley ierr = PetscSectionGetNumFields(section, &nF);CHKERRQ(ierr); 15953a544194SStefano Zampini ierr = PetscMalloc3(nF,&fieldSizes,nF,&fieldNc,nF,&fieldIndices);CHKERRQ(ierr); 159637d0c07bSMatthew G Knepley ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr); 159737d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 159837d0c07bSMatthew G Knepley fieldSizes[f] = 0; 15993a544194SStefano Zampini ierr = PetscSectionGetFieldComponents(section, f, &fieldNc[f]);CHKERRQ(ierr); 160037d0c07bSMatthew G Knepley } 160137d0c07bSMatthew G Knepley for (p = pStart; p < pEnd; ++p) { 160237d0c07bSMatthew G Knepley PetscInt gdof; 160337d0c07bSMatthew G Knepley 160437d0c07bSMatthew G Knepley ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr); 160537d0c07bSMatthew G Knepley if (gdof > 0) { 160637d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 16073a544194SStefano Zampini PetscInt fdof, fcdof, fpdof; 160837d0c07bSMatthew G Knepley 160937d0c07bSMatthew G Knepley ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr); 161037d0c07bSMatthew G Knepley ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr); 16113a544194SStefano Zampini fpdof = fdof-fcdof; 16123a544194SStefano Zampini if (fpdof && fpdof != fieldNc[f]) { 16133a544194SStefano Zampini /* Layout does not admit a pointwise block size */ 16143a544194SStefano Zampini fieldNc[f] = 1; 16153a544194SStefano Zampini } 16163a544194SStefano Zampini fieldSizes[f] += fpdof; 161737d0c07bSMatthew G Knepley } 161837d0c07bSMatthew G Knepley } 161937d0c07bSMatthew G Knepley } 162037d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 1621785e854fSJed Brown ierr = PetscMalloc1(fieldSizes[f], &fieldIndices[f]);CHKERRQ(ierr); 162237d0c07bSMatthew G Knepley fieldSizes[f] = 0; 162337d0c07bSMatthew G Knepley } 162437d0c07bSMatthew G Knepley for (p = pStart; p < pEnd; ++p) { 162537d0c07bSMatthew G Knepley PetscInt gdof, goff; 162637d0c07bSMatthew G Knepley 162737d0c07bSMatthew G Knepley ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr); 162837d0c07bSMatthew G Knepley if (gdof > 0) { 162937d0c07bSMatthew G Knepley ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr); 163037d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 163137d0c07bSMatthew G Knepley PetscInt fdof, fcdof, fc; 163237d0c07bSMatthew G Knepley 163337d0c07bSMatthew G Knepley ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr); 163437d0c07bSMatthew G Knepley ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr); 163537d0c07bSMatthew G Knepley for (fc = 0; fc < fdof-fcdof; ++fc, ++fieldSizes[f]) { 163637d0c07bSMatthew G Knepley fieldIndices[f][fieldSizes[f]] = goff++; 163737d0c07bSMatthew G Knepley } 163837d0c07bSMatthew G Knepley } 163937d0c07bSMatthew G Knepley } 164037d0c07bSMatthew G Knepley } 16418865f1eaSKarl Rupp if (numFields) *numFields = nF; 164237d0c07bSMatthew G Knepley if (fieldNames) { 1643785e854fSJed Brown ierr = PetscMalloc1(nF, fieldNames);CHKERRQ(ierr); 164437d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 164537d0c07bSMatthew G Knepley const char *fieldName; 164637d0c07bSMatthew G Knepley 164737d0c07bSMatthew G Knepley ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr); 164837d0c07bSMatthew G Knepley ierr = PetscStrallocpy(fieldName, (char**) &(*fieldNames)[f]);CHKERRQ(ierr); 164937d0c07bSMatthew G Knepley } 165037d0c07bSMatthew G Knepley } 165137d0c07bSMatthew G Knepley if (fields) { 1652785e854fSJed Brown ierr = PetscMalloc1(nF, fields);CHKERRQ(ierr); 165337d0c07bSMatthew G Knepley for (f = 0; f < nF; ++f) { 16543a544194SStefano Zampini PetscInt bs, in[2], out[2]; 16553a544194SStefano Zampini 165682f516ccSBarry Smith ierr = ISCreateGeneral(PetscObjectComm((PetscObject)dm), fieldSizes[f], fieldIndices[f], PETSC_OWN_POINTER, &(*fields)[f]);CHKERRQ(ierr); 16573a544194SStefano Zampini in[0] = -fieldNc[f]; 16583a544194SStefano Zampini in[1] = fieldNc[f]; 16593a544194SStefano Zampini ierr = MPIU_Allreduce(in, out, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 16603a544194SStefano Zampini bs = (-out[0] == out[1]) ? out[1] : 1; 16613a544194SStefano Zampini ierr = ISSetBlockSize((*fields)[f], bs);CHKERRQ(ierr); 166237d0c07bSMatthew G Knepley } 166337d0c07bSMatthew G Knepley } 16643a544194SStefano Zampini ierr = PetscFree3(fieldSizes,fieldNc,fieldIndices);CHKERRQ(ierr); 16658865f1eaSKarl Rupp } else if (dm->ops->createfieldis) { 16668865f1eaSKarl Rupp ierr = (*dm->ops->createfieldis)(dm, numFields, fieldNames, fields);CHKERRQ(ierr); 166769ca1f37SDmitry Karpeev } 16684d343eeaSMatthew G Knepley PetscFunctionReturn(0); 16694d343eeaSMatthew G Knepley } 16704d343eeaSMatthew G Knepley 167116621825SDmitry Karpeev 167216621825SDmitry Karpeev /*@C 167316621825SDmitry Karpeev DMCreateFieldDecomposition - Returns a list of IS objects defining a decomposition of a problem into subproblems 167416621825SDmitry Karpeev corresponding to different fields: each IS contains the global indices of the dofs of the 167516621825SDmitry Karpeev corresponding field. The optional list of DMs define the DM for each subproblem. 1676e7c4fc90SDmitry Karpeev Generalizes DMCreateFieldIS(). 1677e7c4fc90SDmitry Karpeev 1678e7c4fc90SDmitry Karpeev Not collective 1679e7c4fc90SDmitry Karpeev 1680e7c4fc90SDmitry Karpeev Input Parameter: 1681e7c4fc90SDmitry Karpeev . dm - the DM object 1682e7c4fc90SDmitry Karpeev 1683e7c4fc90SDmitry Karpeev Output Parameters: 16840298fd71SBarry Smith + len - The number of subproblems in the field decomposition (or NULL if not requested) 16850298fd71SBarry Smith . namelist - The name for each field (or NULL if not requested) 16860298fd71SBarry Smith . islist - The global indices for each field (or NULL if not requested) 16870298fd71SBarry Smith - dmlist - The DMs for each field subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined) 1688e7c4fc90SDmitry Karpeev 1689e7c4fc90SDmitry Karpeev Level: intermediate 1690e7c4fc90SDmitry Karpeev 1691e7c4fc90SDmitry Karpeev Notes: 1692e7c4fc90SDmitry Karpeev The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with 1693e7c4fc90SDmitry Karpeev PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(), 1694e7c4fc90SDmitry Karpeev and all of the arrays should be freed with PetscFree(). 1695e7c4fc90SDmitry Karpeev 1696e7c4fc90SDmitry Karpeev .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS() 1697e7c4fc90SDmitry Karpeev @*/ 169816621825SDmitry Karpeev PetscErrorCode DMCreateFieldDecomposition(DM dm, PetscInt *len, char ***namelist, IS **islist, DM **dmlist) 1699e7c4fc90SDmitry Karpeev { 1700e7c4fc90SDmitry Karpeev PetscErrorCode ierr; 1701e7c4fc90SDmitry Karpeev 1702e7c4fc90SDmitry Karpeev PetscFunctionBegin; 1703e7c4fc90SDmitry Karpeev PetscValidHeaderSpecific(dm,DM_CLASSID,1); 17048865f1eaSKarl Rupp if (len) { 1705534a8f05SLisandro Dalcin PetscValidIntPointer(len,2); 17068865f1eaSKarl Rupp *len = 0; 17078865f1eaSKarl Rupp } 17088865f1eaSKarl Rupp if (namelist) { 17098865f1eaSKarl Rupp PetscValidPointer(namelist,3); 17108865f1eaSKarl Rupp *namelist = 0; 17118865f1eaSKarl Rupp } 17128865f1eaSKarl Rupp if (islist) { 17138865f1eaSKarl Rupp PetscValidPointer(islist,4); 17148865f1eaSKarl Rupp *islist = 0; 17158865f1eaSKarl Rupp } 17168865f1eaSKarl Rupp if (dmlist) { 17178865f1eaSKarl Rupp PetscValidPointer(dmlist,5); 17188865f1eaSKarl Rupp *dmlist = 0; 17198865f1eaSKarl Rupp } 1720f3f0edfdSDmitry Karpeev /* 1721f3f0edfdSDmitry Karpeev Is it a good idea to apply the following check across all impls? 1722f3f0edfdSDmitry Karpeev Perhaps some impls can have a well-defined decomposition before DMSetUp? 1723f3f0edfdSDmitry Karpeev This, however, follows the general principle that accessors are not well-behaved until the object is set up. 1724f3f0edfdSDmitry Karpeev */ 1725ce94432eSBarry Smith if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp"); 172616621825SDmitry Karpeev if (!dm->ops->createfielddecomposition) { 1727435a35e8SMatthew G Knepley PetscSection section; 1728435a35e8SMatthew G Knepley PetscInt numFields, f; 1729435a35e8SMatthew G Knepley 173092fd8e1eSJed Brown ierr = DMGetLocalSection(dm, §ion);CHKERRQ(ierr); 1731435a35e8SMatthew G Knepley if (section) {ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);} 1732435a35e8SMatthew G Knepley if (section && numFields && dm->ops->createsubdm) { 1733f25d98f1SMatthew G. Knepley if (len) *len = numFields; 173403dc3394SMatthew G. Knepley if (namelist) {ierr = PetscMalloc1(numFields,namelist);CHKERRQ(ierr);} 173503dc3394SMatthew G. Knepley if (islist) {ierr = PetscMalloc1(numFields,islist);CHKERRQ(ierr);} 173603dc3394SMatthew G. Knepley if (dmlist) {ierr = PetscMalloc1(numFields,dmlist);CHKERRQ(ierr);} 1737435a35e8SMatthew G Knepley for (f = 0; f < numFields; ++f) { 1738435a35e8SMatthew G Knepley const char *fieldName; 1739435a35e8SMatthew G Knepley 174003dc3394SMatthew G. Knepley ierr = DMCreateSubDM(dm, 1, &f, islist ? &(*islist)[f] : NULL, dmlist ? &(*dmlist)[f] : NULL);CHKERRQ(ierr); 174103dc3394SMatthew G. Knepley if (namelist) { 1742435a35e8SMatthew G Knepley ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr); 1743435a35e8SMatthew G Knepley ierr = PetscStrallocpy(fieldName, (char**) &(*namelist)[f]);CHKERRQ(ierr); 1744435a35e8SMatthew G Knepley } 174503dc3394SMatthew G. Knepley } 1746435a35e8SMatthew G Knepley } else { 174769ca1f37SDmitry Karpeev ierr = DMCreateFieldIS(dm, len, namelist, islist);CHKERRQ(ierr); 1748e7c4fc90SDmitry Karpeev /* By default there are no DMs associated with subproblems. */ 17490298fd71SBarry Smith if (dmlist) *dmlist = NULL; 1750e7c4fc90SDmitry Karpeev } 17518865f1eaSKarl Rupp } else { 175216621825SDmitry Karpeev ierr = (*dm->ops->createfielddecomposition)(dm,len,namelist,islist,dmlist);CHKERRQ(ierr); 175316621825SDmitry Karpeev } 175416621825SDmitry Karpeev PetscFunctionReturn(0); 175516621825SDmitry Karpeev } 175616621825SDmitry Karpeev 1757564cec59SMatthew G. Knepley /*@ 1758435a35e8SMatthew G Knepley DMCreateSubDM - Returns an IS and DM encapsulating a subproblem defined by the fields passed in. 1759435a35e8SMatthew G Knepley The fields are defined by DMCreateFieldIS(). 1760435a35e8SMatthew G Knepley 1761435a35e8SMatthew G Knepley Not collective 1762435a35e8SMatthew G Knepley 1763435a35e8SMatthew G Knepley Input Parameters: 17642adcc780SMatthew G. Knepley + dm - The DM object 17652adcc780SMatthew G. Knepley . numFields - The number of fields in this subproblem 17662adcc780SMatthew G. Knepley - fields - The field numbers of the selected fields 1767435a35e8SMatthew G Knepley 1768435a35e8SMatthew G Knepley Output Parameters: 17692adcc780SMatthew G. Knepley + is - The global indices for the subproblem 17702adcc780SMatthew G. Knepley - subdm - The DM for the subproblem 1771435a35e8SMatthew G Knepley 17725d3b26e6SMatthew G. Knepley Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed 17735d3b26e6SMatthew G. Knepley 1774435a35e8SMatthew G Knepley Level: intermediate 1775435a35e8SMatthew G Knepley 17765d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS() 1777435a35e8SMatthew G Knepley @*/ 177837bc7515SMatthew G. Knepley PetscErrorCode DMCreateSubDM(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm) 1779435a35e8SMatthew G Knepley { 1780435a35e8SMatthew G Knepley PetscErrorCode ierr; 1781435a35e8SMatthew G Knepley 1782435a35e8SMatthew G Knepley PetscFunctionBegin; 1783435a35e8SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1784435a35e8SMatthew G Knepley PetscValidPointer(fields,3); 17858865f1eaSKarl Rupp if (is) PetscValidPointer(is,4); 17868865f1eaSKarl Rupp if (subdm) PetscValidPointer(subdm,5); 1787b9d85ea2SLisandro Dalcin if (!dm->ops->createsubdm) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateSubDM",((PetscObject)dm)->type_name); 1788435a35e8SMatthew G Knepley ierr = (*dm->ops->createsubdm)(dm, numFields, fields, is, subdm);CHKERRQ(ierr); 1789435a35e8SMatthew G Knepley PetscFunctionReturn(0); 1790435a35e8SMatthew G Knepley } 1791435a35e8SMatthew G Knepley 17922adcc780SMatthew G. Knepley /*@C 17932adcc780SMatthew G. Knepley DMCreateSuperDM - Returns an arrays of ISes and DM encapsulating a superproblem defined by the DMs passed in. 17942adcc780SMatthew G. Knepley 17952adcc780SMatthew G. Knepley Not collective 17962adcc780SMatthew G. Knepley 17972adcc780SMatthew G. Knepley Input Parameter: 17982adcc780SMatthew G. Knepley + dms - The DM objects 17992adcc780SMatthew G. Knepley - len - The number of DMs 18002adcc780SMatthew G. Knepley 18012adcc780SMatthew G. Knepley Output Parameters: 1802a42bd24dSMatthew G. Knepley + is - The global indices for the subproblem, or NULL 18032adcc780SMatthew G. Knepley - superdm - The DM for the superproblem 18042adcc780SMatthew G. Knepley 18055d3b26e6SMatthew G. Knepley Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed 18065d3b26e6SMatthew G. Knepley 18072adcc780SMatthew G. Knepley Level: intermediate 18082adcc780SMatthew G. Knepley 18095d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS() 18102adcc780SMatthew G. Knepley @*/ 18112adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM(DM dms[], PetscInt len, IS **is, DM *superdm) 18122adcc780SMatthew G. Knepley { 18132adcc780SMatthew G. Knepley PetscInt i; 18142adcc780SMatthew G. Knepley PetscErrorCode ierr; 18152adcc780SMatthew G. Knepley 18162adcc780SMatthew G. Knepley PetscFunctionBegin; 18172adcc780SMatthew G. Knepley PetscValidPointer(dms,1); 18182adcc780SMatthew G. Knepley for (i = 0; i < len; ++i) {PetscValidHeaderSpecific(dms[i],DM_CLASSID,1);} 18192adcc780SMatthew G. Knepley if (is) PetscValidPointer(is,3); 1820a42bd24dSMatthew G. Knepley PetscValidPointer(superdm,4); 18212adcc780SMatthew G. Knepley if (len < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Number of DMs must be nonnegative: %D", len); 18222adcc780SMatthew G. Knepley if (len) { 1823b9d85ea2SLisandro Dalcin DM dm = dms[0]; 1824b9d85ea2SLisandro Dalcin if (!dm->ops->createsuperdm) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateSuperDM",((PetscObject)dm)->type_name); 1825b9d85ea2SLisandro Dalcin ierr = (*dm->ops->createsuperdm)(dms, len, is, superdm);CHKERRQ(ierr); 18262adcc780SMatthew G. Knepley } 18272adcc780SMatthew G. Knepley PetscFunctionReturn(0); 18282adcc780SMatthew G. Knepley } 18292adcc780SMatthew G. Knepley 183016621825SDmitry Karpeev 183116621825SDmitry Karpeev /*@C 18328d4ac253SDmitry Karpeev DMCreateDomainDecomposition - Returns lists of IS objects defining a decomposition of a problem into subproblems 18338d4ac253SDmitry Karpeev corresponding to restrictions to pairs nested subdomains: each IS contains the global 18348d4ac253SDmitry Karpeev indices of the dofs of the corresponding subdomains. The inner subdomains conceptually 18358d4ac253SDmitry Karpeev define a nonoverlapping covering, while outer subdomains can overlap. 18368d4ac253SDmitry Karpeev The optional list of DMs define the DM for each subproblem. 183716621825SDmitry Karpeev 183816621825SDmitry Karpeev Not collective 183916621825SDmitry Karpeev 184016621825SDmitry Karpeev Input Parameter: 184116621825SDmitry Karpeev . dm - the DM object 184216621825SDmitry Karpeev 184316621825SDmitry Karpeev Output Parameters: 18440298fd71SBarry Smith + len - The number of subproblems in the domain decomposition (or NULL if not requested) 18450298fd71SBarry Smith . namelist - The name for each subdomain (or NULL if not requested) 18460298fd71SBarry Smith . innerislist - The global indices for each inner subdomain (or NULL, if not requested) 18470298fd71SBarry Smith . outerislist - The global indices for each outer subdomain (or NULL, if not requested) 18480298fd71SBarry Smith - dmlist - The DMs for each subdomain subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined) 184916621825SDmitry Karpeev 185016621825SDmitry Karpeev Level: intermediate 185116621825SDmitry Karpeev 185216621825SDmitry Karpeev Notes: 185316621825SDmitry Karpeev The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with 185416621825SDmitry Karpeev PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(), 185516621825SDmitry Karpeev and all of the arrays should be freed with PetscFree(). 185616621825SDmitry Karpeev 1857245d9833Sprj- .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldDecomposition() 185816621825SDmitry Karpeev @*/ 18598d4ac253SDmitry Karpeev PetscErrorCode DMCreateDomainDecomposition(DM dm, PetscInt *len, char ***namelist, IS **innerislist, IS **outerislist, DM **dmlist) 186016621825SDmitry Karpeev { 186116621825SDmitry Karpeev PetscErrorCode ierr; 1862be081cd6SPeter Brune DMSubDomainHookLink link; 1863be081cd6SPeter Brune PetscInt i,l; 186416621825SDmitry Karpeev 186516621825SDmitry Karpeev PetscFunctionBegin; 186616621825SDmitry Karpeev PetscValidHeaderSpecific(dm,DM_CLASSID,1); 186714a18fd3SPeter Brune if (len) {PetscValidPointer(len,2); *len = 0;} 18680298fd71SBarry Smith if (namelist) {PetscValidPointer(namelist,3); *namelist = NULL;} 18690298fd71SBarry Smith if (innerislist) {PetscValidPointer(innerislist,4); *innerislist = NULL;} 18700298fd71SBarry Smith if (outerislist) {PetscValidPointer(outerislist,5); *outerislist = NULL;} 18710298fd71SBarry Smith if (dmlist) {PetscValidPointer(dmlist,6); *dmlist = NULL;} 1872f3f0edfdSDmitry Karpeev /* 1873f3f0edfdSDmitry Karpeev Is it a good idea to apply the following check across all impls? 1874f3f0edfdSDmitry Karpeev Perhaps some impls can have a well-defined decomposition before DMSetUp? 1875f3f0edfdSDmitry Karpeev This, however, follows the general principle that accessors are not well-behaved until the object is set up. 1876f3f0edfdSDmitry Karpeev */ 1877ce94432eSBarry Smith if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp"); 187816621825SDmitry Karpeev if (dm->ops->createdomaindecomposition) { 1879be081cd6SPeter Brune ierr = (*dm->ops->createdomaindecomposition)(dm,&l,namelist,innerislist,outerislist,dmlist);CHKERRQ(ierr); 188014a18fd3SPeter Brune /* copy subdomain hooks and context over to the subdomain DMs */ 1881f891f5b9SPatrick Sanan if (dmlist && *dmlist) { 1882be081cd6SPeter Brune for (i = 0; i < l; i++) { 1883be081cd6SPeter Brune for (link=dm->subdomainhook; link; link=link->next) { 1884be081cd6SPeter Brune if (link->ddhook) {ierr = (*link->ddhook)(dm,(*dmlist)[i],link->ctx);CHKERRQ(ierr);} 1885be081cd6SPeter Brune } 1886648262bbSPatrick Sanan if (dm->ctx) (*dmlist)[i]->ctx = dm->ctx; 1887e7c4fc90SDmitry Karpeev } 188814a18fd3SPeter Brune } 188914a18fd3SPeter Brune if (len) *len = l; 189014a18fd3SPeter Brune } 1891e30e807fSPeter Brune PetscFunctionReturn(0); 1892e30e807fSPeter Brune } 1893e30e807fSPeter Brune 1894e30e807fSPeter Brune 1895e30e807fSPeter Brune /*@C 1896e30e807fSPeter Brune DMCreateDomainDecompositionScatters - Returns scatters to the subdomain vectors from the global vector 1897e30e807fSPeter Brune 1898e30e807fSPeter Brune Not collective 1899e30e807fSPeter Brune 1900e30e807fSPeter Brune Input Parameters: 1901e30e807fSPeter Brune + dm - the DM object 1902e30e807fSPeter Brune . n - the number of subdomain scatters 1903e30e807fSPeter Brune - subdms - the local subdomains 1904e30e807fSPeter Brune 1905e30e807fSPeter Brune Output Parameters: 1906e30e807fSPeter Brune + n - the number of scatters returned 1907e30e807fSPeter Brune . iscat - scatter from global vector to nonoverlapping global vector entries on subdomain 1908e30e807fSPeter Brune . oscat - scatter from global vector to overlapping global vector entries on subdomain 1909e30e807fSPeter Brune - gscat - scatter from global vector to local vector on subdomain (fills in ghosts) 1910e30e807fSPeter Brune 191195452b02SPatrick Sanan Notes: 191295452b02SPatrick Sanan This is an alternative to the iis and ois arguments in DMCreateDomainDecomposition that allow for the solution 1913e30e807fSPeter Brune of general nonlinear problems with overlapping subdomain methods. While merely having index sets that enable subsets 1914e30e807fSPeter Brune of the residual equations to be created is fine for linear problems, nonlinear problems require local assembly of 1915e30e807fSPeter Brune solution and residual data. 1916e30e807fSPeter Brune 1917e30e807fSPeter Brune Level: developer 1918e30e807fSPeter Brune 1919e30e807fSPeter Brune .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS() 1920e30e807fSPeter Brune @*/ 1921e30e807fSPeter Brune PetscErrorCode DMCreateDomainDecompositionScatters(DM dm,PetscInt n,DM *subdms,VecScatter **iscat,VecScatter **oscat,VecScatter **gscat) 1922e30e807fSPeter Brune { 1923e30e807fSPeter Brune PetscErrorCode ierr; 1924e30e807fSPeter Brune 1925e30e807fSPeter Brune PetscFunctionBegin; 1926e30e807fSPeter Brune PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1927e30e807fSPeter Brune PetscValidPointer(subdms,3); 1928b9d85ea2SLisandro Dalcin if (!dm->ops->createddscatters) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCreateDomainDecompositionScatters",((PetscObject)dm)->type_name); 1929e30e807fSPeter Brune ierr = (*dm->ops->createddscatters)(dm,n,subdms,iscat,oscat,gscat);CHKERRQ(ierr); 1930e7c4fc90SDmitry Karpeev PetscFunctionReturn(0); 1931e7c4fc90SDmitry Karpeev } 1932e7c4fc90SDmitry Karpeev 193347c6ae99SBarry Smith /*@ 193447c6ae99SBarry Smith DMRefine - Refines a DM object 193547c6ae99SBarry Smith 1936d083f849SBarry Smith Collective on dm 193747c6ae99SBarry Smith 193847c6ae99SBarry Smith Input Parameter: 193947c6ae99SBarry Smith + dm - the DM object 194091d95f02SJed Brown - comm - the communicator to contain the new DM object (or MPI_COMM_NULL) 194147c6ae99SBarry Smith 194247c6ae99SBarry Smith Output Parameter: 19430298fd71SBarry Smith . dmf - the refined DM, or NULL 1944ae0a1c52SMatthew G Knepley 19450298fd71SBarry Smith Note: If no refinement was done, the return value is NULL 194647c6ae99SBarry Smith 194747c6ae99SBarry Smith Level: developer 194847c6ae99SBarry Smith 1949e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 195047c6ae99SBarry Smith @*/ 19517087cfbeSBarry Smith PetscErrorCode DMRefine(DM dm,MPI_Comm comm,DM *dmf) 195247c6ae99SBarry Smith { 195347c6ae99SBarry Smith PetscErrorCode ierr; 1954c833c3b5SJed Brown DMRefineHookLink link; 195547c6ae99SBarry Smith 195647c6ae99SBarry Smith PetscFunctionBegin; 1957732e2eb9SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 1958b9d85ea2SLisandro Dalcin if (!dm->ops->refine) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMRefine",((PetscObject)dm)->type_name); 19591ac00216SMatthew G. Knepley ierr = PetscLogEventBegin(DM_Refine,dm,0,0,0);CHKERRQ(ierr); 196047c6ae99SBarry Smith ierr = (*dm->ops->refine)(dm,comm,dmf);CHKERRQ(ierr); 19614057135bSMatthew G Knepley if (*dmf) { 196243842a1eSJed Brown (*dmf)->ops->creatematrix = dm->ops->creatematrix; 19638865f1eaSKarl Rupp 19648cd211a4SJed Brown ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmf);CHKERRQ(ierr); 19658865f1eaSKarl Rupp 1966644e2e5bSBarry Smith (*dmf)->ctx = dm->ctx; 19670598a293SJed Brown (*dmf)->leveldown = dm->leveldown; 1968656b349aSBarry Smith (*dmf)->levelup = dm->levelup + 1; 19698865f1eaSKarl Rupp 1970e4b4b23bSJed Brown ierr = DMSetMatType(*dmf,dm->mattype);CHKERRQ(ierr); 1971c833c3b5SJed Brown for (link=dm->refinehook; link; link=link->next) { 19728865f1eaSKarl Rupp if (link->refinehook) { 19738865f1eaSKarl Rupp ierr = (*link->refinehook)(dm,*dmf,link->ctx);CHKERRQ(ierr); 19748865f1eaSKarl Rupp } 1975c833c3b5SJed Brown } 1976c833c3b5SJed Brown } 19771ac00216SMatthew G. Knepley ierr = PetscLogEventEnd(DM_Refine,dm,0,0,0);CHKERRQ(ierr); 1978c833c3b5SJed Brown PetscFunctionReturn(0); 1979c833c3b5SJed Brown } 1980c833c3b5SJed Brown 1981bb9467b5SJed Brown /*@C 1982c833c3b5SJed Brown DMRefineHookAdd - adds a callback to be run when interpolating a nonlinear problem to a finer grid 1983c833c3b5SJed Brown 1984c833c3b5SJed Brown Logically Collective 1985c833c3b5SJed Brown 1986c833c3b5SJed Brown Input Arguments: 1987c833c3b5SJed Brown + coarse - nonlinear solver context on which to run a hook when restricting to a coarser level 1988c833c3b5SJed Brown . refinehook - function to run when setting up a coarser level 1989c833c3b5SJed Brown . interphook - function to run to update data on finer levels (once per SNESSolve()) 19900298fd71SBarry Smith - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 1991c833c3b5SJed Brown 1992c833c3b5SJed Brown Calling sequence of refinehook: 1993c833c3b5SJed Brown $ refinehook(DM coarse,DM fine,void *ctx); 1994c833c3b5SJed Brown 1995c833c3b5SJed Brown + coarse - coarse level DM 1996c833c3b5SJed Brown . fine - fine level DM to interpolate problem to 1997c833c3b5SJed Brown - ctx - optional user-defined function context 1998c833c3b5SJed Brown 1999c833c3b5SJed Brown Calling sequence for interphook: 2000c833c3b5SJed Brown $ interphook(DM coarse,Mat interp,DM fine,void *ctx) 2001c833c3b5SJed Brown 2002c833c3b5SJed Brown + coarse - coarse level DM 2003c833c3b5SJed Brown . interp - matrix interpolating a coarse-level solution to the finer grid 2004c833c3b5SJed Brown . fine - fine level DM to update 2005c833c3b5SJed Brown - ctx - optional user-defined function context 2006c833c3b5SJed Brown 2007c833c3b5SJed Brown Level: advanced 2008c833c3b5SJed Brown 2009c833c3b5SJed Brown Notes: 2010c833c3b5SJed Brown This function is only needed if auxiliary data needs to be passed to fine grids while grid sequencing 2011c833c3b5SJed Brown 2012c833c3b5SJed Brown If this function is called multiple times, the hooks will be run in the order they are added. 2013c833c3b5SJed Brown 2014bb9467b5SJed Brown This function is currently not available from Fortran. 2015bb9467b5SJed Brown 2016c833c3b5SJed Brown .seealso: DMCoarsenHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 2017c833c3b5SJed Brown @*/ 2018c833c3b5SJed Brown PetscErrorCode DMRefineHookAdd(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx) 2019c833c3b5SJed Brown { 2020c833c3b5SJed Brown PetscErrorCode ierr; 2021c833c3b5SJed Brown DMRefineHookLink link,*p; 2022c833c3b5SJed Brown 2023c833c3b5SJed Brown PetscFunctionBegin; 2024c833c3b5SJed Brown PetscValidHeaderSpecific(coarse,DM_CLASSID,1); 20253d8e3701SJed Brown for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */ 20263d8e3701SJed Brown if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) PetscFunctionReturn(0); 20273d8e3701SJed Brown } 202895dccacaSBarry Smith ierr = PetscNew(&link);CHKERRQ(ierr); 2029c833c3b5SJed Brown link->refinehook = refinehook; 2030c833c3b5SJed Brown link->interphook = interphook; 2031c833c3b5SJed Brown link->ctx = ctx; 20320298fd71SBarry Smith link->next = NULL; 2033c833c3b5SJed Brown *p = link; 2034c833c3b5SJed Brown PetscFunctionReturn(0); 2035c833c3b5SJed Brown } 2036c833c3b5SJed Brown 20373d8e3701SJed Brown /*@C 20383d8e3701SJed Brown DMRefineHookRemove - remove a callback from the list of hooks to be run when interpolating a nonlinear problem to a finer grid 20393d8e3701SJed Brown 20403d8e3701SJed Brown Logically Collective 20413d8e3701SJed Brown 20423d8e3701SJed Brown Input Arguments: 20433d8e3701SJed Brown + coarse - nonlinear solver context on which to run a hook when restricting to a coarser level 20443d8e3701SJed Brown . refinehook - function to run when setting up a coarser level 20453d8e3701SJed Brown . interphook - function to run to update data on finer levels (once per SNESSolve()) 20463d8e3701SJed Brown - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 20473d8e3701SJed Brown 20483d8e3701SJed Brown Level: advanced 20493d8e3701SJed Brown 20503d8e3701SJed Brown Notes: 20513d8e3701SJed Brown This function does nothing if the hook is not in the list. 20523d8e3701SJed Brown 20533d8e3701SJed Brown This function is currently not available from Fortran. 20543d8e3701SJed Brown 20553d8e3701SJed Brown .seealso: DMCoarsenHookRemove(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 20563d8e3701SJed Brown @*/ 20573d8e3701SJed Brown PetscErrorCode DMRefineHookRemove(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx) 20583d8e3701SJed Brown { 20593d8e3701SJed Brown PetscErrorCode ierr; 20603d8e3701SJed Brown DMRefineHookLink link,*p; 20613d8e3701SJed Brown 20623d8e3701SJed Brown PetscFunctionBegin; 20633d8e3701SJed Brown PetscValidHeaderSpecific(coarse,DM_CLASSID,1); 20643d8e3701SJed Brown for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Search the list of current hooks */ 20653d8e3701SJed Brown if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) { 20663d8e3701SJed Brown link = *p; 20673d8e3701SJed Brown *p = link->next; 20683d8e3701SJed Brown ierr = PetscFree(link);CHKERRQ(ierr); 20693d8e3701SJed Brown break; 20703d8e3701SJed Brown } 20713d8e3701SJed Brown } 20723d8e3701SJed Brown PetscFunctionReturn(0); 20733d8e3701SJed Brown } 20743d8e3701SJed Brown 2075c833c3b5SJed Brown /*@ 2076c833c3b5SJed Brown DMInterpolate - interpolates user-defined problem data to a finer DM by running hooks registered by DMRefineHookAdd() 2077c833c3b5SJed Brown 2078c833c3b5SJed Brown Collective if any hooks are 2079c833c3b5SJed Brown 2080c833c3b5SJed Brown Input Arguments: 2081c833c3b5SJed Brown + coarse - coarser DM to use as a base 2082e91eccc2SStefano Zampini . interp - interpolation matrix, apply using MatInterpolate() 2083c833c3b5SJed Brown - fine - finer DM to update 2084c833c3b5SJed Brown 2085c833c3b5SJed Brown Level: developer 2086c833c3b5SJed Brown 2087c833c3b5SJed Brown .seealso: DMRefineHookAdd(), MatInterpolate() 2088c833c3b5SJed Brown @*/ 2089c833c3b5SJed Brown PetscErrorCode DMInterpolate(DM coarse,Mat interp,DM fine) 2090c833c3b5SJed Brown { 2091c833c3b5SJed Brown PetscErrorCode ierr; 2092c833c3b5SJed Brown DMRefineHookLink link; 2093c833c3b5SJed Brown 2094c833c3b5SJed Brown PetscFunctionBegin; 2095c833c3b5SJed Brown for (link=fine->refinehook; link; link=link->next) { 20968865f1eaSKarl Rupp if (link->interphook) { 20978865f1eaSKarl Rupp ierr = (*link->interphook)(coarse,interp,fine,link->ctx);CHKERRQ(ierr); 20988865f1eaSKarl Rupp } 20994057135bSMatthew G Knepley } 210047c6ae99SBarry Smith PetscFunctionReturn(0); 210147c6ae99SBarry Smith } 210247c6ae99SBarry Smith 2103eb3f98d2SBarry Smith /*@ 2104eb3f98d2SBarry Smith DMGetRefineLevel - Get's the number of refinements that have generated this DM. 2105eb3f98d2SBarry Smith 2106eb3f98d2SBarry Smith Not Collective 2107eb3f98d2SBarry Smith 2108eb3f98d2SBarry Smith Input Parameter: 2109eb3f98d2SBarry Smith . dm - the DM object 2110eb3f98d2SBarry Smith 2111eb3f98d2SBarry Smith Output Parameter: 2112eb3f98d2SBarry Smith . level - number of refinements 2113eb3f98d2SBarry Smith 2114eb3f98d2SBarry Smith Level: developer 2115eb3f98d2SBarry Smith 21166a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 2117eb3f98d2SBarry Smith 2118eb3f98d2SBarry Smith @*/ 2119eb3f98d2SBarry Smith PetscErrorCode DMGetRefineLevel(DM dm,PetscInt *level) 2120eb3f98d2SBarry Smith { 2121eb3f98d2SBarry Smith PetscFunctionBegin; 2122eb3f98d2SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2123eb3f98d2SBarry Smith *level = dm->levelup; 2124eb3f98d2SBarry Smith PetscFunctionReturn(0); 2125eb3f98d2SBarry Smith } 2126eb3f98d2SBarry Smith 2127fef3a512SBarry Smith /*@ 2128fef3a512SBarry Smith DMSetRefineLevel - Set's the number of refinements that have generated this DM. 2129fef3a512SBarry Smith 2130fef3a512SBarry Smith Not Collective 2131fef3a512SBarry Smith 2132fef3a512SBarry Smith Input Parameter: 2133fef3a512SBarry Smith + dm - the DM object 2134fef3a512SBarry Smith - level - number of refinements 2135fef3a512SBarry Smith 2136fef3a512SBarry Smith Level: advanced 2137fef3a512SBarry Smith 213895452b02SPatrick Sanan Notes: 213995452b02SPatrick Sanan This value is used by PCMG to determine how many multigrid levels to use 2140fef3a512SBarry Smith 2141fef3a512SBarry Smith .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 2142fef3a512SBarry Smith 2143fef3a512SBarry Smith @*/ 2144fef3a512SBarry Smith PetscErrorCode DMSetRefineLevel(DM dm,PetscInt level) 2145fef3a512SBarry Smith { 2146fef3a512SBarry Smith PetscFunctionBegin; 2147fef3a512SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2148fef3a512SBarry Smith dm->levelup = level; 2149fef3a512SBarry Smith PetscFunctionReturn(0); 2150fef3a512SBarry Smith } 2151fef3a512SBarry Smith 2152ca3d3a14SMatthew G. Knepley PetscErrorCode DMGetBasisTransformDM_Internal(DM dm, DM *tdm) 2153ca3d3a14SMatthew G. Knepley { 2154ca3d3a14SMatthew G. Knepley PetscFunctionBegin; 2155ca3d3a14SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2156ca3d3a14SMatthew G. Knepley PetscValidPointer(tdm, 2); 2157ca3d3a14SMatthew G. Knepley *tdm = dm->transformDM; 2158ca3d3a14SMatthew G. Knepley PetscFunctionReturn(0); 2159ca3d3a14SMatthew G. Knepley } 2160ca3d3a14SMatthew G. Knepley 2161ca3d3a14SMatthew G. Knepley PetscErrorCode DMGetBasisTransformVec_Internal(DM dm, Vec *tv) 2162ca3d3a14SMatthew G. Knepley { 2163ca3d3a14SMatthew G. Knepley PetscFunctionBegin; 2164ca3d3a14SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2165ca3d3a14SMatthew G. Knepley PetscValidPointer(tv, 2); 2166ca3d3a14SMatthew G. Knepley *tv = dm->transform; 2167ca3d3a14SMatthew G. Knepley PetscFunctionReturn(0); 2168ca3d3a14SMatthew G. Knepley } 2169ca3d3a14SMatthew G. Knepley 2170ca3d3a14SMatthew G. Knepley /*@ 2171c0f8e1fdSMatthew G. Knepley DMHasBasisTransform - Whether we employ a basis transformation from functions in global vectors to functions in local vectors 2172ca3d3a14SMatthew G. Knepley 2173ca3d3a14SMatthew G. Knepley Input Parameter: 2174ca3d3a14SMatthew G. Knepley . dm - The DM 2175ca3d3a14SMatthew G. Knepley 2176ca3d3a14SMatthew G. Knepley Output Parameter: 2177ca3d3a14SMatthew G. Knepley . flg - PETSC_TRUE if a basis transformation should be done 2178ca3d3a14SMatthew G. Knepley 2179ca3d3a14SMatthew G. Knepley Level: developer 2180ca3d3a14SMatthew G. Knepley 2181ca3d3a14SMatthew G. Knepley .seealso: DMPlexGlobalToLocalBasis(), DMPlexLocalToGlobalBasis()() 2182ca3d3a14SMatthew G. Knepley @*/ 2183ca3d3a14SMatthew G. Knepley PetscErrorCode DMHasBasisTransform(DM dm, PetscBool *flg) 2184ca3d3a14SMatthew G. Knepley { 2185ca3d3a14SMatthew G. Knepley Vec tv; 2186ca3d3a14SMatthew G. Knepley PetscErrorCode ierr; 2187ca3d3a14SMatthew G. Knepley 2188ca3d3a14SMatthew G. Knepley PetscFunctionBegin; 2189ca3d3a14SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2190534a8f05SLisandro Dalcin PetscValidBoolPointer(flg, 2); 2191ca3d3a14SMatthew G. Knepley ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr); 2192ca3d3a14SMatthew G. Knepley *flg = tv ? PETSC_TRUE : PETSC_FALSE; 2193ca3d3a14SMatthew G. Knepley PetscFunctionReturn(0); 2194ca3d3a14SMatthew G. Knepley } 2195ca3d3a14SMatthew G. Knepley 2196ca3d3a14SMatthew G. Knepley PetscErrorCode DMConstructBasisTransform_Internal(DM dm) 2197ca3d3a14SMatthew G. Knepley { 2198ca3d3a14SMatthew G. Knepley PetscSection s, ts; 2199ca3d3a14SMatthew G. Knepley PetscScalar *ta; 2200ca3d3a14SMatthew G. Knepley PetscInt cdim, pStart, pEnd, p, Nf, f, Nc, dof; 2201ca3d3a14SMatthew G. Knepley PetscErrorCode ierr; 2202ca3d3a14SMatthew G. Knepley 2203ca3d3a14SMatthew G. Knepley PetscFunctionBegin; 2204ca3d3a14SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 220592fd8e1eSJed Brown ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr); 2206ca3d3a14SMatthew G. Knepley ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr); 2207ca3d3a14SMatthew G. Knepley ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr); 2208ca3d3a14SMatthew G. Knepley ierr = DMClone(dm, &dm->transformDM);CHKERRQ(ierr); 220992fd8e1eSJed Brown ierr = DMGetLocalSection(dm->transformDM, &ts);CHKERRQ(ierr); 2210ca3d3a14SMatthew G. Knepley ierr = PetscSectionSetNumFields(ts, Nf);CHKERRQ(ierr); 2211ca3d3a14SMatthew G. Knepley ierr = PetscSectionSetChart(ts, pStart, pEnd);CHKERRQ(ierr); 2212ca3d3a14SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 2213ca3d3a14SMatthew G. Knepley ierr = PetscSectionGetFieldComponents(s, f, &Nc);CHKERRQ(ierr); 2214ca3d3a14SMatthew G. Knepley /* We could start to label fields by their transformation properties */ 2215ca3d3a14SMatthew G. Knepley if (Nc != cdim) continue; 2216ca3d3a14SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 2217ca3d3a14SMatthew G. Knepley ierr = PetscSectionGetFieldDof(s, p, f, &dof);CHKERRQ(ierr); 2218ca3d3a14SMatthew G. Knepley if (!dof) continue; 2219ca3d3a14SMatthew G. Knepley ierr = PetscSectionSetFieldDof(ts, p, f, PetscSqr(cdim));CHKERRQ(ierr); 2220ca3d3a14SMatthew G. Knepley ierr = PetscSectionAddDof(ts, p, PetscSqr(cdim));CHKERRQ(ierr); 2221ca3d3a14SMatthew G. Knepley } 2222ca3d3a14SMatthew G. Knepley } 2223ca3d3a14SMatthew G. Knepley ierr = PetscSectionSetUp(ts);CHKERRQ(ierr); 2224ca3d3a14SMatthew G. Knepley ierr = DMCreateLocalVector(dm->transformDM, &dm->transform);CHKERRQ(ierr); 2225ca3d3a14SMatthew G. Knepley ierr = VecGetArray(dm->transform, &ta);CHKERRQ(ierr); 2226ca3d3a14SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 2227ca3d3a14SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 2228ca3d3a14SMatthew G. Knepley ierr = PetscSectionGetFieldDof(ts, p, f, &dof);CHKERRQ(ierr); 2229ca3d3a14SMatthew G. Knepley if (dof) { 2230ca3d3a14SMatthew G. Knepley PetscReal x[3] = {0.0, 0.0, 0.0}; 2231ca3d3a14SMatthew G. Knepley PetscScalar *tva; 2232ca3d3a14SMatthew G. Knepley const PetscScalar *A; 2233ca3d3a14SMatthew G. Knepley 2234ca3d3a14SMatthew G. Knepley /* TODO Get quadrature point for this dual basis vector for coordinate */ 2235ca3d3a14SMatthew G. Knepley ierr = (*dm->transformGetMatrix)(dm, x, PETSC_TRUE, &A, dm->transformCtx);CHKERRQ(ierr); 2236ca3d3a14SMatthew G. Knepley ierr = DMPlexPointLocalFieldRef(dm->transformDM, p, f, ta, (void *) &tva);CHKERRQ(ierr); 2237580bdb30SBarry Smith ierr = PetscArraycpy(tva, A, PetscSqr(cdim));CHKERRQ(ierr); 2238ca3d3a14SMatthew G. Knepley } 2239ca3d3a14SMatthew G. Knepley } 2240ca3d3a14SMatthew G. Knepley } 2241ca3d3a14SMatthew G. Knepley ierr = VecRestoreArray(dm->transform, &ta);CHKERRQ(ierr); 2242ca3d3a14SMatthew G. Knepley PetscFunctionReturn(0); 2243ca3d3a14SMatthew G. Knepley } 2244ca3d3a14SMatthew G. Knepley 2245ca3d3a14SMatthew G. Knepley PetscErrorCode DMCopyTransform(DM dm, DM newdm) 2246ca3d3a14SMatthew G. Knepley { 2247ca3d3a14SMatthew G. Knepley PetscErrorCode ierr; 2248ca3d3a14SMatthew G. Knepley 2249ca3d3a14SMatthew G. Knepley PetscFunctionBegin; 2250ca3d3a14SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 2251ca3d3a14SMatthew G. Knepley PetscValidHeaderSpecific(newdm, DM_CLASSID, 2); 2252ca3d3a14SMatthew G. Knepley newdm->transformCtx = dm->transformCtx; 2253ca3d3a14SMatthew G. Knepley newdm->transformSetUp = dm->transformSetUp; 2254ca3d3a14SMatthew G. Knepley newdm->transformDestroy = NULL; 2255ca3d3a14SMatthew G. Knepley newdm->transformGetMatrix = dm->transformGetMatrix; 2256ca3d3a14SMatthew G. Knepley if (newdm->transformSetUp) {ierr = DMConstructBasisTransform_Internal(newdm);CHKERRQ(ierr);} 2257ca3d3a14SMatthew G. Knepley PetscFunctionReturn(0); 2258ca3d3a14SMatthew G. Knepley } 2259ca3d3a14SMatthew G. Knepley 2260bb9467b5SJed Brown /*@C 2261baf369e7SPeter Brune DMGlobalToLocalHookAdd - adds a callback to be run when global to local is called 2262baf369e7SPeter Brune 2263baf369e7SPeter Brune Logically Collective 2264baf369e7SPeter Brune 2265baf369e7SPeter Brune Input Arguments: 2266baf369e7SPeter Brune + dm - the DM 2267baf369e7SPeter Brune . beginhook - function to run at the beginning of DMGlobalToLocalBegin() 2268baf369e7SPeter Brune . endhook - function to run after DMGlobalToLocalEnd() has completed 22690298fd71SBarry Smith - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 2270baf369e7SPeter Brune 2271baf369e7SPeter Brune Calling sequence for beginhook: 2272baf369e7SPeter Brune $ beginhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx) 2273baf369e7SPeter Brune 2274baf369e7SPeter Brune + dm - global DM 2275baf369e7SPeter Brune . g - global vector 2276baf369e7SPeter Brune . mode - mode 2277baf369e7SPeter Brune . l - local vector 2278baf369e7SPeter Brune - ctx - optional user-defined function context 2279baf369e7SPeter Brune 2280baf369e7SPeter Brune 2281baf369e7SPeter Brune Calling sequence for endhook: 2282ec4806b8SPeter Brune $ endhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx) 2283baf369e7SPeter Brune 2284baf369e7SPeter Brune + global - global DM 2285baf369e7SPeter Brune - ctx - optional user-defined function context 2286baf369e7SPeter Brune 2287baf369e7SPeter Brune Level: advanced 2288baf369e7SPeter Brune 2289baf369e7SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 2290baf369e7SPeter Brune @*/ 2291baf369e7SPeter Brune PetscErrorCode DMGlobalToLocalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx) 2292baf369e7SPeter Brune { 2293baf369e7SPeter Brune PetscErrorCode ierr; 2294baf369e7SPeter Brune DMGlobalToLocalHookLink link,*p; 2295baf369e7SPeter Brune 2296baf369e7SPeter Brune PetscFunctionBegin; 2297baf369e7SPeter Brune PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2298baf369e7SPeter Brune for (p=&dm->gtolhook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */ 229995dccacaSBarry Smith ierr = PetscNew(&link);CHKERRQ(ierr); 2300baf369e7SPeter Brune link->beginhook = beginhook; 2301baf369e7SPeter Brune link->endhook = endhook; 2302baf369e7SPeter Brune link->ctx = ctx; 23030298fd71SBarry Smith link->next = NULL; 2304baf369e7SPeter Brune *p = link; 2305baf369e7SPeter Brune PetscFunctionReturn(0); 2306baf369e7SPeter Brune } 2307baf369e7SPeter Brune 23084c274da1SToby Isaac static PetscErrorCode DMGlobalToLocalHook_Constraints(DM dm, Vec g, InsertMode mode, Vec l, void *ctx) 23094c274da1SToby Isaac { 23104c274da1SToby Isaac Mat cMat; 23114c274da1SToby Isaac Vec cVec; 23124c274da1SToby Isaac PetscSection section, cSec; 23134c274da1SToby Isaac PetscInt pStart, pEnd, p, dof; 23144c274da1SToby Isaac PetscErrorCode ierr; 23154c274da1SToby Isaac 23164c274da1SToby Isaac PetscFunctionBegin; 23174c274da1SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 23184c274da1SToby Isaac ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr); 23194c274da1SToby Isaac if (cMat && (mode == INSERT_VALUES || mode == INSERT_ALL_VALUES || mode == INSERT_BC_VALUES)) { 23205db9a05bSToby Isaac PetscInt nRows; 23215db9a05bSToby Isaac 23225db9a05bSToby Isaac ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr); 23235db9a05bSToby Isaac if (nRows <= 0) PetscFunctionReturn(0); 232492fd8e1eSJed Brown ierr = DMGetLocalSection(dm,§ion);CHKERRQ(ierr); 23257711e48fSToby Isaac ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr); 23264c274da1SToby Isaac ierr = MatMult(cMat,l,cVec);CHKERRQ(ierr); 23274c274da1SToby Isaac ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr); 23284c274da1SToby Isaac for (p = pStart; p < pEnd; p++) { 23294c274da1SToby Isaac ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr); 23304c274da1SToby Isaac if (dof) { 23314c274da1SToby Isaac PetscScalar *vals; 23324c274da1SToby Isaac ierr = VecGetValuesSection(cVec,cSec,p,&vals);CHKERRQ(ierr); 23334c274da1SToby Isaac ierr = VecSetValuesSection(l,section,p,vals,INSERT_ALL_VALUES);CHKERRQ(ierr); 23344c274da1SToby Isaac } 23354c274da1SToby Isaac } 23364c274da1SToby Isaac ierr = VecDestroy(&cVec);CHKERRQ(ierr); 23374c274da1SToby Isaac } 23384c274da1SToby Isaac PetscFunctionReturn(0); 23394c274da1SToby Isaac } 23404c274da1SToby Isaac 234147c6ae99SBarry Smith /*@ 234201729b5cSPatrick Sanan DMGlobalToLocal - update local vectors from global vector 234301729b5cSPatrick Sanan 2344d083f849SBarry Smith Neighbor-wise Collective on dm 234501729b5cSPatrick Sanan 234601729b5cSPatrick Sanan Input Parameters: 234701729b5cSPatrick Sanan + dm - the DM object 234801729b5cSPatrick Sanan . g - the global vector 234901729b5cSPatrick Sanan . mode - INSERT_VALUES or ADD_VALUES 235001729b5cSPatrick Sanan - l - the local vector 235101729b5cSPatrick Sanan 235201729b5cSPatrick Sanan Notes: 235301729b5cSPatrick Sanan The communication involved in this update can be overlapped with computation by using 235401729b5cSPatrick Sanan DMGlobalToLocalBegin() and DMGlobalToLocalEnd(). 235501729b5cSPatrick Sanan 235601729b5cSPatrick Sanan Level: beginner 235701729b5cSPatrick Sanan 235801729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd() 235901729b5cSPatrick Sanan 236001729b5cSPatrick Sanan @*/ 236101729b5cSPatrick Sanan PetscErrorCode DMGlobalToLocal(DM dm,Vec g,InsertMode mode,Vec l) 236201729b5cSPatrick Sanan { 236301729b5cSPatrick Sanan PetscErrorCode ierr; 236401729b5cSPatrick Sanan 236501729b5cSPatrick Sanan PetscFunctionBegin; 236601729b5cSPatrick Sanan ierr = DMGlobalToLocalBegin(dm,g,mode,l);CHKERRQ(ierr); 236701729b5cSPatrick Sanan ierr = DMGlobalToLocalEnd(dm,g,mode,l);CHKERRQ(ierr); 236801729b5cSPatrick Sanan PetscFunctionReturn(0); 236901729b5cSPatrick Sanan } 237001729b5cSPatrick Sanan 237101729b5cSPatrick Sanan /*@ 237247c6ae99SBarry Smith DMGlobalToLocalBegin - Begins updating local vectors from global vector 237347c6ae99SBarry Smith 2374d083f849SBarry Smith Neighbor-wise Collective on dm 237547c6ae99SBarry Smith 237647c6ae99SBarry Smith Input Parameters: 237747c6ae99SBarry Smith + dm - the DM object 237847c6ae99SBarry Smith . g - the global vector 237947c6ae99SBarry Smith . mode - INSERT_VALUES or ADD_VALUES 238047c6ae99SBarry Smith - l - the local vector 238147c6ae99SBarry Smith 238201729b5cSPatrick Sanan Level: intermediate 238347c6ae99SBarry Smith 238401729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd() 238547c6ae99SBarry Smith 238647c6ae99SBarry Smith @*/ 23877087cfbeSBarry Smith PetscErrorCode DMGlobalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l) 238847c6ae99SBarry Smith { 23897128ae9fSMatthew G Knepley PetscSF sf; 239047c6ae99SBarry Smith PetscErrorCode ierr; 2391baf369e7SPeter Brune DMGlobalToLocalHookLink link; 239247c6ae99SBarry Smith 239347c6ae99SBarry Smith PetscFunctionBegin; 2394171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2395baf369e7SPeter Brune for (link=dm->gtolhook; link; link=link->next) { 23968865f1eaSKarl Rupp if (link->beginhook) { 23978865f1eaSKarl Rupp ierr = (*link->beginhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr); 23988865f1eaSKarl Rupp } 2399baf369e7SPeter Brune } 24001bb6d2a8SBarry Smith ierr = DMGetSectionSF(dm, &sf);CHKERRQ(ierr); 24017128ae9fSMatthew G Knepley if (sf) { 2402ae5cfb4aSMatthew G. Knepley const PetscScalar *gArray; 2403ae5cfb4aSMatthew G. Knepley PetscScalar *lArray; 24047128ae9fSMatthew G Knepley 240582f516ccSBarry Smith if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode); 24067128ae9fSMatthew G Knepley ierr = VecGetArray(l, &lArray);CHKERRQ(ierr); 2407ae5cfb4aSMatthew G. Knepley ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr); 24087128ae9fSMatthew G Knepley ierr = PetscSFBcastBegin(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr); 24097128ae9fSMatthew G Knepley ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr); 2410ae5cfb4aSMatthew G. Knepley ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr); 24117128ae9fSMatthew G Knepley } else { 241233907cc2SStefano Zampini if (!dm->ops->globaltolocalbegin) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMGlobalToLocalBegin() for type %s",((PetscObject)dm)->type_name); 2413843c4018SMatthew G Knepley ierr = (*dm->ops->globaltolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr); 24147128ae9fSMatthew G Knepley } 241547c6ae99SBarry Smith PetscFunctionReturn(0); 241647c6ae99SBarry Smith } 241747c6ae99SBarry Smith 241847c6ae99SBarry Smith /*@ 241947c6ae99SBarry Smith DMGlobalToLocalEnd - Ends updating local vectors from global vector 242047c6ae99SBarry Smith 2421d083f849SBarry Smith Neighbor-wise Collective on dm 242247c6ae99SBarry Smith 242347c6ae99SBarry Smith Input Parameters: 242447c6ae99SBarry Smith + dm - the DM object 242547c6ae99SBarry Smith . g - the global vector 242647c6ae99SBarry Smith . mode - INSERT_VALUES or ADD_VALUES 242747c6ae99SBarry Smith - l - the local vector 242847c6ae99SBarry Smith 242901729b5cSPatrick Sanan Level: intermediate 243047c6ae99SBarry Smith 243101729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd() 243247c6ae99SBarry Smith 243347c6ae99SBarry Smith @*/ 24347087cfbeSBarry Smith PetscErrorCode DMGlobalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l) 243547c6ae99SBarry Smith { 24367128ae9fSMatthew G Knepley PetscSF sf; 243747c6ae99SBarry Smith PetscErrorCode ierr; 2438ae5cfb4aSMatthew G. Knepley const PetscScalar *gArray; 2439ae5cfb4aSMatthew G. Knepley PetscScalar *lArray; 2440ca3d3a14SMatthew G. Knepley PetscBool transform; 2441baf369e7SPeter Brune DMGlobalToLocalHookLink link; 244247c6ae99SBarry Smith 244347c6ae99SBarry Smith PetscFunctionBegin; 2444171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 24451bb6d2a8SBarry Smith ierr = DMGetSectionSF(dm, &sf);CHKERRQ(ierr); 2446ca3d3a14SMatthew G. Knepley ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr); 24477128ae9fSMatthew G Knepley if (sf) { 244882f516ccSBarry Smith if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode); 24497128ae9fSMatthew G Knepley 24507128ae9fSMatthew G Knepley ierr = VecGetArray(l, &lArray);CHKERRQ(ierr); 2451ae5cfb4aSMatthew G. Knepley ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr); 24527128ae9fSMatthew G Knepley ierr = PetscSFBcastEnd(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr); 24537128ae9fSMatthew G Knepley ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr); 2454ae5cfb4aSMatthew G. Knepley ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr); 2455ca3d3a14SMatthew G. Knepley if (transform) {ierr = DMPlexGlobalToLocalBasis(dm, l);CHKERRQ(ierr);} 24567128ae9fSMatthew G Knepley } else { 245733907cc2SStefano Zampini if (!dm->ops->globaltolocalend) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMGlobalToLocalEnd() for type %s",((PetscObject)dm)->type_name); 2458843c4018SMatthew G Knepley ierr = (*dm->ops->globaltolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr); 24597128ae9fSMatthew G Knepley } 24604c274da1SToby Isaac ierr = DMGlobalToLocalHook_Constraints(dm,g,mode,l,NULL);CHKERRQ(ierr); 2461baf369e7SPeter Brune for (link=dm->gtolhook; link; link=link->next) { 2462baf369e7SPeter Brune if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);} 2463baf369e7SPeter Brune } 246447c6ae99SBarry Smith PetscFunctionReturn(0); 246547c6ae99SBarry Smith } 246647c6ae99SBarry Smith 2467d4d07f1eSToby Isaac /*@C 2468d4d07f1eSToby Isaac DMLocalToGlobalHookAdd - adds a callback to be run when a local to global is called 2469d4d07f1eSToby Isaac 2470d4d07f1eSToby Isaac Logically Collective 2471d4d07f1eSToby Isaac 2472d4d07f1eSToby Isaac Input Arguments: 2473d4d07f1eSToby Isaac + dm - the DM 2474d4d07f1eSToby Isaac . beginhook - function to run at the beginning of DMLocalToGlobalBegin() 2475d4d07f1eSToby Isaac . endhook - function to run after DMLocalToGlobalEnd() has completed 2476d4d07f1eSToby Isaac - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 2477d4d07f1eSToby Isaac 2478d4d07f1eSToby Isaac Calling sequence for beginhook: 2479d4d07f1eSToby Isaac $ beginhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx) 2480d4d07f1eSToby Isaac 2481d4d07f1eSToby Isaac + dm - global DM 2482d4d07f1eSToby Isaac . l - local vector 2483d4d07f1eSToby Isaac . mode - mode 2484d4d07f1eSToby Isaac . g - global vector 2485d4d07f1eSToby Isaac - ctx - optional user-defined function context 2486d4d07f1eSToby Isaac 2487d4d07f1eSToby Isaac 2488d4d07f1eSToby Isaac Calling sequence for endhook: 2489d4d07f1eSToby Isaac $ endhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx) 2490d4d07f1eSToby Isaac 2491d4d07f1eSToby Isaac + global - global DM 2492d4d07f1eSToby Isaac . l - local vector 2493d4d07f1eSToby Isaac . mode - mode 2494d4d07f1eSToby Isaac . g - global vector 2495d4d07f1eSToby Isaac - ctx - optional user-defined function context 2496d4d07f1eSToby Isaac 2497d4d07f1eSToby Isaac Level: advanced 2498d4d07f1eSToby Isaac 2499d4d07f1eSToby Isaac .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 2500d4d07f1eSToby Isaac @*/ 2501d4d07f1eSToby Isaac PetscErrorCode DMLocalToGlobalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx) 2502d4d07f1eSToby Isaac { 2503d4d07f1eSToby Isaac PetscErrorCode ierr; 2504d4d07f1eSToby Isaac DMLocalToGlobalHookLink link,*p; 2505d4d07f1eSToby Isaac 2506d4d07f1eSToby Isaac PetscFunctionBegin; 2507d4d07f1eSToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2508d4d07f1eSToby Isaac for (p=&dm->ltoghook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */ 250995dccacaSBarry Smith ierr = PetscNew(&link);CHKERRQ(ierr); 2510d4d07f1eSToby Isaac link->beginhook = beginhook; 2511d4d07f1eSToby Isaac link->endhook = endhook; 2512d4d07f1eSToby Isaac link->ctx = ctx; 2513d4d07f1eSToby Isaac link->next = NULL; 2514d4d07f1eSToby Isaac *p = link; 2515d4d07f1eSToby Isaac PetscFunctionReturn(0); 2516d4d07f1eSToby Isaac } 2517d4d07f1eSToby Isaac 25184c274da1SToby Isaac static PetscErrorCode DMLocalToGlobalHook_Constraints(DM dm, Vec l, InsertMode mode, Vec g, void *ctx) 25194c274da1SToby Isaac { 25204c274da1SToby Isaac Mat cMat; 25214c274da1SToby Isaac Vec cVec; 25224c274da1SToby Isaac PetscSection section, cSec; 25234c274da1SToby Isaac PetscInt pStart, pEnd, p, dof; 25244c274da1SToby Isaac PetscErrorCode ierr; 25254c274da1SToby Isaac 25264c274da1SToby Isaac PetscFunctionBegin; 25274c274da1SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 25284c274da1SToby Isaac ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr); 25294c274da1SToby Isaac if (cMat && (mode == ADD_VALUES || mode == ADD_ALL_VALUES || mode == ADD_BC_VALUES)) { 25305db9a05bSToby Isaac PetscInt nRows; 25315db9a05bSToby Isaac 25325db9a05bSToby Isaac ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr); 25335db9a05bSToby Isaac if (nRows <= 0) PetscFunctionReturn(0); 253492fd8e1eSJed Brown ierr = DMGetLocalSection(dm,§ion);CHKERRQ(ierr); 25357711e48fSToby Isaac ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr); 25364c274da1SToby Isaac ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr); 25374c274da1SToby Isaac for (p = pStart; p < pEnd; p++) { 25384c274da1SToby Isaac ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr); 25394c274da1SToby Isaac if (dof) { 25404c274da1SToby Isaac PetscInt d; 25414c274da1SToby Isaac PetscScalar *vals; 25424c274da1SToby Isaac ierr = VecGetValuesSection(l,section,p,&vals);CHKERRQ(ierr); 25434c274da1SToby Isaac ierr = VecSetValuesSection(cVec,cSec,p,vals,mode);CHKERRQ(ierr); 25444c274da1SToby Isaac /* for this to be the true transpose, we have to zero the values that 25454c274da1SToby Isaac * we just extracted */ 25464c274da1SToby Isaac for (d = 0; d < dof; d++) { 25474c274da1SToby Isaac vals[d] = 0.; 25484c274da1SToby Isaac } 25494c274da1SToby Isaac } 25504c274da1SToby Isaac } 25514c274da1SToby Isaac ierr = MatMultTransposeAdd(cMat,cVec,l,l);CHKERRQ(ierr); 25524c274da1SToby Isaac ierr = VecDestroy(&cVec);CHKERRQ(ierr); 25534c274da1SToby Isaac } 25544c274da1SToby Isaac PetscFunctionReturn(0); 25554c274da1SToby Isaac } 255601729b5cSPatrick Sanan /*@ 255701729b5cSPatrick Sanan DMLocalToGlobal - updates global vectors from local vectors 255801729b5cSPatrick Sanan 2559d083f849SBarry Smith Neighbor-wise Collective on dm 256001729b5cSPatrick Sanan 256101729b5cSPatrick Sanan Input Parameters: 256201729b5cSPatrick Sanan + dm - the DM object 256301729b5cSPatrick Sanan . l - the local vector 256401729b5cSPatrick Sanan . mode - if INSERT_VALUES then no parallel communication is used, if ADD_VALUES then all ghost points from the same base point accumulate into that base point. 256501729b5cSPatrick Sanan - g - the global vector 256601729b5cSPatrick Sanan 256701729b5cSPatrick Sanan Notes: 256801729b5cSPatrick Sanan The communication involved in this update can be overlapped with computation by using 256901729b5cSPatrick Sanan DMLocalToGlobalBegin() and DMLocalToGlobalEnd(). 257001729b5cSPatrick Sanan 257101729b5cSPatrick Sanan In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation. 257201729b5cSPatrick Sanan INSERT_VALUES is not supported for DMDA; in that case simply compute the values directly into a global vector instead of a local one. 257301729b5cSPatrick Sanan 257401729b5cSPatrick Sanan Level: beginner 257501729b5cSPatrick Sanan 257601729b5cSPatrick Sanan .seealso DMLocalToGlobalBegin(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin() 257701729b5cSPatrick Sanan 257801729b5cSPatrick Sanan @*/ 257901729b5cSPatrick Sanan PetscErrorCode DMLocalToGlobal(DM dm,Vec l,InsertMode mode,Vec g) 258001729b5cSPatrick Sanan { 258101729b5cSPatrick Sanan PetscErrorCode ierr; 258201729b5cSPatrick Sanan 258301729b5cSPatrick Sanan PetscFunctionBegin; 258401729b5cSPatrick Sanan ierr = DMLocalToGlobalBegin(dm,l,mode,g);CHKERRQ(ierr); 258501729b5cSPatrick Sanan ierr = DMLocalToGlobalEnd(dm,l,mode,g);CHKERRQ(ierr); 258601729b5cSPatrick Sanan PetscFunctionReturn(0); 258701729b5cSPatrick Sanan } 25884c274da1SToby Isaac 258947c6ae99SBarry Smith /*@ 259001729b5cSPatrick Sanan DMLocalToGlobalBegin - begins updating global vectors from local vectors 25919a42bb27SBarry Smith 2592d083f849SBarry Smith Neighbor-wise Collective on dm 25939a42bb27SBarry Smith 25949a42bb27SBarry Smith Input Parameters: 25959a42bb27SBarry Smith + dm - the DM object 2596f6813fd5SJed Brown . l - the local vector 25971eb28f2eSBarry Smith . mode - if INSERT_VALUES then no parallel communication is used, if ADD_VALUES then all ghost points from the same base point accumulate into that base point. 25981eb28f2eSBarry Smith - g - the global vector 25999a42bb27SBarry Smith 260095452b02SPatrick Sanan Notes: 260195452b02SPatrick Sanan In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation. 260284330215SMatthew G. Knepley INSERT_VALUES is not supported for DMDA, in that case simply compute the values directly into a global vector instead of a local one. 26039a42bb27SBarry Smith 260401729b5cSPatrick Sanan Level: intermediate 26059a42bb27SBarry Smith 260601729b5cSPatrick Sanan .seealso DMLocalToGlobal(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin() 26079a42bb27SBarry Smith 26089a42bb27SBarry Smith @*/ 26097087cfbeSBarry Smith PetscErrorCode DMLocalToGlobalBegin(DM dm,Vec l,InsertMode mode,Vec g) 26109a42bb27SBarry Smith { 26117128ae9fSMatthew G Knepley PetscSF sf; 261284330215SMatthew G. Knepley PetscSection s, gs; 2613d4d07f1eSToby Isaac DMLocalToGlobalHookLink link; 2614ca3d3a14SMatthew G. Knepley Vec tmpl; 2615ae5cfb4aSMatthew G. Knepley const PetscScalar *lArray; 2616ae5cfb4aSMatthew G. Knepley PetscScalar *gArray; 2617ca3d3a14SMatthew G. Knepley PetscBool isInsert, transform; 261884330215SMatthew G. Knepley PetscErrorCode ierr; 26199a42bb27SBarry Smith 26209a42bb27SBarry Smith PetscFunctionBegin; 2621171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2622d4d07f1eSToby Isaac for (link=dm->ltoghook; link; link=link->next) { 2623d4d07f1eSToby Isaac if (link->beginhook) { 2624d4d07f1eSToby Isaac ierr = (*link->beginhook)(dm,l,mode,g,link->ctx);CHKERRQ(ierr); 2625d4d07f1eSToby Isaac } 2626d4d07f1eSToby Isaac } 26274c274da1SToby Isaac ierr = DMLocalToGlobalHook_Constraints(dm,l,mode,g,NULL);CHKERRQ(ierr); 26281bb6d2a8SBarry Smith ierr = DMGetSectionSF(dm, &sf);CHKERRQ(ierr); 262992fd8e1eSJed Brown ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr); 26307128ae9fSMatthew G Knepley switch (mode) { 26317128ae9fSMatthew G Knepley case INSERT_VALUES: 26327128ae9fSMatthew G Knepley case INSERT_ALL_VALUES: 2633304ab55fSMatthew G. Knepley case INSERT_BC_VALUES: 263484330215SMatthew G. Knepley isInsert = PETSC_TRUE; break; 26357128ae9fSMatthew G Knepley case ADD_VALUES: 26367128ae9fSMatthew G Knepley case ADD_ALL_VALUES: 2637304ab55fSMatthew G. Knepley case ADD_BC_VALUES: 263884330215SMatthew G. Knepley isInsert = PETSC_FALSE; break; 26397128ae9fSMatthew G Knepley default: 264082f516ccSBarry Smith SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode); 26417128ae9fSMatthew G Knepley } 2642ca3d3a14SMatthew G. Knepley if ((sf && !isInsert) || (s && isInsert)) { 2643ca3d3a14SMatthew G. Knepley ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr); 2644ca3d3a14SMatthew G. Knepley if (transform) { 2645ca3d3a14SMatthew G. Knepley ierr = DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr); 2646ca3d3a14SMatthew G. Knepley ierr = VecCopy(l, tmpl);CHKERRQ(ierr); 2647ca3d3a14SMatthew G. Knepley ierr = DMPlexLocalToGlobalBasis(dm, tmpl);CHKERRQ(ierr); 2648ca3d3a14SMatthew G. Knepley ierr = VecGetArrayRead(tmpl, &lArray);CHKERRQ(ierr); 2649ca3d3a14SMatthew G. Knepley } else { 2650ae5cfb4aSMatthew G. Knepley ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr); 2651ca3d3a14SMatthew G. Knepley } 26527128ae9fSMatthew G Knepley ierr = VecGetArray(g, &gArray);CHKERRQ(ierr); 2653ca3d3a14SMatthew G. Knepley if (sf && !isInsert) { 2654a9b180a6SBarry Smith ierr = PetscSFReduceBegin(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr); 265584330215SMatthew G. Knepley } else if (s && isInsert) { 265684330215SMatthew G. Knepley PetscInt gStart, pStart, pEnd, p; 265784330215SMatthew G. Knepley 2658e87a4003SBarry Smith ierr = DMGetGlobalSection(dm, &gs);CHKERRQ(ierr); 265984330215SMatthew G. Knepley ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr); 266084330215SMatthew G. Knepley ierr = VecGetOwnershipRange(g, &gStart, NULL);CHKERRQ(ierr); 266184330215SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 2662b3b16f48SMatthew G. Knepley PetscInt dof, gdof, cdof, gcdof, off, goff, d, e; 266384330215SMatthew G. Knepley 266484330215SMatthew G. Knepley ierr = PetscSectionGetDof(s, p, &dof);CHKERRQ(ierr); 266503442857SMatthew G. Knepley ierr = PetscSectionGetDof(gs, p, &gdof);CHKERRQ(ierr); 266684330215SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(s, p, &cdof);CHKERRQ(ierr); 2667b3b16f48SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(gs, p, &gcdof);CHKERRQ(ierr); 266884330215SMatthew G. Knepley ierr = PetscSectionGetOffset(s, p, &off);CHKERRQ(ierr); 266984330215SMatthew G. Knepley ierr = PetscSectionGetOffset(gs, p, &goff);CHKERRQ(ierr); 2670b3b16f48SMatthew G. Knepley /* Ignore off-process data and points with no global data */ 267103442857SMatthew G. Knepley if (!gdof || goff < 0) continue; 2672b3b16f48SMatthew G. Knepley if (dof != gdof) SETERRQ5(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %d dof: %d gdof: %d cdof: %d gcdof: %d", p, dof, gdof, cdof, gcdof); 2673b3b16f48SMatthew G. Knepley /* If no constraints are enforced in the global vector */ 2674b3b16f48SMatthew G. Knepley if (!gcdof) { 267584330215SMatthew G. Knepley for (d = 0; d < dof; ++d) gArray[goff-gStart+d] = lArray[off+d]; 2676b3b16f48SMatthew G. Knepley /* If constraints are enforced in the global vector */ 2677b3b16f48SMatthew G. Knepley } else if (cdof == gcdof) { 267884330215SMatthew G. Knepley const PetscInt *cdofs; 267984330215SMatthew G. Knepley PetscInt cind = 0; 268084330215SMatthew G. Knepley 268184330215SMatthew G. Knepley ierr = PetscSectionGetConstraintIndices(s, p, &cdofs);CHKERRQ(ierr); 2682b3b16f48SMatthew G. Knepley for (d = 0, e = 0; d < dof; ++d) { 268384330215SMatthew G. Knepley if ((cind < cdof) && (d == cdofs[cind])) {++cind; continue;} 2684b3b16f48SMatthew G. Knepley gArray[goff-gStart+e++] = lArray[off+d]; 268584330215SMatthew G. Knepley } 2686b3b16f48SMatthew G. Knepley } else SETERRQ5(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Inconsistent sizes, p: %d dof: %d gdof: %d cdof: %d gcdof: %d", p, dof, gdof, cdof, gcdof); 268784330215SMatthew G. Knepley } 2688ca3d3a14SMatthew G. Knepley } 26897128ae9fSMatthew G Knepley ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr); 2690ca3d3a14SMatthew G. Knepley if (transform) { 2691ca3d3a14SMatthew G. Knepley ierr = VecRestoreArrayRead(tmpl, &lArray);CHKERRQ(ierr); 2692ca3d3a14SMatthew G. Knepley ierr = DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr); 2693ca3d3a14SMatthew G. Knepley } else { 2694ca3d3a14SMatthew G. Knepley ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr); 2695ca3d3a14SMatthew G. Knepley } 26967128ae9fSMatthew G Knepley } else { 2697b9d85ea2SLisandro Dalcin if (!dm->ops->localtoglobalbegin) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMLocalToGlobalBegin() for type %s",((PetscObject)dm)->type_name); 2698843c4018SMatthew G Knepley ierr = (*dm->ops->localtoglobalbegin)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr); 26997128ae9fSMatthew G Knepley } 27009a42bb27SBarry Smith PetscFunctionReturn(0); 27019a42bb27SBarry Smith } 27029a42bb27SBarry Smith 27039a42bb27SBarry Smith /*@ 27049a42bb27SBarry Smith DMLocalToGlobalEnd - updates global vectors from local vectors 270547c6ae99SBarry Smith 2706d083f849SBarry Smith Neighbor-wise Collective on dm 270747c6ae99SBarry Smith 270847c6ae99SBarry Smith Input Parameters: 270947c6ae99SBarry Smith + dm - the DM object 2710f6813fd5SJed Brown . l - the local vector 271147c6ae99SBarry Smith . mode - INSERT_VALUES or ADD_VALUES 2712f6813fd5SJed Brown - g - the global vector 271347c6ae99SBarry Smith 271401729b5cSPatrick Sanan Level: intermediate 271547c6ae99SBarry Smith 2716e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMGlobalToLocalEnd() 271747c6ae99SBarry Smith 271847c6ae99SBarry Smith @*/ 27197087cfbeSBarry Smith PetscErrorCode DMLocalToGlobalEnd(DM dm,Vec l,InsertMode mode,Vec g) 272047c6ae99SBarry Smith { 27217128ae9fSMatthew G Knepley PetscSF sf; 272284330215SMatthew G. Knepley PetscSection s; 2723d4d07f1eSToby Isaac DMLocalToGlobalHookLink link; 2724ca3d3a14SMatthew G. Knepley PetscBool isInsert, transform; 272584330215SMatthew G. Knepley PetscErrorCode ierr; 272647c6ae99SBarry Smith 272747c6ae99SBarry Smith PetscFunctionBegin; 2728171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 27291bb6d2a8SBarry Smith ierr = DMGetSectionSF(dm, &sf);CHKERRQ(ierr); 273092fd8e1eSJed Brown ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr); 27317128ae9fSMatthew G Knepley switch (mode) { 27327128ae9fSMatthew G Knepley case INSERT_VALUES: 27337128ae9fSMatthew G Knepley case INSERT_ALL_VALUES: 273484330215SMatthew G. Knepley isInsert = PETSC_TRUE; break; 27357128ae9fSMatthew G Knepley case ADD_VALUES: 27367128ae9fSMatthew G Knepley case ADD_ALL_VALUES: 273784330215SMatthew G. Knepley isInsert = PETSC_FALSE; break; 27387128ae9fSMatthew G Knepley default: 273982f516ccSBarry Smith SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode); 27407128ae9fSMatthew G Knepley } 274184330215SMatthew G. Knepley if (sf && !isInsert) { 2742ae5cfb4aSMatthew G. Knepley const PetscScalar *lArray; 2743ae5cfb4aSMatthew G. Knepley PetscScalar *gArray; 2744ca3d3a14SMatthew G. Knepley Vec tmpl; 274584330215SMatthew G. Knepley 2746ca3d3a14SMatthew G. Knepley ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr); 2747ca3d3a14SMatthew G. Knepley if (transform) { 2748ca3d3a14SMatthew G. Knepley ierr = DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr); 2749ca3d3a14SMatthew G. Knepley ierr = VecGetArrayRead(tmpl, &lArray);CHKERRQ(ierr); 2750ca3d3a14SMatthew G. Knepley } else { 2751ae5cfb4aSMatthew G. Knepley ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr); 2752ca3d3a14SMatthew G. Knepley } 27537128ae9fSMatthew G Knepley ierr = VecGetArray(g, &gArray);CHKERRQ(ierr); 2754a9b180a6SBarry Smith ierr = PetscSFReduceEnd(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr); 2755ca3d3a14SMatthew G. Knepley if (transform) { 2756ca3d3a14SMatthew G. Knepley ierr = VecRestoreArrayRead(tmpl, &lArray);CHKERRQ(ierr); 2757ca3d3a14SMatthew G. Knepley ierr = DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr); 2758ca3d3a14SMatthew G. Knepley } else { 2759ae5cfb4aSMatthew G. Knepley ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr); 2760ca3d3a14SMatthew G. Knepley } 27617128ae9fSMatthew G Knepley ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr); 276284330215SMatthew G. Knepley } else if (s && isInsert) { 27637128ae9fSMatthew G Knepley } else { 2764b9d85ea2SLisandro Dalcin if (!dm->ops->localtoglobalend) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMLocalToGlobalEnd() for type %s",((PetscObject)dm)->type_name); 2765843c4018SMatthew G Knepley ierr = (*dm->ops->localtoglobalend)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr); 27667128ae9fSMatthew G Knepley } 2767d4d07f1eSToby Isaac for (link=dm->ltoghook; link; link=link->next) { 2768d4d07f1eSToby Isaac if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);} 2769d4d07f1eSToby Isaac } 277047c6ae99SBarry Smith PetscFunctionReturn(0); 277147c6ae99SBarry Smith } 277247c6ae99SBarry Smith 2773f089877aSRichard Tran Mills /*@ 2774bc0a1609SRichard Tran Mills DMLocalToLocalBegin - Maps from a local vector (including ghost points 2775bc0a1609SRichard Tran Mills that contain irrelevant values) to another local vector where the ghost 2776d78e899eSRichard Tran Mills points in the second are set correctly. Must be followed by DMLocalToLocalEnd(). 2777f089877aSRichard Tran Mills 2778d083f849SBarry Smith Neighbor-wise Collective on dm 2779f089877aSRichard Tran Mills 2780f089877aSRichard Tran Mills Input Parameters: 2781f089877aSRichard Tran Mills + dm - the DM object 2782bc0a1609SRichard Tran Mills . g - the original local vector 2783bc0a1609SRichard Tran Mills - mode - one of INSERT_VALUES or ADD_VALUES 2784f089877aSRichard Tran Mills 2785bc0a1609SRichard Tran Mills Output Parameter: 2786bc0a1609SRichard Tran Mills . l - the local vector with correct ghost values 2787f089877aSRichard Tran Mills 2788f089877aSRichard Tran Mills Level: intermediate 2789f089877aSRichard Tran Mills 2790bc0a1609SRichard Tran Mills Notes: 2791bc0a1609SRichard Tran Mills The local vectors used here need not be the same as those 2792bc0a1609SRichard Tran Mills obtained from DMCreateLocalVector(), BUT they 2793bc0a1609SRichard Tran Mills must have the same parallel data layout; they could, for example, be 2794bc0a1609SRichard Tran Mills obtained with VecDuplicate() from the DM originating vectors. 2795bc0a1609SRichard Tran Mills 2796bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalEnd(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin() 2797f089877aSRichard Tran Mills 2798f089877aSRichard Tran Mills @*/ 2799f089877aSRichard Tran Mills PetscErrorCode DMLocalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l) 2800f089877aSRichard Tran Mills { 2801f089877aSRichard Tran Mills PetscErrorCode ierr; 2802f089877aSRichard Tran Mills 2803f089877aSRichard Tran Mills PetscFunctionBegin; 2804f089877aSRichard Tran Mills PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2805bb358533SPatrick Sanan if (!dm->ops->localtolocalbegin) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps"); 2806f089877aSRichard Tran Mills ierr = (*dm->ops->localtolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr); 2807f089877aSRichard Tran Mills PetscFunctionReturn(0); 2808f089877aSRichard Tran Mills } 2809f089877aSRichard Tran Mills 2810f089877aSRichard Tran Mills /*@ 2811bc0a1609SRichard Tran Mills DMLocalToLocalEnd - Maps from a local vector (including ghost points 2812bc0a1609SRichard Tran Mills that contain irrelevant values) to another local vector where the ghost 2813d78e899eSRichard Tran Mills points in the second are set correctly. Must be preceded by DMLocalToLocalBegin(). 2814f089877aSRichard Tran Mills 2815d083f849SBarry Smith Neighbor-wise Collective on dm 2816f089877aSRichard Tran Mills 2817f089877aSRichard Tran Mills Input Parameters: 2818bc0a1609SRichard Tran Mills + da - the DM object 2819bc0a1609SRichard Tran Mills . g - the original local vector 2820bc0a1609SRichard Tran Mills - mode - one of INSERT_VALUES or ADD_VALUES 2821f089877aSRichard Tran Mills 2822bc0a1609SRichard Tran Mills Output Parameter: 2823bc0a1609SRichard Tran Mills . l - the local vector with correct ghost values 2824f089877aSRichard Tran Mills 2825f089877aSRichard Tran Mills Level: intermediate 2826f089877aSRichard Tran Mills 2827bc0a1609SRichard Tran Mills Notes: 2828bc0a1609SRichard Tran Mills The local vectors used here need not be the same as those 2829bc0a1609SRichard Tran Mills obtained from DMCreateLocalVector(), BUT they 2830bc0a1609SRichard Tran Mills must have the same parallel data layout; they could, for example, be 2831bc0a1609SRichard Tran Mills obtained with VecDuplicate() from the DM originating vectors. 2832bc0a1609SRichard Tran Mills 2833bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalBegin(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin() 2834f089877aSRichard Tran Mills 2835f089877aSRichard Tran Mills @*/ 2836f089877aSRichard Tran Mills PetscErrorCode DMLocalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l) 2837f089877aSRichard Tran Mills { 2838f089877aSRichard Tran Mills PetscErrorCode ierr; 2839f089877aSRichard Tran Mills 2840f089877aSRichard Tran Mills PetscFunctionBegin; 2841f089877aSRichard Tran Mills PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2842bb358533SPatrick Sanan if (!dm->ops->localtolocalend) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps"); 2843f089877aSRichard Tran Mills ierr = (*dm->ops->localtolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr); 2844f089877aSRichard Tran Mills PetscFunctionReturn(0); 2845f089877aSRichard Tran Mills } 2846f089877aSRichard Tran Mills 2847f089877aSRichard Tran Mills 284847c6ae99SBarry Smith /*@ 284947c6ae99SBarry Smith DMCoarsen - Coarsens a DM object 285047c6ae99SBarry Smith 2851d083f849SBarry Smith Collective on dm 285247c6ae99SBarry Smith 285347c6ae99SBarry Smith Input Parameter: 285447c6ae99SBarry Smith + dm - the DM object 285591d95f02SJed Brown - comm - the communicator to contain the new DM object (or MPI_COMM_NULL) 285647c6ae99SBarry Smith 285747c6ae99SBarry Smith Output Parameter: 285847c6ae99SBarry Smith . dmc - the coarsened DM 285947c6ae99SBarry Smith 286047c6ae99SBarry Smith Level: developer 286147c6ae99SBarry Smith 2862e727c939SJed Brown .seealso DMRefine(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 286347c6ae99SBarry Smith 286447c6ae99SBarry Smith @*/ 28657087cfbeSBarry Smith PetscErrorCode DMCoarsen(DM dm, MPI_Comm comm, DM *dmc) 286647c6ae99SBarry Smith { 286747c6ae99SBarry Smith PetscErrorCode ierr; 2868b17ce1afSJed Brown DMCoarsenHookLink link; 286947c6ae99SBarry Smith 287047c6ae99SBarry Smith PetscFunctionBegin; 2871171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 2872b9d85ea2SLisandro Dalcin if (!dm->ops->coarsen) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMCoarsen",((PetscObject)dm)->type_name); 287347a35634SPatrick Farrell ierr = PetscLogEventBegin(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr); 287447c6ae99SBarry Smith ierr = (*dm->ops->coarsen)(dm, comm, dmc);CHKERRQ(ierr); 2875b9d85ea2SLisandro Dalcin if (*dmc) { 2876a8fb8f29SToby Isaac ierr = DMSetCoarseDM(dm,*dmc);CHKERRQ(ierr); 287743842a1eSJed Brown (*dmc)->ops->creatematrix = dm->ops->creatematrix; 28788cd211a4SJed Brown ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmc);CHKERRQ(ierr); 2879644e2e5bSBarry Smith (*dmc)->ctx = dm->ctx; 28800598a293SJed Brown (*dmc)->levelup = dm->levelup; 2881656b349aSBarry Smith (*dmc)->leveldown = dm->leveldown + 1; 2882e4b4b23bSJed Brown ierr = DMSetMatType(*dmc,dm->mattype);CHKERRQ(ierr); 2883b17ce1afSJed Brown for (link=dm->coarsenhook; link; link=link->next) { 2884b17ce1afSJed Brown if (link->coarsenhook) {ierr = (*link->coarsenhook)(dm,*dmc,link->ctx);CHKERRQ(ierr);} 2885b17ce1afSJed Brown } 2886b9d85ea2SLisandro Dalcin } 288747a35634SPatrick Farrell ierr = PetscLogEventEnd(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr); 2888b9d85ea2SLisandro Dalcin if (!(*dmc)) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "NULL coarse mesh produced"); 2889b17ce1afSJed Brown PetscFunctionReturn(0); 2890b17ce1afSJed Brown } 2891b17ce1afSJed Brown 2892bb9467b5SJed Brown /*@C 2893b17ce1afSJed Brown DMCoarsenHookAdd - adds a callback to be run when restricting a nonlinear problem to the coarse grid 2894b17ce1afSJed Brown 2895b17ce1afSJed Brown Logically Collective 2896b17ce1afSJed Brown 2897b17ce1afSJed Brown Input Arguments: 2898b17ce1afSJed Brown + fine - nonlinear solver context on which to run a hook when restricting to a coarser level 2899b17ce1afSJed Brown . coarsenhook - function to run when setting up a coarser level 2900b17ce1afSJed Brown . restricthook - function to run to update data on coarser levels (once per SNESSolve()) 29010298fd71SBarry Smith - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 2902b17ce1afSJed Brown 2903b17ce1afSJed Brown Calling sequence of coarsenhook: 2904b17ce1afSJed Brown $ coarsenhook(DM fine,DM coarse,void *ctx); 2905b17ce1afSJed Brown 2906b17ce1afSJed Brown + fine - fine level DM 2907b17ce1afSJed Brown . coarse - coarse level DM to restrict problem to 2908b17ce1afSJed Brown - ctx - optional user-defined function context 2909b17ce1afSJed Brown 2910b17ce1afSJed Brown Calling sequence for restricthook: 2911c833c3b5SJed Brown $ restricthook(DM fine,Mat mrestrict,Vec rscale,Mat inject,DM coarse,void *ctx) 2912b17ce1afSJed Brown 2913b17ce1afSJed Brown + fine - fine level DM 2914b17ce1afSJed Brown . mrestrict - matrix restricting a fine-level solution to the coarse grid 2915c833c3b5SJed Brown . rscale - scaling vector for restriction 2916c833c3b5SJed Brown . inject - matrix restricting by injection 2917b17ce1afSJed Brown . coarse - coarse level DM to update 2918b17ce1afSJed Brown - ctx - optional user-defined function context 2919b17ce1afSJed Brown 2920b17ce1afSJed Brown Level: advanced 2921b17ce1afSJed Brown 2922b17ce1afSJed Brown Notes: 2923b17ce1afSJed Brown This function is only needed if auxiliary data needs to be set up on coarse grids. 2924b17ce1afSJed Brown 2925b17ce1afSJed Brown If this function is called multiple times, the hooks will be run in the order they are added. 2926b17ce1afSJed Brown 2927b17ce1afSJed Brown In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to 2928b17ce1afSJed Brown extract the finest level information from its context (instead of from the SNES). 2929b17ce1afSJed Brown 2930bb9467b5SJed Brown This function is currently not available from Fortran. 2931bb9467b5SJed Brown 2932dc822a44SJed Brown .seealso: DMCoarsenHookRemove(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 2933b17ce1afSJed Brown @*/ 2934b17ce1afSJed Brown PetscErrorCode DMCoarsenHookAdd(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx) 2935b17ce1afSJed Brown { 2936b17ce1afSJed Brown PetscErrorCode ierr; 2937b17ce1afSJed Brown DMCoarsenHookLink link,*p; 2938b17ce1afSJed Brown 2939b17ce1afSJed Brown PetscFunctionBegin; 2940b17ce1afSJed Brown PetscValidHeaderSpecific(fine,DM_CLASSID,1); 29411e3d8eccSJed Brown for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */ 29421e3d8eccSJed Brown if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0); 29431e3d8eccSJed Brown } 294495dccacaSBarry Smith ierr = PetscNew(&link);CHKERRQ(ierr); 2945b17ce1afSJed Brown link->coarsenhook = coarsenhook; 2946b17ce1afSJed Brown link->restricthook = restricthook; 2947b17ce1afSJed Brown link->ctx = ctx; 29480298fd71SBarry Smith link->next = NULL; 2949b17ce1afSJed Brown *p = link; 2950b17ce1afSJed Brown PetscFunctionReturn(0); 2951b17ce1afSJed Brown } 2952b17ce1afSJed Brown 2953dc822a44SJed Brown /*@C 2954dc822a44SJed Brown DMCoarsenHookRemove - remove a callback from the list of hooks to be run when restricting a nonlinear problem to the coarse grid 2955dc822a44SJed Brown 2956dc822a44SJed Brown Logically Collective 2957dc822a44SJed Brown 2958dc822a44SJed Brown Input Arguments: 2959dc822a44SJed Brown + fine - nonlinear solver context on which to run a hook when restricting to a coarser level 2960dc822a44SJed Brown . coarsenhook - function to run when setting up a coarser level 2961dc822a44SJed Brown . restricthook - function to run to update data on coarser levels (once per SNESSolve()) 2962dc822a44SJed Brown - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 2963dc822a44SJed Brown 2964dc822a44SJed Brown Level: advanced 2965dc822a44SJed Brown 2966dc822a44SJed Brown Notes: 2967dc822a44SJed Brown This function does nothing if the hook is not in the list. 2968dc822a44SJed Brown 2969dc822a44SJed Brown This function is currently not available from Fortran. 2970dc822a44SJed Brown 2971dc822a44SJed Brown .seealso: DMCoarsenHookAdd(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 2972dc822a44SJed Brown @*/ 2973dc822a44SJed Brown PetscErrorCode DMCoarsenHookRemove(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx) 2974dc822a44SJed Brown { 2975dc822a44SJed Brown PetscErrorCode ierr; 2976dc822a44SJed Brown DMCoarsenHookLink link,*p; 2977dc822a44SJed Brown 2978dc822a44SJed Brown PetscFunctionBegin; 2979dc822a44SJed Brown PetscValidHeaderSpecific(fine,DM_CLASSID,1); 2980dc822a44SJed Brown for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Search the list of current hooks */ 2981dc822a44SJed Brown if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) { 2982dc822a44SJed Brown link = *p; 2983dc822a44SJed Brown *p = link->next; 2984dc822a44SJed Brown ierr = PetscFree(link);CHKERRQ(ierr); 2985dc822a44SJed Brown break; 2986dc822a44SJed Brown } 2987dc822a44SJed Brown } 2988dc822a44SJed Brown PetscFunctionReturn(0); 2989dc822a44SJed Brown } 2990dc822a44SJed Brown 2991dc822a44SJed Brown 2992b17ce1afSJed Brown /*@ 2993b17ce1afSJed Brown DMRestrict - restricts user-defined problem data to a coarser DM by running hooks registered by DMCoarsenHookAdd() 2994b17ce1afSJed Brown 2995b17ce1afSJed Brown Collective if any hooks are 2996b17ce1afSJed Brown 2997b17ce1afSJed Brown Input Arguments: 2998b17ce1afSJed Brown + fine - finer DM to use as a base 2999b17ce1afSJed Brown . restrct - restriction matrix, apply using MatRestrict() 3000e91eccc2SStefano Zampini . rscale - scaling vector for restriction 3001b17ce1afSJed Brown . inject - injection matrix, also use MatRestrict() 3002e91eccc2SStefano Zampini - coarse - coarser DM to update 3003b17ce1afSJed Brown 3004b17ce1afSJed Brown Level: developer 3005b17ce1afSJed Brown 3006b17ce1afSJed Brown .seealso: DMCoarsenHookAdd(), MatRestrict() 3007b17ce1afSJed Brown @*/ 3008b17ce1afSJed Brown PetscErrorCode DMRestrict(DM fine,Mat restrct,Vec rscale,Mat inject,DM coarse) 3009b17ce1afSJed Brown { 3010b17ce1afSJed Brown PetscErrorCode ierr; 3011b17ce1afSJed Brown DMCoarsenHookLink link; 3012b17ce1afSJed Brown 3013b17ce1afSJed Brown PetscFunctionBegin; 3014b17ce1afSJed Brown for (link=fine->coarsenhook; link; link=link->next) { 30158865f1eaSKarl Rupp if (link->restricthook) { 30168865f1eaSKarl Rupp ierr = (*link->restricthook)(fine,restrct,rscale,inject,coarse,link->ctx);CHKERRQ(ierr); 30178865f1eaSKarl Rupp } 3018b17ce1afSJed Brown } 301947c6ae99SBarry Smith PetscFunctionReturn(0); 302047c6ae99SBarry Smith } 302147c6ae99SBarry Smith 3022bb9467b5SJed Brown /*@C 3023be081cd6SPeter Brune DMSubDomainHookAdd - adds a callback to be run when restricting a problem to the coarse grid 30245dbd56e3SPeter Brune 3025d083f849SBarry Smith Logically Collective on global 30265dbd56e3SPeter Brune 30275dbd56e3SPeter Brune Input Arguments: 30285dbd56e3SPeter Brune + global - global DM 3029ec4806b8SPeter Brune . ddhook - function to run to pass data to the decomposition DM upon its creation 30305dbd56e3SPeter Brune . restricthook - function to run to update data on block solve (at the beginning of the block solve) 30310298fd71SBarry Smith - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 30325dbd56e3SPeter Brune 3033ec4806b8SPeter Brune 3034ec4806b8SPeter Brune Calling sequence for ddhook: 3035ec4806b8SPeter Brune $ ddhook(DM global,DM block,void *ctx) 3036ec4806b8SPeter Brune 3037ec4806b8SPeter Brune + global - global DM 3038ec4806b8SPeter Brune . block - block DM 3039ec4806b8SPeter Brune - ctx - optional user-defined function context 3040ec4806b8SPeter Brune 30415dbd56e3SPeter Brune Calling sequence for restricthook: 3042ec4806b8SPeter Brune $ restricthook(DM global,VecScatter out,VecScatter in,DM block,void *ctx) 30435dbd56e3SPeter Brune 30445dbd56e3SPeter Brune + global - global DM 30455dbd56e3SPeter Brune . out - scatter to the outer (with ghost and overlap points) block vector 30465dbd56e3SPeter Brune . in - scatter to block vector values only owned locally 3047ec4806b8SPeter Brune . block - block DM 30485dbd56e3SPeter Brune - ctx - optional user-defined function context 30495dbd56e3SPeter Brune 30505dbd56e3SPeter Brune Level: advanced 30515dbd56e3SPeter Brune 30525dbd56e3SPeter Brune Notes: 3053ec4806b8SPeter Brune This function is only needed if auxiliary data needs to be set up on subdomain DMs. 30545dbd56e3SPeter Brune 30555dbd56e3SPeter Brune If this function is called multiple times, the hooks will be run in the order they are added. 30565dbd56e3SPeter Brune 30575dbd56e3SPeter Brune In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to 3058ec4806b8SPeter Brune extract the global information from its context (instead of from the SNES). 30595dbd56e3SPeter Brune 3060bb9467b5SJed Brown This function is currently not available from Fortran. 3061bb9467b5SJed Brown 30625dbd56e3SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 30635dbd56e3SPeter Brune @*/ 3064be081cd6SPeter Brune PetscErrorCode DMSubDomainHookAdd(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx) 30655dbd56e3SPeter Brune { 30665dbd56e3SPeter Brune PetscErrorCode ierr; 3067be081cd6SPeter Brune DMSubDomainHookLink link,*p; 30685dbd56e3SPeter Brune 30695dbd56e3SPeter Brune PetscFunctionBegin; 30705dbd56e3SPeter Brune PetscValidHeaderSpecific(global,DM_CLASSID,1); 3071b3a6b972SJed Brown for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */ 3072b3a6b972SJed Brown if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0); 3073b3a6b972SJed Brown } 307495dccacaSBarry Smith ierr = PetscNew(&link);CHKERRQ(ierr); 30755dbd56e3SPeter Brune link->restricthook = restricthook; 3076be081cd6SPeter Brune link->ddhook = ddhook; 30775dbd56e3SPeter Brune link->ctx = ctx; 30780298fd71SBarry Smith link->next = NULL; 30795dbd56e3SPeter Brune *p = link; 30805dbd56e3SPeter Brune PetscFunctionReturn(0); 30815dbd56e3SPeter Brune } 30825dbd56e3SPeter Brune 3083b3a6b972SJed Brown /*@C 3084b3a6b972SJed Brown DMSubDomainHookRemove - remove a callback from the list to be run when restricting a problem to the coarse grid 3085b3a6b972SJed Brown 3086b3a6b972SJed Brown Logically Collective 3087b3a6b972SJed Brown 3088b3a6b972SJed Brown Input Arguments: 3089b3a6b972SJed Brown + global - global DM 3090b3a6b972SJed Brown . ddhook - function to run to pass data to the decomposition DM upon its creation 3091b3a6b972SJed Brown . restricthook - function to run to update data on block solve (at the beginning of the block solve) 3092b3a6b972SJed Brown - ctx - [optional] user-defined context for provide data for the hooks (may be NULL) 3093b3a6b972SJed Brown 3094b3a6b972SJed Brown Level: advanced 3095b3a6b972SJed Brown 3096b3a6b972SJed Brown Notes: 3097b3a6b972SJed Brown 3098b3a6b972SJed Brown This function is currently not available from Fortran. 3099b3a6b972SJed Brown 3100b3a6b972SJed Brown .seealso: DMSubDomainHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate() 3101b3a6b972SJed Brown @*/ 3102b3a6b972SJed Brown PetscErrorCode DMSubDomainHookRemove(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx) 3103b3a6b972SJed Brown { 3104b3a6b972SJed Brown PetscErrorCode ierr; 3105b3a6b972SJed Brown DMSubDomainHookLink link,*p; 3106b3a6b972SJed Brown 3107b3a6b972SJed Brown PetscFunctionBegin; 3108b3a6b972SJed Brown PetscValidHeaderSpecific(global,DM_CLASSID,1); 3109b3a6b972SJed Brown for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Search the list of current hooks */ 3110b3a6b972SJed Brown if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) { 3111b3a6b972SJed Brown link = *p; 3112b3a6b972SJed Brown *p = link->next; 3113b3a6b972SJed Brown ierr = PetscFree(link);CHKERRQ(ierr); 3114b3a6b972SJed Brown break; 3115b3a6b972SJed Brown } 3116b3a6b972SJed Brown } 3117b3a6b972SJed Brown PetscFunctionReturn(0); 3118b3a6b972SJed Brown } 3119b3a6b972SJed Brown 31205dbd56e3SPeter Brune /*@ 3121be081cd6SPeter Brune DMSubDomainRestrict - restricts user-defined problem data to a block DM by running hooks registered by DMSubDomainHookAdd() 31225dbd56e3SPeter Brune 31235dbd56e3SPeter Brune Collective if any hooks are 31245dbd56e3SPeter Brune 31255dbd56e3SPeter Brune Input Arguments: 31265dbd56e3SPeter Brune + fine - finer DM to use as a base 3127be081cd6SPeter Brune . oscatter - scatter from domain global vector filling subdomain global vector with overlap 3128be081cd6SPeter Brune . gscatter - scatter from domain global vector filling subdomain local vector with ghosts 31295dbd56e3SPeter Brune - coarse - coarer DM to update 31305dbd56e3SPeter Brune 31315dbd56e3SPeter Brune Level: developer 31325dbd56e3SPeter Brune 31335dbd56e3SPeter Brune .seealso: DMCoarsenHookAdd(), MatRestrict() 31345dbd56e3SPeter Brune @*/ 3135be081cd6SPeter Brune PetscErrorCode DMSubDomainRestrict(DM global,VecScatter oscatter,VecScatter gscatter,DM subdm) 31365dbd56e3SPeter Brune { 31375dbd56e3SPeter Brune PetscErrorCode ierr; 3138be081cd6SPeter Brune DMSubDomainHookLink link; 31395dbd56e3SPeter Brune 31405dbd56e3SPeter Brune PetscFunctionBegin; 3141be081cd6SPeter Brune for (link=global->subdomainhook; link; link=link->next) { 31428865f1eaSKarl Rupp if (link->restricthook) { 31438865f1eaSKarl Rupp ierr = (*link->restricthook)(global,oscatter,gscatter,subdm,link->ctx);CHKERRQ(ierr); 31448865f1eaSKarl Rupp } 31455dbd56e3SPeter Brune } 31465dbd56e3SPeter Brune PetscFunctionReturn(0); 31475dbd56e3SPeter Brune } 31485dbd56e3SPeter Brune 31495fe1f584SPeter Brune /*@ 31506a7d9d85SPeter Brune DMGetCoarsenLevel - Get's the number of coarsenings that have generated this DM. 31515fe1f584SPeter Brune 31525fe1f584SPeter Brune Not Collective 31535fe1f584SPeter Brune 31545fe1f584SPeter Brune Input Parameter: 31555fe1f584SPeter Brune . dm - the DM object 31565fe1f584SPeter Brune 31575fe1f584SPeter Brune Output Parameter: 31586a7d9d85SPeter Brune . level - number of coarsenings 31595fe1f584SPeter Brune 31605fe1f584SPeter Brune Level: developer 31615fe1f584SPeter Brune 31626a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 31635fe1f584SPeter Brune 31645fe1f584SPeter Brune @*/ 31655fe1f584SPeter Brune PetscErrorCode DMGetCoarsenLevel(DM dm,PetscInt *level) 31665fe1f584SPeter Brune { 31675fe1f584SPeter Brune PetscFunctionBegin; 31685fe1f584SPeter Brune PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3169b9d85ea2SLisandro Dalcin PetscValidIntPointer(level,2); 31705fe1f584SPeter Brune *level = dm->leveldown; 31715fe1f584SPeter Brune PetscFunctionReturn(0); 31725fe1f584SPeter Brune } 31735fe1f584SPeter Brune 31749a64c4a8SMatthew G. Knepley /*@ 31759a64c4a8SMatthew G. Knepley DMSetCoarsenLevel - Sets the number of coarsenings that have generated this DM. 31769a64c4a8SMatthew G. Knepley 31779a64c4a8SMatthew G. Knepley Not Collective 31789a64c4a8SMatthew G. Knepley 31799a64c4a8SMatthew G. Knepley Input Parameters: 31809a64c4a8SMatthew G. Knepley + dm - the DM object 31819a64c4a8SMatthew G. Knepley - level - number of coarsenings 31829a64c4a8SMatthew G. Knepley 31839a64c4a8SMatthew G. Knepley Level: developer 31849a64c4a8SMatthew G. Knepley 31859a64c4a8SMatthew G. Knepley .seealso DMCoarsen(), DMGetCoarsenLevel(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 31869a64c4a8SMatthew G. Knepley @*/ 31879a64c4a8SMatthew G. Knepley PetscErrorCode DMSetCoarsenLevel(DM dm,PetscInt level) 31889a64c4a8SMatthew G. Knepley { 31899a64c4a8SMatthew G. Knepley PetscFunctionBegin; 31909a64c4a8SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 31919a64c4a8SMatthew G. Knepley dm->leveldown = level; 31929a64c4a8SMatthew G. Knepley PetscFunctionReturn(0); 31939a64c4a8SMatthew G. Knepley } 31949a64c4a8SMatthew G. Knepley 31955fe1f584SPeter Brune 31965fe1f584SPeter Brune 319747c6ae99SBarry Smith /*@C 319847c6ae99SBarry Smith DMRefineHierarchy - Refines a DM object, all levels at once 319947c6ae99SBarry Smith 3200d083f849SBarry Smith Collective on dm 320147c6ae99SBarry Smith 320247c6ae99SBarry Smith Input Parameter: 320347c6ae99SBarry Smith + dm - the DM object 320447c6ae99SBarry Smith - nlevels - the number of levels of refinement 320547c6ae99SBarry Smith 320647c6ae99SBarry Smith Output Parameter: 320747c6ae99SBarry Smith . dmf - the refined DM hierarchy 320847c6ae99SBarry Smith 320947c6ae99SBarry Smith Level: developer 321047c6ae99SBarry Smith 3211e727c939SJed Brown .seealso DMCoarsenHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 321247c6ae99SBarry Smith 321347c6ae99SBarry Smith @*/ 32147087cfbeSBarry Smith PetscErrorCode DMRefineHierarchy(DM dm,PetscInt nlevels,DM dmf[]) 321547c6ae99SBarry Smith { 321647c6ae99SBarry Smith PetscErrorCode ierr; 321747c6ae99SBarry Smith 321847c6ae99SBarry Smith PetscFunctionBegin; 3219171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3220ce94432eSBarry Smith if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative"); 322147c6ae99SBarry Smith if (nlevels == 0) PetscFunctionReturn(0); 3222b9d85ea2SLisandro Dalcin PetscValidPointer(dmf,3); 322347c6ae99SBarry Smith if (dm->ops->refinehierarchy) { 322447c6ae99SBarry Smith ierr = (*dm->ops->refinehierarchy)(dm,nlevels,dmf);CHKERRQ(ierr); 322547c6ae99SBarry Smith } else if (dm->ops->refine) { 322647c6ae99SBarry Smith PetscInt i; 322747c6ae99SBarry Smith 3228ce94432eSBarry Smith ierr = DMRefine(dm,PetscObjectComm((PetscObject)dm),&dmf[0]);CHKERRQ(ierr); 322947c6ae99SBarry Smith for (i=1; i<nlevels; i++) { 3230ce94432eSBarry Smith ierr = DMRefine(dmf[i-1],PetscObjectComm((PetscObject)dm),&dmf[i]);CHKERRQ(ierr); 323147c6ae99SBarry Smith } 3232ce94432eSBarry Smith } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No RefineHierarchy for this DM yet"); 323347c6ae99SBarry Smith PetscFunctionReturn(0); 323447c6ae99SBarry Smith } 323547c6ae99SBarry Smith 323647c6ae99SBarry Smith /*@C 323747c6ae99SBarry Smith DMCoarsenHierarchy - Coarsens a DM object, all levels at once 323847c6ae99SBarry Smith 3239d083f849SBarry Smith Collective on dm 324047c6ae99SBarry Smith 324147c6ae99SBarry Smith Input Parameter: 324247c6ae99SBarry Smith + dm - the DM object 324347c6ae99SBarry Smith - nlevels - the number of levels of coarsening 324447c6ae99SBarry Smith 324547c6ae99SBarry Smith Output Parameter: 324647c6ae99SBarry Smith . dmc - the coarsened DM hierarchy 324747c6ae99SBarry Smith 324847c6ae99SBarry Smith Level: developer 324947c6ae99SBarry Smith 3250e727c939SJed Brown .seealso DMRefineHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation() 325147c6ae99SBarry Smith 325247c6ae99SBarry Smith @*/ 32537087cfbeSBarry Smith PetscErrorCode DMCoarsenHierarchy(DM dm, PetscInt nlevels, DM dmc[]) 325447c6ae99SBarry Smith { 325547c6ae99SBarry Smith PetscErrorCode ierr; 325647c6ae99SBarry Smith 325747c6ae99SBarry Smith PetscFunctionBegin; 3258171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3259ce94432eSBarry Smith if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative"); 326047c6ae99SBarry Smith if (nlevels == 0) PetscFunctionReturn(0); 326147c6ae99SBarry Smith PetscValidPointer(dmc,3); 326247c6ae99SBarry Smith if (dm->ops->coarsenhierarchy) { 326347c6ae99SBarry Smith ierr = (*dm->ops->coarsenhierarchy)(dm, nlevels, dmc);CHKERRQ(ierr); 326447c6ae99SBarry Smith } else if (dm->ops->coarsen) { 326547c6ae99SBarry Smith PetscInt i; 326647c6ae99SBarry Smith 3267ce94432eSBarry Smith ierr = DMCoarsen(dm,PetscObjectComm((PetscObject)dm),&dmc[0]);CHKERRQ(ierr); 326847c6ae99SBarry Smith for (i=1; i<nlevels; i++) { 3269ce94432eSBarry Smith ierr = DMCoarsen(dmc[i-1],PetscObjectComm((PetscObject)dm),&dmc[i]);CHKERRQ(ierr); 327047c6ae99SBarry Smith } 3271ce94432eSBarry Smith } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No CoarsenHierarchy for this DM yet"); 327247c6ae99SBarry Smith PetscFunctionReturn(0); 327347c6ae99SBarry Smith } 327447c6ae99SBarry Smith 32751a266240SBarry Smith /*@C 32761a266240SBarry Smith DMSetApplicationContextDestroy - Sets a user function that will be called to destroy the application context when the DM is destroyed 32771a266240SBarry Smith 32781a266240SBarry Smith Not Collective 32791a266240SBarry Smith 32801a266240SBarry Smith Input Parameters: 32811a266240SBarry Smith + dm - the DM object 32821a266240SBarry Smith - destroy - the destroy function 32831a266240SBarry Smith 32841a266240SBarry Smith Level: intermediate 32851a266240SBarry Smith 3286e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext() 32871a266240SBarry Smith 3288f07f9ceaSJed Brown @*/ 32891a266240SBarry Smith PetscErrorCode DMSetApplicationContextDestroy(DM dm,PetscErrorCode (*destroy)(void**)) 32901a266240SBarry Smith { 32911a266240SBarry Smith PetscFunctionBegin; 3292171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 32931a266240SBarry Smith dm->ctxdestroy = destroy; 32941a266240SBarry Smith PetscFunctionReturn(0); 32951a266240SBarry Smith } 32961a266240SBarry Smith 3297b07ff414SBarry Smith /*@ 32981b2093e4SBarry Smith DMSetApplicationContext - Set a user context into a DM object 329947c6ae99SBarry Smith 330047c6ae99SBarry Smith Not Collective 330147c6ae99SBarry Smith 330247c6ae99SBarry Smith Input Parameters: 330347c6ae99SBarry Smith + dm - the DM object 330447c6ae99SBarry Smith - ctx - the user context 330547c6ae99SBarry Smith 330647c6ae99SBarry Smith Level: intermediate 330747c6ae99SBarry Smith 3308e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext() 330947c6ae99SBarry Smith 331047c6ae99SBarry Smith @*/ 33111b2093e4SBarry Smith PetscErrorCode DMSetApplicationContext(DM dm,void *ctx) 331247c6ae99SBarry Smith { 331347c6ae99SBarry Smith PetscFunctionBegin; 3314171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 331547c6ae99SBarry Smith dm->ctx = ctx; 331647c6ae99SBarry Smith PetscFunctionReturn(0); 331747c6ae99SBarry Smith } 331847c6ae99SBarry Smith 331947c6ae99SBarry Smith /*@ 33201b2093e4SBarry Smith DMGetApplicationContext - Gets a user context from a DM object 332147c6ae99SBarry Smith 332247c6ae99SBarry Smith Not Collective 332347c6ae99SBarry Smith 332447c6ae99SBarry Smith Input Parameter: 332547c6ae99SBarry Smith . dm - the DM object 332647c6ae99SBarry Smith 332747c6ae99SBarry Smith Output Parameter: 332847c6ae99SBarry Smith . ctx - the user context 332947c6ae99SBarry Smith 333047c6ae99SBarry Smith Level: intermediate 333147c6ae99SBarry Smith 3332e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext() 333347c6ae99SBarry Smith 333447c6ae99SBarry Smith @*/ 33351b2093e4SBarry Smith PetscErrorCode DMGetApplicationContext(DM dm,void *ctx) 333647c6ae99SBarry Smith { 333747c6ae99SBarry Smith PetscFunctionBegin; 3338171400e9SBarry Smith PetscValidHeaderSpecific(dm,DM_CLASSID,1); 33391b2093e4SBarry Smith *(void**)ctx = dm->ctx; 334047c6ae99SBarry Smith PetscFunctionReturn(0); 334147c6ae99SBarry Smith } 334247c6ae99SBarry Smith 334308da532bSDmitry Karpeev /*@C 3344df3898eeSBarry Smith DMSetVariableBounds - sets a function to compute the lower and upper bound vectors for SNESVI. 334508da532bSDmitry Karpeev 3346d083f849SBarry Smith Logically Collective on dm 334708da532bSDmitry Karpeev 334808da532bSDmitry Karpeev Input Parameter: 334908da532bSDmitry Karpeev + dm - the DM object 33500298fd71SBarry Smith - f - the function that computes variable bounds used by SNESVI (use NULL to cancel a previous function that was set) 335108da532bSDmitry Karpeev 335208da532bSDmitry Karpeev Level: intermediate 335308da532bSDmitry Karpeev 3354835c3ec7SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext(), 335508da532bSDmitry Karpeev DMSetJacobian() 335608da532bSDmitry Karpeev 335708da532bSDmitry Karpeev @*/ 335808da532bSDmitry Karpeev PetscErrorCode DMSetVariableBounds(DM dm,PetscErrorCode (*f)(DM,Vec,Vec)) 335908da532bSDmitry Karpeev { 336008da532bSDmitry Karpeev PetscFunctionBegin; 33615a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 336208da532bSDmitry Karpeev dm->ops->computevariablebounds = f; 336308da532bSDmitry Karpeev PetscFunctionReturn(0); 336408da532bSDmitry Karpeev } 336508da532bSDmitry Karpeev 336608da532bSDmitry Karpeev /*@ 336708da532bSDmitry Karpeev DMHasVariableBounds - does the DM object have a variable bounds function? 336808da532bSDmitry Karpeev 336908da532bSDmitry Karpeev Not Collective 337008da532bSDmitry Karpeev 337108da532bSDmitry Karpeev Input Parameter: 337208da532bSDmitry Karpeev . dm - the DM object to destroy 337308da532bSDmitry Karpeev 337408da532bSDmitry Karpeev Output Parameter: 337508da532bSDmitry Karpeev . flg - PETSC_TRUE if the variable bounds function exists 337608da532bSDmitry Karpeev 337708da532bSDmitry Karpeev Level: developer 337808da532bSDmitry Karpeev 337974e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext() 338008da532bSDmitry Karpeev 338108da532bSDmitry Karpeev @*/ 338208da532bSDmitry Karpeev PetscErrorCode DMHasVariableBounds(DM dm,PetscBool *flg) 338308da532bSDmitry Karpeev { 338408da532bSDmitry Karpeev PetscFunctionBegin; 33855a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3386534a8f05SLisandro Dalcin PetscValidBoolPointer(flg,2); 338708da532bSDmitry Karpeev *flg = (dm->ops->computevariablebounds) ? PETSC_TRUE : PETSC_FALSE; 338808da532bSDmitry Karpeev PetscFunctionReturn(0); 338908da532bSDmitry Karpeev } 339008da532bSDmitry Karpeev 339108da532bSDmitry Karpeev /*@C 339208da532bSDmitry Karpeev DMComputeVariableBounds - compute variable bounds used by SNESVI. 339308da532bSDmitry Karpeev 3394d083f849SBarry Smith Logically Collective on dm 339508da532bSDmitry Karpeev 339608da532bSDmitry Karpeev Input Parameters: 3397907376e6SBarry Smith . dm - the DM object 339808da532bSDmitry Karpeev 339908da532bSDmitry Karpeev Output parameters: 340008da532bSDmitry Karpeev + xl - lower bound 340108da532bSDmitry Karpeev - xu - upper bound 340208da532bSDmitry Karpeev 3403907376e6SBarry Smith Level: advanced 3404907376e6SBarry Smith 340595452b02SPatrick Sanan Notes: 340695452b02SPatrick Sanan This is generally not called by users. It calls the function provided by the user with DMSetVariableBounds() 340708da532bSDmitry Karpeev 340874e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext() 340908da532bSDmitry Karpeev 341008da532bSDmitry Karpeev @*/ 341108da532bSDmitry Karpeev PetscErrorCode DMComputeVariableBounds(DM dm, Vec xl, Vec xu) 341208da532bSDmitry Karpeev { 341308da532bSDmitry Karpeev PetscErrorCode ierr; 34145fd66863SKarl Rupp 341508da532bSDmitry Karpeev PetscFunctionBegin; 34165a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 341708da532bSDmitry Karpeev PetscValidHeaderSpecific(xl,VEC_CLASSID,2); 34185a84ad33SLisandro Dalcin PetscValidHeaderSpecific(xu,VEC_CLASSID,3); 3419b9d85ea2SLisandro Dalcin if (!dm->ops->computevariablebounds) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeVariableBounds",((PetscObject)dm)->type_name); 342008da532bSDmitry Karpeev ierr = (*dm->ops->computevariablebounds)(dm, xl,xu);CHKERRQ(ierr); 342108da532bSDmitry Karpeev PetscFunctionReturn(0); 342208da532bSDmitry Karpeev } 342308da532bSDmitry Karpeev 3424b0ae01b7SPeter Brune /*@ 3425b0ae01b7SPeter Brune DMHasColoring - does the DM object have a method of providing a coloring? 3426b0ae01b7SPeter Brune 3427b0ae01b7SPeter Brune Not Collective 3428b0ae01b7SPeter Brune 3429b0ae01b7SPeter Brune Input Parameter: 3430b0ae01b7SPeter Brune . dm - the DM object 3431b0ae01b7SPeter Brune 3432b0ae01b7SPeter Brune Output Parameter: 3433b0ae01b7SPeter Brune . flg - PETSC_TRUE if the DM has facilities for DMCreateColoring(). 3434b0ae01b7SPeter Brune 3435b0ae01b7SPeter Brune Level: developer 3436b0ae01b7SPeter Brune 34371565f0a7SPatrick Sanan .seealso DMCreateColoring() 3438b0ae01b7SPeter Brune 3439b0ae01b7SPeter Brune @*/ 3440b0ae01b7SPeter Brune PetscErrorCode DMHasColoring(DM dm,PetscBool *flg) 3441b0ae01b7SPeter Brune { 3442b0ae01b7SPeter Brune PetscFunctionBegin; 34435a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3444534a8f05SLisandro Dalcin PetscValidBoolPointer(flg,2); 3445b0ae01b7SPeter Brune *flg = (dm->ops->getcoloring) ? PETSC_TRUE : PETSC_FALSE; 3446b0ae01b7SPeter Brune PetscFunctionReturn(0); 3447b0ae01b7SPeter Brune } 3448b0ae01b7SPeter Brune 34493ad4599aSBarry Smith /*@ 34503ad4599aSBarry Smith DMHasCreateRestriction - does the DM object have a method of providing a restriction? 34513ad4599aSBarry Smith 34523ad4599aSBarry Smith Not Collective 34533ad4599aSBarry Smith 34543ad4599aSBarry Smith Input Parameter: 34553ad4599aSBarry Smith . dm - the DM object 34563ad4599aSBarry Smith 34573ad4599aSBarry Smith Output Parameter: 34583ad4599aSBarry Smith . flg - PETSC_TRUE if the DM has facilities for DMCreateRestriction(). 34593ad4599aSBarry Smith 34603ad4599aSBarry Smith Level: developer 34613ad4599aSBarry Smith 34621565f0a7SPatrick Sanan .seealso DMCreateRestriction() 34633ad4599aSBarry Smith 34643ad4599aSBarry Smith @*/ 34653ad4599aSBarry Smith PetscErrorCode DMHasCreateRestriction(DM dm,PetscBool *flg) 34663ad4599aSBarry Smith { 34673ad4599aSBarry Smith PetscFunctionBegin; 34685a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3469534a8f05SLisandro Dalcin PetscValidBoolPointer(flg,2); 34703ad4599aSBarry Smith *flg = (dm->ops->createrestriction) ? PETSC_TRUE : PETSC_FALSE; 34713ad4599aSBarry Smith PetscFunctionReturn(0); 34723ad4599aSBarry Smith } 34733ad4599aSBarry Smith 3474a7058e45SLawrence Mitchell 3475a7058e45SLawrence Mitchell /*@ 3476a7058e45SLawrence Mitchell DMHasCreateInjection - does the DM object have a method of providing an injection? 3477a7058e45SLawrence Mitchell 3478a7058e45SLawrence Mitchell Not Collective 3479a7058e45SLawrence Mitchell 3480a7058e45SLawrence Mitchell Input Parameter: 3481a7058e45SLawrence Mitchell . dm - the DM object 3482a7058e45SLawrence Mitchell 3483a7058e45SLawrence Mitchell Output Parameter: 3484a7058e45SLawrence Mitchell . flg - PETSC_TRUE if the DM has facilities for DMCreateInjection(). 3485a7058e45SLawrence Mitchell 3486a7058e45SLawrence Mitchell Level: developer 3487a7058e45SLawrence Mitchell 34881565f0a7SPatrick Sanan .seealso DMCreateInjection() 3489a7058e45SLawrence Mitchell 3490a7058e45SLawrence Mitchell @*/ 3491a7058e45SLawrence Mitchell PetscErrorCode DMHasCreateInjection(DM dm,PetscBool *flg) 3492a7058e45SLawrence Mitchell { 34934a7a4c06SLawrence Mitchell PetscErrorCode ierr; 34945a84ad33SLisandro Dalcin 3495a7058e45SLawrence Mitchell PetscFunctionBegin; 34965a84ad33SLisandro Dalcin PetscValidHeaderSpecific(dm,DM_CLASSID,1); 3497534a8f05SLisandro Dalcin PetscValidBoolPointer(flg,2); 34985a84ad33SLisandro Dalcin if (dm->ops->hascreateinjection) { 34994a7a4c06SLawrence Mitchell ierr = (*dm->ops->hascreateinjection)(dm,flg);CHKERRQ(ierr); 35005a84ad33SLisandro Dalcin } else { 35015a84ad33SLisandro Dalcin *flg = (dm->ops->createinjection) ? PETSC_TRUE : PETSC_FALSE; 35025a84ad33SLisandro Dalcin } 3503a7058e45SLawrence Mitchell PetscFunctionReturn(0); 3504a7058e45SLawrence Mitchell } 3505a7058e45SLawrence Mitchell 35060298fd71SBarry Smith PetscFunctionList DMList = NULL; 3507264ace61SBarry Smith PetscBool DMRegisterAllCalled = PETSC_FALSE; 3508264ace61SBarry Smith 3509264ace61SBarry Smith /*@C 3510264ace61SBarry Smith DMSetType - Builds a DM, for a particular DM implementation. 3511264ace61SBarry Smith 3512d083f849SBarry Smith Collective on dm 3513264ace61SBarry Smith 3514264ace61SBarry Smith Input Parameters: 3515264ace61SBarry Smith + dm - The DM object 3516264ace61SBarry Smith - method - The name of the DM type 3517264ace61SBarry Smith 3518264ace61SBarry Smith Options Database Key: 3519264ace61SBarry Smith . -dm_type <type> - Sets the DM type; use -help for a list of available types 3520264ace61SBarry Smith 3521264ace61SBarry Smith Notes: 3522e1589f56SBarry Smith See "petsc/include/petscdm.h" for available DM types (for instance, DM1D, DM2D, or DM3D). 3523264ace61SBarry Smith 3524264ace61SBarry Smith Level: intermediate 3525264ace61SBarry Smith 3526264ace61SBarry Smith .seealso: DMGetType(), DMCreate() 3527264ace61SBarry Smith @*/ 352819fd82e9SBarry Smith PetscErrorCode DMSetType(DM dm, DMType method) 3529264ace61SBarry Smith { 3530264ace61SBarry Smith PetscErrorCode (*r)(DM); 3531264ace61SBarry Smith PetscBool match; 3532264ace61SBarry Smith PetscErrorCode ierr; 3533264ace61SBarry Smith 3534264ace61SBarry Smith PetscFunctionBegin; 3535264ace61SBarry Smith PetscValidHeaderSpecific(dm, DM_CLASSID,1); 3536251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject) dm, method, &match);CHKERRQ(ierr); 3537264ace61SBarry Smith if (match) PetscFunctionReturn(0); 3538264ace61SBarry Smith 35390f51fdf8SToby Isaac ierr = DMRegisterAll();CHKERRQ(ierr); 35401c9cd337SJed Brown ierr = PetscFunctionListFind(DMList,method,&r);CHKERRQ(ierr); 3541ce94432eSBarry Smith if (!r) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown DM type: %s", method); 3542264ace61SBarry Smith 3543264ace61SBarry Smith if (dm->ops->destroy) { 3544264ace61SBarry Smith ierr = (*dm->ops->destroy)(dm);CHKERRQ(ierr); 3545264ace61SBarry Smith } 3546d57f96a3SLisandro Dalcin ierr = PetscMemzero(dm->ops,sizeof(*dm->ops));CHKERRQ(ierr); 3547264ace61SBarry Smith ierr = PetscObjectChangeTypeName((PetscObject)dm,method);CHKERRQ(ierr); 3548d57f96a3SLisandro Dalcin ierr = (*r)(dm);CHKERRQ(ierr); 3549264ace61SBarry Smith PetscFunctionReturn(0); 3550264ace61SBarry Smith } 3551264ace61SBarry Smith 3552264ace61SBarry Smith /*@C 3553264ace61SBarry Smith DMGetType - Gets the DM type name (as a string) from the DM. 3554264ace61SBarry Smith 3555264ace61SBarry Smith Not Collective 3556264ace61SBarry Smith 3557264ace61SBarry Smith Input Parameter: 3558264ace61SBarry Smith . dm - The DM 3559264ace61SBarry Smith 3560264ace61SBarry Smith Output Parameter: 3561264ace61SBarry Smith . type - The DM type name 3562264ace61SBarry Smith 3563264ace61SBarry Smith Level: intermediate 3564264ace61SBarry Smith 3565264ace61SBarry Smith .seealso: DMSetType(), DMCreate() 3566264ace61SBarry Smith @*/ 356719fd82e9SBarry Smith PetscErrorCode DMGetType(DM dm, DMType *type) 3568264ace61SBarry Smith { 3569264ace61SBarry Smith PetscErrorCode ierr; 3570264ace61SBarry Smith 3571264ace61SBarry Smith PetscFunctionBegin; 3572264ace61SBarry Smith PetscValidHeaderSpecific(dm, DM_CLASSID,1); 3573c959eef4SJed Brown PetscValidPointer(type,2); 3574607a6623SBarry Smith ierr = DMRegisterAll();CHKERRQ(ierr); 3575264ace61SBarry Smith *type = ((PetscObject)dm)->type_name; 3576264ace61SBarry Smith PetscFunctionReturn(0); 3577264ace61SBarry Smith } 3578264ace61SBarry Smith 357967a56275SMatthew G Knepley /*@C 358067a56275SMatthew G Knepley DMConvert - Converts a DM to another DM, either of the same or different type. 358167a56275SMatthew G Knepley 3582d083f849SBarry Smith Collective on dm 358367a56275SMatthew G Knepley 358467a56275SMatthew G Knepley Input Parameters: 358567a56275SMatthew G Knepley + dm - the DM 358667a56275SMatthew G Knepley - newtype - new DM type (use "same" for the same type) 358767a56275SMatthew G Knepley 358867a56275SMatthew G Knepley Output Parameter: 358967a56275SMatthew G Knepley . M - pointer to new DM 359067a56275SMatthew G Knepley 359167a56275SMatthew G Knepley Notes: 359267a56275SMatthew G Knepley Cannot be used to convert a sequential DM to parallel or parallel to sequential, 359367a56275SMatthew G Knepley the MPI communicator of the generated DM is always the same as the communicator 359467a56275SMatthew G Knepley of the input DM. 359567a56275SMatthew G Knepley 359667a56275SMatthew G Knepley Level: intermediate 359767a56275SMatthew G Knepley 359867a56275SMatthew G Knepley .seealso: DMCreate() 359967a56275SMatthew G Knepley @*/ 360019fd82e9SBarry Smith PetscErrorCode DMConvert(DM dm, DMType newtype, DM *M) 360167a56275SMatthew G Knepley { 360267a56275SMatthew G Knepley DM B; 360367a56275SMatthew G Knepley char convname[256]; 3604c067b6caSMatthew G. Knepley PetscBool sametype/*, issame */; 360567a56275SMatthew G Knepley PetscErrorCode ierr; 360667a56275SMatthew G Knepley 360767a56275SMatthew G Knepley PetscFunctionBegin; 360867a56275SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 360967a56275SMatthew G Knepley PetscValidType(dm,1); 361067a56275SMatthew G Knepley PetscValidPointer(M,3); 3611251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject) dm, newtype, &sametype);CHKERRQ(ierr); 3612c067b6caSMatthew G. Knepley /* ierr = PetscStrcmp(newtype, "same", &issame);CHKERRQ(ierr); */ 3613c067b6caSMatthew G. Knepley if (sametype) { 3614c067b6caSMatthew G. Knepley *M = dm; 3615c067b6caSMatthew G. Knepley ierr = PetscObjectReference((PetscObject) dm);CHKERRQ(ierr); 3616c067b6caSMatthew G. Knepley PetscFunctionReturn(0); 3617c067b6caSMatthew G. Knepley } else { 36180298fd71SBarry Smith PetscErrorCode (*conv)(DM, DMType, DM*) = NULL; 361967a56275SMatthew G Knepley 362067a56275SMatthew G Knepley /* 362167a56275SMatthew G Knepley Order of precedence: 362267a56275SMatthew G Knepley 1) See if a specialized converter is known to the current DM. 362367a56275SMatthew G Knepley 2) See if a specialized converter is known to the desired DM class. 362467a56275SMatthew G Knepley 3) See if a good general converter is registered for the desired class 362567a56275SMatthew G Knepley 4) See if a good general converter is known for the current matrix. 362667a56275SMatthew G Knepley 5) Use a really basic converter. 362767a56275SMatthew G Knepley */ 362867a56275SMatthew G Knepley 362967a56275SMatthew G Knepley /* 1) See if a specialized converter is known to the current DM and the desired class */ 3630a126751eSBarry Smith ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr); 3631a126751eSBarry Smith ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr); 3632a126751eSBarry Smith ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr); 3633a126751eSBarry Smith ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr); 3634a126751eSBarry Smith ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr); 36350005d66cSJed Brown ierr = PetscObjectQueryFunction((PetscObject)dm,convname,&conv);CHKERRQ(ierr); 363667a56275SMatthew G Knepley if (conv) goto foundconv; 363767a56275SMatthew G Knepley 363867a56275SMatthew G Knepley /* 2) See if a specialized converter is known to the desired DM class. */ 363982f516ccSBarry Smith ierr = DMCreate(PetscObjectComm((PetscObject)dm), &B);CHKERRQ(ierr); 364067a56275SMatthew G Knepley ierr = DMSetType(B, newtype);CHKERRQ(ierr); 3641a126751eSBarry Smith ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr); 3642a126751eSBarry Smith ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr); 3643a126751eSBarry Smith ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr); 3644a126751eSBarry Smith ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr); 3645a126751eSBarry Smith ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr); 36460005d66cSJed Brown ierr = PetscObjectQueryFunction((PetscObject)B,convname,&conv);CHKERRQ(ierr); 364767a56275SMatthew G Knepley if (conv) { 3648fcfd50ebSBarry Smith ierr = DMDestroy(&B);CHKERRQ(ierr); 364967a56275SMatthew G Knepley goto foundconv; 365067a56275SMatthew G Knepley } 365167a56275SMatthew G Knepley 365267a56275SMatthew G Knepley #if 0 365367a56275SMatthew G Knepley /* 3) See if a good general converter is registered for the desired class */ 365467a56275SMatthew G Knepley conv = B->ops->convertfrom; 3655fcfd50ebSBarry Smith ierr = DMDestroy(&B);CHKERRQ(ierr); 365667a56275SMatthew G Knepley if (conv) goto foundconv; 365767a56275SMatthew G Knepley 365867a56275SMatthew G Knepley /* 4) See if a good general converter is known for the current matrix */ 365967a56275SMatthew G Knepley if (dm->ops->convert) { 366067a56275SMatthew G Knepley conv = dm->ops->convert; 366167a56275SMatthew G Knepley } 366267a56275SMatthew G Knepley if (conv) goto foundconv; 366367a56275SMatthew G Knepley #endif 366467a56275SMatthew G Knepley 366567a56275SMatthew G Knepley /* 5) Use a really basic converter. */ 366682f516ccSBarry Smith SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "No conversion possible between DM types %s and %s", ((PetscObject) dm)->type_name, newtype); 366767a56275SMatthew G Knepley 366867a56275SMatthew G Knepley foundconv: 366967a56275SMatthew G Knepley ierr = PetscLogEventBegin(DM_Convert,dm,0,0,0);CHKERRQ(ierr); 367067a56275SMatthew G Knepley ierr = (*conv)(dm,newtype,M);CHKERRQ(ierr); 367112fa691eSMatthew G. Knepley /* Things that are independent of DM type: We should consult DMClone() here */ 367290b157c4SStefano Zampini { 367390b157c4SStefano Zampini PetscBool isper; 367412fa691eSMatthew G. Knepley const PetscReal *maxCell, *L; 367512fa691eSMatthew G. Knepley const DMBoundaryType *bd; 367690b157c4SStefano Zampini ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr); 367790b157c4SStefano Zampini ierr = DMSetPeriodicity(*M, isper, maxCell, L, bd);CHKERRQ(ierr); 367812fa691eSMatthew G. Knepley } 367967a56275SMatthew G Knepley ierr = PetscLogEventEnd(DM_Convert,dm,0,0,0);CHKERRQ(ierr); 368067a56275SMatthew G Knepley } 368167a56275SMatthew G Knepley ierr = PetscObjectStateIncrease((PetscObject) *M);CHKERRQ(ierr); 368267a56275SMatthew G Knepley PetscFunctionReturn(0); 368367a56275SMatthew G Knepley } 3684264ace61SBarry Smith 3685264ace61SBarry Smith /*--------------------------------------------------------------------------------------------------------------------*/ 3686264ace61SBarry Smith 3687264ace61SBarry Smith /*@C 36881c84c290SBarry Smith DMRegister - Adds a new DM component implementation 36891c84c290SBarry Smith 36901c84c290SBarry Smith Not Collective 36911c84c290SBarry Smith 36921c84c290SBarry Smith Input Parameters: 36931c84c290SBarry Smith + name - The name of a new user-defined creation routine 36941c84c290SBarry Smith - create_func - The creation routine itself 36951c84c290SBarry Smith 36961c84c290SBarry Smith Notes: 36971c84c290SBarry Smith DMRegister() may be called multiple times to add several user-defined DMs 36981c84c290SBarry Smith 36991c84c290SBarry Smith 37001c84c290SBarry Smith Sample usage: 37011c84c290SBarry Smith .vb 3702bdf89e91SBarry Smith DMRegister("my_da", MyDMCreate); 37031c84c290SBarry Smith .ve 37041c84c290SBarry Smith 37051c84c290SBarry Smith Then, your DM type can be chosen with the procedural interface via 37061c84c290SBarry Smith .vb 37071c84c290SBarry Smith DMCreate(MPI_Comm, DM *); 37081c84c290SBarry Smith DMSetType(DM,"my_da"); 37091c84c290SBarry Smith .ve 37101c84c290SBarry Smith or at runtime via the option 37111c84c290SBarry Smith .vb 37121c84c290SBarry Smith -da_type my_da 37131c84c290SBarry Smith .ve 3714264ace61SBarry Smith 3715264ace61SBarry Smith Level: advanced 37161c84c290SBarry Smith 3717bdf89e91SBarry Smith .seealso: DMRegisterAll(), DMRegisterDestroy() 37181c84c290SBarry Smith 3719264ace61SBarry Smith @*/ 3720bdf89e91SBarry Smith PetscErrorCode DMRegister(const char sname[],PetscErrorCode (*function)(DM)) 3721264ace61SBarry Smith { 3722264ace61SBarry Smith PetscErrorCode ierr; 3723264ace61SBarry Smith 3724264ace61SBarry Smith PetscFunctionBegin; 37251d36bdfdSBarry Smith ierr = DMInitializePackage();CHKERRQ(ierr); 3726a240a19fSJed Brown ierr = PetscFunctionListAdd(&DMList,sname,function);CHKERRQ(ierr); 3727264ace61SBarry Smith PetscFunctionReturn(0); 3728264ace61SBarry Smith } 3729264ace61SBarry Smith 3730b859378eSBarry Smith /*@C 373155849f57SBarry Smith DMLoad - Loads a DM that has been stored in binary with DMView(). 3732b859378eSBarry Smith 3733d083f849SBarry Smith Collective on viewer 3734b859378eSBarry Smith 3735b859378eSBarry Smith Input Parameters: 3736b859378eSBarry Smith + newdm - the newly loaded DM, this needs to have been created with DMCreate() or 3737b859378eSBarry Smith some related function before a call to DMLoad(). 3738b859378eSBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen() or 3739b859378eSBarry Smith HDF5 file viewer, obtained from PetscViewerHDF5Open() 3740b859378eSBarry Smith 3741b859378eSBarry Smith Level: intermediate 3742b859378eSBarry Smith 3743b859378eSBarry Smith Notes: 374455849f57SBarry Smith The type is determined by the data in the file, any type set into the DM before this call is ignored. 3745b859378eSBarry Smith 3746b859378eSBarry Smith Notes for advanced users: 3747b859378eSBarry Smith Most users should not need to know the details of the binary storage 3748b859378eSBarry Smith format, since DMLoad() and DMView() completely hide these details. 3749b859378eSBarry Smith But for anyone who's interested, the standard binary matrix storage 3750b859378eSBarry Smith format is 3751b859378eSBarry Smith .vb 3752b859378eSBarry Smith has not yet been determined 3753b859378eSBarry Smith .ve 3754b859378eSBarry Smith 3755b859378eSBarry Smith .seealso: PetscViewerBinaryOpen(), DMView(), MatLoad(), VecLoad() 3756b859378eSBarry Smith @*/ 3757b859378eSBarry Smith PetscErrorCode DMLoad(DM newdm, PetscViewer viewer) 3758b859378eSBarry Smith { 37599331c7a4SMatthew G. Knepley PetscBool isbinary, ishdf5; 3760b859378eSBarry Smith PetscErrorCode ierr; 3761b859378eSBarry Smith 3762b859378eSBarry Smith PetscFunctionBegin; 3763b859378eSBarry Smith PetscValidHeaderSpecific(newdm,DM_CLASSID,1); 3764b859378eSBarry Smith PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); 3765fb694a9eSVaclav Hapla ierr = PetscViewerCheckReadable(viewer);CHKERRQ(ierr); 376632c0f0efSBarry Smith ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr); 37679331c7a4SMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERHDF5,&ishdf5);CHKERRQ(ierr); 376858cd63d5SVaclav Hapla ierr = PetscLogEventBegin(DM_Load,viewer,0,0,0);CHKERRQ(ierr); 37699331c7a4SMatthew G. Knepley if (isbinary) { 37709331c7a4SMatthew G. Knepley PetscInt classid; 37719331c7a4SMatthew G. Knepley char type[256]; 3772b859378eSBarry Smith 3773060da220SMatthew G. Knepley ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr); 37749200755eSBarry Smith if (classid != DM_FILE_CLASSID) SETERRQ1(PetscObjectComm((PetscObject)newdm),PETSC_ERR_ARG_WRONG,"Not DM next in file, classid found %d",(int)classid); 3775060da220SMatthew G. Knepley ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr); 377632c0f0efSBarry Smith ierr = DMSetType(newdm, type);CHKERRQ(ierr); 37779331c7a4SMatthew G. Knepley if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);} 37789331c7a4SMatthew G. Knepley } else if (ishdf5) { 37799331c7a4SMatthew G. Knepley if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);} 37809331c7a4SMatthew G. Knepley } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen() or PetscViewerHDF5Open()"); 378158cd63d5SVaclav Hapla ierr = PetscLogEventEnd(DM_Load,viewer,0,0,0);CHKERRQ(ierr); 3782b859378eSBarry Smith PetscFunctionReturn(0); 3783b859378eSBarry Smith } 3784b859378eSBarry Smith 3785b2e4378dSMatthew G. Knepley /*@ 3786b2e4378dSMatthew G. Knepley DMGetLocalBoundingBox - Returns the bounding box for the piece of the DM on this process. 3787b2e4378dSMatthew G. Knepley 3788b2e4378dSMatthew G. Knepley Not collective 3789b2e4378dSMatthew G. Knepley 3790b2e4378dSMatthew G. Knepley Input Parameter: 3791b2e4378dSMatthew G. Knepley . dm - the DM 3792b2e4378dSMatthew G. Knepley 3793b2e4378dSMatthew G. Knepley Output Parameters: 3794b2e4378dSMatthew G. Knepley + lmin - local minimum coordinates (length coord dim, optional) 3795b2e4378dSMatthew G. Knepley - lmax - local maximim coordinates (length coord dim, optional) 3796b2e4378dSMatthew G. Knepley 3797b2e4378dSMatthew G. Knepley Level: beginner 3798b2e4378dSMatthew G. Knepley 3799b2e4378dSMatthew G. Knepley Note: If the DM is a DMDA and has no coordinates, the index bounds are returned instead. 3800b2e4378dSMatthew G. Knepley 3801b2e4378dSMatthew G. Knepley 3802b2e4378dSMatthew G. Knepley .seealso: DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetBoundingBox() 3803b2e4378dSMatthew G. Knepley @*/ 3804b2e4378dSMatthew G. Knepley PetscErrorCode DMGetLocalBoundingBox(DM dm, PetscReal lmin[], PetscReal lmax[]) 3805b2e4378dSMatthew G. Knepley { 3806b2e4378dSMatthew G. Knepley Vec coords = NULL; 3807b2e4378dSMatthew G. Knepley PetscReal min[3] = {PETSC_MAX_REAL, PETSC_MAX_REAL, PETSC_MAX_REAL}; 3808b2e4378dSMatthew G. Knepley PetscReal max[3] = {PETSC_MIN_REAL, PETSC_MIN_REAL, PETSC_MIN_REAL}; 3809b2e4378dSMatthew G. Knepley const PetscScalar *local_coords; 3810b2e4378dSMatthew G. Knepley PetscInt N, Ni; 3811b2e4378dSMatthew G. Knepley PetscInt cdim, i, j; 3812b2e4378dSMatthew G. Knepley PetscErrorCode ierr; 3813b2e4378dSMatthew G. Knepley 3814b2e4378dSMatthew G. Knepley PetscFunctionBegin; 3815b2e4378dSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3816b2e4378dSMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 3817b2e4378dSMatthew G. Knepley ierr = DMGetCoordinates(dm, &coords);CHKERRQ(ierr); 3818b2e4378dSMatthew G. Knepley if (coords) { 3819b2e4378dSMatthew G. Knepley ierr = VecGetArrayRead(coords, &local_coords);CHKERRQ(ierr); 3820b2e4378dSMatthew G. Knepley ierr = VecGetLocalSize(coords, &N);CHKERRQ(ierr); 3821b2e4378dSMatthew G. Knepley Ni = N/cdim; 3822b2e4378dSMatthew G. Knepley for (i = 0; i < Ni; ++i) { 3823b2e4378dSMatthew G. Knepley for (j = 0; j < 3; ++j) { 3824b2e4378dSMatthew G. Knepley min[j] = j < cdim ? PetscMin(min[j], PetscRealPart(local_coords[i*cdim+j])) : 0; 3825b2e4378dSMatthew G. Knepley max[j] = j < cdim ? PetscMax(max[j], PetscRealPart(local_coords[i*cdim+j])) : 0; 3826b2e4378dSMatthew G. Knepley } 3827b2e4378dSMatthew G. Knepley } 3828b2e4378dSMatthew G. Knepley ierr = VecRestoreArrayRead(coords, &local_coords);CHKERRQ(ierr); 3829b2e4378dSMatthew G. Knepley } else { 3830b2e4378dSMatthew G. Knepley PetscBool isda; 3831b2e4378dSMatthew G. Knepley 3832b2e4378dSMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) dm, DMDA, &isda);CHKERRQ(ierr); 3833b2e4378dSMatthew G. Knepley if (isda) {ierr = DMGetLocalBoundingIndices_DMDA(dm, min, max);CHKERRQ(ierr);} 3834b2e4378dSMatthew G. Knepley } 3835b2e4378dSMatthew G. Knepley if (lmin) {ierr = PetscArraycpy(lmin, min, cdim);CHKERRQ(ierr);} 3836b2e4378dSMatthew G. Knepley if (lmax) {ierr = PetscArraycpy(lmax, max, cdim);CHKERRQ(ierr);} 3837b2e4378dSMatthew G. Knepley PetscFunctionReturn(0); 3838b2e4378dSMatthew G. Knepley } 3839b2e4378dSMatthew G. Knepley 3840b2e4378dSMatthew G. Knepley /*@ 3841b2e4378dSMatthew G. Knepley DMGetBoundingBox - Returns the global bounding box for the DM. 3842b2e4378dSMatthew G. Knepley 3843b2e4378dSMatthew G. Knepley Collective 3844b2e4378dSMatthew G. Knepley 3845b2e4378dSMatthew G. Knepley Input Parameter: 3846b2e4378dSMatthew G. Knepley . dm - the DM 3847b2e4378dSMatthew G. Knepley 3848b2e4378dSMatthew G. Knepley Output Parameters: 3849b2e4378dSMatthew G. Knepley + gmin - global minimum coordinates (length coord dim, optional) 3850b2e4378dSMatthew G. Knepley - gmax - global maximim coordinates (length coord dim, optional) 3851b2e4378dSMatthew G. Knepley 3852b2e4378dSMatthew G. Knepley Level: beginner 3853b2e4378dSMatthew G. Knepley 3854b2e4378dSMatthew G. Knepley .seealso: DMGetLocalBoundingBox(), DMGetCoordinates(), DMGetCoordinatesLocal() 3855b2e4378dSMatthew G. Knepley @*/ 3856b2e4378dSMatthew G. Knepley PetscErrorCode DMGetBoundingBox(DM dm, PetscReal gmin[], PetscReal gmax[]) 3857b2e4378dSMatthew G. Knepley { 3858b2e4378dSMatthew G. Knepley PetscReal lmin[3], lmax[3]; 38596ce308c4SMatthew G. Knepley PetscInt cdim; 38606ce308c4SMatthew G. Knepley PetscMPIInt count; 3861b2e4378dSMatthew G. Knepley PetscErrorCode ierr; 3862b2e4378dSMatthew G. Knepley 3863b2e4378dSMatthew G. Knepley PetscFunctionBegin; 3864b2e4378dSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 3865b2e4378dSMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 3866b2e4378dSMatthew G. Knepley ierr = PetscMPIIntCast(cdim, &count);CHKERRQ(ierr); 3867b2e4378dSMatthew G. Knepley ierr = DMGetLocalBoundingBox(dm, lmin, lmax);CHKERRQ(ierr); 3868b2e4378dSMatthew G. Knepley if (gmin) {ierr = MPIU_Allreduce(lmin, gmin, count, MPIU_REAL, MPIU_MIN, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);} 3869b2e4378dSMatthew G. Knepley if (gmax) {ierr = MPIU_Allreduce(lmax, gmax, count, MPIU_REAL, MPIU_MAX, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);} 3870b2e4378dSMatthew G. Knepley PetscFunctionReturn(0); 3871b2e4378dSMatthew G. Knepley } 3872b2e4378dSMatthew G. Knepley 38737da65231SMatthew G Knepley /******************************** FEM Support **********************************/ 38747da65231SMatthew G Knepley 3875a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellVector(PetscInt c, const char name[], PetscInt len, const PetscScalar x[]) 3876a6dfd86eSKarl Rupp { 38771d47ebbbSSatish Balay PetscInt f; 38781b30c384SMatthew G Knepley PetscErrorCode ierr; 38791b30c384SMatthew G Knepley 38807da65231SMatthew G Knepley PetscFunctionBegin; 388174778d6cSJed Brown ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr); 38821d47ebbbSSatish Balay for (f = 0; f < len; ++f) { 388357622a8eSBarry Smith ierr = PetscPrintf(PETSC_COMM_SELF, " | %g |\n", (double)PetscRealPart(x[f]));CHKERRQ(ierr); 38847da65231SMatthew G Knepley } 38857da65231SMatthew G Knepley PetscFunctionReturn(0); 38867da65231SMatthew G Knepley } 38877da65231SMatthew G Knepley 3888a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellMatrix(PetscInt c, const char name[], PetscInt rows, PetscInt cols, const PetscScalar A[]) 3889a6dfd86eSKarl Rupp { 38901b30c384SMatthew G Knepley PetscInt f, g; 38917da65231SMatthew G Knepley PetscErrorCode ierr; 38927da65231SMatthew G Knepley 38937da65231SMatthew G Knepley PetscFunctionBegin; 389474778d6cSJed Brown ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr); 38951d47ebbbSSatish Balay for (f = 0; f < rows; ++f) { 389674778d6cSJed Brown ierr = PetscPrintf(PETSC_COMM_SELF, " |");CHKERRQ(ierr); 38971d47ebbbSSatish Balay for (g = 0; g < cols; ++g) { 3898e3556bceSMatthew G. Knepley ierr = PetscPrintf(PETSC_COMM_SELF, " % 9.5g", PetscRealPart(A[f*cols+g]));CHKERRQ(ierr); 38997da65231SMatthew G Knepley } 390074778d6cSJed Brown ierr = PetscPrintf(PETSC_COMM_SELF, " |\n");CHKERRQ(ierr); 39017da65231SMatthew G Knepley } 39027da65231SMatthew G Knepley PetscFunctionReturn(0); 39037da65231SMatthew G Knepley } 3904e7c4fc90SDmitry Karpeev 39056113b454SMatthew G. Knepley PetscErrorCode DMPrintLocalVec(DM dm, const char name[], PetscReal tol, Vec X) 3906e759306cSMatthew G. Knepley { 39070c5b8624SToby Isaac PetscInt localSize, bs; 39080c5b8624SToby Isaac PetscMPIInt size; 39090c5b8624SToby Isaac Vec x, xglob; 39100c5b8624SToby Isaac const PetscScalar *xarray; 3911e759306cSMatthew G. Knepley PetscErrorCode ierr; 3912e759306cSMatthew G. Knepley 3913e759306cSMatthew G. Knepley PetscFunctionBegin; 39149852e123SBarry Smith ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm),&size);CHKERRQ(ierr); 3915e759306cSMatthew G. Knepley ierr = VecDuplicate(X, &x);CHKERRQ(ierr); 3916e759306cSMatthew G. Knepley ierr = VecCopy(X, x);CHKERRQ(ierr); 39176113b454SMatthew G. Knepley ierr = VecChop(x, tol);CHKERRQ(ierr); 39180c5b8624SToby Isaac ierr = PetscPrintf(PetscObjectComm((PetscObject) dm),"%s:\n",name);CHKERRQ(ierr); 39190c5b8624SToby Isaac if (size > 1) { 39200c5b8624SToby Isaac ierr = VecGetLocalSize(x,&localSize);CHKERRQ(ierr); 39210c5b8624SToby Isaac ierr = VecGetArrayRead(x,&xarray);CHKERRQ(ierr); 39220c5b8624SToby Isaac ierr = VecGetBlockSize(x,&bs);CHKERRQ(ierr); 39230c5b8624SToby Isaac ierr = VecCreateMPIWithArray(PetscObjectComm((PetscObject) dm),bs,localSize,PETSC_DETERMINE,xarray,&xglob);CHKERRQ(ierr); 39240c5b8624SToby Isaac } else { 39250c5b8624SToby Isaac xglob = x; 39260c5b8624SToby Isaac } 39270c5b8624SToby Isaac ierr = VecView(xglob,PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject) dm)));CHKERRQ(ierr); 39280c5b8624SToby Isaac if (size > 1) { 39290c5b8624SToby Isaac ierr = VecDestroy(&xglob);CHKERRQ(ierr); 39300c5b8624SToby Isaac ierr = VecRestoreArrayRead(x,&xarray);CHKERRQ(ierr); 39310c5b8624SToby Isaac } 3932e759306cSMatthew G. Knepley ierr = VecDestroy(&x);CHKERRQ(ierr); 3933e759306cSMatthew G. Knepley PetscFunctionReturn(0); 3934e759306cSMatthew G. Knepley } 3935e759306cSMatthew G. Knepley 393688ed4aceSMatthew G Knepley /*@ 39371bb6d2a8SBarry Smith DMGetSection - Get the PetscSection encoding the local data layout for the DM. This is equivalent to DMGetLocalSection(). Deprecated in v3.12 3938061576a5SJed Brown 3939061576a5SJed Brown Input Parameter: 3940061576a5SJed Brown . dm - The DM 3941061576a5SJed Brown 3942061576a5SJed Brown Output Parameter: 3943061576a5SJed Brown . section - The PetscSection 3944061576a5SJed Brown 3945061576a5SJed Brown Options Database Keys: 3946061576a5SJed Brown . -dm_petscsection_view - View the Section created by the DM 3947061576a5SJed Brown 3948061576a5SJed Brown Level: advanced 3949061576a5SJed Brown 3950061576a5SJed Brown Notes: 3951061576a5SJed Brown Use DMGetLocalSection() in new code. 3952061576a5SJed Brown 3953061576a5SJed Brown This gets a borrowed reference, so the user should not destroy this PetscSection. 3954061576a5SJed Brown 3955061576a5SJed Brown .seealso: DMGetLocalSection(), DMSetLocalSection(), DMGetGlobalSection() 3956061576a5SJed Brown @*/ 3957061576a5SJed Brown PetscErrorCode DMGetSection(DM dm, PetscSection *section) 3958061576a5SJed Brown { 3959061576a5SJed Brown PetscErrorCode ierr; 3960061576a5SJed Brown 3961061576a5SJed Brown PetscFunctionBegin; 3962061576a5SJed Brown ierr = DMGetLocalSection(dm,section);CHKERRQ(ierr); 3963061576a5SJed Brown PetscFunctionReturn(0); 3964061576a5SJed Brown } 3965061576a5SJed Brown 3966061576a5SJed Brown /*@ 3967061576a5SJed Brown DMGetLocalSection - Get the PetscSection encoding the local data layout for the DM. 396888ed4aceSMatthew G Knepley 396988ed4aceSMatthew G Knepley Input Parameter: 397088ed4aceSMatthew G Knepley . dm - The DM 397188ed4aceSMatthew G Knepley 397288ed4aceSMatthew G Knepley Output Parameter: 397388ed4aceSMatthew G Knepley . section - The PetscSection 397488ed4aceSMatthew G Knepley 3975e5893cccSMatthew G. Knepley Options Database Keys: 3976e5893cccSMatthew G. Knepley . -dm_petscsection_view - View the Section created by the DM 3977e5893cccSMatthew G. Knepley 397888ed4aceSMatthew G Knepley Level: intermediate 397988ed4aceSMatthew G Knepley 398088ed4aceSMatthew G Knepley Note: This gets a borrowed reference, so the user should not destroy this PetscSection. 398188ed4aceSMatthew G Knepley 3982061576a5SJed Brown .seealso: DMSetLocalSection(), DMGetGlobalSection() 398388ed4aceSMatthew G Knepley @*/ 3984061576a5SJed Brown PetscErrorCode DMGetLocalSection(DM dm, PetscSection *section) 39850adebc6cSBarry Smith { 3986fd59a867SMatthew G. Knepley PetscErrorCode ierr; 3987fd59a867SMatthew G. Knepley 398888ed4aceSMatthew G Knepley PetscFunctionBegin; 398988ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 399088ed4aceSMatthew G Knepley PetscValidPointer(section, 2); 39911bb6d2a8SBarry Smith if (!dm->localSection && dm->ops->createlocalsection) { 3992e5e52638SMatthew G. Knepley PetscInt d; 3993e5e52638SMatthew G. Knepley 3994e5e52638SMatthew G. Knepley if (dm->setfromoptionscalled) for (d = 0; d < dm->Nds; ++d) {ierr = PetscDSSetFromOptions(dm->probs[d].ds);CHKERRQ(ierr);} 39951bb6d2a8SBarry Smith ierr = (*dm->ops->createlocalsection)(dm);CHKERRQ(ierr); 39961bb6d2a8SBarry Smith if (dm->localSection) {ierr = PetscObjectViewFromOptions((PetscObject) dm->localSection, NULL, "-dm_petscsection_view");CHKERRQ(ierr);} 39972f0f8703SMatthew G. Knepley } 39981bb6d2a8SBarry Smith *section = dm->localSection; 399988ed4aceSMatthew G Knepley PetscFunctionReturn(0); 400088ed4aceSMatthew G Knepley } 400188ed4aceSMatthew G Knepley 400288ed4aceSMatthew G Knepley /*@ 40031bb6d2a8SBarry Smith DMSetSection - Set the PetscSection encoding the local data layout for the DM. This is equivalent to DMSetLocalSection(). Deprecated in v3.12 4004061576a5SJed Brown 4005061576a5SJed Brown Input Parameters: 4006061576a5SJed Brown + dm - The DM 4007061576a5SJed Brown - section - The PetscSection 4008061576a5SJed Brown 4009061576a5SJed Brown Level: advanced 4010061576a5SJed Brown 4011061576a5SJed Brown Notes: 4012061576a5SJed Brown Use DMSetLocalSection() in new code. 4013061576a5SJed Brown 4014061576a5SJed Brown Any existing Section will be destroyed 4015061576a5SJed Brown 4016061576a5SJed Brown .seealso: DMSetLocalSection(), DMGetLocalSection(), DMSetGlobalSection() 4017061576a5SJed Brown @*/ 4018061576a5SJed Brown PetscErrorCode DMSetSection(DM dm, PetscSection section) 4019061576a5SJed Brown { 4020061576a5SJed Brown PetscErrorCode ierr; 4021061576a5SJed Brown 4022061576a5SJed Brown PetscFunctionBegin; 4023061576a5SJed Brown ierr = DMSetLocalSection(dm,section);CHKERRQ(ierr); 4024061576a5SJed Brown PetscFunctionReturn(0); 4025061576a5SJed Brown } 4026061576a5SJed Brown 4027061576a5SJed Brown /*@ 4028061576a5SJed Brown DMSetLocalSection - Set the PetscSection encoding the local data layout for the DM. 402988ed4aceSMatthew G Knepley 403088ed4aceSMatthew G Knepley Input Parameters: 403188ed4aceSMatthew G Knepley + dm - The DM 403288ed4aceSMatthew G Knepley - section - The PetscSection 403388ed4aceSMatthew G Knepley 403488ed4aceSMatthew G Knepley Level: intermediate 403588ed4aceSMatthew G Knepley 403688ed4aceSMatthew G Knepley Note: Any existing Section will be destroyed 403788ed4aceSMatthew G Knepley 4038061576a5SJed Brown .seealso: DMGetLocalSection(), DMSetGlobalSection() 403988ed4aceSMatthew G Knepley @*/ 4040061576a5SJed Brown PetscErrorCode DMSetLocalSection(DM dm, PetscSection section) 40410adebc6cSBarry Smith { 4042c473ab19SMatthew G. Knepley PetscInt numFields = 0; 4043af122d2aSMatthew G Knepley PetscInt f; 404488ed4aceSMatthew G Knepley PetscErrorCode ierr; 404588ed4aceSMatthew G Knepley 404688ed4aceSMatthew G Knepley PetscFunctionBegin; 404788ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4048b9d85ea2SLisandro Dalcin if (section) PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2); 40491d799100SJed Brown ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr); 40501bb6d2a8SBarry Smith ierr = PetscSectionDestroy(&dm->localSection);CHKERRQ(ierr); 40511bb6d2a8SBarry Smith dm->localSection = section; 40521bb6d2a8SBarry Smith if (section) {ierr = PetscSectionGetNumFields(dm->localSection, &numFields);CHKERRQ(ierr);} 4053af122d2aSMatthew G Knepley if (numFields) { 4054af122d2aSMatthew G Knepley ierr = DMSetNumFields(dm, numFields);CHKERRQ(ierr); 4055af122d2aSMatthew G Knepley for (f = 0; f < numFields; ++f) { 40560f21e855SMatthew G. Knepley PetscObject disc; 4057af122d2aSMatthew G Knepley const char *name; 4058af122d2aSMatthew G Knepley 40591bb6d2a8SBarry Smith ierr = PetscSectionGetFieldName(dm->localSection, f, &name);CHKERRQ(ierr); 406044a7f3ddSMatthew G. Knepley ierr = DMGetField(dm, f, NULL, &disc);CHKERRQ(ierr); 40610f21e855SMatthew G. Knepley ierr = PetscObjectSetName(disc, name);CHKERRQ(ierr); 4062af122d2aSMatthew G Knepley } 4063af122d2aSMatthew G Knepley } 4064e87a4003SBarry Smith /* The global section will be rebuilt in the next call to DMGetGlobalSection(). */ 40651bb6d2a8SBarry Smith ierr = PetscSectionDestroy(&dm->globalSection);CHKERRQ(ierr); 406688ed4aceSMatthew G Knepley PetscFunctionReturn(0); 406788ed4aceSMatthew G Knepley } 406888ed4aceSMatthew G Knepley 40699435951eSToby Isaac /*@ 4070b7385021SStefano Zampini DMGetDefaultConstraints - Get the PetscSection and Mat that specify the local constraint interpolation. See DMSetDefaultConstraints() for a description of the purpose of constraint interpolation. 40719435951eSToby Isaac 4072e228b242SToby Isaac not collective 4073e228b242SToby Isaac 40749435951eSToby Isaac Input Parameter: 40759435951eSToby Isaac . dm - The DM 40769435951eSToby Isaac 40779435951eSToby Isaac Output Parameter: 40789435951eSToby Isaac + section - The PetscSection describing the range of the constraint matrix: relates rows of the constraint matrix to dofs of the default section. Returns NULL if there are no local constraints. 40799435951eSToby Isaac - mat - The Mat that interpolates local constraints: its width should be the layout size of the default section. Returns NULL if there are no local constraints. 40809435951eSToby Isaac 40819435951eSToby Isaac Level: advanced 40829435951eSToby Isaac 40839435951eSToby Isaac Note: This gets borrowed references, so the user should not destroy the PetscSection or the Mat. 40849435951eSToby Isaac 40859435951eSToby Isaac .seealso: DMSetDefaultConstraints() 40869435951eSToby Isaac @*/ 40879435951eSToby Isaac PetscErrorCode DMGetDefaultConstraints(DM dm, PetscSection *section, Mat *mat) 40889435951eSToby Isaac { 40899435951eSToby Isaac PetscErrorCode ierr; 40909435951eSToby Isaac 40919435951eSToby Isaac PetscFunctionBegin; 40929435951eSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 40939435951eSToby Isaac if (!dm->defaultConstraintSection && !dm->defaultConstraintMat && dm->ops->createdefaultconstraints) {ierr = (*dm->ops->createdefaultconstraints)(dm);CHKERRQ(ierr);} 409445a75d81SToby Isaac if (section) {*section = dm->defaultConstraintSection;} 409545a75d81SToby Isaac if (mat) {*mat = dm->defaultConstraintMat;} 40969435951eSToby Isaac PetscFunctionReturn(0); 40979435951eSToby Isaac } 40989435951eSToby Isaac 40999435951eSToby Isaac /*@ 4100b7385021SStefano Zampini DMSetDefaultConstraints - Set the PetscSection and Mat that specify the local constraint interpolation. 41019435951eSToby Isaac 41029435951eSToby Isaac If a constraint matrix is specified, then it is applied during DMGlobalToLocalEnd() when mode is INSERT_VALUES, INSERT_BC_VALUES, or INSERT_ALL_VALUES. Without a constraint matrix, the local vector l returned by DMGlobalToLocalEnd() contains values that have been scattered from a global vector without modification; with a constraint matrix A, l is modified by computing c = A * l, l[s[i]] = c[i], where the scatter s is defined by the PetscSection returned by DMGetDefaultConstraintMatrix(). 41039435951eSToby Isaac 41049435951eSToby Isaac If a constraint matrix is specified, then its adjoint is applied during DMLocalToGlobalBegin() when mode is ADD_VALUES, ADD_BC_VALUES, or ADD_ALL_VALUES. Without a constraint matrix, the local vector l is accumulated into a global vector without modification; with a constraint matrix A, l is first modified by computing c[i] = l[s[i]], l[s[i]] = 0, l = l + A'*c, which is the adjoint of the operation described above. 41059435951eSToby Isaac 4106e228b242SToby Isaac collective on dm 4107e228b242SToby Isaac 41089435951eSToby Isaac Input Parameters: 41099435951eSToby Isaac + dm - The DM 4110e228b242SToby Isaac + section - The PetscSection describing the range of the constraint matrix: relates rows of the constraint matrix to dofs of the default section. Must have a local communicator (PETSC_COMM_SELF or derivative). 4111e228b242SToby Isaac - mat - The Mat that interpolates local constraints: its width should be the layout size of the default section: NULL indicates no constraints. Must have a local communicator (PETSC_COMM_SELF or derivative). 41129435951eSToby Isaac 41139435951eSToby Isaac Level: advanced 41149435951eSToby Isaac 41159435951eSToby Isaac Note: This increments the references of the PetscSection and the Mat, so they user can destroy them 41169435951eSToby Isaac 41179435951eSToby Isaac .seealso: DMGetDefaultConstraints() 41189435951eSToby Isaac @*/ 41199435951eSToby Isaac PetscErrorCode DMSetDefaultConstraints(DM dm, PetscSection section, Mat mat) 41209435951eSToby Isaac { 4121e228b242SToby Isaac PetscMPIInt result; 41229435951eSToby Isaac PetscErrorCode ierr; 41239435951eSToby Isaac 41249435951eSToby Isaac PetscFunctionBegin; 41259435951eSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4126e228b242SToby Isaac if (section) { 4127e228b242SToby Isaac PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2); 4128e228b242SToby Isaac ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)section),&result);CHKERRQ(ierr); 4129f60917d2SBarry Smith if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint section must have local communicator"); 4130e228b242SToby Isaac } 4131e228b242SToby Isaac if (mat) { 4132e228b242SToby Isaac PetscValidHeaderSpecific(mat,MAT_CLASSID,3); 4133e228b242SToby Isaac ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)mat),&result);CHKERRQ(ierr); 4134f60917d2SBarry Smith if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint matrix must have local communicator"); 4135e228b242SToby Isaac } 41369435951eSToby Isaac ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr); 41379435951eSToby Isaac ierr = PetscSectionDestroy(&dm->defaultConstraintSection);CHKERRQ(ierr); 41389435951eSToby Isaac dm->defaultConstraintSection = section; 41399435951eSToby Isaac ierr = PetscObjectReference((PetscObject)mat);CHKERRQ(ierr); 41409435951eSToby Isaac ierr = MatDestroy(&dm->defaultConstraintMat);CHKERRQ(ierr); 41419435951eSToby Isaac dm->defaultConstraintMat = mat; 41429435951eSToby Isaac PetscFunctionReturn(0); 41439435951eSToby Isaac } 41449435951eSToby Isaac 4145497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG) 4146507e4973SMatthew G. Knepley /* 4147507e4973SMatthew G. Knepley DMDefaultSectionCheckConsistency - Check the consistentcy of the global and local sections. 4148507e4973SMatthew G. Knepley 4149507e4973SMatthew G. Knepley Input Parameters: 4150507e4973SMatthew G. Knepley + dm - The DM 4151507e4973SMatthew G. Knepley . localSection - PetscSection describing the local data layout 4152507e4973SMatthew G. Knepley - globalSection - PetscSection describing the global data layout 4153507e4973SMatthew G. Knepley 4154507e4973SMatthew G. Knepley Level: intermediate 4155507e4973SMatthew G. Knepley 41561bb6d2a8SBarry Smith .seealso: DMGetSectionSF(), DMSetSectionSF() 4157507e4973SMatthew G. Knepley */ 4158f741bcd2SMatthew G. Knepley static PetscErrorCode DMDefaultSectionCheckConsistency_Internal(DM dm, PetscSection localSection, PetscSection globalSection) 4159507e4973SMatthew G. Knepley { 4160507e4973SMatthew G. Knepley MPI_Comm comm; 4161507e4973SMatthew G. Knepley PetscLayout layout; 4162507e4973SMatthew G. Knepley const PetscInt *ranges; 4163507e4973SMatthew G. Knepley PetscInt pStart, pEnd, p, nroots; 4164507e4973SMatthew G. Knepley PetscMPIInt size, rank; 4165507e4973SMatthew G. Knepley PetscBool valid = PETSC_TRUE, gvalid; 4166507e4973SMatthew G. Knepley PetscErrorCode ierr; 4167507e4973SMatthew G. Knepley 4168507e4973SMatthew G. Knepley PetscFunctionBegin; 4169507e4973SMatthew G. Knepley ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr); 4170507e4973SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4171507e4973SMatthew G. Knepley ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr); 4172507e4973SMatthew G. Knepley ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr); 4173507e4973SMatthew G. Knepley ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr); 4174507e4973SMatthew G. Knepley ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr); 4175507e4973SMatthew G. Knepley ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr); 4176507e4973SMatthew G. Knepley ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr); 4177507e4973SMatthew G. Knepley ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr); 4178507e4973SMatthew G. Knepley ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr); 4179507e4973SMatthew G. Knepley ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr); 4180507e4973SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 4181f741bcd2SMatthew G. Knepley PetscInt dof, cdof, off, gdof, gcdof, goff, gsize, d; 4182507e4973SMatthew G. Knepley 4183507e4973SMatthew G. Knepley ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr); 4184507e4973SMatthew G. Knepley ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr); 4185507e4973SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr); 4186507e4973SMatthew G. Knepley ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr); 4187507e4973SMatthew G. Knepley ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr); 4188507e4973SMatthew G. Knepley ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr); 4189507e4973SMatthew G. Knepley if (!gdof) continue; /* Censored point */ 4190507e4973SMatthew G. Knepley if ((gdof < 0 ? -(gdof+1) : gdof) != dof) {ierr = PetscSynchronizedPrintf(comm, "[%d]Global dof %d for point %d not equal to local dof %d\n", rank, gdof, p, dof);CHKERRQ(ierr); valid = PETSC_FALSE;} 4191507e4973SMatthew G. Knepley if (gcdof && (gcdof != cdof)) {ierr = PetscSynchronizedPrintf(comm, "[%d]Global constraints %d for point %d not equal to local constraints %d\n", rank, gcdof, p, cdof);CHKERRQ(ierr); valid = PETSC_FALSE;} 4192507e4973SMatthew G. Knepley if (gdof < 0) { 4193507e4973SMatthew G. Knepley gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof; 4194507e4973SMatthew G. Knepley for (d = 0; d < gsize; ++d) { 4195507e4973SMatthew G. Knepley PetscInt offset = -(goff+1) + d, r; 4196507e4973SMatthew G. Knepley 4197507e4973SMatthew G. Knepley ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr); 4198507e4973SMatthew G. Knepley if (r < 0) r = -(r+2); 4199507e4973SMatthew G. Knepley if ((r < 0) || (r >= size)) {ierr = PetscSynchronizedPrintf(comm, "[%d]Point %d mapped to invalid process %d (%d, %d)\n", rank, p, r, gdof, goff);CHKERRQ(ierr); valid = PETSC_FALSE;break;} 4200507e4973SMatthew G. Knepley } 4201507e4973SMatthew G. Knepley } 4202507e4973SMatthew G. Knepley } 4203507e4973SMatthew G. Knepley ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr); 4204507e4973SMatthew G. Knepley ierr = PetscSynchronizedFlush(comm, NULL);CHKERRQ(ierr); 4205b2566f29SBarry Smith ierr = MPIU_Allreduce(&valid, &gvalid, 1, MPIU_BOOL, MPI_LAND, comm);CHKERRQ(ierr); 4206507e4973SMatthew G. Knepley if (!gvalid) { 4207507e4973SMatthew G. Knepley ierr = DMView(dm, NULL);CHKERRQ(ierr); 4208507e4973SMatthew G. Knepley SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Inconsistent local and global sections"); 4209507e4973SMatthew G. Knepley } 4210507e4973SMatthew G. Knepley PetscFunctionReturn(0); 4211507e4973SMatthew G. Knepley } 4212f741bcd2SMatthew G. Knepley #endif 4213507e4973SMatthew G. Knepley 421488ed4aceSMatthew G Knepley /*@ 4215e87a4003SBarry Smith DMGetGlobalSection - Get the PetscSection encoding the global data layout for the DM. 421688ed4aceSMatthew G Knepley 4217d083f849SBarry Smith Collective on dm 42188b1ab98fSJed Brown 421988ed4aceSMatthew G Knepley Input Parameter: 422088ed4aceSMatthew G Knepley . dm - The DM 422188ed4aceSMatthew G Knepley 422288ed4aceSMatthew G Knepley Output Parameter: 422388ed4aceSMatthew G Knepley . section - The PetscSection 422488ed4aceSMatthew G Knepley 422588ed4aceSMatthew G Knepley Level: intermediate 422688ed4aceSMatthew G Knepley 422788ed4aceSMatthew G Knepley Note: This gets a borrowed reference, so the user should not destroy this PetscSection. 422888ed4aceSMatthew G Knepley 422992fd8e1eSJed Brown .seealso: DMSetLocalSection(), DMGetLocalSection() 423088ed4aceSMatthew G Knepley @*/ 4231e87a4003SBarry Smith PetscErrorCode DMGetGlobalSection(DM dm, PetscSection *section) 42320adebc6cSBarry Smith { 423388ed4aceSMatthew G Knepley PetscErrorCode ierr; 423488ed4aceSMatthew G Knepley 423588ed4aceSMatthew G Knepley PetscFunctionBegin; 423688ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 423788ed4aceSMatthew G Knepley PetscValidPointer(section, 2); 42381bb6d2a8SBarry Smith if (!dm->globalSection) { 4239fd59a867SMatthew G. Knepley PetscSection s; 4240fd59a867SMatthew G. Knepley 424192fd8e1eSJed Brown ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr); 4242fd59a867SMatthew G. Knepley if (!s) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONGSTATE, "DM must have a default PetscSection in order to create a global PetscSection"); 424333907cc2SStefano Zampini if (!dm->sf) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM must have a point PetscSF in order to create a global PetscSection"); 42441bb6d2a8SBarry Smith ierr = PetscSectionCreateGlobalSection(s, dm->sf, PETSC_FALSE, PETSC_FALSE, &dm->globalSection);CHKERRQ(ierr); 4245cf06b437SMatthew G. Knepley ierr = PetscLayoutDestroy(&dm->map);CHKERRQ(ierr); 42461bb6d2a8SBarry Smith ierr = PetscSectionGetValueLayout(PetscObjectComm((PetscObject)dm), dm->globalSection, &dm->map);CHKERRQ(ierr); 42471bb6d2a8SBarry Smith ierr = PetscSectionViewFromOptions(dm->globalSection, NULL, "-global_section_view");CHKERRQ(ierr); 424888ed4aceSMatthew G Knepley } 42491bb6d2a8SBarry Smith *section = dm->globalSection; 425088ed4aceSMatthew G Knepley PetscFunctionReturn(0); 425188ed4aceSMatthew G Knepley } 425288ed4aceSMatthew G Knepley 4253b21d0597SMatthew G Knepley /*@ 4254e87a4003SBarry Smith DMSetGlobalSection - Set the PetscSection encoding the global data layout for the DM. 4255b21d0597SMatthew G Knepley 4256b21d0597SMatthew G Knepley Input Parameters: 4257b21d0597SMatthew G Knepley + dm - The DM 42585080bbdbSMatthew G Knepley - section - The PetscSection, or NULL 4259b21d0597SMatthew G Knepley 4260b21d0597SMatthew G Knepley Level: intermediate 4261b21d0597SMatthew G Knepley 4262b21d0597SMatthew G Knepley Note: Any existing Section will be destroyed 4263b21d0597SMatthew G Knepley 426492fd8e1eSJed Brown .seealso: DMGetGlobalSection(), DMSetLocalSection() 4265b21d0597SMatthew G Knepley @*/ 4266e87a4003SBarry Smith PetscErrorCode DMSetGlobalSection(DM dm, PetscSection section) 42670adebc6cSBarry Smith { 4268b21d0597SMatthew G Knepley PetscErrorCode ierr; 4269b21d0597SMatthew G Knepley 4270b21d0597SMatthew G Knepley PetscFunctionBegin; 4271b21d0597SMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 42725080bbdbSMatthew G Knepley if (section) PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2); 42731d799100SJed Brown ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr); 42741bb6d2a8SBarry Smith ierr = PetscSectionDestroy(&dm->globalSection);CHKERRQ(ierr); 42751bb6d2a8SBarry Smith dm->globalSection = section; 4276497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG) 42771bb6d2a8SBarry Smith if (section) {ierr = DMDefaultSectionCheckConsistency_Internal(dm, dm->localSection, section);CHKERRQ(ierr);} 4278507e4973SMatthew G. Knepley #endif 4279b21d0597SMatthew G Knepley PetscFunctionReturn(0); 4280b21d0597SMatthew G Knepley } 4281b21d0597SMatthew G Knepley 428288ed4aceSMatthew G Knepley /*@ 42831bb6d2a8SBarry Smith DMGetSectionSF - Get the PetscSF encoding the parallel dof overlap for the DM. If it has not been set, 428488ed4aceSMatthew G Knepley it is created from the default PetscSection layouts in the DM. 428588ed4aceSMatthew G Knepley 428688ed4aceSMatthew G Knepley Input Parameter: 428788ed4aceSMatthew G Knepley . dm - The DM 428888ed4aceSMatthew G Knepley 428988ed4aceSMatthew G Knepley Output Parameter: 429088ed4aceSMatthew G Knepley . sf - The PetscSF 429188ed4aceSMatthew G Knepley 429288ed4aceSMatthew G Knepley Level: intermediate 429388ed4aceSMatthew G Knepley 429488ed4aceSMatthew G Knepley Note: This gets a borrowed reference, so the user should not destroy this PetscSF. 429588ed4aceSMatthew G Knepley 42961bb6d2a8SBarry Smith .seealso: DMSetSectionSF(), DMCreateSectionSF() 429788ed4aceSMatthew G Knepley @*/ 42981bb6d2a8SBarry Smith PetscErrorCode DMGetSectionSF(DM dm, PetscSF *sf) 42990adebc6cSBarry Smith { 430088ed4aceSMatthew G Knepley PetscInt nroots; 430188ed4aceSMatthew G Knepley PetscErrorCode ierr; 430288ed4aceSMatthew G Knepley 430388ed4aceSMatthew G Knepley PetscFunctionBegin; 430488ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 430588ed4aceSMatthew G Knepley PetscValidPointer(sf, 2); 43061bb6d2a8SBarry Smith if (!dm->sectionSF) { 43071bb6d2a8SBarry Smith ierr = PetscSFCreate(PetscObjectComm((PetscObject)dm),&dm->sectionSF);CHKERRQ(ierr); 430833907cc2SStefano Zampini } 43091bb6d2a8SBarry Smith ierr = PetscSFGetGraph(dm->sectionSF, &nroots, NULL, NULL, NULL);CHKERRQ(ierr); 431088ed4aceSMatthew G Knepley if (nroots < 0) { 431188ed4aceSMatthew G Knepley PetscSection section, gSection; 431288ed4aceSMatthew G Knepley 431392fd8e1eSJed Brown ierr = DMGetLocalSection(dm, §ion);CHKERRQ(ierr); 431431ea6d37SMatthew G Knepley if (section) { 4315e87a4003SBarry Smith ierr = DMGetGlobalSection(dm, &gSection);CHKERRQ(ierr); 43161bb6d2a8SBarry Smith ierr = DMCreateSectionSF(dm, section, gSection);CHKERRQ(ierr); 431731ea6d37SMatthew G Knepley } else { 43180298fd71SBarry Smith *sf = NULL; 431931ea6d37SMatthew G Knepley PetscFunctionReturn(0); 432031ea6d37SMatthew G Knepley } 432188ed4aceSMatthew G Knepley } 43221bb6d2a8SBarry Smith *sf = dm->sectionSF; 432388ed4aceSMatthew G Knepley PetscFunctionReturn(0); 432488ed4aceSMatthew G Knepley } 432588ed4aceSMatthew G Knepley 432688ed4aceSMatthew G Knepley /*@ 43271bb6d2a8SBarry Smith DMSetSectionSF - Set the PetscSF encoding the parallel dof overlap for the DM 432888ed4aceSMatthew G Knepley 432988ed4aceSMatthew G Knepley Input Parameters: 433088ed4aceSMatthew G Knepley + dm - The DM 433188ed4aceSMatthew G Knepley - sf - The PetscSF 433288ed4aceSMatthew G Knepley 433388ed4aceSMatthew G Knepley Level: intermediate 433488ed4aceSMatthew G Knepley 433588ed4aceSMatthew G Knepley Note: Any previous SF is destroyed 433688ed4aceSMatthew G Knepley 43371bb6d2a8SBarry Smith .seealso: DMGetSectionSF(), DMCreateSectionSF() 433888ed4aceSMatthew G Knepley @*/ 43391bb6d2a8SBarry Smith PetscErrorCode DMSetSectionSF(DM dm, PetscSF sf) 43400adebc6cSBarry Smith { 434188ed4aceSMatthew G Knepley PetscErrorCode ierr; 434288ed4aceSMatthew G Knepley 434388ed4aceSMatthew G Knepley PetscFunctionBegin; 434488ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4345b9d85ea2SLisandro Dalcin if (sf) PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2); 434633907cc2SStefano Zampini ierr = PetscObjectReference((PetscObject) sf);CHKERRQ(ierr); 43471bb6d2a8SBarry Smith ierr = PetscSFDestroy(&dm->sectionSF);CHKERRQ(ierr); 43481bb6d2a8SBarry Smith dm->sectionSF = sf; 434988ed4aceSMatthew G Knepley PetscFunctionReturn(0); 435088ed4aceSMatthew G Knepley } 435188ed4aceSMatthew G Knepley 435288ed4aceSMatthew G Knepley /*@C 43531bb6d2a8SBarry Smith DMCreateSectionSF - Create the PetscSF encoding the parallel dof overlap for the DM based upon the PetscSections 435488ed4aceSMatthew G Knepley describing the data layout. 435588ed4aceSMatthew G Knepley 435688ed4aceSMatthew G Knepley Input Parameters: 435788ed4aceSMatthew G Knepley + dm - The DM 435888ed4aceSMatthew G Knepley . localSection - PetscSection describing the local data layout 435988ed4aceSMatthew G Knepley - globalSection - PetscSection describing the global data layout 436088ed4aceSMatthew G Knepley 43611bb6d2a8SBarry Smith Notes: One usually uses DMGetSectionSF() to obtain the PetscSF 436288ed4aceSMatthew G Knepley 43631bb6d2a8SBarry Smith Level: developer 43641bb6d2a8SBarry Smith 43651bb6d2a8SBarry Smith Developer Note: Since this routine has for arguments the two sections from the DM and puts the resulting PetscSF 43661bb6d2a8SBarry Smith directly into the DM, perhaps this function should not take the local and global sections as 43671bb6d2a8SBarry Smith input and should just obtain them from the DM? 43681bb6d2a8SBarry Smith 43691bb6d2a8SBarry Smith .seealso: DMGetSectionSF(), DMSetSectionSF(), DMGetLocalSection(), DMGetGlobalSection() 437088ed4aceSMatthew G Knepley @*/ 43711bb6d2a8SBarry Smith PetscErrorCode DMCreateSectionSF(DM dm, PetscSection localSection, PetscSection globalSection) 437288ed4aceSMatthew G Knepley { 437382f516ccSBarry Smith MPI_Comm comm; 437488ed4aceSMatthew G Knepley PetscLayout layout; 437588ed4aceSMatthew G Knepley const PetscInt *ranges; 437688ed4aceSMatthew G Knepley PetscInt *local; 437788ed4aceSMatthew G Knepley PetscSFNode *remote; 4378ecd73843SMatthew G. Knepley PetscInt pStart, pEnd, p, nroots, nleaves = 0, l; 437988ed4aceSMatthew G Knepley PetscMPIInt size, rank; 438088ed4aceSMatthew G Knepley PetscErrorCode ierr; 438188ed4aceSMatthew G Knepley 438288ed4aceSMatthew G Knepley PetscFunctionBegin; 438388ed4aceSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4384367003a6SStefano Zampini ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr); 438588ed4aceSMatthew G Knepley ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr); 438688ed4aceSMatthew G Knepley ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr); 438788ed4aceSMatthew G Knepley ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr); 438888ed4aceSMatthew G Knepley ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr); 438988ed4aceSMatthew G Knepley ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr); 439088ed4aceSMatthew G Knepley ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr); 439188ed4aceSMatthew G Knepley ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr); 439288ed4aceSMatthew G Knepley ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr); 439388ed4aceSMatthew G Knepley ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr); 4394ecd73843SMatthew G. Knepley for (p = pStart; p < pEnd; ++p) { 43956636e97aSMatthew G Knepley PetscInt gdof, gcdof; 439688ed4aceSMatthew G Knepley 43976636e97aSMatthew G Knepley ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr); 43986636e97aSMatthew G Knepley ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr); 4399235fbf56SMatthew G. Knepley if (gcdof > (gdof < 0 ? -(gdof+1) : gdof)) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Point %d has %d constraints > %d dof", p, gcdof, (gdof < 0 ? -(gdof+1) : gdof)); 44006636e97aSMatthew G Knepley nleaves += gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof; 440188ed4aceSMatthew G Knepley } 4402785e854fSJed Brown ierr = PetscMalloc1(nleaves, &local);CHKERRQ(ierr); 4403785e854fSJed Brown ierr = PetscMalloc1(nleaves, &remote);CHKERRQ(ierr); 440488ed4aceSMatthew G Knepley for (p = pStart, l = 0; p < pEnd; ++p) { 44051f588964SMatthew G Knepley const PetscInt *cind; 44066636e97aSMatthew G Knepley PetscInt dof, cdof, off, gdof, gcdof, goff, gsize, d, c; 440788ed4aceSMatthew G Knepley 440888ed4aceSMatthew G Knepley ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr); 440988ed4aceSMatthew G Knepley ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr); 441088ed4aceSMatthew G Knepley ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr); 441188ed4aceSMatthew G Knepley ierr = PetscSectionGetConstraintIndices(localSection, p, &cind);CHKERRQ(ierr); 441288ed4aceSMatthew G Knepley ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr); 44136636e97aSMatthew G Knepley ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr); 441488ed4aceSMatthew G Knepley ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr); 44156636e97aSMatthew G Knepley if (!gdof) continue; /* Censored point */ 44166636e97aSMatthew G Knepley gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof; 44176636e97aSMatthew G Knepley if (gsize != dof-cdof) { 4418057b4bcdSMatthew G Knepley if (gsize != dof) SETERRQ4(comm, PETSC_ERR_ARG_WRONG, "Global dof %d for point %d is neither the constrained size %d, nor the unconstrained %d", gsize, p, dof-cdof, dof); 44196636e97aSMatthew G Knepley cdof = 0; /* Ignore constraints */ 44206636e97aSMatthew G Knepley } 442188ed4aceSMatthew G Knepley for (d = 0, c = 0; d < dof; ++d) { 442288ed4aceSMatthew G Knepley if ((c < cdof) && (cind[c] == d)) {++c; continue;} 442388ed4aceSMatthew G Knepley local[l+d-c] = off+d; 442488ed4aceSMatthew G Knepley } 442588ed4aceSMatthew G Knepley if (gdof < 0) { 44266636e97aSMatthew G Knepley for (d = 0; d < gsize; ++d, ++l) { 442788ed4aceSMatthew G Knepley PetscInt offset = -(goff+1) + d, r; 442888ed4aceSMatthew G Knepley 442905376888SMatthew G. Knepley ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr); 443031d3f06eSJed Brown if (r < 0) r = -(r+2); 443105376888SMatthew G. Knepley if ((r < 0) || (r >= size)) SETERRQ4(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Point %d mapped to invalid process %d (%d, %d)", p, r, gdof, goff); 443288ed4aceSMatthew G Knepley remote[l].rank = r; 443388ed4aceSMatthew G Knepley remote[l].index = offset - ranges[r]; 443488ed4aceSMatthew G Knepley } 443588ed4aceSMatthew G Knepley } else { 44366636e97aSMatthew G Knepley for (d = 0; d < gsize; ++d, ++l) { 443788ed4aceSMatthew G Knepley remote[l].rank = rank; 443888ed4aceSMatthew G Knepley remote[l].index = goff+d - ranges[rank]; 443988ed4aceSMatthew G Knepley } 444088ed4aceSMatthew G Knepley } 444188ed4aceSMatthew G Knepley } 44426636e97aSMatthew G Knepley if (l != nleaves) SETERRQ2(comm, PETSC_ERR_PLIB, "Iteration error, l %d != nleaves %d", l, nleaves); 444388ed4aceSMatthew G Knepley ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr); 44441bb6d2a8SBarry Smith ierr = PetscSFSetGraph(dm->sectionSF, nroots, nleaves, local, PETSC_OWN_POINTER, remote, PETSC_OWN_POINTER);CHKERRQ(ierr); 444588ed4aceSMatthew G Knepley PetscFunctionReturn(0); 444688ed4aceSMatthew G Knepley } 4447af122d2aSMatthew G Knepley 4448b21d0597SMatthew G Knepley /*@ 4449b21d0597SMatthew G Knepley DMGetPointSF - Get the PetscSF encoding the parallel section point overlap for the DM. 4450b21d0597SMatthew G Knepley 4451b21d0597SMatthew G Knepley Input Parameter: 4452b21d0597SMatthew G Knepley . dm - The DM 4453b21d0597SMatthew G Knepley 4454b21d0597SMatthew G Knepley Output Parameter: 4455b21d0597SMatthew G Knepley . sf - The PetscSF 4456b21d0597SMatthew G Knepley 4457b21d0597SMatthew G Knepley Level: intermediate 4458b21d0597SMatthew G Knepley 4459b21d0597SMatthew G Knepley Note: This gets a borrowed reference, so the user should not destroy this PetscSF. 4460b21d0597SMatthew G Knepley 44611bb6d2a8SBarry Smith .seealso: DMSetPointSF(), DMGetSectionSF(), DMSetSectionSF(), DMCreateSectionSF() 4462b21d0597SMatthew G Knepley @*/ 44630adebc6cSBarry Smith PetscErrorCode DMGetPointSF(DM dm, PetscSF *sf) 44640adebc6cSBarry Smith { 4465b21d0597SMatthew G Knepley PetscFunctionBegin; 4466b21d0597SMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4467b21d0597SMatthew G Knepley PetscValidPointer(sf, 2); 4468b21d0597SMatthew G Knepley *sf = dm->sf; 4469b21d0597SMatthew G Knepley PetscFunctionReturn(0); 4470b21d0597SMatthew G Knepley } 4471b21d0597SMatthew G Knepley 4472057b4bcdSMatthew G Knepley /*@ 4473057b4bcdSMatthew G Knepley DMSetPointSF - Set the PetscSF encoding the parallel section point overlap for the DM. 4474057b4bcdSMatthew G Knepley 4475057b4bcdSMatthew G Knepley Input Parameters: 4476057b4bcdSMatthew G Knepley + dm - The DM 4477057b4bcdSMatthew G Knepley - sf - The PetscSF 4478057b4bcdSMatthew G Knepley 4479057b4bcdSMatthew G Knepley Level: intermediate 4480057b4bcdSMatthew G Knepley 44811bb6d2a8SBarry Smith .seealso: DMGetPointSF(), DMGetSectionSF(), DMSetSectionSF(), DMCreateSectionSF() 4482057b4bcdSMatthew G Knepley @*/ 44830adebc6cSBarry Smith PetscErrorCode DMSetPointSF(DM dm, PetscSF sf) 44840adebc6cSBarry Smith { 4485057b4bcdSMatthew G Knepley PetscErrorCode ierr; 4486057b4bcdSMatthew G Knepley 4487057b4bcdSMatthew G Knepley PetscFunctionBegin; 4488057b4bcdSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4489b9d85ea2SLisandro Dalcin if (sf) PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2); 4490057b4bcdSMatthew G Knepley ierr = PetscObjectReference((PetscObject) sf);CHKERRQ(ierr); 449133907cc2SStefano Zampini ierr = PetscSFDestroy(&dm->sf);CHKERRQ(ierr); 4492057b4bcdSMatthew G Knepley dm->sf = sf; 4493057b4bcdSMatthew G Knepley PetscFunctionReturn(0); 4494057b4bcdSMatthew G Knepley } 4495057b4bcdSMatthew G Knepley 449634aa8a36SMatthew G. Knepley static PetscErrorCode DMSetDefaultAdjacency_Private(DM dm, PetscInt f, PetscObject disc) 449734aa8a36SMatthew G. Knepley { 449834aa8a36SMatthew G. Knepley PetscClassId id; 449934aa8a36SMatthew G. Knepley PetscErrorCode ierr; 450034aa8a36SMatthew G. Knepley 450134aa8a36SMatthew G. Knepley PetscFunctionBegin; 450234aa8a36SMatthew G. Knepley ierr = PetscObjectGetClassId(disc, &id);CHKERRQ(ierr); 450334aa8a36SMatthew G. Knepley if (id == PETSCFE_CLASSID) { 450434aa8a36SMatthew G. Knepley ierr = DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE);CHKERRQ(ierr); 450534aa8a36SMatthew G. Knepley } else if (id == PETSCFV_CLASSID) { 450634aa8a36SMatthew G. Knepley ierr = DMSetAdjacency(dm, f, PETSC_TRUE, PETSC_FALSE);CHKERRQ(ierr); 450717c1d62eSMatthew G. Knepley } else { 450817c1d62eSMatthew G. Knepley ierr = DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE);CHKERRQ(ierr); 450934aa8a36SMatthew G. Knepley } 451034aa8a36SMatthew G. Knepley PetscFunctionReturn(0); 451134aa8a36SMatthew G. Knepley } 451234aa8a36SMatthew G. Knepley 451344a7f3ddSMatthew G. Knepley static PetscErrorCode DMFieldEnlarge_Static(DM dm, PetscInt NfNew) 451444a7f3ddSMatthew G. Knepley { 451544a7f3ddSMatthew G. Knepley RegionField *tmpr; 451644a7f3ddSMatthew G. Knepley PetscInt Nf = dm->Nf, f; 451744a7f3ddSMatthew G. Knepley PetscErrorCode ierr; 451844a7f3ddSMatthew G. Knepley 451944a7f3ddSMatthew G. Knepley PetscFunctionBegin; 452044a7f3ddSMatthew G. Knepley if (Nf >= NfNew) PetscFunctionReturn(0); 452144a7f3ddSMatthew G. Knepley ierr = PetscMalloc1(NfNew, &tmpr);CHKERRQ(ierr); 452244a7f3ddSMatthew G. Knepley for (f = 0; f < Nf; ++f) tmpr[f] = dm->fields[f]; 452344a7f3ddSMatthew G. Knepley for (f = Nf; f < NfNew; ++f) {tmpr[f].disc = NULL; tmpr[f].label = NULL;} 452444a7f3ddSMatthew G. Knepley ierr = PetscFree(dm->fields);CHKERRQ(ierr); 452544a7f3ddSMatthew G. Knepley dm->Nf = NfNew; 452644a7f3ddSMatthew G. Knepley dm->fields = tmpr; 452744a7f3ddSMatthew G. Knepley PetscFunctionReturn(0); 452844a7f3ddSMatthew G. Knepley } 452944a7f3ddSMatthew G. Knepley 453044a7f3ddSMatthew G. Knepley /*@ 453144a7f3ddSMatthew G. Knepley DMClearFields - Remove all fields from the DM 453244a7f3ddSMatthew G. Knepley 4533d083f849SBarry Smith Logically collective on dm 453444a7f3ddSMatthew G. Knepley 453544a7f3ddSMatthew G. Knepley Input Parameter: 453644a7f3ddSMatthew G. Knepley . dm - The DM 453744a7f3ddSMatthew G. Knepley 453844a7f3ddSMatthew G. Knepley Level: intermediate 453944a7f3ddSMatthew G. Knepley 454044a7f3ddSMatthew G. Knepley .seealso: DMGetNumFields(), DMSetNumFields(), DMSetField() 454144a7f3ddSMatthew G. Knepley @*/ 454244a7f3ddSMatthew G. Knepley PetscErrorCode DMClearFields(DM dm) 454344a7f3ddSMatthew G. Knepley { 454444a7f3ddSMatthew G. Knepley PetscInt f; 454544a7f3ddSMatthew G. Knepley PetscErrorCode ierr; 454644a7f3ddSMatthew G. Knepley 454744a7f3ddSMatthew G. Knepley PetscFunctionBegin; 454844a7f3ddSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 454944a7f3ddSMatthew G. Knepley for (f = 0; f < dm->Nf; ++f) { 455044a7f3ddSMatthew G. Knepley ierr = PetscObjectDestroy(&dm->fields[f].disc);CHKERRQ(ierr); 455144a7f3ddSMatthew G. Knepley ierr = DMLabelDestroy(&dm->fields[f].label);CHKERRQ(ierr); 455244a7f3ddSMatthew G. Knepley } 455344a7f3ddSMatthew G. Knepley ierr = PetscFree(dm->fields);CHKERRQ(ierr); 455444a7f3ddSMatthew G. Knepley dm->fields = NULL; 455544a7f3ddSMatthew G. Knepley dm->Nf = 0; 455644a7f3ddSMatthew G. Knepley PetscFunctionReturn(0); 455744a7f3ddSMatthew G. Knepley } 455844a7f3ddSMatthew G. Knepley 4559689b5837SMatthew G. Knepley /*@ 4560689b5837SMatthew G. Knepley DMGetNumFields - Get the number of fields in the DM 4561689b5837SMatthew G. Knepley 4562689b5837SMatthew G. Knepley Not collective 4563689b5837SMatthew G. Knepley 4564689b5837SMatthew G. Knepley Input Parameter: 4565689b5837SMatthew G. Knepley . dm - The DM 4566689b5837SMatthew G. Knepley 4567689b5837SMatthew G. Knepley Output Parameter: 4568689b5837SMatthew G. Knepley . Nf - The number of fields 4569689b5837SMatthew G. Knepley 4570689b5837SMatthew G. Knepley Level: intermediate 4571689b5837SMatthew G. Knepley 4572689b5837SMatthew G. Knepley .seealso: DMSetNumFields(), DMSetField() 4573689b5837SMatthew G. Knepley @*/ 45740f21e855SMatthew G. Knepley PetscErrorCode DMGetNumFields(DM dm, PetscInt *numFields) 45750f21e855SMatthew G. Knepley { 45760f21e855SMatthew G. Knepley PetscFunctionBegin; 45770f21e855SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4578534a8f05SLisandro Dalcin PetscValidIntPointer(numFields, 2); 457944a7f3ddSMatthew G. Knepley *numFields = dm->Nf; 4580af122d2aSMatthew G Knepley PetscFunctionReturn(0); 4581af122d2aSMatthew G Knepley } 4582af122d2aSMatthew G Knepley 4583689b5837SMatthew G. Knepley /*@ 4584689b5837SMatthew G. Knepley DMSetNumFields - Set the number of fields in the DM 4585689b5837SMatthew G. Knepley 4586d083f849SBarry Smith Logically collective on dm 4587689b5837SMatthew G. Knepley 4588689b5837SMatthew G. Knepley Input Parameters: 4589689b5837SMatthew G. Knepley + dm - The DM 4590689b5837SMatthew G. Knepley - Nf - The number of fields 4591689b5837SMatthew G. Knepley 4592689b5837SMatthew G. Knepley Level: intermediate 4593689b5837SMatthew G. Knepley 4594689b5837SMatthew G. Knepley .seealso: DMGetNumFields(), DMSetField() 4595689b5837SMatthew G. Knepley @*/ 4596af122d2aSMatthew G Knepley PetscErrorCode DMSetNumFields(DM dm, PetscInt numFields) 4597af122d2aSMatthew G Knepley { 45980f21e855SMatthew G. Knepley PetscInt Nf, f; 4599af122d2aSMatthew G Knepley PetscErrorCode ierr; 4600af122d2aSMatthew G Knepley 4601af122d2aSMatthew G Knepley PetscFunctionBegin; 4602af122d2aSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 460344a7f3ddSMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 46040f21e855SMatthew G. Knepley for (f = Nf; f < numFields; ++f) { 46050f21e855SMatthew G. Knepley PetscContainer obj; 46060f21e855SMatthew G. Knepley 46070f21e855SMatthew G. Knepley ierr = PetscContainerCreate(PetscObjectComm((PetscObject) dm), &obj);CHKERRQ(ierr); 460844a7f3ddSMatthew G. Knepley ierr = DMAddField(dm, NULL, (PetscObject) obj);CHKERRQ(ierr); 46090f21e855SMatthew G. Knepley ierr = PetscContainerDestroy(&obj);CHKERRQ(ierr); 4610af122d2aSMatthew G Knepley } 4611af122d2aSMatthew G Knepley PetscFunctionReturn(0); 4612af122d2aSMatthew G Knepley } 4613af122d2aSMatthew G Knepley 4614c1929be8SMatthew G. Knepley /*@ 4615c1929be8SMatthew G. Knepley DMGetField - Return the discretization object for a given DM field 4616c1929be8SMatthew G. Knepley 4617c1929be8SMatthew G. Knepley Not collective 4618c1929be8SMatthew G. Knepley 4619c1929be8SMatthew G. Knepley Input Parameters: 4620c1929be8SMatthew G. Knepley + dm - The DM 4621c1929be8SMatthew G. Knepley - f - The field number 4622c1929be8SMatthew G. Knepley 462344a7f3ddSMatthew G. Knepley Output Parameters: 462444a7f3ddSMatthew G. Knepley + label - The label indicating the support of the field, or NULL for the entire mesh 462544a7f3ddSMatthew G. Knepley - field - The discretization object 4626c1929be8SMatthew G. Knepley 462744a7f3ddSMatthew G. Knepley Level: intermediate 4628c1929be8SMatthew G. Knepley 462944a7f3ddSMatthew G. Knepley .seealso: DMAddField(), DMSetField() 4630c1929be8SMatthew G. Knepley @*/ 463144a7f3ddSMatthew G. Knepley PetscErrorCode DMGetField(DM dm, PetscInt f, DMLabel *label, PetscObject *field) 4632af122d2aSMatthew G Knepley { 4633af122d2aSMatthew G Knepley PetscFunctionBegin; 4634af122d2aSMatthew G Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 463544a7f3ddSMatthew G. Knepley PetscValidPointer(field, 3); 463644a7f3ddSMatthew G. Knepley if ((f < 0) || (f >= dm->Nf)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, dm->Nf); 463744a7f3ddSMatthew G. Knepley if (label) *label = dm->fields[f].label; 463844a7f3ddSMatthew G. Knepley if (field) *field = dm->fields[f].disc; 4639decb47aaSMatthew G. Knepley PetscFunctionReturn(0); 4640decb47aaSMatthew G. Knepley } 4641decb47aaSMatthew G. Knepley 4642c1929be8SMatthew G. Knepley /*@ 4643c1929be8SMatthew G. Knepley DMSetField - Set the discretization object for a given DM field 4644c1929be8SMatthew G. Knepley 4645d083f849SBarry Smith Logically collective on dm 4646c1929be8SMatthew G. Knepley 4647c1929be8SMatthew G. Knepley Input Parameters: 4648c1929be8SMatthew G. Knepley + dm - The DM 4649c1929be8SMatthew G. Knepley . f - The field number 465044a7f3ddSMatthew G. Knepley . label - The label indicating the support of the field, or NULL for the entire mesh 4651c1929be8SMatthew G. Knepley - field - The discretization object 4652c1929be8SMatthew G. Knepley 465344a7f3ddSMatthew G. Knepley Level: intermediate 4654c1929be8SMatthew G. Knepley 465544a7f3ddSMatthew G. Knepley .seealso: DMAddField(), DMGetField() 4656c1929be8SMatthew G. Knepley @*/ 465744a7f3ddSMatthew G. Knepley PetscErrorCode DMSetField(DM dm, PetscInt f, DMLabel label, PetscObject field) 4658decb47aaSMatthew G. Knepley { 4659decb47aaSMatthew G. Knepley PetscErrorCode ierr; 4660decb47aaSMatthew G. Knepley 4661decb47aaSMatthew G. Knepley PetscFunctionBegin; 4662decb47aaSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4663e5e52638SMatthew G. Knepley if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3); 466444a7f3ddSMatthew G. Knepley PetscValidHeader(field, 4); 4665e5e52638SMatthew G. Knepley if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f); 466644a7f3ddSMatthew G. Knepley ierr = DMFieldEnlarge_Static(dm, f+1);CHKERRQ(ierr); 466744a7f3ddSMatthew G. Knepley ierr = DMLabelDestroy(&dm->fields[f].label);CHKERRQ(ierr); 466844a7f3ddSMatthew G. Knepley ierr = PetscObjectDestroy(&dm->fields[f].disc);CHKERRQ(ierr); 466944a7f3ddSMatthew G. Knepley dm->fields[f].label = label; 467044a7f3ddSMatthew G. Knepley dm->fields[f].disc = field; 467144a7f3ddSMatthew G. Knepley ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr); 467244a7f3ddSMatthew G. Knepley ierr = PetscObjectReference((PetscObject) field);CHKERRQ(ierr); 467334aa8a36SMatthew G. Knepley ierr = DMSetDefaultAdjacency_Private(dm, f, field);CHKERRQ(ierr); 46742df9ee95SMatthew G. Knepley ierr = DMClearDS(dm);CHKERRQ(ierr); 467544a7f3ddSMatthew G. Knepley PetscFunctionReturn(0); 467644a7f3ddSMatthew G. Knepley } 467744a7f3ddSMatthew G. Knepley 467844a7f3ddSMatthew G. Knepley /*@ 467944a7f3ddSMatthew G. Knepley DMAddField - Add the discretization object for the given DM field 468044a7f3ddSMatthew G. Knepley 4681d083f849SBarry Smith Logically collective on dm 468244a7f3ddSMatthew G. Knepley 468344a7f3ddSMatthew G. Knepley Input Parameters: 468444a7f3ddSMatthew G. Knepley + dm - The DM 468544a7f3ddSMatthew G. Knepley . label - The label indicating the support of the field, or NULL for the entire mesh 468644a7f3ddSMatthew G. Knepley - field - The discretization object 468744a7f3ddSMatthew G. Knepley 468844a7f3ddSMatthew G. Knepley Level: intermediate 468944a7f3ddSMatthew G. Knepley 469044a7f3ddSMatthew G. Knepley .seealso: DMSetField(), DMGetField() 469144a7f3ddSMatthew G. Knepley @*/ 469244a7f3ddSMatthew G. Knepley PetscErrorCode DMAddField(DM dm, DMLabel label, PetscObject field) 469344a7f3ddSMatthew G. Knepley { 469444a7f3ddSMatthew G. Knepley PetscInt Nf = dm->Nf; 469544a7f3ddSMatthew G. Knepley PetscErrorCode ierr; 469644a7f3ddSMatthew G. Knepley 469744a7f3ddSMatthew G. Knepley PetscFunctionBegin; 469844a7f3ddSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 469944a7f3ddSMatthew G. Knepley if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3); 470044a7f3ddSMatthew G. Knepley PetscValidHeader(field, 3); 470144a7f3ddSMatthew G. Knepley ierr = DMFieldEnlarge_Static(dm, Nf+1);CHKERRQ(ierr); 470244a7f3ddSMatthew G. Knepley dm->fields[Nf].label = label; 470344a7f3ddSMatthew G. Knepley dm->fields[Nf].disc = field; 470444a7f3ddSMatthew G. Knepley ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr); 470544a7f3ddSMatthew G. Knepley ierr = PetscObjectReference((PetscObject) field);CHKERRQ(ierr); 470634aa8a36SMatthew G. Knepley ierr = DMSetDefaultAdjacency_Private(dm, Nf, field);CHKERRQ(ierr); 47072df9ee95SMatthew G. Knepley ierr = DMClearDS(dm);CHKERRQ(ierr); 4708af122d2aSMatthew G Knepley PetscFunctionReturn(0); 4709af122d2aSMatthew G Knepley } 47106636e97aSMatthew G Knepley 4711e5e52638SMatthew G. Knepley /*@ 4712e5e52638SMatthew G. Knepley DMCopyFields - Copy the discretizations for the DM into another DM 4713e5e52638SMatthew G. Knepley 4714d083f849SBarry Smith Collective on dm 4715e5e52638SMatthew G. Knepley 4716e5e52638SMatthew G. Knepley Input Parameter: 4717e5e52638SMatthew G. Knepley . dm - The DM 4718e5e52638SMatthew G. Knepley 4719e5e52638SMatthew G. Knepley Output Parameter: 4720e5e52638SMatthew G. Knepley . newdm - The DM 4721e5e52638SMatthew G. Knepley 4722e5e52638SMatthew G. Knepley Level: advanced 4723e5e52638SMatthew G. Knepley 4724e5e52638SMatthew G. Knepley .seealso: DMGetField(), DMSetField(), DMAddField(), DMCopyDS(), DMGetDS(), DMGetCellDS() 4725e5e52638SMatthew G. Knepley @*/ 4726e5e52638SMatthew G. Knepley PetscErrorCode DMCopyFields(DM dm, DM newdm) 4727e5e52638SMatthew G. Knepley { 4728e5e52638SMatthew G. Knepley PetscInt Nf, f; 4729e5e52638SMatthew G. Knepley PetscErrorCode ierr; 4730e5e52638SMatthew G. Knepley 4731e5e52638SMatthew G. Knepley PetscFunctionBegin; 4732e5e52638SMatthew G. Knepley if (dm == newdm) PetscFunctionReturn(0); 4733e5e52638SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 4734e5e52638SMatthew G. Knepley ierr = DMClearFields(newdm);CHKERRQ(ierr); 4735e5e52638SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 4736e5e52638SMatthew G. Knepley DMLabel label; 4737e5e52638SMatthew G. Knepley PetscObject field; 473834aa8a36SMatthew G. Knepley PetscBool useCone, useClosure; 4739e5e52638SMatthew G. Knepley 4740e5e52638SMatthew G. Knepley ierr = DMGetField(dm, f, &label, &field);CHKERRQ(ierr); 4741e5e52638SMatthew G. Knepley ierr = DMSetField(newdm, f, label, field);CHKERRQ(ierr); 474234aa8a36SMatthew G. Knepley ierr = DMGetAdjacency(dm, f, &useCone, &useClosure);CHKERRQ(ierr); 474334aa8a36SMatthew G. Knepley ierr = DMSetAdjacency(newdm, f, useCone, useClosure);CHKERRQ(ierr); 474434aa8a36SMatthew G. Knepley } 474534aa8a36SMatthew G. Knepley PetscFunctionReturn(0); 474634aa8a36SMatthew G. Knepley } 474734aa8a36SMatthew G. Knepley 474834aa8a36SMatthew G. Knepley /*@ 474934aa8a36SMatthew G. Knepley DMGetAdjacency - Returns the flags for determining variable influence 475034aa8a36SMatthew G. Knepley 475134aa8a36SMatthew G. Knepley Not collective 475234aa8a36SMatthew G. Knepley 475334aa8a36SMatthew G. Knepley Input Parameters: 475434aa8a36SMatthew G. Knepley + dm - The DM object 475534aa8a36SMatthew G. Knepley - f - The field number, or PETSC_DEFAULT for the default adjacency 475634aa8a36SMatthew G. Knepley 475734aa8a36SMatthew G. Knepley Output Parameter: 475834aa8a36SMatthew G. Knepley + useCone - Flag for variable influence starting with the cone operation 475934aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure 476034aa8a36SMatthew G. Knepley 476134aa8a36SMatthew G. Knepley Notes: 476234aa8a36SMatthew G. Knepley $ FEM: Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE 476334aa8a36SMatthew G. Knepley $ FVM: Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE, useClosure = PETSC_FALSE 476434aa8a36SMatthew G. Knepley $ FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE, useClosure = PETSC_TRUE 4765979e053dSMatthew G. Knepley Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another. 476634aa8a36SMatthew G. Knepley 476734aa8a36SMatthew G. Knepley Level: developer 476834aa8a36SMatthew G. Knepley 476934aa8a36SMatthew G. Knepley .seealso: DMSetAdjacency(), DMGetField(), DMSetField() 477034aa8a36SMatthew G. Knepley @*/ 477134aa8a36SMatthew G. Knepley PetscErrorCode DMGetAdjacency(DM dm, PetscInt f, PetscBool *useCone, PetscBool *useClosure) 477234aa8a36SMatthew G. Knepley { 477334aa8a36SMatthew G. Knepley PetscFunctionBegin; 477434aa8a36SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4775534a8f05SLisandro Dalcin if (useCone) PetscValidBoolPointer(useCone, 3); 4776534a8f05SLisandro Dalcin if (useClosure) PetscValidBoolPointer(useClosure, 4); 477734aa8a36SMatthew G. Knepley if (f < 0) { 477834aa8a36SMatthew G. Knepley if (useCone) *useCone = dm->adjacency[0]; 477934aa8a36SMatthew G. Knepley if (useClosure) *useClosure = dm->adjacency[1]; 478034aa8a36SMatthew G. Knepley } else { 478134aa8a36SMatthew G. Knepley PetscInt Nf; 478234aa8a36SMatthew G. Knepley PetscErrorCode ierr; 478334aa8a36SMatthew G. Knepley 478434aa8a36SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 478534aa8a36SMatthew G. Knepley if (f >= Nf) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, Nf); 478634aa8a36SMatthew G. Knepley if (useCone) *useCone = dm->fields[f].adjacency[0]; 478734aa8a36SMatthew G. Knepley if (useClosure) *useClosure = dm->fields[f].adjacency[1]; 478834aa8a36SMatthew G. Knepley } 478934aa8a36SMatthew G. Knepley PetscFunctionReturn(0); 479034aa8a36SMatthew G. Knepley } 479134aa8a36SMatthew G. Knepley 479234aa8a36SMatthew G. Knepley /*@ 479334aa8a36SMatthew G. Knepley DMSetAdjacency - Set the flags for determining variable influence 479434aa8a36SMatthew G. Knepley 479534aa8a36SMatthew G. Knepley Not collective 479634aa8a36SMatthew G. Knepley 479734aa8a36SMatthew G. Knepley Input Parameters: 479834aa8a36SMatthew G. Knepley + dm - The DM object 479934aa8a36SMatthew G. Knepley . f - The field number 480034aa8a36SMatthew G. Knepley . useCone - Flag for variable influence starting with the cone operation 480134aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure 480234aa8a36SMatthew G. Knepley 480334aa8a36SMatthew G. Knepley Notes: 480434aa8a36SMatthew G. Knepley $ FEM: Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE 480534aa8a36SMatthew G. Knepley $ FVM: Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE, useClosure = PETSC_FALSE 480634aa8a36SMatthew G. Knepley $ FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE, useClosure = PETSC_TRUE 4807979e053dSMatthew G. Knepley Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another. 480834aa8a36SMatthew G. Knepley 480934aa8a36SMatthew G. Knepley Level: developer 481034aa8a36SMatthew G. Knepley 481134aa8a36SMatthew G. Knepley .seealso: DMGetAdjacency(), DMGetField(), DMSetField() 481234aa8a36SMatthew G. Knepley @*/ 481334aa8a36SMatthew G. Knepley PetscErrorCode DMSetAdjacency(DM dm, PetscInt f, PetscBool useCone, PetscBool useClosure) 481434aa8a36SMatthew G. Knepley { 481534aa8a36SMatthew G. Knepley PetscFunctionBegin; 481634aa8a36SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 481734aa8a36SMatthew G. Knepley if (f < 0) { 481834aa8a36SMatthew G. Knepley dm->adjacency[0] = useCone; 481934aa8a36SMatthew G. Knepley dm->adjacency[1] = useClosure; 482034aa8a36SMatthew G. Knepley } else { 482134aa8a36SMatthew G. Knepley PetscInt Nf; 482234aa8a36SMatthew G. Knepley PetscErrorCode ierr; 482334aa8a36SMatthew G. Knepley 482434aa8a36SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 482534aa8a36SMatthew G. Knepley if (f >= Nf) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, Nf); 482634aa8a36SMatthew G. Knepley dm->fields[f].adjacency[0] = useCone; 482734aa8a36SMatthew G. Knepley dm->fields[f].adjacency[1] = useClosure; 4828e5e52638SMatthew G. Knepley } 4829e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 4830e5e52638SMatthew G. Knepley } 4831e5e52638SMatthew G. Knepley 4832b0441da4SMatthew G. Knepley /*@ 4833b0441da4SMatthew G. Knepley DMGetBasicAdjacency - Returns the flags for determining variable influence, using either the default or field 0 if it is defined 4834b0441da4SMatthew G. Knepley 4835b0441da4SMatthew G. Knepley Not collective 4836b0441da4SMatthew G. Knepley 4837b0441da4SMatthew G. Knepley Input Parameters: 4838b0441da4SMatthew G. Knepley . dm - The DM object 4839b0441da4SMatthew G. Knepley 4840b0441da4SMatthew G. Knepley Output Parameter: 4841b0441da4SMatthew G. Knepley + useCone - Flag for variable influence starting with the cone operation 4842b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure 4843b0441da4SMatthew G. Knepley 4844b0441da4SMatthew G. Knepley Notes: 4845b0441da4SMatthew G. Knepley $ FEM: Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE 4846b0441da4SMatthew G. Knepley $ FVM: Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE, useClosure = PETSC_FALSE 4847b0441da4SMatthew G. Knepley $ FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE, useClosure = PETSC_TRUE 4848b0441da4SMatthew G. Knepley 4849b0441da4SMatthew G. Knepley Level: developer 4850b0441da4SMatthew G. Knepley 4851b0441da4SMatthew G. Knepley .seealso: DMSetBasicAdjacency(), DMGetField(), DMSetField() 4852b0441da4SMatthew G. Knepley @*/ 4853b0441da4SMatthew G. Knepley PetscErrorCode DMGetBasicAdjacency(DM dm, PetscBool *useCone, PetscBool *useClosure) 4854b0441da4SMatthew G. Knepley { 4855b0441da4SMatthew G. Knepley PetscInt Nf; 4856b0441da4SMatthew G. Knepley PetscErrorCode ierr; 4857b0441da4SMatthew G. Knepley 4858b0441da4SMatthew G. Knepley PetscFunctionBegin; 4859b0441da4SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4860534a8f05SLisandro Dalcin if (useCone) PetscValidBoolPointer(useCone, 3); 4861534a8f05SLisandro Dalcin if (useClosure) PetscValidBoolPointer(useClosure, 4); 4862b0441da4SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 4863b0441da4SMatthew G. Knepley if (!Nf) { 4864b0441da4SMatthew G. Knepley ierr = DMGetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr); 4865b0441da4SMatthew G. Knepley } else { 4866b0441da4SMatthew G. Knepley ierr = DMGetAdjacency(dm, 0, useCone, useClosure);CHKERRQ(ierr); 4867b0441da4SMatthew G. Knepley } 4868b0441da4SMatthew G. Knepley PetscFunctionReturn(0); 4869b0441da4SMatthew G. Knepley } 4870b0441da4SMatthew G. Knepley 4871b0441da4SMatthew G. Knepley /*@ 4872b0441da4SMatthew G. Knepley DMSetBasicAdjacency - Set the flags for determining variable influence, using either the default or field 0 if it is defined 4873b0441da4SMatthew G. Knepley 4874b0441da4SMatthew G. Knepley Not collective 4875b0441da4SMatthew G. Knepley 4876b0441da4SMatthew G. Knepley Input Parameters: 4877b0441da4SMatthew G. Knepley + dm - The DM object 4878b0441da4SMatthew G. Knepley . useCone - Flag for variable influence starting with the cone operation 4879b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure 4880b0441da4SMatthew G. Knepley 4881b0441da4SMatthew G. Knepley Notes: 4882b0441da4SMatthew G. Knepley $ FEM: Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE 4883b0441da4SMatthew G. Knepley $ FVM: Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE, useClosure = PETSC_FALSE 4884b0441da4SMatthew G. Knepley $ FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE, useClosure = PETSC_TRUE 4885b0441da4SMatthew G. Knepley 4886b0441da4SMatthew G. Knepley Level: developer 4887b0441da4SMatthew G. Knepley 4888b0441da4SMatthew G. Knepley .seealso: DMGetBasicAdjacency(), DMGetField(), DMSetField() 4889b0441da4SMatthew G. Knepley @*/ 4890b0441da4SMatthew G. Knepley PetscErrorCode DMSetBasicAdjacency(DM dm, PetscBool useCone, PetscBool useClosure) 4891b0441da4SMatthew G. Knepley { 4892b0441da4SMatthew G. Knepley PetscInt Nf; 4893b0441da4SMatthew G. Knepley PetscErrorCode ierr; 4894b0441da4SMatthew G. Knepley 4895b0441da4SMatthew G. Knepley PetscFunctionBegin; 4896b0441da4SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4897b0441da4SMatthew G. Knepley ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr); 4898b0441da4SMatthew G. Knepley if (!Nf) { 4899b0441da4SMatthew G. Knepley ierr = DMSetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr); 4900b0441da4SMatthew G. Knepley } else { 4901b0441da4SMatthew G. Knepley ierr = DMSetAdjacency(dm, 0, useCone, useClosure);CHKERRQ(ierr); 4902e5e52638SMatthew G. Knepley } 4903e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 4904e5e52638SMatthew G. Knepley } 4905e5e52638SMatthew G. Knepley 4906e5e52638SMatthew G. Knepley static PetscErrorCode DMDSEnlarge_Static(DM dm, PetscInt NdsNew) 4907e5e52638SMatthew G. Knepley { 4908e5e52638SMatthew G. Knepley DMSpace *tmpd; 4909e5e52638SMatthew G. Knepley PetscInt Nds = dm->Nds, s; 4910e5e52638SMatthew G. Knepley PetscErrorCode ierr; 4911e5e52638SMatthew G. Knepley 4912e5e52638SMatthew G. Knepley PetscFunctionBegin; 4913e5e52638SMatthew G. Knepley if (Nds >= NdsNew) PetscFunctionReturn(0); 4914e5e52638SMatthew G. Knepley ierr = PetscMalloc1(NdsNew, &tmpd);CHKERRQ(ierr); 4915e5e52638SMatthew G. Knepley for (s = 0; s < Nds; ++s) tmpd[s] = dm->probs[s]; 4916b3cf3223SMatthew G. Knepley for (s = Nds; s < NdsNew; ++s) {tmpd[s].ds = NULL; tmpd[s].label = NULL; tmpd[s].fields = NULL;} 4917e5e52638SMatthew G. Knepley ierr = PetscFree(dm->probs);CHKERRQ(ierr); 4918e5e52638SMatthew G. Knepley dm->Nds = NdsNew; 4919e5e52638SMatthew G. Knepley dm->probs = tmpd; 4920e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 4921e5e52638SMatthew G. Knepley } 4922e5e52638SMatthew G. Knepley 4923e5e52638SMatthew G. Knepley /*@ 4924e5e52638SMatthew G. Knepley DMGetNumDS - Get the number of discrete systems in the DM 4925e5e52638SMatthew G. Knepley 4926e5e52638SMatthew G. Knepley Not collective 4927e5e52638SMatthew G. Knepley 4928e5e52638SMatthew G. Knepley Input Parameter: 4929e5e52638SMatthew G. Knepley . dm - The DM 4930e5e52638SMatthew G. Knepley 4931e5e52638SMatthew G. Knepley Output Parameter: 4932e5e52638SMatthew G. Knepley . Nds - The number of PetscDS objects 4933e5e52638SMatthew G. Knepley 4934e5e52638SMatthew G. Knepley Level: intermediate 4935e5e52638SMatthew G. Knepley 4936e5e52638SMatthew G. Knepley .seealso: DMGetDS(), DMGetCellDS() 4937e5e52638SMatthew G. Knepley @*/ 4938e5e52638SMatthew G. Knepley PetscErrorCode DMGetNumDS(DM dm, PetscInt *Nds) 4939e5e52638SMatthew G. Knepley { 4940e5e52638SMatthew G. Knepley PetscFunctionBegin; 4941e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4942534a8f05SLisandro Dalcin PetscValidIntPointer(Nds, 2); 4943e5e52638SMatthew G. Knepley *Nds = dm->Nds; 4944e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 4945e5e52638SMatthew G. Knepley } 4946e5e52638SMatthew G. Knepley 4947e5e52638SMatthew G. Knepley /*@ 4948e5e52638SMatthew G. Knepley DMClearDS - Remove all discrete systems from the DM 4949e5e52638SMatthew G. Knepley 4950d083f849SBarry Smith Logically collective on dm 4951e5e52638SMatthew G. Knepley 4952e5e52638SMatthew G. Knepley Input Parameter: 4953e5e52638SMatthew G. Knepley . dm - The DM 4954e5e52638SMatthew G. Knepley 4955e5e52638SMatthew G. Knepley Level: intermediate 4956e5e52638SMatthew G. Knepley 4957e5e52638SMatthew G. Knepley .seealso: DMGetNumDS(), DMGetDS(), DMSetField() 4958e5e52638SMatthew G. Knepley @*/ 4959e5e52638SMatthew G. Knepley PetscErrorCode DMClearDS(DM dm) 4960e5e52638SMatthew G. Knepley { 4961e5e52638SMatthew G. Knepley PetscInt s; 4962e5e52638SMatthew G. Knepley PetscErrorCode ierr; 4963e5e52638SMatthew G. Knepley 4964e5e52638SMatthew G. Knepley PetscFunctionBegin; 4965e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4966e5e52638SMatthew G. Knepley for (s = 0; s < dm->Nds; ++s) { 4967e5e52638SMatthew G. Knepley ierr = PetscDSDestroy(&dm->probs[s].ds);CHKERRQ(ierr); 4968e5e52638SMatthew G. Knepley ierr = DMLabelDestroy(&dm->probs[s].label);CHKERRQ(ierr); 4969b3cf3223SMatthew G. Knepley ierr = ISDestroy(&dm->probs[s].fields);CHKERRQ(ierr); 4970e5e52638SMatthew G. Knepley } 4971e5e52638SMatthew G. Knepley ierr = PetscFree(dm->probs);CHKERRQ(ierr); 4972e5e52638SMatthew G. Knepley dm->probs = NULL; 4973e5e52638SMatthew G. Knepley dm->Nds = 0; 4974e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 4975e5e52638SMatthew G. Knepley } 4976e5e52638SMatthew G. Knepley 4977e5e52638SMatthew G. Knepley /*@ 4978e5e52638SMatthew G. Knepley DMGetDS - Get the default PetscDS 4979e5e52638SMatthew G. Knepley 4980e5e52638SMatthew G. Knepley Not collective 4981e5e52638SMatthew G. Knepley 4982e5e52638SMatthew G. Knepley Input Parameter: 4983e5e52638SMatthew G. Knepley . dm - The DM 4984e5e52638SMatthew G. Knepley 4985e5e52638SMatthew G. Knepley Output Parameter: 4986e5e52638SMatthew G. Knepley . prob - The default PetscDS 4987e5e52638SMatthew G. Knepley 4988e5e52638SMatthew G. Knepley Level: intermediate 4989e5e52638SMatthew G. Knepley 4990e5e52638SMatthew G. Knepley .seealso: DMGetCellDS(), DMGetRegionDS() 4991e5e52638SMatthew G. Knepley @*/ 4992e5e52638SMatthew G. Knepley PetscErrorCode DMGetDS(DM dm, PetscDS *prob) 4993e5e52638SMatthew G. Knepley { 4994b0143b4dSMatthew G. Knepley PetscErrorCode ierr; 4995b0143b4dSMatthew G. Knepley 4996e5e52638SMatthew G. Knepley PetscFunctionBeginHot; 4997e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 4998e5e52638SMatthew G. Knepley PetscValidPointer(prob, 2); 4999b0143b4dSMatthew G. Knepley if (dm->Nds <= 0) { 5000b0143b4dSMatthew G. Knepley PetscDS ds; 5001b0143b4dSMatthew G. Knepley 5002b0143b4dSMatthew G. Knepley ierr = PetscDSCreate(PetscObjectComm((PetscObject) dm), &ds);CHKERRQ(ierr); 5003b3cf3223SMatthew G. Knepley ierr = DMSetRegionDS(dm, NULL, NULL, ds);CHKERRQ(ierr); 5004b0143b4dSMatthew G. Knepley ierr = PetscDSDestroy(&ds);CHKERRQ(ierr); 5005b0143b4dSMatthew G. Knepley } 5006b0143b4dSMatthew G. Knepley *prob = dm->probs[0].ds; 5007e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5008e5e52638SMatthew G. Knepley } 5009e5e52638SMatthew G. Knepley 5010e5e52638SMatthew G. Knepley /*@ 5011e5e52638SMatthew G. Knepley DMGetCellDS - Get the PetscDS defined on a given cell 5012e5e52638SMatthew G. Knepley 5013e5e52638SMatthew G. Knepley Not collective 5014e5e52638SMatthew G. Knepley 5015e5e52638SMatthew G. Knepley Input Parameters: 5016e5e52638SMatthew G. Knepley + dm - The DM 5017e5e52638SMatthew G. Knepley - point - Cell for the DS 5018e5e52638SMatthew G. Knepley 5019e5e52638SMatthew G. Knepley Output Parameter: 5020e5e52638SMatthew G. Knepley . prob - The PetscDS defined on the given cell 5021e5e52638SMatthew G. Knepley 5022e5e52638SMatthew G. Knepley Level: developer 5023e5e52638SMatthew G. Knepley 5024b0143b4dSMatthew G. Knepley .seealso: DMGetDS(), DMSetRegionDS() 5025e5e52638SMatthew G. Knepley @*/ 5026e5e52638SMatthew G. Knepley PetscErrorCode DMGetCellDS(DM dm, PetscInt point, PetscDS *prob) 5027e5e52638SMatthew G. Knepley { 5028e5e52638SMatthew G. Knepley PetscDS probDef = NULL; 5029e5e52638SMatthew G. Knepley PetscInt s; 5030e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5031e5e52638SMatthew G. Knepley 5032e5e52638SMatthew G. Knepley PetscFunctionBeginHot; 5033e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5034e5e52638SMatthew G. Knepley PetscValidPointer(prob, 3); 5035e5e52638SMatthew G. Knepley *prob = NULL; 5036e5e52638SMatthew G. Knepley for (s = 0; s < dm->Nds; ++s) { 5037e5e52638SMatthew G. Knepley PetscInt val; 5038e5e52638SMatthew G. Knepley 5039e5e52638SMatthew G. Knepley if (!dm->probs[s].label) {probDef = dm->probs[s].ds;} 5040e5e52638SMatthew G. Knepley else { 5041e5e52638SMatthew G. Knepley ierr = DMLabelGetValue(dm->probs[s].label, point, &val);CHKERRQ(ierr); 5042e5e52638SMatthew G. Knepley if (val >= 0) {*prob = dm->probs[s].ds; break;} 5043e5e52638SMatthew G. Knepley } 5044e5e52638SMatthew G. Knepley } 5045e5e52638SMatthew G. Knepley if (!*prob) *prob = probDef; 5046e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5047e5e52638SMatthew G. Knepley } 5048e5e52638SMatthew G. Knepley 5049e5e52638SMatthew G. Knepley /*@ 5050e5e52638SMatthew G. Knepley DMGetRegionDS - Get the PetscDS for a given mesh region, defined by a DMLabel 5051e5e52638SMatthew G. Knepley 5052e5e52638SMatthew G. Knepley Not collective 5053e5e52638SMatthew G. Knepley 5054e5e52638SMatthew G. Knepley Input Parameters: 5055e5e52638SMatthew G. Knepley + dm - The DM 5056e5e52638SMatthew G. Knepley - label - The DMLabel defining the mesh region, or NULL for the entire mesh 5057e5e52638SMatthew G. Knepley 5058b3cf3223SMatthew G. Knepley Output Parameters: 5059b3cf3223SMatthew G. Knepley + fields - The IS containing the DM field numbers for the fields in this DS, or NULL 5060b3cf3223SMatthew G. Knepley - prob - The PetscDS defined on the given region, or NULL 5061e5e52638SMatthew G. Knepley 5062e5e52638SMatthew G. Knepley Note: If the label is missing, this function returns an error 5063e5e52638SMatthew G. Knepley 5064e5e52638SMatthew G. Knepley Level: advanced 5065e5e52638SMatthew G. Knepley 5066e5e52638SMatthew G. Knepley .seealso: DMGetRegionNumDS(), DMSetRegionDS(), DMGetDS(), DMGetCellDS() 5067e5e52638SMatthew G. Knepley @*/ 5068b3cf3223SMatthew G. Knepley PetscErrorCode DMGetRegionDS(DM dm, DMLabel label, IS *fields, PetscDS *ds) 5069e5e52638SMatthew G. Knepley { 5070e5e52638SMatthew G. Knepley PetscInt Nds = dm->Nds, s; 5071e5e52638SMatthew G. Knepley 5072e5e52638SMatthew G. Knepley PetscFunctionBegin; 5073e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5074e5e52638SMatthew G. Knepley if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2); 5075b3cf3223SMatthew G. Knepley if (fields) {PetscValidPointer(fields, 3); *fields = NULL;} 5076b3cf3223SMatthew G. Knepley if (ds) {PetscValidPointer(ds, 4); *ds = NULL;} 5077e5e52638SMatthew G. Knepley for (s = 0; s < Nds; ++s) { 5078b3cf3223SMatthew G. Knepley if (dm->probs[s].label == label) { 5079b3cf3223SMatthew G. Knepley if (fields) *fields = dm->probs[s].fields; 5080b3cf3223SMatthew G. Knepley if (ds) *ds = dm->probs[s].ds; 5081b3cf3223SMatthew G. Knepley PetscFunctionReturn(0); 5082b3cf3223SMatthew G. Knepley } 5083e5e52638SMatthew G. Knepley } 50842df9ee95SMatthew G. Knepley PetscFunctionReturn(0); 5085e5e52638SMatthew G. Knepley } 5086e5e52638SMatthew G. Knepley 5087e5e52638SMatthew G. Knepley /*@ 5088e5e52638SMatthew G. Knepley DMGetRegionNumDS - Get the PetscDS for a given mesh region, defined by the region number 5089e5e52638SMatthew G. Knepley 5090e5e52638SMatthew G. Knepley Not collective 5091e5e52638SMatthew G. Knepley 5092e5e52638SMatthew G. Knepley Input Parameters: 5093e5e52638SMatthew G. Knepley + dm - The DM 5094e5e52638SMatthew G. Knepley - num - The region number, in [0, Nds) 5095e5e52638SMatthew G. Knepley 5096e5e52638SMatthew G. Knepley Output Parameters: 5097b3cf3223SMatthew G. Knepley + label - The region label, or NULL 5098b3cf3223SMatthew G. Knepley . fields - The IS containing the DM field numbers for the fields in this DS, or NULL 5099b3cf3223SMatthew G. Knepley - prob - The PetscDS defined on the given region, or NULL 5100e5e52638SMatthew G. Knepley 5101e5e52638SMatthew G. Knepley Level: advanced 5102e5e52638SMatthew G. Knepley 5103e5e52638SMatthew G. Knepley .seealso: DMGetRegionDS(), DMSetRegionDS(), DMGetDS(), DMGetCellDS() 5104e5e52638SMatthew G. Knepley @*/ 5105b3cf3223SMatthew G. Knepley PetscErrorCode DMGetRegionNumDS(DM dm, PetscInt num, DMLabel *label, IS *fields, PetscDS *ds) 5106e5e52638SMatthew G. Knepley { 5107e5e52638SMatthew G. Knepley PetscInt Nds; 5108e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5109e5e52638SMatthew G. Knepley 5110e5e52638SMatthew G. Knepley PetscFunctionBegin; 5111e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5112e5e52638SMatthew G. Knepley ierr = DMGetNumDS(dm, &Nds);CHKERRQ(ierr); 5113e5e52638SMatthew G. Knepley if ((num < 0) || (num >= Nds)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Region number %D is not in [0, %D)", num, Nds); 5114e5e52638SMatthew G. Knepley if (label) { 5115e5e52638SMatthew G. Knepley PetscValidPointer(label, 3); 5116e5e52638SMatthew G. Knepley *label = dm->probs[num].label; 5117e5e52638SMatthew G. Knepley } 5118b3cf3223SMatthew G. Knepley if (fields) { 5119b3cf3223SMatthew G. Knepley PetscValidPointer(fields, 4); 5120b3cf3223SMatthew G. Knepley *fields = dm->probs[num].fields; 5121b3cf3223SMatthew G. Knepley } 5122e5e52638SMatthew G. Knepley if (ds) { 5123b3cf3223SMatthew G. Knepley PetscValidPointer(ds, 5); 5124e5e52638SMatthew G. Knepley *ds = dm->probs[num].ds; 5125e5e52638SMatthew G. Knepley } 5126e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5127e5e52638SMatthew G. Knepley } 5128e5e52638SMatthew G. Knepley 5129e5e52638SMatthew G. Knepley /*@ 5130e5e52638SMatthew G. Knepley DMSetRegionDS - Set the PetscDS for a given mesh region, defined by a DMLabel 5131e5e52638SMatthew G. Knepley 5132d083f849SBarry Smith Collective on dm 5133e5e52638SMatthew G. Knepley 5134e5e52638SMatthew G. Knepley Input Parameters: 5135e5e52638SMatthew G. Knepley + dm - The DM 5136e5e52638SMatthew G. Knepley . label - The DMLabel defining the mesh region, or NULL for the entire mesh 5137b3cf3223SMatthew G. Knepley . fields - The IS containing the DM field numbers for the fields in this DS, or NULL for all fields 5138e5e52638SMatthew G. Knepley - prob - The PetscDS defined on the given cell 5139e5e52638SMatthew G. Knepley 5140b3cf3223SMatthew G. Knepley Note: If the label has a DS defined, it will be replaced. Otherwise, it will be added to the DM. If DS is replaced, 5141b3cf3223SMatthew G. Knepley the fields argument is ignored. 5142e5e52638SMatthew G. Knepley 5143e5e52638SMatthew G. Knepley Level: advanced 5144e5e52638SMatthew G. Knepley 5145e5e52638SMatthew G. Knepley .seealso: DMGetRegionDS(), DMGetDS(), DMGetCellDS() 5146e5e52638SMatthew G. Knepley @*/ 5147b3cf3223SMatthew G. Knepley PetscErrorCode DMSetRegionDS(DM dm, DMLabel label, IS fields, PetscDS ds) 5148e5e52638SMatthew G. Knepley { 5149e5e52638SMatthew G. Knepley PetscInt Nds = dm->Nds, s; 5150e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5151e5e52638SMatthew G. Knepley 5152e5e52638SMatthew G. Knepley PetscFunctionBegin; 5153e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5154e5e52638SMatthew G. Knepley if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2); 5155e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(ds, PETSCDS_CLASSID, 3); 5156e5e52638SMatthew G. Knepley for (s = 0; s < Nds; ++s) { 5157e5e52638SMatthew G. Knepley if (dm->probs[s].label == label) { 5158b3cf3223SMatthew G. Knepley ierr = PetscDSDestroy(&dm->probs[s].ds);CHKERRQ(ierr); 5159e5e52638SMatthew G. Knepley dm->probs[s].ds = ds; 5160e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5161e5e52638SMatthew G. Knepley } 5162e5e52638SMatthew G. Knepley } 51631b5e6740SSatish Balay ierr = DMDSEnlarge_Static(dm, Nds+1);CHKERRQ(ierr); 5164e5e52638SMatthew G. Knepley ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr); 5165b3cf3223SMatthew G. Knepley ierr = PetscObjectReference((PetscObject) fields);CHKERRQ(ierr); 5166e5e52638SMatthew G. Knepley ierr = PetscObjectReference((PetscObject) ds);CHKERRQ(ierr); 5167e5e52638SMatthew G. Knepley if (!label) { 5168e5e52638SMatthew G. Knepley /* Put the NULL label at the front, so it is returned as the default */ 5169e5e52638SMatthew G. Knepley for (s = Nds-1; s >=0; --s) dm->probs[s+1] = dm->probs[s]; 5170e5e52638SMatthew G. Knepley Nds = 0; 5171e5e52638SMatthew G. Knepley } 5172e5e52638SMatthew G. Knepley dm->probs[Nds].label = label; 5173b3cf3223SMatthew G. Knepley dm->probs[Nds].fields = fields; 5174e5e52638SMatthew G. Knepley dm->probs[Nds].ds = ds; 5175e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5176e5e52638SMatthew G. Knepley } 5177e5e52638SMatthew G. Knepley 5178e5e52638SMatthew G. Knepley /*@ 5179e5e52638SMatthew G. Knepley DMCreateDS - Create the discrete systems for the DM based upon the fields added to the DM 5180e5e52638SMatthew G. Knepley 5181d083f849SBarry Smith Collective on dm 5182e5e52638SMatthew G. Knepley 5183e5e52638SMatthew G. Knepley Input Parameter: 5184e5e52638SMatthew G. Knepley . dm - The DM 5185e5e52638SMatthew G. Knepley 5186e5e52638SMatthew G. Knepley Note: If the label has a DS defined, it will be replaced. Otherwise, it will be added to the DM. 5187e5e52638SMatthew G. Knepley 5188e5e52638SMatthew G. Knepley Level: intermediate 5189e5e52638SMatthew G. Knepley 5190e5e52638SMatthew G. Knepley .seealso: DMSetField, DMAddField(), DMGetDS(), DMGetCellDS(), DMGetRegionDS(), DMSetRegionDS() 5191e5e52638SMatthew G. Knepley @*/ 5192e5e52638SMatthew G. Knepley PetscErrorCode DMCreateDS(DM dm) 5193e5e52638SMatthew G. Knepley { 5194e5e52638SMatthew G. Knepley MPI_Comm comm; 5195e5e52638SMatthew G. Knepley PetscDS prob, probh = NULL; 5196b3cf3223SMatthew G. Knepley PetscInt dimEmbed, Nf = dm->Nf, f, s, field = 0, fieldh = 0; 5197e5e52638SMatthew G. Knepley PetscBool doSetup = PETSC_TRUE; 5198e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5199e5e52638SMatthew G. Knepley 5200e5e52638SMatthew G. Knepley PetscFunctionBegin; 5201e5e52638SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5202e5e52638SMatthew G. Knepley if (!dm->fields) PetscFunctionReturn(0); 5203e5e52638SMatthew G. Knepley /* Can only handle two label cases right now: 5204e5e52638SMatthew G. Knepley 1) NULL 5205e5e52638SMatthew G. Knepley 2) Hybrid cells 5206e5e52638SMatthew G. Knepley */ 5207e5e52638SMatthew G. Knepley ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr); 5208e5e52638SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr); 5209e5e52638SMatthew G. Knepley /* Create default DS */ 5210b3cf3223SMatthew G. Knepley ierr = DMGetRegionDS(dm, NULL, NULL, &prob);CHKERRQ(ierr); 52112df9ee95SMatthew G. Knepley if (!prob) { 5212b3cf3223SMatthew G. Knepley IS fields; 5213b3cf3223SMatthew G. Knepley PetscInt *fld, nf; 5214b3cf3223SMatthew G. Knepley 5215b3cf3223SMatthew G. Knepley for (f = 0, nf = 0; f < Nf; ++f) if (!dm->fields[f].label) ++nf; 5216b3cf3223SMatthew G. Knepley ierr = PetscMalloc1(nf, &fld);CHKERRQ(ierr); 5217b3cf3223SMatthew G. Knepley for (f = 0, nf = 0; f < Nf; ++f) if (!dm->fields[f].label) fld[nf++] = f; 521888f0c812SMatthew G. Knepley ierr = ISCreate(PETSC_COMM_SELF, &fields);CHKERRQ(ierr); 521988f0c812SMatthew G. Knepley ierr = PetscObjectSetOptionsPrefix((PetscObject) fields, "dm_fields_");CHKERRQ(ierr); 522088f0c812SMatthew G. Knepley ierr = ISSetType(fields, ISGENERAL);CHKERRQ(ierr); 522188f0c812SMatthew G. Knepley ierr = ISGeneralSetIndices(fields, nf, fld, PETSC_OWN_POINTER);CHKERRQ(ierr); 522288f0c812SMatthew G. Knepley 52232df9ee95SMatthew G. Knepley ierr = PetscDSCreate(comm, &prob);CHKERRQ(ierr); 5224b3cf3223SMatthew G. Knepley ierr = DMSetRegionDS(dm, NULL, fields, prob);CHKERRQ(ierr); 52252df9ee95SMatthew G. Knepley ierr = PetscDSDestroy(&prob);CHKERRQ(ierr); 5226b3cf3223SMatthew G. Knepley ierr = ISDestroy(&fields);CHKERRQ(ierr); 5227b3cf3223SMatthew G. Knepley ierr = DMGetRegionDS(dm, NULL, NULL, &prob);CHKERRQ(ierr); 52282df9ee95SMatthew G. Knepley } 5229e5e52638SMatthew G. Knepley ierr = PetscDSSetCoordinateDimension(prob, dimEmbed);CHKERRQ(ierr); 5230e5e52638SMatthew G. Knepley /* Optionally create hybrid DS */ 5231b3cf3223SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 5232e5e52638SMatthew G. Knepley DMLabel label = dm->fields[f].label; 5233e5e52638SMatthew G. Knepley PetscInt lStart, lEnd; 5234e5e52638SMatthew G. Knepley 5235e5e52638SMatthew G. Knepley if (label) { 52360122748bSMatthew G. Knepley DM plex; 5237a2d47024SMatthew G. Knepley IS fields; 5238a2d47024SMatthew G. Knepley PetscInt *fld; 52390122748bSMatthew G. Knepley PetscInt depth, pMax[4]; 52400122748bSMatthew G. Knepley 52410122748bSMatthew G. Knepley ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr); 52420122748bSMatthew G. Knepley ierr = DMPlexGetDepth(plex, &depth);CHKERRQ(ierr); 52430122748bSMatthew G. Knepley ierr = DMPlexGetHybridBounds(plex, depth >= 0 ? &pMax[depth] : NULL, depth>1 ? &pMax[depth-1] : NULL, depth>2 ? &pMax[1] : NULL, &pMax[0]);CHKERRQ(ierr); 52440122748bSMatthew G. Knepley ierr = DMDestroy(&plex);CHKERRQ(ierr); 52450122748bSMatthew G. Knepley 5246e5e52638SMatthew G. Knepley ierr = DMLabelGetBounds(label, &lStart, &lEnd);CHKERRQ(ierr); 5247e5e52638SMatthew G. Knepley if (lStart < pMax[depth]) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Only support labels over hybrid cells right now"); 5248e5e52638SMatthew G. Knepley ierr = PetscDSCreate(comm, &probh);CHKERRQ(ierr); 5249a2d47024SMatthew G. Knepley ierr = PetscMalloc1(1, &fld);CHKERRQ(ierr); 5250a2d47024SMatthew G. Knepley fld[0] = f; 5251a2d47024SMatthew G. Knepley ierr = ISCreate(PETSC_COMM_SELF, &fields);CHKERRQ(ierr); 5252a2d47024SMatthew G. Knepley ierr = PetscObjectSetOptionsPrefix((PetscObject) fields, "dm_fields_");CHKERRQ(ierr); 5253a2d47024SMatthew G. Knepley ierr = ISSetType(fields, ISGENERAL);CHKERRQ(ierr); 5254a2d47024SMatthew G. Knepley ierr = ISGeneralSetIndices(fields, 1, fld, PETSC_OWN_POINTER);CHKERRQ(ierr); 5255a2d47024SMatthew G. Knepley ierr = DMSetRegionDS(dm, label, fields, probh);CHKERRQ(ierr); 5256a2d47024SMatthew G. Knepley ierr = ISDestroy(&fields);CHKERRQ(ierr); 5257e5e52638SMatthew G. Knepley ierr = PetscDSSetHybrid(probh, PETSC_TRUE);CHKERRQ(ierr); 5258e5e52638SMatthew G. Knepley ierr = PetscDSSetCoordinateDimension(probh, dimEmbed);CHKERRQ(ierr); 5259e5e52638SMatthew G. Knepley break; 5260e5e52638SMatthew G. Knepley } 5261e5e52638SMatthew G. Knepley } 5262e5e52638SMatthew G. Knepley /* Set fields in DSes */ 5263b3cf3223SMatthew G. Knepley for (f = 0; f < Nf; ++f) { 5264e5e52638SMatthew G. Knepley DMLabel label = dm->fields[f].label; 5265e5e52638SMatthew G. Knepley PetscObject disc = dm->fields[f].disc; 5266e5e52638SMatthew G. Knepley 5267e5e52638SMatthew G. Knepley if (!label) { 5268e5e52638SMatthew G. Knepley ierr = PetscDSSetDiscretization(prob, field++, disc);CHKERRQ(ierr); 5269e5e52638SMatthew G. Knepley if (probh) { 5270e5e52638SMatthew G. Knepley PetscFE subfe; 5271e5e52638SMatthew G. Knepley 5272e5e52638SMatthew G. Knepley ierr = PetscFEGetHeightSubspace((PetscFE) disc, 1, &subfe);CHKERRQ(ierr); 5273e5e52638SMatthew G. Knepley ierr = PetscDSSetDiscretization(probh, fieldh++, (PetscObject) subfe);CHKERRQ(ierr); 5274e5e52638SMatthew G. Knepley } 5275e5e52638SMatthew G. Knepley } else { 5276e5e52638SMatthew G. Knepley ierr = PetscDSSetDiscretization(probh, fieldh++, disc);CHKERRQ(ierr); 5277e5e52638SMatthew G. Knepley } 5278e5e52638SMatthew G. Knepley /* We allow people to have placeholder fields and construct the Section by hand */ 5279e5e52638SMatthew G. Knepley { 5280e5e52638SMatthew G. Knepley PetscClassId id; 5281e5e52638SMatthew G. Knepley 5282e5e52638SMatthew G. Knepley ierr = PetscObjectGetClassId(disc, &id);CHKERRQ(ierr); 5283e5e52638SMatthew G. Knepley if ((id != PETSCFE_CLASSID) && (id != PETSCFV_CLASSID)) doSetup = PETSC_FALSE; 5284e5e52638SMatthew G. Knepley } 5285e5e52638SMatthew G. Knepley } 5286e5e52638SMatthew G. Knepley ierr = PetscDSDestroy(&probh);CHKERRQ(ierr); 5287e5e52638SMatthew G. Knepley /* Setup DSes */ 5288e5e52638SMatthew G. Knepley if (doSetup) { 5289e5e52638SMatthew G. Knepley for (s = 0; s < dm->Nds; ++s) {ierr = PetscDSSetUp(dm->probs[s].ds);CHKERRQ(ierr);} 5290e5e52638SMatthew G. Knepley } 5291e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5292e5e52638SMatthew G. Knepley } 5293e5e52638SMatthew G. Knepley 5294e5e52638SMatthew G. Knepley /*@ 5295e5e52638SMatthew G. Knepley DMCopyDS - Copy the discrete systems for the DM into another DM 5296e5e52638SMatthew G. Knepley 5297d083f849SBarry Smith Collective on dm 5298e5e52638SMatthew G. Knepley 5299e5e52638SMatthew G. Knepley Input Parameter: 5300e5e52638SMatthew G. Knepley . dm - The DM 5301e5e52638SMatthew G. Knepley 5302e5e52638SMatthew G. Knepley Output Parameter: 5303e5e52638SMatthew G. Knepley . newdm - The DM 5304e5e52638SMatthew G. Knepley 5305e5e52638SMatthew G. Knepley Level: advanced 5306e5e52638SMatthew G. Knepley 5307e5e52638SMatthew G. Knepley .seealso: DMCopyFields(), DMAddField(), DMGetDS(), DMGetCellDS(), DMGetRegionDS(), DMSetRegionDS() 5308e5e52638SMatthew G. Knepley @*/ 5309e5e52638SMatthew G. Knepley PetscErrorCode DMCopyDS(DM dm, DM newdm) 5310e5e52638SMatthew G. Knepley { 5311e5e52638SMatthew G. Knepley PetscInt Nds, s; 5312e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5313e5e52638SMatthew G. Knepley 5314e5e52638SMatthew G. Knepley PetscFunctionBegin; 5315e5e52638SMatthew G. Knepley if (dm == newdm) PetscFunctionReturn(0); 5316e5e52638SMatthew G. Knepley ierr = DMGetNumDS(dm, &Nds);CHKERRQ(ierr); 5317e5e52638SMatthew G. Knepley ierr = DMClearDS(newdm);CHKERRQ(ierr); 5318e5e52638SMatthew G. Knepley for (s = 0; s < Nds; ++s) { 5319e5e52638SMatthew G. Knepley DMLabel label; 5320b3cf3223SMatthew G. Knepley IS fields; 5321e5e52638SMatthew G. Knepley PetscDS ds; 5322e5e52638SMatthew G. Knepley 5323b3cf3223SMatthew G. Knepley ierr = DMGetRegionNumDS(dm, s, &label, &fields, &ds);CHKERRQ(ierr); 5324b3cf3223SMatthew G. Knepley ierr = DMSetRegionDS(newdm, label, fields, ds);CHKERRQ(ierr); 5325e5e52638SMatthew G. Knepley } 5326e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5327e5e52638SMatthew G. Knepley } 5328e5e52638SMatthew G. Knepley 5329e5e52638SMatthew G. Knepley /*@ 5330e5e52638SMatthew G. Knepley DMCopyDisc - Copy the fields and discrete systems for the DM into another DM 5331e5e52638SMatthew G. Knepley 5332d083f849SBarry Smith Collective on dm 5333e5e52638SMatthew G. Knepley 5334e5e52638SMatthew G. Knepley Input Parameter: 5335e5e52638SMatthew G. Knepley . dm - The DM 5336e5e52638SMatthew G. Knepley 5337e5e52638SMatthew G. Knepley Output Parameter: 5338e5e52638SMatthew G. Knepley . newdm - The DM 5339e5e52638SMatthew G. Knepley 5340e5e52638SMatthew G. Knepley Level: advanced 5341e5e52638SMatthew G. Knepley 5342e5e52638SMatthew G. Knepley .seealso: DMCopyFields(), DMCopyDS() 5343e5e52638SMatthew G. Knepley @*/ 5344e5e52638SMatthew G. Knepley PetscErrorCode DMCopyDisc(DM dm, DM newdm) 5345e5e52638SMatthew G. Knepley { 5346e5e52638SMatthew G. Knepley PetscErrorCode ierr; 5347e5e52638SMatthew G. Knepley 5348e5e52638SMatthew G. Knepley PetscFunctionBegin; 5349e5e52638SMatthew G. Knepley ierr = DMCopyFields(dm, newdm);CHKERRQ(ierr); 5350e5e52638SMatthew G. Knepley ierr = DMCopyDS(dm, newdm);CHKERRQ(ierr); 5351e5e52638SMatthew G. Knepley PetscFunctionReturn(0); 5352e5e52638SMatthew G. Knepley } 5353e5e52638SMatthew G. Knepley 5354b64e0483SPeter Brune PetscErrorCode DMRestrictHook_Coordinates(DM dm,DM dmc,void *ctx) 5355b64e0483SPeter Brune { 5356b64e0483SPeter Brune DM dm_coord,dmc_coord; 5357b64e0483SPeter Brune PetscErrorCode ierr; 5358b64e0483SPeter Brune Vec coords,ccoords; 53596dbf9973SLawrence Mitchell Mat inject; 5360b64e0483SPeter Brune PetscFunctionBegin; 5361b64e0483SPeter Brune ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr); 5362b64e0483SPeter Brune ierr = DMGetCoordinateDM(dmc,&dmc_coord);CHKERRQ(ierr); 5363b64e0483SPeter Brune ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr); 5364b64e0483SPeter Brune ierr = DMGetCoordinates(dmc,&ccoords);CHKERRQ(ierr); 5365b64e0483SPeter Brune if (coords && !ccoords) { 5366b64e0483SPeter Brune ierr = DMCreateGlobalVector(dmc_coord,&ccoords);CHKERRQ(ierr); 53676668ed41SLisandro Dalcin ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr); 53686dbf9973SLawrence Mitchell ierr = DMCreateInjection(dmc_coord,dm_coord,&inject);CHKERRQ(ierr); 53692adcf181SLawrence Mitchell ierr = MatRestrict(inject,coords,ccoords);CHKERRQ(ierr); 53706dbf9973SLawrence Mitchell ierr = MatDestroy(&inject);CHKERRQ(ierr); 5371b64e0483SPeter Brune ierr = DMSetCoordinates(dmc,ccoords);CHKERRQ(ierr); 5372b64e0483SPeter Brune ierr = VecDestroy(&ccoords);CHKERRQ(ierr); 5373b64e0483SPeter Brune } 5374b64e0483SPeter Brune PetscFunctionReturn(0); 5375b64e0483SPeter Brune } 5376b64e0483SPeter Brune 537703dadc2fSPeter Brune static PetscErrorCode DMSubDomainHook_Coordinates(DM dm,DM subdm,void *ctx) 537803dadc2fSPeter Brune { 537903dadc2fSPeter Brune DM dm_coord,subdm_coord; 538003dadc2fSPeter Brune PetscErrorCode ierr; 538103dadc2fSPeter Brune Vec coords,ccoords,clcoords; 538203dadc2fSPeter Brune VecScatter *scat_i,*scat_g; 538303dadc2fSPeter Brune PetscFunctionBegin; 538403dadc2fSPeter Brune ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr); 538503dadc2fSPeter Brune ierr = DMGetCoordinateDM(subdm,&subdm_coord);CHKERRQ(ierr); 538603dadc2fSPeter Brune ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr); 538703dadc2fSPeter Brune ierr = DMGetCoordinates(subdm,&ccoords);CHKERRQ(ierr); 538803dadc2fSPeter Brune if (coords && !ccoords) { 538903dadc2fSPeter Brune ierr = DMCreateGlobalVector(subdm_coord,&ccoords);CHKERRQ(ierr); 53906668ed41SLisandro Dalcin ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr); 539103dadc2fSPeter Brune ierr = DMCreateLocalVector(subdm_coord,&clcoords);CHKERRQ(ierr); 539224640c55SToby Isaac ierr = PetscObjectSetName((PetscObject)clcoords,"coordinates");CHKERRQ(ierr); 539303dadc2fSPeter Brune ierr = DMCreateDomainDecompositionScatters(dm_coord,1,&subdm_coord,NULL,&scat_i,&scat_g);CHKERRQ(ierr); 539403dadc2fSPeter Brune ierr = VecScatterBegin(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 539503dadc2fSPeter Brune ierr = VecScatterEnd(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 53961ed9ada7SJunchao Zhang ierr = VecScatterBegin(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 539703dadc2fSPeter Brune ierr = VecScatterEnd(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 539803dadc2fSPeter Brune ierr = DMSetCoordinates(subdm,ccoords);CHKERRQ(ierr); 539903dadc2fSPeter Brune ierr = DMSetCoordinatesLocal(subdm,clcoords);CHKERRQ(ierr); 540003dadc2fSPeter Brune ierr = VecScatterDestroy(&scat_i[0]);CHKERRQ(ierr); 540103dadc2fSPeter Brune ierr = VecScatterDestroy(&scat_g[0]);CHKERRQ(ierr); 540203dadc2fSPeter Brune ierr = VecDestroy(&ccoords);CHKERRQ(ierr); 540303dadc2fSPeter Brune ierr = VecDestroy(&clcoords);CHKERRQ(ierr); 540403dadc2fSPeter Brune ierr = PetscFree(scat_i);CHKERRQ(ierr); 540503dadc2fSPeter Brune ierr = PetscFree(scat_g);CHKERRQ(ierr); 540603dadc2fSPeter Brune } 540703dadc2fSPeter Brune PetscFunctionReturn(0); 540803dadc2fSPeter Brune } 540903dadc2fSPeter Brune 5410c73cfb54SMatthew G. Knepley /*@ 5411c73cfb54SMatthew G. Knepley DMGetDimension - Return the topological dimension of the DM 5412c73cfb54SMatthew G. Knepley 5413c73cfb54SMatthew G. Knepley Not collective 5414c73cfb54SMatthew G. Knepley 5415c73cfb54SMatthew G. Knepley Input Parameter: 5416c73cfb54SMatthew G. Knepley . dm - The DM 5417c73cfb54SMatthew G. Knepley 5418c73cfb54SMatthew G. Knepley Output Parameter: 5419c73cfb54SMatthew G. Knepley . dim - The topological dimension 5420c73cfb54SMatthew G. Knepley 5421c73cfb54SMatthew G. Knepley Level: beginner 5422c73cfb54SMatthew G. Knepley 5423c73cfb54SMatthew G. Knepley .seealso: DMSetDimension(), DMCreate() 5424c73cfb54SMatthew G. Knepley @*/ 5425c73cfb54SMatthew G. Knepley PetscErrorCode DMGetDimension(DM dm, PetscInt *dim) 5426c73cfb54SMatthew G. Knepley { 5427c73cfb54SMatthew G. Knepley PetscFunctionBegin; 5428c73cfb54SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5429534a8f05SLisandro Dalcin PetscValidIntPointer(dim, 2); 5430c73cfb54SMatthew G. Knepley *dim = dm->dim; 5431c73cfb54SMatthew G. Knepley PetscFunctionReturn(0); 5432c73cfb54SMatthew G. Knepley } 5433c73cfb54SMatthew G. Knepley 5434c73cfb54SMatthew G. Knepley /*@ 5435c73cfb54SMatthew G. Knepley DMSetDimension - Set the topological dimension of the DM 5436c73cfb54SMatthew G. Knepley 5437c73cfb54SMatthew G. Knepley Collective on dm 5438c73cfb54SMatthew G. Knepley 5439c73cfb54SMatthew G. Knepley Input Parameters: 5440c73cfb54SMatthew G. Knepley + dm - The DM 5441c73cfb54SMatthew G. Knepley - dim - The topological dimension 5442c73cfb54SMatthew G. Knepley 5443c73cfb54SMatthew G. Knepley Level: beginner 5444c73cfb54SMatthew G. Knepley 5445c73cfb54SMatthew G. Knepley .seealso: DMGetDimension(), DMCreate() 5446c73cfb54SMatthew G. Knepley @*/ 5447c73cfb54SMatthew G. Knepley PetscErrorCode DMSetDimension(DM dm, PetscInt dim) 5448c73cfb54SMatthew G. Knepley { 5449e5e52638SMatthew G. Knepley PetscDS ds; 5450f17e8794SMatthew G. Knepley PetscErrorCode ierr; 5451f17e8794SMatthew G. Knepley 5452c73cfb54SMatthew G. Knepley PetscFunctionBegin; 5453c73cfb54SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5454c73cfb54SMatthew G. Knepley PetscValidLogicalCollectiveInt(dm, dim, 2); 5455c73cfb54SMatthew G. Knepley dm->dim = dim; 5456e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 5457e5e52638SMatthew G. Knepley if (ds->dimEmbed < 0) {ierr = PetscDSSetCoordinateDimension(ds, dm->dim);CHKERRQ(ierr);} 5458c73cfb54SMatthew G. Knepley PetscFunctionReturn(0); 5459c73cfb54SMatthew G. Knepley } 5460c73cfb54SMatthew G. Knepley 5461793f3fe5SMatthew G. Knepley /*@ 5462793f3fe5SMatthew G. Knepley DMGetDimPoints - Get the half-open interval for all points of a given dimension 5463793f3fe5SMatthew G. Knepley 5464d083f849SBarry Smith Collective on dm 5465793f3fe5SMatthew G. Knepley 5466793f3fe5SMatthew G. Knepley Input Parameters: 5467793f3fe5SMatthew G. Knepley + dm - the DM 5468793f3fe5SMatthew G. Knepley - dim - the dimension 5469793f3fe5SMatthew G. Knepley 5470793f3fe5SMatthew G. Knepley Output Parameters: 5471793f3fe5SMatthew G. Knepley + pStart - The first point of the given dimension 5472aa049354SPatrick Sanan - pEnd - The first point following points of the given dimension 5473793f3fe5SMatthew G. Knepley 5474793f3fe5SMatthew G. Knepley Note: 5475793f3fe5SMatthew G. Knepley The points are vertices in the Hasse diagram encoding the topology. This is explained in 5476a8d69d7bSBarry Smith https://arxiv.org/abs/0908.4427. If no points exist of this dimension in the storage scheme, 5477793f3fe5SMatthew G. Knepley then the interval is empty. 5478793f3fe5SMatthew G. Knepley 5479793f3fe5SMatthew G. Knepley Level: intermediate 5480793f3fe5SMatthew G. Knepley 5481793f3fe5SMatthew G. Knepley .seealso: DMPLEX, DMPlexGetDepthStratum(), DMPlexGetHeightStratum() 5482793f3fe5SMatthew G. Knepley @*/ 5483793f3fe5SMatthew G. Knepley PetscErrorCode DMGetDimPoints(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd) 5484793f3fe5SMatthew G. Knepley { 5485793f3fe5SMatthew G. Knepley PetscInt d; 5486793f3fe5SMatthew G. Knepley PetscErrorCode ierr; 5487793f3fe5SMatthew G. Knepley 5488793f3fe5SMatthew G. Knepley PetscFunctionBegin; 5489793f3fe5SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 5490793f3fe5SMatthew G. Knepley ierr = DMGetDimension(dm, &d);CHKERRQ(ierr); 5491793f3fe5SMatthew G. Knepley if ((dim < 0) || (dim > d)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid dimension %d 1", dim, d); 5492b9d85ea2SLisandro Dalcin if (!dm->ops->getdimpoints) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "DM type %s does not implement DMGetDimPoints",((PetscObject)dm)->type_name); 5493793f3fe5SMatthew G. Knepley ierr = (*dm->ops->getdimpoints)(dm, dim, pStart, pEnd);CHKERRQ(ierr); 5494793f3fe5SMatthew G. Knepley PetscFunctionReturn(0); 5495793f3fe5SMatthew G. Knepley } 5496793f3fe5SMatthew G. Knepley 54976636e97aSMatthew G Knepley /*@ 54986636e97aSMatthew G Knepley DMSetCoordinates - Sets into the DM a global vector that holds the coordinates 54996636e97aSMatthew G Knepley 5500d083f849SBarry Smith Collective on dm 55016636e97aSMatthew G Knepley 55026636e97aSMatthew G Knepley Input Parameters: 55036636e97aSMatthew G Knepley + dm - the DM 55046636e97aSMatthew G Knepley - c - coordinate vector 55056636e97aSMatthew G Knepley 55062dd40e9bSPatrick Sanan Notes: 55072dd40e9bSPatrick Sanan The coordinates do include those for ghost points, which are in the local vector. 55082dd40e9bSPatrick Sanan 55092dd40e9bSPatrick Sanan The vector c should be destroyed by the caller. 55106636e97aSMatthew G Knepley 55116636e97aSMatthew G Knepley Level: intermediate 55126636e97aSMatthew G Knepley 55132dd40e9bSPatrick Sanan .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM() 55146636e97aSMatthew G Knepley @*/ 55156636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinates(DM dm, Vec c) 55166636e97aSMatthew G Knepley { 55176636e97aSMatthew G Knepley PetscErrorCode ierr; 55186636e97aSMatthew G Knepley 55196636e97aSMatthew G Knepley PetscFunctionBegin; 55206636e97aSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 55216636e97aSMatthew G Knepley PetscValidHeaderSpecific(c,VEC_CLASSID,2); 55226636e97aSMatthew G Knepley ierr = PetscObjectReference((PetscObject) c);CHKERRQ(ierr); 55236636e97aSMatthew G Knepley ierr = VecDestroy(&dm->coordinates);CHKERRQ(ierr); 55246636e97aSMatthew G Knepley dm->coordinates = c; 55256636e97aSMatthew G Knepley ierr = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr); 5526b64e0483SPeter Brune ierr = DMCoarsenHookAdd(dm,DMRestrictHook_Coordinates,NULL,NULL);CHKERRQ(ierr); 552703dadc2fSPeter Brune ierr = DMSubDomainHookAdd(dm,DMSubDomainHook_Coordinates,NULL,NULL);CHKERRQ(ierr); 55286636e97aSMatthew G Knepley PetscFunctionReturn(0); 55296636e97aSMatthew G Knepley } 55306636e97aSMatthew G Knepley 55316636e97aSMatthew G Knepley /*@ 55326636e97aSMatthew G Knepley DMSetCoordinatesLocal - Sets into the DM a local vector that holds the coordinates 55336636e97aSMatthew G Knepley 55347058e716SVaclav Hapla Not collective 55356636e97aSMatthew G Knepley 55366636e97aSMatthew G Knepley Input Parameters: 55376636e97aSMatthew G Knepley + dm - the DM 55386636e97aSMatthew G Knepley - c - coordinate vector 55396636e97aSMatthew G Knepley 55402dd40e9bSPatrick Sanan Notes: 55416636e97aSMatthew G Knepley The coordinates of ghost points can be set using DMSetCoordinates() 55426636e97aSMatthew G Knepley followed by DMGetCoordinatesLocal(). This is intended to enable the 55436636e97aSMatthew G Knepley setting of ghost coordinates outside of the domain. 55446636e97aSMatthew G Knepley 55452dd40e9bSPatrick Sanan The vector c should be destroyed by the caller. 55462dd40e9bSPatrick Sanan 55476636e97aSMatthew G Knepley Level: intermediate 55486636e97aSMatthew G Knepley 55496636e97aSMatthew G Knepley .seealso: DMGetCoordinatesLocal(), DMSetCoordinates(), DMGetCoordinates(), DMGetCoordinateDM() 55506636e97aSMatthew G Knepley @*/ 55516636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinatesLocal(DM dm, Vec c) 55526636e97aSMatthew G Knepley { 55536636e97aSMatthew G Knepley PetscErrorCode ierr; 55546636e97aSMatthew G Knepley 55556636e97aSMatthew G Knepley PetscFunctionBegin; 55566636e97aSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 55576636e97aSMatthew G Knepley PetscValidHeaderSpecific(c,VEC_CLASSID,2); 55586636e97aSMatthew G Knepley ierr = PetscObjectReference((PetscObject) c);CHKERRQ(ierr); 55596636e97aSMatthew G Knepley ierr = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr); 55608865f1eaSKarl Rupp 55616636e97aSMatthew G Knepley dm->coordinatesLocal = c; 55628865f1eaSKarl Rupp 55636636e97aSMatthew G Knepley ierr = VecDestroy(&dm->coordinates);CHKERRQ(ierr); 55646636e97aSMatthew G Knepley PetscFunctionReturn(0); 55656636e97aSMatthew G Knepley } 55666636e97aSMatthew G Knepley 55676636e97aSMatthew G Knepley /*@ 55686636e97aSMatthew G Knepley DMGetCoordinates - Gets a global vector with the coordinates associated with the DM. 55696636e97aSMatthew G Knepley 5570d083f849SBarry Smith Collective on dm 55716636e97aSMatthew G Knepley 55726636e97aSMatthew G Knepley Input Parameter: 55736636e97aSMatthew G Knepley . dm - the DM 55746636e97aSMatthew G Knepley 55756636e97aSMatthew G Knepley Output Parameter: 55766636e97aSMatthew G Knepley . c - global coordinate vector 55776636e97aSMatthew G Knepley 55786636e97aSMatthew G Knepley Note: 55796636e97aSMatthew G Knepley This is a borrowed reference, so the user should NOT destroy this vector 55806636e97aSMatthew G Knepley 55816636e97aSMatthew G Knepley Each process has only the local coordinates (does NOT have the ghost coordinates). 55826636e97aSMatthew G Knepley 55836636e97aSMatthew G Knepley For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...) 55846636e97aSMatthew G Knepley and (x_0,y_0,z_0,x_1,y_1,z_1...) 55856636e97aSMatthew G Knepley 55866636e97aSMatthew G Knepley Level: intermediate 55876636e97aSMatthew G Knepley 55886636e97aSMatthew G Knepley .seealso: DMSetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM() 55896636e97aSMatthew G Knepley @*/ 55906636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinates(DM dm, Vec *c) 55916636e97aSMatthew G Knepley { 55926636e97aSMatthew G Knepley PetscErrorCode ierr; 55936636e97aSMatthew G Knepley 55946636e97aSMatthew G Knepley PetscFunctionBegin; 55956636e97aSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 55966636e97aSMatthew G Knepley PetscValidPointer(c,2); 55971f588964SMatthew G Knepley if (!dm->coordinates && dm->coordinatesLocal) { 55980298fd71SBarry Smith DM cdm = NULL; 55991970a576SMatthew G. Knepley PetscBool localized; 56006636e97aSMatthew G Knepley 56016636e97aSMatthew G Knepley ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 56026636e97aSMatthew G Knepley ierr = DMCreateGlobalVector(cdm, &dm->coordinates);CHKERRQ(ierr); 56031970a576SMatthew G. Knepley ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr); 56041970a576SMatthew G. Knepley /* Block size is not correctly set by CreateGlobalVector() if coordinates are localized */ 56051970a576SMatthew G. Knepley if (localized) { 56061970a576SMatthew G. Knepley PetscInt cdim; 56071970a576SMatthew G. Knepley 56081970a576SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 56091970a576SMatthew G. Knepley ierr = VecSetBlockSize(dm->coordinates, cdim);CHKERRQ(ierr); 56101970a576SMatthew G. Knepley } 56116636e97aSMatthew G Knepley ierr = PetscObjectSetName((PetscObject) dm->coordinates, "coordinates");CHKERRQ(ierr); 56126636e97aSMatthew G Knepley ierr = DMLocalToGlobalBegin(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr); 56136636e97aSMatthew G Knepley ierr = DMLocalToGlobalEnd(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr); 56146636e97aSMatthew G Knepley } 56156636e97aSMatthew G Knepley *c = dm->coordinates; 56166636e97aSMatthew G Knepley PetscFunctionReturn(0); 56176636e97aSMatthew G Knepley } 56186636e97aSMatthew G Knepley 56196636e97aSMatthew G Knepley /*@ 562081e9a530SVaclav Hapla DMGetCoordinatesLocalSetUp - Prepares a local vector of coordinates, so that DMGetCoordinatesLocalNoncollective() can be used as non-collective afterwards. 562181e9a530SVaclav Hapla 5622d083f849SBarry Smith Collective on dm 562381e9a530SVaclav Hapla 562481e9a530SVaclav Hapla Input Parameter: 562581e9a530SVaclav Hapla . dm - the DM 562681e9a530SVaclav Hapla 562781e9a530SVaclav Hapla Level: advanced 562881e9a530SVaclav Hapla 562981e9a530SVaclav Hapla .seealso: DMGetCoordinatesLocalNoncollective() 563081e9a530SVaclav Hapla @*/ 563181e9a530SVaclav Hapla PetscErrorCode DMGetCoordinatesLocalSetUp(DM dm) 563281e9a530SVaclav Hapla { 563381e9a530SVaclav Hapla PetscErrorCode ierr; 563481e9a530SVaclav Hapla 563581e9a530SVaclav Hapla PetscFunctionBegin; 563681e9a530SVaclav Hapla PetscValidHeaderSpecific(dm,DM_CLASSID,1); 563781e9a530SVaclav Hapla if (!dm->coordinatesLocal && dm->coordinates) { 56381970a576SMatthew G. Knepley DM cdm = NULL; 56391970a576SMatthew G. Knepley PetscBool localized; 56401970a576SMatthew G. Knepley 564181e9a530SVaclav Hapla ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 564281e9a530SVaclav Hapla ierr = DMCreateLocalVector(cdm, &dm->coordinatesLocal);CHKERRQ(ierr); 56431970a576SMatthew G. Knepley ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr); 56441970a576SMatthew G. Knepley /* Block size is not correctly set by CreateLocalVector() if coordinates are localized */ 56451970a576SMatthew G. Knepley if (localized) { 56461970a576SMatthew G. Knepley PetscInt cdim; 56471970a576SMatthew G. Knepley 56481970a576SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr); 56491970a576SMatthew G. Knepley ierr = VecSetBlockSize(dm->coordinates, cdim);CHKERRQ(ierr); 56501970a576SMatthew G. Knepley } 565181e9a530SVaclav Hapla ierr = PetscObjectSetName((PetscObject) dm->coordinatesLocal, "coordinates");CHKERRQ(ierr); 565281e9a530SVaclav Hapla ierr = DMGlobalToLocalBegin(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr); 565381e9a530SVaclav Hapla ierr = DMGlobalToLocalEnd(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr); 565481e9a530SVaclav Hapla } 565581e9a530SVaclav Hapla PetscFunctionReturn(0); 565681e9a530SVaclav Hapla } 565781e9a530SVaclav Hapla 565881e9a530SVaclav Hapla /*@ 56596636e97aSMatthew G Knepley DMGetCoordinatesLocal - Gets a local vector with the coordinates associated with the DM. 56606636e97aSMatthew G Knepley 5661d083f849SBarry Smith Collective on dm 56626636e97aSMatthew G Knepley 56636636e97aSMatthew G Knepley Input Parameter: 56646636e97aSMatthew G Knepley . dm - the DM 56656636e97aSMatthew G Knepley 56666636e97aSMatthew G Knepley Output Parameter: 56676636e97aSMatthew G Knepley . c - coordinate vector 56686636e97aSMatthew G Knepley 56696636e97aSMatthew G Knepley Note: 56706636e97aSMatthew G Knepley This is a borrowed reference, so the user should NOT destroy this vector 56716636e97aSMatthew G Knepley 56726636e97aSMatthew G Knepley Each process has the local and ghost coordinates 56736636e97aSMatthew G Knepley 56746636e97aSMatthew G Knepley For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...) 56756636e97aSMatthew G Knepley and (x_0,y_0,z_0,x_1,y_1,z_1...) 56766636e97aSMatthew G Knepley 56776636e97aSMatthew G Knepley Level: intermediate 56786636e97aSMatthew G Knepley 567981e9a530SVaclav Hapla .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM(), DMGetCoordinatesLocalNoncollective() 56806636e97aSMatthew G Knepley @*/ 56816636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinatesLocal(DM dm, Vec *c) 56826636e97aSMatthew G Knepley { 56836636e97aSMatthew G Knepley PetscErrorCode ierr; 56846636e97aSMatthew G Knepley 56856636e97aSMatthew G Knepley PetscFunctionBegin; 56866636e97aSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 56876636e97aSMatthew G Knepley PetscValidPointer(c,2); 568881e9a530SVaclav Hapla ierr = DMGetCoordinatesLocalSetUp(dm);CHKERRQ(ierr); 56896636e97aSMatthew G Knepley *c = dm->coordinatesLocal; 56906636e97aSMatthew G Knepley PetscFunctionReturn(0); 56916636e97aSMatthew G Knepley } 56926636e97aSMatthew G Knepley 569381e9a530SVaclav Hapla /*@ 569481e9a530SVaclav Hapla DMGetCoordinatesLocalNoncollective - Non-collective version of DMGetCoordinatesLocal(). Fails if global coordinates have been set and DMGetCoordinatesLocalSetUp() not called. 569581e9a530SVaclav Hapla 569681e9a530SVaclav Hapla Not collective 569781e9a530SVaclav Hapla 569881e9a530SVaclav Hapla Input Parameter: 569981e9a530SVaclav Hapla . dm - the DM 570081e9a530SVaclav Hapla 570181e9a530SVaclav Hapla Output Parameter: 570281e9a530SVaclav Hapla . c - coordinate vector 570381e9a530SVaclav Hapla 570481e9a530SVaclav Hapla Level: advanced 570581e9a530SVaclav Hapla 570681e9a530SVaclav Hapla .seealso: DMGetCoordinatesLocalSetUp(), DMGetCoordinatesLocal(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM() 570781e9a530SVaclav Hapla @*/ 570881e9a530SVaclav Hapla PetscErrorCode DMGetCoordinatesLocalNoncollective(DM dm, Vec *c) 570981e9a530SVaclav Hapla { 571081e9a530SVaclav Hapla PetscFunctionBegin; 571181e9a530SVaclav Hapla PetscValidHeaderSpecific(dm,DM_CLASSID,1); 571281e9a530SVaclav Hapla PetscValidPointer(c,2); 571381e9a530SVaclav Hapla if (!dm->coordinatesLocal && dm->coordinates) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DMGetCoordinatesLocalSetUp() has not been called"); 57146636e97aSMatthew G Knepley *c = dm->coordinatesLocal; 57156636e97aSMatthew G Knepley PetscFunctionReturn(0); 57166636e97aSMatthew G Knepley } 57176636e97aSMatthew G Knepley 57182db98f8dSVaclav Hapla /*@ 57192db98f8dSVaclav Hapla DMGetCoordinatesLocalTuple - Gets a local vector with the coordinates of specified points and section describing its layout. 57202db98f8dSVaclav Hapla 57212db98f8dSVaclav Hapla Not collective 57222db98f8dSVaclav Hapla 57232db98f8dSVaclav Hapla Input Parameter: 57242db98f8dSVaclav Hapla + dm - the DM 57252db98f8dSVaclav Hapla - p - the IS of points whose coordinates will be returned 57262db98f8dSVaclav Hapla 57272db98f8dSVaclav Hapla Output Parameter: 57282db98f8dSVaclav Hapla + pCoordSection - the PetscSection describing the layout of pCoord, i.e. each point corresponds to one point in p, and DOFs correspond to coordinates 57292db98f8dSVaclav Hapla - pCoord - the Vec with coordinates of points in p 57302db98f8dSVaclav Hapla 57312db98f8dSVaclav Hapla Note: 57322db98f8dSVaclav Hapla DMGetCoordinatesLocalSetUp() must be called first. This function employs DMGetCoordinatesLocalNoncollective() so it is not collective. 57332db98f8dSVaclav Hapla 57342db98f8dSVaclav Hapla This creates a new vector, so the user SHOULD destroy this vector 57352db98f8dSVaclav Hapla 57362db98f8dSVaclav Hapla Each process has the local and ghost coordinates 57372db98f8dSVaclav Hapla 57382db98f8dSVaclav Hapla For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...) 57392db98f8dSVaclav Hapla and (x_0,y_0,z_0,x_1,y_1,z_1...) 57402db98f8dSVaclav Hapla 57412db98f8dSVaclav Hapla Level: advanced 57422db98f8dSVaclav Hapla 57432db98f8dSVaclav Hapla .seealso: DMSetCoordinatesLocal(), DMGetCoordinatesLocal(), DMGetCoordinatesLocalNoncollective(), DMGetCoordinatesLocalSetUp(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM() 57442db98f8dSVaclav Hapla @*/ 57452db98f8dSVaclav Hapla PetscErrorCode DMGetCoordinatesLocalTuple(DM dm, IS p, PetscSection *pCoordSection, Vec *pCoord) 57462db98f8dSVaclav Hapla { 57472db98f8dSVaclav Hapla PetscSection cs, newcs; 57482db98f8dSVaclav Hapla Vec coords; 57492db98f8dSVaclav Hapla const PetscScalar *arr; 57502db98f8dSVaclav Hapla PetscScalar *newarr=NULL; 57512db98f8dSVaclav Hapla PetscInt n; 57522db98f8dSVaclav Hapla PetscErrorCode ierr; 57532db98f8dSVaclav Hapla 57542db98f8dSVaclav Hapla PetscFunctionBegin; 57552db98f8dSVaclav Hapla PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 57562db98f8dSVaclav Hapla PetscValidHeaderSpecific(p, IS_CLASSID, 2); 57572db98f8dSVaclav Hapla if (pCoordSection) PetscValidPointer(pCoordSection, 3); 57582db98f8dSVaclav Hapla if (pCoord) PetscValidPointer(pCoord, 4); 57592db98f8dSVaclav Hapla if (!dm->coordinatesLocal) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DMGetCoordinatesLocalSetUp() has not been called or coordinates not set"); 57601bb6d2a8SBarry Smith if (!dm->coordinateDM || !dm->coordinateDM->localSection) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM not supported"); 57611bb6d2a8SBarry Smith cs = dm->coordinateDM->localSection; 57622db98f8dSVaclav Hapla coords = dm->coordinatesLocal; 57632db98f8dSVaclav Hapla ierr = VecGetArrayRead(coords, &arr);CHKERRQ(ierr); 57642db98f8dSVaclav Hapla ierr = PetscSectionExtractDofsFromArray(cs, MPIU_SCALAR, arr, p, &newcs, pCoord ? ((void**)&newarr) : NULL);CHKERRQ(ierr); 57652db98f8dSVaclav Hapla ierr = VecRestoreArrayRead(coords, &arr);CHKERRQ(ierr); 57662db98f8dSVaclav Hapla if (pCoord) { 57672db98f8dSVaclav Hapla ierr = PetscSectionGetStorageSize(newcs, &n);CHKERRQ(ierr); 57682db98f8dSVaclav Hapla /* set array in two steps to mimic PETSC_OWN_POINTER */ 57692db98f8dSVaclav Hapla ierr = VecCreateSeqWithArray(PetscObjectComm((PetscObject)p), 1, n, NULL, pCoord);CHKERRQ(ierr); 57702db98f8dSVaclav Hapla ierr = VecReplaceArray(*pCoord, newarr);CHKERRQ(ierr); 5771ad9ac99dSVaclav Hapla } else { 5772ad9ac99dSVaclav Hapla ierr = PetscFree(newarr);CHKERRQ(ierr); 57732db98f8dSVaclav Hapla } 5774ad9ac99dSVaclav Hapla if (pCoordSection) {*pCoordSection = newcs;} 5775ad9ac99dSVaclav Hapla else {ierr = PetscSectionDestroy(&newcs);CHKERRQ(ierr);} 57762db98f8dSVaclav Hapla PetscFunctionReturn(0); 57772db98f8dSVaclav Hapla } 57782db98f8dSVaclav Hapla 5779f19dbd58SToby Isaac PetscErrorCode DMGetCoordinateField(DM dm, DMField *field) 5780f19dbd58SToby Isaac { 5781f19dbd58SToby Isaac PetscErrorCode ierr; 5782f19dbd58SToby Isaac 5783f19dbd58SToby Isaac PetscFunctionBegin; 5784f19dbd58SToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 5785f19dbd58SToby Isaac PetscValidPointer(field,2); 5786f19dbd58SToby Isaac if (!dm->coordinateField) { 5787f19dbd58SToby Isaac if (dm->ops->createcoordinatefield) { 5788f19dbd58SToby Isaac ierr = (*dm->ops->createcoordinatefield)(dm,&dm->coordinateField);CHKERRQ(ierr); 5789f19dbd58SToby Isaac } 5790f19dbd58SToby Isaac } 5791f19dbd58SToby Isaac *field = dm->coordinateField; 5792f19dbd58SToby Isaac PetscFunctionReturn(0); 5793f19dbd58SToby Isaac } 5794f19dbd58SToby Isaac 5795f19dbd58SToby Isaac PetscErrorCode DMSetCoordinateField(DM dm, DMField field) 5796f19dbd58SToby Isaac { 5797f19dbd58SToby Isaac PetscErrorCode ierr; 5798f19dbd58SToby Isaac 5799f19dbd58SToby Isaac PetscFunctionBegin; 5800f19dbd58SToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 5801f19dbd58SToby Isaac if (field) PetscValidHeaderSpecific(field,DMFIELD_CLASSID,2); 5802c4e6da2cSBarry Smith ierr = PetscObjectReference((PetscObject)field);CHKERRQ(ierr); 5803f19dbd58SToby Isaac ierr = DMFieldDestroy(&dm->coordinateField);CHKERRQ(ierr); 5804f19dbd58SToby Isaac dm->coordinateField = field; 5805f19dbd58SToby Isaac PetscFunctionReturn(0); 5806f19dbd58SToby Isaac } 5807f19dbd58SToby Isaac 58086636e97aSMatthew G Knepley /*@ 58091cfe2091SMatthew G. Knepley DMGetCoordinateDM - Gets the DM that prescribes coordinate layout and scatters between global and local coordinates 58106636e97aSMatthew G Knepley 5811d083f849SBarry Smith Collective on dm 58126636e97aSMatthew G Knepley 58136636e97aSMatthew G Knepley Input Parameter: 58146636e97aSMatthew G Knepley . dm - the DM 58156636e97aSMatthew G Knepley 58166636e97aSMatthew G Knepley Output Parameter: 58176636e97aSMatthew G Knepley . cdm - coordinate DM 58186636e97aSMatthew G Knepley 58196636e97aSMatthew G Knepley Level: intermediate 58206636e97aSMatthew G Knepley 58211cfe2091SMatthew G. Knepley .seealso: DMSetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal() 58226636e97aSMatthew G Knepley @*/ 58236636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinateDM(DM dm, DM *cdm) 58246636e97aSMatthew G Knepley { 58256636e97aSMatthew G Knepley PetscErrorCode ierr; 58266636e97aSMatthew G Knepley 58276636e97aSMatthew G Knepley PetscFunctionBegin; 58286636e97aSMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 58296636e97aSMatthew G Knepley PetscValidPointer(cdm,2); 58306636e97aSMatthew G Knepley if (!dm->coordinateDM) { 5831308f8a94SToby Isaac DM cdm; 5832308f8a94SToby Isaac 583382f516ccSBarry Smith if (!dm->ops->createcoordinatedm) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Unable to create coordinates for this DM"); 5834308f8a94SToby Isaac ierr = (*dm->ops->createcoordinatedm)(dm, &cdm);CHKERRQ(ierr); 5835308f8a94SToby Isaac /* Just in case the DM sets the coordinate DM when creating it (DMP4est can do this, because it may not setup 5836308f8a94SToby Isaac * until the call to CreateCoordinateDM) */ 5837308f8a94SToby Isaac ierr = DMDestroy(&dm->coordinateDM);CHKERRQ(ierr); 5838308f8a94SToby Isaac dm->coordinateDM = cdm; 58396636e97aSMatthew G Knepley } 58406636e97aSMatthew G Knepley *cdm = dm->coordinateDM; 58416636e97aSMatthew G Knepley PetscFunctionReturn(0); 58426636e97aSMatthew G Knepley } 5843e87bb0d3SMatthew G Knepley 58441cfe2091SMatthew G. Knepley /*@ 58451cfe2091SMatthew G. Knepley DMSetCoordinateDM - Sets the DM that prescribes coordinate layout and scatters between global and local coordinates 58461cfe2091SMatthew G. Knepley 5847d083f849SBarry Smith Logically Collective on dm 58481cfe2091SMatthew G. Knepley 58491cfe2091SMatthew G. Knepley Input Parameters: 58501cfe2091SMatthew G. Knepley + dm - the DM 58511cfe2091SMatthew G. Knepley - cdm - coordinate DM 58521cfe2091SMatthew G. Knepley 58531cfe2091SMatthew G. Knepley Level: intermediate 58541cfe2091SMatthew G. Knepley 58551cfe2091SMatthew G. Knepley .seealso: DMGetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal() 58561cfe2091SMatthew G. Knepley @*/ 58571cfe2091SMatthew G. Knepley PetscErrorCode DMSetCoordinateDM(DM dm, DM cdm) 58581cfe2091SMatthew G. Knepley { 58591cfe2091SMatthew G. Knepley PetscErrorCode ierr; 58601cfe2091SMatthew G. Knepley 58611cfe2091SMatthew G. Knepley PetscFunctionBegin; 58621cfe2091SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 58631cfe2091SMatthew G. Knepley PetscValidHeaderSpecific(cdm,DM_CLASSID,2); 5864f26b38b9SToby Isaac ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr); 58651cfe2091SMatthew G. Knepley ierr = DMDestroy(&dm->coordinateDM);CHKERRQ(ierr); 58661cfe2091SMatthew G. Knepley dm->coordinateDM = cdm; 58671cfe2091SMatthew G. Knepley PetscFunctionReturn(0); 58681cfe2091SMatthew G. Knepley } 58691cfe2091SMatthew G. Knepley 587046e270d4SMatthew G. Knepley /*@ 587146e270d4SMatthew G. Knepley DMGetCoordinateDim - Retrieve the dimension of embedding space for coordinate values. 587246e270d4SMatthew G. Knepley 587346e270d4SMatthew G. Knepley Not Collective 587446e270d4SMatthew G. Knepley 587546e270d4SMatthew G. Knepley Input Parameter: 587646e270d4SMatthew G. Knepley . dm - The DM object 587746e270d4SMatthew G. Knepley 587846e270d4SMatthew G. Knepley Output Parameter: 587946e270d4SMatthew G. Knepley . dim - The embedding dimension 588046e270d4SMatthew G. Knepley 588146e270d4SMatthew G. Knepley Level: intermediate 588246e270d4SMatthew G. Knepley 588392fd8e1eSJed Brown .seealso: DMSetCoordinateDim(), DMGetCoordinateSection(), DMGetCoordinateDM(), DMGetLocalSection(), DMSetLocalSection() 588446e270d4SMatthew G. Knepley @*/ 588546e270d4SMatthew G. Knepley PetscErrorCode DMGetCoordinateDim(DM dm, PetscInt *dim) 588646e270d4SMatthew G. Knepley { 588746e270d4SMatthew G. Knepley PetscFunctionBegin; 588846e270d4SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5889534a8f05SLisandro Dalcin PetscValidIntPointer(dim, 2); 58909a9a41abSToby Isaac if (dm->dimEmbed == PETSC_DEFAULT) { 58919a9a41abSToby Isaac dm->dimEmbed = dm->dim; 58929a9a41abSToby Isaac } 589346e270d4SMatthew G. Knepley *dim = dm->dimEmbed; 589446e270d4SMatthew G. Knepley PetscFunctionReturn(0); 589546e270d4SMatthew G. Knepley } 589646e270d4SMatthew G. Knepley 589746e270d4SMatthew G. Knepley /*@ 589846e270d4SMatthew G. Knepley DMSetCoordinateDim - Set the dimension of the embedding space for coordinate values. 589946e270d4SMatthew G. Knepley 590046e270d4SMatthew G. Knepley Not Collective 590146e270d4SMatthew G. Knepley 590246e270d4SMatthew G. Knepley Input Parameters: 590346e270d4SMatthew G. Knepley + dm - The DM object 590446e270d4SMatthew G. Knepley - dim - The embedding dimension 590546e270d4SMatthew G. Knepley 590646e270d4SMatthew G. Knepley Level: intermediate 590746e270d4SMatthew G. Knepley 590892fd8e1eSJed Brown .seealso: DMGetCoordinateDim(), DMSetCoordinateSection(), DMGetCoordinateSection(), DMGetLocalSection(), DMSetLocalSection() 590946e270d4SMatthew G. Knepley @*/ 591046e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateDim(DM dm, PetscInt dim) 591146e270d4SMatthew G. Knepley { 5912e5e52638SMatthew G. Knepley PetscDS ds; 5913f17e8794SMatthew G. Knepley PetscErrorCode ierr; 5914f17e8794SMatthew G. Knepley 591546e270d4SMatthew G. Knepley PetscFunctionBegin; 591646e270d4SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 591746e270d4SMatthew G. Knepley dm->dimEmbed = dim; 5918e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 5919e5e52638SMatthew G. Knepley ierr = PetscDSSetCoordinateDimension(ds, dim);CHKERRQ(ierr); 592046e270d4SMatthew G. Knepley PetscFunctionReturn(0); 592146e270d4SMatthew G. Knepley } 592246e270d4SMatthew G. Knepley 5923e8abe2deSMatthew G. Knepley /*@ 5924e8abe2deSMatthew G. Knepley DMGetCoordinateSection - Retrieve the layout of coordinate values over the mesh. 5925e8abe2deSMatthew G. Knepley 5926d083f849SBarry Smith Collective on dm 5927e8abe2deSMatthew G. Knepley 5928e8abe2deSMatthew G. Knepley Input Parameter: 5929e8abe2deSMatthew G. Knepley . dm - The DM object 5930e8abe2deSMatthew G. Knepley 5931e8abe2deSMatthew G. Knepley Output Parameter: 5932e8abe2deSMatthew G. Knepley . section - The PetscSection object 5933e8abe2deSMatthew G. Knepley 5934e8abe2deSMatthew G. Knepley Level: intermediate 5935e8abe2deSMatthew G. Knepley 593692fd8e1eSJed Brown .seealso: DMGetCoordinateDM(), DMGetLocalSection(), DMSetLocalSection() 5937e8abe2deSMatthew G. Knepley @*/ 5938e8abe2deSMatthew G. Knepley PetscErrorCode DMGetCoordinateSection(DM dm, PetscSection *section) 5939e8abe2deSMatthew G. Knepley { 5940e8abe2deSMatthew G. Knepley DM cdm; 5941e8abe2deSMatthew G. Knepley PetscErrorCode ierr; 5942e8abe2deSMatthew G. Knepley 5943e8abe2deSMatthew G. Knepley PetscFunctionBegin; 5944e8abe2deSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 5945e8abe2deSMatthew G. Knepley PetscValidPointer(section, 2); 5946e8abe2deSMatthew G. Knepley ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 594792fd8e1eSJed Brown ierr = DMGetLocalSection(cdm, section);CHKERRQ(ierr); 5948e8abe2deSMatthew G. Knepley PetscFunctionReturn(0); 5949e8abe2deSMatthew G. Knepley } 5950e8abe2deSMatthew G. Knepley 5951e8abe2deSMatthew G. Knepley /*@ 5952e8abe2deSMatthew G. Knepley DMSetCoordinateSection - Set the layout of coordinate values over the mesh. 5953e8abe2deSMatthew G. Knepley 5954e8abe2deSMatthew G. Knepley Not Collective 5955e8abe2deSMatthew G. Knepley 5956e8abe2deSMatthew G. Knepley Input Parameters: 5957e8abe2deSMatthew G. Knepley + dm - The DM object 595846e270d4SMatthew G. Knepley . dim - The embedding dimension, or PETSC_DETERMINE 5959e8abe2deSMatthew G. Knepley - section - The PetscSection object 5960e8abe2deSMatthew G. Knepley 5961e8abe2deSMatthew G. Knepley Level: intermediate 5962e8abe2deSMatthew G. Knepley 596392fd8e1eSJed Brown .seealso: DMGetCoordinateSection(), DMGetLocalSection(), DMSetLocalSection() 5964e8abe2deSMatthew G. Knepley @*/ 596546e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateSection(DM dm, PetscInt dim, PetscSection section) 5966e8abe2deSMatthew G. Knepley { 5967e8abe2deSMatthew G. Knepley DM cdm; 5968e8abe2deSMatthew G. Knepley PetscErrorCode ierr; 5969e8abe2deSMatthew G. Knepley 5970e8abe2deSMatthew G. Knepley PetscFunctionBegin; 5971e8abe2deSMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 597246e270d4SMatthew G. Knepley PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,3); 5973e8abe2deSMatthew G. Knepley ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 597492fd8e1eSJed Brown ierr = DMSetLocalSection(cdm, section);CHKERRQ(ierr); 597546e270d4SMatthew G. Knepley if (dim == PETSC_DETERMINE) { 59764c1069a6SMatthew G. Knepley PetscInt d = PETSC_DEFAULT; 597746e270d4SMatthew G. Knepley PetscInt pStart, pEnd, vStart, vEnd, v, dd; 597846e270d4SMatthew G. Knepley 597946e270d4SMatthew G. Knepley ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr); 598046e270d4SMatthew G. Knepley ierr = DMGetDimPoints(dm, 0, &vStart, &vEnd);CHKERRQ(ierr); 598146e270d4SMatthew G. Knepley pStart = PetscMax(vStart, pStart); 598246e270d4SMatthew G. Knepley pEnd = PetscMin(vEnd, pEnd); 598346e270d4SMatthew G. Knepley for (v = pStart; v < pEnd; ++v) { 598446e270d4SMatthew G. Knepley ierr = PetscSectionGetDof(section, v, &dd);CHKERRQ(ierr); 598546e270d4SMatthew G. Knepley if (dd) {d = dd; break;} 598646e270d4SMatthew G. Knepley } 5987ebfe4b0dSMatthew G. Knepley if (d >= 0) {ierr = DMSetCoordinateDim(dm, d);CHKERRQ(ierr);} 598846e270d4SMatthew G. Knepley } 5989e8abe2deSMatthew G. Knepley PetscFunctionReturn(0); 5990e8abe2deSMatthew G. Knepley } 5991e8abe2deSMatthew G. Knepley 59925dc8c3f7SMatthew G. Knepley /*@C 599390b157c4SStefano Zampini DMGetPeriodicity - Get the description of mesh periodicity 59945dc8c3f7SMatthew G. Knepley 59955dc8c3f7SMatthew G. Knepley Input Parameters: 599690b157c4SStefano Zampini . dm - The DM object 599790b157c4SStefano Zampini 599890b157c4SStefano Zampini Output Parameters: 599990b157c4SStefano Zampini + per - Whether the DM is periodic or not 60005dc8c3f7SMatthew G. Knepley . maxCell - Over distances greater than this, we can assume a point has crossed over to another sheet, when trying to localize cell coordinates 60015dc8c3f7SMatthew G. Knepley . L - If we assume the mesh is a torus, this is the length of each coordinate 60025dc8c3f7SMatthew G. Knepley - bd - This describes the type of periodicity in each topological dimension 60035dc8c3f7SMatthew G. Knepley 60045dc8c3f7SMatthew G. Knepley Level: developer 60055dc8c3f7SMatthew G. Knepley 60065dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity() 60075dc8c3f7SMatthew G. Knepley @*/ 600890b157c4SStefano Zampini PetscErrorCode DMGetPeriodicity(DM dm, PetscBool *per, const PetscReal **maxCell, const PetscReal **L, const DMBoundaryType **bd) 6009c6b900c6SMatthew G. Knepley { 6010c6b900c6SMatthew G. Knepley PetscFunctionBegin; 6011c6b900c6SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 601290b157c4SStefano Zampini if (per) *per = dm->periodic; 6013c6b900c6SMatthew G. Knepley if (L) *L = dm->L; 6014c6b900c6SMatthew G. Knepley if (maxCell) *maxCell = dm->maxCell; 60155dc8c3f7SMatthew G. Knepley if (bd) *bd = dm->bdtype; 6016c6b900c6SMatthew G. Knepley PetscFunctionReturn(0); 6017c6b900c6SMatthew G. Knepley } 6018c6b900c6SMatthew G. Knepley 60195dc8c3f7SMatthew G. Knepley /*@C 60205dc8c3f7SMatthew G. Knepley DMSetPeriodicity - Set the description of mesh periodicity 60215dc8c3f7SMatthew G. Knepley 60225dc8c3f7SMatthew G. Knepley Input Parameters: 60235dc8c3f7SMatthew G. Knepley + dm - The DM object 602490b157c4SStefano Zampini . per - Whether the DM is periodic or not. If maxCell is not provided, coordinates need to be localized 60255dc8c3f7SMatthew G. Knepley . maxCell - Over distances greater than this, we can assume a point has crossed over to another sheet, when trying to localize cell coordinates 60265dc8c3f7SMatthew G. Knepley . L - If we assume the mesh is a torus, this is the length of each coordinate 60275dc8c3f7SMatthew G. Knepley - bd - This describes the type of periodicity in each topological dimension 60285dc8c3f7SMatthew G. Knepley 60295dc8c3f7SMatthew G. Knepley Level: developer 60305dc8c3f7SMatthew G. Knepley 60315dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity() 60325dc8c3f7SMatthew G. Knepley @*/ 603390b157c4SStefano Zampini PetscErrorCode DMSetPeriodicity(DM dm, PetscBool per, const PetscReal maxCell[], const PetscReal L[], const DMBoundaryType bd[]) 6034c6b900c6SMatthew G. Knepley { 6035c6b900c6SMatthew G. Knepley PetscInt dim, d; 6036c6b900c6SMatthew G. Knepley PetscErrorCode ierr; 6037c6b900c6SMatthew G. Knepley 6038c6b900c6SMatthew G. Knepley PetscFunctionBegin; 6039c6b900c6SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 604090b157c4SStefano Zampini PetscValidLogicalCollectiveBool(dm,per,2); 604190b157c4SStefano Zampini if (maxCell) { 6042534a8f05SLisandro Dalcin PetscValidRealPointer(maxCell,3); 6043534a8f05SLisandro Dalcin PetscValidRealPointer(L,4); 604490b157c4SStefano Zampini PetscValidPointer(bd,5); 604590b157c4SStefano Zampini } 60465dc8c3f7SMatthew G. Knepley ierr = PetscFree3(dm->L,dm->maxCell,dm->bdtype);CHKERRQ(ierr); 60475dc8c3f7SMatthew G. Knepley ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr); 604890b157c4SStefano Zampini if (maxCell) { 60495dc8c3f7SMatthew G. Knepley ierr = PetscMalloc3(dim,&dm->L,dim,&dm->maxCell,dim,&dm->bdtype);CHKERRQ(ierr); 60505dc8c3f7SMatthew G. Knepley for (d = 0; d < dim; ++d) {dm->L[d] = L[d]; dm->maxCell[d] = maxCell[d]; dm->bdtype[d] = bd[d];} 605190b157c4SStefano Zampini } 6052072d7d67SStefano Zampini dm->periodic = per; 6053c6b900c6SMatthew G. Knepley PetscFunctionReturn(0); 6054c6b900c6SMatthew G. Knepley } 6055c6b900c6SMatthew G. Knepley 60562e17dfb7SMatthew G. Knepley /*@ 60572e17dfb7SMatthew G. Knepley DMLocalizeCoordinate - If a mesh is periodic (a torus with lengths L_i, some of which can be infinite), project the coordinate onto [0, L_i) in each dimension. 60582e17dfb7SMatthew G. Knepley 60592e17dfb7SMatthew G. Knepley Input Parameters: 60602e17dfb7SMatthew G. Knepley + dm - The DM 606165da65dcSMatthew G. Knepley . in - The input coordinate point (dim numbers) 606265da65dcSMatthew G. Knepley - endpoint - Include the endpoint L_i 60632e17dfb7SMatthew G. Knepley 60642e17dfb7SMatthew G. Knepley Output Parameter: 60652e17dfb7SMatthew G. Knepley . out - The localized coordinate point 60662e17dfb7SMatthew G. Knepley 60672e17dfb7SMatthew G. Knepley Level: developer 60682e17dfb7SMatthew G. Knepley 60692e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate() 60702e17dfb7SMatthew G. Knepley @*/ 607165da65dcSMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate(DM dm, const PetscScalar in[], PetscBool endpoint, PetscScalar out[]) 60722e17dfb7SMatthew G. Knepley { 60732e17dfb7SMatthew G. Knepley PetscInt dim, d; 60742e17dfb7SMatthew G. Knepley PetscErrorCode ierr; 60752e17dfb7SMatthew G. Knepley 60762e17dfb7SMatthew G. Knepley PetscFunctionBegin; 60772e17dfb7SMatthew G. Knepley ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr); 60782e17dfb7SMatthew G. Knepley if (!dm->maxCell) { 60792e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) out[d] = in[d]; 60802e17dfb7SMatthew G. Knepley } else { 608165da65dcSMatthew G. Knepley if (endpoint) { 608265da65dcSMatthew G. Knepley for (d = 0; d < dim; ++d) { 6083da3333bfSMatthew G. Knepley if ((PetscAbsReal(PetscRealPart(in[d])/dm->L[d] - PetscFloorReal(PetscRealPart(in[d])/dm->L[d])) < PETSC_SMALL) && (PetscRealPart(in[d])/dm->L[d] > PETSC_SMALL)) { 6084da3333bfSMatthew G. Knepley out[d] = in[d] - dm->L[d]*(PetscFloorReal(PetscRealPart(in[d])/dm->L[d]) - 1); 608565da65dcSMatthew G. Knepley } else { 6086da3333bfSMatthew G. Knepley out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]); 608765da65dcSMatthew G. Knepley } 608865da65dcSMatthew G. Knepley } 608965da65dcSMatthew G. Knepley } else { 60902e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) { 60911118d4bcSLisandro Dalcin out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]); 60922e17dfb7SMatthew G. Knepley } 60932e17dfb7SMatthew G. Knepley } 609465da65dcSMatthew G. Knepley } 60952e17dfb7SMatthew G. Knepley PetscFunctionReturn(0); 60962e17dfb7SMatthew G. Knepley } 60972e17dfb7SMatthew G. Knepley 60982e17dfb7SMatthew G. Knepley /* 60992e17dfb7SMatthew G. Knepley DMLocalizeCoordinate_Internal - If a mesh is periodic, and the input point is far from the anchor, pick the coordinate sheet of the torus which moves it closer. 61002e17dfb7SMatthew G. Knepley 61012e17dfb7SMatthew G. Knepley Input Parameters: 61022e17dfb7SMatthew G. Knepley + dm - The DM 61032e17dfb7SMatthew G. Knepley . dim - The spatial dimension 61042e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it 61052e17dfb7SMatthew G. Knepley - in - The input coordinate point (dim numbers) 61062e17dfb7SMatthew G. Knepley 61072e17dfb7SMatthew G. Knepley Output Parameter: 61082e17dfb7SMatthew G. Knepley . out - The localized coordinate point 61092e17dfb7SMatthew G. Knepley 61102e17dfb7SMatthew G. Knepley Level: developer 61112e17dfb7SMatthew G. Knepley 61122e17dfb7SMatthew G. Knepley Note: This is meant to get a set of coordinates close to each other, as in a cell. The anchor is usually the one of the vertices on a containing cell 61132e17dfb7SMatthew G. Knepley 61142e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate() 61152e17dfb7SMatthew G. Knepley */ 61162e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[]) 61172e17dfb7SMatthew G. Knepley { 61182e17dfb7SMatthew G. Knepley PetscInt d; 61192e17dfb7SMatthew G. Knepley 61202e17dfb7SMatthew G. Knepley PetscFunctionBegin; 61212e17dfb7SMatthew G. Knepley if (!dm->maxCell) { 61222e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) out[d] = in[d]; 61232e17dfb7SMatthew G. Knepley } else { 61242e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) { 6125908eca10SMatthew G. Knepley if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) { 61262e17dfb7SMatthew G. Knepley out[d] = PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d]; 61272e17dfb7SMatthew G. Knepley } else { 61282e17dfb7SMatthew G. Knepley out[d] = in[d]; 61292e17dfb7SMatthew G. Knepley } 61302e17dfb7SMatthew G. Knepley } 61312e17dfb7SMatthew G. Knepley } 61322e17dfb7SMatthew G. Knepley PetscFunctionReturn(0); 61332e17dfb7SMatthew G. Knepley } 61342e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinateReal_Internal(DM dm, PetscInt dim, const PetscReal anchor[], const PetscReal in[], PetscReal out[]) 61352e17dfb7SMatthew G. Knepley { 61362e17dfb7SMatthew G. Knepley PetscInt d; 61372e17dfb7SMatthew G. Knepley 61382e17dfb7SMatthew G. Knepley PetscFunctionBegin; 61392e17dfb7SMatthew G. Knepley if (!dm->maxCell) { 61402e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) out[d] = in[d]; 61412e17dfb7SMatthew G. Knepley } else { 61422e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) { 6143908eca10SMatthew G. Knepley if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsReal(anchor[d] - in[d]) > dm->maxCell[d])) { 61442e17dfb7SMatthew G. Knepley out[d] = anchor[d] > in[d] ? dm->L[d] + in[d] : in[d] - dm->L[d]; 61452e17dfb7SMatthew G. Knepley } else { 61462e17dfb7SMatthew G. Knepley out[d] = in[d]; 61472e17dfb7SMatthew G. Knepley } 61482e17dfb7SMatthew G. Knepley } 61492e17dfb7SMatthew G. Knepley } 61502e17dfb7SMatthew G. Knepley PetscFunctionReturn(0); 61512e17dfb7SMatthew G. Knepley } 61522e17dfb7SMatthew G. Knepley 61532e17dfb7SMatthew G. Knepley /* 61542e17dfb7SMatthew G. Knepley DMLocalizeAddCoordinate_Internal - If a mesh is periodic, and the input point is far from the anchor, pick the coordinate sheet of the torus which moves it closer. 61552e17dfb7SMatthew G. Knepley 61562e17dfb7SMatthew G. Knepley Input Parameters: 61572e17dfb7SMatthew G. Knepley + dm - The DM 61582e17dfb7SMatthew G. Knepley . dim - The spatial dimension 61592e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it 61602e17dfb7SMatthew G. Knepley . in - The input coordinate delta (dim numbers) 61612e17dfb7SMatthew G. Knepley - out - The input coordinate point (dim numbers) 61622e17dfb7SMatthew G. Knepley 61632e17dfb7SMatthew G. Knepley Output Parameter: 61642e17dfb7SMatthew G. Knepley . out - The localized coordinate in + out 61652e17dfb7SMatthew G. Knepley 61662e17dfb7SMatthew G. Knepley Level: developer 61672e17dfb7SMatthew G. Knepley 61682e17dfb7SMatthew G. Knepley Note: This is meant to get a set of coordinates close to each other, as in a cell. The anchor is usually the one of the vertices on a containing cell 61692e17dfb7SMatthew G. Knepley 61702e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeCoordinate() 61712e17dfb7SMatthew G. Knepley */ 61722e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeAddCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[]) 61732e17dfb7SMatthew G. Knepley { 61742e17dfb7SMatthew G. Knepley PetscInt d; 61752e17dfb7SMatthew G. Knepley 61762e17dfb7SMatthew G. Knepley PetscFunctionBegin; 61772e17dfb7SMatthew G. Knepley if (!dm->maxCell) { 61782e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) out[d] += in[d]; 61792e17dfb7SMatthew G. Knepley } else { 61802e17dfb7SMatthew G. Knepley for (d = 0; d < dim; ++d) { 6181908eca10SMatthew G. Knepley if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) { 61822e17dfb7SMatthew G. Knepley out[d] += PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d]; 61832e17dfb7SMatthew G. Knepley } else { 61842e17dfb7SMatthew G. Knepley out[d] += in[d]; 61852e17dfb7SMatthew G. Knepley } 61862e17dfb7SMatthew G. Knepley } 61872e17dfb7SMatthew G. Knepley } 61882e17dfb7SMatthew G. Knepley PetscFunctionReturn(0); 61892e17dfb7SMatthew G. Knepley } 61902e17dfb7SMatthew G. Knepley 619136447a5eSToby Isaac /*@ 61928f700142SStefano Zampini DMGetCoordinatesLocalizedLocal - Check if the DM coordinates have been localized for cells on this process 61938f700142SStefano Zampini 61948f700142SStefano Zampini Not collective 619536447a5eSToby Isaac 619636447a5eSToby Isaac Input Parameter: 619736447a5eSToby Isaac . dm - The DM 619836447a5eSToby Isaac 619936447a5eSToby Isaac Output Parameter: 620036447a5eSToby Isaac areLocalized - True if localized 620136447a5eSToby Isaac 620236447a5eSToby Isaac Level: developer 620336447a5eSToby Isaac 62048f700142SStefano Zampini .seealso: DMLocalizeCoordinates(), DMGetCoordinatesLocalized(), DMSetPeriodicity() 620536447a5eSToby Isaac @*/ 62068f700142SStefano Zampini PetscErrorCode DMGetCoordinatesLocalizedLocal(DM dm,PetscBool *areLocalized) 620736447a5eSToby Isaac { 620836447a5eSToby Isaac DM cdm; 620936447a5eSToby Isaac PetscSection coordSection; 621046a3a80fSLisandro Dalcin PetscInt cStart, cEnd, sStart, sEnd, c, dof; 621146a3a80fSLisandro Dalcin PetscBool isPlex, alreadyLocalized; 621236447a5eSToby Isaac PetscErrorCode ierr; 621336447a5eSToby Isaac 621436447a5eSToby Isaac PetscFunctionBegin; 621536447a5eSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6216534a8f05SLisandro Dalcin PetscValidBoolPointer(areLocalized, 2); 62178b09590cSToby Isaac *areLocalized = PETSC_FALSE; 621846a3a80fSLisandro Dalcin 621936447a5eSToby Isaac /* We need some generic way of refering to cells/vertices */ 622036447a5eSToby Isaac ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 622146a3a80fSLisandro Dalcin ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isPlex);CHKERRQ(ierr); 62229f7230bfSMatthew G. Knepley if (!isPlex) PetscFunctionReturn(0); 622346a3a80fSLisandro Dalcin 62249f7230bfSMatthew G. Knepley ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr); 622546a3a80fSLisandro Dalcin ierr = DMPlexGetHeightStratum(cdm, 0, &cStart, &cEnd);CHKERRQ(ierr); 622636447a5eSToby Isaac ierr = PetscSectionGetChart(coordSection, &sStart, &sEnd);CHKERRQ(ierr); 622736447a5eSToby Isaac alreadyLocalized = PETSC_FALSE; 622846a3a80fSLisandro Dalcin for (c = cStart; c < cEnd; ++c) { 622946a3a80fSLisandro Dalcin if (c < sStart || c >= sEnd) continue; 623036447a5eSToby Isaac ierr = PetscSectionGetDof(coordSection, c, &dof);CHKERRQ(ierr); 623146a3a80fSLisandro Dalcin if (dof) { alreadyLocalized = PETSC_TRUE; break; } 623236447a5eSToby Isaac } 62338f700142SStefano Zampini *areLocalized = alreadyLocalized; 623436447a5eSToby Isaac PetscFunctionReturn(0); 623536447a5eSToby Isaac } 623636447a5eSToby Isaac 62378f700142SStefano Zampini /*@ 62388f700142SStefano Zampini DMGetCoordinatesLocalized - Check if the DM coordinates have been localized for cells 62398f700142SStefano Zampini 62408f700142SStefano Zampini Collective on dm 62418f700142SStefano Zampini 62428f700142SStefano Zampini Input Parameter: 62438f700142SStefano Zampini . dm - The DM 62448f700142SStefano Zampini 62458f700142SStefano Zampini Output Parameter: 62468f700142SStefano Zampini areLocalized - True if localized 62478f700142SStefano Zampini 62488f700142SStefano Zampini Level: developer 62498f700142SStefano Zampini 62508f700142SStefano Zampini .seealso: DMLocalizeCoordinates(), DMSetPeriodicity(), DMGetCoordinatesLocalizedLocal() 62518f700142SStefano Zampini @*/ 62528f700142SStefano Zampini PetscErrorCode DMGetCoordinatesLocalized(DM dm,PetscBool *areLocalized) 62538f700142SStefano Zampini { 62548f700142SStefano Zampini PetscBool localized; 62558f700142SStefano Zampini PetscErrorCode ierr; 62568f700142SStefano Zampini 62578f700142SStefano Zampini PetscFunctionBegin; 62588f700142SStefano Zampini PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6259534a8f05SLisandro Dalcin PetscValidBoolPointer(areLocalized, 2); 62608f700142SStefano Zampini ierr = DMGetCoordinatesLocalizedLocal(dm,&localized);CHKERRQ(ierr); 62618f700142SStefano Zampini ierr = MPIU_Allreduce(&localized,areLocalized,1,MPIU_BOOL,MPI_LOR,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 62628f700142SStefano Zampini PetscFunctionReturn(0); 62638f700142SStefano Zampini } 626436447a5eSToby Isaac 62652e17dfb7SMatthew G. Knepley /*@ 6266492b8470SStefano Zampini DMLocalizeCoordinates - If a mesh is periodic, create local coordinates for cells having periodic faces 62672e17dfb7SMatthew G. Knepley 62688f700142SStefano Zampini Collective on dm 62698f700142SStefano Zampini 62702e17dfb7SMatthew G. Knepley Input Parameter: 62712e17dfb7SMatthew G. Knepley . dm - The DM 62722e17dfb7SMatthew G. Knepley 62732e17dfb7SMatthew G. Knepley Level: developer 62742e17dfb7SMatthew G. Knepley 62758f700142SStefano Zampini .seealso: DMSetPeriodicity(), DMLocalizeCoordinate(), DMLocalizeAddCoordinate() 62762e17dfb7SMatthew G. Knepley @*/ 62772e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinates(DM dm) 62782e17dfb7SMatthew G. Knepley { 62792e17dfb7SMatthew G. Knepley DM cdm; 62802e17dfb7SMatthew G. Knepley PetscSection coordSection, cSection; 62812e17dfb7SMatthew G. Knepley Vec coordinates, cVec; 62823e922f36SToby Isaac PetscScalar *coords, *coords2, *anchor, *localized; 62833e922f36SToby Isaac PetscInt Nc, vStart, vEnd, v, sStart, sEnd, newStart = PETSC_MAX_INT, newEnd = PETSC_MIN_INT, dof, d, off, off2, bs, coordSize; 6284e0ae35bbSToby Isaac PetscBool alreadyLocalized, alreadyLocalizedGlobal; 62853e922f36SToby Isaac PetscInt maxHeight = 0, h; 62863e922f36SToby Isaac PetscInt *pStart = NULL, *pEnd = NULL; 62872e17dfb7SMatthew G. Knepley PetscErrorCode ierr; 62882e17dfb7SMatthew G. Knepley 62892e17dfb7SMatthew G. Knepley PetscFunctionBegin; 62902e17dfb7SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 629192c9c85fSStefano Zampini if (!dm->periodic) PetscFunctionReturn(0); 6292f7cbd40bSStefano Zampini ierr = DMGetCoordinatesLocalized(dm, &alreadyLocalized);CHKERRQ(ierr); 6293f7cbd40bSStefano Zampini if (alreadyLocalized) PetscFunctionReturn(0); 6294f7cbd40bSStefano Zampini 62952e17dfb7SMatthew G. Knepley /* We need some generic way of refering to cells/vertices */ 62962e17dfb7SMatthew G. Knepley ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr); 62972e17dfb7SMatthew G. Knepley { 62982e17dfb7SMatthew G. Knepley PetscBool isplex; 62992e17dfb7SMatthew G. Knepley 63002e17dfb7SMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isplex);CHKERRQ(ierr); 63012e17dfb7SMatthew G. Knepley if (isplex) { 63022e17dfb7SMatthew G. Knepley ierr = DMPlexGetDepthStratum(cdm, 0, &vStart, &vEnd);CHKERRQ(ierr); 63033e922f36SToby Isaac ierr = DMPlexGetMaxProjectionHeight(cdm,&maxHeight);CHKERRQ(ierr); 630469291d52SBarry Smith ierr = DMGetWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr); 63053e922f36SToby Isaac pEnd = &pStart[maxHeight + 1]; 63063e922f36SToby Isaac newStart = vStart; 63073e922f36SToby Isaac newEnd = vEnd; 63083e922f36SToby Isaac for (h = 0; h <= maxHeight; h++) { 63093e922f36SToby Isaac ierr = DMPlexGetHeightStratum(cdm, h, &pStart[h], &pEnd[h]);CHKERRQ(ierr); 63103e922f36SToby Isaac newStart = PetscMin(newStart,pStart[h]); 63113e922f36SToby Isaac newEnd = PetscMax(newEnd,pEnd[h]); 63123e922f36SToby Isaac } 63132e17dfb7SMatthew G. Knepley } else SETERRQ(PetscObjectComm((PetscObject) cdm), PETSC_ERR_ARG_WRONG, "Coordinate localization requires a DMPLEX coordinate DM"); 63142e17dfb7SMatthew G. Knepley } 63152e17dfb7SMatthew G. Knepley ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr); 631643eeeb2dSStefano Zampini if (!coordinates) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Missing local coordinates vector"); 63172e17dfb7SMatthew G. Knepley ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr); 63183e922f36SToby Isaac ierr = VecGetBlockSize(coordinates, &bs);CHKERRQ(ierr); 6319e0ae35bbSToby Isaac ierr = PetscSectionGetChart(coordSection,&sStart,&sEnd);CHKERRQ(ierr); 63203e922f36SToby Isaac 63212e17dfb7SMatthew G. Knepley ierr = PetscSectionCreate(PetscObjectComm((PetscObject) dm), &cSection);CHKERRQ(ierr); 63222e17dfb7SMatthew G. Knepley ierr = PetscSectionSetNumFields(cSection, 1);CHKERRQ(ierr); 63232e17dfb7SMatthew G. Knepley ierr = PetscSectionGetFieldComponents(coordSection, 0, &Nc);CHKERRQ(ierr); 63242e17dfb7SMatthew G. Knepley ierr = PetscSectionSetFieldComponents(cSection, 0, Nc);CHKERRQ(ierr); 63253e922f36SToby Isaac ierr = PetscSectionSetChart(cSection, newStart, newEnd);CHKERRQ(ierr); 63263e922f36SToby Isaac 632769291d52SBarry Smith ierr = DMGetWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr); 63283e922f36SToby Isaac localized = &anchor[bs]; 63293e922f36SToby Isaac alreadyLocalized = alreadyLocalizedGlobal = PETSC_TRUE; 63303e922f36SToby Isaac for (h = 0; h <= maxHeight; h++) { 63313e922f36SToby Isaac PetscInt cStart = pStart[h], cEnd = pEnd[h], c; 63323e922f36SToby Isaac 63333e922f36SToby Isaac for (c = cStart; c < cEnd; ++c) { 63343e922f36SToby Isaac PetscScalar *cellCoords = NULL; 63353e922f36SToby Isaac PetscInt b; 63363e922f36SToby Isaac 63373e922f36SToby Isaac if (c < sStart || c >= sEnd) alreadyLocalized = PETSC_FALSE; 63383e922f36SToby Isaac ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr); 63393e922f36SToby Isaac for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b]; 63403e922f36SToby Isaac for (d = 0; d < dof/bs; ++d) { 63413e922f36SToby Isaac ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], localized);CHKERRQ(ierr); 63423e922f36SToby Isaac for (b = 0; b < bs; b++) { 63433e922f36SToby Isaac if (cellCoords[d*bs + b] != localized[b]) break; 63443e922f36SToby Isaac } 63453e922f36SToby Isaac if (b < bs) break; 63463e922f36SToby Isaac } 63473e922f36SToby Isaac if (d < dof/bs) { 63483e922f36SToby Isaac if (c >= sStart && c < sEnd) { 63493e922f36SToby Isaac PetscInt cdof; 63503e922f36SToby Isaac 63513e922f36SToby Isaac ierr = PetscSectionGetDof(coordSection, c, &cdof);CHKERRQ(ierr); 63523e922f36SToby Isaac if (cdof != dof) alreadyLocalized = PETSC_FALSE; 63533e922f36SToby Isaac } 63543e922f36SToby Isaac ierr = PetscSectionSetDof(cSection, c, dof);CHKERRQ(ierr); 63553e922f36SToby Isaac ierr = PetscSectionSetFieldDof(cSection, c, 0, dof);CHKERRQ(ierr); 63563e922f36SToby Isaac } 63573e922f36SToby Isaac ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr); 63583e922f36SToby Isaac } 63593e922f36SToby Isaac } 63603e922f36SToby Isaac ierr = MPI_Allreduce(&alreadyLocalized,&alreadyLocalizedGlobal,1,MPIU_BOOL,MPI_LAND,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr); 63613e922f36SToby Isaac if (alreadyLocalizedGlobal) { 636269291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr); 63633e922f36SToby Isaac ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr); 636469291d52SBarry Smith ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr); 63653e922f36SToby Isaac PetscFunctionReturn(0); 63663e922f36SToby Isaac } 63672e17dfb7SMatthew G. Knepley for (v = vStart; v < vEnd; ++v) { 63682e17dfb7SMatthew G. Knepley ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr); 63692e17dfb7SMatthew G. Knepley ierr = PetscSectionSetDof(cSection, v, dof);CHKERRQ(ierr); 63702e17dfb7SMatthew G. Knepley ierr = PetscSectionSetFieldDof(cSection, v, 0, dof);CHKERRQ(ierr); 63712e17dfb7SMatthew G. Knepley } 63722e17dfb7SMatthew G. Knepley ierr = PetscSectionSetUp(cSection);CHKERRQ(ierr); 63732e17dfb7SMatthew G. Knepley ierr = PetscSectionGetStorageSize(cSection, &coordSize);CHKERRQ(ierr); 6374c2be7e5eSLisandro Dalcin ierr = VecCreate(PETSC_COMM_SELF, &cVec);CHKERRQ(ierr); 63752e17dfb7SMatthew G. Knepley ierr = PetscObjectSetName((PetscObject)cVec,"coordinates");CHKERRQ(ierr); 63762e17dfb7SMatthew G. Knepley ierr = VecSetBlockSize(cVec, bs);CHKERRQ(ierr); 63772e17dfb7SMatthew G. Knepley ierr = VecSetSizes(cVec, coordSize, PETSC_DETERMINE);CHKERRQ(ierr); 63782e17dfb7SMatthew G. Knepley ierr = VecSetType(cVec, VECSTANDARD);CHKERRQ(ierr); 6379c2be7e5eSLisandro Dalcin ierr = VecGetArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr); 63802e17dfb7SMatthew G. Knepley ierr = VecGetArray(cVec, &coords2);CHKERRQ(ierr); 63812e17dfb7SMatthew G. Knepley for (v = vStart; v < vEnd; ++v) { 63822e17dfb7SMatthew G. Knepley ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr); 63832e17dfb7SMatthew G. Knepley ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr); 63842e17dfb7SMatthew G. Knepley ierr = PetscSectionGetOffset(cSection, v, &off2);CHKERRQ(ierr); 63852e17dfb7SMatthew G. Knepley for (d = 0; d < dof; ++d) coords2[off2+d] = coords[off+d]; 63862e17dfb7SMatthew G. Knepley } 63873e922f36SToby Isaac for (h = 0; h <= maxHeight; h++) { 63883e922f36SToby Isaac PetscInt cStart = pStart[h], cEnd = pEnd[h], c; 63893e922f36SToby Isaac 63902e17dfb7SMatthew G. Knepley for (c = cStart; c < cEnd; ++c) { 63912e17dfb7SMatthew G. Knepley PetscScalar *cellCoords = NULL; 63923e922f36SToby Isaac PetscInt b, cdof; 63932e17dfb7SMatthew G. Knepley 63943e922f36SToby Isaac ierr = PetscSectionGetDof(cSection,c,&cdof);CHKERRQ(ierr); 63953e922f36SToby Isaac if (!cdof) continue; 63962e17dfb7SMatthew G. Knepley ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr); 63972e17dfb7SMatthew G. Knepley ierr = PetscSectionGetOffset(cSection, c, &off2);CHKERRQ(ierr); 63982e17dfb7SMatthew G. Knepley for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b]; 63992e17dfb7SMatthew G. Knepley for (d = 0; d < dof/bs; ++d) {ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], &coords2[off2+d*bs]);CHKERRQ(ierr);} 64002e17dfb7SMatthew G. Knepley ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr); 64012e17dfb7SMatthew G. Knepley } 64023e922f36SToby Isaac } 640369291d52SBarry Smith ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr); 640469291d52SBarry Smith ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr); 6405c2be7e5eSLisandro Dalcin ierr = VecRestoreArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr); 64062e17dfb7SMatthew G. Knepley ierr = VecRestoreArray(cVec, &coords2);CHKERRQ(ierr); 64072e17dfb7SMatthew G. Knepley ierr = DMSetCoordinateSection(dm, PETSC_DETERMINE, cSection);CHKERRQ(ierr); 64082e17dfb7SMatthew G. Knepley ierr = DMSetCoordinatesLocal(dm, cVec);CHKERRQ(ierr); 64092e17dfb7SMatthew G. Knepley ierr = VecDestroy(&cVec);CHKERRQ(ierr); 64102e17dfb7SMatthew G. Knepley ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr); 64112e17dfb7SMatthew G. Knepley PetscFunctionReturn(0); 64122e17dfb7SMatthew G. Knepley } 64132e17dfb7SMatthew G. Knepley 6414e87bb0d3SMatthew G Knepley /*@ 64153a93e3b7SToby Isaac DMLocatePoints - Locate the points in v in the mesh and return a PetscSF of the containing cells 6416e87bb0d3SMatthew G Knepley 6417d083f849SBarry Smith Collective on v (see explanation below) 6418e87bb0d3SMatthew G Knepley 6419e87bb0d3SMatthew G Knepley Input Parameters: 6420e87bb0d3SMatthew G Knepley + dm - The DM 64213a93e3b7SToby Isaac . v - The Vec of points 642262a38674SMatthew G. Knepley . ltype - The type of point location, e.g. DM_POINTLOCATION_NONE or DM_POINTLOCATION_NEAREST 64233a93e3b7SToby Isaac - cells - Points to either NULL, or a PetscSF with guesses for which cells contain each point. 6424e87bb0d3SMatthew G Knepley 642561e3bb9bSMatthew G Knepley Output Parameter: 642662a38674SMatthew G. Knepley + v - The Vec of points, which now contains the nearest mesh points to the given points if DM_POINTLOCATION_NEAREST is used 642762a38674SMatthew G. Knepley - cells - The PetscSF containing the ranks and local indices of the containing points. 64283a93e3b7SToby Isaac 6429e87bb0d3SMatthew G Knepley 6430e87bb0d3SMatthew G Knepley Level: developer 643161e3bb9bSMatthew G Knepley 643262a38674SMatthew G. Knepley Notes: 64333a93e3b7SToby Isaac To do a search of the local cells of the mesh, v should have PETSC_COMM_SELF as its communicator. 643462a38674SMatthew G. Knepley To do a search of all the cells in the distributed mesh, v should have the same communicator as dm. 64353a93e3b7SToby Isaac 64363a93e3b7SToby Isaac If *cellSF is NULL on input, a PetscSF will be created. 643762a38674SMatthew G. Knepley If *cellSF is not NULL on input, it should point to an existing PetscSF, whose graph will be used as initial guesses. 64383a93e3b7SToby Isaac 64393a93e3b7SToby Isaac An array that maps each point to its containing cell can be obtained with 64403a93e3b7SToby Isaac 644162a38674SMatthew G. Knepley $ const PetscSFNode *cells; 644262a38674SMatthew G. Knepley $ PetscInt nFound; 6443a6216909SToby Isaac $ const PetscInt *found; 644462a38674SMatthew G. Knepley $ 6445a6216909SToby Isaac $ PetscSFGetGraph(cellSF,NULL,&nFound,&found,&cells); 64463a93e3b7SToby Isaac 64473a93e3b7SToby Isaac Where cells[i].rank is the rank of the cell containing point found[i] (or i if found == NULL), and cells[i].index is 64483a93e3b7SToby Isaac the index of the cell in its rank's local numbering. 64493a93e3b7SToby Isaac 645062a38674SMatthew G. Knepley .seealso: DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMPointLocationType 645161e3bb9bSMatthew G Knepley @*/ 645262a38674SMatthew G. Knepley PetscErrorCode DMLocatePoints(DM dm, Vec v, DMPointLocationType ltype, PetscSF *cellSF) 6453e87bb0d3SMatthew G Knepley { 6454735aa83eSMatthew G Knepley PetscErrorCode ierr; 6455735aa83eSMatthew G Knepley 6456e87bb0d3SMatthew G Knepley PetscFunctionBegin; 6457e87bb0d3SMatthew G Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 6458e87bb0d3SMatthew G Knepley PetscValidHeaderSpecific(v,VEC_CLASSID,2); 6459e0fc9d1bSMatthew G. Knepley PetscValidPointer(cellSF,4); 64603a93e3b7SToby Isaac if (*cellSF) { 64613a93e3b7SToby Isaac PetscMPIInt result; 64623a93e3b7SToby Isaac 6463e0fc9d1bSMatthew G. Knepley PetscValidHeaderSpecific(*cellSF,PETSCSF_CLASSID,4); 6464a4f09dd6SDave May ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)v),PetscObjectComm((PetscObject)*cellSF),&result);CHKERRQ(ierr); 64653a93e3b7SToby Isaac if (result != MPI_IDENT && result != MPI_CONGRUENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"cellSF must have a communicator congruent to v's"); 6466e0fc9d1bSMatthew G. Knepley } else { 64673a93e3b7SToby Isaac ierr = PetscSFCreate(PetscObjectComm((PetscObject)v),cellSF);CHKERRQ(ierr); 64683a93e3b7SToby Isaac } 6469b9d85ea2SLisandro Dalcin if (!dm->ops->locatepoints) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Point location not available for this DM"); 647047a35634SPatrick Farrell ierr = PetscLogEventBegin(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr); 647162a38674SMatthew G. Knepley ierr = (*dm->ops->locatepoints)(dm,v,ltype,*cellSF);CHKERRQ(ierr); 647247a35634SPatrick Farrell ierr = PetscLogEventEnd(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr); 6473e87bb0d3SMatthew G Knepley PetscFunctionReturn(0); 6474e87bb0d3SMatthew G Knepley } 647514f150ffSMatthew G. Knepley 6476f4d763aaSMatthew G. Knepley /*@ 6477f4d763aaSMatthew G. Knepley DMGetOutputDM - Retrieve the DM associated with the layout for output 6478f4d763aaSMatthew G. Knepley 64798f700142SStefano Zampini Collective on dm 64808f700142SStefano Zampini 6481f4d763aaSMatthew G. Knepley Input Parameter: 6482f4d763aaSMatthew G. Knepley . dm - The original DM 6483f4d763aaSMatthew G. Knepley 6484f4d763aaSMatthew G. Knepley Output Parameter: 6485f4d763aaSMatthew G. Knepley . odm - The DM which provides the layout for output 6486f4d763aaSMatthew G. Knepley 6487f4d763aaSMatthew G. Knepley Level: intermediate 6488f4d763aaSMatthew G. Knepley 6489e87a4003SBarry Smith .seealso: VecView(), DMGetGlobalSection() 6490f4d763aaSMatthew G. Knepley @*/ 649114f150ffSMatthew G. Knepley PetscErrorCode DMGetOutputDM(DM dm, DM *odm) 649214f150ffSMatthew G. Knepley { 6493c26acbdeSMatthew G. Knepley PetscSection section; 64942d4e4a49SMatthew G. Knepley PetscBool hasConstraints, ghasConstraints; 649514f150ffSMatthew G. Knepley PetscErrorCode ierr; 649614f150ffSMatthew G. Knepley 649714f150ffSMatthew G. Knepley PetscFunctionBegin; 649814f150ffSMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 649914f150ffSMatthew G. Knepley PetscValidPointer(odm,2); 650092fd8e1eSJed Brown ierr = DMGetLocalSection(dm, §ion);CHKERRQ(ierr); 6501c26acbdeSMatthew G. Knepley ierr = PetscSectionHasConstraints(section, &hasConstraints);CHKERRQ(ierr); 6502127fe6b9SMatthew G. Knepley ierr = MPI_Allreduce(&hasConstraints, &ghasConstraints, 1, MPIU_BOOL, MPI_LOR, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr); 65032d4e4a49SMatthew G. Knepley if (!ghasConstraints) { 6504c26acbdeSMatthew G. Knepley *odm = dm; 6505c26acbdeSMatthew G. Knepley PetscFunctionReturn(0); 6506c26acbdeSMatthew G. Knepley } 650714f150ffSMatthew G. Knepley if (!dm->dmBC) { 6508c26acbdeSMatthew G. Knepley PetscSection newSection, gsection; 650914f150ffSMatthew G. Knepley PetscSF sf; 651014f150ffSMatthew G. Knepley 651114f150ffSMatthew G. Knepley ierr = DMClone(dm, &dm->dmBC);CHKERRQ(ierr); 6512e5e52638SMatthew G. Knepley ierr = DMCopyDisc(dm, dm->dmBC);CHKERRQ(ierr); 651314f150ffSMatthew G. Knepley ierr = PetscSectionClone(section, &newSection);CHKERRQ(ierr); 651492fd8e1eSJed Brown ierr = DMSetLocalSection(dm->dmBC, newSection);CHKERRQ(ierr); 651514f150ffSMatthew G. Knepley ierr = PetscSectionDestroy(&newSection);CHKERRQ(ierr); 651614f150ffSMatthew G. Knepley ierr = DMGetPointSF(dm->dmBC, &sf);CHKERRQ(ierr); 651715b58121SMatthew G. Knepley ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_TRUE, PETSC_FALSE, &gsection);CHKERRQ(ierr); 6518e87a4003SBarry Smith ierr = DMSetGlobalSection(dm->dmBC, gsection);CHKERRQ(ierr); 651914f150ffSMatthew G. Knepley ierr = PetscSectionDestroy(&gsection);CHKERRQ(ierr); 652014f150ffSMatthew G. Knepley } 652114f150ffSMatthew G. Knepley *odm = dm->dmBC; 652214f150ffSMatthew G. Knepley PetscFunctionReturn(0); 652314f150ffSMatthew G. Knepley } 6524f4d763aaSMatthew G. Knepley 6525f4d763aaSMatthew G. Knepley /*@ 6526cdb7a50dSMatthew G. Knepley DMGetOutputSequenceNumber - Retrieve the sequence number/value for output 6527f4d763aaSMatthew G. Knepley 6528f4d763aaSMatthew G. Knepley Input Parameter: 6529f4d763aaSMatthew G. Knepley . dm - The original DM 6530f4d763aaSMatthew G. Knepley 6531cdb7a50dSMatthew G. Knepley Output Parameters: 6532cdb7a50dSMatthew G. Knepley + num - The output sequence number 6533cdb7a50dSMatthew G. Knepley - val - The output sequence value 6534f4d763aaSMatthew G. Knepley 6535f4d763aaSMatthew G. Knepley Level: intermediate 6536f4d763aaSMatthew G. Knepley 6537f4d763aaSMatthew G. Knepley Note: This is intended for output that should appear in sequence, for instance 6538f4d763aaSMatthew G. Knepley a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system. 6539f4d763aaSMatthew G. Knepley 6540f4d763aaSMatthew G. Knepley .seealso: VecView() 6541f4d763aaSMatthew G. Knepley @*/ 6542cdb7a50dSMatthew G. Knepley PetscErrorCode DMGetOutputSequenceNumber(DM dm, PetscInt *num, PetscReal *val) 6543f4d763aaSMatthew G. Knepley { 6544f4d763aaSMatthew G. Knepley PetscFunctionBegin; 6545f4d763aaSMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 6546534a8f05SLisandro Dalcin if (num) {PetscValidIntPointer(num,2); *num = dm->outputSequenceNum;} 6547534a8f05SLisandro Dalcin if (val) {PetscValidRealPointer(val,3);*val = dm->outputSequenceVal;} 6548f4d763aaSMatthew G. Knepley PetscFunctionReturn(0); 6549f4d763aaSMatthew G. Knepley } 6550f4d763aaSMatthew G. Knepley 6551f4d763aaSMatthew G. Knepley /*@ 6552cdb7a50dSMatthew G. Knepley DMSetOutputSequenceNumber - Set the sequence number/value for output 6553f4d763aaSMatthew G. Knepley 6554f4d763aaSMatthew G. Knepley Input Parameters: 6555f4d763aaSMatthew G. Knepley + dm - The original DM 6556cdb7a50dSMatthew G. Knepley . num - The output sequence number 6557cdb7a50dSMatthew G. Knepley - val - The output sequence value 6558f4d763aaSMatthew G. Knepley 6559f4d763aaSMatthew G. Knepley Level: intermediate 6560f4d763aaSMatthew G. Knepley 6561f4d763aaSMatthew G. Knepley Note: This is intended for output that should appear in sequence, for instance 6562f4d763aaSMatthew G. Knepley a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system. 6563f4d763aaSMatthew G. Knepley 6564f4d763aaSMatthew G. Knepley .seealso: VecView() 6565f4d763aaSMatthew G. Knepley @*/ 6566cdb7a50dSMatthew G. Knepley PetscErrorCode DMSetOutputSequenceNumber(DM dm, PetscInt num, PetscReal val) 6567f4d763aaSMatthew G. Knepley { 6568f4d763aaSMatthew G. Knepley PetscFunctionBegin; 6569f4d763aaSMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 6570f4d763aaSMatthew G. Knepley dm->outputSequenceNum = num; 6571cdb7a50dSMatthew G. Knepley dm->outputSequenceVal = val; 6572cdb7a50dSMatthew G. Knepley PetscFunctionReturn(0); 6573cdb7a50dSMatthew G. Knepley } 6574cdb7a50dSMatthew G. Knepley 6575cdb7a50dSMatthew G. Knepley /*@C 6576cdb7a50dSMatthew G. Knepley DMOutputSequenceLoad - Retrieve the sequence value from a Viewer 6577cdb7a50dSMatthew G. Knepley 6578cdb7a50dSMatthew G. Knepley Input Parameters: 6579cdb7a50dSMatthew G. Knepley + dm - The original DM 6580cdb7a50dSMatthew G. Knepley . name - The sequence name 6581cdb7a50dSMatthew G. Knepley - num - The output sequence number 6582cdb7a50dSMatthew G. Knepley 6583cdb7a50dSMatthew G. Knepley Output Parameter: 6584cdb7a50dSMatthew G. Knepley . val - The output sequence value 6585cdb7a50dSMatthew G. Knepley 6586cdb7a50dSMatthew G. Knepley Level: intermediate 6587cdb7a50dSMatthew G. Knepley 6588cdb7a50dSMatthew G. Knepley Note: This is intended for output that should appear in sequence, for instance 6589cdb7a50dSMatthew G. Knepley a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system. 6590cdb7a50dSMatthew G. Knepley 6591cdb7a50dSMatthew G. Knepley .seealso: DMGetOutputSequenceNumber(), DMSetOutputSequenceNumber(), VecView() 6592cdb7a50dSMatthew G. Knepley @*/ 6593cdb7a50dSMatthew G. Knepley PetscErrorCode DMOutputSequenceLoad(DM dm, PetscViewer viewer, const char *name, PetscInt num, PetscReal *val) 6594cdb7a50dSMatthew G. Knepley { 6595cdb7a50dSMatthew G. Knepley PetscBool ishdf5; 6596cdb7a50dSMatthew G. Knepley PetscErrorCode ierr; 6597cdb7a50dSMatthew G. Knepley 6598cdb7a50dSMatthew G. Knepley PetscFunctionBegin; 6599cdb7a50dSMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 6600cdb7a50dSMatthew G. Knepley PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); 6601534a8f05SLisandro Dalcin PetscValidRealPointer(val,4); 6602cdb7a50dSMatthew G. Knepley ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr); 6603cdb7a50dSMatthew G. Knepley if (ishdf5) { 6604cdb7a50dSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5) 6605cdb7a50dSMatthew G. Knepley PetscScalar value; 6606cdb7a50dSMatthew G. Knepley 660739d25373SMatthew G. Knepley ierr = DMSequenceLoad_HDF5_Internal(dm, name, num, &value, viewer);CHKERRQ(ierr); 66084aeb217fSMatthew G. Knepley *val = PetscRealPart(value); 6609cdb7a50dSMatthew G. Knepley #endif 6610cdb7a50dSMatthew G. Knepley } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid viewer; open viewer with PetscViewerHDF5Open()"); 6611f4d763aaSMatthew G. Knepley PetscFunctionReturn(0); 6612f4d763aaSMatthew G. Knepley } 66138e4ac7eaSMatthew G. Knepley 66148e4ac7eaSMatthew G. Knepley /*@ 66158e4ac7eaSMatthew G. Knepley DMGetUseNatural - Get the flag for creating a mapping to the natural order on distribution 66168e4ac7eaSMatthew G. Knepley 66178e4ac7eaSMatthew G. Knepley Not collective 66188e4ac7eaSMatthew G. Knepley 66198e4ac7eaSMatthew G. Knepley Input Parameter: 66208e4ac7eaSMatthew G. Knepley . dm - The DM 66218e4ac7eaSMatthew G. Knepley 66228e4ac7eaSMatthew G. Knepley Output Parameter: 66238e4ac7eaSMatthew G. Knepley . useNatural - The flag to build the mapping to a natural order during distribution 66248e4ac7eaSMatthew G. Knepley 66258e4ac7eaSMatthew G. Knepley Level: beginner 66268e4ac7eaSMatthew G. Knepley 66278e4ac7eaSMatthew G. Knepley .seealso: DMSetUseNatural(), DMCreate() 66288e4ac7eaSMatthew G. Knepley @*/ 66298e4ac7eaSMatthew G. Knepley PetscErrorCode DMGetUseNatural(DM dm, PetscBool *useNatural) 66308e4ac7eaSMatthew G. Knepley { 66318e4ac7eaSMatthew G. Knepley PetscFunctionBegin; 66328e4ac7eaSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6633534a8f05SLisandro Dalcin PetscValidBoolPointer(useNatural, 2); 66348e4ac7eaSMatthew G. Knepley *useNatural = dm->useNatural; 66358e4ac7eaSMatthew G. Knepley PetscFunctionReturn(0); 66368e4ac7eaSMatthew G. Knepley } 66378e4ac7eaSMatthew G. Knepley 66388e4ac7eaSMatthew G. Knepley /*@ 66395d3b26e6SMatthew G. Knepley DMSetUseNatural - Set the flag for creating a mapping to the natural order after distribution 66408e4ac7eaSMatthew G. Knepley 66418e4ac7eaSMatthew G. Knepley Collective on dm 66428e4ac7eaSMatthew G. Knepley 66438e4ac7eaSMatthew G. Knepley Input Parameters: 66448e4ac7eaSMatthew G. Knepley + dm - The DM 66458e4ac7eaSMatthew G. Knepley - useNatural - The flag to build the mapping to a natural order during distribution 66468e4ac7eaSMatthew G. Knepley 66475d3b26e6SMatthew G. Knepley Note: This also causes the map to be build after DMCreateSubDM() and DMCreateSuperDM() 66485d3b26e6SMatthew G. Knepley 66498e4ac7eaSMatthew G. Knepley Level: beginner 66508e4ac7eaSMatthew G. Knepley 66515d3b26e6SMatthew G. Knepley .seealso: DMGetUseNatural(), DMCreate(), DMPlexDistribute(), DMCreateSubDM(), DMCreateSuperDM() 66528e4ac7eaSMatthew G. Knepley @*/ 66538e4ac7eaSMatthew G. Knepley PetscErrorCode DMSetUseNatural(DM dm, PetscBool useNatural) 66548e4ac7eaSMatthew G. Knepley { 66558e4ac7eaSMatthew G. Knepley PetscFunctionBegin; 66568e4ac7eaSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 66578833efb5SBlaise Bourdin PetscValidLogicalCollectiveBool(dm, useNatural, 2); 66588e4ac7eaSMatthew G. Knepley dm->useNatural = useNatural; 66598e4ac7eaSMatthew G. Knepley PetscFunctionReturn(0); 66608e4ac7eaSMatthew G. Knepley } 6661c58f1c22SToby Isaac 6662c58f1c22SToby Isaac 6663c58f1c22SToby Isaac /*@C 6664c58f1c22SToby Isaac DMCreateLabel - Create a label of the given name if it does not already exist 6665c58f1c22SToby Isaac 6666c58f1c22SToby Isaac Not Collective 6667c58f1c22SToby Isaac 6668c58f1c22SToby Isaac Input Parameters: 6669c58f1c22SToby Isaac + dm - The DM object 6670c58f1c22SToby Isaac - name - The label name 6671c58f1c22SToby Isaac 6672c58f1c22SToby Isaac Level: intermediate 6673c58f1c22SToby Isaac 6674c58f1c22SToby Isaac .seealso: DMLabelCreate(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 6675c58f1c22SToby Isaac @*/ 6676c58f1c22SToby Isaac PetscErrorCode DMCreateLabel(DM dm, const char name[]) 6677c58f1c22SToby Isaac { 66785d80c0bfSVaclav Hapla PetscBool flg; 66795d80c0bfSVaclav Hapla DMLabel label; 6680c58f1c22SToby Isaac PetscErrorCode ierr; 6681c58f1c22SToby Isaac 6682c58f1c22SToby Isaac PetscFunctionBegin; 6683c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6684c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 66855d80c0bfSVaclav Hapla ierr = DMHasLabel(dm, name, &flg);CHKERRQ(ierr); 6686c58f1c22SToby Isaac if (!flg) { 66875d80c0bfSVaclav Hapla ierr = DMLabelCreate(PETSC_COMM_SELF, name, &label);CHKERRQ(ierr); 66885d80c0bfSVaclav Hapla ierr = DMAddLabel(dm, label);CHKERRQ(ierr); 66895d80c0bfSVaclav Hapla ierr = DMLabelDestroy(&label);CHKERRQ(ierr); 6690c58f1c22SToby Isaac } 6691c58f1c22SToby Isaac PetscFunctionReturn(0); 6692c58f1c22SToby Isaac } 6693c58f1c22SToby Isaac 6694c58f1c22SToby Isaac /*@C 6695c58f1c22SToby Isaac DMGetLabelValue - Get the value in a Sieve Label for the given point, with 0 as the default 6696c58f1c22SToby Isaac 6697c58f1c22SToby Isaac Not Collective 6698c58f1c22SToby Isaac 6699c58f1c22SToby Isaac Input Parameters: 6700c58f1c22SToby Isaac + dm - The DM object 6701c58f1c22SToby Isaac . name - The label name 6702c58f1c22SToby Isaac - point - The mesh point 6703c58f1c22SToby Isaac 6704c58f1c22SToby Isaac Output Parameter: 6705c58f1c22SToby Isaac . value - The label value for this point, or -1 if the point is not in the label 6706c58f1c22SToby Isaac 6707c58f1c22SToby Isaac Level: beginner 6708c58f1c22SToby Isaac 6709c58f1c22SToby Isaac .seealso: DMLabelGetValue(), DMSetLabelValue(), DMGetStratumIS() 6710c58f1c22SToby Isaac @*/ 6711c58f1c22SToby Isaac PetscErrorCode DMGetLabelValue(DM dm, const char name[], PetscInt point, PetscInt *value) 6712c58f1c22SToby Isaac { 6713c58f1c22SToby Isaac DMLabel label; 6714c58f1c22SToby Isaac PetscErrorCode ierr; 6715c58f1c22SToby Isaac 6716c58f1c22SToby Isaac PetscFunctionBegin; 6717c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6718c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6719c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 672013903a91SSatish Balay if (!label) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "No label named %s was found", name); 6721c58f1c22SToby Isaac ierr = DMLabelGetValue(label, point, value);CHKERRQ(ierr); 6722c58f1c22SToby Isaac PetscFunctionReturn(0); 6723c58f1c22SToby Isaac } 6724c58f1c22SToby Isaac 6725c58f1c22SToby Isaac /*@C 6726c58f1c22SToby Isaac DMSetLabelValue - Add a point to a Sieve Label with given value 6727c58f1c22SToby Isaac 6728c58f1c22SToby Isaac Not Collective 6729c58f1c22SToby Isaac 6730c58f1c22SToby Isaac Input Parameters: 6731c58f1c22SToby Isaac + dm - The DM object 6732c58f1c22SToby Isaac . name - The label name 6733c58f1c22SToby Isaac . point - The mesh point 6734c58f1c22SToby Isaac - value - The label value for this point 6735c58f1c22SToby Isaac 6736c58f1c22SToby Isaac Output Parameter: 6737c58f1c22SToby Isaac 6738c58f1c22SToby Isaac Level: beginner 6739c58f1c22SToby Isaac 6740c58f1c22SToby Isaac .seealso: DMLabelSetValue(), DMGetStratumIS(), DMClearLabelValue() 6741c58f1c22SToby Isaac @*/ 6742c58f1c22SToby Isaac PetscErrorCode DMSetLabelValue(DM dm, const char name[], PetscInt point, PetscInt value) 6743c58f1c22SToby Isaac { 6744c58f1c22SToby Isaac DMLabel label; 6745c58f1c22SToby Isaac PetscErrorCode ierr; 6746c58f1c22SToby Isaac 6747c58f1c22SToby Isaac PetscFunctionBegin; 6748c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6749c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6750c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6751c58f1c22SToby Isaac if (!label) { 6752c58f1c22SToby Isaac ierr = DMCreateLabel(dm, name);CHKERRQ(ierr); 6753c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6754c58f1c22SToby Isaac } 6755c58f1c22SToby Isaac ierr = DMLabelSetValue(label, point, value);CHKERRQ(ierr); 6756c58f1c22SToby Isaac PetscFunctionReturn(0); 6757c58f1c22SToby Isaac } 6758c58f1c22SToby Isaac 6759c58f1c22SToby Isaac /*@C 6760c58f1c22SToby Isaac DMClearLabelValue - Remove a point from a Sieve Label with given value 6761c58f1c22SToby Isaac 6762c58f1c22SToby Isaac Not Collective 6763c58f1c22SToby Isaac 6764c58f1c22SToby Isaac Input Parameters: 6765c58f1c22SToby Isaac + dm - The DM object 6766c58f1c22SToby Isaac . name - The label name 6767c58f1c22SToby Isaac . point - The mesh point 6768c58f1c22SToby Isaac - value - The label value for this point 6769c58f1c22SToby Isaac 6770c58f1c22SToby Isaac Output Parameter: 6771c58f1c22SToby Isaac 6772c58f1c22SToby Isaac Level: beginner 6773c58f1c22SToby Isaac 6774c58f1c22SToby Isaac .seealso: DMLabelClearValue(), DMSetLabelValue(), DMGetStratumIS() 6775c58f1c22SToby Isaac @*/ 6776c58f1c22SToby Isaac PetscErrorCode DMClearLabelValue(DM dm, const char name[], PetscInt point, PetscInt value) 6777c58f1c22SToby Isaac { 6778c58f1c22SToby Isaac DMLabel label; 6779c58f1c22SToby Isaac PetscErrorCode ierr; 6780c58f1c22SToby Isaac 6781c58f1c22SToby Isaac PetscFunctionBegin; 6782c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6783c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6784c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6785c58f1c22SToby Isaac if (!label) PetscFunctionReturn(0); 6786c58f1c22SToby Isaac ierr = DMLabelClearValue(label, point, value);CHKERRQ(ierr); 6787c58f1c22SToby Isaac PetscFunctionReturn(0); 6788c58f1c22SToby Isaac } 6789c58f1c22SToby Isaac 6790c58f1c22SToby Isaac /*@C 6791c58f1c22SToby Isaac DMGetLabelSize - Get the number of different integer ids in a Label 6792c58f1c22SToby Isaac 6793c58f1c22SToby Isaac Not Collective 6794c58f1c22SToby Isaac 6795c58f1c22SToby Isaac Input Parameters: 6796c58f1c22SToby Isaac + dm - The DM object 6797c58f1c22SToby Isaac - name - The label name 6798c58f1c22SToby Isaac 6799c58f1c22SToby Isaac Output Parameter: 6800c58f1c22SToby Isaac . size - The number of different integer ids, or 0 if the label does not exist 6801c58f1c22SToby Isaac 6802c58f1c22SToby Isaac Level: beginner 6803c58f1c22SToby Isaac 6804df813f42SMatthew G. Knepley .seealso: DMLabelGetNumValues(), DMSetLabelValue() 6805c58f1c22SToby Isaac @*/ 6806c58f1c22SToby Isaac PetscErrorCode DMGetLabelSize(DM dm, const char name[], PetscInt *size) 6807c58f1c22SToby Isaac { 6808c58f1c22SToby Isaac DMLabel label; 6809c58f1c22SToby Isaac PetscErrorCode ierr; 6810c58f1c22SToby Isaac 6811c58f1c22SToby Isaac PetscFunctionBegin; 6812c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6813c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6814534a8f05SLisandro Dalcin PetscValidIntPointer(size, 3); 6815c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6816c58f1c22SToby Isaac *size = 0; 6817c58f1c22SToby Isaac if (!label) PetscFunctionReturn(0); 6818c58f1c22SToby Isaac ierr = DMLabelGetNumValues(label, size);CHKERRQ(ierr); 6819c58f1c22SToby Isaac PetscFunctionReturn(0); 6820c58f1c22SToby Isaac } 6821c58f1c22SToby Isaac 6822c58f1c22SToby Isaac /*@C 6823c58f1c22SToby Isaac DMGetLabelIdIS - Get the integer ids in a label 6824c58f1c22SToby Isaac 6825c58f1c22SToby Isaac Not Collective 6826c58f1c22SToby Isaac 6827c58f1c22SToby Isaac Input Parameters: 6828c58f1c22SToby Isaac + mesh - The DM object 6829c58f1c22SToby Isaac - name - The label name 6830c58f1c22SToby Isaac 6831c58f1c22SToby Isaac Output Parameter: 6832c58f1c22SToby Isaac . ids - The integer ids, or NULL if the label does not exist 6833c58f1c22SToby Isaac 6834c58f1c22SToby Isaac Level: beginner 6835c58f1c22SToby Isaac 6836c58f1c22SToby Isaac .seealso: DMLabelGetValueIS(), DMGetLabelSize() 6837c58f1c22SToby Isaac @*/ 6838c58f1c22SToby Isaac PetscErrorCode DMGetLabelIdIS(DM dm, const char name[], IS *ids) 6839c58f1c22SToby Isaac { 6840c58f1c22SToby Isaac DMLabel label; 6841c58f1c22SToby Isaac PetscErrorCode ierr; 6842c58f1c22SToby Isaac 6843c58f1c22SToby Isaac PetscFunctionBegin; 6844c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6845c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6846c58f1c22SToby Isaac PetscValidPointer(ids, 3); 6847c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6848c58f1c22SToby Isaac *ids = NULL; 6849dab2e251SBlaise Bourdin if (label) { 6850c58f1c22SToby Isaac ierr = DMLabelGetValueIS(label, ids);CHKERRQ(ierr); 6851dab2e251SBlaise Bourdin } else { 6852dab2e251SBlaise Bourdin /* returning an empty IS */ 6853dab2e251SBlaise Bourdin ierr = ISCreateGeneral(PETSC_COMM_SELF,0,NULL,PETSC_USE_POINTER,ids);CHKERRQ(ierr); 6854dab2e251SBlaise Bourdin } 6855c58f1c22SToby Isaac PetscFunctionReturn(0); 6856c58f1c22SToby Isaac } 6857c58f1c22SToby Isaac 6858c58f1c22SToby Isaac /*@C 6859c58f1c22SToby Isaac DMGetStratumSize - Get the number of points in a label stratum 6860c58f1c22SToby Isaac 6861c58f1c22SToby Isaac Not Collective 6862c58f1c22SToby Isaac 6863c58f1c22SToby Isaac Input Parameters: 6864c58f1c22SToby Isaac + dm - The DM object 6865c58f1c22SToby Isaac . name - The label name 6866c58f1c22SToby Isaac - value - The stratum value 6867c58f1c22SToby Isaac 6868c58f1c22SToby Isaac Output Parameter: 6869c58f1c22SToby Isaac . size - The stratum size 6870c58f1c22SToby Isaac 6871c58f1c22SToby Isaac Level: beginner 6872c58f1c22SToby Isaac 6873c58f1c22SToby Isaac .seealso: DMLabelGetStratumSize(), DMGetLabelSize(), DMGetLabelIds() 6874c58f1c22SToby Isaac @*/ 6875c58f1c22SToby Isaac PetscErrorCode DMGetStratumSize(DM dm, const char name[], PetscInt value, PetscInt *size) 6876c58f1c22SToby Isaac { 6877c58f1c22SToby Isaac DMLabel label; 6878c58f1c22SToby Isaac PetscErrorCode ierr; 6879c58f1c22SToby Isaac 6880c58f1c22SToby Isaac PetscFunctionBegin; 6881c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6882c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6883534a8f05SLisandro Dalcin PetscValidIntPointer(size, 4); 6884c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6885c58f1c22SToby Isaac *size = 0; 6886c58f1c22SToby Isaac if (!label) PetscFunctionReturn(0); 6887c58f1c22SToby Isaac ierr = DMLabelGetStratumSize(label, value, size);CHKERRQ(ierr); 6888c58f1c22SToby Isaac PetscFunctionReturn(0); 6889c58f1c22SToby Isaac } 6890c58f1c22SToby Isaac 6891c58f1c22SToby Isaac /*@C 6892c58f1c22SToby Isaac DMGetStratumIS - Get the points in a label stratum 6893c58f1c22SToby Isaac 6894c58f1c22SToby Isaac Not Collective 6895c58f1c22SToby Isaac 6896c58f1c22SToby Isaac Input Parameters: 6897c58f1c22SToby Isaac + dm - The DM object 6898c58f1c22SToby Isaac . name - The label name 6899c58f1c22SToby Isaac - value - The stratum value 6900c58f1c22SToby Isaac 6901c58f1c22SToby Isaac Output Parameter: 6902c58f1c22SToby Isaac . points - The stratum points, or NULL if the label does not exist or does not have that value 6903c58f1c22SToby Isaac 6904c58f1c22SToby Isaac Level: beginner 6905c58f1c22SToby Isaac 6906c58f1c22SToby Isaac .seealso: DMLabelGetStratumIS(), DMGetStratumSize() 6907c58f1c22SToby Isaac @*/ 6908c58f1c22SToby Isaac PetscErrorCode DMGetStratumIS(DM dm, const char name[], PetscInt value, IS *points) 6909c58f1c22SToby Isaac { 6910c58f1c22SToby Isaac DMLabel label; 6911c58f1c22SToby Isaac PetscErrorCode ierr; 6912c58f1c22SToby Isaac 6913c58f1c22SToby Isaac PetscFunctionBegin; 6914c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6915c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6916c58f1c22SToby Isaac PetscValidPointer(points, 4); 6917c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6918c58f1c22SToby Isaac *points = NULL; 6919c58f1c22SToby Isaac if (!label) PetscFunctionReturn(0); 6920c58f1c22SToby Isaac ierr = DMLabelGetStratumIS(label, value, points);CHKERRQ(ierr); 6921c58f1c22SToby Isaac PetscFunctionReturn(0); 6922c58f1c22SToby Isaac } 6923c58f1c22SToby Isaac 69244de306b1SToby Isaac /*@C 69259044fa66SMatthew G. Knepley DMSetStratumIS - Set the points in a label stratum 69264de306b1SToby Isaac 69274de306b1SToby Isaac Not Collective 69284de306b1SToby Isaac 69294de306b1SToby Isaac Input Parameters: 69304de306b1SToby Isaac + dm - The DM object 69314de306b1SToby Isaac . name - The label name 69324de306b1SToby Isaac . value - The stratum value 69334de306b1SToby Isaac - points - The stratum points 69344de306b1SToby Isaac 69354de306b1SToby Isaac Level: beginner 69364de306b1SToby Isaac 69374de306b1SToby Isaac .seealso: DMLabelSetStratumIS(), DMGetStratumSize() 69384de306b1SToby Isaac @*/ 69394de306b1SToby Isaac PetscErrorCode DMSetStratumIS(DM dm, const char name[], PetscInt value, IS points) 69404de306b1SToby Isaac { 69414de306b1SToby Isaac DMLabel label; 69424de306b1SToby Isaac PetscErrorCode ierr; 69434de306b1SToby Isaac 69444de306b1SToby Isaac PetscFunctionBegin; 69454de306b1SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 69464de306b1SToby Isaac PetscValidCharPointer(name, 2); 69474de306b1SToby Isaac PetscValidPointer(points, 4); 69484de306b1SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 69494de306b1SToby Isaac if (!label) PetscFunctionReturn(0); 69504de306b1SToby Isaac ierr = DMLabelSetStratumIS(label, value, points);CHKERRQ(ierr); 69514de306b1SToby Isaac PetscFunctionReturn(0); 69524de306b1SToby Isaac } 69534de306b1SToby Isaac 6954c58f1c22SToby Isaac /*@C 6955c58f1c22SToby Isaac DMClearLabelStratum - Remove all points from a stratum from a Sieve Label 6956c58f1c22SToby Isaac 6957c58f1c22SToby Isaac Not Collective 6958c58f1c22SToby Isaac 6959c58f1c22SToby Isaac Input Parameters: 6960c58f1c22SToby Isaac + dm - The DM object 6961c58f1c22SToby Isaac . name - The label name 6962c58f1c22SToby Isaac - value - The label value for this point 6963c58f1c22SToby Isaac 6964c58f1c22SToby Isaac Output Parameter: 6965c58f1c22SToby Isaac 6966c58f1c22SToby Isaac Level: beginner 6967c58f1c22SToby Isaac 6968c58f1c22SToby Isaac .seealso: DMLabelClearStratum(), DMSetLabelValue(), DMGetStratumIS(), DMClearLabelValue() 6969c58f1c22SToby Isaac @*/ 6970c58f1c22SToby Isaac PetscErrorCode DMClearLabelStratum(DM dm, const char name[], PetscInt value) 6971c58f1c22SToby Isaac { 6972c58f1c22SToby Isaac DMLabel label; 6973c58f1c22SToby Isaac PetscErrorCode ierr; 6974c58f1c22SToby Isaac 6975c58f1c22SToby Isaac PetscFunctionBegin; 6976c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 6977c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 6978c58f1c22SToby Isaac ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr); 6979c58f1c22SToby Isaac if (!label) PetscFunctionReturn(0); 6980c58f1c22SToby Isaac ierr = DMLabelClearStratum(label, value);CHKERRQ(ierr); 6981c58f1c22SToby Isaac PetscFunctionReturn(0); 6982c58f1c22SToby Isaac } 6983c58f1c22SToby Isaac 6984c58f1c22SToby Isaac /*@ 6985c58f1c22SToby Isaac DMGetNumLabels - Return the number of labels defined by the mesh 6986c58f1c22SToby Isaac 6987c58f1c22SToby Isaac Not Collective 6988c58f1c22SToby Isaac 6989c58f1c22SToby Isaac Input Parameter: 6990c58f1c22SToby Isaac . dm - The DM object 6991c58f1c22SToby Isaac 6992c58f1c22SToby Isaac Output Parameter: 6993c58f1c22SToby Isaac . numLabels - the number of Labels 6994c58f1c22SToby Isaac 6995c58f1c22SToby Isaac Level: intermediate 6996c58f1c22SToby Isaac 6997c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 6998c58f1c22SToby Isaac @*/ 6999c58f1c22SToby Isaac PetscErrorCode DMGetNumLabels(DM dm, PetscInt *numLabels) 7000c58f1c22SToby Isaac { 70015d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7002c58f1c22SToby Isaac PetscInt n = 0; 7003c58f1c22SToby Isaac 7004c58f1c22SToby Isaac PetscFunctionBegin; 7005c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7006534a8f05SLisandro Dalcin PetscValidIntPointer(numLabels, 2); 7007c58f1c22SToby Isaac while (next) {++n; next = next->next;} 7008c58f1c22SToby Isaac *numLabels = n; 7009c58f1c22SToby Isaac PetscFunctionReturn(0); 7010c58f1c22SToby Isaac } 7011c58f1c22SToby Isaac 7012c58f1c22SToby Isaac /*@C 7013c58f1c22SToby Isaac DMGetLabelName - Return the name of nth label 7014c58f1c22SToby Isaac 7015c58f1c22SToby Isaac Not Collective 7016c58f1c22SToby Isaac 7017c58f1c22SToby Isaac Input Parameters: 7018c58f1c22SToby Isaac + dm - The DM object 7019c58f1c22SToby Isaac - n - the label number 7020c58f1c22SToby Isaac 7021c58f1c22SToby Isaac Output Parameter: 7022c58f1c22SToby Isaac . name - the label name 7023c58f1c22SToby Isaac 7024c58f1c22SToby Isaac Level: intermediate 7025c58f1c22SToby Isaac 7026c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7027c58f1c22SToby Isaac @*/ 7028c58f1c22SToby Isaac PetscErrorCode DMGetLabelName(DM dm, PetscInt n, const char **name) 7029c58f1c22SToby Isaac { 70305d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7031c58f1c22SToby Isaac PetscInt l = 0; 7032d67d17b1SMatthew G. Knepley PetscErrorCode ierr; 7033c58f1c22SToby Isaac 7034c58f1c22SToby Isaac PetscFunctionBegin; 7035c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7036c58f1c22SToby Isaac PetscValidPointer(name, 3); 7037c58f1c22SToby Isaac while (next) { 7038c58f1c22SToby Isaac if (l == n) { 7039d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) next->label, name);CHKERRQ(ierr); 7040c58f1c22SToby Isaac PetscFunctionReturn(0); 7041c58f1c22SToby Isaac } 7042c58f1c22SToby Isaac ++l; 7043c58f1c22SToby Isaac next = next->next; 7044c58f1c22SToby Isaac } 7045c58f1c22SToby Isaac SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n); 7046c58f1c22SToby Isaac } 7047c58f1c22SToby Isaac 7048c58f1c22SToby Isaac /*@C 7049c58f1c22SToby Isaac DMHasLabel - Determine whether the mesh has a label of a given name 7050c58f1c22SToby Isaac 7051c58f1c22SToby Isaac Not Collective 7052c58f1c22SToby Isaac 7053c58f1c22SToby Isaac Input Parameters: 7054c58f1c22SToby Isaac + dm - The DM object 7055c58f1c22SToby Isaac - name - The label name 7056c58f1c22SToby Isaac 7057c58f1c22SToby Isaac Output Parameter: 7058c58f1c22SToby Isaac . hasLabel - PETSC_TRUE if the label is present 7059c58f1c22SToby Isaac 7060c58f1c22SToby Isaac Level: intermediate 7061c58f1c22SToby Isaac 7062c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7063c58f1c22SToby Isaac @*/ 7064c58f1c22SToby Isaac PetscErrorCode DMHasLabel(DM dm, const char name[], PetscBool *hasLabel) 7065c58f1c22SToby Isaac { 70665d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7067d67d17b1SMatthew G. Knepley const char *lname; 7068c58f1c22SToby Isaac PetscErrorCode ierr; 7069c58f1c22SToby Isaac 7070c58f1c22SToby Isaac PetscFunctionBegin; 7071c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7072c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 7073534a8f05SLisandro Dalcin PetscValidBoolPointer(hasLabel, 3); 7074c58f1c22SToby Isaac *hasLabel = PETSC_FALSE; 7075c58f1c22SToby Isaac while (next) { 7076d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr); 7077d67d17b1SMatthew G. Knepley ierr = PetscStrcmp(name, lname, hasLabel);CHKERRQ(ierr); 7078c58f1c22SToby Isaac if (*hasLabel) break; 7079c58f1c22SToby Isaac next = next->next; 7080c58f1c22SToby Isaac } 7081c58f1c22SToby Isaac PetscFunctionReturn(0); 7082c58f1c22SToby Isaac } 7083c58f1c22SToby Isaac 7084c58f1c22SToby Isaac /*@C 7085c58f1c22SToby Isaac DMGetLabel - Return the label of a given name, or NULL 7086c58f1c22SToby Isaac 7087c58f1c22SToby Isaac Not Collective 7088c58f1c22SToby Isaac 7089c58f1c22SToby Isaac Input Parameters: 7090c58f1c22SToby Isaac + dm - The DM object 7091c58f1c22SToby Isaac - name - The label name 7092c58f1c22SToby Isaac 7093c58f1c22SToby Isaac Output Parameter: 7094c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent 7095c58f1c22SToby Isaac 7096c58f1c22SToby Isaac Level: intermediate 7097c58f1c22SToby Isaac 7098c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7099c58f1c22SToby Isaac @*/ 7100c58f1c22SToby Isaac PetscErrorCode DMGetLabel(DM dm, const char name[], DMLabel *label) 7101c58f1c22SToby Isaac { 71025d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7103c58f1c22SToby Isaac PetscBool hasLabel; 7104d67d17b1SMatthew G. Knepley const char *lname; 7105c58f1c22SToby Isaac PetscErrorCode ierr; 7106c58f1c22SToby Isaac 7107c58f1c22SToby Isaac PetscFunctionBegin; 7108c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7109c58f1c22SToby Isaac PetscValidCharPointer(name, 2); 7110c58f1c22SToby Isaac PetscValidPointer(label, 3); 7111c58f1c22SToby Isaac *label = NULL; 7112c58f1c22SToby Isaac while (next) { 7113d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr); 7114d67d17b1SMatthew G. Knepley ierr = PetscStrcmp(name, lname, &hasLabel);CHKERRQ(ierr); 7115c58f1c22SToby Isaac if (hasLabel) { 7116c58f1c22SToby Isaac *label = next->label; 7117c58f1c22SToby Isaac break; 7118c58f1c22SToby Isaac } 7119c58f1c22SToby Isaac next = next->next; 7120c58f1c22SToby Isaac } 7121c58f1c22SToby Isaac PetscFunctionReturn(0); 7122c58f1c22SToby Isaac } 7123c58f1c22SToby Isaac 7124c58f1c22SToby Isaac /*@C 7125c58f1c22SToby Isaac DMGetLabelByNum - Return the nth label 7126c58f1c22SToby Isaac 7127c58f1c22SToby Isaac Not Collective 7128c58f1c22SToby Isaac 7129c58f1c22SToby Isaac Input Parameters: 7130c58f1c22SToby Isaac + dm - The DM object 7131c58f1c22SToby Isaac - n - the label number 7132c58f1c22SToby Isaac 7133c58f1c22SToby Isaac Output Parameter: 7134c58f1c22SToby Isaac . label - the label 7135c58f1c22SToby Isaac 7136c58f1c22SToby Isaac Level: intermediate 7137c58f1c22SToby Isaac 7138c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7139c58f1c22SToby Isaac @*/ 7140c58f1c22SToby Isaac PetscErrorCode DMGetLabelByNum(DM dm, PetscInt n, DMLabel *label) 7141c58f1c22SToby Isaac { 71425d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7143c58f1c22SToby Isaac PetscInt l = 0; 7144c58f1c22SToby Isaac 7145c58f1c22SToby Isaac PetscFunctionBegin; 7146c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7147c58f1c22SToby Isaac PetscValidPointer(label, 3); 7148c58f1c22SToby Isaac while (next) { 7149c58f1c22SToby Isaac if (l == n) { 7150c58f1c22SToby Isaac *label = next->label; 7151c58f1c22SToby Isaac PetscFunctionReturn(0); 7152c58f1c22SToby Isaac } 7153c58f1c22SToby Isaac ++l; 7154c58f1c22SToby Isaac next = next->next; 7155c58f1c22SToby Isaac } 7156c58f1c22SToby Isaac SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n); 7157c58f1c22SToby Isaac } 7158c58f1c22SToby Isaac 7159c58f1c22SToby Isaac /*@C 7160c58f1c22SToby Isaac DMAddLabel - Add the label to this mesh 7161c58f1c22SToby Isaac 7162c58f1c22SToby Isaac Not Collective 7163c58f1c22SToby Isaac 7164c58f1c22SToby Isaac Input Parameters: 7165c58f1c22SToby Isaac + dm - The DM object 7166c58f1c22SToby Isaac - label - The DMLabel 7167c58f1c22SToby Isaac 7168c58f1c22SToby Isaac Level: developer 7169c58f1c22SToby Isaac 7170c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7171c58f1c22SToby Isaac @*/ 7172c58f1c22SToby Isaac PetscErrorCode DMAddLabel(DM dm, DMLabel label) 7173c58f1c22SToby Isaac { 71745d80c0bfSVaclav Hapla DMLabelLink l, *p, tmpLabel; 7175c58f1c22SToby Isaac PetscBool hasLabel; 7176d67d17b1SMatthew G. Knepley const char *lname; 71775d80c0bfSVaclav Hapla PetscBool flg; 7178c58f1c22SToby Isaac PetscErrorCode ierr; 7179c58f1c22SToby Isaac 7180c58f1c22SToby Isaac PetscFunctionBegin; 7181c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7182d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) label, &lname);CHKERRQ(ierr); 7183d67d17b1SMatthew G. Knepley ierr = DMHasLabel(dm, lname, &hasLabel);CHKERRQ(ierr); 7184d67d17b1SMatthew G. Knepley if (hasLabel) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %s already exists in this DM", lname); 7185c58f1c22SToby Isaac ierr = PetscCalloc1(1, &tmpLabel);CHKERRQ(ierr); 7186c58f1c22SToby Isaac tmpLabel->label = label; 7187c58f1c22SToby Isaac tmpLabel->output = PETSC_TRUE; 71885d80c0bfSVaclav Hapla for (p=&dm->labels; (l=*p); p=&l->next) {} 71895d80c0bfSVaclav Hapla *p = tmpLabel; 719008f633c4SVaclav Hapla ierr = PetscObjectReference((PetscObject)label);CHKERRQ(ierr); 71915d80c0bfSVaclav Hapla ierr = PetscStrcmp(lname, "depth", &flg);CHKERRQ(ierr); 71925d80c0bfSVaclav Hapla if (flg) dm->depthLabel = label; 7193ba2698f1SMatthew G. Knepley ierr = PetscStrcmp(lname, "celltype", &flg);CHKERRQ(ierr); 7194ba2698f1SMatthew G. Knepley if (flg) dm->celltypeLabel = label; 7195c58f1c22SToby Isaac PetscFunctionReturn(0); 7196c58f1c22SToby Isaac } 7197c58f1c22SToby Isaac 7198c58f1c22SToby Isaac /*@C 7199e5472504SVaclav Hapla DMRemoveLabel - Remove the label given by name from this mesh 7200c58f1c22SToby Isaac 7201c58f1c22SToby Isaac Not Collective 7202c58f1c22SToby Isaac 7203c58f1c22SToby Isaac Input Parameters: 7204c58f1c22SToby Isaac + dm - The DM object 7205c58f1c22SToby Isaac - name - The label name 7206c58f1c22SToby Isaac 7207c58f1c22SToby Isaac Output Parameter: 7208c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent 7209c58f1c22SToby Isaac 7210c58f1c22SToby Isaac Level: developer 7211c58f1c22SToby Isaac 7212e5472504SVaclav Hapla Notes: 7213e5472504SVaclav Hapla DMRemoveLabel(dm,name,NULL) removes the label from dm and calls 7214e5472504SVaclav Hapla DMLabelDestroy() on the label. 7215e5472504SVaclav Hapla 7216e5472504SVaclav Hapla DMRemoveLabel(dm,name,&label) removes the label from dm, but it DOES NOT 7217e5472504SVaclav Hapla call DMLabelDestroy(). Instead, the label is returned and the user is 7218e5472504SVaclav Hapla responsible of calling DMLabelDestroy() at some point. 7219e5472504SVaclav Hapla 7220e5472504SVaclav Hapla .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabel(), DMGetLabelValue(), DMSetLabelValue(), DMLabelDestroy(), DMRemoveLabelBySelf() 7221c58f1c22SToby Isaac @*/ 7222c58f1c22SToby Isaac PetscErrorCode DMRemoveLabel(DM dm, const char name[], DMLabel *label) 7223c58f1c22SToby Isaac { 722495d578d6SVaclav Hapla DMLabelLink link, *pnext; 7225c58f1c22SToby Isaac PetscBool hasLabel; 7226d67d17b1SMatthew G. Knepley const char *lname; 7227c58f1c22SToby Isaac PetscErrorCode ierr; 7228c58f1c22SToby Isaac 7229c58f1c22SToby Isaac PetscFunctionBegin; 7230c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7231e5472504SVaclav Hapla PetscValidCharPointer(name, 2); 7232e5472504SVaclav Hapla if (label) { 7233e5472504SVaclav Hapla PetscValidPointer(label, 3); 7234c58f1c22SToby Isaac *label = NULL; 7235e5472504SVaclav Hapla } 72365d80c0bfSVaclav Hapla for (pnext=&dm->labels; (link=*pnext); pnext=&link->next) { 723795d578d6SVaclav Hapla ierr = PetscObjectGetName((PetscObject) link->label, &lname);CHKERRQ(ierr); 7238d67d17b1SMatthew G. Knepley ierr = PetscStrcmp(name, lname, &hasLabel);CHKERRQ(ierr); 7239c58f1c22SToby Isaac if (hasLabel) { 724095d578d6SVaclav Hapla *pnext = link->next; /* Remove from list */ 7241c58f1c22SToby Isaac ierr = PetscStrcmp(name, "depth", &hasLabel);CHKERRQ(ierr); 724295d578d6SVaclav Hapla if (hasLabel) dm->depthLabel = NULL; 7243ba2698f1SMatthew G. Knepley ierr = PetscStrcmp(name, "celltype", &hasLabel);CHKERRQ(ierr); 7244ba2698f1SMatthew G. Knepley if (hasLabel) dm->celltypeLabel = NULL; 724595d578d6SVaclav Hapla if (label) *label = link->label; 724695d578d6SVaclav Hapla else {ierr = DMLabelDestroy(&link->label);CHKERRQ(ierr);} 724795d578d6SVaclav Hapla ierr = PetscFree(link);CHKERRQ(ierr); 7248c58f1c22SToby Isaac break; 7249c58f1c22SToby Isaac } 7250c58f1c22SToby Isaac } 7251c58f1c22SToby Isaac PetscFunctionReturn(0); 7252c58f1c22SToby Isaac } 7253c58f1c22SToby Isaac 7254306894acSVaclav Hapla /*@ 7255306894acSVaclav Hapla DMRemoveLabelBySelf - Remove the label from this mesh 7256306894acSVaclav Hapla 7257306894acSVaclav Hapla Not Collective 7258306894acSVaclav Hapla 7259306894acSVaclav Hapla Input Parameters: 7260306894acSVaclav Hapla + dm - The DM object 7261306894acSVaclav Hapla . label - (Optional) The DMLabel to be removed from the DM 7262306894acSVaclav Hapla - failNotFound - Should it fail if the label is not found in the DM? 7263306894acSVaclav Hapla 7264306894acSVaclav Hapla Level: developer 7265306894acSVaclav Hapla 7266306894acSVaclav Hapla Notes: 7267306894acSVaclav Hapla Only exactly the same instance is removed if found, name match is ignored. 7268306894acSVaclav Hapla If the DM has an exclusive reference to the label, it gets destroyed and 7269306894acSVaclav Hapla *label nullified. 7270306894acSVaclav Hapla 7271306894acSVaclav Hapla .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabel() DMGetLabelValue(), DMSetLabelValue(), DMLabelDestroy(), DMRemoveLabel() 7272306894acSVaclav Hapla @*/ 7273306894acSVaclav Hapla PetscErrorCode DMRemoveLabelBySelf(DM dm, DMLabel *label, PetscBool failNotFound) 7274306894acSVaclav Hapla { 727543e45a93SVaclav Hapla DMLabelLink link, *pnext; 7276306894acSVaclav Hapla PetscBool hasLabel = PETSC_FALSE; 7277306894acSVaclav Hapla PetscErrorCode ierr; 7278306894acSVaclav Hapla 7279306894acSVaclav Hapla PetscFunctionBegin; 7280306894acSVaclav Hapla PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7281306894acSVaclav Hapla PetscValidPointer(label, 2); 7282f39a9ae0SVaclav Hapla if (!*label && !failNotFound) PetscFunctionReturn(0); 7283306894acSVaclav Hapla PetscValidHeaderSpecific(*label, DMLABEL_CLASSID, 2); 7284306894acSVaclav Hapla PetscValidLogicalCollectiveBool(dm,failNotFound,3); 72855d80c0bfSVaclav Hapla for (pnext=&dm->labels; (link=*pnext); pnext=&link->next) { 728643e45a93SVaclav Hapla if (*label == link->label) { 7287306894acSVaclav Hapla hasLabel = PETSC_TRUE; 728843e45a93SVaclav Hapla *pnext = link->next; /* Remove from list */ 7289306894acSVaclav Hapla if (*label == dm->depthLabel) dm->depthLabel = NULL; 7290ba2698f1SMatthew G. Knepley if (*label == dm->celltypeLabel) dm->celltypeLabel = NULL; 729143e45a93SVaclav Hapla if (((PetscObject) link->label)->refct < 2) *label = NULL; /* nullify if exclusive reference */ 729243e45a93SVaclav Hapla ierr = DMLabelDestroy(&link->label);CHKERRQ(ierr); 729343e45a93SVaclav Hapla ierr = PetscFree(link);CHKERRQ(ierr); 7294306894acSVaclav Hapla break; 7295306894acSVaclav Hapla } 7296306894acSVaclav Hapla } 7297306894acSVaclav Hapla if (!hasLabel && failNotFound) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Given label not found in DM"); 7298306894acSVaclav Hapla PetscFunctionReturn(0); 7299306894acSVaclav Hapla } 7300306894acSVaclav Hapla 7301c58f1c22SToby Isaac /*@C 7302c58f1c22SToby Isaac DMGetLabelOutput - Get the output flag for a given label 7303c58f1c22SToby Isaac 7304c58f1c22SToby Isaac Not Collective 7305c58f1c22SToby Isaac 7306c58f1c22SToby Isaac Input Parameters: 7307c58f1c22SToby Isaac + dm - The DM object 7308c58f1c22SToby Isaac - name - The label name 7309c58f1c22SToby Isaac 7310c58f1c22SToby Isaac Output Parameter: 7311c58f1c22SToby Isaac . output - The flag for output 7312c58f1c22SToby Isaac 7313c58f1c22SToby Isaac Level: developer 7314c58f1c22SToby Isaac 7315c58f1c22SToby Isaac .seealso: DMSetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7316c58f1c22SToby Isaac @*/ 7317c58f1c22SToby Isaac PetscErrorCode DMGetLabelOutput(DM dm, const char name[], PetscBool *output) 7318c58f1c22SToby Isaac { 73195d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7320d67d17b1SMatthew G. Knepley const char *lname; 7321c58f1c22SToby Isaac PetscErrorCode ierr; 7322c58f1c22SToby Isaac 7323c58f1c22SToby Isaac PetscFunctionBegin; 7324c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7325c58f1c22SToby Isaac PetscValidPointer(name, 2); 7326c58f1c22SToby Isaac PetscValidPointer(output, 3); 7327c58f1c22SToby Isaac while (next) { 7328c58f1c22SToby Isaac PetscBool flg; 7329c58f1c22SToby Isaac 7330d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr); 7331d67d17b1SMatthew G. Knepley ierr = PetscStrcmp(name, lname, &flg);CHKERRQ(ierr); 7332c58f1c22SToby Isaac if (flg) {*output = next->output; PetscFunctionReturn(0);} 7333c58f1c22SToby Isaac next = next->next; 7334c58f1c22SToby Isaac } 7335c58f1c22SToby Isaac SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name); 7336c58f1c22SToby Isaac } 7337c58f1c22SToby Isaac 7338c58f1c22SToby Isaac /*@C 7339c58f1c22SToby Isaac DMSetLabelOutput - Set the output flag for a given label 7340c58f1c22SToby Isaac 7341c58f1c22SToby Isaac Not Collective 7342c58f1c22SToby Isaac 7343c58f1c22SToby Isaac Input Parameters: 7344c58f1c22SToby Isaac + dm - The DM object 7345c58f1c22SToby Isaac . name - The label name 7346c58f1c22SToby Isaac - output - The flag for output 7347c58f1c22SToby Isaac 7348c58f1c22SToby Isaac Level: developer 7349c58f1c22SToby Isaac 7350c58f1c22SToby Isaac .seealso: DMGetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS() 7351c58f1c22SToby Isaac @*/ 7352c58f1c22SToby Isaac PetscErrorCode DMSetLabelOutput(DM dm, const char name[], PetscBool output) 7353c58f1c22SToby Isaac { 73545d80c0bfSVaclav Hapla DMLabelLink next = dm->labels; 7355d67d17b1SMatthew G. Knepley const char *lname; 7356c58f1c22SToby Isaac PetscErrorCode ierr; 7357c58f1c22SToby Isaac 7358c58f1c22SToby Isaac PetscFunctionBegin; 7359c58f1c22SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7360534a8f05SLisandro Dalcin PetscValidCharPointer(name, 2); 7361c58f1c22SToby Isaac while (next) { 7362c58f1c22SToby Isaac PetscBool flg; 7363c58f1c22SToby Isaac 7364d67d17b1SMatthew G. Knepley ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr); 7365d67d17b1SMatthew G. Knepley ierr = PetscStrcmp(name, lname, &flg);CHKERRQ(ierr); 7366c58f1c22SToby Isaac if (flg) {next->output = output; PetscFunctionReturn(0);} 7367c58f1c22SToby Isaac next = next->next; 7368c58f1c22SToby Isaac } 7369c58f1c22SToby Isaac SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name); 7370c58f1c22SToby Isaac } 7371c58f1c22SToby Isaac 7372c58f1c22SToby Isaac /*@ 7373c58f1c22SToby Isaac DMCopyLabels - Copy labels from one mesh to another with a superset of the points 7374c58f1c22SToby Isaac 7375d083f849SBarry Smith Collective on dmA 7376c58f1c22SToby Isaac 7377c58f1c22SToby Isaac Input Parameter: 73785d80c0bfSVaclav Hapla + dmA - The DM object with initial labels 73792e17dfb7SMatthew G. Knepley . dmB - The DM object with copied labels 73805d80c0bfSVaclav Hapla . mode - Copy labels by pointers (PETSC_OWN_POINTER) or duplicate them (PETSC_COPY_VALUES) 7381ba2698f1SMatthew G. Knepley - all - Copy all labels including "depth", "dim", and "celltype" (PETSC_TRUE) which are otherwise ignored (PETSC_FALSE) 7382c58f1c22SToby Isaac 7383c58f1c22SToby Isaac Level: intermediate 7384c58f1c22SToby Isaac 7385c58f1c22SToby Isaac Note: This is typically used when interpolating or otherwise adding to a mesh 7386c58f1c22SToby Isaac 73875d80c0bfSVaclav Hapla .seealso: DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM(), DMGetCoordinateSection(), DMShareLabels() 7388c58f1c22SToby Isaac @*/ 73895d80c0bfSVaclav Hapla PetscErrorCode DMCopyLabels(DM dmA, DM dmB, PetscCopyMode mode, PetscBool all) 7390c58f1c22SToby Isaac { 7391c58f1c22SToby Isaac DMLabel label, labelNew; 7392c58f1c22SToby Isaac const char *name; 7393c58f1c22SToby Isaac PetscBool flg; 73945d80c0bfSVaclav Hapla DMLabelLink link; 73955d80c0bfSVaclav Hapla PetscErrorCode ierr; 7396c58f1c22SToby Isaac 73975d80c0bfSVaclav Hapla PetscFunctionBegin; 73985d80c0bfSVaclav Hapla PetscValidHeaderSpecific(dmA, DM_CLASSID, 1); 73995d80c0bfSVaclav Hapla PetscValidHeaderSpecific(dmB, DM_CLASSID, 2); 74005d80c0bfSVaclav Hapla PetscValidLogicalCollectiveEnum(dmA, mode,3); 74015d80c0bfSVaclav Hapla PetscValidLogicalCollectiveBool(dmA, all, 4); 74025d80c0bfSVaclav Hapla if (mode==PETSC_USE_POINTER) SETERRQ(PetscObjectComm((PetscObject)dmA), PETSC_ERR_SUP, "PETSC_USE_POINTER not supported for objects"); 74035d80c0bfSVaclav Hapla if (dmA == dmB) PetscFunctionReturn(0); 74045d80c0bfSVaclav Hapla for (link=dmA->labels; link; link=link->next) { 74055d80c0bfSVaclav Hapla label=link->label; 74065d80c0bfSVaclav Hapla ierr = PetscObjectGetName((PetscObject)label, &name);CHKERRQ(ierr); 74075d80c0bfSVaclav Hapla if (!all) { 7408c58f1c22SToby Isaac ierr = PetscStrcmp(name, "depth", &flg);CHKERRQ(ierr); 7409c58f1c22SToby Isaac if (flg) continue; 74107d5acc75SStefano Zampini ierr = PetscStrcmp(name, "dim", &flg);CHKERRQ(ierr); 74117d5acc75SStefano Zampini if (flg) continue; 7412ba2698f1SMatthew G. Knepley ierr = PetscStrcmp(name, "celltype", &flg);CHKERRQ(ierr); 7413ba2698f1SMatthew G. Knepley if (flg) continue; 74145d80c0bfSVaclav Hapla } else { 74155d80c0bfSVaclav Hapla dmB->depthLabel = dmA->depthLabel; 7416ba2698f1SMatthew G. Knepley dmB->celltypeLabel = dmA->celltypeLabel; 74175d80c0bfSVaclav Hapla } 74185d80c0bfSVaclav Hapla if (mode==PETSC_COPY_VALUES) { 7419c58f1c22SToby Isaac ierr = DMLabelDuplicate(label, &labelNew);CHKERRQ(ierr); 74205d80c0bfSVaclav Hapla } else { 74215d80c0bfSVaclav Hapla labelNew = label; 74225d80c0bfSVaclav Hapla } 7423c58f1c22SToby Isaac ierr = DMAddLabel(dmB, labelNew);CHKERRQ(ierr); 74245d80c0bfSVaclav Hapla if (mode==PETSC_COPY_VALUES) {ierr = DMLabelDestroy(&labelNew);CHKERRQ(ierr);} 7425c58f1c22SToby Isaac } 7426c58f1c22SToby Isaac PetscFunctionReturn(0); 7427c58f1c22SToby Isaac } 7428a8fb8f29SToby Isaac 7429a8fb8f29SToby Isaac /*@ 7430a8fb8f29SToby Isaac DMGetCoarseDM - Get the coarse mesh from which this was obtained by refinement 7431a8fb8f29SToby Isaac 7432a8fb8f29SToby Isaac Input Parameter: 7433a8fb8f29SToby Isaac . dm - The DM object 7434a8fb8f29SToby Isaac 7435a8fb8f29SToby Isaac Output Parameter: 7436a8fb8f29SToby Isaac . cdm - The coarse DM 7437a8fb8f29SToby Isaac 7438a8fb8f29SToby Isaac Level: intermediate 7439a8fb8f29SToby Isaac 7440a8fb8f29SToby Isaac .seealso: DMSetCoarseDM() 7441a8fb8f29SToby Isaac @*/ 7442a8fb8f29SToby Isaac PetscErrorCode DMGetCoarseDM(DM dm, DM *cdm) 7443a8fb8f29SToby Isaac { 7444a8fb8f29SToby Isaac PetscFunctionBegin; 7445a8fb8f29SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7446a8fb8f29SToby Isaac PetscValidPointer(cdm, 2); 7447a8fb8f29SToby Isaac *cdm = dm->coarseMesh; 7448a8fb8f29SToby Isaac PetscFunctionReturn(0); 7449a8fb8f29SToby Isaac } 7450a8fb8f29SToby Isaac 7451a8fb8f29SToby Isaac /*@ 7452a8fb8f29SToby Isaac DMSetCoarseDM - Set the coarse mesh from which this was obtained by refinement 7453a8fb8f29SToby Isaac 7454a8fb8f29SToby Isaac Input Parameters: 7455a8fb8f29SToby Isaac + dm - The DM object 7456a8fb8f29SToby Isaac - cdm - The coarse DM 7457a8fb8f29SToby Isaac 7458a8fb8f29SToby Isaac Level: intermediate 7459a8fb8f29SToby Isaac 7460a8fb8f29SToby Isaac .seealso: DMGetCoarseDM() 7461a8fb8f29SToby Isaac @*/ 7462a8fb8f29SToby Isaac PetscErrorCode DMSetCoarseDM(DM dm, DM cdm) 7463a8fb8f29SToby Isaac { 7464a8fb8f29SToby Isaac PetscErrorCode ierr; 7465a8fb8f29SToby Isaac 7466a8fb8f29SToby Isaac PetscFunctionBegin; 7467a8fb8f29SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7468a8fb8f29SToby Isaac if (cdm) PetscValidHeaderSpecific(cdm, DM_CLASSID, 2); 7469a8fb8f29SToby Isaac ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr); 7470a8fb8f29SToby Isaac ierr = DMDestroy(&dm->coarseMesh);CHKERRQ(ierr); 7471a8fb8f29SToby Isaac dm->coarseMesh = cdm; 7472a8fb8f29SToby Isaac PetscFunctionReturn(0); 7473a8fb8f29SToby Isaac } 7474a8fb8f29SToby Isaac 747588bdff64SToby Isaac /*@ 747688bdff64SToby Isaac DMGetFineDM - Get the fine mesh from which this was obtained by refinement 747788bdff64SToby Isaac 747888bdff64SToby Isaac Input Parameter: 747988bdff64SToby Isaac . dm - The DM object 748088bdff64SToby Isaac 748188bdff64SToby Isaac Output Parameter: 748288bdff64SToby Isaac . fdm - The fine DM 748388bdff64SToby Isaac 748488bdff64SToby Isaac Level: intermediate 748588bdff64SToby Isaac 748688bdff64SToby Isaac .seealso: DMSetFineDM() 748788bdff64SToby Isaac @*/ 748888bdff64SToby Isaac PetscErrorCode DMGetFineDM(DM dm, DM *fdm) 748988bdff64SToby Isaac { 749088bdff64SToby Isaac PetscFunctionBegin; 749188bdff64SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 749288bdff64SToby Isaac PetscValidPointer(fdm, 2); 749388bdff64SToby Isaac *fdm = dm->fineMesh; 749488bdff64SToby Isaac PetscFunctionReturn(0); 749588bdff64SToby Isaac } 749688bdff64SToby Isaac 749788bdff64SToby Isaac /*@ 749888bdff64SToby Isaac DMSetFineDM - Set the fine mesh from which this was obtained by refinement 749988bdff64SToby Isaac 750088bdff64SToby Isaac Input Parameters: 750188bdff64SToby Isaac + dm - The DM object 750288bdff64SToby Isaac - fdm - The fine DM 750388bdff64SToby Isaac 750488bdff64SToby Isaac Level: intermediate 750588bdff64SToby Isaac 750688bdff64SToby Isaac .seealso: DMGetFineDM() 750788bdff64SToby Isaac @*/ 750888bdff64SToby Isaac PetscErrorCode DMSetFineDM(DM dm, DM fdm) 750988bdff64SToby Isaac { 751088bdff64SToby Isaac PetscErrorCode ierr; 751188bdff64SToby Isaac 751288bdff64SToby Isaac PetscFunctionBegin; 751388bdff64SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 751488bdff64SToby Isaac if (fdm) PetscValidHeaderSpecific(fdm, DM_CLASSID, 2); 751588bdff64SToby Isaac ierr = PetscObjectReference((PetscObject)fdm);CHKERRQ(ierr); 751688bdff64SToby Isaac ierr = DMDestroy(&dm->fineMesh);CHKERRQ(ierr); 751788bdff64SToby Isaac dm->fineMesh = fdm; 751888bdff64SToby Isaac PetscFunctionReturn(0); 751988bdff64SToby Isaac } 752088bdff64SToby Isaac 7521a6ba4734SToby Isaac /*=== DMBoundary code ===*/ 7522a6ba4734SToby Isaac 7523a6ba4734SToby Isaac PetscErrorCode DMCopyBoundary(DM dm, DM dmNew) 7524a6ba4734SToby Isaac { 7525e5e52638SMatthew G. Knepley PetscInt d; 7526a6ba4734SToby Isaac PetscErrorCode ierr; 7527a6ba4734SToby Isaac 7528a6ba4734SToby Isaac PetscFunctionBegin; 7529e5e52638SMatthew G. Knepley for (d = 0; d < dm->Nds; ++d) { 7530e5e52638SMatthew G. Knepley ierr = PetscDSCopyBoundary(dm->probs[d].ds, dmNew->probs[d].ds);CHKERRQ(ierr); 7531e5e52638SMatthew G. Knepley } 7532a6ba4734SToby Isaac PetscFunctionReturn(0); 7533a6ba4734SToby Isaac } 7534a6ba4734SToby Isaac 7535a6ba4734SToby Isaac /*@C 7536a6ba4734SToby Isaac DMAddBoundary - Add a boundary condition to the model 7537a6ba4734SToby Isaac 7538a6ba4734SToby Isaac Input Parameters: 75394c258f51SMatthew G. Knepley + dm - The DM, with a PetscDS that matches the problem being constrained 7540f971fd6bSMatthew G. Knepley . type - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann) 7541a6ba4734SToby Isaac . name - The BC name 7542a6ba4734SToby Isaac . labelname - The label defining constrained points 7543a6ba4734SToby Isaac . field - The field to constrain 7544e8ecbf3fSStefano Zampini . numcomps - The number of constrained field components (0 will constrain all fields) 7545a6ba4734SToby Isaac . comps - An array of constrained component numbers 7546a6ba4734SToby Isaac . bcFunc - A pointwise function giving boundary values 7547a6ba4734SToby Isaac . numids - The number of DMLabel ids for constrained points 7548a6ba4734SToby Isaac . ids - An array of ids for constrained points 7549a6ba4734SToby Isaac - ctx - An optional user context for bcFunc 7550a6ba4734SToby Isaac 7551a6ba4734SToby Isaac Options Database Keys: 7552a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids 7553a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components 7554a6ba4734SToby Isaac 7555a6ba4734SToby Isaac Level: developer 7556a6ba4734SToby Isaac 7557a6ba4734SToby Isaac .seealso: DMGetBoundary() 7558a6ba4734SToby Isaac @*/ 7559a30ec4eaSSatish Balay PetscErrorCode DMAddBoundary(DM dm, DMBoundaryConditionType type, const char name[], const char labelname[], PetscInt field, PetscInt numcomps, const PetscInt *comps, void (*bcFunc)(void), PetscInt numids, const PetscInt *ids, void *ctx) 7560a6ba4734SToby Isaac { 7561e5e52638SMatthew G. Knepley PetscDS ds; 7562a6ba4734SToby Isaac PetscErrorCode ierr; 7563a6ba4734SToby Isaac 7564a6ba4734SToby Isaac PetscFunctionBegin; 7565a6ba4734SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7566e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 7567e5e52638SMatthew G. Knepley ierr = PetscDSAddBoundary(ds, type,name, labelname, field, numcomps, comps, bcFunc, numids, ids, ctx);CHKERRQ(ierr); 7568a6ba4734SToby Isaac PetscFunctionReturn(0); 7569a6ba4734SToby Isaac } 7570a6ba4734SToby Isaac 7571a6ba4734SToby Isaac /*@ 7572a6ba4734SToby Isaac DMGetNumBoundary - Get the number of registered BC 7573a6ba4734SToby Isaac 7574a6ba4734SToby Isaac Input Parameters: 7575a6ba4734SToby Isaac . dm - The mesh object 7576a6ba4734SToby Isaac 7577a6ba4734SToby Isaac Output Parameters: 7578a6ba4734SToby Isaac . numBd - The number of BC 7579a6ba4734SToby Isaac 7580a6ba4734SToby Isaac Level: intermediate 7581a6ba4734SToby Isaac 7582a6ba4734SToby Isaac .seealso: DMAddBoundary(), DMGetBoundary() 7583a6ba4734SToby Isaac @*/ 7584a6ba4734SToby Isaac PetscErrorCode DMGetNumBoundary(DM dm, PetscInt *numBd) 7585a6ba4734SToby Isaac { 7586e5e52638SMatthew G. Knepley PetscDS ds; 758758ebd649SToby Isaac PetscErrorCode ierr; 7588a6ba4734SToby Isaac 7589a6ba4734SToby Isaac PetscFunctionBegin; 7590a6ba4734SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7591e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 7592e5e52638SMatthew G. Knepley ierr = PetscDSGetNumBoundary(ds, numBd);CHKERRQ(ierr); 7593a6ba4734SToby Isaac PetscFunctionReturn(0); 7594a6ba4734SToby Isaac } 7595a6ba4734SToby Isaac 7596a6ba4734SToby Isaac /*@C 75971c531cf8SMatthew G. Knepley DMGetBoundary - Get a model boundary condition 7598a6ba4734SToby Isaac 7599a6ba4734SToby Isaac Input Parameters: 7600a6ba4734SToby Isaac + dm - The mesh object 7601a6ba4734SToby Isaac - bd - The BC number 7602a6ba4734SToby Isaac 7603a6ba4734SToby Isaac Output Parameters: 7604f971fd6bSMatthew G. Knepley + type - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann) 7605a6ba4734SToby Isaac . name - The BC name 7606a6ba4734SToby Isaac . labelname - The label defining constrained points 7607a6ba4734SToby Isaac . field - The field to constrain 7608a6ba4734SToby Isaac . numcomps - The number of constrained field components 7609a6ba4734SToby Isaac . comps - An array of constrained component numbers 7610a6ba4734SToby Isaac . bcFunc - A pointwise function giving boundary values 7611a6ba4734SToby Isaac . numids - The number of DMLabel ids for constrained points 7612a6ba4734SToby Isaac . ids - An array of ids for constrained points 7613a6ba4734SToby Isaac - ctx - An optional user context for bcFunc 7614a6ba4734SToby Isaac 7615a6ba4734SToby Isaac Options Database Keys: 7616a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids 7617a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components 7618a6ba4734SToby Isaac 7619a6ba4734SToby Isaac Level: developer 7620a6ba4734SToby Isaac 7621a6ba4734SToby Isaac .seealso: DMAddBoundary() 7622a6ba4734SToby Isaac @*/ 7623a30ec4eaSSatish Balay PetscErrorCode DMGetBoundary(DM dm, PetscInt bd, DMBoundaryConditionType *type, const char **name, const char **labelname, PetscInt *field, PetscInt *numcomps, const PetscInt **comps, void (**func)(void), PetscInt *numids, const PetscInt **ids, void **ctx) 7624a6ba4734SToby Isaac { 7625e5e52638SMatthew G. Knepley PetscDS ds; 762658ebd649SToby Isaac PetscErrorCode ierr; 7627a6ba4734SToby Isaac 7628a6ba4734SToby Isaac PetscFunctionBegin; 7629a6ba4734SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7630e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 7631e5e52638SMatthew G. Knepley ierr = PetscDSGetBoundary(ds, bd, type, name, labelname, field, numcomps, comps, func, numids, ids, ctx);CHKERRQ(ierr); 7632a6ba4734SToby Isaac PetscFunctionReturn(0); 7633a6ba4734SToby Isaac } 7634a6ba4734SToby Isaac 7635e6f8dbb6SToby Isaac static PetscErrorCode DMPopulateBoundary(DM dm) 7636e6f8dbb6SToby Isaac { 7637e5e52638SMatthew G. Knepley PetscDS ds; 7638dff059c6SToby Isaac DMBoundary *lastnext; 7639e6f8dbb6SToby Isaac DSBoundary dsbound; 7640e6f8dbb6SToby Isaac PetscErrorCode ierr; 7641e6f8dbb6SToby Isaac 7642e6f8dbb6SToby Isaac PetscFunctionBegin; 7643e5e52638SMatthew G. Knepley ierr = DMGetDS(dm, &ds);CHKERRQ(ierr); 7644e5e52638SMatthew G. Knepley dsbound = ds->boundary; 764547a1f5adSToby Isaac if (dm->boundary) { 764647a1f5adSToby Isaac DMBoundary next = dm->boundary; 764747a1f5adSToby Isaac 764847a1f5adSToby Isaac /* quick check to see if the PetscDS has changed */ 764947a1f5adSToby Isaac if (next->dsboundary == dsbound) PetscFunctionReturn(0); 765047a1f5adSToby Isaac /* the PetscDS has changed: tear down and rebuild */ 765147a1f5adSToby Isaac while (next) { 765247a1f5adSToby Isaac DMBoundary b = next; 765347a1f5adSToby Isaac 765447a1f5adSToby Isaac next = b->next; 765547a1f5adSToby Isaac ierr = PetscFree(b);CHKERRQ(ierr); 7656a6ba4734SToby Isaac } 765747a1f5adSToby Isaac dm->boundary = NULL; 7658a6ba4734SToby Isaac } 765947a1f5adSToby Isaac 7660dff059c6SToby Isaac lastnext = &(dm->boundary); 7661e6f8dbb6SToby Isaac while (dsbound) { 7662e6f8dbb6SToby Isaac DMBoundary dmbound; 7663e6f8dbb6SToby Isaac 7664e6f8dbb6SToby Isaac ierr = PetscNew(&dmbound);CHKERRQ(ierr); 7665e6f8dbb6SToby Isaac dmbound->dsboundary = dsbound; 7666e6f8dbb6SToby Isaac ierr = DMGetLabel(dm, dsbound->labelname, &(dmbound->label));CHKERRQ(ierr); 7667994fe344SLisandro Dalcin if (!dmbound->label) {ierr = PetscInfo2(dm, "DSBoundary %s wants label %s, which is not in this dm.\n",dsbound->name,dsbound->labelname);CHKERRQ(ierr);} 766847a1f5adSToby Isaac /* push on the back instead of the front so that it is in the same order as in the PetscDS */ 7669dff059c6SToby Isaac *lastnext = dmbound; 7670dff059c6SToby Isaac lastnext = &(dmbound->next); 7671dff059c6SToby Isaac dsbound = dsbound->next; 7672a6ba4734SToby Isaac } 7673a6ba4734SToby Isaac PetscFunctionReturn(0); 7674a6ba4734SToby Isaac } 7675a6ba4734SToby Isaac 7676a6ba4734SToby Isaac PetscErrorCode DMIsBoundaryPoint(DM dm, PetscInt point, PetscBool *isBd) 7677a6ba4734SToby Isaac { 7678b95f2879SToby Isaac DMBoundary b; 7679a6ba4734SToby Isaac PetscErrorCode ierr; 7680a6ba4734SToby Isaac 7681a6ba4734SToby Isaac PetscFunctionBegin; 7682a6ba4734SToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 7683534a8f05SLisandro Dalcin PetscValidBoolPointer(isBd, 3); 7684a6ba4734SToby Isaac *isBd = PETSC_FALSE; 7685e6f8dbb6SToby Isaac ierr = DMPopulateBoundary(dm);CHKERRQ(ierr); 7686b95f2879SToby Isaac b = dm->boundary; 7687a6ba4734SToby Isaac while (b && !(*isBd)) { 7688e6f8dbb6SToby Isaac DMLabel label = b->label; 7689e6f8dbb6SToby Isaac DSBoundary dsb = b->dsboundary; 76903424c85cSToby Isaac 76913424c85cSToby Isaac if (label) { 7692a6ba4734SToby Isaac PetscInt i; 7693a6ba4734SToby Isaac 7694e6f8dbb6SToby Isaac for (i = 0; i < dsb->numids && !(*isBd); ++i) { 7695e6f8dbb6SToby Isaac ierr = DMLabelStratumHasPoint(label, dsb->ids[i], point, isBd);CHKERRQ(ierr); 7696a6ba4734SToby Isaac } 7697a6ba4734SToby Isaac } 7698a6ba4734SToby Isaac b = b->next; 7699a6ba4734SToby Isaac } 7700a6ba4734SToby Isaac PetscFunctionReturn(0); 7701a6ba4734SToby Isaac } 77024d6f44ffSToby Isaac 77034d6f44ffSToby Isaac /*@C 7704a6e0b375SMatthew G. Knepley DMProjectFunction - This projects the given function into the function space provided, putting the coefficients in a global vector. 7705a6e0b375SMatthew G. Knepley 7706a6e0b375SMatthew G. Knepley Collective on DM 77074d6f44ffSToby Isaac 77084d6f44ffSToby Isaac Input Parameters: 77094d6f44ffSToby Isaac + dm - The DM 77100709b2feSToby Isaac . time - The time 77114d6f44ffSToby Isaac . funcs - The coordinate functions to evaluate, one per field 77124d6f44ffSToby Isaac . ctxs - Optional array of contexts to pass to each coordinate function. ctxs itself may be null. 77134d6f44ffSToby Isaac - mode - The insertion mode for values 77144d6f44ffSToby Isaac 77154d6f44ffSToby Isaac Output Parameter: 77164d6f44ffSToby Isaac . X - vector 77174d6f44ffSToby Isaac 77184d6f44ffSToby Isaac Calling sequence of func: 77190709b2feSToby Isaac $ func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx); 77204d6f44ffSToby Isaac 77214d6f44ffSToby Isaac + dim - The spatial dimension 77224d6f44ffSToby Isaac . x - The coordinates 77234d6f44ffSToby Isaac . Nf - The number of fields 77244d6f44ffSToby Isaac . u - The output field values 77254d6f44ffSToby Isaac - ctx - optional user-defined function context 77264d6f44ffSToby Isaac 77274d6f44ffSToby Isaac Level: developer 77284d6f44ffSToby Isaac 7729a6e0b375SMatthew G. Knepley .seealso: DMProjectFunctionLocal(), DMProjectFunctionLabel(), DMComputeL2Diff() 77304d6f44ffSToby Isaac @*/ 77310709b2feSToby Isaac PetscErrorCode DMProjectFunction(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec X) 77324d6f44ffSToby Isaac { 77334d6f44ffSToby Isaac Vec localX; 77344d6f44ffSToby Isaac PetscErrorCode ierr; 77354d6f44ffSToby Isaac 77364d6f44ffSToby Isaac PetscFunctionBegin; 77374d6f44ffSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 77384d6f44ffSToby Isaac ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr); 77390709b2feSToby Isaac ierr = DMProjectFunctionLocal(dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr); 77404d6f44ffSToby Isaac ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr); 77414d6f44ffSToby Isaac ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr); 77424d6f44ffSToby Isaac ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr); 77434d6f44ffSToby Isaac PetscFunctionReturn(0); 77444d6f44ffSToby Isaac } 77454d6f44ffSToby Isaac 7746a6e0b375SMatthew G. Knepley /*@C 7747a6e0b375SMatthew G. Knepley DMProjectFunctionLocal - This projects the given function into the function space provided, putting the coefficients in a local vector. 7748a6e0b375SMatthew G. Knepley 7749a6e0b375SMatthew G. Knepley Not collective 7750a6e0b375SMatthew G. Knepley 7751a6e0b375SMatthew G. Knepley Input Parameters: 7752a6e0b375SMatthew G. Knepley + dm - The DM 7753a6e0b375SMatthew G. Knepley . time - The time 7754a6e0b375SMatthew G. Knepley . funcs - The coordinate functions to evaluate, one per field 7755a6e0b375SMatthew G. Knepley . ctxs - Optional array of contexts to pass to each coordinate function. ctxs itself may be null. 7756a6e0b375SMatthew G. Knepley - mode - The insertion mode for values 7757a6e0b375SMatthew G. Knepley 7758a6e0b375SMatthew G. Knepley Output Parameter: 7759a6e0b375SMatthew G. Knepley . localX - vector 7760a6e0b375SMatthew G. Knepley 7761a6e0b375SMatthew G. Knepley Calling sequence of func: 7762a6e0b375SMatthew G. Knepley $ func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx); 7763a6e0b375SMatthew G. Knepley 7764a6e0b375SMatthew G. Knepley + dim - The spatial dimension 7765a6e0b375SMatthew G. Knepley . x - The coordinates 7766a6e0b375SMatthew G. Knepley . Nf - The number of fields 7767a6e0b375SMatthew G. Knepley . u - The output field values 7768a6e0b375SMatthew G. Knepley - ctx - optional user-defined function context 7769a6e0b375SMatthew G. Knepley 7770a6e0b375SMatthew G. Knepley Level: developer 7771a6e0b375SMatthew G. Knepley 7772a6e0b375SMatthew G. Knepley .seealso: DMProjectFunction(), DMProjectFunctionLabel(), DMComputeL2Diff() 7773a6e0b375SMatthew G. Knepley @*/ 77740709b2feSToby Isaac PetscErrorCode DMProjectFunctionLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX) 77754d6f44ffSToby Isaac { 77764d6f44ffSToby Isaac PetscErrorCode ierr; 77774d6f44ffSToby Isaac 77784d6f44ffSToby Isaac PetscFunctionBegin; 77794d6f44ffSToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 77804d6f44ffSToby Isaac PetscValidHeaderSpecific(localX,VEC_CLASSID,5); 77810918c465SMatthew G. Knepley if (!dm->ops->projectfunctionlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLocal",((PetscObject)dm)->type_name); 77820709b2feSToby Isaac ierr = (dm->ops->projectfunctionlocal) (dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr); 77834d6f44ffSToby Isaac PetscFunctionReturn(0); 77844d6f44ffSToby Isaac } 77854d6f44ffSToby Isaac 7786a6e0b375SMatthew G. Knepley /*@C 7787a6e0b375SMatthew G. Knepley DMProjectFunctionLabel - This projects the given function into the function space provided, putting the coefficients in a global vector, setting values only for points in the given label. 7788a6e0b375SMatthew G. Knepley 7789a6e0b375SMatthew G. Knepley Collective on DM 7790a6e0b375SMatthew G. Knepley 7791a6e0b375SMatthew G. Knepley Input Parameters: 7792a6e0b375SMatthew G. Knepley + dm - The DM 7793a6e0b375SMatthew G. Knepley . time - The time 7794a6e0b375SMatthew G. Knepley . label - The DMLabel selecting the portion of the mesh for projection 7795a6e0b375SMatthew G. Knepley . funcs - The coordinate functions to evaluate, one per field 7796a6e0b375SMatthew G. Knepley . ctxs - Optional array of contexts to pass to each coordinate function. ctxs itself may be null. 7797a6e0b375SMatthew G. Knepley - mode - The insertion mode for values 7798a6e0b375SMatthew G. Knepley 7799a6e0b375SMatthew G. Knepley Output Parameter: 7800a6e0b375SMatthew G. Knepley . X - vector 7801a6e0b375SMatthew G. Knepley 7802a6e0b375SMatthew G. Knepley Calling sequence of func: 7803a6e0b375SMatthew G. Knepley $ func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx); 7804a6e0b375SMatthew G. Knepley 7805a6e0b375SMatthew G. Knepley + dim - The spatial dimension 7806a6e0b375SMatthew G. Knepley . x - The coordinates 7807a6e0b375SMatthew G. Knepley . Nf - The number of fields 7808a6e0b375SMatthew G. Knepley . u - The output field values 7809a6e0b375SMatthew G. Knepley - ctx - optional user-defined function context 7810a6e0b375SMatthew G. Knepley 7811a6e0b375SMatthew G. Knepley Level: developer 7812a6e0b375SMatthew G. Knepley 7813a6e0b375SMatthew G. Knepley .seealso: DMProjectFunction(), DMProjectFunctionLocal(), DMProjectFunctionLabelLocal(), DMComputeL2Diff() 7814a6e0b375SMatthew G. Knepley @*/ 78152c53366bSMatthew G. Knepley PetscErrorCode DMProjectFunctionLabel(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec X) 78162c53366bSMatthew G. Knepley { 78172c53366bSMatthew G. Knepley Vec localX; 78182c53366bSMatthew G. Knepley PetscErrorCode ierr; 78192c53366bSMatthew G. Knepley 78202c53366bSMatthew G. Knepley PetscFunctionBegin; 78212c53366bSMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 78222c53366bSMatthew G. Knepley ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr); 78232c53366bSMatthew G. Knepley ierr = DMProjectFunctionLabelLocal(dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr); 78242c53366bSMatthew G. Knepley ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr); 78252c53366bSMatthew G. Knepley ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr); 78262c53366bSMatthew G. Knepley ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr); 78272c53366bSMatthew G. Knepley PetscFunctionReturn(0); 78282c53366bSMatthew G. Knepley } 78292c53366bSMatthew G. Knepley 7830a6e0b375SMatthew G. Knepley /*@C 7831a6e0b375SMatthew G. Knepley DMProjectFunctionLabelLocal - This projects the given function into the function space provided, putting the coefficients in a local vector, setting values only for points in the given label. 7832a6e0b375SMatthew G. Knepley 7833a6e0b375SMatthew G. Knepley Not collective 7834a6e0b375SMatthew G. Knepley 7835a6e0b375SMatthew G. Knepley Input Parameters: 7836a6e0b375SMatthew G. Knepley + dm - The DM 7837a6e0b375SMatthew G. Knepley . time - The time 7838a6e0b375SMatthew G. Knepley . label - The DMLabel selecting the portion of the mesh for projection 7839a6e0b375SMatthew G. Knepley . funcs - The coordinate functions to evaluate, one per field 7840a6e0b375SMatthew G. Knepley . ctxs - Optional array of contexts to pass to each coordinate function. ctxs itself may be null. 7841a6e0b375SMatthew G. Knepley - mode - The insertion mode for values 7842a6e0b375SMatthew G. Knepley 7843a6e0b375SMatthew G. Knepley Output Parameter: 7844a6e0b375SMatthew G. Knepley . localX - vector 7845a6e0b375SMatthew G. Knepley 7846a6e0b375SMatthew G. Knepley Calling sequence of func: 7847a6e0b375SMatthew G. Knepley $ func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx); 7848a6e0b375SMatthew G. Knepley 7849a6e0b375SMatthew G. Knepley + dim - The spatial dimension 7850a6e0b375SMatthew G. Knepley . x - The coordinates 7851a6e0b375SMatthew G. Knepley . Nf - The number of fields 7852a6e0b375SMatthew G. Knepley . u - The output field values 7853a6e0b375SMatthew G. Knepley - ctx - optional user-defined function context 7854a6e0b375SMatthew G. Knepley 7855a6e0b375SMatthew G. Knepley Level: developer 7856a6e0b375SMatthew G. Knepley 7857a6e0b375SMatthew G. Knepley .seealso: DMProjectFunction(), DMProjectFunctionLocal(), DMProjectFunctionLabel(), DMComputeL2Diff() 7858a6e0b375SMatthew G. Knepley @*/ 78591c531cf8SMatthew G. Knepley PetscErrorCode DMProjectFunctionLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX) 78604d6f44ffSToby Isaac { 78614d6f44ffSToby Isaac PetscErrorCode ierr; 78624d6f44ffSToby Isaac 78634d6f44ffSToby Isaac PetscFunctionBegin; 78644d6f44ffSToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 78654d6f44ffSToby Isaac PetscValidHeaderSpecific(localX,VEC_CLASSID,5); 78660918c465SMatthew G. Knepley if (!dm->ops->projectfunctionlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLabelLocal",((PetscObject)dm)->type_name); 78671c531cf8SMatthew G. Knepley ierr = (dm->ops->projectfunctionlabellocal) (dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr); 78684d6f44ffSToby Isaac PetscFunctionReturn(0); 78694d6f44ffSToby Isaac } 78702716604bSToby Isaac 7871a6e0b375SMatthew G. Knepley /*@C 7872a6e0b375SMatthew G. Knepley DMProjectFieldLocal - This projects the given function of the input fields into the function space provided, putting the coefficients in a local vector. 7873a6e0b375SMatthew G. Knepley 7874a6e0b375SMatthew G. Knepley Not collective 7875a6e0b375SMatthew G. Knepley 7876a6e0b375SMatthew G. Knepley Input Parameters: 7877a6e0b375SMatthew G. Knepley + dm - The DM 7878a6e0b375SMatthew G. Knepley . time - The time 7879a6e0b375SMatthew G. Knepley . localU - The input field vector 7880a6e0b375SMatthew G. Knepley . funcs - The functions to evaluate, one per field 7881a6e0b375SMatthew G. Knepley - mode - The insertion mode for values 7882a6e0b375SMatthew G. Knepley 7883a6e0b375SMatthew G. Knepley Output Parameter: 7884a6e0b375SMatthew G. Knepley . localX - The output vector 7885a6e0b375SMatthew G. Knepley 7886a6e0b375SMatthew G. Knepley Calling sequence of func: 7887a6e0b375SMatthew G. Knepley $ func(PetscInt dim, PetscInt Nf, PetscInt NfAux, 7888a6e0b375SMatthew G. Knepley $ const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], 7889a6e0b375SMatthew G. Knepley $ const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], 7890a6e0b375SMatthew G. Knepley $ PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]); 7891a6e0b375SMatthew G. Knepley 7892a6e0b375SMatthew G. Knepley + dim - The spatial dimension 7893a6e0b375SMatthew G. Knepley . Nf - The number of input fields 7894a6e0b375SMatthew G. Knepley . NfAux - The number of input auxiliary fields 7895a6e0b375SMatthew G. Knepley . uOff - The offset of each field in u[] 7896a6e0b375SMatthew G. Knepley . uOff_x - The offset of each field in u_x[] 7897a6e0b375SMatthew G. Knepley . u - The field values at this point in space 7898a6e0b375SMatthew G. Knepley . u_t - The field time derivative at this point in space (or NULL) 7899a6e0b375SMatthew G. Knepley . u_x - The field derivatives at this point in space 7900a6e0b375SMatthew G. Knepley . aOff - The offset of each auxiliary field in u[] 7901a6e0b375SMatthew G. Knepley . aOff_x - The offset of each auxiliary field in u_x[] 7902a6e0b375SMatthew G. Knepley . a - The auxiliary field values at this point in space 7903a6e0b375SMatthew G. Knepley . a_t - The auxiliary field time derivative at this point in space (or NULL) 7904a6e0b375SMatthew G. Knepley . a_x - The auxiliary field derivatives at this point in space 7905a6e0b375SMatthew G. Knepley . t - The current time 7906a6e0b375SMatthew G. Knepley . x - The coordinates of this point 7907a6e0b375SMatthew G. Knepley . numConstants - The number of constants 7908a6e0b375SMatthew G. Knepley . constants - The value of each constant 7909a6e0b375SMatthew G. Knepley - f - The value of the function at this point in space 7910a6e0b375SMatthew G. Knepley 7911a6e0b375SMatthew G. Knepley Note: There are three different DMs that potentially interact in this function. The output DM, dm, specifies the layout of the values calculates by funcs. 7912a6e0b375SMatthew G. Knepley The input DM, attached to U, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or 7913a6e0b375SMatthew G. Knepley a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary DM, attached to the 7914a6e0b375SMatthew G. Knepley auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations. 7915a6e0b375SMatthew G. Knepley 7916a6e0b375SMatthew G. Knepley Level: intermediate 7917a6e0b375SMatthew G. Knepley 7918a6e0b375SMatthew G. Knepley .seealso: DMProjectField(), DMProjectFieldLabelLocal(), DMProjectFunction(), DMComputeL2Diff() 7919a6e0b375SMatthew G. Knepley @*/ 79208c6c5593SMatthew G. Knepley PetscErrorCode DMProjectFieldLocal(DM dm, PetscReal time, Vec localU, 79218c6c5593SMatthew G. Knepley void (**funcs)(PetscInt, PetscInt, PetscInt, 79228c6c5593SMatthew G. Knepley const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[], 79238c6c5593SMatthew G. Knepley const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[], 7924191494d9SMatthew G. Knepley PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]), 79258c6c5593SMatthew G. Knepley InsertMode mode, Vec localX) 79268c6c5593SMatthew G. Knepley { 79278c6c5593SMatthew G. Knepley PetscErrorCode ierr; 79288c6c5593SMatthew G. Knepley 79298c6c5593SMatthew G. Knepley PetscFunctionBegin; 79308c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 79318c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(localU,VEC_CLASSID,3); 79328c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(localX,VEC_CLASSID,6); 79330918c465SMatthew G. Knepley if (!dm->ops->projectfieldlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name); 79348c6c5593SMatthew G. Knepley ierr = (dm->ops->projectfieldlocal) (dm, time, localU, funcs, mode, localX);CHKERRQ(ierr); 79358c6c5593SMatthew G. Knepley PetscFunctionReturn(0); 79368c6c5593SMatthew G. Knepley } 79378c6c5593SMatthew G. Knepley 7938a6e0b375SMatthew G. Knepley /*@C 7939a6e0b375SMatthew G. Knepley DMProjectFieldLabelLocal - This projects the given function of the input fields into the function space provided, putting the coefficients in a local vector, calculating only over the portion of the domain specified by the label. 7940a6e0b375SMatthew G. Knepley 7941a6e0b375SMatthew G. Knepley Not collective 7942a6e0b375SMatthew G. Knepley 7943a6e0b375SMatthew G. Knepley Input Parameters: 7944a6e0b375SMatthew G. Knepley + dm - The DM 7945a6e0b375SMatthew G. Knepley . time - The time 7946a6e0b375SMatthew G. Knepley . label - The DMLabel marking the portion of the domain to output 7947a6e0b375SMatthew G. Knepley . numIds - The number of label ids to use 7948a6e0b375SMatthew G. Knepley . ids - The label ids to use for marking 7949a6e0b375SMatthew G. Knepley . Nc - The number of components to set in the output, or PETSC_DETERMINE for all components 7950a6e0b375SMatthew G. Knepley . comps - The components to set in the output, or NULL for all components 7951a6e0b375SMatthew G. Knepley . localU - The input field vector 7952a6e0b375SMatthew G. Knepley . funcs - The functions to evaluate, one per field 7953a6e0b375SMatthew G. Knepley - mode - The insertion mode for values 7954a6e0b375SMatthew G. Knepley 7955a6e0b375SMatthew G. Knepley Output Parameter: 7956a6e0b375SMatthew G. Knepley . localX - The output vector 7957a6e0b375SMatthew G. Knepley 7958a6e0b375SMatthew G. Knepley Calling sequence of func: 7959a6e0b375SMatthew G. Knepley $ func(PetscInt dim, PetscInt Nf, PetscInt NfAux, 7960a6e0b375SMatthew G. Knepley $ const PetscInt uOff[], const PetscInt uOff_x[], const PetscScalar u[], const PetscScalar u_t[], const PetscScalar u_x[], 7961a6e0b375SMatthew G. Knepley $ const PetscInt aOff[], const PetscInt aOff_x[], const PetscScalar a[], const PetscScalar a_t[], const PetscScalar a_x[], 7962a6e0b375SMatthew G. Knepley $ PetscReal t, const PetscReal x[], PetscInt numConstants, const PetscScalar constants[], PetscScalar f[]); 7963a6e0b375SMatthew G. Knepley 7964a6e0b375SMatthew G. Knepley + dim - The spatial dimension 7965a6e0b375SMatthew G. Knepley . Nf - The number of input fields 7966a6e0b375SMatthew G. Knepley . NfAux - The number of input auxiliary fields 7967a6e0b375SMatthew G. Knepley . uOff - The offset of each field in u[] 7968a6e0b375SMatthew G. Knepley . uOff_x - The offset of each field in u_x[] 7969a6e0b375SMatthew G. Knepley . u - The field values at this point in space 7970a6e0b375SMatthew G. Knepley . u_t - The field time derivative at this point in space (or NULL) 7971a6e0b375SMatthew G. Knepley . u_x - The field derivatives at this point in space 7972a6e0b375SMatthew G. Knepley . aOff - The offset of each auxiliary field in u[] 7973a6e0b375SMatthew G. Knepley . aOff_x - The offset of each auxiliary field in u_x[] 7974a6e0b375SMatthew G. Knepley . a - The auxiliary field values at this point in space 7975a6e0b375SMatthew G. Knepley . a_t - The auxiliary field time derivative at this point in space (or NULL) 7976a6e0b375SMatthew G. Knepley . a_x - The auxiliary field derivatives at this point in space 7977a6e0b375SMatthew G. Knepley . t - The current time 7978a6e0b375SMatthew G. Knepley . x - The coordinates of this point 7979a6e0b375SMatthew G. Knepley . numConstants - The number of constants 7980a6e0b375SMatthew G. Knepley . constants - The value of each constant 7981a6e0b375SMatthew G. Knepley - f - The value of the function at this point in space 7982a6e0b375SMatthew G. Knepley 7983a6e0b375SMatthew G. Knepley Note: There are three different DMs that potentially interact in this function. The output DM, dm, specifies the layout of the values calculates by funcs. 7984a6e0b375SMatthew G. Knepley The input DM, attached to U, may be different. For example, you can input the solution over the full domain, but output over a piece of the boundary, or 7985a6e0b375SMatthew G. Knepley a subdomain. You can also output a different number of fields than the input, with different discretizations. Last the auxiliary DM, attached to the 7986a6e0b375SMatthew G. Knepley auxiliary field vector, which is attached to dm, can also be different. It can have a different topology, number of fields, and discretizations. 7987a6e0b375SMatthew G. Knepley 7988a6e0b375SMatthew G. Knepley Level: intermediate 7989a6e0b375SMatthew G. Knepley 7990a6e0b375SMatthew G. Knepley .seealso: DMProjectField(), DMProjectFieldLabelLocal(), DMProjectFunction(), DMComputeL2Diff() 7991a6e0b375SMatthew G. Knepley @*/ 79921c531cf8SMatthew G. Knepley PetscErrorCode DMProjectFieldLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec localU, 79938c6c5593SMatthew G. Knepley void (**funcs)(PetscInt, PetscInt, PetscInt, 79948c6c5593SMatthew G. Knepley const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[], 79958c6c5593SMatthew G. Knepley const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[], 7996191494d9SMatthew G. Knepley PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]), 79978c6c5593SMatthew G. Knepley InsertMode mode, Vec localX) 79988c6c5593SMatthew G. Knepley { 79998c6c5593SMatthew G. Knepley PetscErrorCode ierr; 80008c6c5593SMatthew G. Knepley 80018c6c5593SMatthew G. Knepley PetscFunctionBegin; 80028c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(dm,DM_CLASSID,1); 80038c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(localU,VEC_CLASSID,6); 80048c6c5593SMatthew G. Knepley PetscValidHeaderSpecific(localX,VEC_CLASSID,9); 80050918c465SMatthew G. Knepley if (!dm->ops->projectfieldlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name); 80061c531cf8SMatthew G. Knepley ierr = (dm->ops->projectfieldlabellocal)(dm, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX);CHKERRQ(ierr); 80078c6c5593SMatthew G. Knepley PetscFunctionReturn(0); 80088c6c5593SMatthew G. Knepley } 80098c6c5593SMatthew G. Knepley 80102716604bSToby Isaac /*@C 80112716604bSToby Isaac DMComputeL2Diff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h. 80122716604bSToby Isaac 80132716604bSToby Isaac Input Parameters: 80142716604bSToby Isaac + dm - The DM 80150709b2feSToby Isaac . time - The time 80162716604bSToby Isaac . funcs - The functions to evaluate for each field component 80172716604bSToby Isaac . ctxs - Optional array of contexts to pass to each function, or NULL. 8018574a98acSMatthew G. Knepley - X - The coefficient vector u_h, a global vector 80192716604bSToby Isaac 80202716604bSToby Isaac Output Parameter: 80212716604bSToby Isaac . diff - The diff ||u - u_h||_2 80222716604bSToby Isaac 80232716604bSToby Isaac Level: developer 80242716604bSToby Isaac 80251189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff() 80262716604bSToby Isaac @*/ 80270709b2feSToby Isaac PetscErrorCode DMComputeL2Diff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff) 80282716604bSToby Isaac { 80292716604bSToby Isaac PetscErrorCode ierr; 80302716604bSToby Isaac 80312716604bSToby Isaac PetscFunctionBegin; 80322716604bSToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 8033b698f381SToby Isaac PetscValidHeaderSpecific(X,VEC_CLASSID,5); 80340918c465SMatthew G. Knepley if (!dm->ops->computel2diff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2Diff",((PetscObject)dm)->type_name); 80350709b2feSToby Isaac ierr = (dm->ops->computel2diff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr); 80362716604bSToby Isaac PetscFunctionReturn(0); 80372716604bSToby Isaac } 8038b698f381SToby Isaac 8039b698f381SToby Isaac /*@C 8040b698f381SToby Isaac DMComputeL2GradientDiff - This function computes the L_2 difference between the gradient of a function u and an FEM interpolant solution grad u_h. 8041b698f381SToby Isaac 8042d083f849SBarry Smith Collective on dm 8043d083f849SBarry Smith 8044b698f381SToby Isaac Input Parameters: 8045b698f381SToby Isaac + dm - The DM 8046b698f381SToby Isaac , time - The time 8047b698f381SToby Isaac . funcs - The gradient functions to evaluate for each field component 8048b698f381SToby Isaac . ctxs - Optional array of contexts to pass to each function, or NULL. 8049574a98acSMatthew G. Knepley . X - The coefficient vector u_h, a global vector 8050b698f381SToby Isaac - n - The vector to project along 8051b698f381SToby Isaac 8052b698f381SToby Isaac Output Parameter: 8053b698f381SToby Isaac . diff - The diff ||(grad u - grad u_h) . n||_2 8054b698f381SToby Isaac 8055b698f381SToby Isaac Level: developer 8056b698f381SToby Isaac 8057b698f381SToby Isaac .seealso: DMProjectFunction(), DMComputeL2Diff() 8058b698f381SToby Isaac @*/ 8059b698f381SToby Isaac PetscErrorCode DMComputeL2GradientDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], const PetscReal[], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, const PetscReal n[], PetscReal *diff) 8060b698f381SToby Isaac { 8061b698f381SToby Isaac PetscErrorCode ierr; 8062b698f381SToby Isaac 8063b698f381SToby Isaac PetscFunctionBegin; 8064b698f381SToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 8065b698f381SToby Isaac PetscValidHeaderSpecific(X,VEC_CLASSID,5); 8066b698f381SToby Isaac if (!dm->ops->computel2gradientdiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2GradientDiff",((PetscObject)dm)->type_name); 8067b698f381SToby Isaac ierr = (dm->ops->computel2gradientdiff)(dm,time,funcs,ctxs,X,n,diff);CHKERRQ(ierr); 8068b698f381SToby Isaac PetscFunctionReturn(0); 8069b698f381SToby Isaac } 8070b698f381SToby Isaac 80712a16baeaSToby Isaac /*@C 80722a16baeaSToby Isaac DMComputeL2FieldDiff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h, separated into field components. 80732a16baeaSToby Isaac 8074d083f849SBarry Smith Collective on dm 8075d083f849SBarry Smith 80762a16baeaSToby Isaac Input Parameters: 80772a16baeaSToby Isaac + dm - The DM 80782a16baeaSToby Isaac . time - The time 80792a16baeaSToby Isaac . funcs - The functions to evaluate for each field component 80802a16baeaSToby Isaac . ctxs - Optional array of contexts to pass to each function, or NULL. 8081574a98acSMatthew G. Knepley - X - The coefficient vector u_h, a global vector 80822a16baeaSToby Isaac 80832a16baeaSToby Isaac Output Parameter: 80842a16baeaSToby Isaac . diff - The array of differences, ||u^f - u^f_h||_2 80852a16baeaSToby Isaac 80862a16baeaSToby Isaac Level: developer 80872a16baeaSToby Isaac 80881189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff() 80892a16baeaSToby Isaac @*/ 80901189c1efSToby Isaac PetscErrorCode DMComputeL2FieldDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal diff[]) 80912a16baeaSToby Isaac { 80922a16baeaSToby Isaac PetscErrorCode ierr; 80932a16baeaSToby Isaac 80942a16baeaSToby Isaac PetscFunctionBegin; 80952a16baeaSToby Isaac PetscValidHeaderSpecific(dm,DM_CLASSID,1); 80962a16baeaSToby Isaac PetscValidHeaderSpecific(X,VEC_CLASSID,5); 80970918c465SMatthew G. Knepley if (!dm->ops->computel2fielddiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2FieldDiff",((PetscObject)dm)->type_name); 80982a16baeaSToby Isaac ierr = (dm->ops->computel2fielddiff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr); 80992a16baeaSToby Isaac PetscFunctionReturn(0); 81002a16baeaSToby Isaac } 81012a16baeaSToby Isaac 8102df0b854cSToby Isaac /*@C 8103df0b854cSToby Isaac DMAdaptLabel - Adapt a dm based on a label with values interpreted as coarsening and refining flags. Specific implementations of DM maybe have 8104cd3c525cSToby Isaac specialized flags, but all implementations should accept flag values DM_ADAPT_DETERMINE, DM_ADAPT_KEEP, DM_ADAPT_REFINE, and DM_ADAPT_COARSEN. 8105df0b854cSToby Isaac 8106df0b854cSToby Isaac Collective on dm 8107df0b854cSToby Isaac 8108df0b854cSToby Isaac Input parameters: 8109df0b854cSToby Isaac + dm - the pre-adaptation DM object 8110a1b0c543SToby Isaac - label - label with the flags 8111df0b854cSToby Isaac 8112df0b854cSToby Isaac Output parameters: 81130d1cd5e0SMatthew G. Knepley . dmAdapt - the adapted DM object: may be NULL if an adapted DM could not be produced. 8114df0b854cSToby Isaac 8115df0b854cSToby Isaac Level: intermediate 81160d1cd5e0SMatthew G. Knepley 81170d1cd5e0SMatthew G. Knepley .seealso: DMAdaptMetric(), DMCoarsen(), DMRefine() 8118df0b854cSToby Isaac @*/ 81190d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptLabel(DM dm, DMLabel label, DM *dmAdapt) 8120df0b854cSToby Isaac { 8121df0b854cSToby Isaac PetscErrorCode ierr; 8122df0b854cSToby Isaac 8123df0b854cSToby Isaac PetscFunctionBegin; 8124df0b854cSToby Isaac PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 8125a1b0c543SToby Isaac PetscValidPointer(label,2); 81260d1cd5e0SMatthew G. Knepley PetscValidPointer(dmAdapt,3); 81270d1cd5e0SMatthew G. Knepley *dmAdapt = NULL; 81286f25b0d8SLisandro Dalcin if (!dm->ops->adaptlabel) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptLabel",((PetscObject)dm)->type_name); 81290d1cd5e0SMatthew G. Knepley ierr = (dm->ops->adaptlabel)(dm, label, dmAdapt);CHKERRQ(ierr); 81300d1cd5e0SMatthew G. Knepley PetscFunctionReturn(0); 81310d1cd5e0SMatthew G. Knepley } 81320d1cd5e0SMatthew G. Knepley 81330d1cd5e0SMatthew G. Knepley /*@C 81340d1cd5e0SMatthew G. Knepley DMAdaptMetric - Generates a mesh adapted to the specified metric field using the pragmatic library. 81350d1cd5e0SMatthew G. Knepley 81360d1cd5e0SMatthew G. Knepley Input Parameters: 81370d1cd5e0SMatthew G. Knepley + dm - The DM object 81380d1cd5e0SMatthew G. Knepley . metric - The metric to which the mesh is adapted, defined vertex-wise. 81396f25b0d8SLisandro Dalcin - bdLabel - Label for boundary tags, which will be preserved in the output mesh. bdLabel should be NULL if there is no such label, and should be different from "_boundary_". 81400d1cd5e0SMatthew G. Knepley 81410d1cd5e0SMatthew G. Knepley Output Parameter: 81420d1cd5e0SMatthew G. Knepley . dmAdapt - Pointer to the DM object containing the adapted mesh 81430d1cd5e0SMatthew G. Knepley 81440d1cd5e0SMatthew G. Knepley Note: The label in the adapted mesh will be registered under the name of the input DMLabel object 81450d1cd5e0SMatthew G. Knepley 81460d1cd5e0SMatthew G. Knepley Level: advanced 81470d1cd5e0SMatthew G. Knepley 81480d1cd5e0SMatthew G. Knepley .seealso: DMAdaptLabel(), DMCoarsen(), DMRefine() 81490d1cd5e0SMatthew G. Knepley @*/ 81500d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptMetric(DM dm, Vec metric, DMLabel bdLabel, DM *dmAdapt) 81510d1cd5e0SMatthew G. Knepley { 81520d1cd5e0SMatthew G. Knepley PetscErrorCode ierr; 81530d1cd5e0SMatthew G. Knepley 81540d1cd5e0SMatthew G. Knepley PetscFunctionBegin; 81550d1cd5e0SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 81560d1cd5e0SMatthew G. Knepley PetscValidHeaderSpecific(metric, VEC_CLASSID, 2); 81570d1cd5e0SMatthew G. Knepley if (bdLabel) PetscValidPointer(bdLabel, 3); 81580d1cd5e0SMatthew G. Knepley PetscValidPointer(dmAdapt, 4); 81596f25b0d8SLisandro Dalcin *dmAdapt = NULL; 81606f25b0d8SLisandro Dalcin if (!dm->ops->adaptmetric) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptMetric",((PetscObject)dm)->type_name); 81610d1cd5e0SMatthew G. Knepley ierr = (dm->ops->adaptmetric)(dm, metric, bdLabel, dmAdapt);CHKERRQ(ierr); 8162df0b854cSToby Isaac PetscFunctionReturn(0); 8163df0b854cSToby Isaac } 8164c4088d22SMatthew G. Knepley 8165502a2867SDave May /*@C 8166502a2867SDave May DMGetNeighbors - Gets an array containing the MPI rank of all the processes neighbors 8167502a2867SDave May 8168502a2867SDave May Not Collective 8169502a2867SDave May 8170502a2867SDave May Input Parameter: 8171502a2867SDave May . dm - The DM 8172502a2867SDave May 8173502a2867SDave May Output Parameter: 8174502a2867SDave May . nranks - the number of neighbours 8175502a2867SDave May . ranks - the neighbors ranks 8176502a2867SDave May 8177502a2867SDave May Notes: 8178502a2867SDave May Do not free the array, it is freed when the DM is destroyed. 8179502a2867SDave May 8180502a2867SDave May Level: beginner 8181502a2867SDave May 8182dec1416fSJunchao Zhang .seealso: DMDAGetNeighbors(), PetscSFGetRootRanks() 8183502a2867SDave May @*/ 8184502a2867SDave May PetscErrorCode DMGetNeighbors(DM dm,PetscInt *nranks,const PetscMPIInt *ranks[]) 8185502a2867SDave May { 8186502a2867SDave May PetscErrorCode ierr; 8187502a2867SDave May 8188502a2867SDave May PetscFunctionBegin; 8189502a2867SDave May PetscValidHeaderSpecific(dm,DM_CLASSID,1); 81900918c465SMatthew G. Knepley if (!dm->ops->getneighbors) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMGetNeighbors",((PetscObject)dm)->type_name); 8191502a2867SDave May ierr = (dm->ops->getneighbors)(dm,nranks,ranks);CHKERRQ(ierr); 8192502a2867SDave May PetscFunctionReturn(0); 8193502a2867SDave May } 8194502a2867SDave May 8195531c7667SBarry Smith #include <petsc/private/matimpl.h> /* Needed because of coloring->ctype below */ 8196531c7667SBarry Smith 8197531c7667SBarry Smith /* 8198531c7667SBarry Smith Converts the input vector to a ghosted vector and then calls the standard coloring code. 8199531c7667SBarry Smith This has be a different function because it requires DM which is not defined in the Mat library 8200531c7667SBarry Smith */ 8201531c7667SBarry Smith PetscErrorCode MatFDColoringApply_AIJDM(Mat J,MatFDColoring coloring,Vec x1,void *sctx) 8202531c7667SBarry Smith { 8203531c7667SBarry Smith PetscErrorCode ierr; 8204531c7667SBarry Smith 8205531c7667SBarry Smith PetscFunctionBegin; 8206531c7667SBarry Smith if (coloring->ctype == IS_COLORING_LOCAL) { 8207531c7667SBarry Smith Vec x1local; 8208531c7667SBarry Smith DM dm; 8209531c7667SBarry Smith ierr = MatGetDM(J,&dm);CHKERRQ(ierr); 8210531c7667SBarry Smith if (!dm) SETERRQ(PetscObjectComm((PetscObject)J),PETSC_ERR_ARG_INCOMP,"IS_COLORING_LOCAL requires a DM"); 8211531c7667SBarry Smith ierr = DMGetLocalVector(dm,&x1local);CHKERRQ(ierr); 8212531c7667SBarry Smith ierr = DMGlobalToLocalBegin(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr); 8213531c7667SBarry Smith ierr = DMGlobalToLocalEnd(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr); 8214531c7667SBarry Smith x1 = x1local; 8215531c7667SBarry Smith } 8216531c7667SBarry Smith ierr = MatFDColoringApply_AIJ(J,coloring,x1,sctx);CHKERRQ(ierr); 8217531c7667SBarry Smith if (coloring->ctype == IS_COLORING_LOCAL) { 8218531c7667SBarry Smith DM dm; 8219531c7667SBarry Smith ierr = MatGetDM(J,&dm);CHKERRQ(ierr); 8220531c7667SBarry Smith ierr = DMRestoreLocalVector(dm,&x1);CHKERRQ(ierr); 8221531c7667SBarry Smith } 8222531c7667SBarry Smith PetscFunctionReturn(0); 8223531c7667SBarry Smith } 8224531c7667SBarry Smith 8225531c7667SBarry Smith /*@ 8226531c7667SBarry Smith MatFDColoringUseDM - allows a MatFDColoring object to use the DM associated with the matrix to use a IS_COLORING_LOCAL coloring 8227531c7667SBarry Smith 8228531c7667SBarry Smith Input Parameter: 8229531c7667SBarry Smith . coloring - the MatFDColoring object 8230531c7667SBarry Smith 823195452b02SPatrick Sanan Developer Notes: 823295452b02SPatrick Sanan this routine exists because the PETSc Mat library does not know about the DM objects 8233531c7667SBarry Smith 82341b266c99SBarry Smith Level: advanced 82351b266c99SBarry Smith 8236531c7667SBarry Smith .seealso: MatFDColoring, MatFDColoringCreate(), ISColoringType 8237531c7667SBarry Smith @*/ 8238531c7667SBarry Smith PetscErrorCode MatFDColoringUseDM(Mat coloring,MatFDColoring fdcoloring) 8239531c7667SBarry Smith { 8240531c7667SBarry Smith PetscFunctionBegin; 8241531c7667SBarry Smith coloring->ops->fdcoloringapply = MatFDColoringApply_AIJDM; 8242531c7667SBarry Smith PetscFunctionReturn(0); 8243531c7667SBarry Smith } 82448320bc6fSPatrick Sanan 82458320bc6fSPatrick Sanan /*@ 82468320bc6fSPatrick Sanan DMGetCompatibility - determine if two DMs are compatible 82478320bc6fSPatrick Sanan 82488320bc6fSPatrick Sanan Collective 82498320bc6fSPatrick Sanan 82508320bc6fSPatrick Sanan Input Parameters: 8251*a5bc1bf3SBarry Smith + dm1 - the first DM 82528320bc6fSPatrick Sanan - dm2 - the second DM 82538320bc6fSPatrick Sanan 82548320bc6fSPatrick Sanan Output Parameters: 82558320bc6fSPatrick Sanan + compatible - whether or not the two DMs are compatible 82568320bc6fSPatrick Sanan - set - whether or not the compatible value was set 82578320bc6fSPatrick Sanan 82588320bc6fSPatrick Sanan Notes: 82598320bc6fSPatrick Sanan Two DMs are deemed compatible if they represent the same parallel decomposition 82603d862458SPatrick Sanan of the same topology. This implies that the section (field data) on one 82618320bc6fSPatrick Sanan "makes sense" with respect to the topology and parallel decomposition of the other. 82623d862458SPatrick Sanan Loosely speaking, compatible DMs represent the same domain and parallel 82633d862458SPatrick Sanan decomposition, but hold different data. 82648320bc6fSPatrick Sanan 82658320bc6fSPatrick Sanan Typically, one would confirm compatibility if intending to simultaneously iterate 82668320bc6fSPatrick Sanan over a pair of vectors obtained from different DMs. 82678320bc6fSPatrick Sanan 82688320bc6fSPatrick Sanan For example, two DMDA objects are compatible if they have the same local 82698320bc6fSPatrick Sanan and global sizes and the same stencil width. They can have different numbers 82708320bc6fSPatrick Sanan of degrees of freedom per node. Thus, one could use the node numbering from 82718320bc6fSPatrick Sanan either DM in bounds for a loop over vectors derived from either DM. 82728320bc6fSPatrick Sanan 82738320bc6fSPatrick Sanan Consider the operation of summing data living on a 2-dof DMDA to data living 82748320bc6fSPatrick Sanan on a 1-dof DMDA, which should be compatible, as in the following snippet. 82758320bc6fSPatrick Sanan .vb 82768320bc6fSPatrick Sanan ... 82778320bc6fSPatrick Sanan ierr = DMGetCompatibility(da1,da2,&compatible,&set);CHKERRQ(ierr); 82788320bc6fSPatrick Sanan if (set && compatible) { 82798320bc6fSPatrick Sanan ierr = DMDAVecGetArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr); 82808320bc6fSPatrick Sanan ierr = DMDAVecGetArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr); 82813d862458SPatrick Sanan ierr = DMDAGetCorners(da1,&x,&y,NULL,&m,&n,NULL);CHKERRQ(ierr); 82828320bc6fSPatrick Sanan for (j=y; j<y+n; ++j) { 82838320bc6fSPatrick Sanan for (i=x; i<x+m, ++i) { 82848320bc6fSPatrick Sanan arr1[j][i][0] = arr2[j][i][0] + arr2[j][i][1]; 82858320bc6fSPatrick Sanan } 82868320bc6fSPatrick Sanan } 82878320bc6fSPatrick Sanan ierr = DMDAVecRestoreArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr); 82888320bc6fSPatrick Sanan ierr = DMDAVecRestoreArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr); 82898320bc6fSPatrick Sanan } else { 82908320bc6fSPatrick Sanan SETERRQ(PetscObjectComm((PetscObject)da1,PETSC_ERR_ARG_INCOMP,"DMDA objects incompatible"); 82918320bc6fSPatrick Sanan } 82928320bc6fSPatrick Sanan ... 82938320bc6fSPatrick Sanan .ve 82948320bc6fSPatrick Sanan 82958320bc6fSPatrick Sanan Checking compatibility might be expensive for a given implementation of DM, 82968320bc6fSPatrick Sanan or might be impossible to unambiguously confirm or deny. For this reason, 82978320bc6fSPatrick Sanan this function may decline to determine compatibility, and hence users should 82988320bc6fSPatrick Sanan always check the "set" output parameter. 82998320bc6fSPatrick Sanan 83008320bc6fSPatrick Sanan A DM is always compatible with itself. 83018320bc6fSPatrick Sanan 83028320bc6fSPatrick Sanan In the current implementation, DMs which live on "unequal" communicators 83038320bc6fSPatrick Sanan (MPI_UNEQUAL in the terminology of MPI_Comm_compare()) are always deemed 83048320bc6fSPatrick Sanan incompatible. 83058320bc6fSPatrick Sanan 83068320bc6fSPatrick Sanan This function is labeled "Collective," as information about all subdomains 83078320bc6fSPatrick Sanan is required on each rank. However, in DM implementations which store all this 83088320bc6fSPatrick Sanan information locally, this function may be merely "Logically Collective". 83098320bc6fSPatrick Sanan 83108320bc6fSPatrick Sanan Developer Notes: 83113d862458SPatrick Sanan Compatibility is assumed to be a symmetric concept; DM A is compatible with DM B 83123d862458SPatrick Sanan iff B is compatible with A. Thus, this function checks the implementations 8313*a5bc1bf3SBarry Smith of both dm and dmc (if they are of different types), attempting to determine 83148320bc6fSPatrick Sanan compatibility. It is left to DM implementers to ensure that symmetry is 83158320bc6fSPatrick Sanan preserved. The simplest way to do this is, when implementing type-specific 83163d862458SPatrick Sanan logic for this function, is to check for existing logic in the implementation 83173d862458SPatrick Sanan of other DM types and let *set = PETSC_FALSE if found. 83188320bc6fSPatrick Sanan 83198320bc6fSPatrick Sanan Level: advanced 83208320bc6fSPatrick Sanan 83213d862458SPatrick Sanan .seealso: DM, DMDACreateCompatibleDMDA(), DMStagCreateCompatibleDMStag() 83228320bc6fSPatrick Sanan @*/ 83238320bc6fSPatrick Sanan 8324*a5bc1bf3SBarry Smith PetscErrorCode DMGetCompatibility(DM dm1,DM dm2,PetscBool *compatible,PetscBool *set) 83258320bc6fSPatrick Sanan { 83268320bc6fSPatrick Sanan PetscErrorCode ierr; 83278320bc6fSPatrick Sanan PetscMPIInt compareResult; 83288320bc6fSPatrick Sanan DMType type,type2; 83298320bc6fSPatrick Sanan PetscBool sameType; 83308320bc6fSPatrick Sanan 83318320bc6fSPatrick Sanan PetscFunctionBegin; 8332*a5bc1bf3SBarry Smith PetscValidHeaderSpecific(dm1,DM_CLASSID,1); 83338320bc6fSPatrick Sanan PetscValidHeaderSpecific(dm2,DM_CLASSID,2); 83348320bc6fSPatrick Sanan 83358320bc6fSPatrick Sanan /* Declare a DM compatible with itself */ 8336*a5bc1bf3SBarry Smith if (dm1 == dm2) { 83378320bc6fSPatrick Sanan *set = PETSC_TRUE; 83388320bc6fSPatrick Sanan *compatible = PETSC_TRUE; 83398320bc6fSPatrick Sanan PetscFunctionReturn(0); 83408320bc6fSPatrick Sanan } 83418320bc6fSPatrick Sanan 83428320bc6fSPatrick Sanan /* Declare a DM incompatible with a DM that lives on an "unequal" 83438320bc6fSPatrick Sanan communicator. Note that this does not preclude compatibility with 83448320bc6fSPatrick Sanan DMs living on "congruent" or "similar" communicators, but this must be 83458320bc6fSPatrick Sanan determined by the implementation-specific logic */ 8346*a5bc1bf3SBarry Smith ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)dm1),PetscObjectComm((PetscObject)dm2),&compareResult);CHKERRQ(ierr); 83478320bc6fSPatrick Sanan if (compareResult == MPI_UNEQUAL) { 83488320bc6fSPatrick Sanan *set = PETSC_TRUE; 83498320bc6fSPatrick Sanan *compatible = PETSC_FALSE; 83508320bc6fSPatrick Sanan PetscFunctionReturn(0); 83518320bc6fSPatrick Sanan } 83528320bc6fSPatrick Sanan 83538320bc6fSPatrick Sanan /* Pass to the implementation-specific routine, if one exists. */ 8354*a5bc1bf3SBarry Smith if (dm1->ops->getcompatibility) { 8355*a5bc1bf3SBarry Smith ierr = (*dm1->ops->getcompatibility)(dm1,dm2,compatible,set);CHKERRQ(ierr); 8356b9d85ea2SLisandro Dalcin if (*set) PetscFunctionReturn(0); 83578320bc6fSPatrick Sanan } 83588320bc6fSPatrick Sanan 8359*a5bc1bf3SBarry Smith /* If dm1 and dm2 are of different types, then attempt to check compatibility 83608320bc6fSPatrick Sanan with an implementation of this function from dm2 */ 8361*a5bc1bf3SBarry Smith ierr = DMGetType(dm1,&type);CHKERRQ(ierr); 83628320bc6fSPatrick Sanan ierr = DMGetType(dm2,&type2);CHKERRQ(ierr); 83638320bc6fSPatrick Sanan ierr = PetscStrcmp(type,type2,&sameType);CHKERRQ(ierr); 83648320bc6fSPatrick Sanan if (!sameType && dm2->ops->getcompatibility) { 8365*a5bc1bf3SBarry Smith ierr = (*dm2->ops->getcompatibility)(dm2,dm1,compatible,set);CHKERRQ(ierr); /* Note argument order */ 83668320bc6fSPatrick Sanan } else { 83678320bc6fSPatrick Sanan *set = PETSC_FALSE; 83688320bc6fSPatrick Sanan } 83698320bc6fSPatrick Sanan PetscFunctionReturn(0); 83708320bc6fSPatrick Sanan } 8371c0f0dcc3SMatthew G. Knepley 8372c0f0dcc3SMatthew G. Knepley /*@C 8373c0f0dcc3SMatthew G. Knepley DMMonitorSet - Sets an ADDITIONAL function that is to be used after a solve to monitor discretization performance. 8374c0f0dcc3SMatthew G. Knepley 8375c0f0dcc3SMatthew G. Knepley Logically Collective on DM 8376c0f0dcc3SMatthew G. Knepley 8377c0f0dcc3SMatthew G. Knepley Input Parameters: 8378c0f0dcc3SMatthew G. Knepley + DM - the DM 8379c0f0dcc3SMatthew G. Knepley . f - the monitor function 8380c0f0dcc3SMatthew G. Knepley . mctx - [optional] user-defined context for private data for the monitor routine (use NULL if no context is desired) 8381c0f0dcc3SMatthew G. Knepley - monitordestroy - [optional] routine that frees monitor context (may be NULL) 8382c0f0dcc3SMatthew G. Knepley 8383c0f0dcc3SMatthew G. Knepley Options Database Keys: 8384c0f0dcc3SMatthew G. Knepley - -dm_monitor_cancel - cancels all monitors that have been hardwired into a code by calls to DMMonitorSet(), but 8385c0f0dcc3SMatthew G. Knepley does not cancel those set via the options database. 8386c0f0dcc3SMatthew G. Knepley 8387c0f0dcc3SMatthew G. Knepley Notes: 8388c0f0dcc3SMatthew G. Knepley Several different monitoring routines may be set by calling 8389c0f0dcc3SMatthew G. Knepley DMMonitorSet() multiple times; all will be called in the 8390c0f0dcc3SMatthew G. Knepley order in which they were set. 8391c0f0dcc3SMatthew G. Knepley 8392c0f0dcc3SMatthew G. Knepley Fortran Notes: 8393c0f0dcc3SMatthew G. Knepley Only a single monitor function can be set for each DM object 8394c0f0dcc3SMatthew G. Knepley 8395c0f0dcc3SMatthew G. Knepley Level: intermediate 8396c0f0dcc3SMatthew G. Knepley 8397c0f0dcc3SMatthew G. Knepley .seealso: DMMonitorCancel() 8398c0f0dcc3SMatthew G. Knepley @*/ 8399c0f0dcc3SMatthew G. Knepley PetscErrorCode DMMonitorSet(DM dm, PetscErrorCode (*f)(DM, void *), void *mctx, PetscErrorCode (*monitordestroy)(void**)) 8400c0f0dcc3SMatthew G. Knepley { 8401c0f0dcc3SMatthew G. Knepley PetscInt m; 8402c0f0dcc3SMatthew G. Knepley PetscErrorCode ierr; 8403c0f0dcc3SMatthew G. Knepley 8404c0f0dcc3SMatthew G. Knepley PetscFunctionBegin; 8405c0f0dcc3SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 8406c0f0dcc3SMatthew G. Knepley for (m = 0; m < dm->numbermonitors; ++m) { 8407c0f0dcc3SMatthew G. Knepley PetscBool identical; 8408c0f0dcc3SMatthew G. Knepley 8409c0f0dcc3SMatthew G. Knepley ierr = PetscMonitorCompare((PetscErrorCode (*)(void)) f, mctx, monitordestroy, (PetscErrorCode (*)(void)) dm->monitor[m], dm->monitorcontext[m], dm->monitordestroy[m], &identical);CHKERRQ(ierr); 8410c0f0dcc3SMatthew G. Knepley if (identical) PetscFunctionReturn(0); 8411c0f0dcc3SMatthew G. Knepley } 8412c0f0dcc3SMatthew G. Knepley if (dm->numbermonitors >= MAXDMMONITORS) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Too many monitors set"); 8413c0f0dcc3SMatthew G. Knepley dm->monitor[dm->numbermonitors] = f; 8414c0f0dcc3SMatthew G. Knepley dm->monitordestroy[dm->numbermonitors] = monitordestroy; 8415c0f0dcc3SMatthew G. Knepley dm->monitorcontext[dm->numbermonitors++] = (void *) mctx; 8416c0f0dcc3SMatthew G. Knepley PetscFunctionReturn(0); 8417c0f0dcc3SMatthew G. Knepley } 8418c0f0dcc3SMatthew G. Knepley 8419c0f0dcc3SMatthew G. Knepley /*@ 8420c0f0dcc3SMatthew G. Knepley DMMonitorCancel - Clears all the monitor functions for a DM object. 8421c0f0dcc3SMatthew G. Knepley 8422c0f0dcc3SMatthew G. Knepley Logically Collective on DM 8423c0f0dcc3SMatthew G. Knepley 8424c0f0dcc3SMatthew G. Knepley Input Parameter: 8425c0f0dcc3SMatthew G. Knepley . dm - the DM 8426c0f0dcc3SMatthew G. Knepley 8427c0f0dcc3SMatthew G. Knepley Options Database Key: 8428c0f0dcc3SMatthew G. Knepley . -dm_monitor_cancel - cancels all monitors that have been hardwired 8429c0f0dcc3SMatthew G. Knepley into a code by calls to DMonitorSet(), but does not cancel those 8430c0f0dcc3SMatthew G. Knepley set via the options database 8431c0f0dcc3SMatthew G. Knepley 8432c0f0dcc3SMatthew G. Knepley Notes: 8433c0f0dcc3SMatthew G. Knepley There is no way to clear one specific monitor from a DM object. 8434c0f0dcc3SMatthew G. Knepley 8435c0f0dcc3SMatthew G. Knepley Level: intermediate 8436c0f0dcc3SMatthew G. Knepley 8437c0f0dcc3SMatthew G. Knepley .seealso: DMMonitorSet() 8438c0f0dcc3SMatthew G. Knepley @*/ 8439c0f0dcc3SMatthew G. Knepley PetscErrorCode DMMonitorCancel(DM dm) 8440c0f0dcc3SMatthew G. Knepley { 8441c0f0dcc3SMatthew G. Knepley PetscErrorCode ierr; 8442c0f0dcc3SMatthew G. Knepley PetscInt m; 8443c0f0dcc3SMatthew G. Knepley 8444c0f0dcc3SMatthew G. Knepley PetscFunctionBegin; 8445c0f0dcc3SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 8446c0f0dcc3SMatthew G. Knepley for (m = 0; m < dm->numbermonitors; ++m) { 8447c0f0dcc3SMatthew G. Knepley if (dm->monitordestroy[m]) {ierr = (*dm->monitordestroy[m])(&dm->monitorcontext[m]);CHKERRQ(ierr);} 8448c0f0dcc3SMatthew G. Knepley } 8449c0f0dcc3SMatthew G. Knepley dm->numbermonitors = 0; 8450c0f0dcc3SMatthew G. Knepley PetscFunctionReturn(0); 8451c0f0dcc3SMatthew G. Knepley } 8452c0f0dcc3SMatthew G. Knepley 8453c0f0dcc3SMatthew G. Knepley /*@C 8454c0f0dcc3SMatthew G. Knepley DMMonitorSetFromOptions - Sets a monitor function and viewer appropriate for the type indicated by the user 8455c0f0dcc3SMatthew G. Knepley 8456c0f0dcc3SMatthew G. Knepley Collective on DM 8457c0f0dcc3SMatthew G. Knepley 8458c0f0dcc3SMatthew G. Knepley Input Parameters: 8459c0f0dcc3SMatthew G. Knepley + dm - DM object you wish to monitor 8460c0f0dcc3SMatthew G. Knepley . name - the monitor type one is seeking 8461c0f0dcc3SMatthew G. Knepley . help - message indicating what monitoring is done 8462c0f0dcc3SMatthew G. Knepley . manual - manual page for the monitor 8463c0f0dcc3SMatthew G. Knepley . monitor - the monitor function 8464c0f0dcc3SMatthew G. Knepley - monitorsetup - a function that is called once ONLY if the user selected this monitor that may set additional features of the DM or PetscViewer objects 8465c0f0dcc3SMatthew G. Knepley 8466c0f0dcc3SMatthew G. Knepley Output Parameter: 8467c0f0dcc3SMatthew G. Knepley . flg - Flag set if the monitor was created 8468c0f0dcc3SMatthew G. Knepley 8469c0f0dcc3SMatthew G. Knepley Level: developer 8470c0f0dcc3SMatthew G. Knepley 8471c0f0dcc3SMatthew G. Knepley .seealso: PetscOptionsGetViewer(), PetscOptionsGetReal(), PetscOptionsHasName(), PetscOptionsGetString(), 8472c0f0dcc3SMatthew G. Knepley PetscOptionsGetIntArray(), PetscOptionsGetRealArray(), PetscOptionsBool() 8473c0f0dcc3SMatthew G. Knepley PetscOptionsInt(), PetscOptionsString(), PetscOptionsReal(), PetscOptionsBool(), 8474c0f0dcc3SMatthew G. Knepley PetscOptionsName(), PetscOptionsBegin(), PetscOptionsEnd(), PetscOptionsHead(), 8475c0f0dcc3SMatthew G. Knepley PetscOptionsStringArray(),PetscOptionsRealArray(), PetscOptionsScalar(), 8476c0f0dcc3SMatthew G. Knepley PetscOptionsBoolGroupBegin(), PetscOptionsBoolGroup(), PetscOptionsBoolGroupEnd(), 8477c0f0dcc3SMatthew G. Knepley PetscOptionsFList(), PetscOptionsEList() 8478c0f0dcc3SMatthew G. Knepley @*/ 8479c0f0dcc3SMatthew G. Knepley PetscErrorCode DMMonitorSetFromOptions(DM dm, const char name[], const char help[], const char manual[], PetscErrorCode (*monitor)(DM, void *), PetscErrorCode (*monitorsetup)(DM, PetscViewerAndFormat *), PetscBool *flg) 8480c0f0dcc3SMatthew G. Knepley { 8481c0f0dcc3SMatthew G. Knepley PetscViewer viewer; 8482c0f0dcc3SMatthew G. Knepley PetscViewerFormat format; 8483c0f0dcc3SMatthew G. Knepley PetscErrorCode ierr; 8484c0f0dcc3SMatthew G. Knepley 8485c0f0dcc3SMatthew G. Knepley PetscFunctionBegin; 8486c0f0dcc3SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 8487c0f0dcc3SMatthew G. Knepley ierr = PetscOptionsGetViewer(PetscObjectComm((PetscObject) dm), ((PetscObject) dm)->options, ((PetscObject) dm)->prefix, name, &viewer, &format, flg);CHKERRQ(ierr); 8488c0f0dcc3SMatthew G. Knepley if (*flg) { 8489c0f0dcc3SMatthew G. Knepley PetscViewerAndFormat *vf; 8490c0f0dcc3SMatthew G. Knepley 8491c0f0dcc3SMatthew G. Knepley ierr = PetscViewerAndFormatCreate(viewer, format, &vf);CHKERRQ(ierr); 8492c0f0dcc3SMatthew G. Knepley ierr = PetscObjectDereference((PetscObject) viewer);CHKERRQ(ierr); 8493c0f0dcc3SMatthew G. Knepley if (monitorsetup) {ierr = (*monitorsetup)(dm, vf);CHKERRQ(ierr);} 8494c0f0dcc3SMatthew G. Knepley ierr = DMMonitorSet(dm,(PetscErrorCode (*)(DM, void *)) monitor, vf, (PetscErrorCode (*)(void **)) PetscViewerAndFormatDestroy);CHKERRQ(ierr); 8495c0f0dcc3SMatthew G. Knepley } 8496c0f0dcc3SMatthew G. Knepley PetscFunctionReturn(0); 8497c0f0dcc3SMatthew G. Knepley } 8498c0f0dcc3SMatthew G. Knepley 8499c0f0dcc3SMatthew G. Knepley /*@ 8500c0f0dcc3SMatthew G. Knepley DMMonitor - runs the user provided monitor routines, if they exist 8501c0f0dcc3SMatthew G. Knepley 8502c0f0dcc3SMatthew G. Knepley Collective on DM 8503c0f0dcc3SMatthew G. Knepley 8504c0f0dcc3SMatthew G. Knepley Input Parameters: 8505c0f0dcc3SMatthew G. Knepley . dm - The DM 8506c0f0dcc3SMatthew G. Knepley 8507c0f0dcc3SMatthew G. Knepley Level: developer 8508c0f0dcc3SMatthew G. Knepley 8509c0f0dcc3SMatthew G. Knepley .seealso: DMMonitorSet() 8510c0f0dcc3SMatthew G. Knepley @*/ 8511c0f0dcc3SMatthew G. Knepley PetscErrorCode DMMonitor(DM dm) 8512c0f0dcc3SMatthew G. Knepley { 8513c0f0dcc3SMatthew G. Knepley PetscInt m; 8514c0f0dcc3SMatthew G. Knepley PetscErrorCode ierr; 8515c0f0dcc3SMatthew G. Knepley 8516c0f0dcc3SMatthew G. Knepley PetscFunctionBegin; 8517c0f0dcc3SMatthew G. Knepley if (!dm) PetscFunctionReturn(0); 8518c0f0dcc3SMatthew G. Knepley PetscValidHeaderSpecific(dm, DM_CLASSID, 1); 8519c0f0dcc3SMatthew G. Knepley for (m = 0; m < dm->numbermonitors; ++m) { 8520c0f0dcc3SMatthew G. Knepley ierr = (*dm->monitor[m])(dm, dm->monitorcontext[m]);CHKERRQ(ierr); 8521c0f0dcc3SMatthew G. Knepley } 8522c0f0dcc3SMatthew G. Knepley PetscFunctionReturn(0); 8523c0f0dcc3SMatthew G. Knepley } 8524