xref: /petsc/src/dm/interface/dm.c (revision d083f849a86f1f43e18d534ee43954e2786cb29a)
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;
111ac00216SMatthew G. Knepley PetscLogEvent DM_Convert, DM_GlobalToLocal, DM_LocalToGlobal, DM_LocalToLocal, DM_LocatePoints, DM_Coarsen, DM_Refine, DM_CreateInterpolation, DM_CreateRestriction;
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};
15bff4a2f0SMatthew G. Knepley 
164a7a4c06SLawrence Mitchell static PetscErrorCode DMHasCreateInjection_Default(DM dm, PetscBool *flg)
174a7a4c06SLawrence Mitchell {
184a7a4c06SLawrence Mitchell   PetscFunctionBegin;
194a7a4c06SLawrence Mitchell   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
204a7a4c06SLawrence Mitchell   PetscValidPointer(flg,2);
214a7a4c06SLawrence Mitchell   *flg = PETSC_FALSE;
224a7a4c06SLawrence Mitchell   PetscFunctionReturn(0);
234a7a4c06SLawrence Mitchell }
244a7a4c06SLawrence Mitchell 
25a4121054SBarry Smith /*@
26de043629SMatthew G Knepley   DMCreate - Creates an empty DM object. The type can then be set with DMSetType().
27a4121054SBarry Smith 
28a4121054SBarry Smith    If you never  call DMSetType()  it will generate an
29a4121054SBarry Smith    error when you try to use the vector.
30a4121054SBarry Smith 
31*d083f849SBarry Smith   Collective
32a4121054SBarry Smith 
33a4121054SBarry Smith   Input Parameter:
34a4121054SBarry Smith . comm - The communicator for the DM object
35a4121054SBarry Smith 
36a4121054SBarry Smith   Output Parameter:
37a4121054SBarry Smith . dm - The DM object
38a4121054SBarry Smith 
39a4121054SBarry Smith   Level: beginner
40a4121054SBarry Smith 
418472ad0fSDave May .seealso: DMSetType(), DMDA, DMSLICED, DMCOMPOSITE, DMPLEX, DMMOAB, DMNETWORK
42a4121054SBarry Smith @*/
437087cfbeSBarry Smith PetscErrorCode  DMCreate(MPI_Comm comm,DM *dm)
44a4121054SBarry Smith {
45a4121054SBarry Smith   DM             v;
46e5e52638SMatthew G. Knepley   PetscDS        ds;
47a4121054SBarry Smith   PetscErrorCode ierr;
48a4121054SBarry Smith 
49a4121054SBarry Smith   PetscFunctionBegin;
501411c6eeSJed Brown   PetscValidPointer(dm,2);
510298fd71SBarry Smith   *dm = NULL;
52607a6623SBarry Smith   ierr = DMInitializePackage();CHKERRQ(ierr);
53a4121054SBarry Smith 
5473107ff1SLisandro Dalcin   ierr = PetscHeaderCreate(v, DM_CLASSID, "DM", "Distribution Manager", "DM", comm, DMDestroy, DMView);CHKERRQ(ierr);
55e7c4fc90SDmitry Karpeev 
5649be4549SMatthew G. Knepley   v->setupcalled              = PETSC_FALSE;
5749be4549SMatthew G. Knepley   v->setfromoptionscalled     = PETSC_FALSE;
580298fd71SBarry Smith   v->ltogmap                  = NULL;
591411c6eeSJed Brown   v->bs                       = 1;
60171400e9SBarry Smith   v->coloringtype             = IS_COLORING_GLOBAL;
6188ed4aceSMatthew G Knepley   ierr                        = PetscSFCreate(comm, &v->sf);CHKERRQ(ierr);
6288ed4aceSMatthew G Knepley   ierr                        = PetscSFCreate(comm, &v->defaultSF);CHKERRQ(ierr);
63c58f1c22SToby Isaac   v->labels                   = NULL;
6434aa8a36SMatthew G. Knepley   v->adjacency[0]             = PETSC_FALSE;
6534aa8a36SMatthew G. Knepley   v->adjacency[1]             = PETSC_TRUE;
66c58f1c22SToby Isaac   v->depthLabel               = NULL;
670298fd71SBarry Smith   v->defaultSection           = NULL;
680298fd71SBarry Smith   v->defaultGlobalSection     = NULL;
69fba222abSToby Isaac   v->defaultConstraintSection = NULL;
70fba222abSToby Isaac   v->defaultConstraintMat     = NULL;
71c6b900c6SMatthew G. Knepley   v->L                        = NULL;
72c6b900c6SMatthew G. Knepley   v->maxCell                  = NULL;
735dc8c3f7SMatthew G. Knepley   v->bdtype                   = NULL;
749a9a41abSToby Isaac   v->dimEmbed                 = PETSC_DEFAULT;
7596173672SStefano Zampini   v->dim                      = PETSC_DETERMINE;
76435a35e8SMatthew G Knepley   {
77435a35e8SMatthew G Knepley     PetscInt i;
78435a35e8SMatthew G Knepley     for (i = 0; i < 10; ++i) {
790298fd71SBarry Smith       v->nullspaceConstructors[i] = NULL;
80f9d4088aSMatthew G. Knepley       v->nearnullspaceConstructors[i] = NULL;
81435a35e8SMatthew G Knepley     }
82435a35e8SMatthew G Knepley   }
83e5e52638SMatthew G. Knepley   ierr = PetscDSCreate(PetscObjectComm((PetscObject) v), &ds);CHKERRQ(ierr);
84b3cf3223SMatthew G. Knepley   ierr = DMSetRegionDS(v, NULL, NULL, ds);CHKERRQ(ierr);
85e5e52638SMatthew G. Knepley   ierr = PetscDSDestroy(&ds);CHKERRQ(ierr);
8614f150ffSMatthew G. Knepley   v->dmBC = NULL;
87a8fb8f29SToby Isaac   v->coarseMesh = NULL;
88f4d763aaSMatthew G. Knepley   v->outputSequenceNum = -1;
89cdb7a50dSMatthew G. Knepley   v->outputSequenceVal = 0.0;
90c0dedaeaSBarry Smith   ierr = DMSetVecType(v,VECSTANDARD);CHKERRQ(ierr);
91b412c318SBarry Smith   ierr = DMSetMatType(v,MATAIJ);CHKERRQ(ierr);
92bcc5ffd9SToby Isaac   ierr = PetscNew(&(v->labels));CHKERRQ(ierr);
93c58f1c22SToby Isaac   v->labels->refct = 1;
944a7a4c06SLawrence Mitchell 
954a7a4c06SLawrence Mitchell   v->ops->hascreateinjection = DMHasCreateInjection_Default;
964a7a4c06SLawrence Mitchell 
971411c6eeSJed Brown   *dm = v;
98a4121054SBarry Smith   PetscFunctionReturn(0);
99a4121054SBarry Smith }
100a4121054SBarry Smith 
10138221697SMatthew G. Knepley /*@
10238221697SMatthew G. Knepley   DMClone - Creates a DM object with the same topology as the original.
10338221697SMatthew G. Knepley 
104*d083f849SBarry Smith   Collective
10538221697SMatthew G. Knepley 
10638221697SMatthew G. Knepley   Input Parameter:
10738221697SMatthew G. Knepley . dm - The original DM object
10838221697SMatthew G. Knepley 
10938221697SMatthew G. Knepley   Output Parameter:
11038221697SMatthew G. Knepley . newdm  - The new DM object
11138221697SMatthew G. Knepley 
11238221697SMatthew G. Knepley   Level: beginner
11338221697SMatthew G. Knepley 
11438221697SMatthew G. Knepley @*/
11538221697SMatthew G. Knepley PetscErrorCode DMClone(DM dm, DM *newdm)
11638221697SMatthew G. Knepley {
11738221697SMatthew G. Knepley   PetscSF        sf;
11838221697SMatthew G. Knepley   Vec            coords;
11938221697SMatthew G. Knepley   void          *ctx;
120a3219837SMatthew G. Knepley   PetscInt       dim, cdim;
12138221697SMatthew G. Knepley   PetscErrorCode ierr;
12238221697SMatthew G. Knepley 
12338221697SMatthew G. Knepley   PetscFunctionBegin;
12438221697SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
12538221697SMatthew G. Knepley   PetscValidPointer(newdm,2);
12638221697SMatthew G. Knepley   ierr = DMCreate(PetscObjectComm((PetscObject) dm), newdm);CHKERRQ(ierr);
127c58f1c22SToby Isaac   ierr = PetscFree((*newdm)->labels);CHKERRQ(ierr);
128c58f1c22SToby Isaac   dm->labels->refct++;
129c58f1c22SToby Isaac   (*newdm)->labels = dm->labels;
130c58f1c22SToby Isaac   (*newdm)->depthLabel = dm->depthLabel;
131ddf8437dSMatthew G. Knepley   (*newdm)->leveldown  = dm->leveldown;
132ddf8437dSMatthew G. Knepley   (*newdm)->levelup    = dm->levelup;
1331de53e9aSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1341de53e9aSMatthew G. Knepley   ierr = DMSetDimension(*newdm, dim);CHKERRQ(ierr);
13538221697SMatthew G. Knepley   if (dm->ops->clone) {
13638221697SMatthew G. Knepley     ierr = (*dm->ops->clone)(dm, newdm);CHKERRQ(ierr);
13738221697SMatthew G. Knepley   }
1383f22bcbcSToby Isaac   (*newdm)->setupcalled = dm->setupcalled;
13938221697SMatthew G. Knepley   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
14038221697SMatthew G. Knepley   ierr = DMSetPointSF(*newdm, sf);CHKERRQ(ierr);
14138221697SMatthew G. Knepley   ierr = DMGetApplicationContext(dm, &ctx);CHKERRQ(ierr);
14238221697SMatthew G. Knepley   ierr = DMSetApplicationContext(*newdm, ctx);CHKERRQ(ierr);
143be4c1c3eSMatthew G. Knepley   if (dm->coordinateDM) {
144be4c1c3eSMatthew G. Knepley     DM           ncdm;
145be4c1c3eSMatthew G. Knepley     PetscSection cs;
1465a0206caSToby Isaac     PetscInt     pEnd = -1, pEndMax = -1;
147be4c1c3eSMatthew G. Knepley 
148e87a4003SBarry Smith     ierr = DMGetSection(dm->coordinateDM, &cs);CHKERRQ(ierr);
149be4c1c3eSMatthew G. Knepley     if (cs) {ierr = PetscSectionGetChart(cs, NULL, &pEnd);CHKERRQ(ierr);}
1505a0206caSToby Isaac     ierr = MPI_Allreduce(&pEnd,&pEndMax,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
1515a0206caSToby Isaac     if (pEndMax >= 0) {
152be4c1c3eSMatthew G. Knepley       ierr = DMClone(dm->coordinateDM, &ncdm);CHKERRQ(ierr);
15383bfc06fSMatthew Knepley       ierr = DMCopyDisc(dm->coordinateDM, ncdm);CHKERRQ(ierr);
154e87a4003SBarry Smith       ierr = DMSetSection(ncdm, cs);CHKERRQ(ierr);
155a61e840bSMatthew G. Knepley       ierr = DMSetCoordinateDM(*newdm, ncdm);CHKERRQ(ierr);
156be4c1c3eSMatthew G. Knepley       ierr = DMDestroy(&ncdm);CHKERRQ(ierr);
157be4c1c3eSMatthew G. Knepley     }
158be4c1c3eSMatthew G. Knepley   }
159a3219837SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
160a3219837SMatthew G. Knepley   ierr = DMSetCoordinateDim(*newdm, cdim);CHKERRQ(ierr);
16138221697SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coords);CHKERRQ(ierr);
16238221697SMatthew G. Knepley   if (coords) {
16338221697SMatthew G. Knepley     ierr = DMSetCoordinatesLocal(*newdm, coords);CHKERRQ(ierr);
16438221697SMatthew G. Knepley   } else {
16538221697SMatthew G. Knepley     ierr = DMGetCoordinates(dm, &coords);CHKERRQ(ierr);
16638221697SMatthew G. Knepley     if (coords) {ierr = DMSetCoordinates(*newdm, coords);CHKERRQ(ierr);}
16738221697SMatthew G. Knepley   }
16890b157c4SStefano Zampini   {
16990b157c4SStefano Zampini     PetscBool             isper;
170c6b900c6SMatthew G. Knepley     const PetscReal      *maxCell, *L;
1715dc8c3f7SMatthew G. Knepley     const DMBoundaryType *bd;
17290b157c4SStefano Zampini     ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr);
17390b157c4SStefano Zampini     ierr = DMSetPeriodicity(*newdm, isper, maxCell,  L,  bd);CHKERRQ(ierr);
174c6b900c6SMatthew G. Knepley   }
17534aa8a36SMatthew G. Knepley   {
17634aa8a36SMatthew G. Knepley     PetscBool useCone, useClosure;
17734aa8a36SMatthew G. Knepley 
17834aa8a36SMatthew G. Knepley     ierr = DMGetAdjacency(dm, PETSC_DEFAULT, &useCone, &useClosure);CHKERRQ(ierr);
17934aa8a36SMatthew G. Knepley     ierr = DMSetAdjacency(*newdm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr);
18034aa8a36SMatthew G. Knepley   }
18138221697SMatthew G. Knepley   PetscFunctionReturn(0);
18238221697SMatthew G. Knepley }
18338221697SMatthew G. Knepley 
1849a42bb27SBarry Smith /*@C
185564755cdSBarry Smith        DMSetVecType - Sets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector()
1869a42bb27SBarry Smith 
187*d083f849SBarry Smith    Logically Collective on da
1889a42bb27SBarry Smith 
1899a42bb27SBarry Smith    Input Parameter:
1909a42bb27SBarry Smith +  da - initial distributed array
191e9e886b6SKarl Rupp .  ctype - the vector type, currently either VECSTANDARD, VECCUDA, or VECVIENNACL
1929a42bb27SBarry Smith 
1939a42bb27SBarry Smith    Options Database:
194dd85299cSBarry Smith .   -dm_vec_type ctype
1959a42bb27SBarry Smith 
1969a42bb27SBarry Smith    Level: intermediate
1979a42bb27SBarry Smith 
198a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMGetVecType(), DMSetMatType(), DMGetMatType()
1999a42bb27SBarry Smith @*/
20019fd82e9SBarry Smith PetscErrorCode  DMSetVecType(DM da,VecType ctype)
2019a42bb27SBarry Smith {
2029a42bb27SBarry Smith   PetscErrorCode ierr;
2039a42bb27SBarry Smith 
2049a42bb27SBarry Smith   PetscFunctionBegin;
2059a42bb27SBarry Smith   PetscValidHeaderSpecific(da,DM_CLASSID,1);
2069a42bb27SBarry Smith   ierr = PetscFree(da->vectype);CHKERRQ(ierr);
20719fd82e9SBarry Smith   ierr = PetscStrallocpy(ctype,(char**)&da->vectype);CHKERRQ(ierr);
2089a42bb27SBarry Smith   PetscFunctionReturn(0);
2099a42bb27SBarry Smith }
2109a42bb27SBarry Smith 
211c0dedaeaSBarry Smith /*@C
212c0dedaeaSBarry Smith        DMGetVecType - Gets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector()
213c0dedaeaSBarry Smith 
214*d083f849SBarry Smith    Logically Collective on da
215c0dedaeaSBarry Smith 
216c0dedaeaSBarry Smith    Input Parameter:
217c0dedaeaSBarry Smith .  da - initial distributed array
218c0dedaeaSBarry Smith 
219c0dedaeaSBarry Smith    Output Parameter:
220c0dedaeaSBarry Smith .  ctype - the vector type
221c0dedaeaSBarry Smith 
222c0dedaeaSBarry Smith    Level: intermediate
223c0dedaeaSBarry Smith 
224a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMSetMatType(), DMGetMatType(), DMSetVecType()
225c0dedaeaSBarry Smith @*/
226c0dedaeaSBarry Smith PetscErrorCode  DMGetVecType(DM da,VecType *ctype)
227c0dedaeaSBarry Smith {
228c0dedaeaSBarry Smith   PetscFunctionBegin;
229c0dedaeaSBarry Smith   PetscValidHeaderSpecific(da,DM_CLASSID,1);
230c0dedaeaSBarry Smith   *ctype = da->vectype;
231c0dedaeaSBarry Smith   PetscFunctionReturn(0);
232c0dedaeaSBarry Smith }
233c0dedaeaSBarry Smith 
2345f1ad066SMatthew G Knepley /*@
23534f98d34SBarry Smith   VecGetDM - Gets the DM defining the data layout of the vector
2365f1ad066SMatthew G Knepley 
2375f1ad066SMatthew G Knepley   Not collective
2385f1ad066SMatthew G Knepley 
2395f1ad066SMatthew G Knepley   Input Parameter:
2405f1ad066SMatthew G Knepley . v - The Vec
2415f1ad066SMatthew G Knepley 
2425f1ad066SMatthew G Knepley   Output Parameter:
2435f1ad066SMatthew G Knepley . dm - The DM
2445f1ad066SMatthew G Knepley 
2455f1ad066SMatthew G Knepley   Level: intermediate
2465f1ad066SMatthew G Knepley 
2475f1ad066SMatthew G Knepley .seealso: VecSetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType()
2485f1ad066SMatthew G Knepley @*/
2495f1ad066SMatthew G Knepley PetscErrorCode VecGetDM(Vec v, DM *dm)
2505f1ad066SMatthew G Knepley {
2515f1ad066SMatthew G Knepley   PetscErrorCode ierr;
2525f1ad066SMatthew G Knepley 
2535f1ad066SMatthew G Knepley   PetscFunctionBegin;
2545f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,1);
2555f1ad066SMatthew G Knepley   PetscValidPointer(dm,2);
2565f1ad066SMatthew G Knepley   ierr = PetscObjectQuery((PetscObject) v, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr);
2575f1ad066SMatthew G Knepley   PetscFunctionReturn(0);
2585f1ad066SMatthew G Knepley }
2595f1ad066SMatthew G Knepley 
2605f1ad066SMatthew G Knepley /*@
261d9805387SMatthew G. Knepley   VecSetDM - Sets the DM defining the data layout of the vector.
2625f1ad066SMatthew G Knepley 
2635f1ad066SMatthew G Knepley   Not collective
2645f1ad066SMatthew G Knepley 
2655f1ad066SMatthew G Knepley   Input Parameters:
2665f1ad066SMatthew G Knepley + v - The Vec
2675f1ad066SMatthew G Knepley - dm - The DM
2685f1ad066SMatthew G Knepley 
269d9805387SMatthew 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.
270d9805387SMatthew G. Knepley 
2715f1ad066SMatthew G Knepley   Level: intermediate
2725f1ad066SMatthew G Knepley 
2735f1ad066SMatthew G Knepley .seealso: VecGetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType()
2745f1ad066SMatthew G Knepley @*/
2755f1ad066SMatthew G Knepley PetscErrorCode VecSetDM(Vec v, DM dm)
2765f1ad066SMatthew G Knepley {
2775f1ad066SMatthew G Knepley   PetscErrorCode ierr;
2785f1ad066SMatthew G Knepley 
2795f1ad066SMatthew G Knepley   PetscFunctionBegin;
2805f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,1);
281d7f50e27SLisandro Dalcin   if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2);
2825f1ad066SMatthew G Knepley   ierr = PetscObjectCompose((PetscObject) v, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr);
2835f1ad066SMatthew G Knepley   PetscFunctionReturn(0);
2845f1ad066SMatthew G Knepley }
2855f1ad066SMatthew G Knepley 
286521d9a4cSLisandro Dalcin /*@C
2878f1509bcSBarry Smith        DMSetISColoringType - Sets the type of coloring, global or local, that is created by the DM
2888f1509bcSBarry Smith 
289*d083f849SBarry Smith    Logically Collective on dm
2908f1509bcSBarry Smith 
2918f1509bcSBarry Smith    Input Parameters:
2928f1509bcSBarry Smith +  dm - the DM context
2938f1509bcSBarry Smith -  ctype - the matrix type
2948f1509bcSBarry Smith 
2958f1509bcSBarry Smith    Options Database:
2968f1509bcSBarry Smith .   -dm_is_coloring_type - global or local
2978f1509bcSBarry Smith 
2988f1509bcSBarry Smith    Level: intermediate
2998f1509bcSBarry Smith 
3008f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(),
3018f1509bcSBarry Smith           DMGetISColoringType()
3028f1509bcSBarry Smith @*/
3038f1509bcSBarry Smith PetscErrorCode  DMSetISColoringType(DM dm,ISColoringType ctype)
3048f1509bcSBarry Smith {
3058f1509bcSBarry Smith   PetscFunctionBegin;
3068f1509bcSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3078f1509bcSBarry Smith   dm->coloringtype = ctype;
3088f1509bcSBarry Smith   PetscFunctionReturn(0);
3098f1509bcSBarry Smith }
3108f1509bcSBarry Smith 
3118f1509bcSBarry Smith /*@C
3128f1509bcSBarry Smith        DMGetISColoringType - Gets the type of coloring, global or local, that is created by the DM
313521d9a4cSLisandro Dalcin 
314*d083f849SBarry Smith    Logically Collective on dm
315521d9a4cSLisandro Dalcin 
316521d9a4cSLisandro Dalcin    Input Parameter:
3178f1509bcSBarry Smith .  dm - the DM context
3188f1509bcSBarry Smith 
3198f1509bcSBarry Smith    Output Parameter:
3208f1509bcSBarry Smith .  ctype - the matrix type
3218f1509bcSBarry Smith 
3228f1509bcSBarry Smith    Options Database:
3238f1509bcSBarry Smith .   -dm_is_coloring_type - global or local
3248f1509bcSBarry Smith 
3258f1509bcSBarry Smith    Level: intermediate
3268f1509bcSBarry Smith 
3278f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(),
3288f1509bcSBarry Smith           DMGetISColoringType()
3298f1509bcSBarry Smith @*/
3308f1509bcSBarry Smith PetscErrorCode  DMGetISColoringType(DM dm,ISColoringType *ctype)
3318f1509bcSBarry Smith {
3328f1509bcSBarry Smith   PetscFunctionBegin;
3338f1509bcSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3348f1509bcSBarry Smith   *ctype = dm->coloringtype;
3358f1509bcSBarry Smith   PetscFunctionReturn(0);
3368f1509bcSBarry Smith }
3378f1509bcSBarry Smith 
3388f1509bcSBarry Smith /*@C
3398f1509bcSBarry Smith        DMSetMatType - Sets the type of matrix created with DMCreateMatrix()
3408f1509bcSBarry Smith 
341*d083f849SBarry Smith    Logically Collective on dm
3428f1509bcSBarry Smith 
3438f1509bcSBarry Smith    Input Parameters:
344521d9a4cSLisandro Dalcin +  dm - the DM context
345a2b5a043SBarry Smith -  ctype - the matrix type
346521d9a4cSLisandro Dalcin 
347521d9a4cSLisandro Dalcin    Options Database:
348521d9a4cSLisandro Dalcin .   -dm_mat_type ctype
349521d9a4cSLisandro Dalcin 
350521d9a4cSLisandro Dalcin    Level: intermediate
351521d9a4cSLisandro Dalcin 
352a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(), DMSetMatType(), DMGetMatType()
353521d9a4cSLisandro Dalcin @*/
35419fd82e9SBarry Smith PetscErrorCode  DMSetMatType(DM dm,MatType ctype)
355521d9a4cSLisandro Dalcin {
356521d9a4cSLisandro Dalcin   PetscErrorCode ierr;
35788f0584fSBarry Smith 
358521d9a4cSLisandro Dalcin   PetscFunctionBegin;
359521d9a4cSLisandro Dalcin   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
360521d9a4cSLisandro Dalcin   ierr = PetscFree(dm->mattype);CHKERRQ(ierr);
36119fd82e9SBarry Smith   ierr = PetscStrallocpy(ctype,(char**)&dm->mattype);CHKERRQ(ierr);
362521d9a4cSLisandro Dalcin   PetscFunctionReturn(0);
363521d9a4cSLisandro Dalcin }
364521d9a4cSLisandro Dalcin 
365c0dedaeaSBarry Smith /*@C
366c0dedaeaSBarry Smith        DMGetMatType - Gets the type of matrix created with DMCreateMatrix()
367c0dedaeaSBarry Smith 
368*d083f849SBarry Smith    Logically Collective on dm
369c0dedaeaSBarry Smith 
370c0dedaeaSBarry Smith    Input Parameter:
371c0dedaeaSBarry Smith .  dm - the DM context
372c0dedaeaSBarry Smith 
373c0dedaeaSBarry Smith    Output Parameter:
374c0dedaeaSBarry Smith .  ctype - the matrix type
375c0dedaeaSBarry Smith 
376c0dedaeaSBarry Smith    Options Database:
377c0dedaeaSBarry Smith .   -dm_mat_type ctype
378c0dedaeaSBarry Smith 
379c0dedaeaSBarry Smith    Level: intermediate
380c0dedaeaSBarry Smith 
381a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMSetMatType(), DMSetMatType(), DMGetMatType()
382c0dedaeaSBarry Smith @*/
383c0dedaeaSBarry Smith PetscErrorCode  DMGetMatType(DM dm,MatType *ctype)
384c0dedaeaSBarry Smith {
385c0dedaeaSBarry Smith   PetscFunctionBegin;
386c0dedaeaSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
387c0dedaeaSBarry Smith   *ctype = dm->mattype;
388c0dedaeaSBarry Smith   PetscFunctionReturn(0);
389c0dedaeaSBarry Smith }
390c0dedaeaSBarry Smith 
391c688c046SMatthew G Knepley /*@
39234f98d34SBarry Smith   MatGetDM - Gets the DM defining the data layout of the matrix
393c688c046SMatthew G Knepley 
394c688c046SMatthew G Knepley   Not collective
395c688c046SMatthew G Knepley 
396c688c046SMatthew G Knepley   Input Parameter:
397c688c046SMatthew G Knepley . A - The Mat
398c688c046SMatthew G Knepley 
399c688c046SMatthew G Knepley   Output Parameter:
400c688c046SMatthew G Knepley . dm - The DM
401c688c046SMatthew G Knepley 
402c688c046SMatthew G Knepley   Level: intermediate
403c688c046SMatthew G Knepley 
4048f1509bcSBarry Smith   Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with
4058f1509bcSBarry Smith                   the Mat through a PetscObjectCompose() operation
4068f1509bcSBarry Smith 
407c688c046SMatthew G Knepley .seealso: MatSetDM(), DMCreateMatrix(), DMSetMatType()
408c688c046SMatthew G Knepley @*/
409c688c046SMatthew G Knepley PetscErrorCode MatGetDM(Mat A, DM *dm)
410c688c046SMatthew G Knepley {
411c688c046SMatthew G Knepley   PetscErrorCode ierr;
412c688c046SMatthew G Knepley 
413c688c046SMatthew G Knepley   PetscFunctionBegin;
414c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A,MAT_CLASSID,1);
415c688c046SMatthew G Knepley   PetscValidPointer(dm,2);
416c688c046SMatthew G Knepley   ierr = PetscObjectQuery((PetscObject) A, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr);
417c688c046SMatthew G Knepley   PetscFunctionReturn(0);
418c688c046SMatthew G Knepley }
419c688c046SMatthew G Knepley 
420c688c046SMatthew G Knepley /*@
421c688c046SMatthew G Knepley   MatSetDM - Sets the DM defining the data layout of the matrix
422c688c046SMatthew G Knepley 
423c688c046SMatthew G Knepley   Not collective
424c688c046SMatthew G Knepley 
425c688c046SMatthew G Knepley   Input Parameters:
426c688c046SMatthew G Knepley + A - The Mat
427c688c046SMatthew G Knepley - dm - The DM
428c688c046SMatthew G Knepley 
429c688c046SMatthew G Knepley   Level: intermediate
430c688c046SMatthew G Knepley 
4318f1509bcSBarry Smith   Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with
4328f1509bcSBarry Smith                   the Mat through a PetscObjectCompose() operation
4338f1509bcSBarry Smith 
4348f1509bcSBarry Smith 
435c688c046SMatthew G Knepley .seealso: MatGetDM(), DMCreateMatrix(), DMSetMatType()
436c688c046SMatthew G Knepley @*/
437c688c046SMatthew G Knepley PetscErrorCode MatSetDM(Mat A, DM dm)
438c688c046SMatthew G Knepley {
439c688c046SMatthew G Knepley   PetscErrorCode ierr;
440c688c046SMatthew G Knepley 
441c688c046SMatthew G Knepley   PetscFunctionBegin;
442c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A,MAT_CLASSID,1);
4438865f1eaSKarl Rupp   if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2);
444c688c046SMatthew G Knepley   ierr = PetscObjectCompose((PetscObject) A, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr);
445c688c046SMatthew G Knepley   PetscFunctionReturn(0);
446c688c046SMatthew G Knepley }
447c688c046SMatthew G Knepley 
4489a42bb27SBarry Smith /*@C
4499a42bb27SBarry Smith    DMSetOptionsPrefix - Sets the prefix used for searching for all
4506757b960SDave May    DM options in the database.
4519a42bb27SBarry Smith 
452*d083f849SBarry Smith    Logically Collective on dm
4539a42bb27SBarry Smith 
4549a42bb27SBarry Smith    Input Parameter:
4558353ddbbSDave May +  da - the DM context
4569a42bb27SBarry Smith -  prefix - the prefix to prepend to all option names
4579a42bb27SBarry Smith 
4589a42bb27SBarry Smith    Notes:
4599a42bb27SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4609a42bb27SBarry Smith    The first character of all runtime options is AUTOMATICALLY the hyphen.
4619a42bb27SBarry Smith 
4629a42bb27SBarry Smith    Level: advanced
4639a42bb27SBarry Smith 
4649a42bb27SBarry Smith .seealso: DMSetFromOptions()
4659a42bb27SBarry Smith @*/
4667087cfbeSBarry Smith PetscErrorCode  DMSetOptionsPrefix(DM dm,const char prefix[])
4679a42bb27SBarry Smith {
4689a42bb27SBarry Smith   PetscErrorCode ierr;
4699a42bb27SBarry Smith 
4709a42bb27SBarry Smith   PetscFunctionBegin;
4719a42bb27SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
4729a42bb27SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
473691be533SLawrence Mitchell   if (dm->sf) {
474691be533SLawrence Mitchell     ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->sf,prefix);CHKERRQ(ierr);
475691be533SLawrence Mitchell   }
476691be533SLawrence Mitchell   if (dm->defaultSF) {
477691be533SLawrence Mitchell     ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->defaultSF,prefix);CHKERRQ(ierr);
478691be533SLawrence Mitchell   }
4799a42bb27SBarry Smith   PetscFunctionReturn(0);
4809a42bb27SBarry Smith }
4819a42bb27SBarry Smith 
48231697293SDave May /*@C
48331697293SDave May    DMAppendOptionsPrefix - Appends to the prefix used for searching for all
48431697293SDave May    DM options in the database.
48531697293SDave May 
486*d083f849SBarry Smith    Logically Collective on dm
48731697293SDave May 
48831697293SDave May    Input Parameters:
48931697293SDave May +  dm - the DM context
49031697293SDave May -  prefix - the prefix string to prepend to all DM option requests
49131697293SDave May 
49231697293SDave May    Notes:
49331697293SDave May    A hyphen (-) must NOT be given at the beginning of the prefix name.
49431697293SDave May    The first character of all runtime options is AUTOMATICALLY the hyphen.
49531697293SDave May 
49631697293SDave May    Level: advanced
49731697293SDave May 
49831697293SDave May .seealso: DMSetOptionsPrefix(), DMGetOptionsPrefix()
49931697293SDave May @*/
50031697293SDave May PetscErrorCode  DMAppendOptionsPrefix(DM dm,const char prefix[])
50131697293SDave May {
50231697293SDave May   PetscErrorCode ierr;
50331697293SDave May 
50431697293SDave May   PetscFunctionBegin;
50531697293SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
50631697293SDave May   ierr = PetscObjectAppendOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
50731697293SDave May   PetscFunctionReturn(0);
50831697293SDave May }
50931697293SDave May 
51031697293SDave May /*@C
51131697293SDave May    DMGetOptionsPrefix - Gets the prefix used for searching for all
51231697293SDave May    DM options in the database.
51331697293SDave May 
51431697293SDave May    Not Collective
51531697293SDave May 
51631697293SDave May    Input Parameters:
51731697293SDave May .  dm - the DM context
51831697293SDave May 
51931697293SDave May    Output Parameters:
52031697293SDave May .  prefix - pointer to the prefix string used is returned
52131697293SDave May 
52295452b02SPatrick Sanan    Notes:
52395452b02SPatrick Sanan     On the fortran side, the user should pass in a string 'prefix' of
52431697293SDave May    sufficient length to hold the prefix.
52531697293SDave May 
52631697293SDave May    Level: advanced
52731697293SDave May 
52831697293SDave May .seealso: DMSetOptionsPrefix(), DMAppendOptionsPrefix()
52931697293SDave May @*/
53031697293SDave May PetscErrorCode  DMGetOptionsPrefix(DM dm,const char *prefix[])
53131697293SDave May {
53231697293SDave May   PetscErrorCode ierr;
53331697293SDave May 
53431697293SDave May   PetscFunctionBegin;
53531697293SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
53631697293SDave May   ierr = PetscObjectGetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
53731697293SDave May   PetscFunctionReturn(0);
53831697293SDave May }
53931697293SDave May 
54088bdff64SToby Isaac static PetscErrorCode DMCountNonCyclicReferences(DM dm, PetscBool recurseCoarse, PetscBool recurseFine, PetscInt *ncrefct)
54188bdff64SToby Isaac {
54288bdff64SToby Isaac   PetscInt i, refct = ((PetscObject) dm)->refct;
54388bdff64SToby Isaac   DMNamedVecLink nlink;
54488bdff64SToby Isaac   PetscErrorCode ierr;
54588bdff64SToby Isaac 
54688bdff64SToby Isaac   PetscFunctionBegin;
547aab5bcd8SJed Brown   *ncrefct = 0;
54888bdff64SToby Isaac   /* count all the circular references of DM and its contained Vecs */
54988bdff64SToby Isaac   for (i=0; i<DM_MAX_WORK_VECTORS; i++) {
55088bdff64SToby Isaac     if (dm->localin[i])  refct--;
55188bdff64SToby Isaac     if (dm->globalin[i]) refct--;
55288bdff64SToby Isaac   }
55388bdff64SToby Isaac   for (nlink=dm->namedglobal; nlink; nlink=nlink->next) refct--;
55488bdff64SToby Isaac   for (nlink=dm->namedlocal; nlink; nlink=nlink->next) refct--;
55588bdff64SToby Isaac   if (dm->x) {
55688bdff64SToby Isaac     DM obj;
55788bdff64SToby Isaac     ierr = VecGetDM(dm->x, &obj);CHKERRQ(ierr);
55888bdff64SToby Isaac     if (obj == dm) refct--;
55988bdff64SToby Isaac   }
56088bdff64SToby Isaac   if (dm->coarseMesh && dm->coarseMesh->fineMesh == dm) {
56188bdff64SToby Isaac     refct--;
56288bdff64SToby Isaac     if (recurseCoarse) {
56388bdff64SToby Isaac       PetscInt coarseCount;
56488bdff64SToby Isaac 
56588bdff64SToby Isaac       ierr = DMCountNonCyclicReferences(dm->coarseMesh, PETSC_TRUE, PETSC_FALSE,&coarseCount);CHKERRQ(ierr);
56688bdff64SToby Isaac       refct += coarseCount;
56788bdff64SToby Isaac     }
56888bdff64SToby Isaac   }
56988bdff64SToby Isaac   if (dm->fineMesh && dm->fineMesh->coarseMesh == dm) {
57088bdff64SToby Isaac     refct--;
57188bdff64SToby Isaac     if (recurseFine) {
57288bdff64SToby Isaac       PetscInt fineCount;
57388bdff64SToby Isaac 
57488bdff64SToby Isaac       ierr = DMCountNonCyclicReferences(dm->fineMesh, PETSC_FALSE, PETSC_TRUE,&fineCount);CHKERRQ(ierr);
57588bdff64SToby Isaac       refct += fineCount;
57688bdff64SToby Isaac     }
57788bdff64SToby Isaac   }
57888bdff64SToby Isaac   *ncrefct = refct;
57988bdff64SToby Isaac   PetscFunctionReturn(0);
58088bdff64SToby Isaac }
58188bdff64SToby Isaac 
582354557abSToby Isaac PetscErrorCode DMDestroyLabelLinkList(DM dm)
583354557abSToby Isaac {
584354557abSToby Isaac   PetscErrorCode ierr;
585354557abSToby Isaac 
586354557abSToby Isaac   PetscFunctionBegin;
587354557abSToby Isaac   if (!--(dm->labels->refct)) {
588354557abSToby Isaac     DMLabelLink next = dm->labels->next;
589354557abSToby Isaac 
590354557abSToby Isaac     /* destroy the labels */
591354557abSToby Isaac     while (next) {
592354557abSToby Isaac       DMLabelLink tmp = next->next;
593354557abSToby Isaac 
594354557abSToby Isaac       ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr);
595354557abSToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
596354557abSToby Isaac       next = tmp;
597354557abSToby Isaac     }
598354557abSToby Isaac     ierr = PetscFree(dm->labels);CHKERRQ(ierr);
599354557abSToby Isaac   }
600354557abSToby Isaac   PetscFunctionReturn(0);
601354557abSToby Isaac }
602354557abSToby Isaac 
60347c6ae99SBarry Smith /*@
6048472ad0fSDave May     DMDestroy - Destroys a vector packer or DM.
60547c6ae99SBarry Smith 
606*d083f849SBarry Smith     Collective on dm
60747c6ae99SBarry Smith 
60847c6ae99SBarry Smith     Input Parameter:
60947c6ae99SBarry Smith .   dm - the DM object to destroy
61047c6ae99SBarry Smith 
61147c6ae99SBarry Smith     Level: developer
61247c6ae99SBarry Smith 
613e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
61447c6ae99SBarry Smith 
61547c6ae99SBarry Smith @*/
616fcfd50ebSBarry Smith PetscErrorCode  DMDestroy(DM *dm)
61747c6ae99SBarry Smith {
61888bdff64SToby Isaac   PetscInt       i, cnt;
619dfe15315SJed Brown   DMNamedVecLink nlink,nnext;
62047c6ae99SBarry Smith   PetscErrorCode ierr;
62147c6ae99SBarry Smith 
62247c6ae99SBarry Smith   PetscFunctionBegin;
6236bf464f9SBarry Smith   if (!*dm) PetscFunctionReturn(0);
6246bf464f9SBarry Smith   PetscValidHeaderSpecific((*dm),DM_CLASSID,1);
62587e657c6SBarry Smith 
62688bdff64SToby Isaac   /* count all non-cyclic references in the doubly-linked list of coarse<->fine meshes */
62788bdff64SToby Isaac   ierr = DMCountNonCyclicReferences(*dm,PETSC_TRUE,PETSC_TRUE,&cnt);CHKERRQ(ierr);
62888bdff64SToby Isaac   --((PetscObject)(*dm))->refct;
62988bdff64SToby Isaac   if (--cnt > 0) {*dm = 0; PetscFunctionReturn(0);}
630732e2eb9SMatthew G Knepley   /*
631732e2eb9SMatthew G Knepley      Need this test because the dm references the vectors that
632732e2eb9SMatthew G Knepley      reference the dm, so destroying the dm calls destroy on the
633732e2eb9SMatthew G Knepley      vectors that cause another destroy on the dm
634732e2eb9SMatthew G Knepley   */
6356bf464f9SBarry Smith   if (((PetscObject)(*dm))->refct < 0) PetscFunctionReturn(0);
6366bf464f9SBarry Smith   ((PetscObject) (*dm))->refct = 0;
637732e2eb9SMatthew G Knepley   for (i=0; i<DM_MAX_WORK_VECTORS; i++) {
6386bf464f9SBarry Smith     if ((*dm)->localout[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Destroying a DM that has a local vector obtained with DMGetLocalVector()");
6396bf464f9SBarry Smith     ierr = VecDestroy(&(*dm)->localin[i]);CHKERRQ(ierr);
640732e2eb9SMatthew G Knepley   }
641f490541aSPeter Brune   nnext=(*dm)->namedglobal;
6420298fd71SBarry Smith   (*dm)->namedglobal = NULL;
643f490541aSPeter Brune   for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named vectors */
6442348bcf4SPeter Brune     nnext = nlink->next;
6452348bcf4SPeter 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);
6462348bcf4SPeter Brune     ierr = PetscFree(nlink->name);CHKERRQ(ierr);
6472348bcf4SPeter Brune     ierr = VecDestroy(&nlink->X);CHKERRQ(ierr);
6482348bcf4SPeter Brune     ierr = PetscFree(nlink);CHKERRQ(ierr);
6492348bcf4SPeter Brune   }
650f490541aSPeter Brune   nnext=(*dm)->namedlocal;
6510298fd71SBarry Smith   (*dm)->namedlocal = NULL;
652f490541aSPeter Brune   for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named local vectors */
653f490541aSPeter Brune     nnext = nlink->next;
654f490541aSPeter 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);
655f490541aSPeter Brune     ierr = PetscFree(nlink->name);CHKERRQ(ierr);
656f490541aSPeter Brune     ierr = VecDestroy(&nlink->X);CHKERRQ(ierr);
657f490541aSPeter Brune     ierr = PetscFree(nlink);CHKERRQ(ierr);
658f490541aSPeter Brune   }
6592348bcf4SPeter Brune 
660b17ce1afSJed Brown   /* Destroy the list of hooks */
661c833c3b5SJed Brown   {
662c833c3b5SJed Brown     DMCoarsenHookLink link,next;
663b17ce1afSJed Brown     for (link=(*dm)->coarsenhook; link; link=next) {
664b17ce1afSJed Brown       next = link->next;
665b17ce1afSJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
666b17ce1afSJed Brown     }
6670298fd71SBarry Smith     (*dm)->coarsenhook = NULL;
668c833c3b5SJed Brown   }
669c833c3b5SJed Brown   {
670c833c3b5SJed Brown     DMRefineHookLink link,next;
671c833c3b5SJed Brown     for (link=(*dm)->refinehook; link; link=next) {
672c833c3b5SJed Brown       next = link->next;
673c833c3b5SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
674c833c3b5SJed Brown     }
6750298fd71SBarry Smith     (*dm)->refinehook = NULL;
676c833c3b5SJed Brown   }
677be081cd6SPeter Brune   {
678be081cd6SPeter Brune     DMSubDomainHookLink link,next;
679be081cd6SPeter Brune     for (link=(*dm)->subdomainhook; link; link=next) {
680be081cd6SPeter Brune       next = link->next;
681be081cd6SPeter Brune       ierr = PetscFree(link);CHKERRQ(ierr);
682be081cd6SPeter Brune     }
6830298fd71SBarry Smith     (*dm)->subdomainhook = NULL;
684be081cd6SPeter Brune   }
685baf369e7SPeter Brune   {
686baf369e7SPeter Brune     DMGlobalToLocalHookLink link,next;
687baf369e7SPeter Brune     for (link=(*dm)->gtolhook; link; link=next) {
688baf369e7SPeter Brune       next = link->next;
689baf369e7SPeter Brune       ierr = PetscFree(link);CHKERRQ(ierr);
690baf369e7SPeter Brune     }
6910298fd71SBarry Smith     (*dm)->gtolhook = NULL;
692baf369e7SPeter Brune   }
693d4d07f1eSToby Isaac   {
694d4d07f1eSToby Isaac     DMLocalToGlobalHookLink link,next;
695d4d07f1eSToby Isaac     for (link=(*dm)->ltoghook; link; link=next) {
696d4d07f1eSToby Isaac       next = link->next;
697d4d07f1eSToby Isaac       ierr = PetscFree(link);CHKERRQ(ierr);
698d4d07f1eSToby Isaac     }
699d4d07f1eSToby Isaac     (*dm)->ltoghook = NULL;
700d4d07f1eSToby Isaac   }
701aa1993deSMatthew G Knepley   /* Destroy the work arrays */
702aa1993deSMatthew G Knepley   {
703aa1993deSMatthew G Knepley     DMWorkLink link,next;
704aa1993deSMatthew G Knepley     if ((*dm)->workout) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Work array still checked out");
705aa1993deSMatthew G Knepley     for (link=(*dm)->workin; link; link=next) {
706aa1993deSMatthew G Knepley       next = link->next;
707aa1993deSMatthew G Knepley       ierr = PetscFree(link->mem);CHKERRQ(ierr);
708aa1993deSMatthew G Knepley       ierr = PetscFree(link);CHKERRQ(ierr);
709aa1993deSMatthew G Knepley     }
7100298fd71SBarry Smith     (*dm)->workin = NULL;
711aa1993deSMatthew G Knepley   }
712c58f1c22SToby Isaac   if (!--((*dm)->labels->refct)) {
713c58f1c22SToby Isaac     DMLabelLink next = (*dm)->labels->next;
714c58f1c22SToby Isaac 
715c58f1c22SToby Isaac     /* destroy the labels */
716c58f1c22SToby Isaac     while (next) {
717c58f1c22SToby Isaac       DMLabelLink tmp = next->next;
718c58f1c22SToby Isaac 
719c58f1c22SToby Isaac       ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr);
720c58f1c22SToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
721c58f1c22SToby Isaac       next = tmp;
722c58f1c22SToby Isaac     }
723c58f1c22SToby Isaac     ierr = PetscFree((*dm)->labels);CHKERRQ(ierr);
724c58f1c22SToby Isaac   }
725e5e52638SMatthew G. Knepley   ierr = DMClearFields(*dm);CHKERRQ(ierr);
726e6f8dbb6SToby Isaac   {
727e6f8dbb6SToby Isaac     DMBoundary next = (*dm)->boundary;
728e6f8dbb6SToby Isaac     while (next) {
729e6f8dbb6SToby Isaac       DMBoundary b = next;
730e6f8dbb6SToby Isaac 
731e6f8dbb6SToby Isaac       next = b->next;
732e6f8dbb6SToby Isaac       ierr = PetscFree(b);CHKERRQ(ierr);
733e6f8dbb6SToby Isaac     }
734e6f8dbb6SToby Isaac   }
735b17ce1afSJed Brown 
73652536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmksp);CHKERRQ(ierr);
73752536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmsnes);CHKERRQ(ierr);
73852536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmts);CHKERRQ(ierr);
73952536dc3SBarry Smith 
7401a266240SBarry Smith   if ((*dm)->ctx && (*dm)->ctxdestroy) {
7411a266240SBarry Smith     ierr = (*(*dm)->ctxdestroy)(&(*dm)->ctx);CHKERRQ(ierr);
7421a266240SBarry Smith   }
74387e657c6SBarry Smith   ierr = VecDestroy(&(*dm)->x);CHKERRQ(ierr);
74471cd77b2SBarry Smith   ierr = MatFDColoringDestroy(&(*dm)->fd);CHKERRQ(ierr);
7454dcab191SBarry Smith   ierr = DMClearGlobalVectors(*dm);CHKERRQ(ierr);
7466bf464f9SBarry Smith   ierr = ISLocalToGlobalMappingDestroy(&(*dm)->ltogmap);CHKERRQ(ierr);
7476bf464f9SBarry Smith   ierr = PetscFree((*dm)->vectype);CHKERRQ(ierr);
748073dac72SJed Brown   ierr = PetscFree((*dm)->mattype);CHKERRQ(ierr);
74988ed4aceSMatthew G Knepley 
75088ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&(*dm)->defaultSection);CHKERRQ(ierr);
75188ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&(*dm)->defaultGlobalSection);CHKERRQ(ierr);
7528b1ab98fSJed Brown   ierr = PetscLayoutDestroy(&(*dm)->map);CHKERRQ(ierr);
753fba222abSToby Isaac   ierr = PetscSectionDestroy(&(*dm)->defaultConstraintSection);CHKERRQ(ierr);
754fba222abSToby Isaac   ierr = MatDestroy(&(*dm)->defaultConstraintMat);CHKERRQ(ierr);
75588ed4aceSMatthew G Knepley   ierr = PetscSFDestroy(&(*dm)->sf);CHKERRQ(ierr);
75688ed4aceSMatthew G Knepley   ierr = PetscSFDestroy(&(*dm)->defaultSF);CHKERRQ(ierr);
757736995cdSBlaise Bourdin   if ((*dm)->useNatural) {
758736995cdSBlaise Bourdin     if ((*dm)->sfNatural) {
7598e4ac7eaSMatthew G. Knepley       ierr = PetscSFDestroy(&(*dm)->sfNatural);CHKERRQ(ierr);
760736995cdSBlaise Bourdin     }
761736995cdSBlaise Bourdin     ierr = PetscObjectDereference((PetscObject) (*dm)->sfMigration);CHKERRQ(ierr);
762736995cdSBlaise Bourdin   }
76388bdff64SToby Isaac   if ((*dm)->coarseMesh && (*dm)->coarseMesh->fineMesh == *dm) {
76488bdff64SToby Isaac     ierr = DMSetFineDM((*dm)->coarseMesh,NULL);CHKERRQ(ierr);
76588bdff64SToby Isaac   }
766a8fb8f29SToby Isaac   ierr = DMDestroy(&(*dm)->coarseMesh);CHKERRQ(ierr);
76788bdff64SToby Isaac   if ((*dm)->fineMesh && (*dm)->fineMesh->coarseMesh == *dm) {
76888bdff64SToby Isaac     ierr = DMSetCoarseDM((*dm)->fineMesh,NULL);CHKERRQ(ierr);
76988bdff64SToby Isaac   }
77088bdff64SToby Isaac   ierr = DMDestroy(&(*dm)->fineMesh);CHKERRQ(ierr);
771f19dbd58SToby Isaac   ierr = DMFieldDestroy(&(*dm)->coordinateField);CHKERRQ(ierr);
7726636e97aSMatthew G Knepley   ierr = DMDestroy(&(*dm)->coordinateDM);CHKERRQ(ierr);
7736636e97aSMatthew G Knepley   ierr = VecDestroy(&(*dm)->coordinates);CHKERRQ(ierr);
7746636e97aSMatthew G Knepley   ierr = VecDestroy(&(*dm)->coordinatesLocal);CHKERRQ(ierr);
7755dc8c3f7SMatthew G. Knepley   ierr = PetscFree3((*dm)->L,(*dm)->maxCell,(*dm)->bdtype);CHKERRQ(ierr);
776ca3d3a14SMatthew G. Knepley   if ((*dm)->transformDestroy) {ierr = (*(*dm)->transformDestroy)(*dm, (*dm)->transformCtx);CHKERRQ(ierr);}
777ca3d3a14SMatthew G. Knepley   ierr = DMDestroy(&(*dm)->transformDM);CHKERRQ(ierr);
778ca3d3a14SMatthew G. Knepley   ierr = VecDestroy(&(*dm)->transform);CHKERRQ(ierr);
7796636e97aSMatthew G Knepley 
780e5e52638SMatthew G. Knepley   ierr = DMClearDS(*dm);CHKERRQ(ierr);
78114f150ffSMatthew G. Knepley   ierr = DMDestroy(&(*dm)->dmBC);CHKERRQ(ierr);
782e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
783e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*dm);CHKERRQ(ierr);
784732e2eb9SMatthew G Knepley 
785ed3c66a1SDave May   if ((*dm)->ops->destroy) {
7866bf464f9SBarry Smith     ierr = (*(*dm)->ops->destroy)(*dm);CHKERRQ(ierr);
787ed3c66a1SDave May   }
788435a35e8SMatthew G Knepley   /* We do not destroy (*dm)->data here so that we can reference count backend objects */
789732e2eb9SMatthew G Knepley   ierr = PetscHeaderDestroy(dm);CHKERRQ(ierr);
79047c6ae99SBarry Smith   PetscFunctionReturn(0);
79147c6ae99SBarry Smith }
79247c6ae99SBarry Smith 
793d7bf68aeSBarry Smith /*@
794d7bf68aeSBarry Smith     DMSetUp - sets up the data structures inside a DM object
795d7bf68aeSBarry Smith 
796*d083f849SBarry Smith     Collective on dm
797d7bf68aeSBarry Smith 
798d7bf68aeSBarry Smith     Input Parameter:
799d7bf68aeSBarry Smith .   dm - the DM object to setup
800d7bf68aeSBarry Smith 
801d7bf68aeSBarry Smith     Level: developer
802d7bf68aeSBarry Smith 
803e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
804d7bf68aeSBarry Smith 
805d7bf68aeSBarry Smith @*/
8067087cfbeSBarry Smith PetscErrorCode  DMSetUp(DM dm)
807d7bf68aeSBarry Smith {
808d7bf68aeSBarry Smith   PetscErrorCode ierr;
809d7bf68aeSBarry Smith 
810d7bf68aeSBarry Smith   PetscFunctionBegin;
811171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
8128387afaaSJed Brown   if (dm->setupcalled) PetscFunctionReturn(0);
813d7bf68aeSBarry Smith   if (dm->ops->setup) {
814d7bf68aeSBarry Smith     ierr = (*dm->ops->setup)(dm);CHKERRQ(ierr);
815d7bf68aeSBarry Smith   }
8168387afaaSJed Brown   dm->setupcalled = PETSC_TRUE;
817d7bf68aeSBarry Smith   PetscFunctionReturn(0);
818d7bf68aeSBarry Smith }
819d7bf68aeSBarry Smith 
820d7bf68aeSBarry Smith /*@
821d7bf68aeSBarry Smith     DMSetFromOptions - sets parameters in a DM from the options database
822d7bf68aeSBarry Smith 
823*d083f849SBarry Smith     Collective on dm
824d7bf68aeSBarry Smith 
825d7bf68aeSBarry Smith     Input Parameter:
826d7bf68aeSBarry Smith .   dm - the DM object to set options for
827d7bf68aeSBarry Smith 
828732e2eb9SMatthew G Knepley     Options Database:
8294164ae61SDominic Meiser +   -dm_preallocate_only - Only preallocate the matrix for DMCreateMatrix(), but do not fill it with zeros
8304164ae61SDominic Meiser .   -dm_vec_type <type>  - type of vector to create inside DM
8314164ae61SDominic Meiser .   -dm_mat_type <type>  - type of matrix to create inside DM
8328f1509bcSBarry Smith -   -dm_is_coloring_type - <global or local>
833732e2eb9SMatthew G Knepley 
834d7bf68aeSBarry Smith     Level: developer
835d7bf68aeSBarry Smith 
836e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
837d7bf68aeSBarry Smith 
838d7bf68aeSBarry Smith @*/
8397087cfbeSBarry Smith PetscErrorCode DMSetFromOptions(DM dm)
840d7bf68aeSBarry Smith {
8417781c08eSBarry Smith   char           typeName[256];
842ca266f36SBarry Smith   PetscBool      flg;
843d7bf68aeSBarry Smith   PetscErrorCode ierr;
844d7bf68aeSBarry Smith 
845d7bf68aeSBarry Smith   PetscFunctionBegin;
846171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
84749be4549SMatthew G. Knepley   dm->setfromoptionscalled = PETSC_TRUE;
84849be4549SMatthew G. Knepley   if (dm->sf) {ierr = PetscSFSetFromOptions(dm->sf);CHKERRQ(ierr);}
84949be4549SMatthew G. Knepley   if (dm->defaultSF) {ierr = PetscSFSetFromOptions(dm->defaultSF);CHKERRQ(ierr);}
8503194b578SJed Brown   ierr = PetscObjectOptionsBegin((PetscObject)dm);CHKERRQ(ierr);
8510298fd71SBarry 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);
852a264d7a6SBarry Smith   ierr = PetscOptionsFList("-dm_vec_type","Vector type used for created vectors","DMSetVecType",VecList,dm->vectype,typeName,256,&flg);CHKERRQ(ierr);
853f9ba7244SBarry Smith   if (flg) {
854f9ba7244SBarry Smith     ierr = DMSetVecType(dm,typeName);CHKERRQ(ierr);
855f9ba7244SBarry Smith   }
856a264d7a6SBarry 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);
857073dac72SJed Brown   if (flg) {
858521d9a4cSLisandro Dalcin     ierr = DMSetMatType(dm,typeName);CHKERRQ(ierr);
859073dac72SJed Brown   }
8608f1509bcSBarry Smith   ierr = PetscOptionsEnum("-dm_is_coloring_type","Global or local coloring of Jacobian","DMSetISColoringType",ISColoringTypes,(PetscEnum)dm->coloringtype,(PetscEnum*)&dm->coloringtype,NULL);CHKERRQ(ierr);
861f9ba7244SBarry Smith   if (dm->ops->setfromoptions) {
862e55864a3SBarry Smith     ierr = (*dm->ops->setfromoptions)(PetscOptionsObject,dm);CHKERRQ(ierr);
863f9ba7244SBarry Smith   }
864f9ba7244SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
8650633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject) dm);CHKERRQ(ierr);
86682fcb398SMatthew G Knepley   ierr = PetscOptionsEnd();CHKERRQ(ierr);
867d7bf68aeSBarry Smith   PetscFunctionReturn(0);
868d7bf68aeSBarry Smith }
869d7bf68aeSBarry Smith 
870fc9bc008SSatish Balay /*@C
871224748a4SBarry Smith     DMView - Views a DM
87247c6ae99SBarry Smith 
873*d083f849SBarry Smith     Collective on dm
87447c6ae99SBarry Smith 
87547c6ae99SBarry Smith     Input Parameter:
87647c6ae99SBarry Smith +   dm - the DM object to view
87747c6ae99SBarry Smith -   v - the viewer
87847c6ae99SBarry Smith 
879224748a4SBarry Smith     Level: beginner
88047c6ae99SBarry Smith 
881e727c939SJed Brown .seealso DMDestroy(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
88247c6ae99SBarry Smith 
88347c6ae99SBarry Smith @*/
8847087cfbeSBarry Smith PetscErrorCode  DMView(DM dm,PetscViewer v)
88547c6ae99SBarry Smith {
88647c6ae99SBarry Smith   PetscErrorCode    ierr;
88732c0f0efSBarry Smith   PetscBool         isbinary;
88876a8abe0SBarry Smith   PetscMPIInt       size;
88976a8abe0SBarry Smith   PetscViewerFormat format;
89047c6ae99SBarry Smith 
89147c6ae99SBarry Smith   PetscFunctionBegin;
892171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
8933014e516SBarry Smith   if (!v) {
894ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)dm),&v);CHKERRQ(ierr);
8953014e516SBarry Smith   }
8968bfd1ab9SVaclav Hapla   ierr = PetscViewerCheckWritable(v);CHKERRQ(ierr);
89776a8abe0SBarry Smith   ierr = PetscViewerGetFormat(v,&format);CHKERRQ(ierr);
89876a8abe0SBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm),&size);CHKERRQ(ierr);
89976a8abe0SBarry Smith   if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(0);
90098c3331eSBarry Smith   ierr = PetscObjectPrintClassNamePrefixType((PetscObject)dm,v);CHKERRQ(ierr);
90132c0f0efSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)v,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
90232c0f0efSBarry Smith   if (isbinary) {
90355849f57SBarry Smith     PetscInt classid = DM_FILE_CLASSID;
90432c0f0efSBarry Smith     char     type[256];
90532c0f0efSBarry Smith 
90632c0f0efSBarry Smith     ierr = PetscViewerBinaryWrite(v,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
90732c0f0efSBarry Smith     ierr = PetscStrncpy(type,((PetscObject)dm)->type_name,256);CHKERRQ(ierr);
90832c0f0efSBarry Smith     ierr = PetscViewerBinaryWrite(v,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
90932c0f0efSBarry Smith   }
9100c010503SBarry Smith   if (dm->ops->view) {
9110c010503SBarry Smith     ierr = (*dm->ops->view)(dm,v);CHKERRQ(ierr);
91247c6ae99SBarry Smith   }
91347c6ae99SBarry Smith   PetscFunctionReturn(0);
91447c6ae99SBarry Smith }
91547c6ae99SBarry Smith 
91647c6ae99SBarry Smith /*@
9178472ad0fSDave May     DMCreateGlobalVector - Creates a global vector from a DM object
91847c6ae99SBarry Smith 
919*d083f849SBarry Smith     Collective on dm
92047c6ae99SBarry Smith 
92147c6ae99SBarry Smith     Input Parameter:
92247c6ae99SBarry Smith .   dm - the DM object
92347c6ae99SBarry Smith 
92447c6ae99SBarry Smith     Output Parameter:
92547c6ae99SBarry Smith .   vec - the global vector
92647c6ae99SBarry Smith 
927073dac72SJed Brown     Level: beginner
92847c6ae99SBarry Smith 
929e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
93047c6ae99SBarry Smith 
93147c6ae99SBarry Smith @*/
9327087cfbeSBarry Smith PetscErrorCode  DMCreateGlobalVector(DM dm,Vec *vec)
93347c6ae99SBarry Smith {
93447c6ae99SBarry Smith   PetscErrorCode ierr;
93547c6ae99SBarry Smith 
93647c6ae99SBarry Smith   PetscFunctionBegin;
937171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
93847c6ae99SBarry Smith   ierr = (*dm->ops->createglobalvector)(dm,vec);CHKERRQ(ierr);
93947c6ae99SBarry Smith   PetscFunctionReturn(0);
94047c6ae99SBarry Smith }
94147c6ae99SBarry Smith 
94247c6ae99SBarry Smith /*@
9438472ad0fSDave May     DMCreateLocalVector - Creates a local vector from a DM object
94447c6ae99SBarry Smith 
94547c6ae99SBarry Smith     Not Collective
94647c6ae99SBarry Smith 
94747c6ae99SBarry Smith     Input Parameter:
94847c6ae99SBarry Smith .   dm - the DM object
94947c6ae99SBarry Smith 
95047c6ae99SBarry Smith     Output Parameter:
95147c6ae99SBarry Smith .   vec - the local vector
95247c6ae99SBarry Smith 
953073dac72SJed Brown     Level: beginner
95447c6ae99SBarry Smith 
955e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
95647c6ae99SBarry Smith 
95747c6ae99SBarry Smith @*/
9587087cfbeSBarry Smith PetscErrorCode  DMCreateLocalVector(DM dm,Vec *vec)
95947c6ae99SBarry Smith {
96047c6ae99SBarry Smith   PetscErrorCode ierr;
96147c6ae99SBarry Smith 
96247c6ae99SBarry Smith   PetscFunctionBegin;
963171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
96447c6ae99SBarry Smith   ierr = (*dm->ops->createlocalvector)(dm,vec);CHKERRQ(ierr);
96547c6ae99SBarry Smith   PetscFunctionReturn(0);
96647c6ae99SBarry Smith }
96747c6ae99SBarry Smith 
9681411c6eeSJed Brown /*@
9691411c6eeSJed Brown    DMGetLocalToGlobalMapping - Accesses the local-to-global mapping in a DM.
9701411c6eeSJed Brown 
971*d083f849SBarry Smith    Collective on dm
9721411c6eeSJed Brown 
9731411c6eeSJed Brown    Input Parameter:
9741411c6eeSJed Brown .  dm - the DM that provides the mapping
9751411c6eeSJed Brown 
9761411c6eeSJed Brown    Output Parameter:
9771411c6eeSJed Brown .  ltog - the mapping
9781411c6eeSJed Brown 
9791411c6eeSJed Brown    Level: intermediate
9801411c6eeSJed Brown 
9811411c6eeSJed Brown    Notes:
9821411c6eeSJed Brown    This mapping can then be used by VecSetLocalToGlobalMapping() or
9831411c6eeSJed Brown    MatSetLocalToGlobalMapping().
9841411c6eeSJed Brown 
985fc31e74dSBarry Smith .seealso: DMCreateLocalVector()
9861411c6eeSJed Brown @*/
9877087cfbeSBarry Smith PetscErrorCode DMGetLocalToGlobalMapping(DM dm,ISLocalToGlobalMapping *ltog)
9881411c6eeSJed Brown {
9890be3e97aSMatthew G. Knepley   PetscInt       bs = -1, bsLocal[2], bsMinMax[2];
9901411c6eeSJed Brown   PetscErrorCode ierr;
9911411c6eeSJed Brown 
9921411c6eeSJed Brown   PetscFunctionBegin;
9931411c6eeSJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
9941411c6eeSJed Brown   PetscValidPointer(ltog,2);
9951411c6eeSJed Brown   if (!dm->ltogmap) {
99637d0c07bSMatthew G Knepley     PetscSection section, sectionGlobal;
99737d0c07bSMatthew G Knepley 
998e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
99937d0c07bSMatthew G Knepley     if (section) {
1000a974ec88SMatthew G. Knepley       const PetscInt *cdofs;
100137d0c07bSMatthew G Knepley       PetscInt       *ltog;
1002ccf3bd66SMatthew G. Knepley       PetscInt        pStart, pEnd, n, p, k, l;
100337d0c07bSMatthew G Knepley 
1004e87a4003SBarry Smith       ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
100537d0c07bSMatthew G Knepley       ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
1006ccf3bd66SMatthew G. Knepley       ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr);
1007ccf3bd66SMatthew G. Knepley       ierr = PetscMalloc1(n, &ltog);CHKERRQ(ierr); /* We want the local+overlap size */
100837d0c07bSMatthew G Knepley       for (p = pStart, l = 0; p < pEnd; ++p) {
1009a974ec88SMatthew G. Knepley         PetscInt bdof, cdof, dof, off, c, cind = 0;
101037d0c07bSMatthew G Knepley 
101137d0c07bSMatthew G Knepley         /* Should probably use constrained dofs */
101237d0c07bSMatthew G Knepley         ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
1013a974ec88SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
1014a974ec88SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(section, p, &cdofs);CHKERRQ(ierr);
101537d0c07bSMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr);
10161a7dc684SMatthew G. Knepley         /* If you have dofs, and constraints, and they are unequal, we set the blocksize to 1 */
10171a7dc684SMatthew G. Knepley         bdof = cdof && (dof-cdof) ? 1 : dof;
10181a7dc684SMatthew G. Knepley         if (dof) {
1019b190aa46SMatthew G. Knepley           if (bs < 0)          {bs = bdof;}
1020b190aa46SMatthew G. Knepley           else if (bs != bdof) {bs = 1;}
10211a7dc684SMatthew G. Knepley         }
102237d0c07bSMatthew G Knepley         for (c = 0; c < dof; ++c, ++l) {
1023a974ec88SMatthew G. Knepley           if ((cind < cdof) && (c == cdofs[cind])) ltog[l] = off < 0 ? off-c : off+c;
1024a974ec88SMatthew G. Knepley           else                                     ltog[l] = (off < 0 ? -(off+1) : off) + c;
102537d0c07bSMatthew G Knepley         }
102637d0c07bSMatthew G Knepley       }
1027bff27382SMatthew G. Knepley       /* Must have same blocksize on all procs (some might have no points) */
10280be3e97aSMatthew G. Knepley       bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
10290be3e97aSMatthew G. Knepley       ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
10300be3e97aSMatthew G. Knepley       if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
10310be3e97aSMatthew G. Knepley       else                            {bs = bsMinMax[0];}
10327591dbb2SMatthew G. Knepley       bs = bs < 0 ? 1 : bs;
10337591dbb2SMatthew G. Knepley       /* Must reduce indices by blocksize */
1034ccf3bd66SMatthew G. Knepley       if (bs > 1) {
1035ccf3bd66SMatthew G. Knepley         for (l = 0, k = 0; l < n; l += bs, ++k) ltog[k] = ltog[l]/bs;
1036ccf3bd66SMatthew G. Knepley         n /= bs;
1037ccf3bd66SMatthew G. Knepley       }
1038ccf3bd66SMatthew G. Knepley       ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, n, ltog, PETSC_OWN_POINTER, &dm->ltogmap);CHKERRQ(ierr);
10393bb1ff40SBarry Smith       ierr = PetscLogObjectParent((PetscObject)dm, (PetscObject)dm->ltogmap);CHKERRQ(ierr);
104037d0c07bSMatthew G Knepley     } else {
1041184d77edSJed Brown       if (!dm->ops->getlocaltoglobalmapping) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM can not create LocalToGlobalMapping");
1042184d77edSJed Brown       ierr = (*dm->ops->getlocaltoglobalmapping)(dm);CHKERRQ(ierr);
10431411c6eeSJed Brown     }
104437d0c07bSMatthew G Knepley   }
10451411c6eeSJed Brown   *ltog = dm->ltogmap;
10461411c6eeSJed Brown   PetscFunctionReturn(0);
10471411c6eeSJed Brown }
10481411c6eeSJed Brown 
10491411c6eeSJed Brown /*@
10501411c6eeSJed Brown    DMGetBlockSize - Gets the inherent block size associated with a DM
10511411c6eeSJed Brown 
10521411c6eeSJed Brown    Not Collective
10531411c6eeSJed Brown 
10541411c6eeSJed Brown    Input Parameter:
10551411c6eeSJed Brown .  dm - the DM with block structure
10561411c6eeSJed Brown 
10571411c6eeSJed Brown    Output Parameter:
10581411c6eeSJed Brown .  bs - the block size, 1 implies no exploitable block structure
10591411c6eeSJed Brown 
10601411c6eeSJed Brown    Level: intermediate
10611411c6eeSJed Brown 
1062fc31e74dSBarry Smith .seealso: ISCreateBlock(), VecSetBlockSize(), MatSetBlockSize(), DMGetLocalToGlobalMapping()
10631411c6eeSJed Brown @*/
10647087cfbeSBarry Smith PetscErrorCode  DMGetBlockSize(DM dm,PetscInt *bs)
10651411c6eeSJed Brown {
10661411c6eeSJed Brown   PetscFunctionBegin;
10671411c6eeSJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
10681411c6eeSJed Brown   PetscValidPointer(bs,2);
10691411c6eeSJed 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");
10701411c6eeSJed Brown   *bs = dm->bs;
10711411c6eeSJed Brown   PetscFunctionReturn(0);
10721411c6eeSJed Brown }
10731411c6eeSJed Brown 
107447c6ae99SBarry Smith /*@
10758472ad0fSDave May     DMCreateInterpolation - Gets interpolation matrix between two DM objects
107647c6ae99SBarry Smith 
1077*d083f849SBarry Smith     Collective on dm1
107847c6ae99SBarry Smith 
107947c6ae99SBarry Smith     Input Parameter:
108047c6ae99SBarry Smith +   dm1 - the DM object
108147c6ae99SBarry Smith -   dm2 - the second, finer DM object
108247c6ae99SBarry Smith 
108347c6ae99SBarry Smith     Output Parameter:
108447c6ae99SBarry Smith +  mat - the interpolation
108547c6ae99SBarry Smith -  vec - the scaling (optional)
108647c6ae99SBarry Smith 
108747c6ae99SBarry Smith     Level: developer
108847c6ae99SBarry Smith 
108995452b02SPatrick Sanan     Notes:
109095452b02SPatrick 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
109185afcc9aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation.
1092d52bd9f3SBarry Smith 
10931f588964SMatthew G Knepley         For DMDA objects you can use this interpolation (more precisely the interpolation from the DMGetCoordinateDM()) to interpolate the mesh coordinate vectors
1094d52bd9f3SBarry Smith         EXCEPT in the periodic case where it does not make sense since the coordinate vectors are not periodic.
109585afcc9aSBarry Smith 
109685afcc9aSBarry Smith 
10973ad4599aSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction()
109847c6ae99SBarry Smith 
109947c6ae99SBarry Smith @*/
1100e727c939SJed Brown PetscErrorCode  DMCreateInterpolation(DM dm1,DM dm2,Mat *mat,Vec *vec)
110147c6ae99SBarry Smith {
110247c6ae99SBarry Smith   PetscErrorCode ierr;
110347c6ae99SBarry Smith 
110447c6ae99SBarry Smith   PetscFunctionBegin;
1105171400e9SBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
1106171400e9SBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
1107c7d20fa0SStefano Zampini   PetscValidPointer(mat,3);
1108c7d20fa0SStefano Zampini   if (!dm1->ops->createinterpolation) SETERRQ1(PetscObjectComm((PetscObject)dm1),PETSC_ERR_SUP,"DMCreateInterpolation not implemented for type %s",((PetscObject)dm1)->type_name);
1109cea54e9dSPatrick Farrell   ierr = PetscLogEventBegin(DM_CreateInterpolation,dm1,dm2,0,0);CHKERRQ(ierr);
111025296bd5SBarry Smith   ierr = (*dm1->ops->createinterpolation)(dm1,dm2,mat,vec);CHKERRQ(ierr);
1111cea54e9dSPatrick Farrell   ierr = PetscLogEventEnd(DM_CreateInterpolation,dm1,dm2,0,0);CHKERRQ(ierr);
111247c6ae99SBarry Smith   PetscFunctionReturn(0);
111347c6ae99SBarry Smith }
111447c6ae99SBarry Smith 
11153ad4599aSBarry Smith /*@
11163ad4599aSBarry Smith     DMCreateRestriction - Gets restriction matrix between two DM objects
11173ad4599aSBarry Smith 
1118*d083f849SBarry Smith     Collective on dm1
11193ad4599aSBarry Smith 
11203ad4599aSBarry Smith     Input Parameter:
11213ad4599aSBarry Smith +   dm1 - the DM object
11223ad4599aSBarry Smith -   dm2 - the second, finer DM object
11233ad4599aSBarry Smith 
11243ad4599aSBarry Smith     Output Parameter:
11253ad4599aSBarry Smith .  mat - the restriction
11263ad4599aSBarry Smith 
11273ad4599aSBarry Smith 
11283ad4599aSBarry Smith     Level: developer
11293ad4599aSBarry Smith 
113095452b02SPatrick Sanan     Notes:
113195452b02SPatrick 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
11323ad4599aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation.
11333ad4599aSBarry Smith 
11343ad4599aSBarry Smith 
11353ad4599aSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateInterpolation()
11363ad4599aSBarry Smith 
11373ad4599aSBarry Smith @*/
11383ad4599aSBarry Smith PetscErrorCode  DMCreateRestriction(DM dm1,DM dm2,Mat *mat)
11393ad4599aSBarry Smith {
11403ad4599aSBarry Smith   PetscErrorCode ierr;
11413ad4599aSBarry Smith 
11423ad4599aSBarry Smith   PetscFunctionBegin;
11433ad4599aSBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
11443ad4599aSBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
11453ad4599aSBarry Smith   ierr = PetscLogEventBegin(DM_CreateRestriction,dm1,dm2,0,0);CHKERRQ(ierr);
11467294143fSBarry Smith   if (!dm1->ops->createrestriction) SETERRQ(PetscObjectComm((PetscObject)dm1),PETSC_ERR_SUP,"DMCreateRestriction not implemented for this type");
11473ad4599aSBarry Smith   ierr = (*dm1->ops->createrestriction)(dm1,dm2,mat);CHKERRQ(ierr);
11483ad4599aSBarry Smith   ierr = PetscLogEventEnd(DM_CreateRestriction,dm1,dm2,0,0);CHKERRQ(ierr);
11493ad4599aSBarry Smith   PetscFunctionReturn(0);
11503ad4599aSBarry Smith }
11513ad4599aSBarry Smith 
115247c6ae99SBarry Smith /*@
11538472ad0fSDave May     DMCreateInjection - Gets injection matrix between two DM objects
115447c6ae99SBarry Smith 
1155*d083f849SBarry Smith     Collective on dm1
115647c6ae99SBarry Smith 
115747c6ae99SBarry Smith     Input Parameter:
115847c6ae99SBarry Smith +   dm1 - the DM object
115947c6ae99SBarry Smith -   dm2 - the second, finer DM object
116047c6ae99SBarry Smith 
116147c6ae99SBarry Smith     Output Parameter:
11626dbf9973SLawrence Mitchell .   mat - the injection
116347c6ae99SBarry Smith 
116447c6ae99SBarry Smith     Level: developer
116547c6ae99SBarry Smith 
116695452b02SPatrick Sanan    Notes:
116795452b02SPatrick 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
116885afcc9aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the injection.
116985afcc9aSBarry Smith 
1170e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMCreateInterpolation()
117147c6ae99SBarry Smith 
117247c6ae99SBarry Smith @*/
11736dbf9973SLawrence Mitchell PetscErrorCode  DMCreateInjection(DM dm1,DM dm2,Mat *mat)
117447c6ae99SBarry Smith {
117547c6ae99SBarry Smith   PetscErrorCode ierr;
117647c6ae99SBarry Smith 
117747c6ae99SBarry Smith   PetscFunctionBegin;
1178171400e9SBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
1179171400e9SBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
11800c4c9125SBarry Smith   if (!dm1->ops->getinjection) SETERRQ(PetscObjectComm((PetscObject)dm1),PETSC_ERR_SUP,"DMCreateInjection not implemented for this type");
11816dbf9973SLawrence Mitchell   ierr = (*dm1->ops->getinjection)(dm1,dm2,mat);CHKERRQ(ierr);
118247c6ae99SBarry Smith   PetscFunctionReturn(0);
118347c6ae99SBarry Smith }
118447c6ae99SBarry Smith 
1185b412c318SBarry Smith /*@
1186bd041c0cSMatthew G. Knepley   DMCreateMassMatrix - Gets mass matrix between two DM objects, M_ij = \int \phi_i \psi_j
1187bd041c0cSMatthew G. Knepley 
1188*d083f849SBarry Smith   Collective on dm1
1189bd041c0cSMatthew G. Knepley 
1190bd041c0cSMatthew G. Knepley   Input Parameter:
1191bd041c0cSMatthew G. Knepley + dm1 - the DM object
1192bd041c0cSMatthew G. Knepley - dm2 - the second, finer DM object
1193bd041c0cSMatthew G. Knepley 
1194bd041c0cSMatthew G. Knepley   Output Parameter:
1195bd041c0cSMatthew G. Knepley . mat - the interpolation
1196bd041c0cSMatthew G. Knepley 
1197bd041c0cSMatthew G. Knepley   Level: developer
1198bd041c0cSMatthew G. Knepley 
1199bd041c0cSMatthew G. Knepley .seealso DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction(), DMCreateInterpolation(), DMCreateInjection()
1200bd041c0cSMatthew G. Knepley @*/
1201bd041c0cSMatthew G. Knepley PetscErrorCode DMCreateMassMatrix(DM dm1, DM dm2, Mat *mat)
1202bd041c0cSMatthew G. Knepley {
1203bd041c0cSMatthew G. Knepley   PetscErrorCode ierr;
1204bd041c0cSMatthew G. Knepley 
1205bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
1206bd041c0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm1, DM_CLASSID, 1);
1207bd041c0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm2, DM_CLASSID, 2);
1208bd041c0cSMatthew G. Knepley   ierr = (*dm1->ops->createmassmatrix)(dm1, dm2, mat);CHKERRQ(ierr);
1209bd041c0cSMatthew G. Knepley   PetscFunctionReturn(0);
1210bd041c0cSMatthew G. Knepley }
1211bd041c0cSMatthew G. Knepley 
1212bd041c0cSMatthew G. Knepley /*@
1213b412c318SBarry Smith     DMCreateColoring - Gets coloring for a DM
121447c6ae99SBarry Smith 
1215*d083f849SBarry Smith     Collective on dm
121647c6ae99SBarry Smith 
121747c6ae99SBarry Smith     Input Parameter:
121847c6ae99SBarry Smith +   dm - the DM object
12195bdb020cSBarry Smith -   ctype - IS_COLORING_LOCAL or IS_COLORING_GLOBAL
122047c6ae99SBarry Smith 
122147c6ae99SBarry Smith     Output Parameter:
122247c6ae99SBarry Smith .   coloring - the coloring
122347c6ae99SBarry Smith 
122447c6ae99SBarry Smith     Level: developer
122547c6ae99SBarry Smith 
1226b412c318SBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateMatrix(), DMSetMatType()
122747c6ae99SBarry Smith 
1228aab9d709SJed Brown @*/
1229b412c318SBarry Smith PetscErrorCode  DMCreateColoring(DM dm,ISColoringType ctype,ISColoring *coloring)
123047c6ae99SBarry Smith {
123147c6ae99SBarry Smith   PetscErrorCode ierr;
123247c6ae99SBarry Smith 
123347c6ae99SBarry Smith   PetscFunctionBegin;
1234171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1235ce94432eSBarry Smith   if (!dm->ops->getcoloring) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No coloring for this type of DM yet");
1236b412c318SBarry Smith   ierr = (*dm->ops->getcoloring)(dm,ctype,coloring);CHKERRQ(ierr);
123747c6ae99SBarry Smith   PetscFunctionReturn(0);
123847c6ae99SBarry Smith }
123947c6ae99SBarry Smith 
1240b412c318SBarry Smith /*@
12418472ad0fSDave May     DMCreateMatrix - Gets empty Jacobian for a DM
124247c6ae99SBarry Smith 
1243*d083f849SBarry Smith     Collective on dm
124447c6ae99SBarry Smith 
124547c6ae99SBarry Smith     Input Parameter:
1246b412c318SBarry Smith .   dm - the DM object
124747c6ae99SBarry Smith 
124847c6ae99SBarry Smith     Output Parameter:
124947c6ae99SBarry Smith .   mat - the empty Jacobian
125047c6ae99SBarry Smith 
1251073dac72SJed Brown     Level: beginner
125247c6ae99SBarry Smith 
125395452b02SPatrick Sanan     Notes:
125495452b02SPatrick Sanan     This properly preallocates the number of nonzeros in the sparse matrix so you
125594013140SBarry Smith        do not need to do it yourself.
125694013140SBarry Smith 
125794013140SBarry Smith        By default it also sets the nonzero structure and puts in the zero entries. To prevent setting
12587889ec69SBarry Smith        the nonzero pattern call DMSetMatrixPreallocateOnly()
125994013140SBarry Smith 
126094013140SBarry 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
126194013140SBarry Smith        internally by PETSc.
126294013140SBarry Smith 
126394013140SBarry Smith        For structured grid problems, in general it is easiest to use MatSetValuesStencil() or MatSetValuesLocal() to put values into the matrix because MatSetValues() requires
1264aa219208SBarry Smith        the indices for the global numbering for DMDAs which is complicated.
126594013140SBarry Smith 
1266b412c318SBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMSetMatType()
126747c6ae99SBarry Smith 
1268aab9d709SJed Brown @*/
1269b412c318SBarry Smith PetscErrorCode  DMCreateMatrix(DM dm,Mat *mat)
127047c6ae99SBarry Smith {
127147c6ae99SBarry Smith   PetscErrorCode ierr;
127247c6ae99SBarry Smith 
127347c6ae99SBarry Smith   PetscFunctionBegin;
1274171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1275607a6623SBarry Smith   ierr = MatInitializePackage();CHKERRQ(ierr);
1276c7b7c8a4SJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1277c7b7c8a4SJed Brown   PetscValidPointer(mat,3);
1278b412c318SBarry Smith   ierr = (*dm->ops->creatematrix)(dm,mat);CHKERRQ(ierr);
1279e571a35bSMatthew G. Knepley   /* Handle nullspace and near nullspace */
1280e5e52638SMatthew G. Knepley   if (dm->Nf) {
1281e571a35bSMatthew G. Knepley     MatNullSpace nullSpace;
1282e571a35bSMatthew G. Knepley     PetscInt     Nf;
1283e571a35bSMatthew G. Knepley 
1284e5e52638SMatthew G. Knepley     ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
1285e571a35bSMatthew G. Knepley     if (Nf == 1) {
1286e571a35bSMatthew G. Knepley       if (dm->nullspaceConstructors[0]) {
1287e571a35bSMatthew G. Knepley         ierr = (*dm->nullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr);
1288e571a35bSMatthew G. Knepley         ierr = MatSetNullSpace(*mat, nullSpace);CHKERRQ(ierr);
1289e571a35bSMatthew G. Knepley         ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
1290e571a35bSMatthew G. Knepley       }
1291e571a35bSMatthew G. Knepley       if (dm->nearnullspaceConstructors[0]) {
1292e571a35bSMatthew G. Knepley         ierr = (*dm->nearnullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr);
1293e571a35bSMatthew G. Knepley         ierr = MatSetNearNullSpace(*mat, nullSpace);CHKERRQ(ierr);
1294e571a35bSMatthew G. Knepley         ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
1295e571a35bSMatthew G. Knepley       }
1296e571a35bSMatthew G. Knepley     }
1297e571a35bSMatthew G. Knepley   }
129847c6ae99SBarry Smith   PetscFunctionReturn(0);
129947c6ae99SBarry Smith }
130047c6ae99SBarry Smith 
1301732e2eb9SMatthew G Knepley /*@
1302950540a4SJed Brown   DMSetMatrixPreallocateOnly - When DMCreateMatrix() is called the matrix will be properly
1303732e2eb9SMatthew G Knepley     preallocated but the nonzero structure and zero values will not be set.
1304732e2eb9SMatthew G Knepley 
1305*d083f849SBarry Smith   Logically Collective on dm
1306732e2eb9SMatthew G Knepley 
1307732e2eb9SMatthew G Knepley   Input Parameter:
1308732e2eb9SMatthew G Knepley + dm - the DM
1309732e2eb9SMatthew G Knepley - only - PETSC_TRUE if only want preallocation
1310732e2eb9SMatthew G Knepley 
1311732e2eb9SMatthew G Knepley   Level: developer
1312b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixStructureOnly()
1313732e2eb9SMatthew G Knepley @*/
1314732e2eb9SMatthew G Knepley PetscErrorCode DMSetMatrixPreallocateOnly(DM dm, PetscBool only)
1315732e2eb9SMatthew G Knepley {
1316732e2eb9SMatthew G Knepley   PetscFunctionBegin;
1317732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1318732e2eb9SMatthew G Knepley   dm->prealloc_only = only;
1319732e2eb9SMatthew G Knepley   PetscFunctionReturn(0);
1320732e2eb9SMatthew G Knepley }
1321732e2eb9SMatthew G Knepley 
1322b06ff27eSHong Zhang /*@
1323b06ff27eSHong Zhang   DMSetMatrixStructureOnly - When DMCreateMatrix() is called, the matrix structure will be created
1324b06ff27eSHong Zhang     but the array for values will not be allocated.
1325b06ff27eSHong Zhang 
1326*d083f849SBarry Smith   Logically Collective on dm
1327b06ff27eSHong Zhang 
1328b06ff27eSHong Zhang   Input Parameter:
1329b06ff27eSHong Zhang + dm - the DM
1330b06ff27eSHong Zhang - only - PETSC_TRUE if only want matrix stucture
1331b06ff27eSHong Zhang 
1332b06ff27eSHong Zhang   Level: developer
1333b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixPreallocateOnly()
1334b06ff27eSHong Zhang @*/
1335b06ff27eSHong Zhang PetscErrorCode DMSetMatrixStructureOnly(DM dm, PetscBool only)
1336b06ff27eSHong Zhang {
1337b06ff27eSHong Zhang   PetscFunctionBegin;
1338b06ff27eSHong Zhang   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1339b06ff27eSHong Zhang   dm->structure_only = only;
1340b06ff27eSHong Zhang   PetscFunctionReturn(0);
1341b06ff27eSHong Zhang }
1342b06ff27eSHong Zhang 
1343a89ea682SMatthew G Knepley /*@C
1344aa1993deSMatthew G Knepley   DMGetWorkArray - Gets a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray()
1345a89ea682SMatthew G Knepley 
1346a89ea682SMatthew G Knepley   Not Collective
1347a89ea682SMatthew G Knepley 
1348a89ea682SMatthew G Knepley   Input Parameters:
1349a89ea682SMatthew G Knepley + dm - the DM object
1350aa1993deSMatthew G Knepley . count - The minium size
135169291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT)
1352a89ea682SMatthew G Knepley 
1353a89ea682SMatthew G Knepley   Output Parameter:
1354a89ea682SMatthew G Knepley . array - the work array
1355a89ea682SMatthew G Knepley 
1356a89ea682SMatthew G Knepley   Level: developer
1357a89ea682SMatthew G Knepley 
1358a89ea682SMatthew G Knepley .seealso DMDestroy(), DMCreate()
1359a89ea682SMatthew G Knepley @*/
136069291d52SBarry Smith PetscErrorCode DMGetWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem)
1361a89ea682SMatthew G Knepley {
1362a89ea682SMatthew G Knepley   PetscErrorCode ierr;
1363aa1993deSMatthew G Knepley   DMWorkLink     link;
136469291d52SBarry Smith   PetscMPIInt    dsize;
1365a89ea682SMatthew G Knepley 
1366a89ea682SMatthew G Knepley   PetscFunctionBegin;
1367a89ea682SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1368aa1993deSMatthew G Knepley   PetscValidPointer(mem,4);
1369aa1993deSMatthew G Knepley   if (dm->workin) {
1370aa1993deSMatthew G Knepley     link       = dm->workin;
1371aa1993deSMatthew G Knepley     dm->workin = dm->workin->next;
1372aa1993deSMatthew G Knepley   } else {
1373b00a9115SJed Brown     ierr = PetscNewLog(dm,&link);CHKERRQ(ierr);
1374a89ea682SMatthew G Knepley   }
137569291d52SBarry Smith   ierr = MPI_Type_size(dtype,&dsize);CHKERRQ(ierr);
13765056fcd2SBarry Smith   if (((size_t)dsize*count) > link->bytes) {
1377aa1993deSMatthew G Knepley     ierr        = PetscFree(link->mem);CHKERRQ(ierr);
1378854ce69bSBarry Smith     ierr        = PetscMalloc(dsize*count,&link->mem);CHKERRQ(ierr);
1379854ce69bSBarry Smith     link->bytes = dsize*count;
1380aa1993deSMatthew G Knepley   }
1381aa1993deSMatthew G Knepley   link->next   = dm->workout;
1382aa1993deSMatthew G Knepley   dm->workout  = link;
1383aa1993deSMatthew G Knepley   *(void**)mem = link->mem;
1384a89ea682SMatthew G Knepley   PetscFunctionReturn(0);
1385a89ea682SMatthew G Knepley }
1386a89ea682SMatthew G Knepley 
1387aa1993deSMatthew G Knepley /*@C
1388aa1993deSMatthew G Knepley   DMRestoreWorkArray - Restores a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray()
1389aa1993deSMatthew G Knepley 
1390aa1993deSMatthew G Knepley   Not Collective
1391aa1993deSMatthew G Knepley 
1392aa1993deSMatthew G Knepley   Input Parameters:
1393aa1993deSMatthew G Knepley + dm - the DM object
1394aa1993deSMatthew G Knepley . count - The minium size
139569291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT
1396aa1993deSMatthew G Knepley 
1397aa1993deSMatthew G Knepley   Output Parameter:
1398aa1993deSMatthew G Knepley . array - the work array
1399aa1993deSMatthew G Knepley 
1400aa1993deSMatthew G Knepley   Level: developer
1401aa1993deSMatthew G Knepley 
140295452b02SPatrick Sanan   Developer Notes:
140395452b02SPatrick Sanan     count and dtype are ignored, they are only needed for DMGetWorkArray()
1404aa1993deSMatthew G Knepley .seealso DMDestroy(), DMCreate()
1405aa1993deSMatthew G Knepley @*/
140669291d52SBarry Smith PetscErrorCode DMRestoreWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem)
1407aa1993deSMatthew G Knepley {
1408aa1993deSMatthew G Knepley   DMWorkLink *p,link;
1409aa1993deSMatthew G Knepley 
1410aa1993deSMatthew G Knepley   PetscFunctionBegin;
1411aa1993deSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1412aa1993deSMatthew G Knepley   PetscValidPointer(mem,4);
1413aa1993deSMatthew G Knepley   for (p=&dm->workout; (link=*p); p=&link->next) {
1414aa1993deSMatthew G Knepley     if (link->mem == *(void**)mem) {
1415aa1993deSMatthew G Knepley       *p           = link->next;
1416aa1993deSMatthew G Knepley       link->next   = dm->workin;
1417aa1993deSMatthew G Knepley       dm->workin   = link;
14180298fd71SBarry Smith       *(void**)mem = NULL;
1419aa1993deSMatthew G Knepley       PetscFunctionReturn(0);
1420aa1993deSMatthew G Knepley     }
1421aa1993deSMatthew G Knepley   }
1422aa1993deSMatthew G Knepley   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Array was not checked out");
1423aa1993deSMatthew G Knepley }
1424e7c4fc90SDmitry Karpeev 
1425435a35e8SMatthew G Knepley PetscErrorCode DMSetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1426435a35e8SMatthew G Knepley {
1427435a35e8SMatthew G Knepley   PetscFunctionBegin;
1428435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
142982f516ccSBarry Smith   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1430435a35e8SMatthew G Knepley   dm->nullspaceConstructors[field] = nullsp;
1431435a35e8SMatthew G Knepley   PetscFunctionReturn(0);
1432435a35e8SMatthew G Knepley }
1433435a35e8SMatthew G Knepley 
14340a50eb56SMatthew G. Knepley PetscErrorCode DMGetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
14350a50eb56SMatthew G. Knepley {
14360a50eb56SMatthew G. Knepley   PetscFunctionBegin;
14370a50eb56SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1438f9d4088aSMatthew G. Knepley   PetscValidPointer(nullsp, 3);
14390a50eb56SMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
14400a50eb56SMatthew G. Knepley   *nullsp = dm->nullspaceConstructors[field];
14410a50eb56SMatthew G. Knepley   PetscFunctionReturn(0);
14420a50eb56SMatthew G. Knepley }
14430a50eb56SMatthew G. Knepley 
1444f9d4088aSMatthew G. Knepley PetscErrorCode DMSetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1445f9d4088aSMatthew G. Knepley {
1446f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1447f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1448f9d4088aSMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1449f9d4088aSMatthew G. Knepley   dm->nearnullspaceConstructors[field] = nullsp;
1450f9d4088aSMatthew G. Knepley   PetscFunctionReturn(0);
1451f9d4088aSMatthew G. Knepley }
1452f9d4088aSMatthew G. Knepley 
1453f9d4088aSMatthew G. Knepley PetscErrorCode DMGetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1454f9d4088aSMatthew G. Knepley {
1455f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1456f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1457f9d4088aSMatthew G. Knepley   PetscValidPointer(nullsp, 3);
1458f9d4088aSMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1459f9d4088aSMatthew G. Knepley   *nullsp = dm->nearnullspaceConstructors[field];
1460f9d4088aSMatthew G. Knepley   PetscFunctionReturn(0);
1461f9d4088aSMatthew G. Knepley }
1462f9d4088aSMatthew G. Knepley 
14634f3b5142SJed Brown /*@C
14644d343eeaSMatthew G Knepley   DMCreateFieldIS - Creates a set of IS objects with the global indices of dofs for each field
14654d343eeaSMatthew G Knepley 
14664d343eeaSMatthew G Knepley   Not collective
14674d343eeaSMatthew G Knepley 
14684d343eeaSMatthew G Knepley   Input Parameter:
14694d343eeaSMatthew G Knepley . dm - the DM object
14704d343eeaSMatthew G Knepley 
14714d343eeaSMatthew G Knepley   Output Parameters:
14720298fd71SBarry Smith + numFields  - The number of fields (or NULL if not requested)
14730298fd71SBarry Smith . fieldNames - The name for each field (or NULL if not requested)
14740298fd71SBarry Smith - fields     - The global indices for each field (or NULL if not requested)
14754d343eeaSMatthew G Knepley 
14764d343eeaSMatthew G Knepley   Level: intermediate
14774d343eeaSMatthew G Knepley 
147821c9b008SJed Brown   Notes:
147921c9b008SJed Brown   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
148021c9b008SJed Brown   PetscFree(), every entry of fields should be destroyed with ISDestroy(), and both arrays should be freed with
148121c9b008SJed Brown   PetscFree().
148221c9b008SJed Brown 
14834d343eeaSMatthew G Knepley .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
14844d343eeaSMatthew G Knepley @*/
148537d0c07bSMatthew G Knepley PetscErrorCode DMCreateFieldIS(DM dm, PetscInt *numFields, char ***fieldNames, IS **fields)
14864d343eeaSMatthew G Knepley {
148737d0c07bSMatthew G Knepley   PetscSection   section, sectionGlobal;
14884d343eeaSMatthew G Knepley   PetscErrorCode ierr;
14894d343eeaSMatthew G Knepley 
14904d343eeaSMatthew G Knepley   PetscFunctionBegin;
14914d343eeaSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
149269ca1f37SDmitry Karpeev   if (numFields) {
149369ca1f37SDmitry Karpeev     PetscValidPointer(numFields,2);
149469ca1f37SDmitry Karpeev     *numFields = 0;
149569ca1f37SDmitry Karpeev   }
149637d0c07bSMatthew G Knepley   if (fieldNames) {
149737d0c07bSMatthew G Knepley     PetscValidPointer(fieldNames,3);
14980298fd71SBarry Smith     *fieldNames = NULL;
149969ca1f37SDmitry Karpeev   }
150069ca1f37SDmitry Karpeev   if (fields) {
150169ca1f37SDmitry Karpeev     PetscValidPointer(fields,4);
15020298fd71SBarry Smith     *fields = NULL;
150369ca1f37SDmitry Karpeev   }
1504e87a4003SBarry Smith   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
150537d0c07bSMatthew G Knepley   if (section) {
15063a544194SStefano Zampini     PetscInt *fieldSizes, *fieldNc, **fieldIndices;
150737d0c07bSMatthew G Knepley     PetscInt nF, f, pStart, pEnd, p;
150837d0c07bSMatthew G Knepley 
1509e87a4003SBarry Smith     ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
151037d0c07bSMatthew G Knepley     ierr = PetscSectionGetNumFields(section, &nF);CHKERRQ(ierr);
15113a544194SStefano Zampini     ierr = PetscMalloc3(nF,&fieldSizes,nF,&fieldNc,nF,&fieldIndices);CHKERRQ(ierr);
151237d0c07bSMatthew G Knepley     ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr);
151337d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
151437d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
15153a544194SStefano Zampini       ierr          = PetscSectionGetFieldComponents(section, f, &fieldNc[f]);CHKERRQ(ierr);
151637d0c07bSMatthew G Knepley     }
151737d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
151837d0c07bSMatthew G Knepley       PetscInt gdof;
151937d0c07bSMatthew G Knepley 
152037d0c07bSMatthew G Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
152137d0c07bSMatthew G Knepley       if (gdof > 0) {
152237d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
15233a544194SStefano Zampini           PetscInt fdof, fcdof, fpdof;
152437d0c07bSMatthew G Knepley 
152537d0c07bSMatthew G Knepley           ierr  = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
152637d0c07bSMatthew G Knepley           ierr  = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
15273a544194SStefano Zampini           fpdof = fdof-fcdof;
15283a544194SStefano Zampini           if (fpdof && fpdof != fieldNc[f]) {
15293a544194SStefano Zampini             /* Layout does not admit a pointwise block size */
15303a544194SStefano Zampini             fieldNc[f] = 1;
15313a544194SStefano Zampini           }
15323a544194SStefano Zampini           fieldSizes[f] += fpdof;
153337d0c07bSMatthew G Knepley         }
153437d0c07bSMatthew G Knepley       }
153537d0c07bSMatthew G Knepley     }
153637d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
1537785e854fSJed Brown       ierr          = PetscMalloc1(fieldSizes[f], &fieldIndices[f]);CHKERRQ(ierr);
153837d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
153937d0c07bSMatthew G Knepley     }
154037d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
154137d0c07bSMatthew G Knepley       PetscInt gdof, goff;
154237d0c07bSMatthew G Knepley 
154337d0c07bSMatthew G Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
154437d0c07bSMatthew G Knepley       if (gdof > 0) {
154537d0c07bSMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr);
154637d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
154737d0c07bSMatthew G Knepley           PetscInt fdof, fcdof, fc;
154837d0c07bSMatthew G Knepley 
154937d0c07bSMatthew G Knepley           ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
155037d0c07bSMatthew G Knepley           ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
155137d0c07bSMatthew G Knepley           for (fc = 0; fc < fdof-fcdof; ++fc, ++fieldSizes[f]) {
155237d0c07bSMatthew G Knepley             fieldIndices[f][fieldSizes[f]] = goff++;
155337d0c07bSMatthew G Knepley           }
155437d0c07bSMatthew G Knepley         }
155537d0c07bSMatthew G Knepley       }
155637d0c07bSMatthew G Knepley     }
15578865f1eaSKarl Rupp     if (numFields) *numFields = nF;
155837d0c07bSMatthew G Knepley     if (fieldNames) {
1559785e854fSJed Brown       ierr = PetscMalloc1(nF, fieldNames);CHKERRQ(ierr);
156037d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
156137d0c07bSMatthew G Knepley         const char *fieldName;
156237d0c07bSMatthew G Knepley 
156337d0c07bSMatthew G Knepley         ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr);
156437d0c07bSMatthew G Knepley         ierr = PetscStrallocpy(fieldName, (char**) &(*fieldNames)[f]);CHKERRQ(ierr);
156537d0c07bSMatthew G Knepley       }
156637d0c07bSMatthew G Knepley     }
156737d0c07bSMatthew G Knepley     if (fields) {
1568785e854fSJed Brown       ierr = PetscMalloc1(nF, fields);CHKERRQ(ierr);
156937d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
15703a544194SStefano Zampini         PetscInt bs, in[2], out[2];
15713a544194SStefano Zampini 
157282f516ccSBarry Smith         ierr  = ISCreateGeneral(PetscObjectComm((PetscObject)dm), fieldSizes[f], fieldIndices[f], PETSC_OWN_POINTER, &(*fields)[f]);CHKERRQ(ierr);
15733a544194SStefano Zampini         in[0] = -fieldNc[f];
15743a544194SStefano Zampini         in[1] = fieldNc[f];
15753a544194SStefano Zampini         ierr  = MPIU_Allreduce(in, out, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
15763a544194SStefano Zampini         bs    = (-out[0] == out[1]) ? out[1] : 1;
15773a544194SStefano Zampini         ierr  = ISSetBlockSize((*fields)[f], bs);CHKERRQ(ierr);
157837d0c07bSMatthew G Knepley       }
157937d0c07bSMatthew G Knepley     }
15803a544194SStefano Zampini     ierr = PetscFree3(fieldSizes,fieldNc,fieldIndices);CHKERRQ(ierr);
15818865f1eaSKarl Rupp   } else if (dm->ops->createfieldis) {
15828865f1eaSKarl Rupp     ierr = (*dm->ops->createfieldis)(dm, numFields, fieldNames, fields);CHKERRQ(ierr);
158369ca1f37SDmitry Karpeev   }
15844d343eeaSMatthew G Knepley   PetscFunctionReturn(0);
15854d343eeaSMatthew G Knepley }
15864d343eeaSMatthew G Knepley 
158716621825SDmitry Karpeev 
158816621825SDmitry Karpeev /*@C
158916621825SDmitry Karpeev   DMCreateFieldDecomposition - Returns a list of IS objects defining a decomposition of a problem into subproblems
159016621825SDmitry Karpeev                           corresponding to different fields: each IS contains the global indices of the dofs of the
159116621825SDmitry Karpeev                           corresponding field. The optional list of DMs define the DM for each subproblem.
1592e7c4fc90SDmitry Karpeev                           Generalizes DMCreateFieldIS().
1593e7c4fc90SDmitry Karpeev 
1594e7c4fc90SDmitry Karpeev   Not collective
1595e7c4fc90SDmitry Karpeev 
1596e7c4fc90SDmitry Karpeev   Input Parameter:
1597e7c4fc90SDmitry Karpeev . dm - the DM object
1598e7c4fc90SDmitry Karpeev 
1599e7c4fc90SDmitry Karpeev   Output Parameters:
16000298fd71SBarry Smith + len       - The number of subproblems in the field decomposition (or NULL if not requested)
16010298fd71SBarry Smith . namelist  - The name for each field (or NULL if not requested)
16020298fd71SBarry Smith . islist    - The global indices for each field (or NULL if not requested)
16030298fd71SBarry Smith - dmlist    - The DMs for each field subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined)
1604e7c4fc90SDmitry Karpeev 
1605e7c4fc90SDmitry Karpeev   Level: intermediate
1606e7c4fc90SDmitry Karpeev 
1607e7c4fc90SDmitry Karpeev   Notes:
1608e7c4fc90SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
1609e7c4fc90SDmitry Karpeev   PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(),
1610e7c4fc90SDmitry Karpeev   and all of the arrays should be freed with PetscFree().
1611e7c4fc90SDmitry Karpeev 
1612e7c4fc90SDmitry Karpeev .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1613e7c4fc90SDmitry Karpeev @*/
161416621825SDmitry Karpeev PetscErrorCode DMCreateFieldDecomposition(DM dm, PetscInt *len, char ***namelist, IS **islist, DM **dmlist)
1615e7c4fc90SDmitry Karpeev {
1616e7c4fc90SDmitry Karpeev   PetscErrorCode ierr;
1617e7c4fc90SDmitry Karpeev 
1618e7c4fc90SDmitry Karpeev   PetscFunctionBegin;
1619e7c4fc90SDmitry Karpeev   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
16208865f1eaSKarl Rupp   if (len) {
16218865f1eaSKarl Rupp     PetscValidPointer(len,2);
16228865f1eaSKarl Rupp     *len = 0;
16238865f1eaSKarl Rupp   }
16248865f1eaSKarl Rupp   if (namelist) {
16258865f1eaSKarl Rupp     PetscValidPointer(namelist,3);
16268865f1eaSKarl Rupp     *namelist = 0;
16278865f1eaSKarl Rupp   }
16288865f1eaSKarl Rupp   if (islist) {
16298865f1eaSKarl Rupp     PetscValidPointer(islist,4);
16308865f1eaSKarl Rupp     *islist = 0;
16318865f1eaSKarl Rupp   }
16328865f1eaSKarl Rupp   if (dmlist) {
16338865f1eaSKarl Rupp     PetscValidPointer(dmlist,5);
16348865f1eaSKarl Rupp     *dmlist = 0;
16358865f1eaSKarl Rupp   }
1636f3f0edfdSDmitry Karpeev   /*
1637f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
1638f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
1639f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
1640f3f0edfdSDmitry Karpeev    */
1641ce94432eSBarry Smith   if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
164216621825SDmitry Karpeev   if (!dm->ops->createfielddecomposition) {
1643435a35e8SMatthew G Knepley     PetscSection section;
1644435a35e8SMatthew G Knepley     PetscInt     numFields, f;
1645435a35e8SMatthew G Knepley 
1646e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
1647435a35e8SMatthew G Knepley     if (section) {ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);}
1648435a35e8SMatthew G Knepley     if (section && numFields && dm->ops->createsubdm) {
1649f25d98f1SMatthew G. Knepley       if (len) *len = numFields;
165003dc3394SMatthew G. Knepley       if (namelist) {ierr = PetscMalloc1(numFields,namelist);CHKERRQ(ierr);}
165103dc3394SMatthew G. Knepley       if (islist)   {ierr = PetscMalloc1(numFields,islist);CHKERRQ(ierr);}
165203dc3394SMatthew G. Knepley       if (dmlist)   {ierr = PetscMalloc1(numFields,dmlist);CHKERRQ(ierr);}
1653435a35e8SMatthew G Knepley       for (f = 0; f < numFields; ++f) {
1654435a35e8SMatthew G Knepley         const char *fieldName;
1655435a35e8SMatthew G Knepley 
165603dc3394SMatthew G. Knepley         ierr = DMCreateSubDM(dm, 1, &f, islist ? &(*islist)[f] : NULL, dmlist ? &(*dmlist)[f] : NULL);CHKERRQ(ierr);
165703dc3394SMatthew G. Knepley         if (namelist) {
1658435a35e8SMatthew G Knepley           ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr);
1659435a35e8SMatthew G Knepley           ierr = PetscStrallocpy(fieldName, (char**) &(*namelist)[f]);CHKERRQ(ierr);
1660435a35e8SMatthew G Knepley         }
166103dc3394SMatthew G. Knepley       }
1662435a35e8SMatthew G Knepley     } else {
166369ca1f37SDmitry Karpeev       ierr = DMCreateFieldIS(dm, len, namelist, islist);CHKERRQ(ierr);
1664e7c4fc90SDmitry Karpeev       /* By default there are no DMs associated with subproblems. */
16650298fd71SBarry Smith       if (dmlist) *dmlist = NULL;
1666e7c4fc90SDmitry Karpeev     }
16678865f1eaSKarl Rupp   } else {
166816621825SDmitry Karpeev     ierr = (*dm->ops->createfielddecomposition)(dm,len,namelist,islist,dmlist);CHKERRQ(ierr);
166916621825SDmitry Karpeev   }
167016621825SDmitry Karpeev   PetscFunctionReturn(0);
167116621825SDmitry Karpeev }
167216621825SDmitry Karpeev 
1673564cec59SMatthew G. Knepley /*@
1674435a35e8SMatthew G Knepley   DMCreateSubDM - Returns an IS and DM encapsulating a subproblem defined by the fields passed in.
1675435a35e8SMatthew G Knepley                   The fields are defined by DMCreateFieldIS().
1676435a35e8SMatthew G Knepley 
1677435a35e8SMatthew G Knepley   Not collective
1678435a35e8SMatthew G Knepley 
1679435a35e8SMatthew G Knepley   Input Parameters:
16802adcc780SMatthew G. Knepley + dm        - The DM object
16812adcc780SMatthew G. Knepley . numFields - The number of fields in this subproblem
16822adcc780SMatthew G. Knepley - fields    - The field numbers of the selected fields
1683435a35e8SMatthew G Knepley 
1684435a35e8SMatthew G Knepley   Output Parameters:
16852adcc780SMatthew G. Knepley + is - The global indices for the subproblem
16862adcc780SMatthew G. Knepley - subdm - The DM for the subproblem
1687435a35e8SMatthew G Knepley 
16885d3b26e6SMatthew G. Knepley   Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed
16895d3b26e6SMatthew G. Knepley 
1690435a35e8SMatthew G Knepley   Level: intermediate
1691435a35e8SMatthew G Knepley 
16925d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1693435a35e8SMatthew G Knepley @*/
169437bc7515SMatthew G. Knepley PetscErrorCode DMCreateSubDM(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm)
1695435a35e8SMatthew G Knepley {
1696435a35e8SMatthew G Knepley   PetscErrorCode ierr;
1697435a35e8SMatthew G Knepley 
1698435a35e8SMatthew G Knepley   PetscFunctionBegin;
1699435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1700435a35e8SMatthew G Knepley   PetscValidPointer(fields,3);
17018865f1eaSKarl Rupp   if (is) PetscValidPointer(is,4);
17028865f1eaSKarl Rupp   if (subdm) PetscValidPointer(subdm,5);
1703435a35e8SMatthew G Knepley   if (dm->ops->createsubdm) {
1704435a35e8SMatthew G Knepley     ierr = (*dm->ops->createsubdm)(dm, numFields, fields, is, subdm);CHKERRQ(ierr);
170582f516ccSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "This type has no DMCreateSubDM implementation defined");
1706435a35e8SMatthew G Knepley   PetscFunctionReturn(0);
1707435a35e8SMatthew G Knepley }
1708435a35e8SMatthew G Knepley 
17092adcc780SMatthew G. Knepley /*@C
17102adcc780SMatthew G. Knepley   DMCreateSuperDM - Returns an arrays of ISes and DM encapsulating a superproblem defined by the DMs passed in.
17112adcc780SMatthew G. Knepley 
17122adcc780SMatthew G. Knepley   Not collective
17132adcc780SMatthew G. Knepley 
17142adcc780SMatthew G. Knepley   Input Parameter:
17152adcc780SMatthew G. Knepley + dms - The DM objects
17162adcc780SMatthew G. Knepley - len - The number of DMs
17172adcc780SMatthew G. Knepley 
17182adcc780SMatthew G. Knepley   Output Parameters:
1719a42bd24dSMatthew G. Knepley + is - The global indices for the subproblem, or NULL
17202adcc780SMatthew G. Knepley - superdm - The DM for the superproblem
17212adcc780SMatthew G. Knepley 
17225d3b26e6SMatthew G. Knepley   Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed
17235d3b26e6SMatthew G. Knepley 
17242adcc780SMatthew G. Knepley   Level: intermediate
17252adcc780SMatthew G. Knepley 
17265d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
17272adcc780SMatthew G. Knepley @*/
17282adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM(DM dms[], PetscInt len, IS **is, DM *superdm)
17292adcc780SMatthew G. Knepley {
17302adcc780SMatthew G. Knepley   PetscInt       i;
17312adcc780SMatthew G. Knepley   PetscErrorCode ierr;
17322adcc780SMatthew G. Knepley 
17332adcc780SMatthew G. Knepley   PetscFunctionBegin;
17342adcc780SMatthew G. Knepley   PetscValidPointer(dms,1);
17352adcc780SMatthew G. Knepley   for (i = 0; i < len; ++i) {PetscValidHeaderSpecific(dms[i],DM_CLASSID,1);}
17362adcc780SMatthew G. Knepley   if (is) PetscValidPointer(is,3);
1737a42bd24dSMatthew G. Knepley   PetscValidPointer(superdm,4);
17382adcc780SMatthew G. Knepley   if (len < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Number of DMs must be nonnegative: %D", len);
17392adcc780SMatthew G. Knepley   if (len) {
1740a42bd24dSMatthew G. Knepley     if (dms[0]->ops->createsuperdm) {ierr = (*dms[0]->ops->createsuperdm)(dms, len, is, superdm);CHKERRQ(ierr);}
1741a42bd24dSMatthew G. Knepley     else SETERRQ(PetscObjectComm((PetscObject) dms[0]), PETSC_ERR_SUP, "This type has no DMCreateSuperDM implementation defined");
17422adcc780SMatthew G. Knepley   }
17432adcc780SMatthew G. Knepley   PetscFunctionReturn(0);
17442adcc780SMatthew G. Knepley }
17452adcc780SMatthew G. Knepley 
174616621825SDmitry Karpeev 
174716621825SDmitry Karpeev /*@C
17488d4ac253SDmitry Karpeev   DMCreateDomainDecomposition - Returns lists of IS objects defining a decomposition of a problem into subproblems
17498d4ac253SDmitry Karpeev                           corresponding to restrictions to pairs nested subdomains: each IS contains the global
17508d4ac253SDmitry Karpeev                           indices of the dofs of the corresponding subdomains.  The inner subdomains conceptually
17518d4ac253SDmitry Karpeev                           define a nonoverlapping covering, while outer subdomains can overlap.
17528d4ac253SDmitry Karpeev                           The optional list of DMs define the DM for each subproblem.
175316621825SDmitry Karpeev 
175416621825SDmitry Karpeev   Not collective
175516621825SDmitry Karpeev 
175616621825SDmitry Karpeev   Input Parameter:
175716621825SDmitry Karpeev . dm - the DM object
175816621825SDmitry Karpeev 
175916621825SDmitry Karpeev   Output Parameters:
17600298fd71SBarry Smith + len         - The number of subproblems in the domain decomposition (or NULL if not requested)
17610298fd71SBarry Smith . namelist    - The name for each subdomain (or NULL if not requested)
17620298fd71SBarry Smith . innerislist - The global indices for each inner subdomain (or NULL, if not requested)
17630298fd71SBarry Smith . outerislist - The global indices for each outer subdomain (or NULL, if not requested)
17640298fd71SBarry Smith - dmlist      - The DMs for each subdomain subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined)
176516621825SDmitry Karpeev 
176616621825SDmitry Karpeev   Level: intermediate
176716621825SDmitry Karpeev 
176816621825SDmitry Karpeev   Notes:
176916621825SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
177016621825SDmitry Karpeev   PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(),
177116621825SDmitry Karpeev   and all of the arrays should be freed with PetscFree().
177216621825SDmitry Karpeev 
17738d4ac253SDmitry Karpeev .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateDomainDecompositionDM(), DMCreateFieldDecomposition()
177416621825SDmitry Karpeev @*/
17758d4ac253SDmitry Karpeev PetscErrorCode DMCreateDomainDecomposition(DM dm, PetscInt *len, char ***namelist, IS **innerislist, IS **outerislist, DM **dmlist)
177616621825SDmitry Karpeev {
177716621825SDmitry Karpeev   PetscErrorCode      ierr;
1778be081cd6SPeter Brune   DMSubDomainHookLink link;
1779be081cd6SPeter Brune   PetscInt            i,l;
178016621825SDmitry Karpeev 
178116621825SDmitry Karpeev   PetscFunctionBegin;
178216621825SDmitry Karpeev   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
178314a18fd3SPeter Brune   if (len)           {PetscValidPointer(len,2);            *len         = 0;}
17840298fd71SBarry Smith   if (namelist)      {PetscValidPointer(namelist,3);       *namelist    = NULL;}
17850298fd71SBarry Smith   if (innerislist)   {PetscValidPointer(innerislist,4);    *innerislist = NULL;}
17860298fd71SBarry Smith   if (outerislist)   {PetscValidPointer(outerislist,5);    *outerislist = NULL;}
17870298fd71SBarry Smith   if (dmlist)        {PetscValidPointer(dmlist,6);         *dmlist      = NULL;}
1788f3f0edfdSDmitry Karpeev   /*
1789f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
1790f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
1791f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
1792f3f0edfdSDmitry Karpeev    */
1793ce94432eSBarry Smith   if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
179416621825SDmitry Karpeev   if (dm->ops->createdomaindecomposition) {
1795be081cd6SPeter Brune     ierr = (*dm->ops->createdomaindecomposition)(dm,&l,namelist,innerislist,outerislist,dmlist);CHKERRQ(ierr);
179614a18fd3SPeter Brune     /* copy subdomain hooks and context over to the subdomain DMs */
1797f891f5b9SPatrick Sanan     if (dmlist && *dmlist) {
1798be081cd6SPeter Brune       for (i = 0; i < l; i++) {
1799be081cd6SPeter Brune         for (link=dm->subdomainhook; link; link=link->next) {
1800be081cd6SPeter Brune           if (link->ddhook) {ierr = (*link->ddhook)(dm,(*dmlist)[i],link->ctx);CHKERRQ(ierr);}
1801be081cd6SPeter Brune         }
1802648262bbSPatrick Sanan         if (dm->ctx) (*dmlist)[i]->ctx = dm->ctx;
1803e7c4fc90SDmitry Karpeev       }
180414a18fd3SPeter Brune     }
180514a18fd3SPeter Brune     if (len) *len = l;
180614a18fd3SPeter Brune   }
1807e30e807fSPeter Brune   PetscFunctionReturn(0);
1808e30e807fSPeter Brune }
1809e30e807fSPeter Brune 
1810e30e807fSPeter Brune 
1811e30e807fSPeter Brune /*@C
1812e30e807fSPeter Brune   DMCreateDomainDecompositionScatters - Returns scatters to the subdomain vectors from the global vector
1813e30e807fSPeter Brune 
1814e30e807fSPeter Brune   Not collective
1815e30e807fSPeter Brune 
1816e30e807fSPeter Brune   Input Parameters:
1817e30e807fSPeter Brune + dm - the DM object
1818e30e807fSPeter Brune . n  - the number of subdomain scatters
1819e30e807fSPeter Brune - subdms - the local subdomains
1820e30e807fSPeter Brune 
1821e30e807fSPeter Brune   Output Parameters:
1822e30e807fSPeter Brune + n     - the number of scatters returned
1823e30e807fSPeter Brune . iscat - scatter from global vector to nonoverlapping global vector entries on subdomain
1824e30e807fSPeter Brune . oscat - scatter from global vector to overlapping global vector entries on subdomain
1825e30e807fSPeter Brune - gscat - scatter from global vector to local vector on subdomain (fills in ghosts)
1826e30e807fSPeter Brune 
182795452b02SPatrick Sanan   Notes:
182895452b02SPatrick Sanan     This is an alternative to the iis and ois arguments in DMCreateDomainDecomposition that allow for the solution
1829e30e807fSPeter Brune   of general nonlinear problems with overlapping subdomain methods.  While merely having index sets that enable subsets
1830e30e807fSPeter Brune   of the residual equations to be created is fine for linear problems, nonlinear problems require local assembly of
1831e30e807fSPeter Brune   solution and residual data.
1832e30e807fSPeter Brune 
1833e30e807fSPeter Brune   Level: developer
1834e30e807fSPeter Brune 
1835e30e807fSPeter Brune .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1836e30e807fSPeter Brune @*/
1837e30e807fSPeter Brune PetscErrorCode DMCreateDomainDecompositionScatters(DM dm,PetscInt n,DM *subdms,VecScatter **iscat,VecScatter **oscat,VecScatter **gscat)
1838e30e807fSPeter Brune {
1839e30e807fSPeter Brune   PetscErrorCode ierr;
1840e30e807fSPeter Brune 
1841e30e807fSPeter Brune   PetscFunctionBegin;
1842e30e807fSPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1843e30e807fSPeter Brune   PetscValidPointer(subdms,3);
1844e30e807fSPeter Brune   if (dm->ops->createddscatters) {
1845e30e807fSPeter Brune     ierr = (*dm->ops->createddscatters)(dm,n,subdms,iscat,oscat,gscat);CHKERRQ(ierr);
18466668ed41SLisandro Dalcin   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "This type has no DMCreateDomainDecompositionScatter implementation defined");
1847e7c4fc90SDmitry Karpeev   PetscFunctionReturn(0);
1848e7c4fc90SDmitry Karpeev }
1849e7c4fc90SDmitry Karpeev 
185047c6ae99SBarry Smith /*@
185147c6ae99SBarry Smith   DMRefine - Refines a DM object
185247c6ae99SBarry Smith 
1853*d083f849SBarry Smith   Collective on dm
185447c6ae99SBarry Smith 
185547c6ae99SBarry Smith   Input Parameter:
185647c6ae99SBarry Smith + dm   - the DM object
185791d95f02SJed Brown - comm - the communicator to contain the new DM object (or MPI_COMM_NULL)
185847c6ae99SBarry Smith 
185947c6ae99SBarry Smith   Output Parameter:
18600298fd71SBarry Smith . dmf - the refined DM, or NULL
1861ae0a1c52SMatthew G Knepley 
18620298fd71SBarry Smith   Note: If no refinement was done, the return value is NULL
186347c6ae99SBarry Smith 
186447c6ae99SBarry Smith   Level: developer
186547c6ae99SBarry Smith 
1866e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
186747c6ae99SBarry Smith @*/
18687087cfbeSBarry Smith PetscErrorCode  DMRefine(DM dm,MPI_Comm comm,DM *dmf)
186947c6ae99SBarry Smith {
187047c6ae99SBarry Smith   PetscErrorCode   ierr;
1871c833c3b5SJed Brown   DMRefineHookLink link;
187247c6ae99SBarry Smith 
187347c6ae99SBarry Smith   PetscFunctionBegin;
1874732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
18751ac00216SMatthew G. Knepley   ierr = PetscLogEventBegin(DM_Refine,dm,0,0,0);CHKERRQ(ierr);
1876fef3a512SBarry Smith   if (!dm->ops->refine) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM cannot refine");
187747c6ae99SBarry Smith   ierr = (*dm->ops->refine)(dm,comm,dmf);CHKERRQ(ierr);
18784057135bSMatthew G Knepley   if (*dmf) {
187943842a1eSJed Brown     (*dmf)->ops->creatematrix = dm->ops->creatematrix;
18808865f1eaSKarl Rupp 
18818cd211a4SJed Brown     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmf);CHKERRQ(ierr);
18828865f1eaSKarl Rupp 
1883644e2e5bSBarry Smith     (*dmf)->ctx       = dm->ctx;
18840598a293SJed Brown     (*dmf)->leveldown = dm->leveldown;
1885656b349aSBarry Smith     (*dmf)->levelup   = dm->levelup + 1;
18868865f1eaSKarl Rupp 
1887e4b4b23bSJed Brown     ierr = DMSetMatType(*dmf,dm->mattype);CHKERRQ(ierr);
1888c833c3b5SJed Brown     for (link=dm->refinehook; link; link=link->next) {
18898865f1eaSKarl Rupp       if (link->refinehook) {
18908865f1eaSKarl Rupp         ierr = (*link->refinehook)(dm,*dmf,link->ctx);CHKERRQ(ierr);
18918865f1eaSKarl Rupp       }
1892c833c3b5SJed Brown     }
1893c833c3b5SJed Brown   }
18941ac00216SMatthew G. Knepley   ierr = PetscLogEventEnd(DM_Refine,dm,0,0,0);CHKERRQ(ierr);
1895c833c3b5SJed Brown   PetscFunctionReturn(0);
1896c833c3b5SJed Brown }
1897c833c3b5SJed Brown 
1898bb9467b5SJed Brown /*@C
1899c833c3b5SJed Brown    DMRefineHookAdd - adds a callback to be run when interpolating a nonlinear problem to a finer grid
1900c833c3b5SJed Brown 
1901c833c3b5SJed Brown    Logically Collective
1902c833c3b5SJed Brown 
1903c833c3b5SJed Brown    Input Arguments:
1904c833c3b5SJed Brown +  coarse - nonlinear solver context on which to run a hook when restricting to a coarser level
1905c833c3b5SJed Brown .  refinehook - function to run when setting up a coarser level
1906c833c3b5SJed Brown .  interphook - function to run to update data on finer levels (once per SNESSolve())
19070298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
1908c833c3b5SJed Brown 
1909c833c3b5SJed Brown    Calling sequence of refinehook:
1910c833c3b5SJed Brown $    refinehook(DM coarse,DM fine,void *ctx);
1911c833c3b5SJed Brown 
1912c833c3b5SJed Brown +  coarse - coarse level DM
1913c833c3b5SJed Brown .  fine - fine level DM to interpolate problem to
1914c833c3b5SJed Brown -  ctx - optional user-defined function context
1915c833c3b5SJed Brown 
1916c833c3b5SJed Brown    Calling sequence for interphook:
1917c833c3b5SJed Brown $    interphook(DM coarse,Mat interp,DM fine,void *ctx)
1918c833c3b5SJed Brown 
1919c833c3b5SJed Brown +  coarse - coarse level DM
1920c833c3b5SJed Brown .  interp - matrix interpolating a coarse-level solution to the finer grid
1921c833c3b5SJed Brown .  fine - fine level DM to update
1922c833c3b5SJed Brown -  ctx - optional user-defined function context
1923c833c3b5SJed Brown 
1924c833c3b5SJed Brown    Level: advanced
1925c833c3b5SJed Brown 
1926c833c3b5SJed Brown    Notes:
1927c833c3b5SJed Brown    This function is only needed if auxiliary data needs to be passed to fine grids while grid sequencing
1928c833c3b5SJed Brown 
1929c833c3b5SJed Brown    If this function is called multiple times, the hooks will be run in the order they are added.
1930c833c3b5SJed Brown 
1931bb9467b5SJed Brown    This function is currently not available from Fortran.
1932bb9467b5SJed Brown 
1933c833c3b5SJed Brown .seealso: DMCoarsenHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
1934c833c3b5SJed Brown @*/
1935c833c3b5SJed Brown PetscErrorCode DMRefineHookAdd(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx)
1936c833c3b5SJed Brown {
1937c833c3b5SJed Brown   PetscErrorCode   ierr;
1938c833c3b5SJed Brown   DMRefineHookLink link,*p;
1939c833c3b5SJed Brown 
1940c833c3b5SJed Brown   PetscFunctionBegin;
1941c833c3b5SJed Brown   PetscValidHeaderSpecific(coarse,DM_CLASSID,1);
19423d8e3701SJed Brown   for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
19433d8e3701SJed Brown     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) PetscFunctionReturn(0);
19443d8e3701SJed Brown   }
194595dccacaSBarry Smith   ierr             = PetscNew(&link);CHKERRQ(ierr);
1946c833c3b5SJed Brown   link->refinehook = refinehook;
1947c833c3b5SJed Brown   link->interphook = interphook;
1948c833c3b5SJed Brown   link->ctx        = ctx;
19490298fd71SBarry Smith   link->next       = NULL;
1950c833c3b5SJed Brown   *p               = link;
1951c833c3b5SJed Brown   PetscFunctionReturn(0);
1952c833c3b5SJed Brown }
1953c833c3b5SJed Brown 
19543d8e3701SJed Brown /*@C
19553d8e3701SJed Brown    DMRefineHookRemove - remove a callback from the list of hooks to be run when interpolating a nonlinear problem to a finer grid
19563d8e3701SJed Brown 
19573d8e3701SJed Brown    Logically Collective
19583d8e3701SJed Brown 
19593d8e3701SJed Brown    Input Arguments:
19603d8e3701SJed Brown +  coarse - nonlinear solver context on which to run a hook when restricting to a coarser level
19613d8e3701SJed Brown .  refinehook - function to run when setting up a coarser level
19623d8e3701SJed Brown .  interphook - function to run to update data on finer levels (once per SNESSolve())
19633d8e3701SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
19643d8e3701SJed Brown 
19653d8e3701SJed Brown    Level: advanced
19663d8e3701SJed Brown 
19673d8e3701SJed Brown    Notes:
19683d8e3701SJed Brown    This function does nothing if the hook is not in the list.
19693d8e3701SJed Brown 
19703d8e3701SJed Brown    This function is currently not available from Fortran.
19713d8e3701SJed Brown 
19723d8e3701SJed Brown .seealso: DMCoarsenHookRemove(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
19733d8e3701SJed Brown @*/
19743d8e3701SJed Brown PetscErrorCode DMRefineHookRemove(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx)
19753d8e3701SJed Brown {
19763d8e3701SJed Brown   PetscErrorCode   ierr;
19773d8e3701SJed Brown   DMRefineHookLink link,*p;
19783d8e3701SJed Brown 
19793d8e3701SJed Brown   PetscFunctionBegin;
19803d8e3701SJed Brown   PetscValidHeaderSpecific(coarse,DM_CLASSID,1);
19813d8e3701SJed Brown   for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Search the list of current hooks */
19823d8e3701SJed Brown     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) {
19833d8e3701SJed Brown       link = *p;
19843d8e3701SJed Brown       *p = link->next;
19853d8e3701SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
19863d8e3701SJed Brown       break;
19873d8e3701SJed Brown     }
19883d8e3701SJed Brown   }
19893d8e3701SJed Brown   PetscFunctionReturn(0);
19903d8e3701SJed Brown }
19913d8e3701SJed Brown 
1992c833c3b5SJed Brown /*@
1993c833c3b5SJed Brown    DMInterpolate - interpolates user-defined problem data to a finer DM by running hooks registered by DMRefineHookAdd()
1994c833c3b5SJed Brown 
1995c833c3b5SJed Brown    Collective if any hooks are
1996c833c3b5SJed Brown 
1997c833c3b5SJed Brown    Input Arguments:
1998c833c3b5SJed Brown +  coarse - coarser DM to use as a base
1999e91eccc2SStefano Zampini .  interp - interpolation matrix, apply using MatInterpolate()
2000c833c3b5SJed Brown -  fine - finer DM to update
2001c833c3b5SJed Brown 
2002c833c3b5SJed Brown    Level: developer
2003c833c3b5SJed Brown 
2004c833c3b5SJed Brown .seealso: DMRefineHookAdd(), MatInterpolate()
2005c833c3b5SJed Brown @*/
2006c833c3b5SJed Brown PetscErrorCode DMInterpolate(DM coarse,Mat interp,DM fine)
2007c833c3b5SJed Brown {
2008c833c3b5SJed Brown   PetscErrorCode   ierr;
2009c833c3b5SJed Brown   DMRefineHookLink link;
2010c833c3b5SJed Brown 
2011c833c3b5SJed Brown   PetscFunctionBegin;
2012c833c3b5SJed Brown   for (link=fine->refinehook; link; link=link->next) {
20138865f1eaSKarl Rupp     if (link->interphook) {
20148865f1eaSKarl Rupp       ierr = (*link->interphook)(coarse,interp,fine,link->ctx);CHKERRQ(ierr);
20158865f1eaSKarl Rupp     }
20164057135bSMatthew G Knepley   }
201747c6ae99SBarry Smith   PetscFunctionReturn(0);
201847c6ae99SBarry Smith }
201947c6ae99SBarry Smith 
2020eb3f98d2SBarry Smith /*@
2021eb3f98d2SBarry Smith     DMGetRefineLevel - Get's the number of refinements that have generated this DM.
2022eb3f98d2SBarry Smith 
2023eb3f98d2SBarry Smith     Not Collective
2024eb3f98d2SBarry Smith 
2025eb3f98d2SBarry Smith     Input Parameter:
2026eb3f98d2SBarry Smith .   dm - the DM object
2027eb3f98d2SBarry Smith 
2028eb3f98d2SBarry Smith     Output Parameter:
2029eb3f98d2SBarry Smith .   level - number of refinements
2030eb3f98d2SBarry Smith 
2031eb3f98d2SBarry Smith     Level: developer
2032eb3f98d2SBarry Smith 
20336a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
2034eb3f98d2SBarry Smith 
2035eb3f98d2SBarry Smith @*/
2036eb3f98d2SBarry Smith PetscErrorCode  DMGetRefineLevel(DM dm,PetscInt *level)
2037eb3f98d2SBarry Smith {
2038eb3f98d2SBarry Smith   PetscFunctionBegin;
2039eb3f98d2SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2040eb3f98d2SBarry Smith   *level = dm->levelup;
2041eb3f98d2SBarry Smith   PetscFunctionReturn(0);
2042eb3f98d2SBarry Smith }
2043eb3f98d2SBarry Smith 
2044fef3a512SBarry Smith /*@
2045fef3a512SBarry Smith     DMSetRefineLevel - Set's the number of refinements that have generated this DM.
2046fef3a512SBarry Smith 
2047fef3a512SBarry Smith     Not Collective
2048fef3a512SBarry Smith 
2049fef3a512SBarry Smith     Input Parameter:
2050fef3a512SBarry Smith +   dm - the DM object
2051fef3a512SBarry Smith -   level - number of refinements
2052fef3a512SBarry Smith 
2053fef3a512SBarry Smith     Level: advanced
2054fef3a512SBarry Smith 
205595452b02SPatrick Sanan     Notes:
205695452b02SPatrick Sanan     This value is used by PCMG to determine how many multigrid levels to use
2057fef3a512SBarry Smith 
2058fef3a512SBarry Smith .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
2059fef3a512SBarry Smith 
2060fef3a512SBarry Smith @*/
2061fef3a512SBarry Smith PetscErrorCode  DMSetRefineLevel(DM dm,PetscInt level)
2062fef3a512SBarry Smith {
2063fef3a512SBarry Smith   PetscFunctionBegin;
2064fef3a512SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2065fef3a512SBarry Smith   dm->levelup = level;
2066fef3a512SBarry Smith   PetscFunctionReturn(0);
2067fef3a512SBarry Smith }
2068fef3a512SBarry Smith 
2069ca3d3a14SMatthew G. Knepley PetscErrorCode DMGetBasisTransformDM_Internal(DM dm, DM *tdm)
2070ca3d3a14SMatthew G. Knepley {
2071ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2072ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2073ca3d3a14SMatthew G. Knepley   PetscValidPointer(tdm, 2);
2074ca3d3a14SMatthew G. Knepley   *tdm = dm->transformDM;
2075ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
2076ca3d3a14SMatthew G. Knepley }
2077ca3d3a14SMatthew G. Knepley 
2078ca3d3a14SMatthew G. Knepley PetscErrorCode DMGetBasisTransformVec_Internal(DM dm, Vec *tv)
2079ca3d3a14SMatthew G. Knepley {
2080ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2081ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2082ca3d3a14SMatthew G. Knepley   PetscValidPointer(tv, 2);
2083ca3d3a14SMatthew G. Knepley   *tv = dm->transform;
2084ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
2085ca3d3a14SMatthew G. Knepley }
2086ca3d3a14SMatthew G. Knepley 
2087ca3d3a14SMatthew G. Knepley /*@
2088c0f8e1fdSMatthew G. Knepley   DMHasBasisTransform - Whether we employ a basis transformation from functions in global vectors to functions in local vectors
2089ca3d3a14SMatthew G. Knepley 
2090ca3d3a14SMatthew G. Knepley   Input Parameter:
2091ca3d3a14SMatthew G. Knepley . dm - The DM
2092ca3d3a14SMatthew G. Knepley 
2093ca3d3a14SMatthew G. Knepley   Output Parameter:
2094ca3d3a14SMatthew G. Knepley . flg - PETSC_TRUE if a basis transformation should be done
2095ca3d3a14SMatthew G. Knepley 
2096ca3d3a14SMatthew G. Knepley   Level: developer
2097ca3d3a14SMatthew G. Knepley 
2098ca3d3a14SMatthew G. Knepley .seealso: DMPlexGlobalToLocalBasis(), DMPlexLocalToGlobalBasis()()
2099ca3d3a14SMatthew G. Knepley @*/
2100ca3d3a14SMatthew G. Knepley PetscErrorCode DMHasBasisTransform(DM dm, PetscBool *flg)
2101ca3d3a14SMatthew G. Knepley {
2102ca3d3a14SMatthew G. Knepley   Vec            tv;
2103ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
2104ca3d3a14SMatthew G. Knepley 
2105ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2106ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2107ca3d3a14SMatthew G. Knepley   PetscValidPointer(flg, 2);
2108ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
2109ca3d3a14SMatthew G. Knepley   *flg = tv ? PETSC_TRUE : PETSC_FALSE;
2110ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
2111ca3d3a14SMatthew G. Knepley }
2112ca3d3a14SMatthew G. Knepley 
2113ca3d3a14SMatthew G. Knepley PetscErrorCode DMConstructBasisTransform_Internal(DM dm)
2114ca3d3a14SMatthew G. Knepley {
2115ca3d3a14SMatthew G. Knepley   PetscSection   s, ts;
2116ca3d3a14SMatthew G. Knepley   PetscScalar   *ta;
2117ca3d3a14SMatthew G. Knepley   PetscInt       cdim, pStart, pEnd, p, Nf, f, Nc, dof;
2118ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
2119ca3d3a14SMatthew G. Knepley 
2120ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2121ca3d3a14SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
2122ca3d3a14SMatthew G. Knepley   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
2123ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr);
2124ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
2125ca3d3a14SMatthew G. Knepley   ierr = DMClone(dm, &dm->transformDM);CHKERRQ(ierr);
2126ca3d3a14SMatthew G. Knepley   ierr = DMGetSection(dm->transformDM, &ts);CHKERRQ(ierr);
2127ca3d3a14SMatthew G. Knepley   ierr = PetscSectionSetNumFields(ts, Nf);CHKERRQ(ierr);
2128ca3d3a14SMatthew G. Knepley   ierr = PetscSectionSetChart(ts, pStart, pEnd);CHKERRQ(ierr);
2129ca3d3a14SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
2130ca3d3a14SMatthew G. Knepley     ierr = PetscSectionGetFieldComponents(s, f, &Nc);CHKERRQ(ierr);
2131ca3d3a14SMatthew G. Knepley     /* We could start to label fields by their transformation properties */
2132ca3d3a14SMatthew G. Knepley     if (Nc != cdim) continue;
2133ca3d3a14SMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
2134ca3d3a14SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(s, p, f, &dof);CHKERRQ(ierr);
2135ca3d3a14SMatthew G. Knepley       if (!dof) continue;
2136ca3d3a14SMatthew G. Knepley       ierr = PetscSectionSetFieldDof(ts, p, f, PetscSqr(cdim));CHKERRQ(ierr);
2137ca3d3a14SMatthew G. Knepley       ierr = PetscSectionAddDof(ts, p, PetscSqr(cdim));CHKERRQ(ierr);
2138ca3d3a14SMatthew G. Knepley     }
2139ca3d3a14SMatthew G. Knepley   }
2140ca3d3a14SMatthew G. Knepley   ierr = PetscSectionSetUp(ts);CHKERRQ(ierr);
2141ca3d3a14SMatthew G. Knepley   ierr = DMCreateLocalVector(dm->transformDM, &dm->transform);CHKERRQ(ierr);
2142ca3d3a14SMatthew G. Knepley   ierr = VecGetArray(dm->transform, &ta);CHKERRQ(ierr);
2143ca3d3a14SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
2144ca3d3a14SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
2145ca3d3a14SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(ts, p, f, &dof);CHKERRQ(ierr);
2146ca3d3a14SMatthew G. Knepley       if (dof) {
2147ca3d3a14SMatthew G. Knepley         PetscReal          x[3] = {0.0, 0.0, 0.0};
2148ca3d3a14SMatthew G. Knepley         PetscScalar       *tva;
2149ca3d3a14SMatthew G. Knepley         const PetscScalar *A;
2150ca3d3a14SMatthew G. Knepley 
2151ca3d3a14SMatthew G. Knepley         /* TODO Get quadrature point for this dual basis vector for coordinate */
2152ca3d3a14SMatthew G. Knepley         ierr = (*dm->transformGetMatrix)(dm, x, PETSC_TRUE, &A, dm->transformCtx);CHKERRQ(ierr);
2153ca3d3a14SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRef(dm->transformDM, p, f, ta, (void *) &tva);CHKERRQ(ierr);
2154ca3d3a14SMatthew G. Knepley         ierr = PetscMemcpy(tva, A, PetscSqr(cdim) * sizeof(PetscScalar));
2155ca3d3a14SMatthew G. Knepley       }
2156ca3d3a14SMatthew G. Knepley     }
2157ca3d3a14SMatthew G. Knepley   }
2158ca3d3a14SMatthew G. Knepley   ierr = VecRestoreArray(dm->transform, &ta);CHKERRQ(ierr);
2159ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
2160ca3d3a14SMatthew G. Knepley }
2161ca3d3a14SMatthew G. Knepley 
2162ca3d3a14SMatthew G. Knepley PetscErrorCode DMCopyTransform(DM dm, DM newdm)
2163ca3d3a14SMatthew G. Knepley {
2164ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
2165ca3d3a14SMatthew G. Knepley 
2166ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
2167ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2168ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(newdm, DM_CLASSID, 2);
2169ca3d3a14SMatthew G. Knepley   newdm->transformCtx       = dm->transformCtx;
2170ca3d3a14SMatthew G. Knepley   newdm->transformSetUp     = dm->transformSetUp;
2171ca3d3a14SMatthew G. Knepley   newdm->transformDestroy   = NULL;
2172ca3d3a14SMatthew G. Knepley   newdm->transformGetMatrix = dm->transformGetMatrix;
2173ca3d3a14SMatthew G. Knepley   if (newdm->transformSetUp) {ierr = DMConstructBasisTransform_Internal(newdm);CHKERRQ(ierr);}
2174ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
2175ca3d3a14SMatthew G. Knepley }
2176ca3d3a14SMatthew G. Knepley 
2177bb9467b5SJed Brown /*@C
2178baf369e7SPeter Brune    DMGlobalToLocalHookAdd - adds a callback to be run when global to local is called
2179baf369e7SPeter Brune 
2180baf369e7SPeter Brune    Logically Collective
2181baf369e7SPeter Brune 
2182baf369e7SPeter Brune    Input Arguments:
2183baf369e7SPeter Brune +  dm - the DM
2184baf369e7SPeter Brune .  beginhook - function to run at the beginning of DMGlobalToLocalBegin()
2185baf369e7SPeter Brune .  endhook - function to run after DMGlobalToLocalEnd() has completed
21860298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2187baf369e7SPeter Brune 
2188baf369e7SPeter Brune    Calling sequence for beginhook:
2189baf369e7SPeter Brune $    beginhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx)
2190baf369e7SPeter Brune 
2191baf369e7SPeter Brune +  dm - global DM
2192baf369e7SPeter Brune .  g - global vector
2193baf369e7SPeter Brune .  mode - mode
2194baf369e7SPeter Brune .  l - local vector
2195baf369e7SPeter Brune -  ctx - optional user-defined function context
2196baf369e7SPeter Brune 
2197baf369e7SPeter Brune 
2198baf369e7SPeter Brune    Calling sequence for endhook:
2199ec4806b8SPeter Brune $    endhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx)
2200baf369e7SPeter Brune 
2201baf369e7SPeter Brune +  global - global DM
2202baf369e7SPeter Brune -  ctx - optional user-defined function context
2203baf369e7SPeter Brune 
2204baf369e7SPeter Brune    Level: advanced
2205baf369e7SPeter Brune 
2206baf369e7SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2207baf369e7SPeter Brune @*/
2208baf369e7SPeter Brune PetscErrorCode DMGlobalToLocalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx)
2209baf369e7SPeter Brune {
2210baf369e7SPeter Brune   PetscErrorCode          ierr;
2211baf369e7SPeter Brune   DMGlobalToLocalHookLink link,*p;
2212baf369e7SPeter Brune 
2213baf369e7SPeter Brune   PetscFunctionBegin;
2214baf369e7SPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2215baf369e7SPeter Brune   for (p=&dm->gtolhook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */
221695dccacaSBarry Smith   ierr            = PetscNew(&link);CHKERRQ(ierr);
2217baf369e7SPeter Brune   link->beginhook = beginhook;
2218baf369e7SPeter Brune   link->endhook   = endhook;
2219baf369e7SPeter Brune   link->ctx       = ctx;
22200298fd71SBarry Smith   link->next      = NULL;
2221baf369e7SPeter Brune   *p              = link;
2222baf369e7SPeter Brune   PetscFunctionReturn(0);
2223baf369e7SPeter Brune }
2224baf369e7SPeter Brune 
22254c274da1SToby Isaac static PetscErrorCode DMGlobalToLocalHook_Constraints(DM dm, Vec g, InsertMode mode, Vec l, void *ctx)
22264c274da1SToby Isaac {
22274c274da1SToby Isaac   Mat cMat;
22284c274da1SToby Isaac   Vec cVec;
22294c274da1SToby Isaac   PetscSection section, cSec;
22304c274da1SToby Isaac   PetscInt pStart, pEnd, p, dof;
22314c274da1SToby Isaac   PetscErrorCode ierr;
22324c274da1SToby Isaac 
22334c274da1SToby Isaac   PetscFunctionBegin;
22344c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
22354c274da1SToby Isaac   ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr);
22364c274da1SToby Isaac   if (cMat && (mode == INSERT_VALUES || mode == INSERT_ALL_VALUES || mode == INSERT_BC_VALUES)) {
22375db9a05bSToby Isaac     PetscInt nRows;
22385db9a05bSToby Isaac 
22395db9a05bSToby Isaac     ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr);
22405db9a05bSToby Isaac     if (nRows <= 0) PetscFunctionReturn(0);
2241e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
22427711e48fSToby Isaac     ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr);
22434c274da1SToby Isaac     ierr = MatMult(cMat,l,cVec);CHKERRQ(ierr);
22444c274da1SToby Isaac     ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
22454c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
22464c274da1SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
22474c274da1SToby Isaac       if (dof) {
22484c274da1SToby Isaac         PetscScalar *vals;
22494c274da1SToby Isaac         ierr = VecGetValuesSection(cVec,cSec,p,&vals);CHKERRQ(ierr);
22504c274da1SToby Isaac         ierr = VecSetValuesSection(l,section,p,vals,INSERT_ALL_VALUES);CHKERRQ(ierr);
22514c274da1SToby Isaac       }
22524c274da1SToby Isaac     }
22534c274da1SToby Isaac     ierr = VecDestroy(&cVec);CHKERRQ(ierr);
22544c274da1SToby Isaac   }
22554c274da1SToby Isaac   PetscFunctionReturn(0);
22564c274da1SToby Isaac }
22574c274da1SToby Isaac 
225847c6ae99SBarry Smith /*@
225901729b5cSPatrick Sanan     DMGlobalToLocal - update local vectors from global vector
226001729b5cSPatrick Sanan 
2261*d083f849SBarry Smith     Neighbor-wise Collective on dm
226201729b5cSPatrick Sanan 
226301729b5cSPatrick Sanan     Input Parameters:
226401729b5cSPatrick Sanan +   dm - the DM object
226501729b5cSPatrick Sanan .   g - the global vector
226601729b5cSPatrick Sanan .   mode - INSERT_VALUES or ADD_VALUES
226701729b5cSPatrick Sanan -   l - the local vector
226801729b5cSPatrick Sanan 
226901729b5cSPatrick Sanan     Notes:
227001729b5cSPatrick Sanan     The communication involved in this update can be overlapped with computation by using
227101729b5cSPatrick Sanan     DMGlobalToLocalBegin() and DMGlobalToLocalEnd().
227201729b5cSPatrick Sanan 
227301729b5cSPatrick Sanan     Level: beginner
227401729b5cSPatrick Sanan 
227501729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
227601729b5cSPatrick Sanan 
227701729b5cSPatrick Sanan @*/
227801729b5cSPatrick Sanan PetscErrorCode DMGlobalToLocal(DM dm,Vec g,InsertMode mode,Vec l)
227901729b5cSPatrick Sanan {
228001729b5cSPatrick Sanan   PetscErrorCode ierr;
228101729b5cSPatrick Sanan 
228201729b5cSPatrick Sanan   PetscFunctionBegin;
228301729b5cSPatrick Sanan   ierr = DMGlobalToLocalBegin(dm,g,mode,l);CHKERRQ(ierr);
228401729b5cSPatrick Sanan   ierr = DMGlobalToLocalEnd(dm,g,mode,l);CHKERRQ(ierr);
228501729b5cSPatrick Sanan   PetscFunctionReturn(0);
228601729b5cSPatrick Sanan }
228701729b5cSPatrick Sanan 
228801729b5cSPatrick Sanan /*@
228947c6ae99SBarry Smith     DMGlobalToLocalBegin - Begins updating local vectors from global vector
229047c6ae99SBarry Smith 
2291*d083f849SBarry Smith     Neighbor-wise Collective on dm
229247c6ae99SBarry Smith 
229347c6ae99SBarry Smith     Input Parameters:
229447c6ae99SBarry Smith +   dm - the DM object
229547c6ae99SBarry Smith .   g - the global vector
229647c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
229747c6ae99SBarry Smith -   l - the local vector
229847c6ae99SBarry Smith 
229901729b5cSPatrick Sanan     Level: intermediate
230047c6ae99SBarry Smith 
230101729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
230247c6ae99SBarry Smith 
230347c6ae99SBarry Smith @*/
23047087cfbeSBarry Smith PetscErrorCode  DMGlobalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l)
230547c6ae99SBarry Smith {
23067128ae9fSMatthew G Knepley   PetscSF                 sf;
230747c6ae99SBarry Smith   PetscErrorCode          ierr;
2308baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
230947c6ae99SBarry Smith 
231047c6ae99SBarry Smith   PetscFunctionBegin;
2311171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2312baf369e7SPeter Brune   for (link=dm->gtolhook; link; link=link->next) {
23138865f1eaSKarl Rupp     if (link->beginhook) {
23148865f1eaSKarl Rupp       ierr = (*link->beginhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);
23158865f1eaSKarl Rupp     }
2316baf369e7SPeter Brune   }
23177128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
23187128ae9fSMatthew G Knepley   if (sf) {
2319ae5cfb4aSMatthew G. Knepley     const PetscScalar *gArray;
2320ae5cfb4aSMatthew G. Knepley     PetscScalar       *lArray;
23217128ae9fSMatthew G Knepley 
232282f516ccSBarry Smith     if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
23237128ae9fSMatthew G Knepley     ierr = VecGetArray(l, &lArray);CHKERRQ(ierr);
2324ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr);
23257128ae9fSMatthew G Knepley     ierr = PetscSFBcastBegin(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr);
23267128ae9fSMatthew G Knepley     ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr);
2327ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr);
23287128ae9fSMatthew G Knepley   } else {
232933907cc2SStefano Zampini     if (!dm->ops->globaltolocalbegin) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMGlobalToLocalBegin() for type %s",((PetscObject)dm)->type_name);
2330843c4018SMatthew G Knepley     ierr = (*dm->ops->globaltolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
23317128ae9fSMatthew G Knepley   }
233247c6ae99SBarry Smith   PetscFunctionReturn(0);
233347c6ae99SBarry Smith }
233447c6ae99SBarry Smith 
233547c6ae99SBarry Smith /*@
233647c6ae99SBarry Smith     DMGlobalToLocalEnd - Ends updating local vectors from global vector
233747c6ae99SBarry Smith 
2338*d083f849SBarry Smith     Neighbor-wise Collective on dm
233947c6ae99SBarry Smith 
234047c6ae99SBarry Smith     Input Parameters:
234147c6ae99SBarry Smith +   dm - the DM object
234247c6ae99SBarry Smith .   g - the global vector
234347c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
234447c6ae99SBarry Smith -   l - the local vector
234547c6ae99SBarry Smith 
234601729b5cSPatrick Sanan     Level: intermediate
234747c6ae99SBarry Smith 
234801729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
234947c6ae99SBarry Smith 
235047c6ae99SBarry Smith @*/
23517087cfbeSBarry Smith PetscErrorCode  DMGlobalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l)
235247c6ae99SBarry Smith {
23537128ae9fSMatthew G Knepley   PetscSF                 sf;
235447c6ae99SBarry Smith   PetscErrorCode          ierr;
2355ae5cfb4aSMatthew G. Knepley   const PetscScalar      *gArray;
2356ae5cfb4aSMatthew G. Knepley   PetscScalar            *lArray;
2357ca3d3a14SMatthew G. Knepley   PetscBool               transform;
2358baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
235947c6ae99SBarry Smith 
236047c6ae99SBarry Smith   PetscFunctionBegin;
2361171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
23627128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
2363ca3d3a14SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
23647128ae9fSMatthew G Knepley   if (sf) {
236582f516ccSBarry Smith     if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
23667128ae9fSMatthew G Knepley 
23677128ae9fSMatthew G Knepley     ierr = VecGetArray(l, &lArray);CHKERRQ(ierr);
2368ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr);
23697128ae9fSMatthew G Knepley     ierr = PetscSFBcastEnd(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr);
23707128ae9fSMatthew G Knepley     ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr);
2371ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr);
2372ca3d3a14SMatthew G. Knepley     if (transform) {ierr = DMPlexGlobalToLocalBasis(dm, l);CHKERRQ(ierr);}
23737128ae9fSMatthew G Knepley   } else {
237433907cc2SStefano Zampini     if (!dm->ops->globaltolocalend) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Missing DMGlobalToLocalEnd() for type %s",((PetscObject)dm)->type_name);
2375843c4018SMatthew G Knepley     ierr = (*dm->ops->globaltolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
23767128ae9fSMatthew G Knepley   }
23774c274da1SToby Isaac   ierr = DMGlobalToLocalHook_Constraints(dm,g,mode,l,NULL);CHKERRQ(ierr);
2378baf369e7SPeter Brune   for (link=dm->gtolhook; link; link=link->next) {
2379baf369e7SPeter Brune     if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);}
2380baf369e7SPeter Brune   }
238147c6ae99SBarry Smith   PetscFunctionReturn(0);
238247c6ae99SBarry Smith }
238347c6ae99SBarry Smith 
2384d4d07f1eSToby Isaac /*@C
2385d4d07f1eSToby Isaac    DMLocalToGlobalHookAdd - adds a callback to be run when a local to global is called
2386d4d07f1eSToby Isaac 
2387d4d07f1eSToby Isaac    Logically Collective
2388d4d07f1eSToby Isaac 
2389d4d07f1eSToby Isaac    Input Arguments:
2390d4d07f1eSToby Isaac +  dm - the DM
2391d4d07f1eSToby Isaac .  beginhook - function to run at the beginning of DMLocalToGlobalBegin()
2392d4d07f1eSToby Isaac .  endhook - function to run after DMLocalToGlobalEnd() has completed
2393d4d07f1eSToby Isaac -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2394d4d07f1eSToby Isaac 
2395d4d07f1eSToby Isaac    Calling sequence for beginhook:
2396d4d07f1eSToby Isaac $    beginhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx)
2397d4d07f1eSToby Isaac 
2398d4d07f1eSToby Isaac +  dm - global DM
2399d4d07f1eSToby Isaac .  l - local vector
2400d4d07f1eSToby Isaac .  mode - mode
2401d4d07f1eSToby Isaac .  g - global vector
2402d4d07f1eSToby Isaac -  ctx - optional user-defined function context
2403d4d07f1eSToby Isaac 
2404d4d07f1eSToby Isaac 
2405d4d07f1eSToby Isaac    Calling sequence for endhook:
2406d4d07f1eSToby Isaac $    endhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx)
2407d4d07f1eSToby Isaac 
2408d4d07f1eSToby Isaac +  global - global DM
2409d4d07f1eSToby Isaac .  l - local vector
2410d4d07f1eSToby Isaac .  mode - mode
2411d4d07f1eSToby Isaac .  g - global vector
2412d4d07f1eSToby Isaac -  ctx - optional user-defined function context
2413d4d07f1eSToby Isaac 
2414d4d07f1eSToby Isaac    Level: advanced
2415d4d07f1eSToby Isaac 
2416d4d07f1eSToby Isaac .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2417d4d07f1eSToby Isaac @*/
2418d4d07f1eSToby Isaac PetscErrorCode DMLocalToGlobalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx)
2419d4d07f1eSToby Isaac {
2420d4d07f1eSToby Isaac   PetscErrorCode          ierr;
2421d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link,*p;
2422d4d07f1eSToby Isaac 
2423d4d07f1eSToby Isaac   PetscFunctionBegin;
2424d4d07f1eSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2425d4d07f1eSToby Isaac   for (p=&dm->ltoghook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */
242695dccacaSBarry Smith   ierr            = PetscNew(&link);CHKERRQ(ierr);
2427d4d07f1eSToby Isaac   link->beginhook = beginhook;
2428d4d07f1eSToby Isaac   link->endhook   = endhook;
2429d4d07f1eSToby Isaac   link->ctx       = ctx;
2430d4d07f1eSToby Isaac   link->next      = NULL;
2431d4d07f1eSToby Isaac   *p              = link;
2432d4d07f1eSToby Isaac   PetscFunctionReturn(0);
2433d4d07f1eSToby Isaac }
2434d4d07f1eSToby Isaac 
24354c274da1SToby Isaac static PetscErrorCode DMLocalToGlobalHook_Constraints(DM dm, Vec l, InsertMode mode, Vec g, void *ctx)
24364c274da1SToby Isaac {
24374c274da1SToby Isaac   Mat cMat;
24384c274da1SToby Isaac   Vec cVec;
24394c274da1SToby Isaac   PetscSection section, cSec;
24404c274da1SToby Isaac   PetscInt pStart, pEnd, p, dof;
24414c274da1SToby Isaac   PetscErrorCode ierr;
24424c274da1SToby Isaac 
24434c274da1SToby Isaac   PetscFunctionBegin;
24444c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
24454c274da1SToby Isaac   ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr);
24464c274da1SToby Isaac   if (cMat && (mode == ADD_VALUES || mode == ADD_ALL_VALUES || mode == ADD_BC_VALUES)) {
24475db9a05bSToby Isaac     PetscInt nRows;
24485db9a05bSToby Isaac 
24495db9a05bSToby Isaac     ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr);
24505db9a05bSToby Isaac     if (nRows <= 0) PetscFunctionReturn(0);
2451e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
24527711e48fSToby Isaac     ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr);
24534c274da1SToby Isaac     ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
24544c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
24554c274da1SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
24564c274da1SToby Isaac       if (dof) {
24574c274da1SToby Isaac         PetscInt d;
24584c274da1SToby Isaac         PetscScalar *vals;
24594c274da1SToby Isaac         ierr = VecGetValuesSection(l,section,p,&vals);CHKERRQ(ierr);
24604c274da1SToby Isaac         ierr = VecSetValuesSection(cVec,cSec,p,vals,mode);CHKERRQ(ierr);
24614c274da1SToby Isaac         /* for this to be the true transpose, we have to zero the values that
24624c274da1SToby Isaac          * we just extracted */
24634c274da1SToby Isaac         for (d = 0; d < dof; d++) {
24644c274da1SToby Isaac           vals[d] = 0.;
24654c274da1SToby Isaac         }
24664c274da1SToby Isaac       }
24674c274da1SToby Isaac     }
24684c274da1SToby Isaac     ierr = MatMultTransposeAdd(cMat,cVec,l,l);CHKERRQ(ierr);
24694c274da1SToby Isaac     ierr = VecDestroy(&cVec);CHKERRQ(ierr);
24704c274da1SToby Isaac   }
24714c274da1SToby Isaac   PetscFunctionReturn(0);
24724c274da1SToby Isaac }
247301729b5cSPatrick Sanan /*@
247401729b5cSPatrick Sanan     DMLocalToGlobal - updates global vectors from local vectors
247501729b5cSPatrick Sanan 
2476*d083f849SBarry Smith     Neighbor-wise Collective on dm
247701729b5cSPatrick Sanan 
247801729b5cSPatrick Sanan     Input Parameters:
247901729b5cSPatrick Sanan +   dm - the DM object
248001729b5cSPatrick Sanan .   l - the local vector
248101729b5cSPatrick 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.
248201729b5cSPatrick Sanan -   g - the global vector
248301729b5cSPatrick Sanan 
248401729b5cSPatrick Sanan     Notes:
248501729b5cSPatrick Sanan     The communication involved in this update can be overlapped with computation by using
248601729b5cSPatrick Sanan     DMLocalToGlobalBegin() and DMLocalToGlobalEnd().
248701729b5cSPatrick Sanan 
248801729b5cSPatrick Sanan     In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation.
248901729b5cSPatrick 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.
249001729b5cSPatrick Sanan 
249101729b5cSPatrick Sanan     Level: beginner
249201729b5cSPatrick Sanan 
249301729b5cSPatrick Sanan .seealso DMLocalToGlobalBegin(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin()
249401729b5cSPatrick Sanan 
249501729b5cSPatrick Sanan @*/
249601729b5cSPatrick Sanan PetscErrorCode DMLocalToGlobal(DM dm,Vec l,InsertMode mode,Vec g)
249701729b5cSPatrick Sanan {
249801729b5cSPatrick Sanan   PetscErrorCode ierr;
249901729b5cSPatrick Sanan 
250001729b5cSPatrick Sanan   PetscFunctionBegin;
250101729b5cSPatrick Sanan   ierr = DMLocalToGlobalBegin(dm,l,mode,g);CHKERRQ(ierr);
250201729b5cSPatrick Sanan   ierr = DMLocalToGlobalEnd(dm,l,mode,g);CHKERRQ(ierr);
250301729b5cSPatrick Sanan   PetscFunctionReturn(0);
250401729b5cSPatrick Sanan }
25054c274da1SToby Isaac 
250647c6ae99SBarry Smith /*@
250701729b5cSPatrick Sanan     DMLocalToGlobalBegin - begins updating global vectors from local vectors
25089a42bb27SBarry Smith 
2509*d083f849SBarry Smith     Neighbor-wise Collective on dm
25109a42bb27SBarry Smith 
25119a42bb27SBarry Smith     Input Parameters:
25129a42bb27SBarry Smith +   dm - the DM object
2513f6813fd5SJed Brown .   l - the local vector
25141eb28f2eSBarry 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.
25151eb28f2eSBarry Smith -   g - the global vector
25169a42bb27SBarry Smith 
251795452b02SPatrick Sanan     Notes:
251895452b02SPatrick Sanan     In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation.
251984330215SMatthew 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.
25209a42bb27SBarry Smith 
252101729b5cSPatrick Sanan     Level: intermediate
25229a42bb27SBarry Smith 
252301729b5cSPatrick Sanan .seealso DMLocalToGlobal(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin()
25249a42bb27SBarry Smith 
25259a42bb27SBarry Smith @*/
25267087cfbeSBarry Smith PetscErrorCode  DMLocalToGlobalBegin(DM dm,Vec l,InsertMode mode,Vec g)
25279a42bb27SBarry Smith {
25287128ae9fSMatthew G Knepley   PetscSF                 sf;
252984330215SMatthew G. Knepley   PetscSection            s, gs;
2530d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
2531ca3d3a14SMatthew G. Knepley   Vec                     tmpl;
2532ae5cfb4aSMatthew G. Knepley   const PetscScalar      *lArray;
2533ae5cfb4aSMatthew G. Knepley   PetscScalar            *gArray;
2534ca3d3a14SMatthew G. Knepley   PetscBool               isInsert, transform;
253584330215SMatthew G. Knepley   PetscErrorCode          ierr;
25369a42bb27SBarry Smith 
25379a42bb27SBarry Smith   PetscFunctionBegin;
2538171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2539d4d07f1eSToby Isaac   for (link=dm->ltoghook; link; link=link->next) {
2540d4d07f1eSToby Isaac     if (link->beginhook) {
2541d4d07f1eSToby Isaac       ierr = (*link->beginhook)(dm,l,mode,g,link->ctx);CHKERRQ(ierr);
2542d4d07f1eSToby Isaac     }
2543d4d07f1eSToby Isaac   }
25444c274da1SToby Isaac   ierr = DMLocalToGlobalHook_Constraints(dm,l,mode,g,NULL);CHKERRQ(ierr);
25457128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
2546e87a4003SBarry Smith   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
25477128ae9fSMatthew G Knepley   switch (mode) {
25487128ae9fSMatthew G Knepley   case INSERT_VALUES:
25497128ae9fSMatthew G Knepley   case INSERT_ALL_VALUES:
2550304ab55fSMatthew G. Knepley   case INSERT_BC_VALUES:
255184330215SMatthew G. Knepley     isInsert = PETSC_TRUE; break;
25527128ae9fSMatthew G Knepley   case ADD_VALUES:
25537128ae9fSMatthew G Knepley   case ADD_ALL_VALUES:
2554304ab55fSMatthew G. Knepley   case ADD_BC_VALUES:
255584330215SMatthew G. Knepley     isInsert = PETSC_FALSE; break;
25567128ae9fSMatthew G Knepley   default:
255782f516ccSBarry Smith     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
25587128ae9fSMatthew G Knepley   }
2559ca3d3a14SMatthew G. Knepley   if ((sf && !isInsert) || (s && isInsert)) {
2560ca3d3a14SMatthew G. Knepley     ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
2561ca3d3a14SMatthew G. Knepley     if (transform) {
2562ca3d3a14SMatthew G. Knepley       ierr = DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr);
2563ca3d3a14SMatthew G. Knepley       ierr = VecCopy(l, tmpl);CHKERRQ(ierr);
2564ca3d3a14SMatthew G. Knepley       ierr = DMPlexLocalToGlobalBasis(dm, tmpl);CHKERRQ(ierr);
2565ca3d3a14SMatthew G. Knepley       ierr = VecGetArrayRead(tmpl, &lArray);CHKERRQ(ierr);
2566ca3d3a14SMatthew G. Knepley     } else {
2567ae5cfb4aSMatthew G. Knepley       ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr);
2568ca3d3a14SMatthew G. Knepley     }
25697128ae9fSMatthew G Knepley     ierr = VecGetArray(g, &gArray);CHKERRQ(ierr);
2570ca3d3a14SMatthew G. Knepley     if (sf && !isInsert) {
2571a9b180a6SBarry Smith       ierr = PetscSFReduceBegin(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr);
257284330215SMatthew G. Knepley     } else if (s && isInsert) {
257384330215SMatthew G. Knepley       PetscInt gStart, pStart, pEnd, p;
257484330215SMatthew G. Knepley 
2575e87a4003SBarry Smith       ierr = DMGetGlobalSection(dm, &gs);CHKERRQ(ierr);
257684330215SMatthew G. Knepley       ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr);
257784330215SMatthew G. Knepley       ierr = VecGetOwnershipRange(g, &gStart, NULL);CHKERRQ(ierr);
257884330215SMatthew G. Knepley       for (p = pStart; p < pEnd; ++p) {
2579b3b16f48SMatthew G. Knepley         PetscInt dof, gdof, cdof, gcdof, off, goff, d, e;
258084330215SMatthew G. Knepley 
258184330215SMatthew G. Knepley         ierr = PetscSectionGetDof(s, p, &dof);CHKERRQ(ierr);
258203442857SMatthew G. Knepley         ierr = PetscSectionGetDof(gs, p, &gdof);CHKERRQ(ierr);
258384330215SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(s, p, &cdof);CHKERRQ(ierr);
2584b3b16f48SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(gs, p, &gcdof);CHKERRQ(ierr);
258584330215SMatthew G. Knepley         ierr = PetscSectionGetOffset(s, p, &off);CHKERRQ(ierr);
258684330215SMatthew G. Knepley         ierr = PetscSectionGetOffset(gs, p, &goff);CHKERRQ(ierr);
2587b3b16f48SMatthew G. Knepley         /* Ignore off-process data and points with no global data */
258803442857SMatthew G. Knepley         if (!gdof || goff < 0) continue;
2589b3b16f48SMatthew 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);
2590b3b16f48SMatthew G. Knepley         /* If no constraints are enforced in the global vector */
2591b3b16f48SMatthew G. Knepley         if (!gcdof) {
259284330215SMatthew G. Knepley           for (d = 0; d < dof; ++d) gArray[goff-gStart+d] = lArray[off+d];
2593b3b16f48SMatthew G. Knepley           /* If constraints are enforced in the global vector */
2594b3b16f48SMatthew G. Knepley         } else if (cdof == gcdof) {
259584330215SMatthew G. Knepley           const PetscInt *cdofs;
259684330215SMatthew G. Knepley           PetscInt        cind = 0;
259784330215SMatthew G. Knepley 
259884330215SMatthew G. Knepley           ierr = PetscSectionGetConstraintIndices(s, p, &cdofs);CHKERRQ(ierr);
2599b3b16f48SMatthew G. Knepley           for (d = 0, e = 0; d < dof; ++d) {
260084330215SMatthew G. Knepley             if ((cind < cdof) && (d == cdofs[cind])) {++cind; continue;}
2601b3b16f48SMatthew G. Knepley             gArray[goff-gStart+e++] = lArray[off+d];
260284330215SMatthew G. Knepley           }
2603b3b16f48SMatthew 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);
260484330215SMatthew G. Knepley       }
2605ca3d3a14SMatthew G. Knepley     }
26067128ae9fSMatthew G Knepley     ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr);
2607ca3d3a14SMatthew G. Knepley     if (transform) {
2608ca3d3a14SMatthew G. Knepley       ierr = VecRestoreArrayRead(tmpl, &lArray);CHKERRQ(ierr);
2609ca3d3a14SMatthew G. Knepley       ierr = DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr);
2610ca3d3a14SMatthew G. Knepley     } else {
2611ca3d3a14SMatthew G. Knepley       ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr);
2612ca3d3a14SMatthew G. Knepley     }
26137128ae9fSMatthew G Knepley   } else {
2614843c4018SMatthew G Knepley     ierr = (*dm->ops->localtoglobalbegin)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr);
26157128ae9fSMatthew G Knepley   }
26169a42bb27SBarry Smith   PetscFunctionReturn(0);
26179a42bb27SBarry Smith }
26189a42bb27SBarry Smith 
26199a42bb27SBarry Smith /*@
26209a42bb27SBarry Smith     DMLocalToGlobalEnd - updates global vectors from local vectors
262147c6ae99SBarry Smith 
2622*d083f849SBarry Smith     Neighbor-wise Collective on dm
262347c6ae99SBarry Smith 
262447c6ae99SBarry Smith     Input Parameters:
262547c6ae99SBarry Smith +   dm - the DM object
2626f6813fd5SJed Brown .   l - the local vector
262747c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
2628f6813fd5SJed Brown -   g - the global vector
262947c6ae99SBarry Smith 
263001729b5cSPatrick Sanan     Level: intermediate
263147c6ae99SBarry Smith 
2632e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMGlobalToLocalEnd()
263347c6ae99SBarry Smith 
263447c6ae99SBarry Smith @*/
26357087cfbeSBarry Smith PetscErrorCode  DMLocalToGlobalEnd(DM dm,Vec l,InsertMode mode,Vec g)
263647c6ae99SBarry Smith {
26377128ae9fSMatthew G Knepley   PetscSF                 sf;
263884330215SMatthew G. Knepley   PetscSection            s;
2639d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
2640ca3d3a14SMatthew G. Knepley   PetscBool               isInsert, transform;
264184330215SMatthew G. Knepley   PetscErrorCode          ierr;
264247c6ae99SBarry Smith 
264347c6ae99SBarry Smith   PetscFunctionBegin;
2644171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
26457128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
2646e87a4003SBarry Smith   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
26477128ae9fSMatthew G Knepley   switch (mode) {
26487128ae9fSMatthew G Knepley   case INSERT_VALUES:
26497128ae9fSMatthew G Knepley   case INSERT_ALL_VALUES:
265084330215SMatthew G. Knepley     isInsert = PETSC_TRUE; break;
26517128ae9fSMatthew G Knepley   case ADD_VALUES:
26527128ae9fSMatthew G Knepley   case ADD_ALL_VALUES:
265384330215SMatthew G. Knepley     isInsert = PETSC_FALSE; break;
26547128ae9fSMatthew G Knepley   default:
265582f516ccSBarry Smith     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
26567128ae9fSMatthew G Knepley   }
265784330215SMatthew G. Knepley   if (sf && !isInsert) {
2658ae5cfb4aSMatthew G. Knepley     const PetscScalar *lArray;
2659ae5cfb4aSMatthew G. Knepley     PetscScalar       *gArray;
2660ca3d3a14SMatthew G. Knepley     Vec                tmpl;
266184330215SMatthew G. Knepley 
2662ca3d3a14SMatthew G. Knepley     ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
2663ca3d3a14SMatthew G. Knepley     if (transform) {
2664ca3d3a14SMatthew G. Knepley       ierr = DMGetNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr);
2665ca3d3a14SMatthew G. Knepley       ierr = VecGetArrayRead(tmpl, &lArray);CHKERRQ(ierr);
2666ca3d3a14SMatthew G. Knepley     } else {
2667ae5cfb4aSMatthew G. Knepley       ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr);
2668ca3d3a14SMatthew G. Knepley     }
26697128ae9fSMatthew G Knepley     ierr = VecGetArray(g, &gArray);CHKERRQ(ierr);
2670a9b180a6SBarry Smith     ierr = PetscSFReduceEnd(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr);
2671ca3d3a14SMatthew G. Knepley     if (transform) {
2672ca3d3a14SMatthew G. Knepley       ierr = VecRestoreArrayRead(tmpl, &lArray);CHKERRQ(ierr);
2673ca3d3a14SMatthew G. Knepley       ierr = DMRestoreNamedLocalVector(dm, "__petsc_dm_transform_local_copy", &tmpl);CHKERRQ(ierr);
2674ca3d3a14SMatthew G. Knepley     } else {
2675ae5cfb4aSMatthew G. Knepley       ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr);
2676ca3d3a14SMatthew G. Knepley     }
26777128ae9fSMatthew G Knepley     ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr);
267884330215SMatthew G. Knepley   } else if (s && isInsert) {
26797128ae9fSMatthew G Knepley   } else {
2680843c4018SMatthew G Knepley     ierr = (*dm->ops->localtoglobalend)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr);
26817128ae9fSMatthew G Knepley   }
2682d4d07f1eSToby Isaac   for (link=dm->ltoghook; link; link=link->next) {
2683d4d07f1eSToby Isaac     if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);}
2684d4d07f1eSToby Isaac   }
268547c6ae99SBarry Smith   PetscFunctionReturn(0);
268647c6ae99SBarry Smith }
268747c6ae99SBarry Smith 
2688f089877aSRichard Tran Mills /*@
2689bc0a1609SRichard Tran Mills    DMLocalToLocalBegin - Maps from a local vector (including ghost points
2690bc0a1609SRichard Tran Mills    that contain irrelevant values) to another local vector where the ghost
2691d78e899eSRichard Tran Mills    points in the second are set correctly. Must be followed by DMLocalToLocalEnd().
2692f089877aSRichard Tran Mills 
2693*d083f849SBarry Smith    Neighbor-wise Collective on dm
2694f089877aSRichard Tran Mills 
2695f089877aSRichard Tran Mills    Input Parameters:
2696f089877aSRichard Tran Mills +  dm - the DM object
2697bc0a1609SRichard Tran Mills .  g - the original local vector
2698bc0a1609SRichard Tran Mills -  mode - one of INSERT_VALUES or ADD_VALUES
2699f089877aSRichard Tran Mills 
2700bc0a1609SRichard Tran Mills    Output Parameter:
2701bc0a1609SRichard Tran Mills .  l  - the local vector with correct ghost values
2702f089877aSRichard Tran Mills 
2703f089877aSRichard Tran Mills    Level: intermediate
2704f089877aSRichard Tran Mills 
2705bc0a1609SRichard Tran Mills    Notes:
2706bc0a1609SRichard Tran Mills    The local vectors used here need not be the same as those
2707bc0a1609SRichard Tran Mills    obtained from DMCreateLocalVector(), BUT they
2708bc0a1609SRichard Tran Mills    must have the same parallel data layout; they could, for example, be
2709bc0a1609SRichard Tran Mills    obtained with VecDuplicate() from the DM originating vectors.
2710bc0a1609SRichard Tran Mills 
2711bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalEnd(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin()
2712f089877aSRichard Tran Mills 
2713f089877aSRichard Tran Mills @*/
2714f089877aSRichard Tran Mills PetscErrorCode  DMLocalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l)
2715f089877aSRichard Tran Mills {
2716f089877aSRichard Tran Mills   PetscErrorCode          ierr;
2717f089877aSRichard Tran Mills 
2718f089877aSRichard Tran Mills   PetscFunctionBegin;
2719f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2720bb358533SPatrick Sanan   if (!dm->ops->localtolocalbegin) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps");
2721f089877aSRichard Tran Mills   ierr = (*dm->ops->localtolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
2722f089877aSRichard Tran Mills   PetscFunctionReturn(0);
2723f089877aSRichard Tran Mills }
2724f089877aSRichard Tran Mills 
2725f089877aSRichard Tran Mills /*@
2726bc0a1609SRichard Tran Mills    DMLocalToLocalEnd - Maps from a local vector (including ghost points
2727bc0a1609SRichard Tran Mills    that contain irrelevant values) to another local vector where the ghost
2728d78e899eSRichard Tran Mills    points in the second are set correctly. Must be preceded by DMLocalToLocalBegin().
2729f089877aSRichard Tran Mills 
2730*d083f849SBarry Smith    Neighbor-wise Collective on dm
2731f089877aSRichard Tran Mills 
2732f089877aSRichard Tran Mills    Input Parameters:
2733bc0a1609SRichard Tran Mills +  da - the DM object
2734bc0a1609SRichard Tran Mills .  g - the original local vector
2735bc0a1609SRichard Tran Mills -  mode - one of INSERT_VALUES or ADD_VALUES
2736f089877aSRichard Tran Mills 
2737bc0a1609SRichard Tran Mills    Output Parameter:
2738bc0a1609SRichard Tran Mills .  l  - the local vector with correct ghost values
2739f089877aSRichard Tran Mills 
2740f089877aSRichard Tran Mills    Level: intermediate
2741f089877aSRichard Tran Mills 
2742bc0a1609SRichard Tran Mills    Notes:
2743bc0a1609SRichard Tran Mills    The local vectors used here need not be the same as those
2744bc0a1609SRichard Tran Mills    obtained from DMCreateLocalVector(), BUT they
2745bc0a1609SRichard Tran Mills    must have the same parallel data layout; they could, for example, be
2746bc0a1609SRichard Tran Mills    obtained with VecDuplicate() from the DM originating vectors.
2747bc0a1609SRichard Tran Mills 
2748bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalBegin(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin()
2749f089877aSRichard Tran Mills 
2750f089877aSRichard Tran Mills @*/
2751f089877aSRichard Tran Mills PetscErrorCode  DMLocalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l)
2752f089877aSRichard Tran Mills {
2753f089877aSRichard Tran Mills   PetscErrorCode          ierr;
2754f089877aSRichard Tran Mills 
2755f089877aSRichard Tran Mills   PetscFunctionBegin;
2756f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2757bb358533SPatrick Sanan   if (!dm->ops->localtolocalend) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps");
2758f089877aSRichard Tran Mills   ierr = (*dm->ops->localtolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
2759f089877aSRichard Tran Mills   PetscFunctionReturn(0);
2760f089877aSRichard Tran Mills }
2761f089877aSRichard Tran Mills 
2762f089877aSRichard Tran Mills 
276347c6ae99SBarry Smith /*@
276447c6ae99SBarry Smith     DMCoarsen - Coarsens a DM object
276547c6ae99SBarry Smith 
2766*d083f849SBarry Smith     Collective on dm
276747c6ae99SBarry Smith 
276847c6ae99SBarry Smith     Input Parameter:
276947c6ae99SBarry Smith +   dm - the DM object
277091d95f02SJed Brown -   comm - the communicator to contain the new DM object (or MPI_COMM_NULL)
277147c6ae99SBarry Smith 
277247c6ae99SBarry Smith     Output Parameter:
277347c6ae99SBarry Smith .   dmc - the coarsened DM
277447c6ae99SBarry Smith 
277547c6ae99SBarry Smith     Level: developer
277647c6ae99SBarry Smith 
2777e727c939SJed Brown .seealso DMRefine(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
277847c6ae99SBarry Smith 
277947c6ae99SBarry Smith @*/
27807087cfbeSBarry Smith PetscErrorCode DMCoarsen(DM dm, MPI_Comm comm, DM *dmc)
278147c6ae99SBarry Smith {
278247c6ae99SBarry Smith   PetscErrorCode    ierr;
2783b17ce1afSJed Brown   DMCoarsenHookLink link;
278447c6ae99SBarry Smith 
278547c6ae99SBarry Smith   PetscFunctionBegin;
2786171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2787fef3a512SBarry Smith   if (!dm->ops->coarsen) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM cannot coarsen");
278847a35634SPatrick Farrell   ierr = PetscLogEventBegin(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr);
278947c6ae99SBarry Smith   ierr                      = (*dm->ops->coarsen)(dm, comm, dmc);CHKERRQ(ierr);
27908892b4c3SMatthew G. Knepley   if (!(*dmc)) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "NULL coarse mesh produced");
2791a8fb8f29SToby Isaac   ierr = DMSetCoarseDM(dm,*dmc);CHKERRQ(ierr);
279243842a1eSJed Brown   (*dmc)->ops->creatematrix = dm->ops->creatematrix;
27938cd211a4SJed Brown   ierr                      = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmc);CHKERRQ(ierr);
2794644e2e5bSBarry Smith   (*dmc)->ctx               = dm->ctx;
27950598a293SJed Brown   (*dmc)->levelup           = dm->levelup;
2796656b349aSBarry Smith   (*dmc)->leveldown         = dm->leveldown + 1;
2797e4b4b23bSJed Brown   ierr                      = DMSetMatType(*dmc,dm->mattype);CHKERRQ(ierr);
2798b17ce1afSJed Brown   for (link=dm->coarsenhook; link; link=link->next) {
2799b17ce1afSJed Brown     if (link->coarsenhook) {ierr = (*link->coarsenhook)(dm,*dmc,link->ctx);CHKERRQ(ierr);}
2800b17ce1afSJed Brown   }
280147a35634SPatrick Farrell   ierr = PetscLogEventEnd(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr);
2802b17ce1afSJed Brown   PetscFunctionReturn(0);
2803b17ce1afSJed Brown }
2804b17ce1afSJed Brown 
2805bb9467b5SJed Brown /*@C
2806b17ce1afSJed Brown    DMCoarsenHookAdd - adds a callback to be run when restricting a nonlinear problem to the coarse grid
2807b17ce1afSJed Brown 
2808b17ce1afSJed Brown    Logically Collective
2809b17ce1afSJed Brown 
2810b17ce1afSJed Brown    Input Arguments:
2811b17ce1afSJed Brown +  fine - nonlinear solver context on which to run a hook when restricting to a coarser level
2812b17ce1afSJed Brown .  coarsenhook - function to run when setting up a coarser level
2813b17ce1afSJed Brown .  restricthook - function to run to update data on coarser levels (once per SNESSolve())
28140298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2815b17ce1afSJed Brown 
2816b17ce1afSJed Brown    Calling sequence of coarsenhook:
2817b17ce1afSJed Brown $    coarsenhook(DM fine,DM coarse,void *ctx);
2818b17ce1afSJed Brown 
2819b17ce1afSJed Brown +  fine - fine level DM
2820b17ce1afSJed Brown .  coarse - coarse level DM to restrict problem to
2821b17ce1afSJed Brown -  ctx - optional user-defined function context
2822b17ce1afSJed Brown 
2823b17ce1afSJed Brown    Calling sequence for restricthook:
2824c833c3b5SJed Brown $    restricthook(DM fine,Mat mrestrict,Vec rscale,Mat inject,DM coarse,void *ctx)
2825b17ce1afSJed Brown 
2826b17ce1afSJed Brown +  fine - fine level DM
2827b17ce1afSJed Brown .  mrestrict - matrix restricting a fine-level solution to the coarse grid
2828c833c3b5SJed Brown .  rscale - scaling vector for restriction
2829c833c3b5SJed Brown .  inject - matrix restricting by injection
2830b17ce1afSJed Brown .  coarse - coarse level DM to update
2831b17ce1afSJed Brown -  ctx - optional user-defined function context
2832b17ce1afSJed Brown 
2833b17ce1afSJed Brown    Level: advanced
2834b17ce1afSJed Brown 
2835b17ce1afSJed Brown    Notes:
2836b17ce1afSJed Brown    This function is only needed if auxiliary data needs to be set up on coarse grids.
2837b17ce1afSJed Brown 
2838b17ce1afSJed Brown    If this function is called multiple times, the hooks will be run in the order they are added.
2839b17ce1afSJed Brown 
2840b17ce1afSJed Brown    In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
2841b17ce1afSJed Brown    extract the finest level information from its context (instead of from the SNES).
2842b17ce1afSJed Brown 
2843bb9467b5SJed Brown    This function is currently not available from Fortran.
2844bb9467b5SJed Brown 
2845dc822a44SJed Brown .seealso: DMCoarsenHookRemove(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2846b17ce1afSJed Brown @*/
2847b17ce1afSJed Brown PetscErrorCode DMCoarsenHookAdd(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx)
2848b17ce1afSJed Brown {
2849b17ce1afSJed Brown   PetscErrorCode    ierr;
2850b17ce1afSJed Brown   DMCoarsenHookLink link,*p;
2851b17ce1afSJed Brown 
2852b17ce1afSJed Brown   PetscFunctionBegin;
2853b17ce1afSJed Brown   PetscValidHeaderSpecific(fine,DM_CLASSID,1);
28541e3d8eccSJed Brown   for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
28551e3d8eccSJed Brown     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0);
28561e3d8eccSJed Brown   }
285795dccacaSBarry Smith   ierr               = PetscNew(&link);CHKERRQ(ierr);
2858b17ce1afSJed Brown   link->coarsenhook  = coarsenhook;
2859b17ce1afSJed Brown   link->restricthook = restricthook;
2860b17ce1afSJed Brown   link->ctx          = ctx;
28610298fd71SBarry Smith   link->next         = NULL;
2862b17ce1afSJed Brown   *p                 = link;
2863b17ce1afSJed Brown   PetscFunctionReturn(0);
2864b17ce1afSJed Brown }
2865b17ce1afSJed Brown 
2866dc822a44SJed Brown /*@C
2867dc822a44SJed Brown    DMCoarsenHookRemove - remove a callback from the list of hooks to be run when restricting a nonlinear problem to the coarse grid
2868dc822a44SJed Brown 
2869dc822a44SJed Brown    Logically Collective
2870dc822a44SJed Brown 
2871dc822a44SJed Brown    Input Arguments:
2872dc822a44SJed Brown +  fine - nonlinear solver context on which to run a hook when restricting to a coarser level
2873dc822a44SJed Brown .  coarsenhook - function to run when setting up a coarser level
2874dc822a44SJed Brown .  restricthook - function to run to update data on coarser levels (once per SNESSolve())
2875dc822a44SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2876dc822a44SJed Brown 
2877dc822a44SJed Brown    Level: advanced
2878dc822a44SJed Brown 
2879dc822a44SJed Brown    Notes:
2880dc822a44SJed Brown    This function does nothing if the hook is not in the list.
2881dc822a44SJed Brown 
2882dc822a44SJed Brown    This function is currently not available from Fortran.
2883dc822a44SJed Brown 
2884dc822a44SJed Brown .seealso: DMCoarsenHookAdd(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2885dc822a44SJed Brown @*/
2886dc822a44SJed Brown PetscErrorCode DMCoarsenHookRemove(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx)
2887dc822a44SJed Brown {
2888dc822a44SJed Brown   PetscErrorCode    ierr;
2889dc822a44SJed Brown   DMCoarsenHookLink link,*p;
2890dc822a44SJed Brown 
2891dc822a44SJed Brown   PetscFunctionBegin;
2892dc822a44SJed Brown   PetscValidHeaderSpecific(fine,DM_CLASSID,1);
2893dc822a44SJed Brown   for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Search the list of current hooks */
2894dc822a44SJed Brown     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
2895dc822a44SJed Brown       link = *p;
2896dc822a44SJed Brown       *p = link->next;
2897dc822a44SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
2898dc822a44SJed Brown       break;
2899dc822a44SJed Brown     }
2900dc822a44SJed Brown   }
2901dc822a44SJed Brown   PetscFunctionReturn(0);
2902dc822a44SJed Brown }
2903dc822a44SJed Brown 
2904dc822a44SJed Brown 
2905b17ce1afSJed Brown /*@
2906b17ce1afSJed Brown    DMRestrict - restricts user-defined problem data to a coarser DM by running hooks registered by DMCoarsenHookAdd()
2907b17ce1afSJed Brown 
2908b17ce1afSJed Brown    Collective if any hooks are
2909b17ce1afSJed Brown 
2910b17ce1afSJed Brown    Input Arguments:
2911b17ce1afSJed Brown +  fine - finer DM to use as a base
2912b17ce1afSJed Brown .  restrct - restriction matrix, apply using MatRestrict()
2913e91eccc2SStefano Zampini .  rscale - scaling vector for restriction
2914b17ce1afSJed Brown .  inject - injection matrix, also use MatRestrict()
2915e91eccc2SStefano Zampini -  coarse - coarser DM to update
2916b17ce1afSJed Brown 
2917b17ce1afSJed Brown    Level: developer
2918b17ce1afSJed Brown 
2919b17ce1afSJed Brown .seealso: DMCoarsenHookAdd(), MatRestrict()
2920b17ce1afSJed Brown @*/
2921b17ce1afSJed Brown PetscErrorCode DMRestrict(DM fine,Mat restrct,Vec rscale,Mat inject,DM coarse)
2922b17ce1afSJed Brown {
2923b17ce1afSJed Brown   PetscErrorCode    ierr;
2924b17ce1afSJed Brown   DMCoarsenHookLink link;
2925b17ce1afSJed Brown 
2926b17ce1afSJed Brown   PetscFunctionBegin;
2927b17ce1afSJed Brown   for (link=fine->coarsenhook; link; link=link->next) {
29288865f1eaSKarl Rupp     if (link->restricthook) {
29298865f1eaSKarl Rupp       ierr = (*link->restricthook)(fine,restrct,rscale,inject,coarse,link->ctx);CHKERRQ(ierr);
29308865f1eaSKarl Rupp     }
2931b17ce1afSJed Brown   }
293247c6ae99SBarry Smith   PetscFunctionReturn(0);
293347c6ae99SBarry Smith }
293447c6ae99SBarry Smith 
2935bb9467b5SJed Brown /*@C
2936be081cd6SPeter Brune    DMSubDomainHookAdd - adds a callback to be run when restricting a problem to the coarse grid
29375dbd56e3SPeter Brune 
2938*d083f849SBarry Smith    Logically Collective on global
29395dbd56e3SPeter Brune 
29405dbd56e3SPeter Brune    Input Arguments:
29415dbd56e3SPeter Brune +  global - global DM
2942ec4806b8SPeter Brune .  ddhook - function to run to pass data to the decomposition DM upon its creation
29435dbd56e3SPeter Brune .  restricthook - function to run to update data on block solve (at the beginning of the block solve)
29440298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
29455dbd56e3SPeter Brune 
2946ec4806b8SPeter Brune 
2947ec4806b8SPeter Brune    Calling sequence for ddhook:
2948ec4806b8SPeter Brune $    ddhook(DM global,DM block,void *ctx)
2949ec4806b8SPeter Brune 
2950ec4806b8SPeter Brune +  global - global DM
2951ec4806b8SPeter Brune .  block  - block DM
2952ec4806b8SPeter Brune -  ctx - optional user-defined function context
2953ec4806b8SPeter Brune 
29545dbd56e3SPeter Brune    Calling sequence for restricthook:
2955ec4806b8SPeter Brune $    restricthook(DM global,VecScatter out,VecScatter in,DM block,void *ctx)
29565dbd56e3SPeter Brune 
29575dbd56e3SPeter Brune +  global - global DM
29585dbd56e3SPeter Brune .  out    - scatter to the outer (with ghost and overlap points) block vector
29595dbd56e3SPeter Brune .  in     - scatter to block vector values only owned locally
2960ec4806b8SPeter Brune .  block  - block DM
29615dbd56e3SPeter Brune -  ctx - optional user-defined function context
29625dbd56e3SPeter Brune 
29635dbd56e3SPeter Brune    Level: advanced
29645dbd56e3SPeter Brune 
29655dbd56e3SPeter Brune    Notes:
2966ec4806b8SPeter Brune    This function is only needed if auxiliary data needs to be set up on subdomain DMs.
29675dbd56e3SPeter Brune 
29685dbd56e3SPeter Brune    If this function is called multiple times, the hooks will be run in the order they are added.
29695dbd56e3SPeter Brune 
29705dbd56e3SPeter Brune    In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
2971ec4806b8SPeter Brune    extract the global information from its context (instead of from the SNES).
29725dbd56e3SPeter Brune 
2973bb9467b5SJed Brown    This function is currently not available from Fortran.
2974bb9467b5SJed Brown 
29755dbd56e3SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
29765dbd56e3SPeter Brune @*/
2977be081cd6SPeter Brune PetscErrorCode DMSubDomainHookAdd(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx)
29785dbd56e3SPeter Brune {
29795dbd56e3SPeter Brune   PetscErrorCode      ierr;
2980be081cd6SPeter Brune   DMSubDomainHookLink link,*p;
29815dbd56e3SPeter Brune 
29825dbd56e3SPeter Brune   PetscFunctionBegin;
29835dbd56e3SPeter Brune   PetscValidHeaderSpecific(global,DM_CLASSID,1);
2984b3a6b972SJed Brown   for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
2985b3a6b972SJed Brown     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0);
2986b3a6b972SJed Brown   }
298795dccacaSBarry Smith   ierr               = PetscNew(&link);CHKERRQ(ierr);
29885dbd56e3SPeter Brune   link->restricthook = restricthook;
2989be081cd6SPeter Brune   link->ddhook       = ddhook;
29905dbd56e3SPeter Brune   link->ctx          = ctx;
29910298fd71SBarry Smith   link->next         = NULL;
29925dbd56e3SPeter Brune   *p                 = link;
29935dbd56e3SPeter Brune   PetscFunctionReturn(0);
29945dbd56e3SPeter Brune }
29955dbd56e3SPeter Brune 
2996b3a6b972SJed Brown /*@C
2997b3a6b972SJed Brown    DMSubDomainHookRemove - remove a callback from the list to be run when restricting a problem to the coarse grid
2998b3a6b972SJed Brown 
2999b3a6b972SJed Brown    Logically Collective
3000b3a6b972SJed Brown 
3001b3a6b972SJed Brown    Input Arguments:
3002b3a6b972SJed Brown +  global - global DM
3003b3a6b972SJed Brown .  ddhook - function to run to pass data to the decomposition DM upon its creation
3004b3a6b972SJed Brown .  restricthook - function to run to update data on block solve (at the beginning of the block solve)
3005b3a6b972SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
3006b3a6b972SJed Brown 
3007b3a6b972SJed Brown    Level: advanced
3008b3a6b972SJed Brown 
3009b3a6b972SJed Brown    Notes:
3010b3a6b972SJed Brown 
3011b3a6b972SJed Brown    This function is currently not available from Fortran.
3012b3a6b972SJed Brown 
3013b3a6b972SJed Brown .seealso: DMSubDomainHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
3014b3a6b972SJed Brown @*/
3015b3a6b972SJed Brown PetscErrorCode DMSubDomainHookRemove(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx)
3016b3a6b972SJed Brown {
3017b3a6b972SJed Brown   PetscErrorCode      ierr;
3018b3a6b972SJed Brown   DMSubDomainHookLink link,*p;
3019b3a6b972SJed Brown 
3020b3a6b972SJed Brown   PetscFunctionBegin;
3021b3a6b972SJed Brown   PetscValidHeaderSpecific(global,DM_CLASSID,1);
3022b3a6b972SJed Brown   for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Search the list of current hooks */
3023b3a6b972SJed Brown     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
3024b3a6b972SJed Brown       link = *p;
3025b3a6b972SJed Brown       *p = link->next;
3026b3a6b972SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
3027b3a6b972SJed Brown       break;
3028b3a6b972SJed Brown     }
3029b3a6b972SJed Brown   }
3030b3a6b972SJed Brown   PetscFunctionReturn(0);
3031b3a6b972SJed Brown }
3032b3a6b972SJed Brown 
30335dbd56e3SPeter Brune /*@
3034be081cd6SPeter Brune    DMSubDomainRestrict - restricts user-defined problem data to a block DM by running hooks registered by DMSubDomainHookAdd()
30355dbd56e3SPeter Brune 
30365dbd56e3SPeter Brune    Collective if any hooks are
30375dbd56e3SPeter Brune 
30385dbd56e3SPeter Brune    Input Arguments:
30395dbd56e3SPeter Brune +  fine - finer DM to use as a base
3040be081cd6SPeter Brune .  oscatter - scatter from domain global vector filling subdomain global vector with overlap
3041be081cd6SPeter Brune .  gscatter - scatter from domain global vector filling subdomain local vector with ghosts
30425dbd56e3SPeter Brune -  coarse - coarer DM to update
30435dbd56e3SPeter Brune 
30445dbd56e3SPeter Brune    Level: developer
30455dbd56e3SPeter Brune 
30465dbd56e3SPeter Brune .seealso: DMCoarsenHookAdd(), MatRestrict()
30475dbd56e3SPeter Brune @*/
3048be081cd6SPeter Brune PetscErrorCode DMSubDomainRestrict(DM global,VecScatter oscatter,VecScatter gscatter,DM subdm)
30495dbd56e3SPeter Brune {
30505dbd56e3SPeter Brune   PetscErrorCode      ierr;
3051be081cd6SPeter Brune   DMSubDomainHookLink link;
30525dbd56e3SPeter Brune 
30535dbd56e3SPeter Brune   PetscFunctionBegin;
3054be081cd6SPeter Brune   for (link=global->subdomainhook; link; link=link->next) {
30558865f1eaSKarl Rupp     if (link->restricthook) {
30568865f1eaSKarl Rupp       ierr = (*link->restricthook)(global,oscatter,gscatter,subdm,link->ctx);CHKERRQ(ierr);
30578865f1eaSKarl Rupp     }
30585dbd56e3SPeter Brune   }
30595dbd56e3SPeter Brune   PetscFunctionReturn(0);
30605dbd56e3SPeter Brune }
30615dbd56e3SPeter Brune 
30625fe1f584SPeter Brune /*@
30636a7d9d85SPeter Brune     DMGetCoarsenLevel - Get's the number of coarsenings that have generated this DM.
30645fe1f584SPeter Brune 
30655fe1f584SPeter Brune     Not Collective
30665fe1f584SPeter Brune 
30675fe1f584SPeter Brune     Input Parameter:
30685fe1f584SPeter Brune .   dm - the DM object
30695fe1f584SPeter Brune 
30705fe1f584SPeter Brune     Output Parameter:
30716a7d9d85SPeter Brune .   level - number of coarsenings
30725fe1f584SPeter Brune 
30735fe1f584SPeter Brune     Level: developer
30745fe1f584SPeter Brune 
30756a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
30765fe1f584SPeter Brune 
30775fe1f584SPeter Brune @*/
30785fe1f584SPeter Brune PetscErrorCode  DMGetCoarsenLevel(DM dm,PetscInt *level)
30795fe1f584SPeter Brune {
30805fe1f584SPeter Brune   PetscFunctionBegin;
30815fe1f584SPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
30825fe1f584SPeter Brune   *level = dm->leveldown;
30835fe1f584SPeter Brune   PetscFunctionReturn(0);
30845fe1f584SPeter Brune }
30855fe1f584SPeter Brune 
30869a64c4a8SMatthew G. Knepley /*@
30879a64c4a8SMatthew G. Knepley     DMSetCoarsenLevel - Sets the number of coarsenings that have generated this DM.
30889a64c4a8SMatthew G. Knepley 
30899a64c4a8SMatthew G. Knepley     Not Collective
30909a64c4a8SMatthew G. Knepley 
30919a64c4a8SMatthew G. Knepley     Input Parameters:
30929a64c4a8SMatthew G. Knepley +   dm - the DM object
30939a64c4a8SMatthew G. Knepley -   level - number of coarsenings
30949a64c4a8SMatthew G. Knepley 
30959a64c4a8SMatthew G. Knepley     Level: developer
30969a64c4a8SMatthew G. Knepley 
30979a64c4a8SMatthew G. Knepley .seealso DMCoarsen(), DMGetCoarsenLevel(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
30989a64c4a8SMatthew G. Knepley @*/
30999a64c4a8SMatthew G. Knepley PetscErrorCode DMSetCoarsenLevel(DM dm,PetscInt level)
31009a64c4a8SMatthew G. Knepley {
31019a64c4a8SMatthew G. Knepley   PetscFunctionBegin;
31029a64c4a8SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
31039a64c4a8SMatthew G. Knepley   dm->leveldown = level;
31049a64c4a8SMatthew G. Knepley   PetscFunctionReturn(0);
31059a64c4a8SMatthew G. Knepley }
31069a64c4a8SMatthew G. Knepley 
31075fe1f584SPeter Brune 
31085fe1f584SPeter Brune 
310947c6ae99SBarry Smith /*@C
311047c6ae99SBarry Smith     DMRefineHierarchy - Refines a DM object, all levels at once
311147c6ae99SBarry Smith 
3112*d083f849SBarry Smith     Collective on dm
311347c6ae99SBarry Smith 
311447c6ae99SBarry Smith     Input Parameter:
311547c6ae99SBarry Smith +   dm - the DM object
311647c6ae99SBarry Smith -   nlevels - the number of levels of refinement
311747c6ae99SBarry Smith 
311847c6ae99SBarry Smith     Output Parameter:
311947c6ae99SBarry Smith .   dmf - the refined DM hierarchy
312047c6ae99SBarry Smith 
312147c6ae99SBarry Smith     Level: developer
312247c6ae99SBarry Smith 
3123e727c939SJed Brown .seealso DMCoarsenHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
312447c6ae99SBarry Smith 
312547c6ae99SBarry Smith @*/
31267087cfbeSBarry Smith PetscErrorCode  DMRefineHierarchy(DM dm,PetscInt nlevels,DM dmf[])
312747c6ae99SBarry Smith {
312847c6ae99SBarry Smith   PetscErrorCode ierr;
312947c6ae99SBarry Smith 
313047c6ae99SBarry Smith   PetscFunctionBegin;
3131171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3132ce94432eSBarry Smith   if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative");
313347c6ae99SBarry Smith   if (nlevels == 0) PetscFunctionReturn(0);
313447c6ae99SBarry Smith   if (dm->ops->refinehierarchy) {
313547c6ae99SBarry Smith     ierr = (*dm->ops->refinehierarchy)(dm,nlevels,dmf);CHKERRQ(ierr);
313647c6ae99SBarry Smith   } else if (dm->ops->refine) {
313747c6ae99SBarry Smith     PetscInt i;
313847c6ae99SBarry Smith 
3139ce94432eSBarry Smith     ierr = DMRefine(dm,PetscObjectComm((PetscObject)dm),&dmf[0]);CHKERRQ(ierr);
314047c6ae99SBarry Smith     for (i=1; i<nlevels; i++) {
3141ce94432eSBarry Smith       ierr = DMRefine(dmf[i-1],PetscObjectComm((PetscObject)dm),&dmf[i]);CHKERRQ(ierr);
314247c6ae99SBarry Smith     }
3143ce94432eSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No RefineHierarchy for this DM yet");
314447c6ae99SBarry Smith   PetscFunctionReturn(0);
314547c6ae99SBarry Smith }
314647c6ae99SBarry Smith 
314747c6ae99SBarry Smith /*@C
314847c6ae99SBarry Smith     DMCoarsenHierarchy - Coarsens a DM object, all levels at once
314947c6ae99SBarry Smith 
3150*d083f849SBarry Smith     Collective on dm
315147c6ae99SBarry Smith 
315247c6ae99SBarry Smith     Input Parameter:
315347c6ae99SBarry Smith +   dm - the DM object
315447c6ae99SBarry Smith -   nlevels - the number of levels of coarsening
315547c6ae99SBarry Smith 
315647c6ae99SBarry Smith     Output Parameter:
315747c6ae99SBarry Smith .   dmc - the coarsened DM hierarchy
315847c6ae99SBarry Smith 
315947c6ae99SBarry Smith     Level: developer
316047c6ae99SBarry Smith 
3161e727c939SJed Brown .seealso DMRefineHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
316247c6ae99SBarry Smith 
316347c6ae99SBarry Smith @*/
31647087cfbeSBarry Smith PetscErrorCode  DMCoarsenHierarchy(DM dm, PetscInt nlevels, DM dmc[])
316547c6ae99SBarry Smith {
316647c6ae99SBarry Smith   PetscErrorCode ierr;
316747c6ae99SBarry Smith 
316847c6ae99SBarry Smith   PetscFunctionBegin;
3169171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3170ce94432eSBarry Smith   if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative");
317147c6ae99SBarry Smith   if (nlevels == 0) PetscFunctionReturn(0);
317247c6ae99SBarry Smith   PetscValidPointer(dmc,3);
317347c6ae99SBarry Smith   if (dm->ops->coarsenhierarchy) {
317447c6ae99SBarry Smith     ierr = (*dm->ops->coarsenhierarchy)(dm, nlevels, dmc);CHKERRQ(ierr);
317547c6ae99SBarry Smith   } else if (dm->ops->coarsen) {
317647c6ae99SBarry Smith     PetscInt i;
317747c6ae99SBarry Smith 
3178ce94432eSBarry Smith     ierr = DMCoarsen(dm,PetscObjectComm((PetscObject)dm),&dmc[0]);CHKERRQ(ierr);
317947c6ae99SBarry Smith     for (i=1; i<nlevels; i++) {
3180ce94432eSBarry Smith       ierr = DMCoarsen(dmc[i-1],PetscObjectComm((PetscObject)dm),&dmc[i]);CHKERRQ(ierr);
318147c6ae99SBarry Smith     }
3182ce94432eSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No CoarsenHierarchy for this DM yet");
318347c6ae99SBarry Smith   PetscFunctionReturn(0);
318447c6ae99SBarry Smith }
318547c6ae99SBarry Smith 
318647c6ae99SBarry Smith /*@
3187e727c939SJed Brown    DMCreateAggregates - Gets the aggregates that map between
318847c6ae99SBarry Smith    grids associated with two DMs.
318947c6ae99SBarry Smith 
3190*d083f849SBarry Smith    Collective on dmc
319147c6ae99SBarry Smith 
319247c6ae99SBarry Smith    Input Parameters:
319347c6ae99SBarry Smith +  dmc - the coarse grid DM
319447c6ae99SBarry Smith -  dmf - the fine grid DM
319547c6ae99SBarry Smith 
319647c6ae99SBarry Smith    Output Parameters:
319747c6ae99SBarry Smith .  rest - the restriction matrix (transpose of the projection matrix)
319847c6ae99SBarry Smith 
319947c6ae99SBarry Smith    Level: intermediate
320047c6ae99SBarry Smith 
3201e727c939SJed Brown .seealso: DMRefine(), DMCreateInjection(), DMCreateInterpolation()
320247c6ae99SBarry Smith @*/
3203e727c939SJed Brown PetscErrorCode  DMCreateAggregates(DM dmc, DM dmf, Mat *rest)
320447c6ae99SBarry Smith {
320547c6ae99SBarry Smith   PetscErrorCode ierr;
320647c6ae99SBarry Smith 
320747c6ae99SBarry Smith   PetscFunctionBegin;
3208171400e9SBarry Smith   PetscValidHeaderSpecific(dmc,DM_CLASSID,1);
3209171400e9SBarry Smith   PetscValidHeaderSpecific(dmf,DM_CLASSID,2);
321047c6ae99SBarry Smith   ierr = (*dmc->ops->getaggregates)(dmc, dmf, rest);CHKERRQ(ierr);
321147c6ae99SBarry Smith   PetscFunctionReturn(0);
321247c6ae99SBarry Smith }
321347c6ae99SBarry Smith 
32141a266240SBarry Smith /*@C
32151a266240SBarry Smith     DMSetApplicationContextDestroy - Sets a user function that will be called to destroy the application context when the DM is destroyed
32161a266240SBarry Smith 
32171a266240SBarry Smith     Not Collective
32181a266240SBarry Smith 
32191a266240SBarry Smith     Input Parameters:
32201a266240SBarry Smith +   dm - the DM object
32211a266240SBarry Smith -   destroy - the destroy function
32221a266240SBarry Smith 
32231a266240SBarry Smith     Level: intermediate
32241a266240SBarry Smith 
3225e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
32261a266240SBarry Smith 
3227f07f9ceaSJed Brown @*/
32281a266240SBarry Smith PetscErrorCode  DMSetApplicationContextDestroy(DM dm,PetscErrorCode (*destroy)(void**))
32291a266240SBarry Smith {
32301a266240SBarry Smith   PetscFunctionBegin;
3231171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
32321a266240SBarry Smith   dm->ctxdestroy = destroy;
32331a266240SBarry Smith   PetscFunctionReturn(0);
32341a266240SBarry Smith }
32351a266240SBarry Smith 
3236b07ff414SBarry Smith /*@
32371b2093e4SBarry Smith     DMSetApplicationContext - Set a user context into a DM object
323847c6ae99SBarry Smith 
323947c6ae99SBarry Smith     Not Collective
324047c6ae99SBarry Smith 
324147c6ae99SBarry Smith     Input Parameters:
324247c6ae99SBarry Smith +   dm - the DM object
324347c6ae99SBarry Smith -   ctx - the user context
324447c6ae99SBarry Smith 
324547c6ae99SBarry Smith     Level: intermediate
324647c6ae99SBarry Smith 
3247e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
324847c6ae99SBarry Smith 
324947c6ae99SBarry Smith @*/
32501b2093e4SBarry Smith PetscErrorCode  DMSetApplicationContext(DM dm,void *ctx)
325147c6ae99SBarry Smith {
325247c6ae99SBarry Smith   PetscFunctionBegin;
3253171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
325447c6ae99SBarry Smith   dm->ctx = ctx;
325547c6ae99SBarry Smith   PetscFunctionReturn(0);
325647c6ae99SBarry Smith }
325747c6ae99SBarry Smith 
325847c6ae99SBarry Smith /*@
32591b2093e4SBarry Smith     DMGetApplicationContext - Gets a user context from a DM object
326047c6ae99SBarry Smith 
326147c6ae99SBarry Smith     Not Collective
326247c6ae99SBarry Smith 
326347c6ae99SBarry Smith     Input Parameter:
326447c6ae99SBarry Smith .   dm - the DM object
326547c6ae99SBarry Smith 
326647c6ae99SBarry Smith     Output Parameter:
326747c6ae99SBarry Smith .   ctx - the user context
326847c6ae99SBarry Smith 
326947c6ae99SBarry Smith     Level: intermediate
327047c6ae99SBarry Smith 
3271e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
327247c6ae99SBarry Smith 
327347c6ae99SBarry Smith @*/
32741b2093e4SBarry Smith PetscErrorCode  DMGetApplicationContext(DM dm,void *ctx)
327547c6ae99SBarry Smith {
327647c6ae99SBarry Smith   PetscFunctionBegin;
3277171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
32781b2093e4SBarry Smith   *(void**)ctx = dm->ctx;
327947c6ae99SBarry Smith   PetscFunctionReturn(0);
328047c6ae99SBarry Smith }
328147c6ae99SBarry Smith 
328208da532bSDmitry Karpeev /*@C
3283df3898eeSBarry Smith     DMSetVariableBounds - sets a function to compute the lower and upper bound vectors for SNESVI.
328408da532bSDmitry Karpeev 
3285*d083f849SBarry Smith     Logically Collective on dm
328608da532bSDmitry Karpeev 
328708da532bSDmitry Karpeev     Input Parameter:
328808da532bSDmitry Karpeev +   dm - the DM object
32890298fd71SBarry Smith -   f - the function that computes variable bounds used by SNESVI (use NULL to cancel a previous function that was set)
329008da532bSDmitry Karpeev 
329108da532bSDmitry Karpeev     Level: intermediate
329208da532bSDmitry Karpeev 
3293835c3ec7SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext(),
329408da532bSDmitry Karpeev          DMSetJacobian()
329508da532bSDmitry Karpeev 
329608da532bSDmitry Karpeev @*/
329708da532bSDmitry Karpeev PetscErrorCode  DMSetVariableBounds(DM dm,PetscErrorCode (*f)(DM,Vec,Vec))
329808da532bSDmitry Karpeev {
329908da532bSDmitry Karpeev   PetscFunctionBegin;
330008da532bSDmitry Karpeev   dm->ops->computevariablebounds = f;
330108da532bSDmitry Karpeev   PetscFunctionReturn(0);
330208da532bSDmitry Karpeev }
330308da532bSDmitry Karpeev 
330408da532bSDmitry Karpeev /*@
330508da532bSDmitry Karpeev     DMHasVariableBounds - does the DM object have a variable bounds function?
330608da532bSDmitry Karpeev 
330708da532bSDmitry Karpeev     Not Collective
330808da532bSDmitry Karpeev 
330908da532bSDmitry Karpeev     Input Parameter:
331008da532bSDmitry Karpeev .   dm - the DM object to destroy
331108da532bSDmitry Karpeev 
331208da532bSDmitry Karpeev     Output Parameter:
331308da532bSDmitry Karpeev .   flg - PETSC_TRUE if the variable bounds function exists
331408da532bSDmitry Karpeev 
331508da532bSDmitry Karpeev     Level: developer
331608da532bSDmitry Karpeev 
331774e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
331808da532bSDmitry Karpeev 
331908da532bSDmitry Karpeev @*/
332008da532bSDmitry Karpeev PetscErrorCode  DMHasVariableBounds(DM dm,PetscBool  *flg)
332108da532bSDmitry Karpeev {
332208da532bSDmitry Karpeev   PetscFunctionBegin;
332308da532bSDmitry Karpeev   *flg =  (dm->ops->computevariablebounds) ? PETSC_TRUE : PETSC_FALSE;
332408da532bSDmitry Karpeev   PetscFunctionReturn(0);
332508da532bSDmitry Karpeev }
332608da532bSDmitry Karpeev 
332708da532bSDmitry Karpeev /*@C
332808da532bSDmitry Karpeev     DMComputeVariableBounds - compute variable bounds used by SNESVI.
332908da532bSDmitry Karpeev 
3330*d083f849SBarry Smith     Logically Collective on dm
333108da532bSDmitry Karpeev 
333208da532bSDmitry Karpeev     Input Parameters:
3333907376e6SBarry Smith .   dm - the DM object
333408da532bSDmitry Karpeev 
333508da532bSDmitry Karpeev     Output parameters:
333608da532bSDmitry Karpeev +   xl - lower bound
333708da532bSDmitry Karpeev -   xu - upper bound
333808da532bSDmitry Karpeev 
3339907376e6SBarry Smith     Level: advanced
3340907376e6SBarry Smith 
334195452b02SPatrick Sanan     Notes:
334295452b02SPatrick Sanan     This is generally not called by users. It calls the function provided by the user with DMSetVariableBounds()
334308da532bSDmitry Karpeev 
334474e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
334508da532bSDmitry Karpeev 
334608da532bSDmitry Karpeev @*/
334708da532bSDmitry Karpeev PetscErrorCode  DMComputeVariableBounds(DM dm, Vec xl, Vec xu)
334808da532bSDmitry Karpeev {
334908da532bSDmitry Karpeev   PetscErrorCode ierr;
33505fd66863SKarl Rupp 
335108da532bSDmitry Karpeev   PetscFunctionBegin;
335208da532bSDmitry Karpeev   PetscValidHeaderSpecific(xl,VEC_CLASSID,2);
335308da532bSDmitry Karpeev   PetscValidHeaderSpecific(xu,VEC_CLASSID,2);
335408da532bSDmitry Karpeev   if (dm->ops->computevariablebounds) {
335508da532bSDmitry Karpeev     ierr = (*dm->ops->computevariablebounds)(dm, xl,xu);CHKERRQ(ierr);
33568865f1eaSKarl Rupp   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "This DM is incapable of computing variable bounds.");
335708da532bSDmitry Karpeev   PetscFunctionReturn(0);
335808da532bSDmitry Karpeev }
335908da532bSDmitry Karpeev 
3360b0ae01b7SPeter Brune /*@
3361b0ae01b7SPeter Brune     DMHasColoring - does the DM object have a method of providing a coloring?
3362b0ae01b7SPeter Brune 
3363b0ae01b7SPeter Brune     Not Collective
3364b0ae01b7SPeter Brune 
3365b0ae01b7SPeter Brune     Input Parameter:
3366b0ae01b7SPeter Brune .   dm - the DM object
3367b0ae01b7SPeter Brune 
3368b0ae01b7SPeter Brune     Output Parameter:
3369b0ae01b7SPeter Brune .   flg - PETSC_TRUE if the DM has facilities for DMCreateColoring().
3370b0ae01b7SPeter Brune 
3371b0ae01b7SPeter Brune     Level: developer
3372b0ae01b7SPeter Brune 
33731565f0a7SPatrick Sanan .seealso DMCreateColoring()
3374b0ae01b7SPeter Brune 
3375b0ae01b7SPeter Brune @*/
3376b0ae01b7SPeter Brune PetscErrorCode  DMHasColoring(DM dm,PetscBool  *flg)
3377b0ae01b7SPeter Brune {
3378b0ae01b7SPeter Brune   PetscFunctionBegin;
3379b0ae01b7SPeter Brune   *flg =  (dm->ops->getcoloring) ? PETSC_TRUE : PETSC_FALSE;
3380b0ae01b7SPeter Brune   PetscFunctionReturn(0);
3381b0ae01b7SPeter Brune }
3382b0ae01b7SPeter Brune 
33833ad4599aSBarry Smith /*@
33843ad4599aSBarry Smith     DMHasCreateRestriction - does the DM object have a method of providing a restriction?
33853ad4599aSBarry Smith 
33863ad4599aSBarry Smith     Not Collective
33873ad4599aSBarry Smith 
33883ad4599aSBarry Smith     Input Parameter:
33893ad4599aSBarry Smith .   dm - the DM object
33903ad4599aSBarry Smith 
33913ad4599aSBarry Smith     Output Parameter:
33923ad4599aSBarry Smith .   flg - PETSC_TRUE if the DM has facilities for DMCreateRestriction().
33933ad4599aSBarry Smith 
33943ad4599aSBarry Smith     Level: developer
33953ad4599aSBarry Smith 
33961565f0a7SPatrick Sanan .seealso DMCreateRestriction()
33973ad4599aSBarry Smith 
33983ad4599aSBarry Smith @*/
33993ad4599aSBarry Smith PetscErrorCode  DMHasCreateRestriction(DM dm,PetscBool  *flg)
34003ad4599aSBarry Smith {
34013ad4599aSBarry Smith   PetscFunctionBegin;
34023ad4599aSBarry Smith   *flg =  (dm->ops->createrestriction) ? PETSC_TRUE : PETSC_FALSE;
34033ad4599aSBarry Smith   PetscFunctionReturn(0);
34043ad4599aSBarry Smith }
34053ad4599aSBarry Smith 
3406a7058e45SLawrence Mitchell 
3407a7058e45SLawrence Mitchell /*@
3408a7058e45SLawrence Mitchell     DMHasCreateInjection - does the DM object have a method of providing an injection?
3409a7058e45SLawrence Mitchell 
3410a7058e45SLawrence Mitchell     Not Collective
3411a7058e45SLawrence Mitchell 
3412a7058e45SLawrence Mitchell     Input Parameter:
3413a7058e45SLawrence Mitchell .   dm - the DM object
3414a7058e45SLawrence Mitchell 
3415a7058e45SLawrence Mitchell     Output Parameter:
3416a7058e45SLawrence Mitchell .   flg - PETSC_TRUE if the DM has facilities for DMCreateInjection().
3417a7058e45SLawrence Mitchell 
3418a7058e45SLawrence Mitchell     Level: developer
3419a7058e45SLawrence Mitchell 
34201565f0a7SPatrick Sanan .seealso DMCreateInjection()
3421a7058e45SLawrence Mitchell 
3422a7058e45SLawrence Mitchell @*/
3423a7058e45SLawrence Mitchell PetscErrorCode  DMHasCreateInjection(DM dm,PetscBool  *flg)
3424a7058e45SLawrence Mitchell {
34254a7a4c06SLawrence Mitchell   PetscErrorCode ierr;
3426a7058e45SLawrence Mitchell   PetscFunctionBegin;
34274a7a4c06SLawrence Mitchell   if (!dm->ops->hascreateinjection) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DMHasCreateInjection not implemented for this type");
34284a7a4c06SLawrence Mitchell   ierr = (*dm->ops->hascreateinjection)(dm,flg);CHKERRQ(ierr);
3429a7058e45SLawrence Mitchell   PetscFunctionReturn(0);
3430a7058e45SLawrence Mitchell }
3431a7058e45SLawrence Mitchell 
3432748fac09SDmitry Karpeev /*@C
343308da532bSDmitry Karpeev     DMSetVec - set the vector at which to compute residual, Jacobian and VI bounds, if the problem is nonlinear.
343408da532bSDmitry Karpeev 
3435*d083f849SBarry Smith     Collective on dm
343608da532bSDmitry Karpeev 
343708da532bSDmitry Karpeev     Input Parameter:
343808da532bSDmitry Karpeev +   dm - the DM object
34390298fd71SBarry Smith -   x - location to compute residual and Jacobian, if NULL is passed to those routines; will be NULL for linear problems.
344008da532bSDmitry Karpeev 
344108da532bSDmitry Karpeev     Level: developer
344208da532bSDmitry Karpeev 
344374e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
344408da532bSDmitry Karpeev 
344508da532bSDmitry Karpeev @*/
344608da532bSDmitry Karpeev PetscErrorCode  DMSetVec(DM dm,Vec x)
344708da532bSDmitry Karpeev {
344808da532bSDmitry Karpeev   PetscErrorCode ierr;
34495fd66863SKarl Rupp 
345008da532bSDmitry Karpeev   PetscFunctionBegin;
345108da532bSDmitry Karpeev   if (x) {
345208da532bSDmitry Karpeev     if (!dm->x) {
345308da532bSDmitry Karpeev       ierr = DMCreateGlobalVector(dm,&dm->x);CHKERRQ(ierr);
345408da532bSDmitry Karpeev     }
345508da532bSDmitry Karpeev     ierr = VecCopy(x,dm->x);CHKERRQ(ierr);
34568865f1eaSKarl Rupp   } else if (dm->x) {
345708da532bSDmitry Karpeev     ierr = VecDestroy(&dm->x);CHKERRQ(ierr);
345808da532bSDmitry Karpeev   }
345908da532bSDmitry Karpeev   PetscFunctionReturn(0);
346008da532bSDmitry Karpeev }
346108da532bSDmitry Karpeev 
34620298fd71SBarry Smith PetscFunctionList DMList              = NULL;
3463264ace61SBarry Smith PetscBool         DMRegisterAllCalled = PETSC_FALSE;
3464264ace61SBarry Smith 
3465264ace61SBarry Smith /*@C
3466264ace61SBarry Smith   DMSetType - Builds a DM, for a particular DM implementation.
3467264ace61SBarry Smith 
3468*d083f849SBarry Smith   Collective on dm
3469264ace61SBarry Smith 
3470264ace61SBarry Smith   Input Parameters:
3471264ace61SBarry Smith + dm     - The DM object
3472264ace61SBarry Smith - method - The name of the DM type
3473264ace61SBarry Smith 
3474264ace61SBarry Smith   Options Database Key:
3475264ace61SBarry Smith . -dm_type <type> - Sets the DM type; use -help for a list of available types
3476264ace61SBarry Smith 
3477264ace61SBarry Smith   Notes:
3478e1589f56SBarry Smith   See "petsc/include/petscdm.h" for available DM types (for instance, DM1D, DM2D, or DM3D).
3479264ace61SBarry Smith 
3480264ace61SBarry Smith   Level: intermediate
3481264ace61SBarry Smith 
3482264ace61SBarry Smith .seealso: DMGetType(), DMCreate()
3483264ace61SBarry Smith @*/
348419fd82e9SBarry Smith PetscErrorCode  DMSetType(DM dm, DMType method)
3485264ace61SBarry Smith {
3486264ace61SBarry Smith   PetscErrorCode (*r)(DM);
3487264ace61SBarry Smith   PetscBool      match;
3488264ace61SBarry Smith   PetscErrorCode ierr;
3489264ace61SBarry Smith 
3490264ace61SBarry Smith   PetscFunctionBegin;
3491264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID,1);
3492251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject) dm, method, &match);CHKERRQ(ierr);
3493264ace61SBarry Smith   if (match) PetscFunctionReturn(0);
3494264ace61SBarry Smith 
34950f51fdf8SToby Isaac   ierr = DMRegisterAll();CHKERRQ(ierr);
34961c9cd337SJed Brown   ierr = PetscFunctionListFind(DMList,method,&r);CHKERRQ(ierr);
3497ce94432eSBarry Smith   if (!r) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown DM type: %s", method);
3498264ace61SBarry Smith 
3499264ace61SBarry Smith   if (dm->ops->destroy) {
3500264ace61SBarry Smith     ierr             = (*dm->ops->destroy)(dm);CHKERRQ(ierr);
35010298fd71SBarry Smith     dm->ops->destroy = NULL;
3502264ace61SBarry Smith   }
3503264ace61SBarry Smith   ierr = (*r)(dm);CHKERRQ(ierr);
3504264ace61SBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)dm,method);CHKERRQ(ierr);
3505264ace61SBarry Smith   PetscFunctionReturn(0);
3506264ace61SBarry Smith }
3507264ace61SBarry Smith 
3508264ace61SBarry Smith /*@C
3509264ace61SBarry Smith   DMGetType - Gets the DM type name (as a string) from the DM.
3510264ace61SBarry Smith 
3511264ace61SBarry Smith   Not Collective
3512264ace61SBarry Smith 
3513264ace61SBarry Smith   Input Parameter:
3514264ace61SBarry Smith . dm  - The DM
3515264ace61SBarry Smith 
3516264ace61SBarry Smith   Output Parameter:
3517264ace61SBarry Smith . type - The DM type name
3518264ace61SBarry Smith 
3519264ace61SBarry Smith   Level: intermediate
3520264ace61SBarry Smith 
3521264ace61SBarry Smith .seealso: DMSetType(), DMCreate()
3522264ace61SBarry Smith @*/
352319fd82e9SBarry Smith PetscErrorCode  DMGetType(DM dm, DMType *type)
3524264ace61SBarry Smith {
3525264ace61SBarry Smith   PetscErrorCode ierr;
3526264ace61SBarry Smith 
3527264ace61SBarry Smith   PetscFunctionBegin;
3528264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID,1);
3529c959eef4SJed Brown   PetscValidPointer(type,2);
3530607a6623SBarry Smith   ierr = DMRegisterAll();CHKERRQ(ierr);
3531264ace61SBarry Smith   *type = ((PetscObject)dm)->type_name;
3532264ace61SBarry Smith   PetscFunctionReturn(0);
3533264ace61SBarry Smith }
3534264ace61SBarry Smith 
353567a56275SMatthew G Knepley /*@C
353667a56275SMatthew G Knepley   DMConvert - Converts a DM to another DM, either of the same or different type.
353767a56275SMatthew G Knepley 
3538*d083f849SBarry Smith   Collective on dm
353967a56275SMatthew G Knepley 
354067a56275SMatthew G Knepley   Input Parameters:
354167a56275SMatthew G Knepley + dm - the DM
354267a56275SMatthew G Knepley - newtype - new DM type (use "same" for the same type)
354367a56275SMatthew G Knepley 
354467a56275SMatthew G Knepley   Output Parameter:
354567a56275SMatthew G Knepley . M - pointer to new DM
354667a56275SMatthew G Knepley 
354767a56275SMatthew G Knepley   Notes:
354867a56275SMatthew G Knepley   Cannot be used to convert a sequential DM to parallel or parallel to sequential,
354967a56275SMatthew G Knepley   the MPI communicator of the generated DM is always the same as the communicator
355067a56275SMatthew G Knepley   of the input DM.
355167a56275SMatthew G Knepley 
355267a56275SMatthew G Knepley   Level: intermediate
355367a56275SMatthew G Knepley 
355467a56275SMatthew G Knepley .seealso: DMCreate()
355567a56275SMatthew G Knepley @*/
355619fd82e9SBarry Smith PetscErrorCode DMConvert(DM dm, DMType newtype, DM *M)
355767a56275SMatthew G Knepley {
355867a56275SMatthew G Knepley   DM             B;
355967a56275SMatthew G Knepley   char           convname[256];
3560c067b6caSMatthew G. Knepley   PetscBool      sametype/*, issame */;
356167a56275SMatthew G Knepley   PetscErrorCode ierr;
356267a56275SMatthew G Knepley 
356367a56275SMatthew G Knepley   PetscFunctionBegin;
356467a56275SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
356567a56275SMatthew G Knepley   PetscValidType(dm,1);
356667a56275SMatthew G Knepley   PetscValidPointer(M,3);
3567251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject) dm, newtype, &sametype);CHKERRQ(ierr);
3568c067b6caSMatthew G. Knepley   /* ierr = PetscStrcmp(newtype, "same", &issame);CHKERRQ(ierr); */
3569c067b6caSMatthew G. Knepley   if (sametype) {
3570c067b6caSMatthew G. Knepley     *M   = dm;
3571c067b6caSMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) dm);CHKERRQ(ierr);
3572c067b6caSMatthew G. Knepley     PetscFunctionReturn(0);
3573c067b6caSMatthew G. Knepley   } else {
35740298fd71SBarry Smith     PetscErrorCode (*conv)(DM, DMType, DM*) = NULL;
357567a56275SMatthew G Knepley 
357667a56275SMatthew G Knepley     /*
357767a56275SMatthew G Knepley        Order of precedence:
357867a56275SMatthew G Knepley        1) See if a specialized converter is known to the current DM.
357967a56275SMatthew G Knepley        2) See if a specialized converter is known to the desired DM class.
358067a56275SMatthew G Knepley        3) See if a good general converter is registered for the desired class
358167a56275SMatthew G Knepley        4) See if a good general converter is known for the current matrix.
358267a56275SMatthew G Knepley        5) Use a really basic converter.
358367a56275SMatthew G Knepley     */
358467a56275SMatthew G Knepley 
358567a56275SMatthew G Knepley     /* 1) See if a specialized converter is known to the current DM and the desired class */
3586a126751eSBarry Smith     ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr);
3587a126751eSBarry Smith     ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr);
3588a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr);
3589a126751eSBarry Smith     ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr);
3590a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr);
35910005d66cSJed Brown     ierr = PetscObjectQueryFunction((PetscObject)dm,convname,&conv);CHKERRQ(ierr);
359267a56275SMatthew G Knepley     if (conv) goto foundconv;
359367a56275SMatthew G Knepley 
359467a56275SMatthew G Knepley     /* 2)  See if a specialized converter is known to the desired DM class. */
359582f516ccSBarry Smith     ierr = DMCreate(PetscObjectComm((PetscObject)dm), &B);CHKERRQ(ierr);
359667a56275SMatthew G Knepley     ierr = DMSetType(B, newtype);CHKERRQ(ierr);
3597a126751eSBarry Smith     ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr);
3598a126751eSBarry Smith     ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr);
3599a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr);
3600a126751eSBarry Smith     ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr);
3601a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr);
36020005d66cSJed Brown     ierr = PetscObjectQueryFunction((PetscObject)B,convname,&conv);CHKERRQ(ierr);
360367a56275SMatthew G Knepley     if (conv) {
3604fcfd50ebSBarry Smith       ierr = DMDestroy(&B);CHKERRQ(ierr);
360567a56275SMatthew G Knepley       goto foundconv;
360667a56275SMatthew G Knepley     }
360767a56275SMatthew G Knepley 
360867a56275SMatthew G Knepley #if 0
360967a56275SMatthew G Knepley     /* 3) See if a good general converter is registered for the desired class */
361067a56275SMatthew G Knepley     conv = B->ops->convertfrom;
3611fcfd50ebSBarry Smith     ierr = DMDestroy(&B);CHKERRQ(ierr);
361267a56275SMatthew G Knepley     if (conv) goto foundconv;
361367a56275SMatthew G Knepley 
361467a56275SMatthew G Knepley     /* 4) See if a good general converter is known for the current matrix */
361567a56275SMatthew G Knepley     if (dm->ops->convert) {
361667a56275SMatthew G Knepley       conv = dm->ops->convert;
361767a56275SMatthew G Knepley     }
361867a56275SMatthew G Knepley     if (conv) goto foundconv;
361967a56275SMatthew G Knepley #endif
362067a56275SMatthew G Knepley 
362167a56275SMatthew G Knepley     /* 5) Use a really basic converter. */
362282f516ccSBarry Smith     SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "No conversion possible between DM types %s and %s", ((PetscObject) dm)->type_name, newtype);
362367a56275SMatthew G Knepley 
362467a56275SMatthew G Knepley foundconv:
362567a56275SMatthew G Knepley     ierr = PetscLogEventBegin(DM_Convert,dm,0,0,0);CHKERRQ(ierr);
362667a56275SMatthew G Knepley     ierr = (*conv)(dm,newtype,M);CHKERRQ(ierr);
362712fa691eSMatthew G. Knepley     /* Things that are independent of DM type: We should consult DMClone() here */
362890b157c4SStefano Zampini     {
362990b157c4SStefano Zampini       PetscBool             isper;
363012fa691eSMatthew G. Knepley       const PetscReal      *maxCell, *L;
363112fa691eSMatthew G. Knepley       const DMBoundaryType *bd;
363290b157c4SStefano Zampini       ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr);
363390b157c4SStefano Zampini       ierr = DMSetPeriodicity(*M, isper, maxCell,  L,  bd);CHKERRQ(ierr);
363412fa691eSMatthew G. Knepley     }
363567a56275SMatthew G Knepley     ierr = PetscLogEventEnd(DM_Convert,dm,0,0,0);CHKERRQ(ierr);
363667a56275SMatthew G Knepley   }
363767a56275SMatthew G Knepley   ierr = PetscObjectStateIncrease((PetscObject) *M);CHKERRQ(ierr);
363867a56275SMatthew G Knepley   PetscFunctionReturn(0);
363967a56275SMatthew G Knepley }
3640264ace61SBarry Smith 
3641264ace61SBarry Smith /*--------------------------------------------------------------------------------------------------------------------*/
3642264ace61SBarry Smith 
3643264ace61SBarry Smith /*@C
36441c84c290SBarry Smith   DMRegister -  Adds a new DM component implementation
36451c84c290SBarry Smith 
36461c84c290SBarry Smith   Not Collective
36471c84c290SBarry Smith 
36481c84c290SBarry Smith   Input Parameters:
36491c84c290SBarry Smith + name        - The name of a new user-defined creation routine
36501c84c290SBarry Smith - create_func - The creation routine itself
36511c84c290SBarry Smith 
36521c84c290SBarry Smith   Notes:
36531c84c290SBarry Smith   DMRegister() may be called multiple times to add several user-defined DMs
36541c84c290SBarry Smith 
36551c84c290SBarry Smith 
36561c84c290SBarry Smith   Sample usage:
36571c84c290SBarry Smith .vb
3658bdf89e91SBarry Smith     DMRegister("my_da", MyDMCreate);
36591c84c290SBarry Smith .ve
36601c84c290SBarry Smith 
36611c84c290SBarry Smith   Then, your DM type can be chosen with the procedural interface via
36621c84c290SBarry Smith .vb
36631c84c290SBarry Smith     DMCreate(MPI_Comm, DM *);
36641c84c290SBarry Smith     DMSetType(DM,"my_da");
36651c84c290SBarry Smith .ve
36661c84c290SBarry Smith    or at runtime via the option
36671c84c290SBarry Smith .vb
36681c84c290SBarry Smith     -da_type my_da
36691c84c290SBarry Smith .ve
3670264ace61SBarry Smith 
3671264ace61SBarry Smith   Level: advanced
36721c84c290SBarry Smith 
3673bdf89e91SBarry Smith .seealso: DMRegisterAll(), DMRegisterDestroy()
36741c84c290SBarry Smith 
3675264ace61SBarry Smith @*/
3676bdf89e91SBarry Smith PetscErrorCode  DMRegister(const char sname[],PetscErrorCode (*function)(DM))
3677264ace61SBarry Smith {
3678264ace61SBarry Smith   PetscErrorCode ierr;
3679264ace61SBarry Smith 
3680264ace61SBarry Smith   PetscFunctionBegin;
36811d36bdfdSBarry Smith   ierr = DMInitializePackage();CHKERRQ(ierr);
3682a240a19fSJed Brown   ierr = PetscFunctionListAdd(&DMList,sname,function);CHKERRQ(ierr);
3683264ace61SBarry Smith   PetscFunctionReturn(0);
3684264ace61SBarry Smith }
3685264ace61SBarry Smith 
3686b859378eSBarry Smith /*@C
368755849f57SBarry Smith   DMLoad - Loads a DM that has been stored in binary  with DMView().
3688b859378eSBarry Smith 
3689*d083f849SBarry Smith   Collective on viewer
3690b859378eSBarry Smith 
3691b859378eSBarry Smith   Input Parameters:
3692b859378eSBarry Smith + newdm - the newly loaded DM, this needs to have been created with DMCreate() or
3693b859378eSBarry Smith            some related function before a call to DMLoad().
3694b859378eSBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen() or
3695b859378eSBarry Smith            HDF5 file viewer, obtained from PetscViewerHDF5Open()
3696b859378eSBarry Smith 
3697b859378eSBarry Smith    Level: intermediate
3698b859378eSBarry Smith 
3699b859378eSBarry Smith   Notes:
370055849f57SBarry Smith    The type is determined by the data in the file, any type set into the DM before this call is ignored.
3701b859378eSBarry Smith 
3702b859378eSBarry Smith   Notes for advanced users:
3703b859378eSBarry Smith   Most users should not need to know the details of the binary storage
3704b859378eSBarry Smith   format, since DMLoad() and DMView() completely hide these details.
3705b859378eSBarry Smith   But for anyone who's interested, the standard binary matrix storage
3706b859378eSBarry Smith   format is
3707b859378eSBarry Smith .vb
3708b859378eSBarry Smith      has not yet been determined
3709b859378eSBarry Smith .ve
3710b859378eSBarry Smith 
3711b859378eSBarry Smith .seealso: PetscViewerBinaryOpen(), DMView(), MatLoad(), VecLoad()
3712b859378eSBarry Smith @*/
3713b859378eSBarry Smith PetscErrorCode  DMLoad(DM newdm, PetscViewer viewer)
3714b859378eSBarry Smith {
37159331c7a4SMatthew G. Knepley   PetscBool      isbinary, ishdf5;
3716b859378eSBarry Smith   PetscErrorCode ierr;
3717b859378eSBarry Smith 
3718b859378eSBarry Smith   PetscFunctionBegin;
3719b859378eSBarry Smith   PetscValidHeaderSpecific(newdm,DM_CLASSID,1);
3720b859378eSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
3721fb694a9eSVaclav Hapla   ierr = PetscViewerCheckReadable(viewer);CHKERRQ(ierr);
372232c0f0efSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
37239331c7a4SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERHDF5,&ishdf5);CHKERRQ(ierr);
37249331c7a4SMatthew G. Knepley   if (isbinary) {
37259331c7a4SMatthew G. Knepley     PetscInt classid;
37269331c7a4SMatthew G. Knepley     char     type[256];
3727b859378eSBarry Smith 
3728060da220SMatthew G. Knepley     ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
37299200755eSBarry Smith     if (classid != DM_FILE_CLASSID) SETERRQ1(PetscObjectComm((PetscObject)newdm),PETSC_ERR_ARG_WRONG,"Not DM next in file, classid found %d",(int)classid);
3730060da220SMatthew G. Knepley     ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
373132c0f0efSBarry Smith     ierr = DMSetType(newdm, type);CHKERRQ(ierr);
37329331c7a4SMatthew G. Knepley     if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);}
37339331c7a4SMatthew G. Knepley   } else if (ishdf5) {
37349331c7a4SMatthew G. Knepley     if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);}
37359331c7a4SMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen() or PetscViewerHDF5Open()");
3736b859378eSBarry Smith   PetscFunctionReturn(0);
3737b859378eSBarry Smith }
3738b859378eSBarry Smith 
37397da65231SMatthew G Knepley /******************************** FEM Support **********************************/
37407da65231SMatthew G Knepley 
3741a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellVector(PetscInt c, const char name[], PetscInt len, const PetscScalar x[])
3742a6dfd86eSKarl Rupp {
37431d47ebbbSSatish Balay   PetscInt       f;
37441b30c384SMatthew G Knepley   PetscErrorCode ierr;
37451b30c384SMatthew G Knepley 
37467da65231SMatthew G Knepley   PetscFunctionBegin;
374774778d6cSJed Brown   ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr);
37481d47ebbbSSatish Balay   for (f = 0; f < len; ++f) {
374957622a8eSBarry Smith     ierr = PetscPrintf(PETSC_COMM_SELF, "  | %g |\n", (double)PetscRealPart(x[f]));CHKERRQ(ierr);
37507da65231SMatthew G Knepley   }
37517da65231SMatthew G Knepley   PetscFunctionReturn(0);
37527da65231SMatthew G Knepley }
37537da65231SMatthew G Knepley 
3754a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellMatrix(PetscInt c, const char name[], PetscInt rows, PetscInt cols, const PetscScalar A[])
3755a6dfd86eSKarl Rupp {
37561b30c384SMatthew G Knepley   PetscInt       f, g;
37577da65231SMatthew G Knepley   PetscErrorCode ierr;
37587da65231SMatthew G Knepley 
37597da65231SMatthew G Knepley   PetscFunctionBegin;
376074778d6cSJed Brown   ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr);
37611d47ebbbSSatish Balay   for (f = 0; f < rows; ++f) {
376274778d6cSJed Brown     ierr = PetscPrintf(PETSC_COMM_SELF, "  |");CHKERRQ(ierr);
37631d47ebbbSSatish Balay     for (g = 0; g < cols; ++g) {
3764e3556bceSMatthew G. Knepley       ierr = PetscPrintf(PETSC_COMM_SELF, " % 9.5g", PetscRealPart(A[f*cols+g]));CHKERRQ(ierr);
37657da65231SMatthew G Knepley     }
376674778d6cSJed Brown     ierr = PetscPrintf(PETSC_COMM_SELF, " |\n");CHKERRQ(ierr);
37677da65231SMatthew G Knepley   }
37687da65231SMatthew G Knepley   PetscFunctionReturn(0);
37697da65231SMatthew G Knepley }
3770e7c4fc90SDmitry Karpeev 
37716113b454SMatthew G. Knepley PetscErrorCode DMPrintLocalVec(DM dm, const char name[], PetscReal tol, Vec X)
3772e759306cSMatthew G. Knepley {
37730c5b8624SToby Isaac   PetscInt          localSize, bs;
37740c5b8624SToby Isaac   PetscMPIInt       size;
37750c5b8624SToby Isaac   Vec               x, xglob;
37760c5b8624SToby Isaac   const PetscScalar *xarray;
3777e759306cSMatthew G. Knepley   PetscErrorCode    ierr;
3778e759306cSMatthew G. Knepley 
3779e759306cSMatthew G. Knepley   PetscFunctionBegin;
37809852e123SBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm),&size);CHKERRQ(ierr);
3781e759306cSMatthew G. Knepley   ierr = VecDuplicate(X, &x);CHKERRQ(ierr);
3782e759306cSMatthew G. Knepley   ierr = VecCopy(X, x);CHKERRQ(ierr);
37836113b454SMatthew G. Knepley   ierr = VecChop(x, tol);CHKERRQ(ierr);
37840c5b8624SToby Isaac   ierr = PetscPrintf(PetscObjectComm((PetscObject) dm),"%s:\n",name);CHKERRQ(ierr);
37850c5b8624SToby Isaac   if (size > 1) {
37860c5b8624SToby Isaac     ierr = VecGetLocalSize(x,&localSize);CHKERRQ(ierr);
37870c5b8624SToby Isaac     ierr = VecGetArrayRead(x,&xarray);CHKERRQ(ierr);
37880c5b8624SToby Isaac     ierr = VecGetBlockSize(x,&bs);CHKERRQ(ierr);
37890c5b8624SToby Isaac     ierr = VecCreateMPIWithArray(PetscObjectComm((PetscObject) dm),bs,localSize,PETSC_DETERMINE,xarray,&xglob);CHKERRQ(ierr);
37900c5b8624SToby Isaac   } else {
37910c5b8624SToby Isaac     xglob = x;
37920c5b8624SToby Isaac   }
37930c5b8624SToby Isaac   ierr = VecView(xglob,PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject) dm)));CHKERRQ(ierr);
37940c5b8624SToby Isaac   if (size > 1) {
37950c5b8624SToby Isaac     ierr = VecDestroy(&xglob);CHKERRQ(ierr);
37960c5b8624SToby Isaac     ierr = VecRestoreArrayRead(x,&xarray);CHKERRQ(ierr);
37970c5b8624SToby Isaac   }
3798e759306cSMatthew G. Knepley   ierr = VecDestroy(&x);CHKERRQ(ierr);
3799e759306cSMatthew G. Knepley   PetscFunctionReturn(0);
3800e759306cSMatthew G. Knepley }
3801e759306cSMatthew G. Knepley 
380288ed4aceSMatthew G Knepley /*@
3803e87a4003SBarry Smith   DMGetSection - Get the PetscSection encoding the local data layout for the DM.
380488ed4aceSMatthew G Knepley 
380588ed4aceSMatthew G Knepley   Input Parameter:
380688ed4aceSMatthew G Knepley . dm - The DM
380788ed4aceSMatthew G Knepley 
380888ed4aceSMatthew G Knepley   Output Parameter:
380988ed4aceSMatthew G Knepley . section - The PetscSection
381088ed4aceSMatthew G Knepley 
3811e5893cccSMatthew G. Knepley   Options Database Keys:
3812e5893cccSMatthew G. Knepley . -dm_petscsection_view - View the Section created by the DM
3813e5893cccSMatthew G. Knepley 
381488ed4aceSMatthew G Knepley   Level: intermediate
381588ed4aceSMatthew G Knepley 
381688ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSection.
381788ed4aceSMatthew G Knepley 
3818e87a4003SBarry Smith .seealso: DMSetSection(), DMGetGlobalSection()
381988ed4aceSMatthew G Knepley @*/
3820e87a4003SBarry Smith PetscErrorCode DMGetSection(DM dm, PetscSection *section)
38210adebc6cSBarry Smith {
3822fd59a867SMatthew G. Knepley   PetscErrorCode ierr;
3823fd59a867SMatthew G. Knepley 
382488ed4aceSMatthew G Knepley   PetscFunctionBegin;
382588ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
382688ed4aceSMatthew G Knepley   PetscValidPointer(section, 2);
38272f0f8703SMatthew G. Knepley   if (!dm->defaultSection && dm->ops->createdefaultsection) {
3828e5e52638SMatthew G. Knepley     PetscInt d;
3829e5e52638SMatthew G. Knepley 
3830e5e52638SMatthew G. Knepley     if (dm->setfromoptionscalled) for (d = 0; d < dm->Nds; ++d) {ierr = PetscDSSetFromOptions(dm->probs[d].ds);CHKERRQ(ierr);}
38312f0f8703SMatthew G. Knepley     ierr = (*dm->ops->createdefaultsection)(dm);CHKERRQ(ierr);
3832ae71db08SMatthew G. Knepley     if (dm->defaultSection) {ierr = PetscObjectViewFromOptions((PetscObject) dm->defaultSection, NULL, "-dm_petscsection_view");CHKERRQ(ierr);}
38332f0f8703SMatthew G. Knepley   }
383488ed4aceSMatthew G Knepley   *section = dm->defaultSection;
383588ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
383688ed4aceSMatthew G Knepley }
383788ed4aceSMatthew G Knepley 
383888ed4aceSMatthew G Knepley /*@
3839e87a4003SBarry Smith   DMSetSection - Set the PetscSection encoding the local data layout for the DM.
384088ed4aceSMatthew G Knepley 
384188ed4aceSMatthew G Knepley   Input Parameters:
384288ed4aceSMatthew G Knepley + dm - The DM
384388ed4aceSMatthew G Knepley - section - The PetscSection
384488ed4aceSMatthew G Knepley 
384588ed4aceSMatthew G Knepley   Level: intermediate
384688ed4aceSMatthew G Knepley 
384788ed4aceSMatthew G Knepley   Note: Any existing Section will be destroyed
384888ed4aceSMatthew G Knepley 
3849e87a4003SBarry Smith .seealso: DMSetSection(), DMGetGlobalSection()
385088ed4aceSMatthew G Knepley @*/
3851e87a4003SBarry Smith PetscErrorCode DMSetSection(DM dm, PetscSection section)
38520adebc6cSBarry Smith {
3853c473ab19SMatthew G. Knepley   PetscInt       numFields = 0;
3854af122d2aSMatthew G Knepley   PetscInt       f;
385588ed4aceSMatthew G Knepley   PetscErrorCode ierr;
385688ed4aceSMatthew G Knepley 
385788ed4aceSMatthew G Knepley   PetscFunctionBegin;
385888ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3859c473ab19SMatthew G. Knepley   if (section) {
38601d799100SJed Brown     PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
38611d799100SJed Brown     ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
3862c473ab19SMatthew G. Knepley   }
386388ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&dm->defaultSection);CHKERRQ(ierr);
386488ed4aceSMatthew G Knepley   dm->defaultSection = section;
3865c473ab19SMatthew G. Knepley   if (section) {ierr = PetscSectionGetNumFields(dm->defaultSection, &numFields);CHKERRQ(ierr);}
3866af122d2aSMatthew G Knepley   if (numFields) {
3867af122d2aSMatthew G Knepley     ierr = DMSetNumFields(dm, numFields);CHKERRQ(ierr);
3868af122d2aSMatthew G Knepley     for (f = 0; f < numFields; ++f) {
38690f21e855SMatthew G. Knepley       PetscObject disc;
3870af122d2aSMatthew G Knepley       const char *name;
3871af122d2aSMatthew G Knepley 
3872af122d2aSMatthew G Knepley       ierr = PetscSectionGetFieldName(dm->defaultSection, f, &name);CHKERRQ(ierr);
387344a7f3ddSMatthew G. Knepley       ierr = DMGetField(dm, f, NULL, &disc);CHKERRQ(ierr);
38740f21e855SMatthew G. Knepley       ierr = PetscObjectSetName(disc, name);CHKERRQ(ierr);
3875af122d2aSMatthew G Knepley     }
3876af122d2aSMatthew G Knepley   }
3877e87a4003SBarry Smith   /* The global section will be rebuilt in the next call to DMGetGlobalSection(). */
38781d799100SJed Brown   ierr = PetscSectionDestroy(&dm->defaultGlobalSection);CHKERRQ(ierr);
387988ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
388088ed4aceSMatthew G Knepley }
388188ed4aceSMatthew G Knepley 
38829435951eSToby Isaac /*@
38839435951eSToby Isaac   DMGetDefaultConstraints - Get the PetscSection and Mat the specify the local constraint interpolation. See DMSetDefaultConstraints() for a description of the purpose of constraint interpolation.
38849435951eSToby Isaac 
3885e228b242SToby Isaac   not collective
3886e228b242SToby Isaac 
38879435951eSToby Isaac   Input Parameter:
38889435951eSToby Isaac . dm - The DM
38899435951eSToby Isaac 
38909435951eSToby Isaac   Output Parameter:
38919435951eSToby 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.
38929435951eSToby 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.
38939435951eSToby Isaac 
38949435951eSToby Isaac   Level: advanced
38959435951eSToby Isaac 
38969435951eSToby Isaac   Note: This gets borrowed references, so the user should not destroy the PetscSection or the Mat.
38979435951eSToby Isaac 
38989435951eSToby Isaac .seealso: DMSetDefaultConstraints()
38999435951eSToby Isaac @*/
39009435951eSToby Isaac PetscErrorCode DMGetDefaultConstraints(DM dm, PetscSection *section, Mat *mat)
39019435951eSToby Isaac {
39029435951eSToby Isaac   PetscErrorCode ierr;
39039435951eSToby Isaac 
39049435951eSToby Isaac   PetscFunctionBegin;
39059435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
39069435951eSToby Isaac   if (!dm->defaultConstraintSection && !dm->defaultConstraintMat && dm->ops->createdefaultconstraints) {ierr = (*dm->ops->createdefaultconstraints)(dm);CHKERRQ(ierr);}
390745a75d81SToby Isaac   if (section) {*section = dm->defaultConstraintSection;}
390845a75d81SToby Isaac   if (mat) {*mat = dm->defaultConstraintMat;}
39099435951eSToby Isaac   PetscFunctionReturn(0);
39109435951eSToby Isaac }
39119435951eSToby Isaac 
39129435951eSToby Isaac /*@
39139435951eSToby Isaac   DMSetDefaultConstraints - Set the PetscSection and Mat the specify the local constraint interpolation.
39149435951eSToby Isaac 
39159435951eSToby 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().
39169435951eSToby Isaac 
39179435951eSToby 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.
39189435951eSToby Isaac 
3919e228b242SToby Isaac   collective on dm
3920e228b242SToby Isaac 
39219435951eSToby Isaac   Input Parameters:
39229435951eSToby Isaac + dm - The DM
3923e228b242SToby 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).
3924e228b242SToby 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).
39259435951eSToby Isaac 
39269435951eSToby Isaac   Level: advanced
39279435951eSToby Isaac 
39289435951eSToby Isaac   Note: This increments the references of the PetscSection and the Mat, so they user can destroy them
39299435951eSToby Isaac 
39309435951eSToby Isaac .seealso: DMGetDefaultConstraints()
39319435951eSToby Isaac @*/
39329435951eSToby Isaac PetscErrorCode DMSetDefaultConstraints(DM dm, PetscSection section, Mat mat)
39339435951eSToby Isaac {
3934e228b242SToby Isaac   PetscMPIInt result;
39359435951eSToby Isaac   PetscErrorCode ierr;
39369435951eSToby Isaac 
39379435951eSToby Isaac   PetscFunctionBegin;
39389435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3939e228b242SToby Isaac   if (section) {
3940e228b242SToby Isaac     PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
3941e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)section),&result);CHKERRQ(ierr);
3942f60917d2SBarry Smith     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint section must have local communicator");
3943e228b242SToby Isaac   }
3944e228b242SToby Isaac   if (mat) {
3945e228b242SToby Isaac     PetscValidHeaderSpecific(mat,MAT_CLASSID,3);
3946e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)mat),&result);CHKERRQ(ierr);
3947f60917d2SBarry Smith     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint matrix must have local communicator");
3948e228b242SToby Isaac   }
39499435951eSToby Isaac   ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
39509435951eSToby Isaac   ierr = PetscSectionDestroy(&dm->defaultConstraintSection);CHKERRQ(ierr);
39519435951eSToby Isaac   dm->defaultConstraintSection = section;
39529435951eSToby Isaac   ierr = PetscObjectReference((PetscObject)mat);CHKERRQ(ierr);
39539435951eSToby Isaac   ierr = MatDestroy(&dm->defaultConstraintMat);CHKERRQ(ierr);
39549435951eSToby Isaac   dm->defaultConstraintMat = mat;
39559435951eSToby Isaac   PetscFunctionReturn(0);
39569435951eSToby Isaac }
39579435951eSToby Isaac 
3958497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
3959507e4973SMatthew G. Knepley /*
3960507e4973SMatthew G. Knepley   DMDefaultSectionCheckConsistency - Check the consistentcy of the global and local sections.
3961507e4973SMatthew G. Knepley 
3962507e4973SMatthew G. Knepley   Input Parameters:
3963507e4973SMatthew G. Knepley + dm - The DM
3964507e4973SMatthew G. Knepley . localSection - PetscSection describing the local data layout
3965507e4973SMatthew G. Knepley - globalSection - PetscSection describing the global data layout
3966507e4973SMatthew G. Knepley 
3967507e4973SMatthew G. Knepley   Level: intermediate
3968507e4973SMatthew G. Knepley 
3969507e4973SMatthew G. Knepley .seealso: DMGetDefaultSF(), DMSetDefaultSF()
3970507e4973SMatthew G. Knepley */
3971f741bcd2SMatthew G. Knepley static PetscErrorCode DMDefaultSectionCheckConsistency_Internal(DM dm, PetscSection localSection, PetscSection globalSection)
3972507e4973SMatthew G. Knepley {
3973507e4973SMatthew G. Knepley   MPI_Comm        comm;
3974507e4973SMatthew G. Knepley   PetscLayout     layout;
3975507e4973SMatthew G. Knepley   const PetscInt *ranges;
3976507e4973SMatthew G. Knepley   PetscInt        pStart, pEnd, p, nroots;
3977507e4973SMatthew G. Knepley   PetscMPIInt     size, rank;
3978507e4973SMatthew G. Knepley   PetscBool       valid = PETSC_TRUE, gvalid;
3979507e4973SMatthew G. Knepley   PetscErrorCode  ierr;
3980507e4973SMatthew G. Knepley 
3981507e4973SMatthew G. Knepley   PetscFunctionBegin;
3982507e4973SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
3983507e4973SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3984507e4973SMatthew G. Knepley   ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
3985507e4973SMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
3986507e4973SMatthew G. Knepley   ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr);
3987507e4973SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr);
3988507e4973SMatthew G. Knepley   ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr);
3989507e4973SMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr);
3990507e4973SMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr);
3991507e4973SMatthew G. Knepley   ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr);
3992507e4973SMatthew G. Knepley   ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr);
3993507e4973SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
3994f741bcd2SMatthew G. Knepley     PetscInt       dof, cdof, off, gdof, gcdof, goff, gsize, d;
3995507e4973SMatthew G. Knepley 
3996507e4973SMatthew G. Knepley     ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr);
3997507e4973SMatthew G. Knepley     ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr);
3998507e4973SMatthew G. Knepley     ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr);
3999507e4973SMatthew G. Knepley     ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
4000507e4973SMatthew G. Knepley     ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
4001507e4973SMatthew G. Knepley     ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr);
4002507e4973SMatthew G. Knepley     if (!gdof) continue; /* Censored point */
4003507e4973SMatthew 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;}
4004507e4973SMatthew 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;}
4005507e4973SMatthew G. Knepley     if (gdof < 0) {
4006507e4973SMatthew G. Knepley       gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
4007507e4973SMatthew G. Knepley       for (d = 0; d < gsize; ++d) {
4008507e4973SMatthew G. Knepley         PetscInt offset = -(goff+1) + d, r;
4009507e4973SMatthew G. Knepley 
4010507e4973SMatthew G. Knepley         ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr);
4011507e4973SMatthew G. Knepley         if (r < 0) r = -(r+2);
4012507e4973SMatthew 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;}
4013507e4973SMatthew G. Knepley       }
4014507e4973SMatthew G. Knepley     }
4015507e4973SMatthew G. Knepley   }
4016507e4973SMatthew G. Knepley   ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
4017507e4973SMatthew G. Knepley   ierr = PetscSynchronizedFlush(comm, NULL);CHKERRQ(ierr);
4018b2566f29SBarry Smith   ierr = MPIU_Allreduce(&valid, &gvalid, 1, MPIU_BOOL, MPI_LAND, comm);CHKERRQ(ierr);
4019507e4973SMatthew G. Knepley   if (!gvalid) {
4020507e4973SMatthew G. Knepley     ierr = DMView(dm, NULL);CHKERRQ(ierr);
4021507e4973SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Inconsistent local and global sections");
4022507e4973SMatthew G. Knepley   }
4023507e4973SMatthew G. Knepley   PetscFunctionReturn(0);
4024507e4973SMatthew G. Knepley }
4025f741bcd2SMatthew G. Knepley #endif
4026507e4973SMatthew G. Knepley 
402788ed4aceSMatthew G Knepley /*@
4028e87a4003SBarry Smith   DMGetGlobalSection - Get the PetscSection encoding the global data layout for the DM.
402988ed4aceSMatthew G Knepley 
4030*d083f849SBarry Smith   Collective on dm
40318b1ab98fSJed Brown 
403288ed4aceSMatthew G Knepley   Input Parameter:
403388ed4aceSMatthew G Knepley . dm - The DM
403488ed4aceSMatthew G Knepley 
403588ed4aceSMatthew G Knepley   Output Parameter:
403688ed4aceSMatthew G Knepley . section - The PetscSection
403788ed4aceSMatthew G Knepley 
403888ed4aceSMatthew G Knepley   Level: intermediate
403988ed4aceSMatthew G Knepley 
404088ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSection.
404188ed4aceSMatthew G Knepley 
4042e87a4003SBarry Smith .seealso: DMSetSection(), DMGetSection()
404388ed4aceSMatthew G Knepley @*/
4044e87a4003SBarry Smith PetscErrorCode DMGetGlobalSection(DM dm, PetscSection *section)
40450adebc6cSBarry Smith {
404688ed4aceSMatthew G Knepley   PetscErrorCode ierr;
404788ed4aceSMatthew G Knepley 
404888ed4aceSMatthew G Knepley   PetscFunctionBegin;
404988ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
405088ed4aceSMatthew G Knepley   PetscValidPointer(section, 2);
405188ed4aceSMatthew G Knepley   if (!dm->defaultGlobalSection) {
4052fd59a867SMatthew G. Knepley     PetscSection s;
4053fd59a867SMatthew G. Knepley 
4054e87a4003SBarry Smith     ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
4055fd59a867SMatthew 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");
405633907cc2SStefano 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");
405715b58121SMatthew G. Knepley     ierr = PetscSectionCreateGlobalSection(s, dm->sf, PETSC_FALSE, PETSC_FALSE, &dm->defaultGlobalSection);CHKERRQ(ierr);
4058cf06b437SMatthew G. Knepley     ierr = PetscLayoutDestroy(&dm->map);CHKERRQ(ierr);
4059ce94432eSBarry Smith     ierr = PetscSectionGetValueLayout(PetscObjectComm((PetscObject)dm), dm->defaultGlobalSection, &dm->map);CHKERRQ(ierr);
4060685405a1SBarry Smith     ierr = PetscSectionViewFromOptions(dm->defaultGlobalSection, NULL, "-global_section_view");CHKERRQ(ierr);
406188ed4aceSMatthew G Knepley   }
406288ed4aceSMatthew G Knepley   *section = dm->defaultGlobalSection;
406388ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
406488ed4aceSMatthew G Knepley }
406588ed4aceSMatthew G Knepley 
4066b21d0597SMatthew G Knepley /*@
4067e87a4003SBarry Smith   DMSetGlobalSection - Set the PetscSection encoding the global data layout for the DM.
4068b21d0597SMatthew G Knepley 
4069b21d0597SMatthew G Knepley   Input Parameters:
4070b21d0597SMatthew G Knepley + dm - The DM
40715080bbdbSMatthew G Knepley - section - The PetscSection, or NULL
4072b21d0597SMatthew G Knepley 
4073b21d0597SMatthew G Knepley   Level: intermediate
4074b21d0597SMatthew G Knepley 
4075b21d0597SMatthew G Knepley   Note: Any existing Section will be destroyed
4076b21d0597SMatthew G Knepley 
4077e87a4003SBarry Smith .seealso: DMGetGlobalSection(), DMSetSection()
4078b21d0597SMatthew G Knepley @*/
4079e87a4003SBarry Smith PetscErrorCode DMSetGlobalSection(DM dm, PetscSection section)
40800adebc6cSBarry Smith {
4081b21d0597SMatthew G Knepley   PetscErrorCode ierr;
4082b21d0597SMatthew G Knepley 
4083b21d0597SMatthew G Knepley   PetscFunctionBegin;
4084b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
40855080bbdbSMatthew G Knepley   if (section) PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
40861d799100SJed Brown   ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
4087b21d0597SMatthew G Knepley   ierr = PetscSectionDestroy(&dm->defaultGlobalSection);CHKERRQ(ierr);
4088b21d0597SMatthew G Knepley   dm->defaultGlobalSection = section;
4089497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
4090f741bcd2SMatthew G. Knepley   if (section) {ierr = DMDefaultSectionCheckConsistency_Internal(dm, dm->defaultSection, section);CHKERRQ(ierr);}
4091507e4973SMatthew G. Knepley #endif
4092b21d0597SMatthew G Knepley   PetscFunctionReturn(0);
4093b21d0597SMatthew G Knepley }
4094b21d0597SMatthew G Knepley 
409588ed4aceSMatthew G Knepley /*@
409688ed4aceSMatthew G Knepley   DMGetDefaultSF - Get the PetscSF encoding the parallel dof overlap for the DM. If it has not been set,
409788ed4aceSMatthew G Knepley   it is created from the default PetscSection layouts in the DM.
409888ed4aceSMatthew G Knepley 
409988ed4aceSMatthew G Knepley   Input Parameter:
410088ed4aceSMatthew G Knepley . dm - The DM
410188ed4aceSMatthew G Knepley 
410288ed4aceSMatthew G Knepley   Output Parameter:
410388ed4aceSMatthew G Knepley . sf - The PetscSF
410488ed4aceSMatthew G Knepley 
410588ed4aceSMatthew G Knepley   Level: intermediate
410688ed4aceSMatthew G Knepley 
410788ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSF.
410888ed4aceSMatthew G Knepley 
410988ed4aceSMatthew G Knepley .seealso: DMSetDefaultSF(), DMCreateDefaultSF()
411088ed4aceSMatthew G Knepley @*/
41110adebc6cSBarry Smith PetscErrorCode DMGetDefaultSF(DM dm, PetscSF *sf)
41120adebc6cSBarry Smith {
411388ed4aceSMatthew G Knepley   PetscInt       nroots;
411488ed4aceSMatthew G Knepley   PetscErrorCode ierr;
411588ed4aceSMatthew G Knepley 
411688ed4aceSMatthew G Knepley   PetscFunctionBegin;
411788ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
411888ed4aceSMatthew G Knepley   PetscValidPointer(sf, 2);
411933907cc2SStefano Zampini   if (!dm->defaultSF) {
412033907cc2SStefano Zampini     ierr = PetscSFCreate(PetscObjectComm((PetscObject)dm),&dm->defaultSF);CHKERRQ(ierr);
412133907cc2SStefano Zampini   }
41220298fd71SBarry Smith   ierr = PetscSFGetGraph(dm->defaultSF, &nroots, NULL, NULL, NULL);CHKERRQ(ierr);
412388ed4aceSMatthew G Knepley   if (nroots < 0) {
412488ed4aceSMatthew G Knepley     PetscSection section, gSection;
412588ed4aceSMatthew G Knepley 
4126e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
412731ea6d37SMatthew G Knepley     if (section) {
4128e87a4003SBarry Smith       ierr = DMGetGlobalSection(dm, &gSection);CHKERRQ(ierr);
412988ed4aceSMatthew G Knepley       ierr = DMCreateDefaultSF(dm, section, gSection);CHKERRQ(ierr);
413031ea6d37SMatthew G Knepley     } else {
41310298fd71SBarry Smith       *sf = NULL;
413231ea6d37SMatthew G Knepley       PetscFunctionReturn(0);
413331ea6d37SMatthew G Knepley     }
413488ed4aceSMatthew G Knepley   }
413588ed4aceSMatthew G Knepley   *sf = dm->defaultSF;
413688ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
413788ed4aceSMatthew G Knepley }
413888ed4aceSMatthew G Knepley 
413988ed4aceSMatthew G Knepley /*@
414088ed4aceSMatthew G Knepley   DMSetDefaultSF - Set the PetscSF encoding the parallel dof overlap for the DM
414188ed4aceSMatthew G Knepley 
414288ed4aceSMatthew G Knepley   Input Parameters:
414388ed4aceSMatthew G Knepley + dm - The DM
414488ed4aceSMatthew G Knepley - sf - The PetscSF
414588ed4aceSMatthew G Knepley 
414688ed4aceSMatthew G Knepley   Level: intermediate
414788ed4aceSMatthew G Knepley 
414888ed4aceSMatthew G Knepley   Note: Any previous SF is destroyed
414988ed4aceSMatthew G Knepley 
415088ed4aceSMatthew G Knepley .seealso: DMGetDefaultSF(), DMCreateDefaultSF()
415188ed4aceSMatthew G Knepley @*/
41520adebc6cSBarry Smith PetscErrorCode DMSetDefaultSF(DM dm, PetscSF sf)
41530adebc6cSBarry Smith {
415488ed4aceSMatthew G Knepley   PetscErrorCode ierr;
415588ed4aceSMatthew G Knepley 
415688ed4aceSMatthew G Knepley   PetscFunctionBegin;
415788ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
415833907cc2SStefano Zampini   if (sf) {
415988ed4aceSMatthew G Knepley     PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
416033907cc2SStefano Zampini     ierr = PetscObjectReference((PetscObject) sf);CHKERRQ(ierr);
416133907cc2SStefano Zampini   }
416288ed4aceSMatthew G Knepley   ierr          = PetscSFDestroy(&dm->defaultSF);CHKERRQ(ierr);
416388ed4aceSMatthew G Knepley   dm->defaultSF = sf;
416488ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
416588ed4aceSMatthew G Knepley }
416688ed4aceSMatthew G Knepley 
416788ed4aceSMatthew G Knepley /*@C
416888ed4aceSMatthew G Knepley   DMCreateDefaultSF - Create the PetscSF encoding the parallel dof overlap for the DM based upon the PetscSections
416988ed4aceSMatthew G Knepley   describing the data layout.
417088ed4aceSMatthew G Knepley 
417188ed4aceSMatthew G Knepley   Input Parameters:
417288ed4aceSMatthew G Knepley + dm - The DM
417388ed4aceSMatthew G Knepley . localSection - PetscSection describing the local data layout
417488ed4aceSMatthew G Knepley - globalSection - PetscSection describing the global data layout
417588ed4aceSMatthew G Knepley 
417688ed4aceSMatthew G Knepley   Level: intermediate
417788ed4aceSMatthew G Knepley 
417888ed4aceSMatthew G Knepley .seealso: DMGetDefaultSF(), DMSetDefaultSF()
417988ed4aceSMatthew G Knepley @*/
418088ed4aceSMatthew G Knepley PetscErrorCode DMCreateDefaultSF(DM dm, PetscSection localSection, PetscSection globalSection)
418188ed4aceSMatthew G Knepley {
418282f516ccSBarry Smith   MPI_Comm       comm;
418388ed4aceSMatthew G Knepley   PetscLayout    layout;
418488ed4aceSMatthew G Knepley   const PetscInt *ranges;
418588ed4aceSMatthew G Knepley   PetscInt       *local;
418688ed4aceSMatthew G Knepley   PetscSFNode    *remote;
4187ecd73843SMatthew G. Knepley   PetscInt       pStart, pEnd, p, nroots, nleaves = 0, l;
418888ed4aceSMatthew G Knepley   PetscMPIInt    size, rank;
418988ed4aceSMatthew G Knepley   PetscErrorCode ierr;
419088ed4aceSMatthew G Knepley 
419188ed4aceSMatthew G Knepley   PetscFunctionBegin;
419288ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4193367003a6SStefano Zampini   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
419488ed4aceSMatthew G Knepley   ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
419588ed4aceSMatthew G Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
419688ed4aceSMatthew G Knepley   ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr);
419788ed4aceSMatthew G Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr);
419888ed4aceSMatthew G Knepley   ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr);
419988ed4aceSMatthew G Knepley   ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr);
420088ed4aceSMatthew G Knepley   ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr);
420188ed4aceSMatthew G Knepley   ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr);
420288ed4aceSMatthew G Knepley   ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr);
4203ecd73843SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
42046636e97aSMatthew G Knepley     PetscInt gdof, gcdof;
420588ed4aceSMatthew G Knepley 
42066636e97aSMatthew G Knepley     ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
42076636e97aSMatthew G Knepley     ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
4208235fbf56SMatthew 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));
42096636e97aSMatthew G Knepley     nleaves += gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
421088ed4aceSMatthew G Knepley   }
4211785e854fSJed Brown   ierr = PetscMalloc1(nleaves, &local);CHKERRQ(ierr);
4212785e854fSJed Brown   ierr = PetscMalloc1(nleaves, &remote);CHKERRQ(ierr);
421388ed4aceSMatthew G Knepley   for (p = pStart, l = 0; p < pEnd; ++p) {
42141f588964SMatthew G Knepley     const PetscInt *cind;
42156636e97aSMatthew G Knepley     PetscInt       dof, cdof, off, gdof, gcdof, goff, gsize, d, c;
421688ed4aceSMatthew G Knepley 
421788ed4aceSMatthew G Knepley     ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr);
421888ed4aceSMatthew G Knepley     ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr);
421988ed4aceSMatthew G Knepley     ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr);
422088ed4aceSMatthew G Knepley     ierr = PetscSectionGetConstraintIndices(localSection, p, &cind);CHKERRQ(ierr);
422188ed4aceSMatthew G Knepley     ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
42226636e97aSMatthew G Knepley     ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
422388ed4aceSMatthew G Knepley     ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr);
42246636e97aSMatthew G Knepley     if (!gdof) continue; /* Censored point */
42256636e97aSMatthew G Knepley     gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
42266636e97aSMatthew G Knepley     if (gsize != dof-cdof) {
4227057b4bcdSMatthew 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);
42286636e97aSMatthew G Knepley       cdof = 0; /* Ignore constraints */
42296636e97aSMatthew G Knepley     }
423088ed4aceSMatthew G Knepley     for (d = 0, c = 0; d < dof; ++d) {
423188ed4aceSMatthew G Knepley       if ((c < cdof) && (cind[c] == d)) {++c; continue;}
423288ed4aceSMatthew G Knepley       local[l+d-c] = off+d;
423388ed4aceSMatthew G Knepley     }
423488ed4aceSMatthew G Knepley     if (gdof < 0) {
42356636e97aSMatthew G Knepley       for (d = 0; d < gsize; ++d, ++l) {
423688ed4aceSMatthew G Knepley         PetscInt offset = -(goff+1) + d, r;
423788ed4aceSMatthew G Knepley 
423805376888SMatthew G. Knepley         ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr);
423931d3f06eSJed Brown         if (r < 0) r = -(r+2);
424005376888SMatthew 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);
424188ed4aceSMatthew G Knepley         remote[l].rank  = r;
424288ed4aceSMatthew G Knepley         remote[l].index = offset - ranges[r];
424388ed4aceSMatthew G Knepley       }
424488ed4aceSMatthew G Knepley     } else {
42456636e97aSMatthew G Knepley       for (d = 0; d < gsize; ++d, ++l) {
424688ed4aceSMatthew G Knepley         remote[l].rank  = rank;
424788ed4aceSMatthew G Knepley         remote[l].index = goff+d - ranges[rank];
424888ed4aceSMatthew G Knepley       }
424988ed4aceSMatthew G Knepley     }
425088ed4aceSMatthew G Knepley   }
42516636e97aSMatthew G Knepley   if (l != nleaves) SETERRQ2(comm, PETSC_ERR_PLIB, "Iteration error, l %d != nleaves %d", l, nleaves);
425288ed4aceSMatthew G Knepley   ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
425388ed4aceSMatthew G Knepley   ierr = PetscSFSetGraph(dm->defaultSF, nroots, nleaves, local, PETSC_OWN_POINTER, remote, PETSC_OWN_POINTER);CHKERRQ(ierr);
425488ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
425588ed4aceSMatthew G Knepley }
4256af122d2aSMatthew G Knepley 
4257b21d0597SMatthew G Knepley /*@
4258b21d0597SMatthew G Knepley   DMGetPointSF - Get the PetscSF encoding the parallel section point overlap for the DM.
4259b21d0597SMatthew G Knepley 
4260b21d0597SMatthew G Knepley   Input Parameter:
4261b21d0597SMatthew G Knepley . dm - The DM
4262b21d0597SMatthew G Knepley 
4263b21d0597SMatthew G Knepley   Output Parameter:
4264b21d0597SMatthew G Knepley . sf - The PetscSF
4265b21d0597SMatthew G Knepley 
4266b21d0597SMatthew G Knepley   Level: intermediate
4267b21d0597SMatthew G Knepley 
4268b21d0597SMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSF.
4269b21d0597SMatthew G Knepley 
4270057b4bcdSMatthew G Knepley .seealso: DMSetPointSF(), DMGetDefaultSF(), DMSetDefaultSF(), DMCreateDefaultSF()
4271b21d0597SMatthew G Knepley @*/
42720adebc6cSBarry Smith PetscErrorCode DMGetPointSF(DM dm, PetscSF *sf)
42730adebc6cSBarry Smith {
4274b21d0597SMatthew G Knepley   PetscFunctionBegin;
4275b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4276b21d0597SMatthew G Knepley   PetscValidPointer(sf, 2);
4277b21d0597SMatthew G Knepley   *sf = dm->sf;
4278b21d0597SMatthew G Knepley   PetscFunctionReturn(0);
4279b21d0597SMatthew G Knepley }
4280b21d0597SMatthew G Knepley 
4281057b4bcdSMatthew G Knepley /*@
4282057b4bcdSMatthew G Knepley   DMSetPointSF - Set the PetscSF encoding the parallel section point overlap for the DM.
4283057b4bcdSMatthew G Knepley 
4284057b4bcdSMatthew G Knepley   Input Parameters:
4285057b4bcdSMatthew G Knepley + dm - The DM
4286057b4bcdSMatthew G Knepley - sf - The PetscSF
4287057b4bcdSMatthew G Knepley 
4288057b4bcdSMatthew G Knepley   Level: intermediate
4289057b4bcdSMatthew G Knepley 
4290057b4bcdSMatthew G Knepley .seealso: DMGetPointSF(), DMGetDefaultSF(), DMSetDefaultSF(), DMCreateDefaultSF()
4291057b4bcdSMatthew G Knepley @*/
42920adebc6cSBarry Smith PetscErrorCode DMSetPointSF(DM dm, PetscSF sf)
42930adebc6cSBarry Smith {
4294057b4bcdSMatthew G Knepley   PetscErrorCode ierr;
4295057b4bcdSMatthew G Knepley 
4296057b4bcdSMatthew G Knepley   PetscFunctionBegin;
4297057b4bcdSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
429833907cc2SStefano Zampini   if (sf) {
429933907cc2SStefano Zampini     PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
4300057b4bcdSMatthew G Knepley     ierr = PetscObjectReference((PetscObject) sf);CHKERRQ(ierr);
430133907cc2SStefano Zampini   }
430233907cc2SStefano Zampini   ierr   = PetscSFDestroy(&dm->sf);CHKERRQ(ierr);
4303057b4bcdSMatthew G Knepley   dm->sf = sf;
4304057b4bcdSMatthew G Knepley   PetscFunctionReturn(0);
4305057b4bcdSMatthew G Knepley }
4306057b4bcdSMatthew G Knepley 
430734aa8a36SMatthew G. Knepley static PetscErrorCode DMSetDefaultAdjacency_Private(DM dm, PetscInt f, PetscObject disc)
430834aa8a36SMatthew G. Knepley {
430934aa8a36SMatthew G. Knepley   PetscClassId   id;
431034aa8a36SMatthew G. Knepley   PetscErrorCode ierr;
431134aa8a36SMatthew G. Knepley 
431234aa8a36SMatthew G. Knepley   PetscFunctionBegin;
431334aa8a36SMatthew G. Knepley   ierr = PetscObjectGetClassId(disc, &id);CHKERRQ(ierr);
431434aa8a36SMatthew G. Knepley   if (id == PETSCFE_CLASSID) {
431534aa8a36SMatthew G. Knepley     ierr = DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE);CHKERRQ(ierr);
431634aa8a36SMatthew G. Knepley   } else if (id == PETSCFV_CLASSID) {
431734aa8a36SMatthew G. Knepley     ierr = DMSetAdjacency(dm, f, PETSC_TRUE, PETSC_FALSE);CHKERRQ(ierr);
431817c1d62eSMatthew G. Knepley   } else {
431917c1d62eSMatthew G. Knepley     ierr = DMSetAdjacency(dm, f, PETSC_FALSE, PETSC_TRUE);CHKERRQ(ierr);
432034aa8a36SMatthew G. Knepley   }
432134aa8a36SMatthew G. Knepley   PetscFunctionReturn(0);
432234aa8a36SMatthew G. Knepley }
432334aa8a36SMatthew G. Knepley 
432444a7f3ddSMatthew G. Knepley static PetscErrorCode DMFieldEnlarge_Static(DM dm, PetscInt NfNew)
432544a7f3ddSMatthew G. Knepley {
432644a7f3ddSMatthew G. Knepley   RegionField   *tmpr;
432744a7f3ddSMatthew G. Knepley   PetscInt       Nf = dm->Nf, f;
432844a7f3ddSMatthew G. Knepley   PetscErrorCode ierr;
432944a7f3ddSMatthew G. Knepley 
433044a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
433144a7f3ddSMatthew G. Knepley   if (Nf >= NfNew) PetscFunctionReturn(0);
433244a7f3ddSMatthew G. Knepley   ierr = PetscMalloc1(NfNew, &tmpr);CHKERRQ(ierr);
433344a7f3ddSMatthew G. Knepley   for (f = 0; f < Nf; ++f) tmpr[f] = dm->fields[f];
433444a7f3ddSMatthew G. Knepley   for (f = Nf; f < NfNew; ++f) {tmpr[f].disc = NULL; tmpr[f].label = NULL;}
433544a7f3ddSMatthew G. Knepley   ierr = PetscFree(dm->fields);CHKERRQ(ierr);
433644a7f3ddSMatthew G. Knepley   dm->Nf     = NfNew;
433744a7f3ddSMatthew G. Knepley   dm->fields = tmpr;
433844a7f3ddSMatthew G. Knepley   PetscFunctionReturn(0);
433944a7f3ddSMatthew G. Knepley }
434044a7f3ddSMatthew G. Knepley 
434144a7f3ddSMatthew G. Knepley /*@
434244a7f3ddSMatthew G. Knepley   DMClearFields - Remove all fields from the DM
434344a7f3ddSMatthew G. Knepley 
4344*d083f849SBarry Smith   Logically collective on dm
434544a7f3ddSMatthew G. Knepley 
434644a7f3ddSMatthew G. Knepley   Input Parameter:
434744a7f3ddSMatthew G. Knepley . dm - The DM
434844a7f3ddSMatthew G. Knepley 
434944a7f3ddSMatthew G. Knepley   Level: intermediate
435044a7f3ddSMatthew G. Knepley 
435144a7f3ddSMatthew G. Knepley .seealso: DMGetNumFields(), DMSetNumFields(), DMSetField()
435244a7f3ddSMatthew G. Knepley @*/
435344a7f3ddSMatthew G. Knepley PetscErrorCode DMClearFields(DM dm)
435444a7f3ddSMatthew G. Knepley {
435544a7f3ddSMatthew G. Knepley   PetscInt       f;
435644a7f3ddSMatthew G. Knepley   PetscErrorCode ierr;
435744a7f3ddSMatthew G. Knepley 
435844a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
435944a7f3ddSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
436044a7f3ddSMatthew G. Knepley   for (f = 0; f < dm->Nf; ++f) {
436144a7f3ddSMatthew G. Knepley     ierr = PetscObjectDestroy(&dm->fields[f].disc);CHKERRQ(ierr);
436244a7f3ddSMatthew G. Knepley     ierr = DMLabelDestroy(&dm->fields[f].label);CHKERRQ(ierr);
436344a7f3ddSMatthew G. Knepley   }
436444a7f3ddSMatthew G. Knepley   ierr = PetscFree(dm->fields);CHKERRQ(ierr);
436544a7f3ddSMatthew G. Knepley   dm->fields = NULL;
436644a7f3ddSMatthew G. Knepley   dm->Nf     = 0;
436744a7f3ddSMatthew G. Knepley   PetscFunctionReturn(0);
436844a7f3ddSMatthew G. Knepley }
436944a7f3ddSMatthew G. Knepley 
4370689b5837SMatthew G. Knepley /*@
4371689b5837SMatthew G. Knepley   DMGetNumFields - Get the number of fields in the DM
4372689b5837SMatthew G. Knepley 
4373689b5837SMatthew G. Knepley   Not collective
4374689b5837SMatthew G. Knepley 
4375689b5837SMatthew G. Knepley   Input Parameter:
4376689b5837SMatthew G. Knepley . dm - The DM
4377689b5837SMatthew G. Knepley 
4378689b5837SMatthew G. Knepley   Output Parameter:
4379689b5837SMatthew G. Knepley . Nf - The number of fields
4380689b5837SMatthew G. Knepley 
4381689b5837SMatthew G. Knepley   Level: intermediate
4382689b5837SMatthew G. Knepley 
4383689b5837SMatthew G. Knepley .seealso: DMSetNumFields(), DMSetField()
4384689b5837SMatthew G. Knepley @*/
43850f21e855SMatthew G. Knepley PetscErrorCode DMGetNumFields(DM dm, PetscInt *numFields)
43860f21e855SMatthew G. Knepley {
43870f21e855SMatthew G. Knepley   PetscFunctionBegin;
43880f21e855SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
438944a7f3ddSMatthew G. Knepley   PetscValidPointer(numFields, 2);
439044a7f3ddSMatthew G. Knepley   *numFields = dm->Nf;
4391af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4392af122d2aSMatthew G Knepley }
4393af122d2aSMatthew G Knepley 
4394689b5837SMatthew G. Knepley /*@
4395689b5837SMatthew G. Knepley   DMSetNumFields - Set the number of fields in the DM
4396689b5837SMatthew G. Knepley 
4397*d083f849SBarry Smith   Logically collective on dm
4398689b5837SMatthew G. Knepley 
4399689b5837SMatthew G. Knepley   Input Parameters:
4400689b5837SMatthew G. Knepley + dm - The DM
4401689b5837SMatthew G. Knepley - Nf - The number of fields
4402689b5837SMatthew G. Knepley 
4403689b5837SMatthew G. Knepley   Level: intermediate
4404689b5837SMatthew G. Knepley 
4405689b5837SMatthew G. Knepley .seealso: DMGetNumFields(), DMSetField()
4406689b5837SMatthew G. Knepley @*/
4407af122d2aSMatthew G Knepley PetscErrorCode DMSetNumFields(DM dm, PetscInt numFields)
4408af122d2aSMatthew G Knepley {
44090f21e855SMatthew G. Knepley   PetscInt       Nf, f;
4410af122d2aSMatthew G Knepley   PetscErrorCode ierr;
4411af122d2aSMatthew G Knepley 
4412af122d2aSMatthew G Knepley   PetscFunctionBegin;
4413af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
441444a7f3ddSMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
44150f21e855SMatthew G. Knepley   for (f = Nf; f < numFields; ++f) {
44160f21e855SMatthew G. Knepley     PetscContainer obj;
44170f21e855SMatthew G. Knepley 
44180f21e855SMatthew G. Knepley     ierr = PetscContainerCreate(PetscObjectComm((PetscObject) dm), &obj);CHKERRQ(ierr);
441944a7f3ddSMatthew G. Knepley     ierr = DMAddField(dm, NULL, (PetscObject) obj);CHKERRQ(ierr);
44200f21e855SMatthew G. Knepley     ierr = PetscContainerDestroy(&obj);CHKERRQ(ierr);
4421af122d2aSMatthew G Knepley   }
4422af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4423af122d2aSMatthew G Knepley }
4424af122d2aSMatthew G Knepley 
4425c1929be8SMatthew G. Knepley /*@
4426c1929be8SMatthew G. Knepley   DMGetField - Return the discretization object for a given DM field
4427c1929be8SMatthew G. Knepley 
4428c1929be8SMatthew G. Knepley   Not collective
4429c1929be8SMatthew G. Knepley 
4430c1929be8SMatthew G. Knepley   Input Parameters:
4431c1929be8SMatthew G. Knepley + dm - The DM
4432c1929be8SMatthew G. Knepley - f  - The field number
4433c1929be8SMatthew G. Knepley 
443444a7f3ddSMatthew G. Knepley   Output Parameters:
443544a7f3ddSMatthew G. Knepley + label - The label indicating the support of the field, or NULL for the entire mesh
443644a7f3ddSMatthew G. Knepley - field - The discretization object
4437c1929be8SMatthew G. Knepley 
443844a7f3ddSMatthew G. Knepley   Level: intermediate
4439c1929be8SMatthew G. Knepley 
444044a7f3ddSMatthew G. Knepley .seealso: DMAddField(), DMSetField()
4441c1929be8SMatthew G. Knepley @*/
444244a7f3ddSMatthew G. Knepley PetscErrorCode DMGetField(DM dm, PetscInt f, DMLabel *label, PetscObject *field)
4443af122d2aSMatthew G Knepley {
4444af122d2aSMatthew G Knepley   PetscFunctionBegin;
4445af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
444644a7f3ddSMatthew G. Knepley   PetscValidPointer(field, 3);
444744a7f3ddSMatthew 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);
444844a7f3ddSMatthew G. Knepley   if (label) *label = dm->fields[f].label;
444944a7f3ddSMatthew G. Knepley   if (field) *field = dm->fields[f].disc;
4450decb47aaSMatthew G. Knepley   PetscFunctionReturn(0);
4451decb47aaSMatthew G. Knepley }
4452decb47aaSMatthew G. Knepley 
4453c1929be8SMatthew G. Knepley /*@
4454c1929be8SMatthew G. Knepley   DMSetField - Set the discretization object for a given DM field
4455c1929be8SMatthew G. Knepley 
4456*d083f849SBarry Smith   Logically collective on dm
4457c1929be8SMatthew G. Knepley 
4458c1929be8SMatthew G. Knepley   Input Parameters:
4459c1929be8SMatthew G. Knepley + dm    - The DM
4460c1929be8SMatthew G. Knepley . f     - The field number
446144a7f3ddSMatthew G. Knepley . label - The label indicating the support of the field, or NULL for the entire mesh
4462c1929be8SMatthew G. Knepley - field - The discretization object
4463c1929be8SMatthew G. Knepley 
446444a7f3ddSMatthew G. Knepley   Level: intermediate
4465c1929be8SMatthew G. Knepley 
446644a7f3ddSMatthew G. Knepley .seealso: DMAddField(), DMGetField()
4467c1929be8SMatthew G. Knepley @*/
446844a7f3ddSMatthew G. Knepley PetscErrorCode DMSetField(DM dm, PetscInt f, DMLabel label, PetscObject field)
4469decb47aaSMatthew G. Knepley {
4470decb47aaSMatthew G. Knepley   PetscErrorCode ierr;
4471decb47aaSMatthew G. Knepley 
4472decb47aaSMatthew G. Knepley   PetscFunctionBegin;
4473decb47aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4474e5e52638SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3);
447544a7f3ddSMatthew G. Knepley   PetscValidHeader(field, 4);
4476e5e52638SMatthew G. Knepley   if (f < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be non-negative", f);
447744a7f3ddSMatthew G. Knepley   ierr = DMFieldEnlarge_Static(dm, f+1);CHKERRQ(ierr);
447844a7f3ddSMatthew G. Knepley   ierr = DMLabelDestroy(&dm->fields[f].label);CHKERRQ(ierr);
447944a7f3ddSMatthew G. Knepley   ierr = PetscObjectDestroy(&dm->fields[f].disc);CHKERRQ(ierr);
448044a7f3ddSMatthew G. Knepley   dm->fields[f].label = label;
448144a7f3ddSMatthew G. Knepley   dm->fields[f].disc  = field;
448244a7f3ddSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr);
448344a7f3ddSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) field);CHKERRQ(ierr);
448434aa8a36SMatthew G. Knepley   ierr = DMSetDefaultAdjacency_Private(dm, f, field);CHKERRQ(ierr);
44852df9ee95SMatthew G. Knepley   ierr = DMClearDS(dm);CHKERRQ(ierr);
448644a7f3ddSMatthew G. Knepley   PetscFunctionReturn(0);
448744a7f3ddSMatthew G. Knepley }
448844a7f3ddSMatthew G. Knepley 
448944a7f3ddSMatthew G. Knepley /*@
449044a7f3ddSMatthew G. Knepley   DMAddField - Add the discretization object for the given DM field
449144a7f3ddSMatthew G. Knepley 
4492*d083f849SBarry Smith   Logically collective on dm
449344a7f3ddSMatthew G. Knepley 
449444a7f3ddSMatthew G. Knepley   Input Parameters:
449544a7f3ddSMatthew G. Knepley + dm    - The DM
449644a7f3ddSMatthew G. Knepley . label - The label indicating the support of the field, or NULL for the entire mesh
449744a7f3ddSMatthew G. Knepley - field - The discretization object
449844a7f3ddSMatthew G. Knepley 
449944a7f3ddSMatthew G. Knepley   Level: intermediate
450044a7f3ddSMatthew G. Knepley 
450144a7f3ddSMatthew G. Knepley .seealso: DMSetField(), DMGetField()
450244a7f3ddSMatthew G. Knepley @*/
450344a7f3ddSMatthew G. Knepley PetscErrorCode DMAddField(DM dm, DMLabel label, PetscObject field)
450444a7f3ddSMatthew G. Knepley {
450544a7f3ddSMatthew G. Knepley   PetscInt       Nf = dm->Nf;
450644a7f3ddSMatthew G. Knepley   PetscErrorCode ierr;
450744a7f3ddSMatthew G. Knepley 
450844a7f3ddSMatthew G. Knepley   PetscFunctionBegin;
450944a7f3ddSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
451044a7f3ddSMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 3);
451144a7f3ddSMatthew G. Knepley   PetscValidHeader(field, 3);
451244a7f3ddSMatthew G. Knepley   ierr = DMFieldEnlarge_Static(dm, Nf+1);CHKERRQ(ierr);
451344a7f3ddSMatthew G. Knepley   dm->fields[Nf].label = label;
451444a7f3ddSMatthew G. Knepley   dm->fields[Nf].disc  = field;
451544a7f3ddSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr);
451644a7f3ddSMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) field);CHKERRQ(ierr);
451734aa8a36SMatthew G. Knepley   ierr = DMSetDefaultAdjacency_Private(dm, Nf, field);CHKERRQ(ierr);
45182df9ee95SMatthew G. Knepley   ierr = DMClearDS(dm);CHKERRQ(ierr);
4519af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4520af122d2aSMatthew G Knepley }
45216636e97aSMatthew G Knepley 
4522e5e52638SMatthew G. Knepley /*@
4523e5e52638SMatthew G. Knepley   DMCopyFields - Copy the discretizations for the DM into another DM
4524e5e52638SMatthew G. Knepley 
4525*d083f849SBarry Smith   Collective on dm
4526e5e52638SMatthew G. Knepley 
4527e5e52638SMatthew G. Knepley   Input Parameter:
4528e5e52638SMatthew G. Knepley . dm - The DM
4529e5e52638SMatthew G. Knepley 
4530e5e52638SMatthew G. Knepley   Output Parameter:
4531e5e52638SMatthew G. Knepley . newdm - The DM
4532e5e52638SMatthew G. Knepley 
4533e5e52638SMatthew G. Knepley   Level: advanced
4534e5e52638SMatthew G. Knepley 
4535e5e52638SMatthew G. Knepley .seealso: DMGetField(), DMSetField(), DMAddField(), DMCopyDS(), DMGetDS(), DMGetCellDS()
4536e5e52638SMatthew G. Knepley @*/
4537e5e52638SMatthew G. Knepley PetscErrorCode DMCopyFields(DM dm, DM newdm)
4538e5e52638SMatthew G. Knepley {
4539e5e52638SMatthew G. Knepley   PetscInt       Nf, f;
4540e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4541e5e52638SMatthew G. Knepley 
4542e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4543e5e52638SMatthew G. Knepley   if (dm == newdm) PetscFunctionReturn(0);
4544e5e52638SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
4545e5e52638SMatthew G. Knepley   ierr = DMClearFields(newdm);CHKERRQ(ierr);
4546e5e52638SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
4547e5e52638SMatthew G. Knepley     DMLabel     label;
4548e5e52638SMatthew G. Knepley     PetscObject field;
454934aa8a36SMatthew G. Knepley     PetscBool   useCone, useClosure;
4550e5e52638SMatthew G. Knepley 
4551e5e52638SMatthew G. Knepley     ierr = DMGetField(dm, f, &label, &field);CHKERRQ(ierr);
4552e5e52638SMatthew G. Knepley     ierr = DMSetField(newdm, f, label, field);CHKERRQ(ierr);
455334aa8a36SMatthew G. Knepley     ierr = DMGetAdjacency(dm, f, &useCone, &useClosure);CHKERRQ(ierr);
455434aa8a36SMatthew G. Knepley     ierr = DMSetAdjacency(newdm, f, useCone, useClosure);CHKERRQ(ierr);
455534aa8a36SMatthew G. Knepley   }
455634aa8a36SMatthew G. Knepley   PetscFunctionReturn(0);
455734aa8a36SMatthew G. Knepley }
455834aa8a36SMatthew G. Knepley 
455934aa8a36SMatthew G. Knepley /*@
456034aa8a36SMatthew G. Knepley   DMGetAdjacency - Returns the flags for determining variable influence
456134aa8a36SMatthew G. Knepley 
456234aa8a36SMatthew G. Knepley   Not collective
456334aa8a36SMatthew G. Knepley 
456434aa8a36SMatthew G. Knepley   Input Parameters:
456534aa8a36SMatthew G. Knepley + dm - The DM object
456634aa8a36SMatthew G. Knepley - f  - The field number, or PETSC_DEFAULT for the default adjacency
456734aa8a36SMatthew G. Knepley 
456834aa8a36SMatthew G. Knepley   Output Parameter:
456934aa8a36SMatthew G. Knepley + useCone    - Flag for variable influence starting with the cone operation
457034aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
457134aa8a36SMatthew G. Knepley 
457234aa8a36SMatthew G. Knepley   Notes:
457334aa8a36SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
457434aa8a36SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
457534aa8a36SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
4576979e053dSMatthew G. Knepley   Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another.
457734aa8a36SMatthew G. Knepley 
457834aa8a36SMatthew G. Knepley   Level: developer
457934aa8a36SMatthew G. Knepley 
458034aa8a36SMatthew G. Knepley .seealso: DMSetAdjacency(), DMGetField(), DMSetField()
458134aa8a36SMatthew G. Knepley @*/
458234aa8a36SMatthew G. Knepley PetscErrorCode DMGetAdjacency(DM dm, PetscInt f, PetscBool *useCone, PetscBool *useClosure)
458334aa8a36SMatthew G. Knepley {
458434aa8a36SMatthew G. Knepley   PetscFunctionBegin;
458534aa8a36SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
458634aa8a36SMatthew G. Knepley   if (useCone) PetscValidPointer(useCone, 3);
458734aa8a36SMatthew G. Knepley   if (useClosure) PetscValidPointer(useClosure, 4);
458834aa8a36SMatthew G. Knepley   if (f < 0) {
458934aa8a36SMatthew G. Knepley     if (useCone)    *useCone    = dm->adjacency[0];
459034aa8a36SMatthew G. Knepley     if (useClosure) *useClosure = dm->adjacency[1];
459134aa8a36SMatthew G. Knepley   } else {
459234aa8a36SMatthew G. Knepley     PetscInt       Nf;
459334aa8a36SMatthew G. Knepley     PetscErrorCode ierr;
459434aa8a36SMatthew G. Knepley 
459534aa8a36SMatthew G. Knepley     ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
459634aa8a36SMatthew G. Knepley     if (f >= Nf) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, Nf);
459734aa8a36SMatthew G. Knepley     if (useCone)    *useCone    = dm->fields[f].adjacency[0];
459834aa8a36SMatthew G. Knepley     if (useClosure) *useClosure = dm->fields[f].adjacency[1];
459934aa8a36SMatthew G. Knepley   }
460034aa8a36SMatthew G. Knepley   PetscFunctionReturn(0);
460134aa8a36SMatthew G. Knepley }
460234aa8a36SMatthew G. Knepley 
460334aa8a36SMatthew G. Knepley /*@
460434aa8a36SMatthew G. Knepley   DMSetAdjacency - Set the flags for determining variable influence
460534aa8a36SMatthew G. Knepley 
460634aa8a36SMatthew G. Knepley   Not collective
460734aa8a36SMatthew G. Knepley 
460834aa8a36SMatthew G. Knepley   Input Parameters:
460934aa8a36SMatthew G. Knepley + dm         - The DM object
461034aa8a36SMatthew G. Knepley . f          - The field number
461134aa8a36SMatthew G. Knepley . useCone    - Flag for variable influence starting with the cone operation
461234aa8a36SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
461334aa8a36SMatthew G. Knepley 
461434aa8a36SMatthew G. Knepley   Notes:
461534aa8a36SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
461634aa8a36SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
461734aa8a36SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
4618979e053dSMatthew G. Knepley   Further explanation can be found in the User's Manual Section on the Influence of Variables on One Another.
461934aa8a36SMatthew G. Knepley 
462034aa8a36SMatthew G. Knepley   Level: developer
462134aa8a36SMatthew G. Knepley 
462234aa8a36SMatthew G. Knepley .seealso: DMGetAdjacency(), DMGetField(), DMSetField()
462334aa8a36SMatthew G. Knepley @*/
462434aa8a36SMatthew G. Knepley PetscErrorCode DMSetAdjacency(DM dm, PetscInt f, PetscBool useCone, PetscBool useClosure)
462534aa8a36SMatthew G. Knepley {
462634aa8a36SMatthew G. Knepley   PetscFunctionBegin;
462734aa8a36SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
462834aa8a36SMatthew G. Knepley   if (f < 0) {
462934aa8a36SMatthew G. Knepley     dm->adjacency[0] = useCone;
463034aa8a36SMatthew G. Knepley     dm->adjacency[1] = useClosure;
463134aa8a36SMatthew G. Knepley   } else {
463234aa8a36SMatthew G. Knepley     PetscInt       Nf;
463334aa8a36SMatthew G. Knepley     PetscErrorCode ierr;
463434aa8a36SMatthew G. Knepley 
463534aa8a36SMatthew G. Knepley     ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
463634aa8a36SMatthew G. Knepley     if (f >= Nf) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field number %d must be in [0, %d)", f, Nf);
463734aa8a36SMatthew G. Knepley     dm->fields[f].adjacency[0] = useCone;
463834aa8a36SMatthew G. Knepley     dm->fields[f].adjacency[1] = useClosure;
4639e5e52638SMatthew G. Knepley   }
4640e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4641e5e52638SMatthew G. Knepley }
4642e5e52638SMatthew G. Knepley 
4643b0441da4SMatthew G. Knepley /*@
4644b0441da4SMatthew G. Knepley   DMGetBasicAdjacency - Returns the flags for determining variable influence, using either the default or field 0 if it is defined
4645b0441da4SMatthew G. Knepley 
4646b0441da4SMatthew G. Knepley   Not collective
4647b0441da4SMatthew G. Knepley 
4648b0441da4SMatthew G. Knepley   Input Parameters:
4649b0441da4SMatthew G. Knepley . dm - The DM object
4650b0441da4SMatthew G. Knepley 
4651b0441da4SMatthew G. Knepley   Output Parameter:
4652b0441da4SMatthew G. Knepley + useCone    - Flag for variable influence starting with the cone operation
4653b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
4654b0441da4SMatthew G. Knepley 
4655b0441da4SMatthew G. Knepley   Notes:
4656b0441da4SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
4657b0441da4SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
4658b0441da4SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
4659b0441da4SMatthew G. Knepley 
4660b0441da4SMatthew G. Knepley   Level: developer
4661b0441da4SMatthew G. Knepley 
4662b0441da4SMatthew G. Knepley .seealso: DMSetBasicAdjacency(), DMGetField(), DMSetField()
4663b0441da4SMatthew G. Knepley @*/
4664b0441da4SMatthew G. Knepley PetscErrorCode DMGetBasicAdjacency(DM dm, PetscBool *useCone, PetscBool *useClosure)
4665b0441da4SMatthew G. Knepley {
4666b0441da4SMatthew G. Knepley   PetscInt       Nf;
4667b0441da4SMatthew G. Knepley   PetscErrorCode ierr;
4668b0441da4SMatthew G. Knepley 
4669b0441da4SMatthew G. Knepley   PetscFunctionBegin;
4670b0441da4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4671b0441da4SMatthew G. Knepley   if (useCone) PetscValidPointer(useCone, 3);
4672b0441da4SMatthew G. Knepley   if (useClosure) PetscValidPointer(useClosure, 4);
4673b0441da4SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
4674b0441da4SMatthew G. Knepley   if (!Nf) {
4675b0441da4SMatthew G. Knepley     ierr = DMGetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr);
4676b0441da4SMatthew G. Knepley   } else {
4677b0441da4SMatthew G. Knepley     ierr = DMGetAdjacency(dm, 0, useCone, useClosure);CHKERRQ(ierr);
4678b0441da4SMatthew G. Knepley   }
4679b0441da4SMatthew G. Knepley   PetscFunctionReturn(0);
4680b0441da4SMatthew G. Knepley }
4681b0441da4SMatthew G. Knepley 
4682b0441da4SMatthew G. Knepley /*@
4683b0441da4SMatthew G. Knepley   DMSetBasicAdjacency - Set the flags for determining variable influence, using either the default or field 0 if it is defined
4684b0441da4SMatthew G. Knepley 
4685b0441da4SMatthew G. Knepley   Not collective
4686b0441da4SMatthew G. Knepley 
4687b0441da4SMatthew G. Knepley   Input Parameters:
4688b0441da4SMatthew G. Knepley + dm         - The DM object
4689b0441da4SMatthew G. Knepley . useCone    - Flag for variable influence starting with the cone operation
4690b0441da4SMatthew G. Knepley - useClosure - Flag for variable influence using transitive closure
4691b0441da4SMatthew G. Knepley 
4692b0441da4SMatthew G. Knepley   Notes:
4693b0441da4SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)),   useCone = PETSC_FALSE, useClosure = PETSC_TRUE
4694b0441da4SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in support(p+cone(p)), useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
4695b0441da4SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)),   useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
4696b0441da4SMatthew G. Knepley 
4697b0441da4SMatthew G. Knepley   Level: developer
4698b0441da4SMatthew G. Knepley 
4699b0441da4SMatthew G. Knepley .seealso: DMGetBasicAdjacency(), DMGetField(), DMSetField()
4700b0441da4SMatthew G. Knepley @*/
4701b0441da4SMatthew G. Knepley PetscErrorCode DMSetBasicAdjacency(DM dm, PetscBool useCone, PetscBool useClosure)
4702b0441da4SMatthew G. Knepley {
4703b0441da4SMatthew G. Knepley   PetscInt       Nf;
4704b0441da4SMatthew G. Knepley   PetscErrorCode ierr;
4705b0441da4SMatthew G. Knepley 
4706b0441da4SMatthew G. Knepley   PetscFunctionBegin;
4707b0441da4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4708b0441da4SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
4709b0441da4SMatthew G. Knepley   if (!Nf) {
4710b0441da4SMatthew G. Knepley     ierr = DMSetAdjacency(dm, PETSC_DEFAULT, useCone, useClosure);CHKERRQ(ierr);
4711b0441da4SMatthew G. Knepley   } else {
4712b0441da4SMatthew G. Knepley     ierr = DMSetAdjacency(dm, 0, useCone, useClosure);CHKERRQ(ierr);
4713e5e52638SMatthew G. Knepley   }
4714e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4715e5e52638SMatthew G. Knepley }
4716e5e52638SMatthew G. Knepley 
4717e5e52638SMatthew G. Knepley static PetscErrorCode DMDSEnlarge_Static(DM dm, PetscInt NdsNew)
4718e5e52638SMatthew G. Knepley {
4719e5e52638SMatthew G. Knepley   DMSpace       *tmpd;
4720e5e52638SMatthew G. Knepley   PetscInt       Nds = dm->Nds, s;
4721e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4722e5e52638SMatthew G. Knepley 
4723e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4724e5e52638SMatthew G. Knepley   if (Nds >= NdsNew) PetscFunctionReturn(0);
4725e5e52638SMatthew G. Knepley   ierr = PetscMalloc1(NdsNew, &tmpd);CHKERRQ(ierr);
4726e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) tmpd[s] = dm->probs[s];
4727b3cf3223SMatthew G. Knepley   for (s = Nds; s < NdsNew; ++s) {tmpd[s].ds = NULL; tmpd[s].label = NULL; tmpd[s].fields = NULL;}
4728e5e52638SMatthew G. Knepley   ierr = PetscFree(dm->probs);CHKERRQ(ierr);
4729e5e52638SMatthew G. Knepley   dm->Nds   = NdsNew;
4730e5e52638SMatthew G. Knepley   dm->probs = tmpd;
4731e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4732e5e52638SMatthew G. Knepley }
4733e5e52638SMatthew G. Knepley 
4734e5e52638SMatthew G. Knepley /*@
4735e5e52638SMatthew G. Knepley   DMGetNumDS - Get the number of discrete systems in the DM
4736e5e52638SMatthew G. Knepley 
4737e5e52638SMatthew G. Knepley   Not collective
4738e5e52638SMatthew G. Knepley 
4739e5e52638SMatthew G. Knepley   Input Parameter:
4740e5e52638SMatthew G. Knepley . dm - The DM
4741e5e52638SMatthew G. Knepley 
4742e5e52638SMatthew G. Knepley   Output Parameter:
4743e5e52638SMatthew G. Knepley . Nds - The number of PetscDS objects
4744e5e52638SMatthew G. Knepley 
4745e5e52638SMatthew G. Knepley   Level: intermediate
4746e5e52638SMatthew G. Knepley 
4747e5e52638SMatthew G. Knepley .seealso: DMGetDS(), DMGetCellDS()
4748e5e52638SMatthew G. Knepley @*/
4749e5e52638SMatthew G. Knepley PetscErrorCode DMGetNumDS(DM dm, PetscInt *Nds)
4750e5e52638SMatthew G. Knepley {
4751e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4752e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4753e5e52638SMatthew G. Knepley   PetscValidPointer(Nds, 2);
4754e5e52638SMatthew G. Knepley   *Nds = dm->Nds;
4755e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4756e5e52638SMatthew G. Knepley }
4757e5e52638SMatthew G. Knepley 
4758e5e52638SMatthew G. Knepley /*@
4759e5e52638SMatthew G. Knepley   DMClearDS - Remove all discrete systems from the DM
4760e5e52638SMatthew G. Knepley 
4761*d083f849SBarry Smith   Logically collective on dm
4762e5e52638SMatthew G. Knepley 
4763e5e52638SMatthew G. Knepley   Input Parameter:
4764e5e52638SMatthew G. Knepley . dm - The DM
4765e5e52638SMatthew G. Knepley 
4766e5e52638SMatthew G. Knepley   Level: intermediate
4767e5e52638SMatthew G. Knepley 
4768e5e52638SMatthew G. Knepley .seealso: DMGetNumDS(), DMGetDS(), DMSetField()
4769e5e52638SMatthew G. Knepley @*/
4770e5e52638SMatthew G. Knepley PetscErrorCode DMClearDS(DM dm)
4771e5e52638SMatthew G. Knepley {
4772e5e52638SMatthew G. Knepley   PetscInt       s;
4773e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4774e5e52638SMatthew G. Knepley 
4775e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4776e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4777e5e52638SMatthew G. Knepley   for (s = 0; s < dm->Nds; ++s) {
4778e5e52638SMatthew G. Knepley     ierr = PetscDSDestroy(&dm->probs[s].ds);CHKERRQ(ierr);
4779e5e52638SMatthew G. Knepley     ierr = DMLabelDestroy(&dm->probs[s].label);CHKERRQ(ierr);
4780b3cf3223SMatthew G. Knepley     ierr = ISDestroy(&dm->probs[s].fields);CHKERRQ(ierr);
4781e5e52638SMatthew G. Knepley   }
4782e5e52638SMatthew G. Knepley   ierr = PetscFree(dm->probs);CHKERRQ(ierr);
4783e5e52638SMatthew G. Knepley   dm->probs = NULL;
4784e5e52638SMatthew G. Knepley   dm->Nds   = 0;
4785e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4786e5e52638SMatthew G. Knepley }
4787e5e52638SMatthew G. Knepley 
4788e5e52638SMatthew G. Knepley /*@
4789e5e52638SMatthew G. Knepley   DMGetDS - Get the default PetscDS
4790e5e52638SMatthew G. Knepley 
4791e5e52638SMatthew G. Knepley   Not collective
4792e5e52638SMatthew G. Knepley 
4793e5e52638SMatthew G. Knepley   Input Parameter:
4794e5e52638SMatthew G. Knepley . dm    - The DM
4795e5e52638SMatthew G. Knepley 
4796e5e52638SMatthew G. Knepley   Output Parameter:
4797e5e52638SMatthew G. Knepley . prob - The default PetscDS
4798e5e52638SMatthew G. Knepley 
4799e5e52638SMatthew G. Knepley   Level: intermediate
4800e5e52638SMatthew G. Knepley 
4801e5e52638SMatthew G. Knepley .seealso: DMGetCellDS(), DMGetRegionDS()
4802e5e52638SMatthew G. Knepley @*/
4803e5e52638SMatthew G. Knepley PetscErrorCode DMGetDS(DM dm, PetscDS *prob)
4804e5e52638SMatthew G. Knepley {
4805b0143b4dSMatthew G. Knepley   PetscErrorCode ierr;
4806b0143b4dSMatthew G. Knepley 
4807e5e52638SMatthew G. Knepley   PetscFunctionBeginHot;
4808e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4809e5e52638SMatthew G. Knepley   PetscValidPointer(prob, 2);
4810b0143b4dSMatthew G. Knepley   if (dm->Nds <= 0) {
4811b0143b4dSMatthew G. Knepley     PetscDS ds;
4812b0143b4dSMatthew G. Knepley 
4813b0143b4dSMatthew G. Knepley     ierr = PetscDSCreate(PetscObjectComm((PetscObject) dm), &ds);CHKERRQ(ierr);
4814b3cf3223SMatthew G. Knepley     ierr = DMSetRegionDS(dm, NULL, NULL, ds);CHKERRQ(ierr);
4815b0143b4dSMatthew G. Knepley     ierr = PetscDSDestroy(&ds);CHKERRQ(ierr);
4816b0143b4dSMatthew G. Knepley   }
4817b0143b4dSMatthew G. Knepley   *prob = dm->probs[0].ds;
4818e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4819e5e52638SMatthew G. Knepley }
4820e5e52638SMatthew G. Knepley 
4821e5e52638SMatthew G. Knepley /*@
4822e5e52638SMatthew G. Knepley   DMGetCellDS - Get the PetscDS defined on a given cell
4823e5e52638SMatthew G. Knepley 
4824e5e52638SMatthew G. Knepley   Not collective
4825e5e52638SMatthew G. Knepley 
4826e5e52638SMatthew G. Knepley   Input Parameters:
4827e5e52638SMatthew G. Knepley + dm    - The DM
4828e5e52638SMatthew G. Knepley - point - Cell for the DS
4829e5e52638SMatthew G. Knepley 
4830e5e52638SMatthew G. Knepley   Output Parameter:
4831e5e52638SMatthew G. Knepley . prob - The PetscDS defined on the given cell
4832e5e52638SMatthew G. Knepley 
4833e5e52638SMatthew G. Knepley   Level: developer
4834e5e52638SMatthew G. Knepley 
4835b0143b4dSMatthew G. Knepley .seealso: DMGetDS(), DMSetRegionDS()
4836e5e52638SMatthew G. Knepley @*/
4837e5e52638SMatthew G. Knepley PetscErrorCode DMGetCellDS(DM dm, PetscInt point, PetscDS *prob)
4838e5e52638SMatthew G. Knepley {
4839e5e52638SMatthew G. Knepley   PetscDS        probDef = NULL;
4840e5e52638SMatthew G. Knepley   PetscInt       s;
4841e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4842e5e52638SMatthew G. Knepley 
4843e5e52638SMatthew G. Knepley   PetscFunctionBeginHot;
4844e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4845e5e52638SMatthew G. Knepley   PetscValidPointer(prob, 3);
4846e5e52638SMatthew G. Knepley   *prob = NULL;
4847e5e52638SMatthew G. Knepley   for (s = 0; s < dm->Nds; ++s) {
4848e5e52638SMatthew G. Knepley     PetscInt val;
4849e5e52638SMatthew G. Knepley 
4850e5e52638SMatthew G. Knepley     if (!dm->probs[s].label) {probDef = dm->probs[s].ds;}
4851e5e52638SMatthew G. Knepley     else {
4852e5e52638SMatthew G. Knepley       ierr = DMLabelGetValue(dm->probs[s].label, point, &val);CHKERRQ(ierr);
4853e5e52638SMatthew G. Knepley       if (val >= 0) {*prob = dm->probs[s].ds; break;}
4854e5e52638SMatthew G. Knepley     }
4855e5e52638SMatthew G. Knepley   }
4856e5e52638SMatthew G. Knepley   if (!*prob) *prob = probDef;
4857e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4858e5e52638SMatthew G. Knepley }
4859e5e52638SMatthew G. Knepley 
4860e5e52638SMatthew G. Knepley /*@
4861e5e52638SMatthew G. Knepley   DMGetRegionDS - Get the PetscDS for a given mesh region, defined by a DMLabel
4862e5e52638SMatthew G. Knepley 
4863e5e52638SMatthew G. Knepley   Not collective
4864e5e52638SMatthew G. Knepley 
4865e5e52638SMatthew G. Knepley   Input Parameters:
4866e5e52638SMatthew G. Knepley + dm    - The DM
4867e5e52638SMatthew G. Knepley - label - The DMLabel defining the mesh region, or NULL for the entire mesh
4868e5e52638SMatthew G. Knepley 
4869b3cf3223SMatthew G. Knepley   Output Parameters:
4870b3cf3223SMatthew G. Knepley + fields - The IS containing the DM field numbers for the fields in this DS, or NULL
4871b3cf3223SMatthew G. Knepley - prob - The PetscDS defined on the given region, or NULL
4872e5e52638SMatthew G. Knepley 
4873e5e52638SMatthew G. Knepley   Note: If the label is missing, this function returns an error
4874e5e52638SMatthew G. Knepley 
4875e5e52638SMatthew G. Knepley   Level: advanced
4876e5e52638SMatthew G. Knepley 
4877e5e52638SMatthew G. Knepley .seealso: DMGetRegionNumDS(), DMSetRegionDS(), DMGetDS(), DMGetCellDS()
4878e5e52638SMatthew G. Knepley @*/
4879b3cf3223SMatthew G. Knepley PetscErrorCode DMGetRegionDS(DM dm, DMLabel label, IS *fields, PetscDS *ds)
4880e5e52638SMatthew G. Knepley {
4881e5e52638SMatthew G. Knepley   PetscInt Nds = dm->Nds, s;
4882e5e52638SMatthew G. Knepley 
4883e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4884e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4885e5e52638SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
4886b3cf3223SMatthew G. Knepley   if (fields) {PetscValidPointer(fields, 3); *fields = NULL;}
4887b3cf3223SMatthew G. Knepley   if (ds)     {PetscValidPointer(ds, 4);     *ds     = NULL;}
4888e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
4889b3cf3223SMatthew G. Knepley     if (dm->probs[s].label == label) {
4890b3cf3223SMatthew G. Knepley       if (fields) *fields = dm->probs[s].fields;
4891b3cf3223SMatthew G. Knepley       if (ds)     *ds     = dm->probs[s].ds;
4892b3cf3223SMatthew G. Knepley       PetscFunctionReturn(0);
4893b3cf3223SMatthew G. Knepley     }
4894e5e52638SMatthew G. Knepley   }
48952df9ee95SMatthew G. Knepley   PetscFunctionReturn(0);
4896e5e52638SMatthew G. Knepley }
4897e5e52638SMatthew G. Knepley 
4898e5e52638SMatthew G. Knepley /*@
4899e5e52638SMatthew G. Knepley   DMGetRegionNumDS - Get the PetscDS for a given mesh region, defined by the region number
4900e5e52638SMatthew G. Knepley 
4901e5e52638SMatthew G. Knepley   Not collective
4902e5e52638SMatthew G. Knepley 
4903e5e52638SMatthew G. Knepley   Input Parameters:
4904e5e52638SMatthew G. Knepley + dm  - The DM
4905e5e52638SMatthew G. Knepley - num - The region number, in [0, Nds)
4906e5e52638SMatthew G. Knepley 
4907e5e52638SMatthew G. Knepley   Output Parameters:
4908b3cf3223SMatthew G. Knepley + label  - The region label, or NULL
4909b3cf3223SMatthew G. Knepley . fields - The IS containing the DM field numbers for the fields in this DS, or NULL
4910b3cf3223SMatthew G. Knepley - prob   - The PetscDS defined on the given region, or NULL
4911e5e52638SMatthew G. Knepley 
4912e5e52638SMatthew G. Knepley   Level: advanced
4913e5e52638SMatthew G. Knepley 
4914e5e52638SMatthew G. Knepley .seealso: DMGetRegionDS(), DMSetRegionDS(), DMGetDS(), DMGetCellDS()
4915e5e52638SMatthew G. Knepley @*/
4916b3cf3223SMatthew G. Knepley PetscErrorCode DMGetRegionNumDS(DM dm, PetscInt num, DMLabel *label, IS *fields, PetscDS *ds)
4917e5e52638SMatthew G. Knepley {
4918e5e52638SMatthew G. Knepley   PetscInt       Nds;
4919e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4920e5e52638SMatthew G. Knepley 
4921e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4922e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4923e5e52638SMatthew G. Knepley   ierr = DMGetNumDS(dm, &Nds);CHKERRQ(ierr);
4924e5e52638SMatthew 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);
4925e5e52638SMatthew G. Knepley   if (label) {
4926e5e52638SMatthew G. Knepley     PetscValidPointer(label, 3);
4927e5e52638SMatthew G. Knepley     *label = dm->probs[num].label;
4928e5e52638SMatthew G. Knepley   }
4929b3cf3223SMatthew G. Knepley   if (fields) {
4930b3cf3223SMatthew G. Knepley     PetscValidPointer(fields, 4);
4931b3cf3223SMatthew G. Knepley     *fields = dm->probs[num].fields;
4932b3cf3223SMatthew G. Knepley   }
4933e5e52638SMatthew G. Knepley   if (ds) {
4934b3cf3223SMatthew G. Knepley     PetscValidPointer(ds, 5);
4935e5e52638SMatthew G. Knepley     *ds = dm->probs[num].ds;
4936e5e52638SMatthew G. Knepley   }
4937e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4938e5e52638SMatthew G. Knepley }
4939e5e52638SMatthew G. Knepley 
4940e5e52638SMatthew G. Knepley /*@
4941e5e52638SMatthew G. Knepley   DMSetRegionDS - Set the PetscDS for a given mesh region, defined by a DMLabel
4942e5e52638SMatthew G. Knepley 
4943*d083f849SBarry Smith   Collective on dm
4944e5e52638SMatthew G. Knepley 
4945e5e52638SMatthew G. Knepley   Input Parameters:
4946e5e52638SMatthew G. Knepley + dm     - The DM
4947e5e52638SMatthew G. Knepley . label  - The DMLabel defining the mesh region, or NULL for the entire mesh
4948b3cf3223SMatthew G. Knepley . fields - The IS containing the DM field numbers for the fields in this DS, or NULL for all fields
4949e5e52638SMatthew G. Knepley - prob   - The PetscDS defined on the given cell
4950e5e52638SMatthew G. Knepley 
4951b3cf3223SMatthew 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,
4952b3cf3223SMatthew G. Knepley   the fields argument is ignored.
4953e5e52638SMatthew G. Knepley 
4954e5e52638SMatthew G. Knepley   Level: advanced
4955e5e52638SMatthew G. Knepley 
4956e5e52638SMatthew G. Knepley .seealso: DMGetRegionDS(), DMGetDS(), DMGetCellDS()
4957e5e52638SMatthew G. Knepley @*/
4958b3cf3223SMatthew G. Knepley PetscErrorCode DMSetRegionDS(DM dm, DMLabel label, IS fields, PetscDS ds)
4959e5e52638SMatthew G. Knepley {
4960e5e52638SMatthew G. Knepley   PetscInt       Nds = dm->Nds, s;
4961e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
4962e5e52638SMatthew G. Knepley 
4963e5e52638SMatthew G. Knepley   PetscFunctionBegin;
4964e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4965e5e52638SMatthew G. Knepley   if (label) PetscValidHeaderSpecific(label, DMLABEL_CLASSID, 2);
4966e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(ds, PETSCDS_CLASSID, 3);
4967e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
4968e5e52638SMatthew G. Knepley     if (dm->probs[s].label == label) {
4969b3cf3223SMatthew G. Knepley       ierr = PetscDSDestroy(&dm->probs[s].ds);CHKERRQ(ierr);
4970e5e52638SMatthew G. Knepley       dm->probs[s].ds = ds;
4971e5e52638SMatthew G. Knepley       PetscFunctionReturn(0);
4972e5e52638SMatthew G. Knepley     }
4973e5e52638SMatthew G. Knepley   }
49741b5e6740SSatish Balay   ierr = DMDSEnlarge_Static(dm, Nds+1);CHKERRQ(ierr);
4975e5e52638SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) label);CHKERRQ(ierr);
4976b3cf3223SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) fields);CHKERRQ(ierr);
4977e5e52638SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) ds);CHKERRQ(ierr);
4978e5e52638SMatthew G. Knepley   if (!label) {
4979e5e52638SMatthew G. Knepley     /* Put the NULL label at the front, so it is returned as the default */
4980e5e52638SMatthew G. Knepley     for (s = Nds-1; s >=0; --s) dm->probs[s+1] = dm->probs[s];
4981e5e52638SMatthew G. Knepley     Nds = 0;
4982e5e52638SMatthew G. Knepley   }
4983e5e52638SMatthew G. Knepley   dm->probs[Nds].label  = label;
4984b3cf3223SMatthew G. Knepley   dm->probs[Nds].fields = fields;
4985e5e52638SMatthew G. Knepley   dm->probs[Nds].ds     = ds;
4986e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
4987e5e52638SMatthew G. Knepley }
4988e5e52638SMatthew G. Knepley 
4989e5e52638SMatthew G. Knepley /*@
4990e5e52638SMatthew G. Knepley   DMCreateDS - Create the discrete systems for the DM based upon the fields added to the DM
4991e5e52638SMatthew G. Knepley 
4992*d083f849SBarry Smith   Collective on dm
4993e5e52638SMatthew G. Knepley 
4994e5e52638SMatthew G. Knepley   Input Parameter:
4995e5e52638SMatthew G. Knepley . dm - The DM
4996e5e52638SMatthew G. Knepley 
4997e5e52638SMatthew G. Knepley   Note: If the label has a DS defined, it will be replaced. Otherwise, it will be added to the DM.
4998e5e52638SMatthew G. Knepley 
4999e5e52638SMatthew G. Knepley   Level: intermediate
5000e5e52638SMatthew G. Knepley 
5001e5e52638SMatthew G. Knepley .seealso: DMSetField, DMAddField(), DMGetDS(), DMGetCellDS(), DMGetRegionDS(), DMSetRegionDS()
5002e5e52638SMatthew G. Knepley @*/
5003e5e52638SMatthew G. Knepley PetscErrorCode DMCreateDS(DM dm)
5004e5e52638SMatthew G. Knepley {
5005e5e52638SMatthew G. Knepley   MPI_Comm       comm;
5006e5e52638SMatthew G. Knepley   PetscDS        prob, probh = NULL;
5007b3cf3223SMatthew G. Knepley   PetscInt       dimEmbed, Nf = dm->Nf, f, s, field = 0, fieldh = 0;
5008e5e52638SMatthew G. Knepley   PetscBool      doSetup = PETSC_TRUE;
5009e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
5010e5e52638SMatthew G. Knepley 
5011e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5012e5e52638SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5013e5e52638SMatthew G. Knepley   if (!dm->fields) PetscFunctionReturn(0);
5014e5e52638SMatthew G. Knepley   /* Can only handle two label cases right now:
5015e5e52638SMatthew G. Knepley    1) NULL
5016e5e52638SMatthew G. Knepley    2) Hybrid cells
5017e5e52638SMatthew G. Knepley   */
5018e5e52638SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
5019e5e52638SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
5020e5e52638SMatthew G. Knepley   /* Create default DS */
5021b3cf3223SMatthew G. Knepley   ierr = DMGetRegionDS(dm, NULL, NULL, &prob);CHKERRQ(ierr);
50222df9ee95SMatthew G. Knepley   if (!prob) {
5023b3cf3223SMatthew G. Knepley     IS        fields;
5024b3cf3223SMatthew G. Knepley     PetscInt *fld, nf;
5025b3cf3223SMatthew G. Knepley 
5026b3cf3223SMatthew G. Knepley     for (f = 0, nf = 0; f < Nf; ++f) if (!dm->fields[f].label) ++nf;
5027b3cf3223SMatthew G. Knepley     ierr = PetscMalloc1(nf, &fld);CHKERRQ(ierr);
5028b3cf3223SMatthew G. Knepley     for (f = 0, nf = 0; f < Nf; ++f) if (!dm->fields[f].label) fld[nf++] = f;
502988f0c812SMatthew G. Knepley     ierr = ISCreate(PETSC_COMM_SELF, &fields);CHKERRQ(ierr);
503088f0c812SMatthew G. Knepley     ierr = PetscObjectSetOptionsPrefix((PetscObject) fields, "dm_fields_");CHKERRQ(ierr);
503188f0c812SMatthew G. Knepley     ierr = ISSetType(fields, ISGENERAL);CHKERRQ(ierr);
503288f0c812SMatthew G. Knepley     ierr = ISGeneralSetIndices(fields, nf, fld, PETSC_OWN_POINTER);CHKERRQ(ierr);
503388f0c812SMatthew G. Knepley 
50342df9ee95SMatthew G. Knepley     ierr = PetscDSCreate(comm, &prob);CHKERRQ(ierr);
5035b3cf3223SMatthew G. Knepley     ierr = DMSetRegionDS(dm, NULL, fields, prob);CHKERRQ(ierr);
50362df9ee95SMatthew G. Knepley     ierr = PetscDSDestroy(&prob);CHKERRQ(ierr);
5037b3cf3223SMatthew G. Knepley     ierr = ISDestroy(&fields);CHKERRQ(ierr);
5038b3cf3223SMatthew G. Knepley     ierr = DMGetRegionDS(dm, NULL, NULL, &prob);CHKERRQ(ierr);
50392df9ee95SMatthew G. Knepley   }
5040e5e52638SMatthew G. Knepley   ierr = PetscDSSetCoordinateDimension(prob, dimEmbed);CHKERRQ(ierr);
5041e5e52638SMatthew G. Knepley   /* Optionally create hybrid DS */
5042b3cf3223SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
5043e5e52638SMatthew G. Knepley     DMLabel  label = dm->fields[f].label;
5044e5e52638SMatthew G. Knepley     PetscInt lStart, lEnd;
5045e5e52638SMatthew G. Knepley 
5046e5e52638SMatthew G. Knepley     if (label) {
50470122748bSMatthew G. Knepley       DM       plex;
50480122748bSMatthew G. Knepley       PetscInt depth, pMax[4];
50490122748bSMatthew G. Knepley 
50500122748bSMatthew G. Knepley       ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
50510122748bSMatthew G. Knepley       ierr = DMPlexGetDepth(plex, &depth);CHKERRQ(ierr);
50520122748bSMatthew 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);
50530122748bSMatthew G. Knepley       ierr = DMDestroy(&plex);CHKERRQ(ierr);
50540122748bSMatthew G. Knepley 
5055e5e52638SMatthew G. Knepley       ierr = DMLabelGetBounds(label, &lStart, &lEnd);CHKERRQ(ierr);
5056e5e52638SMatthew G. Knepley       if (lStart < pMax[depth]) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_SUP, "Only support labels over hybrid cells right now");
5057e5e52638SMatthew G. Knepley       ierr = PetscDSCreate(comm, &probh);CHKERRQ(ierr);
5058b3cf3223SMatthew G. Knepley       ierr = DMSetRegionDS(dm, label, NULL, probh);CHKERRQ(ierr);
5059e5e52638SMatthew G. Knepley       ierr = PetscDSSetHybrid(probh, PETSC_TRUE);CHKERRQ(ierr);
5060e5e52638SMatthew G. Knepley       ierr = PetscDSSetCoordinateDimension(probh, dimEmbed);CHKERRQ(ierr);
5061e5e52638SMatthew G. Knepley       break;
5062e5e52638SMatthew G. Knepley     }
5063e5e52638SMatthew G. Knepley   }
5064e5e52638SMatthew G. Knepley   /* Set fields in DSes */
5065b3cf3223SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
5066e5e52638SMatthew G. Knepley     DMLabel     label = dm->fields[f].label;
5067e5e52638SMatthew G. Knepley     PetscObject disc  = dm->fields[f].disc;
5068e5e52638SMatthew G. Knepley 
5069e5e52638SMatthew G. Knepley     if (!label) {
5070e5e52638SMatthew G. Knepley       ierr = PetscDSSetDiscretization(prob,  field++,  disc);CHKERRQ(ierr);
5071e5e52638SMatthew G. Knepley       if (probh) {
5072e5e52638SMatthew G. Knepley         PetscFE subfe;
5073e5e52638SMatthew G. Knepley 
5074e5e52638SMatthew G. Knepley         ierr = PetscFEGetHeightSubspace((PetscFE) disc, 1, &subfe);CHKERRQ(ierr);
5075e5e52638SMatthew G. Knepley         ierr = PetscDSSetDiscretization(probh, fieldh++, (PetscObject) subfe);CHKERRQ(ierr);
5076e5e52638SMatthew G. Knepley       }
5077e5e52638SMatthew G. Knepley     } else {
5078e5e52638SMatthew G. Knepley       ierr = PetscDSSetDiscretization(probh, fieldh++, disc);CHKERRQ(ierr);
5079e5e52638SMatthew G. Knepley     }
5080e5e52638SMatthew G. Knepley     /* We allow people to have placeholder fields and construct the Section by hand */
5081e5e52638SMatthew G. Knepley     {
5082e5e52638SMatthew G. Knepley       PetscClassId id;
5083e5e52638SMatthew G. Knepley 
5084e5e52638SMatthew G. Knepley       ierr = PetscObjectGetClassId(disc, &id);CHKERRQ(ierr);
5085e5e52638SMatthew G. Knepley       if ((id != PETSCFE_CLASSID) && (id != PETSCFV_CLASSID)) doSetup = PETSC_FALSE;
5086e5e52638SMatthew G. Knepley     }
5087e5e52638SMatthew G. Knepley   }
5088e5e52638SMatthew G. Knepley   ierr = PetscDSDestroy(&probh);CHKERRQ(ierr);
5089e5e52638SMatthew G. Knepley   /* Setup DSes */
5090e5e52638SMatthew G. Knepley   if (doSetup) {
5091e5e52638SMatthew G. Knepley     for (s = 0; s < dm->Nds; ++s) {ierr = PetscDSSetUp(dm->probs[s].ds);CHKERRQ(ierr);}
5092e5e52638SMatthew G. Knepley   }
5093e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
5094e5e52638SMatthew G. Knepley }
5095e5e52638SMatthew G. Knepley 
5096e5e52638SMatthew G. Knepley /*@
5097e5e52638SMatthew G. Knepley   DMCopyDS - Copy the discrete systems for the DM into another DM
5098e5e52638SMatthew G. Knepley 
5099*d083f849SBarry Smith   Collective on dm
5100e5e52638SMatthew G. Knepley 
5101e5e52638SMatthew G. Knepley   Input Parameter:
5102e5e52638SMatthew G. Knepley . dm - The DM
5103e5e52638SMatthew G. Knepley 
5104e5e52638SMatthew G. Knepley   Output Parameter:
5105e5e52638SMatthew G. Knepley . newdm - The DM
5106e5e52638SMatthew G. Knepley 
5107e5e52638SMatthew G. Knepley   Level: advanced
5108e5e52638SMatthew G. Knepley 
5109e5e52638SMatthew G. Knepley .seealso: DMCopyFields(), DMAddField(), DMGetDS(), DMGetCellDS(), DMGetRegionDS(), DMSetRegionDS()
5110e5e52638SMatthew G. Knepley @*/
5111e5e52638SMatthew G. Knepley PetscErrorCode DMCopyDS(DM dm, DM newdm)
5112e5e52638SMatthew G. Knepley {
5113e5e52638SMatthew G. Knepley   PetscInt       Nds, s;
5114e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
5115e5e52638SMatthew G. Knepley 
5116e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5117e5e52638SMatthew G. Knepley   if (dm == newdm) PetscFunctionReturn(0);
5118e5e52638SMatthew G. Knepley   ierr = DMGetNumDS(dm, &Nds);CHKERRQ(ierr);
5119e5e52638SMatthew G. Knepley   ierr = DMClearDS(newdm);CHKERRQ(ierr);
5120e5e52638SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
5121e5e52638SMatthew G. Knepley     DMLabel label;
5122b3cf3223SMatthew G. Knepley     IS      fields;
5123e5e52638SMatthew G. Knepley     PetscDS ds;
5124e5e52638SMatthew G. Knepley 
5125b3cf3223SMatthew G. Knepley     ierr = DMGetRegionNumDS(dm, s, &label, &fields, &ds);CHKERRQ(ierr);
5126b3cf3223SMatthew G. Knepley     ierr = DMSetRegionDS(newdm, label, fields, ds);CHKERRQ(ierr);
5127e5e52638SMatthew G. Knepley   }
5128e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
5129e5e52638SMatthew G. Knepley }
5130e5e52638SMatthew G. Knepley 
5131e5e52638SMatthew G. Knepley /*@
5132e5e52638SMatthew G. Knepley   DMCopyDisc - Copy the fields and discrete systems for the DM into another DM
5133e5e52638SMatthew G. Knepley 
5134*d083f849SBarry Smith   Collective on dm
5135e5e52638SMatthew G. Knepley 
5136e5e52638SMatthew G. Knepley   Input Parameter:
5137e5e52638SMatthew G. Knepley . dm - The DM
5138e5e52638SMatthew G. Knepley 
5139e5e52638SMatthew G. Knepley   Output Parameter:
5140e5e52638SMatthew G. Knepley . newdm - The DM
5141e5e52638SMatthew G. Knepley 
5142e5e52638SMatthew G. Knepley   Level: advanced
5143e5e52638SMatthew G. Knepley 
5144e5e52638SMatthew G. Knepley .seealso: DMCopyFields(), DMCopyDS()
5145e5e52638SMatthew G. Knepley @*/
5146e5e52638SMatthew G. Knepley PetscErrorCode DMCopyDisc(DM dm, DM newdm)
5147e5e52638SMatthew G. Knepley {
5148e5e52638SMatthew G. Knepley   PetscErrorCode ierr;
5149e5e52638SMatthew G. Knepley 
5150e5e52638SMatthew G. Knepley   PetscFunctionBegin;
5151e5e52638SMatthew G. Knepley   if (dm == newdm) PetscFunctionReturn(0);
5152e5e52638SMatthew G. Knepley   ierr = DMCopyFields(dm, newdm);CHKERRQ(ierr);
5153e5e52638SMatthew G. Knepley   ierr = DMCopyDS(dm, newdm);CHKERRQ(ierr);
5154e5e52638SMatthew G. Knepley   PetscFunctionReturn(0);
5155e5e52638SMatthew G. Knepley }
5156e5e52638SMatthew G. Knepley 
5157b64e0483SPeter Brune PetscErrorCode DMRestrictHook_Coordinates(DM dm,DM dmc,void *ctx)
5158b64e0483SPeter Brune {
5159b64e0483SPeter Brune   DM dm_coord,dmc_coord;
5160b64e0483SPeter Brune   PetscErrorCode ierr;
5161b64e0483SPeter Brune   Vec coords,ccoords;
51626dbf9973SLawrence Mitchell   Mat inject;
5163b64e0483SPeter Brune   PetscFunctionBegin;
5164b64e0483SPeter Brune   ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr);
5165b64e0483SPeter Brune   ierr = DMGetCoordinateDM(dmc,&dmc_coord);CHKERRQ(ierr);
5166b64e0483SPeter Brune   ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr);
5167b64e0483SPeter Brune   ierr = DMGetCoordinates(dmc,&ccoords);CHKERRQ(ierr);
5168b64e0483SPeter Brune   if (coords && !ccoords) {
5169b64e0483SPeter Brune     ierr = DMCreateGlobalVector(dmc_coord,&ccoords);CHKERRQ(ierr);
51706668ed41SLisandro Dalcin     ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr);
51716dbf9973SLawrence Mitchell     ierr = DMCreateInjection(dmc_coord,dm_coord,&inject);CHKERRQ(ierr);
51722adcf181SLawrence Mitchell     ierr = MatRestrict(inject,coords,ccoords);CHKERRQ(ierr);
51736dbf9973SLawrence Mitchell     ierr = MatDestroy(&inject);CHKERRQ(ierr);
5174b64e0483SPeter Brune     ierr = DMSetCoordinates(dmc,ccoords);CHKERRQ(ierr);
5175b64e0483SPeter Brune     ierr = VecDestroy(&ccoords);CHKERRQ(ierr);
5176b64e0483SPeter Brune   }
5177b64e0483SPeter Brune   PetscFunctionReturn(0);
5178b64e0483SPeter Brune }
5179b64e0483SPeter Brune 
518003dadc2fSPeter Brune static PetscErrorCode DMSubDomainHook_Coordinates(DM dm,DM subdm,void *ctx)
518103dadc2fSPeter Brune {
518203dadc2fSPeter Brune   DM dm_coord,subdm_coord;
518303dadc2fSPeter Brune   PetscErrorCode ierr;
518403dadc2fSPeter Brune   Vec coords,ccoords,clcoords;
518503dadc2fSPeter Brune   VecScatter *scat_i,*scat_g;
518603dadc2fSPeter Brune   PetscFunctionBegin;
518703dadc2fSPeter Brune   ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr);
518803dadc2fSPeter Brune   ierr = DMGetCoordinateDM(subdm,&subdm_coord);CHKERRQ(ierr);
518903dadc2fSPeter Brune   ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr);
519003dadc2fSPeter Brune   ierr = DMGetCoordinates(subdm,&ccoords);CHKERRQ(ierr);
519103dadc2fSPeter Brune   if (coords && !ccoords) {
519203dadc2fSPeter Brune     ierr = DMCreateGlobalVector(subdm_coord,&ccoords);CHKERRQ(ierr);
51936668ed41SLisandro Dalcin     ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr);
519403dadc2fSPeter Brune     ierr = DMCreateLocalVector(subdm_coord,&clcoords);CHKERRQ(ierr);
519524640c55SToby Isaac     ierr = PetscObjectSetName((PetscObject)clcoords,"coordinates");CHKERRQ(ierr);
519603dadc2fSPeter Brune     ierr = DMCreateDomainDecompositionScatters(dm_coord,1,&subdm_coord,NULL,&scat_i,&scat_g);CHKERRQ(ierr);
519703dadc2fSPeter Brune     ierr = VecScatterBegin(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
519803dadc2fSPeter Brune     ierr = VecScatterBegin(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
519903dadc2fSPeter Brune     ierr = VecScatterEnd(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
520003dadc2fSPeter Brune     ierr = VecScatterEnd(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
520103dadc2fSPeter Brune     ierr = DMSetCoordinates(subdm,ccoords);CHKERRQ(ierr);
520203dadc2fSPeter Brune     ierr = DMSetCoordinatesLocal(subdm,clcoords);CHKERRQ(ierr);
520303dadc2fSPeter Brune     ierr = VecScatterDestroy(&scat_i[0]);CHKERRQ(ierr);
520403dadc2fSPeter Brune     ierr = VecScatterDestroy(&scat_g[0]);CHKERRQ(ierr);
520503dadc2fSPeter Brune     ierr = VecDestroy(&ccoords);CHKERRQ(ierr);
520603dadc2fSPeter Brune     ierr = VecDestroy(&clcoords);CHKERRQ(ierr);
520703dadc2fSPeter Brune     ierr = PetscFree(scat_i);CHKERRQ(ierr);
520803dadc2fSPeter Brune     ierr = PetscFree(scat_g);CHKERRQ(ierr);
520903dadc2fSPeter Brune   }
521003dadc2fSPeter Brune   PetscFunctionReturn(0);
521103dadc2fSPeter Brune }
521203dadc2fSPeter Brune 
5213c73cfb54SMatthew G. Knepley /*@
5214c73cfb54SMatthew G. Knepley   DMGetDimension - Return the topological dimension of the DM
5215c73cfb54SMatthew G. Knepley 
5216c73cfb54SMatthew G. Knepley   Not collective
5217c73cfb54SMatthew G. Knepley 
5218c73cfb54SMatthew G. Knepley   Input Parameter:
5219c73cfb54SMatthew G. Knepley . dm - The DM
5220c73cfb54SMatthew G. Knepley 
5221c73cfb54SMatthew G. Knepley   Output Parameter:
5222c73cfb54SMatthew G. Knepley . dim - The topological dimension
5223c73cfb54SMatthew G. Knepley 
5224c73cfb54SMatthew G. Knepley   Level: beginner
5225c73cfb54SMatthew G. Knepley 
5226c73cfb54SMatthew G. Knepley .seealso: DMSetDimension(), DMCreate()
5227c73cfb54SMatthew G. Knepley @*/
5228c73cfb54SMatthew G. Knepley PetscErrorCode DMGetDimension(DM dm, PetscInt *dim)
5229c73cfb54SMatthew G. Knepley {
5230c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
5231c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5232c73cfb54SMatthew G. Knepley   PetscValidPointer(dim, 2);
5233c73cfb54SMatthew G. Knepley   *dim = dm->dim;
5234c73cfb54SMatthew G. Knepley   PetscFunctionReturn(0);
5235c73cfb54SMatthew G. Knepley }
5236c73cfb54SMatthew G. Knepley 
5237c73cfb54SMatthew G. Knepley /*@
5238c73cfb54SMatthew G. Knepley   DMSetDimension - Set the topological dimension of the DM
5239c73cfb54SMatthew G. Knepley 
5240c73cfb54SMatthew G. Knepley   Collective on dm
5241c73cfb54SMatthew G. Knepley 
5242c73cfb54SMatthew G. Knepley   Input Parameters:
5243c73cfb54SMatthew G. Knepley + dm - The DM
5244c73cfb54SMatthew G. Knepley - dim - The topological dimension
5245c73cfb54SMatthew G. Knepley 
5246c73cfb54SMatthew G. Knepley   Level: beginner
5247c73cfb54SMatthew G. Knepley 
5248c73cfb54SMatthew G. Knepley .seealso: DMGetDimension(), DMCreate()
5249c73cfb54SMatthew G. Knepley @*/
5250c73cfb54SMatthew G. Knepley PetscErrorCode DMSetDimension(DM dm, PetscInt dim)
5251c73cfb54SMatthew G. Knepley {
5252e5e52638SMatthew G. Knepley   PetscDS        ds;
5253f17e8794SMatthew G. Knepley   PetscErrorCode ierr;
5254f17e8794SMatthew G. Knepley 
5255c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
5256c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5257c73cfb54SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, dim, 2);
5258c73cfb54SMatthew G. Knepley   dm->dim = dim;
5259e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
5260e5e52638SMatthew G. Knepley   if (ds->dimEmbed < 0) {ierr = PetscDSSetCoordinateDimension(ds, dm->dim);CHKERRQ(ierr);}
5261c73cfb54SMatthew G. Knepley   PetscFunctionReturn(0);
5262c73cfb54SMatthew G. Knepley }
5263c73cfb54SMatthew G. Knepley 
5264793f3fe5SMatthew G. Knepley /*@
5265793f3fe5SMatthew G. Knepley   DMGetDimPoints - Get the half-open interval for all points of a given dimension
5266793f3fe5SMatthew G. Knepley 
5267*d083f849SBarry Smith   Collective on dm
5268793f3fe5SMatthew G. Knepley 
5269793f3fe5SMatthew G. Knepley   Input Parameters:
5270793f3fe5SMatthew G. Knepley + dm - the DM
5271793f3fe5SMatthew G. Knepley - dim - the dimension
5272793f3fe5SMatthew G. Knepley 
5273793f3fe5SMatthew G. Knepley   Output Parameters:
5274793f3fe5SMatthew G. Knepley + pStart - The first point of the given dimension
5275aa049354SPatrick Sanan - pEnd - The first point following points of the given dimension
5276793f3fe5SMatthew G. Knepley 
5277793f3fe5SMatthew G. Knepley   Note:
5278793f3fe5SMatthew G. Knepley   The points are vertices in the Hasse diagram encoding the topology. This is explained in
5279a8d69d7bSBarry Smith   https://arxiv.org/abs/0908.4427. If no points exist of this dimension in the storage scheme,
5280793f3fe5SMatthew G. Knepley   then the interval is empty.
5281793f3fe5SMatthew G. Knepley 
5282793f3fe5SMatthew G. Knepley   Level: intermediate
5283793f3fe5SMatthew G. Knepley 
5284793f3fe5SMatthew G. Knepley .seealso: DMPLEX, DMPlexGetDepthStratum(), DMPlexGetHeightStratum()
5285793f3fe5SMatthew G. Knepley @*/
5286793f3fe5SMatthew G. Knepley PetscErrorCode DMGetDimPoints(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd)
5287793f3fe5SMatthew G. Knepley {
5288793f3fe5SMatthew G. Knepley   PetscInt       d;
5289793f3fe5SMatthew G. Knepley   PetscErrorCode ierr;
5290793f3fe5SMatthew G. Knepley 
5291793f3fe5SMatthew G. Knepley   PetscFunctionBegin;
5292793f3fe5SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5293793f3fe5SMatthew G. Knepley   ierr = DMGetDimension(dm, &d);CHKERRQ(ierr);
5294793f3fe5SMatthew G. Knepley   if ((dim < 0) || (dim > d)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid dimension %d 1", dim, d);
5295793f3fe5SMatthew G. Knepley   ierr = (*dm->ops->getdimpoints)(dm, dim, pStart, pEnd);CHKERRQ(ierr);
5296793f3fe5SMatthew G. Knepley   PetscFunctionReturn(0);
5297793f3fe5SMatthew G. Knepley }
5298793f3fe5SMatthew G. Knepley 
52996636e97aSMatthew G Knepley /*@
53006636e97aSMatthew G Knepley   DMSetCoordinates - Sets into the DM a global vector that holds the coordinates
53016636e97aSMatthew G Knepley 
5302*d083f849SBarry Smith   Collective on dm
53036636e97aSMatthew G Knepley 
53046636e97aSMatthew G Knepley   Input Parameters:
53056636e97aSMatthew G Knepley + dm - the DM
53066636e97aSMatthew G Knepley - c - coordinate vector
53076636e97aSMatthew G Knepley 
53082dd40e9bSPatrick Sanan   Notes:
53092dd40e9bSPatrick Sanan   The coordinates do include those for ghost points, which are in the local vector.
53102dd40e9bSPatrick Sanan 
53112dd40e9bSPatrick Sanan   The vector c should be destroyed by the caller.
53126636e97aSMatthew G Knepley 
53136636e97aSMatthew G Knepley   Level: intermediate
53146636e97aSMatthew G Knepley 
53152dd40e9bSPatrick Sanan .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM()
53166636e97aSMatthew G Knepley @*/
53176636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinates(DM dm, Vec c)
53186636e97aSMatthew G Knepley {
53196636e97aSMatthew G Knepley   PetscErrorCode ierr;
53206636e97aSMatthew G Knepley 
53216636e97aSMatthew G Knepley   PetscFunctionBegin;
53226636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
53236636e97aSMatthew G Knepley   PetscValidHeaderSpecific(c,VEC_CLASSID,2);
53246636e97aSMatthew G Knepley   ierr            = PetscObjectReference((PetscObject) c);CHKERRQ(ierr);
53256636e97aSMatthew G Knepley   ierr            = VecDestroy(&dm->coordinates);CHKERRQ(ierr);
53266636e97aSMatthew G Knepley   dm->coordinates = c;
53276636e97aSMatthew G Knepley   ierr            = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr);
5328b64e0483SPeter Brune   ierr            = DMCoarsenHookAdd(dm,DMRestrictHook_Coordinates,NULL,NULL);CHKERRQ(ierr);
532903dadc2fSPeter Brune   ierr            = DMSubDomainHookAdd(dm,DMSubDomainHook_Coordinates,NULL,NULL);CHKERRQ(ierr);
53306636e97aSMatthew G Knepley   PetscFunctionReturn(0);
53316636e97aSMatthew G Knepley }
53326636e97aSMatthew G Knepley 
53336636e97aSMatthew G Knepley /*@
53346636e97aSMatthew G Knepley   DMSetCoordinatesLocal - Sets into the DM a local vector that holds the coordinates
53356636e97aSMatthew G Knepley 
53367058e716SVaclav Hapla   Not collective
53376636e97aSMatthew G Knepley 
53386636e97aSMatthew G Knepley    Input Parameters:
53396636e97aSMatthew G Knepley +  dm - the DM
53406636e97aSMatthew G Knepley -  c - coordinate vector
53416636e97aSMatthew G Knepley 
53422dd40e9bSPatrick Sanan   Notes:
53436636e97aSMatthew G Knepley   The coordinates of ghost points can be set using DMSetCoordinates()
53446636e97aSMatthew G Knepley   followed by DMGetCoordinatesLocal(). This is intended to enable the
53456636e97aSMatthew G Knepley   setting of ghost coordinates outside of the domain.
53466636e97aSMatthew G Knepley 
53472dd40e9bSPatrick Sanan   The vector c should be destroyed by the caller.
53482dd40e9bSPatrick Sanan 
53496636e97aSMatthew G Knepley   Level: intermediate
53506636e97aSMatthew G Knepley 
53516636e97aSMatthew G Knepley .seealso: DMGetCoordinatesLocal(), DMSetCoordinates(), DMGetCoordinates(), DMGetCoordinateDM()
53526636e97aSMatthew G Knepley @*/
53536636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinatesLocal(DM dm, Vec c)
53546636e97aSMatthew G Knepley {
53556636e97aSMatthew G Knepley   PetscErrorCode ierr;
53566636e97aSMatthew G Knepley 
53576636e97aSMatthew G Knepley   PetscFunctionBegin;
53586636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
53596636e97aSMatthew G Knepley   PetscValidHeaderSpecific(c,VEC_CLASSID,2);
53606636e97aSMatthew G Knepley   ierr = PetscObjectReference((PetscObject) c);CHKERRQ(ierr);
53616636e97aSMatthew G Knepley   ierr = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr);
53628865f1eaSKarl Rupp 
53636636e97aSMatthew G Knepley   dm->coordinatesLocal = c;
53648865f1eaSKarl Rupp 
53656636e97aSMatthew G Knepley   ierr = VecDestroy(&dm->coordinates);CHKERRQ(ierr);
53666636e97aSMatthew G Knepley   PetscFunctionReturn(0);
53676636e97aSMatthew G Knepley }
53686636e97aSMatthew G Knepley 
53696636e97aSMatthew G Knepley /*@
53706636e97aSMatthew G Knepley   DMGetCoordinates - Gets a global vector with the coordinates associated with the DM.
53716636e97aSMatthew G Knepley 
5372*d083f849SBarry Smith   Collective on dm
53736636e97aSMatthew G Knepley 
53746636e97aSMatthew G Knepley   Input Parameter:
53756636e97aSMatthew G Knepley . dm - the DM
53766636e97aSMatthew G Knepley 
53776636e97aSMatthew G Knepley   Output Parameter:
53786636e97aSMatthew G Knepley . c - global coordinate vector
53796636e97aSMatthew G Knepley 
53806636e97aSMatthew G Knepley   Note:
53816636e97aSMatthew G Knepley   This is a borrowed reference, so the user should NOT destroy this vector
53826636e97aSMatthew G Knepley 
53836636e97aSMatthew G Knepley   Each process has only the local coordinates (does NOT have the ghost coordinates).
53846636e97aSMatthew G Knepley 
53856636e97aSMatthew G Knepley   For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...)
53866636e97aSMatthew G Knepley   and (x_0,y_0,z_0,x_1,y_1,z_1...)
53876636e97aSMatthew G Knepley 
53886636e97aSMatthew G Knepley   Level: intermediate
53896636e97aSMatthew G Knepley 
53906636e97aSMatthew G Knepley .seealso: DMSetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM()
53916636e97aSMatthew G Knepley @*/
53926636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinates(DM dm, Vec *c)
53936636e97aSMatthew G Knepley {
53946636e97aSMatthew G Knepley   PetscErrorCode ierr;
53956636e97aSMatthew G Knepley 
53966636e97aSMatthew G Knepley   PetscFunctionBegin;
53976636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
53986636e97aSMatthew G Knepley   PetscValidPointer(c,2);
53991f588964SMatthew G Knepley   if (!dm->coordinates && dm->coordinatesLocal) {
54000298fd71SBarry Smith     DM        cdm = NULL;
54011970a576SMatthew G. Knepley     PetscBool localized;
54026636e97aSMatthew G Knepley 
54036636e97aSMatthew G Knepley     ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
54046636e97aSMatthew G Knepley     ierr = DMCreateGlobalVector(cdm, &dm->coordinates);CHKERRQ(ierr);
54051970a576SMatthew G. Knepley     ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr);
54061970a576SMatthew G. Knepley     /* Block size is not correctly set by CreateGlobalVector() if coordinates are localized */
54071970a576SMatthew G. Knepley     if (localized) {
54081970a576SMatthew G. Knepley       PetscInt cdim;
54091970a576SMatthew G. Knepley 
54101970a576SMatthew G. Knepley       ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
54111970a576SMatthew G. Knepley       ierr = VecSetBlockSize(dm->coordinates, cdim);CHKERRQ(ierr);
54121970a576SMatthew G. Knepley     }
54136636e97aSMatthew G Knepley     ierr = PetscObjectSetName((PetscObject) dm->coordinates, "coordinates");CHKERRQ(ierr);
54146636e97aSMatthew G Knepley     ierr = DMLocalToGlobalBegin(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr);
54156636e97aSMatthew G Knepley     ierr = DMLocalToGlobalEnd(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr);
54166636e97aSMatthew G Knepley   }
54176636e97aSMatthew G Knepley   *c = dm->coordinates;
54186636e97aSMatthew G Knepley   PetscFunctionReturn(0);
54196636e97aSMatthew G Knepley }
54206636e97aSMatthew G Knepley 
54216636e97aSMatthew G Knepley /*@
542281e9a530SVaclav Hapla   DMGetCoordinatesLocalSetUp - Prepares a local vector of coordinates, so that DMGetCoordinatesLocalNoncollective() can be used as non-collective afterwards.
542381e9a530SVaclav Hapla 
5424*d083f849SBarry Smith   Collective on dm
542581e9a530SVaclav Hapla 
542681e9a530SVaclav Hapla   Input Parameter:
542781e9a530SVaclav Hapla . dm - the DM
542881e9a530SVaclav Hapla 
542981e9a530SVaclav Hapla   Level: advanced
543081e9a530SVaclav Hapla 
543181e9a530SVaclav Hapla .seealso: DMGetCoordinatesLocalNoncollective()
543281e9a530SVaclav Hapla @*/
543381e9a530SVaclav Hapla PetscErrorCode DMGetCoordinatesLocalSetUp(DM dm)
543481e9a530SVaclav Hapla {
543581e9a530SVaclav Hapla   PetscErrorCode ierr;
543681e9a530SVaclav Hapla 
543781e9a530SVaclav Hapla   PetscFunctionBegin;
543881e9a530SVaclav Hapla   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
543981e9a530SVaclav Hapla   if (!dm->coordinatesLocal && dm->coordinates) {
54401970a576SMatthew G. Knepley     DM        cdm = NULL;
54411970a576SMatthew G. Knepley     PetscBool localized;
54421970a576SMatthew G. Knepley 
544381e9a530SVaclav Hapla     ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
544481e9a530SVaclav Hapla     ierr = DMCreateLocalVector(cdm, &dm->coordinatesLocal);CHKERRQ(ierr);
54451970a576SMatthew G. Knepley     ierr = DMGetCoordinatesLocalized(dm, &localized);CHKERRQ(ierr);
54461970a576SMatthew G. Knepley     /* Block size is not correctly set by CreateLocalVector() if coordinates are localized */
54471970a576SMatthew G. Knepley     if (localized) {
54481970a576SMatthew G. Knepley       PetscInt cdim;
54491970a576SMatthew G. Knepley 
54501970a576SMatthew G. Knepley       ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
54511970a576SMatthew G. Knepley       ierr = VecSetBlockSize(dm->coordinates, cdim);CHKERRQ(ierr);
54521970a576SMatthew G. Knepley     }
545381e9a530SVaclav Hapla     ierr = PetscObjectSetName((PetscObject) dm->coordinatesLocal, "coordinates");CHKERRQ(ierr);
545481e9a530SVaclav Hapla     ierr = DMGlobalToLocalBegin(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr);
545581e9a530SVaclav Hapla     ierr = DMGlobalToLocalEnd(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr);
545681e9a530SVaclav Hapla   }
545781e9a530SVaclav Hapla   PetscFunctionReturn(0);
545881e9a530SVaclav Hapla }
545981e9a530SVaclav Hapla 
546081e9a530SVaclav Hapla /*@
54616636e97aSMatthew G Knepley   DMGetCoordinatesLocal - Gets a local vector with the coordinates associated with the DM.
54626636e97aSMatthew G Knepley 
5463*d083f849SBarry Smith   Collective on dm
54646636e97aSMatthew G Knepley 
54656636e97aSMatthew G Knepley   Input Parameter:
54666636e97aSMatthew G Knepley . dm - the DM
54676636e97aSMatthew G Knepley 
54686636e97aSMatthew G Knepley   Output Parameter:
54696636e97aSMatthew G Knepley . c - coordinate vector
54706636e97aSMatthew G Knepley 
54716636e97aSMatthew G Knepley   Note:
54726636e97aSMatthew G Knepley   This is a borrowed reference, so the user should NOT destroy this vector
54736636e97aSMatthew G Knepley 
54746636e97aSMatthew G Knepley   Each process has the local and ghost coordinates
54756636e97aSMatthew G Knepley 
54766636e97aSMatthew G Knepley   For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...)
54776636e97aSMatthew G Knepley   and (x_0,y_0,z_0,x_1,y_1,z_1...)
54786636e97aSMatthew G Knepley 
54796636e97aSMatthew G Knepley   Level: intermediate
54806636e97aSMatthew G Knepley 
548181e9a530SVaclav Hapla .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM(), DMGetCoordinatesLocalNoncollective()
54826636e97aSMatthew G Knepley @*/
54836636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinatesLocal(DM dm, Vec *c)
54846636e97aSMatthew G Knepley {
54856636e97aSMatthew G Knepley   PetscErrorCode ierr;
54866636e97aSMatthew G Knepley 
54876636e97aSMatthew G Knepley   PetscFunctionBegin;
54886636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
54896636e97aSMatthew G Knepley   PetscValidPointer(c,2);
549081e9a530SVaclav Hapla   ierr = DMGetCoordinatesLocalSetUp(dm);CHKERRQ(ierr);
54916636e97aSMatthew G Knepley   *c = dm->coordinatesLocal;
54926636e97aSMatthew G Knepley   PetscFunctionReturn(0);
54936636e97aSMatthew G Knepley }
54946636e97aSMatthew G Knepley 
549581e9a530SVaclav Hapla /*@
549681e9a530SVaclav Hapla   DMGetCoordinatesLocalNoncollective - Non-collective version of DMGetCoordinatesLocal(). Fails if global coordinates have been set and DMGetCoordinatesLocalSetUp() not called.
549781e9a530SVaclav Hapla 
549881e9a530SVaclav Hapla   Not collective
549981e9a530SVaclav Hapla 
550081e9a530SVaclav Hapla   Input Parameter:
550181e9a530SVaclav Hapla . dm - the DM
550281e9a530SVaclav Hapla 
550381e9a530SVaclav Hapla   Output Parameter:
550481e9a530SVaclav Hapla . c - coordinate vector
550581e9a530SVaclav Hapla 
550681e9a530SVaclav Hapla   Level: advanced
550781e9a530SVaclav Hapla 
550881e9a530SVaclav Hapla .seealso: DMGetCoordinatesLocalSetUp(), DMGetCoordinatesLocal(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM()
550981e9a530SVaclav Hapla @*/
551081e9a530SVaclav Hapla PetscErrorCode DMGetCoordinatesLocalNoncollective(DM dm, Vec *c)
551181e9a530SVaclav Hapla {
551281e9a530SVaclav Hapla   PetscFunctionBegin;
551381e9a530SVaclav Hapla   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
551481e9a530SVaclav Hapla   PetscValidPointer(c,2);
551581e9a530SVaclav Hapla   if (!dm->coordinatesLocal && dm->coordinates) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DMGetCoordinatesLocalSetUp() has not been called");
55166636e97aSMatthew G Knepley   *c = dm->coordinatesLocal;
55176636e97aSMatthew G Knepley   PetscFunctionReturn(0);
55186636e97aSMatthew G Knepley }
55196636e97aSMatthew G Knepley 
55202db98f8dSVaclav Hapla /*@
55212db98f8dSVaclav Hapla   DMGetCoordinatesLocalTuple - Gets a local vector with the coordinates of specified points and section describing its layout.
55222db98f8dSVaclav Hapla 
55232db98f8dSVaclav Hapla   Not collective
55242db98f8dSVaclav Hapla 
55252db98f8dSVaclav Hapla   Input Parameter:
55262db98f8dSVaclav Hapla + dm - the DM
55272db98f8dSVaclav Hapla - p - the IS of points whose coordinates will be returned
55282db98f8dSVaclav Hapla 
55292db98f8dSVaclav Hapla   Output Parameter:
55302db98f8dSVaclav Hapla + pCoordSection - the PetscSection describing the layout of pCoord, i.e. each point corresponds to one point in p, and DOFs correspond to coordinates
55312db98f8dSVaclav Hapla - pCoord - the Vec with coordinates of points in p
55322db98f8dSVaclav Hapla 
55332db98f8dSVaclav Hapla   Note:
55342db98f8dSVaclav Hapla   DMGetCoordinatesLocalSetUp() must be called first. This function employs DMGetCoordinatesLocalNoncollective() so it is not collective.
55352db98f8dSVaclav Hapla 
55362db98f8dSVaclav Hapla   This creates a new vector, so the user SHOULD destroy this vector
55372db98f8dSVaclav Hapla 
55382db98f8dSVaclav Hapla   Each process has the local and ghost coordinates
55392db98f8dSVaclav Hapla 
55402db98f8dSVaclav Hapla   For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...)
55412db98f8dSVaclav Hapla   and (x_0,y_0,z_0,x_1,y_1,z_1...)
55422db98f8dSVaclav Hapla 
55432db98f8dSVaclav Hapla   Level: advanced
55442db98f8dSVaclav Hapla 
55452db98f8dSVaclav Hapla .seealso: DMSetCoordinatesLocal(), DMGetCoordinatesLocal(), DMGetCoordinatesLocalNoncollective(), DMGetCoordinatesLocalSetUp(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM()
55462db98f8dSVaclav Hapla @*/
55472db98f8dSVaclav Hapla PetscErrorCode DMGetCoordinatesLocalTuple(DM dm, IS p, PetscSection *pCoordSection, Vec *pCoord)
55482db98f8dSVaclav Hapla {
55492db98f8dSVaclav Hapla   PetscSection        cs, newcs;
55502db98f8dSVaclav Hapla   Vec                 coords;
55512db98f8dSVaclav Hapla   const PetscScalar   *arr;
55522db98f8dSVaclav Hapla   PetscScalar         *newarr=NULL;
55532db98f8dSVaclav Hapla   PetscInt            n;
55542db98f8dSVaclav Hapla   PetscErrorCode      ierr;
55552db98f8dSVaclav Hapla 
55562db98f8dSVaclav Hapla   PetscFunctionBegin;
55572db98f8dSVaclav Hapla   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
55582db98f8dSVaclav Hapla   PetscValidHeaderSpecific(p, IS_CLASSID, 2);
55592db98f8dSVaclav Hapla   if (pCoordSection) PetscValidPointer(pCoordSection, 3);
55602db98f8dSVaclav Hapla   if (pCoord) PetscValidPointer(pCoord, 4);
55612db98f8dSVaclav Hapla   if (!dm->coordinatesLocal) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DMGetCoordinatesLocalSetUp() has not been called or coordinates not set");
55622db98f8dSVaclav Hapla   if (!dm->coordinateDM || !dm->coordinateDM->defaultSection) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM not supported");
55632db98f8dSVaclav Hapla   cs = dm->coordinateDM->defaultSection;
55642db98f8dSVaclav Hapla   coords = dm->coordinatesLocal;
55652db98f8dSVaclav Hapla   ierr = VecGetArrayRead(coords, &arr);CHKERRQ(ierr);
55662db98f8dSVaclav Hapla   ierr = PetscSectionExtractDofsFromArray(cs, MPIU_SCALAR, arr, p, &newcs, pCoord ? ((void**)&newarr) : NULL);CHKERRQ(ierr);
55672db98f8dSVaclav Hapla   ierr = VecRestoreArrayRead(coords, &arr);CHKERRQ(ierr);
55682db98f8dSVaclav Hapla   if (pCoord) {
55692db98f8dSVaclav Hapla     ierr = PetscSectionGetStorageSize(newcs, &n);CHKERRQ(ierr);
55702db98f8dSVaclav Hapla     /* set array in two steps to mimic PETSC_OWN_POINTER */
55712db98f8dSVaclav Hapla     ierr = VecCreateSeqWithArray(PetscObjectComm((PetscObject)p), 1, n, NULL, pCoord);CHKERRQ(ierr);
55722db98f8dSVaclav Hapla     ierr = VecReplaceArray(*pCoord, newarr);CHKERRQ(ierr);
5573ad9ac99dSVaclav Hapla   } else {
5574ad9ac99dSVaclav Hapla     ierr = PetscFree(newarr);CHKERRQ(ierr);
55752db98f8dSVaclav Hapla   }
5576ad9ac99dSVaclav Hapla   if (pCoordSection) {*pCoordSection = newcs;}
5577ad9ac99dSVaclav Hapla   else               {ierr = PetscSectionDestroy(&newcs);CHKERRQ(ierr);}
55782db98f8dSVaclav Hapla   PetscFunctionReturn(0);
55792db98f8dSVaclav Hapla }
55802db98f8dSVaclav Hapla 
5581f19dbd58SToby Isaac PetscErrorCode DMGetCoordinateField(DM dm, DMField *field)
5582f19dbd58SToby Isaac {
5583f19dbd58SToby Isaac   PetscErrorCode ierr;
5584f19dbd58SToby Isaac 
5585f19dbd58SToby Isaac   PetscFunctionBegin;
5586f19dbd58SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5587f19dbd58SToby Isaac   PetscValidPointer(field,2);
5588f19dbd58SToby Isaac   if (!dm->coordinateField) {
5589f19dbd58SToby Isaac     if (dm->ops->createcoordinatefield) {
5590f19dbd58SToby Isaac       ierr = (*dm->ops->createcoordinatefield)(dm,&dm->coordinateField);CHKERRQ(ierr);
5591f19dbd58SToby Isaac     }
5592f19dbd58SToby Isaac   }
5593f19dbd58SToby Isaac   *field = dm->coordinateField;
5594f19dbd58SToby Isaac   PetscFunctionReturn(0);
5595f19dbd58SToby Isaac }
5596f19dbd58SToby Isaac 
5597f19dbd58SToby Isaac PetscErrorCode DMSetCoordinateField(DM dm, DMField field)
5598f19dbd58SToby Isaac {
5599f19dbd58SToby Isaac   PetscErrorCode ierr;
5600f19dbd58SToby Isaac 
5601f19dbd58SToby Isaac   PetscFunctionBegin;
5602f19dbd58SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5603f19dbd58SToby Isaac   if (field) PetscValidHeaderSpecific(field,DMFIELD_CLASSID,2);
5604c4e6da2cSBarry Smith   ierr = PetscObjectReference((PetscObject)field);CHKERRQ(ierr);
5605f19dbd58SToby Isaac   ierr = DMFieldDestroy(&dm->coordinateField);CHKERRQ(ierr);
5606f19dbd58SToby Isaac   dm->coordinateField = field;
5607f19dbd58SToby Isaac   PetscFunctionReturn(0);
5608f19dbd58SToby Isaac }
5609f19dbd58SToby Isaac 
56106636e97aSMatthew G Knepley /*@
56111cfe2091SMatthew G. Knepley   DMGetCoordinateDM - Gets the DM that prescribes coordinate layout and scatters between global and local coordinates
56126636e97aSMatthew G Knepley 
5613*d083f849SBarry Smith   Collective on dm
56146636e97aSMatthew G Knepley 
56156636e97aSMatthew G Knepley   Input Parameter:
56166636e97aSMatthew G Knepley . dm - the DM
56176636e97aSMatthew G Knepley 
56186636e97aSMatthew G Knepley   Output Parameter:
56196636e97aSMatthew G Knepley . cdm - coordinate DM
56206636e97aSMatthew G Knepley 
56216636e97aSMatthew G Knepley   Level: intermediate
56226636e97aSMatthew G Knepley 
56231cfe2091SMatthew G. Knepley .seealso: DMSetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal()
56246636e97aSMatthew G Knepley @*/
56256636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinateDM(DM dm, DM *cdm)
56266636e97aSMatthew G Knepley {
56276636e97aSMatthew G Knepley   PetscErrorCode ierr;
56286636e97aSMatthew G Knepley 
56296636e97aSMatthew G Knepley   PetscFunctionBegin;
56306636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
56316636e97aSMatthew G Knepley   PetscValidPointer(cdm,2);
56326636e97aSMatthew G Knepley   if (!dm->coordinateDM) {
5633308f8a94SToby Isaac     DM cdm;
5634308f8a94SToby Isaac 
563582f516ccSBarry Smith     if (!dm->ops->createcoordinatedm) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Unable to create coordinates for this DM");
5636308f8a94SToby Isaac     ierr = (*dm->ops->createcoordinatedm)(dm, &cdm);CHKERRQ(ierr);
5637308f8a94SToby Isaac     /* Just in case the DM sets the coordinate DM when creating it (DMP4est can do this, because it may not setup
5638308f8a94SToby Isaac      * until the call to CreateCoordinateDM) */
5639308f8a94SToby Isaac     ierr = DMDestroy(&dm->coordinateDM);CHKERRQ(ierr);
5640308f8a94SToby Isaac     dm->coordinateDM = cdm;
56416636e97aSMatthew G Knepley   }
56426636e97aSMatthew G Knepley   *cdm = dm->coordinateDM;
56436636e97aSMatthew G Knepley   PetscFunctionReturn(0);
56446636e97aSMatthew G Knepley }
5645e87bb0d3SMatthew G Knepley 
56461cfe2091SMatthew G. Knepley /*@
56471cfe2091SMatthew G. Knepley   DMSetCoordinateDM - Sets the DM that prescribes coordinate layout and scatters between global and local coordinates
56481cfe2091SMatthew G. Knepley 
5649*d083f849SBarry Smith   Logically Collective on dm
56501cfe2091SMatthew G. Knepley 
56511cfe2091SMatthew G. Knepley   Input Parameters:
56521cfe2091SMatthew G. Knepley + dm - the DM
56531cfe2091SMatthew G. Knepley - cdm - coordinate DM
56541cfe2091SMatthew G. Knepley 
56551cfe2091SMatthew G. Knepley   Level: intermediate
56561cfe2091SMatthew G. Knepley 
56571cfe2091SMatthew G. Knepley .seealso: DMGetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal()
56581cfe2091SMatthew G. Knepley @*/
56591cfe2091SMatthew G. Knepley PetscErrorCode DMSetCoordinateDM(DM dm, DM cdm)
56601cfe2091SMatthew G. Knepley {
56611cfe2091SMatthew G. Knepley   PetscErrorCode ierr;
56621cfe2091SMatthew G. Knepley 
56631cfe2091SMatthew G. Knepley   PetscFunctionBegin;
56641cfe2091SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
56651cfe2091SMatthew G. Knepley   PetscValidHeaderSpecific(cdm,DM_CLASSID,2);
5666f26b38b9SToby Isaac   ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr);
56671cfe2091SMatthew G. Knepley   ierr = DMDestroy(&dm->coordinateDM);CHKERRQ(ierr);
56681cfe2091SMatthew G. Knepley   dm->coordinateDM = cdm;
56691cfe2091SMatthew G. Knepley   PetscFunctionReturn(0);
56701cfe2091SMatthew G. Knepley }
56711cfe2091SMatthew G. Knepley 
567246e270d4SMatthew G. Knepley /*@
567346e270d4SMatthew G. Knepley   DMGetCoordinateDim - Retrieve the dimension of embedding space for coordinate values.
567446e270d4SMatthew G. Knepley 
567546e270d4SMatthew G. Knepley   Not Collective
567646e270d4SMatthew G. Knepley 
567746e270d4SMatthew G. Knepley   Input Parameter:
567846e270d4SMatthew G. Knepley . dm - The DM object
567946e270d4SMatthew G. Knepley 
568046e270d4SMatthew G. Knepley   Output Parameter:
568146e270d4SMatthew G. Knepley . dim - The embedding dimension
568246e270d4SMatthew G. Knepley 
568346e270d4SMatthew G. Knepley   Level: intermediate
568446e270d4SMatthew G. Knepley 
5685e87a4003SBarry Smith .seealso: DMSetCoordinateDim(), DMGetCoordinateSection(), DMGetCoordinateDM(), DMGetSection(), DMSetSection()
568646e270d4SMatthew G. Knepley @*/
568746e270d4SMatthew G. Knepley PetscErrorCode DMGetCoordinateDim(DM dm, PetscInt *dim)
568846e270d4SMatthew G. Knepley {
568946e270d4SMatthew G. Knepley   PetscFunctionBegin;
569046e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
569146e270d4SMatthew G. Knepley   PetscValidPointer(dim, 2);
56929a9a41abSToby Isaac   if (dm->dimEmbed == PETSC_DEFAULT) {
56939a9a41abSToby Isaac     dm->dimEmbed = dm->dim;
56949a9a41abSToby Isaac   }
569546e270d4SMatthew G. Knepley   *dim = dm->dimEmbed;
569646e270d4SMatthew G. Knepley   PetscFunctionReturn(0);
569746e270d4SMatthew G. Knepley }
569846e270d4SMatthew G. Knepley 
569946e270d4SMatthew G. Knepley /*@
570046e270d4SMatthew G. Knepley   DMSetCoordinateDim - Set the dimension of the embedding space for coordinate values.
570146e270d4SMatthew G. Knepley 
570246e270d4SMatthew G. Knepley   Not Collective
570346e270d4SMatthew G. Knepley 
570446e270d4SMatthew G. Knepley   Input Parameters:
570546e270d4SMatthew G. Knepley + dm  - The DM object
570646e270d4SMatthew G. Knepley - dim - The embedding dimension
570746e270d4SMatthew G. Knepley 
570846e270d4SMatthew G. Knepley   Level: intermediate
570946e270d4SMatthew G. Knepley 
5710e87a4003SBarry Smith .seealso: DMGetCoordinateDim(), DMSetCoordinateSection(), DMGetCoordinateSection(), DMGetSection(), DMSetSection()
571146e270d4SMatthew G. Knepley @*/
571246e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateDim(DM dm, PetscInt dim)
571346e270d4SMatthew G. Knepley {
5714e5e52638SMatthew G. Knepley   PetscDS        ds;
5715f17e8794SMatthew G. Knepley   PetscErrorCode ierr;
5716f17e8794SMatthew G. Knepley 
571746e270d4SMatthew G. Knepley   PetscFunctionBegin;
571846e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
571946e270d4SMatthew G. Knepley   dm->dimEmbed = dim;
5720e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
5721e5e52638SMatthew G. Knepley   ierr = PetscDSSetCoordinateDimension(ds, dim);CHKERRQ(ierr);
572246e270d4SMatthew G. Knepley   PetscFunctionReturn(0);
572346e270d4SMatthew G. Knepley }
572446e270d4SMatthew G. Knepley 
5725e8abe2deSMatthew G. Knepley /*@
5726e8abe2deSMatthew G. Knepley   DMGetCoordinateSection - Retrieve the layout of coordinate values over the mesh.
5727e8abe2deSMatthew G. Knepley 
5728*d083f849SBarry Smith   Collective on dm
5729e8abe2deSMatthew G. Knepley 
5730e8abe2deSMatthew G. Knepley   Input Parameter:
5731e8abe2deSMatthew G. Knepley . dm - The DM object
5732e8abe2deSMatthew G. Knepley 
5733e8abe2deSMatthew G. Knepley   Output Parameter:
5734e8abe2deSMatthew G. Knepley . section - The PetscSection object
5735e8abe2deSMatthew G. Knepley 
5736e8abe2deSMatthew G. Knepley   Level: intermediate
5737e8abe2deSMatthew G. Knepley 
5738e87a4003SBarry Smith .seealso: DMGetCoordinateDM(), DMGetSection(), DMSetSection()
5739e8abe2deSMatthew G. Knepley @*/
5740e8abe2deSMatthew G. Knepley PetscErrorCode DMGetCoordinateSection(DM dm, PetscSection *section)
5741e8abe2deSMatthew G. Knepley {
5742e8abe2deSMatthew G. Knepley   DM             cdm;
5743e8abe2deSMatthew G. Knepley   PetscErrorCode ierr;
5744e8abe2deSMatthew G. Knepley 
5745e8abe2deSMatthew G. Knepley   PetscFunctionBegin;
5746e8abe2deSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5747e8abe2deSMatthew G. Knepley   PetscValidPointer(section, 2);
5748e8abe2deSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
5749e87a4003SBarry Smith   ierr = DMGetSection(cdm, section);CHKERRQ(ierr);
5750e8abe2deSMatthew G. Knepley   PetscFunctionReturn(0);
5751e8abe2deSMatthew G. Knepley }
5752e8abe2deSMatthew G. Knepley 
5753e8abe2deSMatthew G. Knepley /*@
5754e8abe2deSMatthew G. Knepley   DMSetCoordinateSection - Set the layout of coordinate values over the mesh.
5755e8abe2deSMatthew G. Knepley 
5756e8abe2deSMatthew G. Knepley   Not Collective
5757e8abe2deSMatthew G. Knepley 
5758e8abe2deSMatthew G. Knepley   Input Parameters:
5759e8abe2deSMatthew G. Knepley + dm      - The DM object
576046e270d4SMatthew G. Knepley . dim     - The embedding dimension, or PETSC_DETERMINE
5761e8abe2deSMatthew G. Knepley - section - The PetscSection object
5762e8abe2deSMatthew G. Knepley 
5763e8abe2deSMatthew G. Knepley   Level: intermediate
5764e8abe2deSMatthew G. Knepley 
5765e87a4003SBarry Smith .seealso: DMGetCoordinateSection(), DMGetSection(), DMSetSection()
5766e8abe2deSMatthew G. Knepley @*/
576746e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateSection(DM dm, PetscInt dim, PetscSection section)
5768e8abe2deSMatthew G. Knepley {
5769e8abe2deSMatthew G. Knepley   DM             cdm;
5770e8abe2deSMatthew G. Knepley   PetscErrorCode ierr;
5771e8abe2deSMatthew G. Knepley 
5772e8abe2deSMatthew G. Knepley   PetscFunctionBegin;
5773e8abe2deSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
577446e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,3);
5775e8abe2deSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
5776e87a4003SBarry Smith   ierr = DMSetSection(cdm, section);CHKERRQ(ierr);
577746e270d4SMatthew G. Knepley   if (dim == PETSC_DETERMINE) {
57784c1069a6SMatthew G. Knepley     PetscInt d = PETSC_DEFAULT;
577946e270d4SMatthew G. Knepley     PetscInt pStart, pEnd, vStart, vEnd, v, dd;
578046e270d4SMatthew G. Knepley 
578146e270d4SMatthew G. Knepley     ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
578246e270d4SMatthew G. Knepley     ierr = DMGetDimPoints(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
578346e270d4SMatthew G. Knepley     pStart = PetscMax(vStart, pStart);
578446e270d4SMatthew G. Knepley     pEnd   = PetscMin(vEnd, pEnd);
578546e270d4SMatthew G. Knepley     for (v = pStart; v < pEnd; ++v) {
578646e270d4SMatthew G. Knepley       ierr = PetscSectionGetDof(section, v, &dd);CHKERRQ(ierr);
578746e270d4SMatthew G. Knepley       if (dd) {d = dd; break;}
578846e270d4SMatthew G. Knepley     }
5789ebfe4b0dSMatthew G. Knepley     if (d >= 0) {ierr = DMSetCoordinateDim(dm, d);CHKERRQ(ierr);}
579046e270d4SMatthew G. Knepley   }
5791e8abe2deSMatthew G. Knepley   PetscFunctionReturn(0);
5792e8abe2deSMatthew G. Knepley }
5793e8abe2deSMatthew G. Knepley 
57945dc8c3f7SMatthew G. Knepley /*@C
579590b157c4SStefano Zampini   DMGetPeriodicity - Get the description of mesh periodicity
57965dc8c3f7SMatthew G. Knepley 
57975dc8c3f7SMatthew G. Knepley   Input Parameters:
579890b157c4SStefano Zampini . dm      - The DM object
579990b157c4SStefano Zampini 
580090b157c4SStefano Zampini   Output Parameters:
580190b157c4SStefano Zampini + per     - Whether the DM is periodic or not
58025dc8c3f7SMatthew 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
58035dc8c3f7SMatthew G. Knepley . L       - If we assume the mesh is a torus, this is the length of each coordinate
58045dc8c3f7SMatthew G. Knepley - bd      - This describes the type of periodicity in each topological dimension
58055dc8c3f7SMatthew G. Knepley 
58065dc8c3f7SMatthew G. Knepley   Level: developer
58075dc8c3f7SMatthew G. Knepley 
58085dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity()
58095dc8c3f7SMatthew G. Knepley @*/
581090b157c4SStefano Zampini PetscErrorCode DMGetPeriodicity(DM dm, PetscBool *per, const PetscReal **maxCell, const PetscReal **L, const DMBoundaryType **bd)
5811c6b900c6SMatthew G. Knepley {
5812c6b900c6SMatthew G. Knepley   PetscFunctionBegin;
5813c6b900c6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
581490b157c4SStefano Zampini   if (per)     *per     = dm->periodic;
5815c6b900c6SMatthew G. Knepley   if (L)       *L       = dm->L;
5816c6b900c6SMatthew G. Knepley   if (maxCell) *maxCell = dm->maxCell;
58175dc8c3f7SMatthew G. Knepley   if (bd)      *bd      = dm->bdtype;
5818c6b900c6SMatthew G. Knepley   PetscFunctionReturn(0);
5819c6b900c6SMatthew G. Knepley }
5820c6b900c6SMatthew G. Knepley 
58215dc8c3f7SMatthew G. Knepley /*@C
58225dc8c3f7SMatthew G. Knepley   DMSetPeriodicity - Set the description of mesh periodicity
58235dc8c3f7SMatthew G. Knepley 
58245dc8c3f7SMatthew G. Knepley   Input Parameters:
58255dc8c3f7SMatthew G. Knepley + dm      - The DM object
582690b157c4SStefano Zampini . per     - Whether the DM is periodic or not. If maxCell is not provided, coordinates need to be localized
58275dc8c3f7SMatthew 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
58285dc8c3f7SMatthew G. Knepley . L       - If we assume the mesh is a torus, this is the length of each coordinate
58295dc8c3f7SMatthew G. Knepley - bd      - This describes the type of periodicity in each topological dimension
58305dc8c3f7SMatthew G. Knepley 
58315dc8c3f7SMatthew G. Knepley   Level: developer
58325dc8c3f7SMatthew G. Knepley 
58335dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity()
58345dc8c3f7SMatthew G. Knepley @*/
583590b157c4SStefano Zampini PetscErrorCode DMSetPeriodicity(DM dm, PetscBool per, const PetscReal maxCell[], const PetscReal L[], const DMBoundaryType bd[])
5836c6b900c6SMatthew G. Knepley {
5837c6b900c6SMatthew G. Knepley   PetscInt       dim, d;
5838c6b900c6SMatthew G. Knepley   PetscErrorCode ierr;
5839c6b900c6SMatthew G. Knepley 
5840c6b900c6SMatthew G. Knepley   PetscFunctionBegin;
5841c6b900c6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
584290b157c4SStefano Zampini   PetscValidLogicalCollectiveBool(dm,per,2);
584390b157c4SStefano Zampini   if (maxCell) {
584490b157c4SStefano Zampini     PetscValidPointer(maxCell,3);
584590b157c4SStefano Zampini     PetscValidPointer(L,4);
584690b157c4SStefano Zampini     PetscValidPointer(bd,5);
584790b157c4SStefano Zampini   }
58485dc8c3f7SMatthew G. Knepley   ierr = PetscFree3(dm->L,dm->maxCell,dm->bdtype);CHKERRQ(ierr);
58495dc8c3f7SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
585090b157c4SStefano Zampini   if (maxCell) {
58515dc8c3f7SMatthew G. Knepley     ierr = PetscMalloc3(dim,&dm->L,dim,&dm->maxCell,dim,&dm->bdtype);CHKERRQ(ierr);
58525dc8c3f7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {dm->L[d] = L[d]; dm->maxCell[d] = maxCell[d]; dm->bdtype[d] = bd[d];}
585390b157c4SStefano Zampini   }
5854072d7d67SStefano Zampini   dm->periodic = per;
5855c6b900c6SMatthew G. Knepley   PetscFunctionReturn(0);
5856c6b900c6SMatthew G. Knepley }
5857c6b900c6SMatthew G. Knepley 
58582e17dfb7SMatthew G. Knepley /*@
58592e17dfb7SMatthew 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.
58602e17dfb7SMatthew G. Knepley 
58612e17dfb7SMatthew G. Knepley   Input Parameters:
58622e17dfb7SMatthew G. Knepley + dm     - The DM
586365da65dcSMatthew G. Knepley . in     - The input coordinate point (dim numbers)
586465da65dcSMatthew G. Knepley - endpoint - Include the endpoint L_i
58652e17dfb7SMatthew G. Knepley 
58662e17dfb7SMatthew G. Knepley   Output Parameter:
58672e17dfb7SMatthew G. Knepley . out - The localized coordinate point
58682e17dfb7SMatthew G. Knepley 
58692e17dfb7SMatthew G. Knepley   Level: developer
58702e17dfb7SMatthew G. Knepley 
58712e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate()
58722e17dfb7SMatthew G. Knepley @*/
587365da65dcSMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate(DM dm, const PetscScalar in[], PetscBool endpoint, PetscScalar out[])
58742e17dfb7SMatthew G. Knepley {
58752e17dfb7SMatthew G. Knepley   PetscInt       dim, d;
58762e17dfb7SMatthew G. Knepley   PetscErrorCode ierr;
58772e17dfb7SMatthew G. Knepley 
58782e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
58792e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
58802e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
58812e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
58822e17dfb7SMatthew G. Knepley   } else {
588365da65dcSMatthew G. Knepley     if (endpoint) {
588465da65dcSMatthew G. Knepley       for (d = 0; d < dim; ++d) {
5885da3333bfSMatthew 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)) {
5886da3333bfSMatthew G. Knepley           out[d] = in[d] - dm->L[d]*(PetscFloorReal(PetscRealPart(in[d])/dm->L[d]) - 1);
588765da65dcSMatthew G. Knepley         } else {
5888da3333bfSMatthew G. Knepley           out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]);
588965da65dcSMatthew G. Knepley         }
589065da65dcSMatthew G. Knepley       }
589165da65dcSMatthew G. Knepley     } else {
58922e17dfb7SMatthew G. Knepley       for (d = 0; d < dim; ++d) {
58931118d4bcSLisandro Dalcin         out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]);
58942e17dfb7SMatthew G. Knepley       }
58952e17dfb7SMatthew G. Knepley     }
589665da65dcSMatthew G. Knepley   }
58972e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
58982e17dfb7SMatthew G. Knepley }
58992e17dfb7SMatthew G. Knepley 
59002e17dfb7SMatthew G. Knepley /*
59012e17dfb7SMatthew 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.
59022e17dfb7SMatthew G. Knepley 
59032e17dfb7SMatthew G. Knepley   Input Parameters:
59042e17dfb7SMatthew G. Knepley + dm     - The DM
59052e17dfb7SMatthew G. Knepley . dim    - The spatial dimension
59062e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it
59072e17dfb7SMatthew G. Knepley - in     - The input coordinate point (dim numbers)
59082e17dfb7SMatthew G. Knepley 
59092e17dfb7SMatthew G. Knepley   Output Parameter:
59102e17dfb7SMatthew G. Knepley . out - The localized coordinate point
59112e17dfb7SMatthew G. Knepley 
59122e17dfb7SMatthew G. Knepley   Level: developer
59132e17dfb7SMatthew G. Knepley 
59142e17dfb7SMatthew 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
59152e17dfb7SMatthew G. Knepley 
59162e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate()
59172e17dfb7SMatthew G. Knepley */
59182e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[])
59192e17dfb7SMatthew G. Knepley {
59202e17dfb7SMatthew G. Knepley   PetscInt d;
59212e17dfb7SMatthew G. Knepley 
59222e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
59232e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
59242e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
59252e17dfb7SMatthew G. Knepley   } else {
59262e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
5927908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) {
59282e17dfb7SMatthew G. Knepley         out[d] = PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d];
59292e17dfb7SMatthew G. Knepley       } else {
59302e17dfb7SMatthew G. Knepley         out[d] = in[d];
59312e17dfb7SMatthew G. Knepley       }
59322e17dfb7SMatthew G. Knepley     }
59332e17dfb7SMatthew G. Knepley   }
59342e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
59352e17dfb7SMatthew G. Knepley }
59362e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinateReal_Internal(DM dm, PetscInt dim, const PetscReal anchor[], const PetscReal in[], PetscReal out[])
59372e17dfb7SMatthew G. Knepley {
59382e17dfb7SMatthew G. Knepley   PetscInt d;
59392e17dfb7SMatthew G. Knepley 
59402e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
59412e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
59422e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
59432e17dfb7SMatthew G. Knepley   } else {
59442e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
5945908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsReal(anchor[d] - in[d]) > dm->maxCell[d])) {
59462e17dfb7SMatthew G. Knepley         out[d] = anchor[d] > in[d] ? dm->L[d] + in[d] : in[d] - dm->L[d];
59472e17dfb7SMatthew G. Knepley       } else {
59482e17dfb7SMatthew G. Knepley         out[d] = in[d];
59492e17dfb7SMatthew G. Knepley       }
59502e17dfb7SMatthew G. Knepley     }
59512e17dfb7SMatthew G. Knepley   }
59522e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
59532e17dfb7SMatthew G. Knepley }
59542e17dfb7SMatthew G. Knepley 
59552e17dfb7SMatthew G. Knepley /*
59562e17dfb7SMatthew 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.
59572e17dfb7SMatthew G. Knepley 
59582e17dfb7SMatthew G. Knepley   Input Parameters:
59592e17dfb7SMatthew G. Knepley + dm     - The DM
59602e17dfb7SMatthew G. Knepley . dim    - The spatial dimension
59612e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it
59622e17dfb7SMatthew G. Knepley . in     - The input coordinate delta (dim numbers)
59632e17dfb7SMatthew G. Knepley - out    - The input coordinate point (dim numbers)
59642e17dfb7SMatthew G. Knepley 
59652e17dfb7SMatthew G. Knepley   Output Parameter:
59662e17dfb7SMatthew G. Knepley . out    - The localized coordinate in + out
59672e17dfb7SMatthew G. Knepley 
59682e17dfb7SMatthew G. Knepley   Level: developer
59692e17dfb7SMatthew G. Knepley 
59702e17dfb7SMatthew 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
59712e17dfb7SMatthew G. Knepley 
59722e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeCoordinate()
59732e17dfb7SMatthew G. Knepley */
59742e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeAddCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[])
59752e17dfb7SMatthew G. Knepley {
59762e17dfb7SMatthew G. Knepley   PetscInt d;
59772e17dfb7SMatthew G. Knepley 
59782e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
59792e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
59802e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] += in[d];
59812e17dfb7SMatthew G. Knepley   } else {
59822e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
5983908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) {
59842e17dfb7SMatthew G. Knepley         out[d] += PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d];
59852e17dfb7SMatthew G. Knepley       } else {
59862e17dfb7SMatthew G. Knepley         out[d] += in[d];
59872e17dfb7SMatthew G. Knepley       }
59882e17dfb7SMatthew G. Knepley     }
59892e17dfb7SMatthew G. Knepley   }
59902e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
59912e17dfb7SMatthew G. Knepley }
59922e17dfb7SMatthew G. Knepley 
599336447a5eSToby Isaac /*@
59948f700142SStefano Zampini   DMGetCoordinatesLocalizedLocal - Check if the DM coordinates have been localized for cells on this process
59958f700142SStefano Zampini 
59968f700142SStefano Zampini   Not collective
599736447a5eSToby Isaac 
599836447a5eSToby Isaac   Input Parameter:
599936447a5eSToby Isaac . dm - The DM
600036447a5eSToby Isaac 
600136447a5eSToby Isaac   Output Parameter:
600236447a5eSToby Isaac   areLocalized - True if localized
600336447a5eSToby Isaac 
600436447a5eSToby Isaac   Level: developer
600536447a5eSToby Isaac 
60068f700142SStefano Zampini .seealso: DMLocalizeCoordinates(), DMGetCoordinatesLocalized(), DMSetPeriodicity()
600736447a5eSToby Isaac @*/
60088f700142SStefano Zampini PetscErrorCode DMGetCoordinatesLocalizedLocal(DM dm,PetscBool *areLocalized)
600936447a5eSToby Isaac {
601036447a5eSToby Isaac   DM             cdm;
601136447a5eSToby Isaac   PetscSection   coordSection;
601246a3a80fSLisandro Dalcin   PetscInt       cStart, cEnd, sStart, sEnd, c, dof;
601346a3a80fSLisandro Dalcin   PetscBool      isPlex, alreadyLocalized;
601436447a5eSToby Isaac   PetscErrorCode ierr;
601536447a5eSToby Isaac 
601636447a5eSToby Isaac   PetscFunctionBegin;
601736447a5eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
601846a3a80fSLisandro Dalcin   PetscValidPointer(areLocalized, 2);
60198b09590cSToby Isaac   *areLocalized = PETSC_FALSE;
602046a3a80fSLisandro Dalcin 
602136447a5eSToby Isaac   /* We need some generic way of refering to cells/vertices */
602236447a5eSToby Isaac   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
602346a3a80fSLisandro Dalcin   ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isPlex);CHKERRQ(ierr);
60249f7230bfSMatthew G. Knepley   if (!isPlex) PetscFunctionReturn(0);
602546a3a80fSLisandro Dalcin 
60269f7230bfSMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
602746a3a80fSLisandro Dalcin   ierr = DMPlexGetHeightStratum(cdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
602836447a5eSToby Isaac   ierr = PetscSectionGetChart(coordSection, &sStart, &sEnd);CHKERRQ(ierr);
602936447a5eSToby Isaac   alreadyLocalized = PETSC_FALSE;
603046a3a80fSLisandro Dalcin   for (c = cStart; c < cEnd; ++c) {
603146a3a80fSLisandro Dalcin     if (c < sStart || c >= sEnd) continue;
603236447a5eSToby Isaac     ierr = PetscSectionGetDof(coordSection, c, &dof);CHKERRQ(ierr);
603346a3a80fSLisandro Dalcin     if (dof) { alreadyLocalized = PETSC_TRUE; break; }
603436447a5eSToby Isaac   }
60358f700142SStefano Zampini   *areLocalized = alreadyLocalized;
603636447a5eSToby Isaac   PetscFunctionReturn(0);
603736447a5eSToby Isaac }
603836447a5eSToby Isaac 
60398f700142SStefano Zampini /*@
60408f700142SStefano Zampini   DMGetCoordinatesLocalized - Check if the DM coordinates have been localized for cells
60418f700142SStefano Zampini 
60428f700142SStefano Zampini   Collective on dm
60438f700142SStefano Zampini 
60448f700142SStefano Zampini   Input Parameter:
60458f700142SStefano Zampini . dm - The DM
60468f700142SStefano Zampini 
60478f700142SStefano Zampini   Output Parameter:
60488f700142SStefano Zampini   areLocalized - True if localized
60498f700142SStefano Zampini 
60508f700142SStefano Zampini   Level: developer
60518f700142SStefano Zampini 
60528f700142SStefano Zampini .seealso: DMLocalizeCoordinates(), DMSetPeriodicity(), DMGetCoordinatesLocalizedLocal()
60538f700142SStefano Zampini @*/
60548f700142SStefano Zampini PetscErrorCode DMGetCoordinatesLocalized(DM dm,PetscBool *areLocalized)
60558f700142SStefano Zampini {
60568f700142SStefano Zampini   PetscBool      localized;
60578f700142SStefano Zampini   PetscErrorCode ierr;
60588f700142SStefano Zampini 
60598f700142SStefano Zampini   PetscFunctionBegin;
60608f700142SStefano Zampini   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
60618f700142SStefano Zampini   PetscValidPointer(areLocalized, 2);
60628f700142SStefano Zampini   ierr = DMGetCoordinatesLocalizedLocal(dm,&localized);CHKERRQ(ierr);
60638f700142SStefano Zampini   ierr = MPIU_Allreduce(&localized,areLocalized,1,MPIU_BOOL,MPI_LOR,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
60648f700142SStefano Zampini   PetscFunctionReturn(0);
60658f700142SStefano Zampini }
606636447a5eSToby Isaac 
60672e17dfb7SMatthew G. Knepley /*@
6068492b8470SStefano Zampini   DMLocalizeCoordinates - If a mesh is periodic, create local coordinates for cells having periodic faces
60692e17dfb7SMatthew G. Knepley 
60708f700142SStefano Zampini   Collective on dm
60718f700142SStefano Zampini 
60722e17dfb7SMatthew G. Knepley   Input Parameter:
60732e17dfb7SMatthew G. Knepley . dm - The DM
60742e17dfb7SMatthew G. Knepley 
60752e17dfb7SMatthew G. Knepley   Level: developer
60762e17dfb7SMatthew G. Knepley 
60778f700142SStefano Zampini .seealso: DMSetPeriodicity(), DMLocalizeCoordinate(), DMLocalizeAddCoordinate()
60782e17dfb7SMatthew G. Knepley @*/
60792e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinates(DM dm)
60802e17dfb7SMatthew G. Knepley {
60812e17dfb7SMatthew G. Knepley   DM             cdm;
60822e17dfb7SMatthew G. Knepley   PetscSection   coordSection, cSection;
60832e17dfb7SMatthew G. Knepley   Vec            coordinates,  cVec;
60843e922f36SToby Isaac   PetscScalar   *coords, *coords2, *anchor, *localized;
60853e922f36SToby Isaac   PetscInt       Nc, vStart, vEnd, v, sStart, sEnd, newStart = PETSC_MAX_INT, newEnd = PETSC_MIN_INT, dof, d, off, off2, bs, coordSize;
6086e0ae35bbSToby Isaac   PetscBool      alreadyLocalized, alreadyLocalizedGlobal;
60873e922f36SToby Isaac   PetscInt       maxHeight = 0, h;
60883e922f36SToby Isaac   PetscInt       *pStart = NULL, *pEnd = NULL;
60892e17dfb7SMatthew G. Knepley   PetscErrorCode ierr;
60902e17dfb7SMatthew G. Knepley 
60912e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
60922e17dfb7SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
609392c9c85fSStefano Zampini   if (!dm->periodic) PetscFunctionReturn(0);
6094f7cbd40bSStefano Zampini   ierr = DMGetCoordinatesLocalized(dm, &alreadyLocalized);CHKERRQ(ierr);
6095f7cbd40bSStefano Zampini   if (alreadyLocalized) PetscFunctionReturn(0);
6096f7cbd40bSStefano Zampini 
60972e17dfb7SMatthew G. Knepley   /* We need some generic way of refering to cells/vertices */
60982e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
60992e17dfb7SMatthew G. Knepley   {
61002e17dfb7SMatthew G. Knepley     PetscBool isplex;
61012e17dfb7SMatthew G. Knepley 
61022e17dfb7SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isplex);CHKERRQ(ierr);
61032e17dfb7SMatthew G. Knepley     if (isplex) {
61042e17dfb7SMatthew G. Knepley       ierr = DMPlexGetDepthStratum(cdm, 0, &vStart, &vEnd);CHKERRQ(ierr);
61053e922f36SToby Isaac       ierr = DMPlexGetMaxProjectionHeight(cdm,&maxHeight);CHKERRQ(ierr);
610669291d52SBarry Smith       ierr = DMGetWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
61073e922f36SToby Isaac       pEnd = &pStart[maxHeight + 1];
61083e922f36SToby Isaac       newStart = vStart;
61093e922f36SToby Isaac       newEnd   = vEnd;
61103e922f36SToby Isaac       for (h = 0; h <= maxHeight; h++) {
61113e922f36SToby Isaac         ierr = DMPlexGetHeightStratum(cdm, h, &pStart[h], &pEnd[h]);CHKERRQ(ierr);
61123e922f36SToby Isaac         newStart = PetscMin(newStart,pStart[h]);
61133e922f36SToby Isaac         newEnd   = PetscMax(newEnd,pEnd[h]);
61143e922f36SToby Isaac       }
61152e17dfb7SMatthew G. Knepley     } else SETERRQ(PetscObjectComm((PetscObject) cdm), PETSC_ERR_ARG_WRONG, "Coordinate localization requires a DMPLEX coordinate DM");
61162e17dfb7SMatthew G. Knepley   }
61172e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
611843eeeb2dSStefano Zampini   if (!coordinates) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Missing local coordinates vector");
61192e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
61203e922f36SToby Isaac   ierr = VecGetBlockSize(coordinates, &bs);CHKERRQ(ierr);
6121e0ae35bbSToby Isaac   ierr = PetscSectionGetChart(coordSection,&sStart,&sEnd);CHKERRQ(ierr);
61223e922f36SToby Isaac 
61232e17dfb7SMatthew G. Knepley   ierr = PetscSectionCreate(PetscObjectComm((PetscObject) dm), &cSection);CHKERRQ(ierr);
61242e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetNumFields(cSection, 1);CHKERRQ(ierr);
61252e17dfb7SMatthew G. Knepley   ierr = PetscSectionGetFieldComponents(coordSection, 0, &Nc);CHKERRQ(ierr);
61262e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetFieldComponents(cSection, 0, Nc);CHKERRQ(ierr);
61273e922f36SToby Isaac   ierr = PetscSectionSetChart(cSection, newStart, newEnd);CHKERRQ(ierr);
61283e922f36SToby Isaac 
612969291d52SBarry Smith   ierr = DMGetWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
61303e922f36SToby Isaac   localized = &anchor[bs];
61313e922f36SToby Isaac   alreadyLocalized = alreadyLocalizedGlobal = PETSC_TRUE;
61323e922f36SToby Isaac   for (h = 0; h <= maxHeight; h++) {
61333e922f36SToby Isaac     PetscInt cStart = pStart[h], cEnd = pEnd[h], c;
61343e922f36SToby Isaac 
61353e922f36SToby Isaac     for (c = cStart; c < cEnd; ++c) {
61363e922f36SToby Isaac       PetscScalar *cellCoords = NULL;
61373e922f36SToby Isaac       PetscInt     b;
61383e922f36SToby Isaac 
61393e922f36SToby Isaac       if (c < sStart || c >= sEnd) alreadyLocalized = PETSC_FALSE;
61403e922f36SToby Isaac       ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
61413e922f36SToby Isaac       for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b];
61423e922f36SToby Isaac       for (d = 0; d < dof/bs; ++d) {
61433e922f36SToby Isaac         ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], localized);CHKERRQ(ierr);
61443e922f36SToby Isaac         for (b = 0; b < bs; b++) {
61453e922f36SToby Isaac           if (cellCoords[d*bs + b] != localized[b]) break;
61463e922f36SToby Isaac         }
61473e922f36SToby Isaac         if (b < bs) break;
61483e922f36SToby Isaac       }
61493e922f36SToby Isaac       if (d < dof/bs) {
61503e922f36SToby Isaac         if (c >= sStart && c < sEnd) {
61513e922f36SToby Isaac           PetscInt cdof;
61523e922f36SToby Isaac 
61533e922f36SToby Isaac           ierr = PetscSectionGetDof(coordSection, c, &cdof);CHKERRQ(ierr);
61543e922f36SToby Isaac           if (cdof != dof) alreadyLocalized = PETSC_FALSE;
61553e922f36SToby Isaac         }
61563e922f36SToby Isaac         ierr = PetscSectionSetDof(cSection, c, dof);CHKERRQ(ierr);
61573e922f36SToby Isaac         ierr = PetscSectionSetFieldDof(cSection, c, 0, dof);CHKERRQ(ierr);
61583e922f36SToby Isaac       }
61593e922f36SToby Isaac       ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
61603e922f36SToby Isaac     }
61613e922f36SToby Isaac   }
61623e922f36SToby Isaac   ierr = MPI_Allreduce(&alreadyLocalized,&alreadyLocalizedGlobal,1,MPIU_BOOL,MPI_LAND,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
61633e922f36SToby Isaac   if (alreadyLocalizedGlobal) {
616469291d52SBarry Smith     ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
61653e922f36SToby Isaac     ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr);
616669291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
61673e922f36SToby Isaac     PetscFunctionReturn(0);
61683e922f36SToby Isaac   }
61692e17dfb7SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
61702e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
61712e17dfb7SMatthew G. Knepley     ierr = PetscSectionSetDof(cSection, v, dof);CHKERRQ(ierr);
61722e17dfb7SMatthew G. Knepley     ierr = PetscSectionSetFieldDof(cSection, v, 0, dof);CHKERRQ(ierr);
61732e17dfb7SMatthew G. Knepley   }
61742e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetUp(cSection);CHKERRQ(ierr);
61752e17dfb7SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(cSection, &coordSize);CHKERRQ(ierr);
6176c2be7e5eSLisandro Dalcin   ierr = VecCreate(PETSC_COMM_SELF, &cVec);CHKERRQ(ierr);
61772e17dfb7SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject)cVec,"coordinates");CHKERRQ(ierr);
61782e17dfb7SMatthew G. Knepley   ierr = VecSetBlockSize(cVec, bs);CHKERRQ(ierr);
61792e17dfb7SMatthew G. Knepley   ierr = VecSetSizes(cVec, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
61802e17dfb7SMatthew G. Knepley   ierr = VecSetType(cVec, VECSTANDARD);CHKERRQ(ierr);
6181c2be7e5eSLisandro Dalcin   ierr = VecGetArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr);
61822e17dfb7SMatthew G. Knepley   ierr = VecGetArray(cVec, &coords2);CHKERRQ(ierr);
61832e17dfb7SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
61842e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
61852e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr);
61862e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetOffset(cSection,     v, &off2);CHKERRQ(ierr);
61872e17dfb7SMatthew G. Knepley     for (d = 0; d < dof; ++d) coords2[off2+d] = coords[off+d];
61882e17dfb7SMatthew G. Knepley   }
61893e922f36SToby Isaac   for (h = 0; h <= maxHeight; h++) {
61903e922f36SToby Isaac     PetscInt cStart = pStart[h], cEnd = pEnd[h], c;
61913e922f36SToby Isaac 
61922e17dfb7SMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
61932e17dfb7SMatthew G. Knepley       PetscScalar *cellCoords = NULL;
61943e922f36SToby Isaac       PetscInt     b, cdof;
61952e17dfb7SMatthew G. Knepley 
61963e922f36SToby Isaac       ierr = PetscSectionGetDof(cSection,c,&cdof);CHKERRQ(ierr);
61973e922f36SToby Isaac       if (!cdof) continue;
61982e17dfb7SMatthew G. Knepley       ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
61992e17dfb7SMatthew G. Knepley       ierr = PetscSectionGetOffset(cSection, c, &off2);CHKERRQ(ierr);
62002e17dfb7SMatthew G. Knepley       for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b];
62012e17dfb7SMatthew G. Knepley       for (d = 0; d < dof/bs; ++d) {ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], &coords2[off2+d*bs]);CHKERRQ(ierr);}
62022e17dfb7SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
62032e17dfb7SMatthew G. Knepley     }
62043e922f36SToby Isaac   }
620569291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
620669291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
6207c2be7e5eSLisandro Dalcin   ierr = VecRestoreArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr);
62082e17dfb7SMatthew G. Knepley   ierr = VecRestoreArray(cVec, &coords2);CHKERRQ(ierr);
62092e17dfb7SMatthew G. Knepley   ierr = DMSetCoordinateSection(dm, PETSC_DETERMINE, cSection);CHKERRQ(ierr);
62102e17dfb7SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dm, cVec);CHKERRQ(ierr);
62112e17dfb7SMatthew G. Knepley   ierr = VecDestroy(&cVec);CHKERRQ(ierr);
62122e17dfb7SMatthew G. Knepley   ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr);
62132e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
62142e17dfb7SMatthew G. Knepley }
62152e17dfb7SMatthew G. Knepley 
6216e87bb0d3SMatthew G Knepley /*@
62173a93e3b7SToby Isaac   DMLocatePoints - Locate the points in v in the mesh and return a PetscSF of the containing cells
6218e87bb0d3SMatthew G Knepley 
6219*d083f849SBarry Smith   Collective on v (see explanation below)
6220e87bb0d3SMatthew G Knepley 
6221e87bb0d3SMatthew G Knepley   Input Parameters:
6222e87bb0d3SMatthew G Knepley + dm - The DM
62233a93e3b7SToby Isaac . v - The Vec of points
622462a38674SMatthew G. Knepley . ltype - The type of point location, e.g. DM_POINTLOCATION_NONE or DM_POINTLOCATION_NEAREST
62253a93e3b7SToby Isaac - cells - Points to either NULL, or a PetscSF with guesses for which cells contain each point.
6226e87bb0d3SMatthew G Knepley 
622761e3bb9bSMatthew G Knepley   Output Parameter:
622862a38674SMatthew G. Knepley + v - The Vec of points, which now contains the nearest mesh points to the given points if DM_POINTLOCATION_NEAREST is used
622962a38674SMatthew G. Knepley - cells - The PetscSF containing the ranks and local indices of the containing points.
62303a93e3b7SToby Isaac 
6231e87bb0d3SMatthew G Knepley 
6232e87bb0d3SMatthew G Knepley   Level: developer
623361e3bb9bSMatthew G Knepley 
623462a38674SMatthew G. Knepley   Notes:
62353a93e3b7SToby Isaac   To do a search of the local cells of the mesh, v should have PETSC_COMM_SELF as its communicator.
623662a38674SMatthew G. Knepley   To do a search of all the cells in the distributed mesh, v should have the same communicator as dm.
62373a93e3b7SToby Isaac 
62383a93e3b7SToby Isaac   If *cellSF is NULL on input, a PetscSF will be created.
623962a38674SMatthew G. Knepley   If *cellSF is not NULL on input, it should point to an existing PetscSF, whose graph will be used as initial guesses.
62403a93e3b7SToby Isaac 
62413a93e3b7SToby Isaac   An array that maps each point to its containing cell can be obtained with
62423a93e3b7SToby Isaac 
624362a38674SMatthew G. Knepley $    const PetscSFNode *cells;
624462a38674SMatthew G. Knepley $    PetscInt           nFound;
6245a6216909SToby Isaac $    const PetscInt    *found;
624662a38674SMatthew G. Knepley $
6247a6216909SToby Isaac $    PetscSFGetGraph(cellSF,NULL,&nFound,&found,&cells);
62483a93e3b7SToby Isaac 
62493a93e3b7SToby 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
62503a93e3b7SToby Isaac   the index of the cell in its rank's local numbering.
62513a93e3b7SToby Isaac 
625262a38674SMatthew G. Knepley .seealso: DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMPointLocationType
625361e3bb9bSMatthew G Knepley @*/
625462a38674SMatthew G. Knepley PetscErrorCode DMLocatePoints(DM dm, Vec v, DMPointLocationType ltype, PetscSF *cellSF)
6255e87bb0d3SMatthew G Knepley {
6256735aa83eSMatthew G Knepley   PetscErrorCode ierr;
6257735aa83eSMatthew G Knepley 
6258e87bb0d3SMatthew G Knepley   PetscFunctionBegin;
6259e87bb0d3SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6260e87bb0d3SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,2);
6261e0fc9d1bSMatthew G. Knepley   PetscValidPointer(cellSF,4);
62623a93e3b7SToby Isaac   if (*cellSF) {
62633a93e3b7SToby Isaac     PetscMPIInt result;
62643a93e3b7SToby Isaac 
6265e0fc9d1bSMatthew G. Knepley     PetscValidHeaderSpecific(*cellSF,PETSCSF_CLASSID,4);
6266a4f09dd6SDave May     ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)v),PetscObjectComm((PetscObject)*cellSF),&result);CHKERRQ(ierr);
62673a93e3b7SToby 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");
6268e0fc9d1bSMatthew G. Knepley   } else {
62693a93e3b7SToby Isaac     ierr = PetscSFCreate(PetscObjectComm((PetscObject)v),cellSF);CHKERRQ(ierr);
62703a93e3b7SToby Isaac   }
627147a35634SPatrick Farrell   ierr = PetscLogEventBegin(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr);
6272735aa83eSMatthew G Knepley   if (dm->ops->locatepoints) {
627362a38674SMatthew G. Knepley     ierr = (*dm->ops->locatepoints)(dm,v,ltype,*cellSF);CHKERRQ(ierr);
627482f516ccSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Point location not available for this DM");
627547a35634SPatrick Farrell   ierr = PetscLogEventEnd(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr);
6276e87bb0d3SMatthew G Knepley   PetscFunctionReturn(0);
6277e87bb0d3SMatthew G Knepley }
627814f150ffSMatthew G. Knepley 
6279f4d763aaSMatthew G. Knepley /*@
6280f4d763aaSMatthew G. Knepley   DMGetOutputDM - Retrieve the DM associated with the layout for output
6281f4d763aaSMatthew G. Knepley 
62828f700142SStefano Zampini   Collective on dm
62838f700142SStefano Zampini 
6284f4d763aaSMatthew G. Knepley   Input Parameter:
6285f4d763aaSMatthew G. Knepley . dm - The original DM
6286f4d763aaSMatthew G. Knepley 
6287f4d763aaSMatthew G. Knepley   Output Parameter:
6288f4d763aaSMatthew G. Knepley . odm - The DM which provides the layout for output
6289f4d763aaSMatthew G. Knepley 
6290f4d763aaSMatthew G. Knepley   Level: intermediate
6291f4d763aaSMatthew G. Knepley 
6292e87a4003SBarry Smith .seealso: VecView(), DMGetGlobalSection()
6293f4d763aaSMatthew G. Knepley @*/
629414f150ffSMatthew G. Knepley PetscErrorCode DMGetOutputDM(DM dm, DM *odm)
629514f150ffSMatthew G. Knepley {
6296c26acbdeSMatthew G. Knepley   PetscSection   section;
62972d4e4a49SMatthew G. Knepley   PetscBool      hasConstraints, ghasConstraints;
629814f150ffSMatthew G. Knepley   PetscErrorCode ierr;
629914f150ffSMatthew G. Knepley 
630014f150ffSMatthew G. Knepley   PetscFunctionBegin;
630114f150ffSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
630214f150ffSMatthew G. Knepley   PetscValidPointer(odm,2);
6303e87a4003SBarry Smith   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
6304c26acbdeSMatthew G. Knepley   ierr = PetscSectionHasConstraints(section, &hasConstraints);CHKERRQ(ierr);
6305127fe6b9SMatthew G. Knepley   ierr = MPI_Allreduce(&hasConstraints, &ghasConstraints, 1, MPIU_BOOL, MPI_LOR, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);
63062d4e4a49SMatthew G. Knepley   if (!ghasConstraints) {
6307c26acbdeSMatthew G. Knepley     *odm = dm;
6308c26acbdeSMatthew G. Knepley     PetscFunctionReturn(0);
6309c26acbdeSMatthew G. Knepley   }
631014f150ffSMatthew G. Knepley   if (!dm->dmBC) {
6311c26acbdeSMatthew G. Knepley     PetscSection newSection, gsection;
631214f150ffSMatthew G. Knepley     PetscSF      sf;
631314f150ffSMatthew G. Knepley 
631414f150ffSMatthew G. Knepley     ierr = DMClone(dm, &dm->dmBC);CHKERRQ(ierr);
6315e5e52638SMatthew G. Knepley     ierr = DMCopyDisc(dm, dm->dmBC);CHKERRQ(ierr);
631614f150ffSMatthew G. Knepley     ierr = PetscSectionClone(section, &newSection);CHKERRQ(ierr);
6317e87a4003SBarry Smith     ierr = DMSetSection(dm->dmBC, newSection);CHKERRQ(ierr);
631814f150ffSMatthew G. Knepley     ierr = PetscSectionDestroy(&newSection);CHKERRQ(ierr);
631914f150ffSMatthew G. Knepley     ierr = DMGetPointSF(dm->dmBC, &sf);CHKERRQ(ierr);
632015b58121SMatthew G. Knepley     ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_TRUE, PETSC_FALSE, &gsection);CHKERRQ(ierr);
6321e87a4003SBarry Smith     ierr = DMSetGlobalSection(dm->dmBC, gsection);CHKERRQ(ierr);
632214f150ffSMatthew G. Knepley     ierr = PetscSectionDestroy(&gsection);CHKERRQ(ierr);
632314f150ffSMatthew G. Knepley   }
632414f150ffSMatthew G. Knepley   *odm = dm->dmBC;
632514f150ffSMatthew G. Knepley   PetscFunctionReturn(0);
632614f150ffSMatthew G. Knepley }
6327f4d763aaSMatthew G. Knepley 
6328f4d763aaSMatthew G. Knepley /*@
6329cdb7a50dSMatthew G. Knepley   DMGetOutputSequenceNumber - Retrieve the sequence number/value for output
6330f4d763aaSMatthew G. Knepley 
6331f4d763aaSMatthew G. Knepley   Input Parameter:
6332f4d763aaSMatthew G. Knepley . dm - The original DM
6333f4d763aaSMatthew G. Knepley 
6334cdb7a50dSMatthew G. Knepley   Output Parameters:
6335cdb7a50dSMatthew G. Knepley + num - The output sequence number
6336cdb7a50dSMatthew G. Knepley - val - The output sequence value
6337f4d763aaSMatthew G. Knepley 
6338f4d763aaSMatthew G. Knepley   Level: intermediate
6339f4d763aaSMatthew G. Knepley 
6340f4d763aaSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
6341f4d763aaSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
6342f4d763aaSMatthew G. Knepley 
6343f4d763aaSMatthew G. Knepley .seealso: VecView()
6344f4d763aaSMatthew G. Knepley @*/
6345cdb7a50dSMatthew G. Knepley PetscErrorCode DMGetOutputSequenceNumber(DM dm, PetscInt *num, PetscReal *val)
6346f4d763aaSMatthew G. Knepley {
6347f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
6348f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6349cdb7a50dSMatthew G. Knepley   if (num) {PetscValidPointer(num,2); *num = dm->outputSequenceNum;}
6350cdb7a50dSMatthew G. Knepley   if (val) {PetscValidPointer(val,3);*val = dm->outputSequenceVal;}
6351f4d763aaSMatthew G. Knepley   PetscFunctionReturn(0);
6352f4d763aaSMatthew G. Knepley }
6353f4d763aaSMatthew G. Knepley 
6354f4d763aaSMatthew G. Knepley /*@
6355cdb7a50dSMatthew G. Knepley   DMSetOutputSequenceNumber - Set the sequence number/value for output
6356f4d763aaSMatthew G. Knepley 
6357f4d763aaSMatthew G. Knepley   Input Parameters:
6358f4d763aaSMatthew G. Knepley + dm - The original DM
6359cdb7a50dSMatthew G. Knepley . num - The output sequence number
6360cdb7a50dSMatthew G. Knepley - val - The output sequence value
6361f4d763aaSMatthew G. Knepley 
6362f4d763aaSMatthew G. Knepley   Level: intermediate
6363f4d763aaSMatthew G. Knepley 
6364f4d763aaSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
6365f4d763aaSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
6366f4d763aaSMatthew G. Knepley 
6367f4d763aaSMatthew G. Knepley .seealso: VecView()
6368f4d763aaSMatthew G. Knepley @*/
6369cdb7a50dSMatthew G. Knepley PetscErrorCode DMSetOutputSequenceNumber(DM dm, PetscInt num, PetscReal val)
6370f4d763aaSMatthew G. Knepley {
6371f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
6372f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6373f4d763aaSMatthew G. Knepley   dm->outputSequenceNum = num;
6374cdb7a50dSMatthew G. Knepley   dm->outputSequenceVal = val;
6375cdb7a50dSMatthew G. Knepley   PetscFunctionReturn(0);
6376cdb7a50dSMatthew G. Knepley }
6377cdb7a50dSMatthew G. Knepley 
6378cdb7a50dSMatthew G. Knepley /*@C
6379cdb7a50dSMatthew G. Knepley   DMOutputSequenceLoad - Retrieve the sequence value from a Viewer
6380cdb7a50dSMatthew G. Knepley 
6381cdb7a50dSMatthew G. Knepley   Input Parameters:
6382cdb7a50dSMatthew G. Knepley + dm   - The original DM
6383cdb7a50dSMatthew G. Knepley . name - The sequence name
6384cdb7a50dSMatthew G. Knepley - num  - The output sequence number
6385cdb7a50dSMatthew G. Knepley 
6386cdb7a50dSMatthew G. Knepley   Output Parameter:
6387cdb7a50dSMatthew G. Knepley . val  - The output sequence value
6388cdb7a50dSMatthew G. Knepley 
6389cdb7a50dSMatthew G. Knepley   Level: intermediate
6390cdb7a50dSMatthew G. Knepley 
6391cdb7a50dSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
6392cdb7a50dSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
6393cdb7a50dSMatthew G. Knepley 
6394cdb7a50dSMatthew G. Knepley .seealso: DMGetOutputSequenceNumber(), DMSetOutputSequenceNumber(), VecView()
6395cdb7a50dSMatthew G. Knepley @*/
6396cdb7a50dSMatthew G. Knepley PetscErrorCode DMOutputSequenceLoad(DM dm, PetscViewer viewer, const char *name, PetscInt num, PetscReal *val)
6397cdb7a50dSMatthew G. Knepley {
6398cdb7a50dSMatthew G. Knepley   PetscBool      ishdf5;
6399cdb7a50dSMatthew G. Knepley   PetscErrorCode ierr;
6400cdb7a50dSMatthew G. Knepley 
6401cdb7a50dSMatthew G. Knepley   PetscFunctionBegin;
6402cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6403cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
6404cdb7a50dSMatthew G. Knepley   PetscValidPointer(val,4);
6405cdb7a50dSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
6406cdb7a50dSMatthew G. Knepley   if (ishdf5) {
6407cdb7a50dSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
6408cdb7a50dSMatthew G. Knepley     PetscScalar value;
6409cdb7a50dSMatthew G. Knepley 
641039d25373SMatthew G. Knepley     ierr = DMSequenceLoad_HDF5_Internal(dm, name, num, &value, viewer);CHKERRQ(ierr);
64114aeb217fSMatthew G. Knepley     *val = PetscRealPart(value);
6412cdb7a50dSMatthew G. Knepley #endif
6413cdb7a50dSMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid viewer; open viewer with PetscViewerHDF5Open()");
6414f4d763aaSMatthew G. Knepley   PetscFunctionReturn(0);
6415f4d763aaSMatthew G. Knepley }
64168e4ac7eaSMatthew G. Knepley 
64178e4ac7eaSMatthew G. Knepley /*@
64188e4ac7eaSMatthew G. Knepley   DMGetUseNatural - Get the flag for creating a mapping to the natural order on distribution
64198e4ac7eaSMatthew G. Knepley 
64208e4ac7eaSMatthew G. Knepley   Not collective
64218e4ac7eaSMatthew G. Knepley 
64228e4ac7eaSMatthew G. Knepley   Input Parameter:
64238e4ac7eaSMatthew G. Knepley . dm - The DM
64248e4ac7eaSMatthew G. Knepley 
64258e4ac7eaSMatthew G. Knepley   Output Parameter:
64268e4ac7eaSMatthew G. Knepley . useNatural - The flag to build the mapping to a natural order during distribution
64278e4ac7eaSMatthew G. Knepley 
64288e4ac7eaSMatthew G. Knepley   Level: beginner
64298e4ac7eaSMatthew G. Knepley 
64308e4ac7eaSMatthew G. Knepley .seealso: DMSetUseNatural(), DMCreate()
64318e4ac7eaSMatthew G. Knepley @*/
64328e4ac7eaSMatthew G. Knepley PetscErrorCode DMGetUseNatural(DM dm, PetscBool *useNatural)
64338e4ac7eaSMatthew G. Knepley {
64348e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
64358e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64368e4ac7eaSMatthew G. Knepley   PetscValidPointer(useNatural, 2);
64378e4ac7eaSMatthew G. Knepley   *useNatural = dm->useNatural;
64388e4ac7eaSMatthew G. Knepley   PetscFunctionReturn(0);
64398e4ac7eaSMatthew G. Knepley }
64408e4ac7eaSMatthew G. Knepley 
64418e4ac7eaSMatthew G. Knepley /*@
64425d3b26e6SMatthew G. Knepley   DMSetUseNatural - Set the flag for creating a mapping to the natural order after distribution
64438e4ac7eaSMatthew G. Knepley 
64448e4ac7eaSMatthew G. Knepley   Collective on dm
64458e4ac7eaSMatthew G. Knepley 
64468e4ac7eaSMatthew G. Knepley   Input Parameters:
64478e4ac7eaSMatthew G. Knepley + dm - The DM
64488e4ac7eaSMatthew G. Knepley - useNatural - The flag to build the mapping to a natural order during distribution
64498e4ac7eaSMatthew G. Knepley 
64505d3b26e6SMatthew G. Knepley   Note: This also causes the map to be build after DMCreateSubDM() and DMCreateSuperDM()
64515d3b26e6SMatthew G. Knepley 
64528e4ac7eaSMatthew G. Knepley   Level: beginner
64538e4ac7eaSMatthew G. Knepley 
64545d3b26e6SMatthew G. Knepley .seealso: DMGetUseNatural(), DMCreate(), DMPlexDistribute(), DMCreateSubDM(), DMCreateSuperDM()
64558e4ac7eaSMatthew G. Knepley @*/
64568e4ac7eaSMatthew G. Knepley PetscErrorCode DMSetUseNatural(DM dm, PetscBool useNatural)
64578e4ac7eaSMatthew G. Knepley {
64588e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
64598e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64608833efb5SBlaise Bourdin   PetscValidLogicalCollectiveBool(dm, useNatural, 2);
64618e4ac7eaSMatthew G. Knepley   dm->useNatural = useNatural;
64628e4ac7eaSMatthew G. Knepley   PetscFunctionReturn(0);
64638e4ac7eaSMatthew G. Knepley }
6464c58f1c22SToby Isaac 
6465c58f1c22SToby Isaac 
6466c58f1c22SToby Isaac /*@C
6467c58f1c22SToby Isaac   DMCreateLabel - Create a label of the given name if it does not already exist
6468c58f1c22SToby Isaac 
6469c58f1c22SToby Isaac   Not Collective
6470c58f1c22SToby Isaac 
6471c58f1c22SToby Isaac   Input Parameters:
6472c58f1c22SToby Isaac + dm   - The DM object
6473c58f1c22SToby Isaac - name - The label name
6474c58f1c22SToby Isaac 
6475c58f1c22SToby Isaac   Level: intermediate
6476c58f1c22SToby Isaac 
6477c58f1c22SToby Isaac .seealso: DMLabelCreate(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6478c58f1c22SToby Isaac @*/
6479c58f1c22SToby Isaac PetscErrorCode DMCreateLabel(DM dm, const char name[])
6480c58f1c22SToby Isaac {
6481c58f1c22SToby Isaac   DMLabelLink    next  = dm->labels->next;
6482c58f1c22SToby Isaac   PetscBool      flg   = PETSC_FALSE;
6483d67d17b1SMatthew G. Knepley   const char    *lname;
6484c58f1c22SToby Isaac   PetscErrorCode ierr;
6485c58f1c22SToby Isaac 
6486c58f1c22SToby Isaac   PetscFunctionBegin;
6487c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6488c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6489c58f1c22SToby Isaac   while (next) {
6490d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
6491d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, &flg);CHKERRQ(ierr);
6492c58f1c22SToby Isaac     if (flg) break;
6493c58f1c22SToby Isaac     next = next->next;
6494c58f1c22SToby Isaac   }
6495c58f1c22SToby Isaac   if (!flg) {
6496c58f1c22SToby Isaac     DMLabelLink tmpLabel;
6497c58f1c22SToby Isaac 
6498c58f1c22SToby Isaac     ierr = PetscCalloc1(1, &tmpLabel);CHKERRQ(ierr);
6499d67d17b1SMatthew G. Knepley     ierr = DMLabelCreate(PETSC_COMM_SELF, name, &tmpLabel->label);CHKERRQ(ierr);
6500c58f1c22SToby Isaac     tmpLabel->output = PETSC_TRUE;
6501c58f1c22SToby Isaac     tmpLabel->next   = dm->labels->next;
6502c58f1c22SToby Isaac     dm->labels->next = tmpLabel;
6503c58f1c22SToby Isaac   }
6504c58f1c22SToby Isaac   PetscFunctionReturn(0);
6505c58f1c22SToby Isaac }
6506c58f1c22SToby Isaac 
6507c58f1c22SToby Isaac /*@C
6508c58f1c22SToby Isaac   DMGetLabelValue - Get the value in a Sieve Label for the given point, with 0 as the default
6509c58f1c22SToby Isaac 
6510c58f1c22SToby Isaac   Not Collective
6511c58f1c22SToby Isaac 
6512c58f1c22SToby Isaac   Input Parameters:
6513c58f1c22SToby Isaac + dm   - The DM object
6514c58f1c22SToby Isaac . name - The label name
6515c58f1c22SToby Isaac - point - The mesh point
6516c58f1c22SToby Isaac 
6517c58f1c22SToby Isaac   Output Parameter:
6518c58f1c22SToby Isaac . value - The label value for this point, or -1 if the point is not in the label
6519c58f1c22SToby Isaac 
6520c58f1c22SToby Isaac   Level: beginner
6521c58f1c22SToby Isaac 
6522c58f1c22SToby Isaac .seealso: DMLabelGetValue(), DMSetLabelValue(), DMGetStratumIS()
6523c58f1c22SToby Isaac @*/
6524c58f1c22SToby Isaac PetscErrorCode DMGetLabelValue(DM dm, const char name[], PetscInt point, PetscInt *value)
6525c58f1c22SToby Isaac {
6526c58f1c22SToby Isaac   DMLabel        label;
6527c58f1c22SToby Isaac   PetscErrorCode ierr;
6528c58f1c22SToby Isaac 
6529c58f1c22SToby Isaac   PetscFunctionBegin;
6530c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6531c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6532c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
653313903a91SSatish Balay   if (!label) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "No label named %s was found", name);
6534c58f1c22SToby Isaac   ierr = DMLabelGetValue(label, point, value);CHKERRQ(ierr);
6535c58f1c22SToby Isaac   PetscFunctionReturn(0);
6536c58f1c22SToby Isaac }
6537c58f1c22SToby Isaac 
6538c58f1c22SToby Isaac /*@C
6539c58f1c22SToby Isaac   DMSetLabelValue - Add a point to a Sieve Label with given value
6540c58f1c22SToby Isaac 
6541c58f1c22SToby Isaac   Not Collective
6542c58f1c22SToby Isaac 
6543c58f1c22SToby Isaac   Input Parameters:
6544c58f1c22SToby Isaac + dm   - The DM object
6545c58f1c22SToby Isaac . name - The label name
6546c58f1c22SToby Isaac . point - The mesh point
6547c58f1c22SToby Isaac - value - The label value for this point
6548c58f1c22SToby Isaac 
6549c58f1c22SToby Isaac   Output Parameter:
6550c58f1c22SToby Isaac 
6551c58f1c22SToby Isaac   Level: beginner
6552c58f1c22SToby Isaac 
6553c58f1c22SToby Isaac .seealso: DMLabelSetValue(), DMGetStratumIS(), DMClearLabelValue()
6554c58f1c22SToby Isaac @*/
6555c58f1c22SToby Isaac PetscErrorCode DMSetLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
6556c58f1c22SToby Isaac {
6557c58f1c22SToby Isaac   DMLabel        label;
6558c58f1c22SToby Isaac   PetscErrorCode ierr;
6559c58f1c22SToby Isaac 
6560c58f1c22SToby Isaac   PetscFunctionBegin;
6561c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6562c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6563c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6564c58f1c22SToby Isaac   if (!label) {
6565c58f1c22SToby Isaac     ierr = DMCreateLabel(dm, name);CHKERRQ(ierr);
6566c58f1c22SToby Isaac     ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6567c58f1c22SToby Isaac   }
6568c58f1c22SToby Isaac   ierr = DMLabelSetValue(label, point, value);CHKERRQ(ierr);
6569c58f1c22SToby Isaac   PetscFunctionReturn(0);
6570c58f1c22SToby Isaac }
6571c58f1c22SToby Isaac 
6572c58f1c22SToby Isaac /*@C
6573c58f1c22SToby Isaac   DMClearLabelValue - Remove a point from a Sieve Label with given value
6574c58f1c22SToby Isaac 
6575c58f1c22SToby Isaac   Not Collective
6576c58f1c22SToby Isaac 
6577c58f1c22SToby Isaac   Input Parameters:
6578c58f1c22SToby Isaac + dm   - The DM object
6579c58f1c22SToby Isaac . name - The label name
6580c58f1c22SToby Isaac . point - The mesh point
6581c58f1c22SToby Isaac - value - The label value for this point
6582c58f1c22SToby Isaac 
6583c58f1c22SToby Isaac   Output Parameter:
6584c58f1c22SToby Isaac 
6585c58f1c22SToby Isaac   Level: beginner
6586c58f1c22SToby Isaac 
6587c58f1c22SToby Isaac .seealso: DMLabelClearValue(), DMSetLabelValue(), DMGetStratumIS()
6588c58f1c22SToby Isaac @*/
6589c58f1c22SToby Isaac PetscErrorCode DMClearLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
6590c58f1c22SToby Isaac {
6591c58f1c22SToby Isaac   DMLabel        label;
6592c58f1c22SToby Isaac   PetscErrorCode ierr;
6593c58f1c22SToby Isaac 
6594c58f1c22SToby Isaac   PetscFunctionBegin;
6595c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6596c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6597c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6598c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
6599c58f1c22SToby Isaac   ierr = DMLabelClearValue(label, point, value);CHKERRQ(ierr);
6600c58f1c22SToby Isaac   PetscFunctionReturn(0);
6601c58f1c22SToby Isaac }
6602c58f1c22SToby Isaac 
6603c58f1c22SToby Isaac /*@C
6604c58f1c22SToby Isaac   DMGetLabelSize - Get the number of different integer ids in a Label
6605c58f1c22SToby Isaac 
6606c58f1c22SToby Isaac   Not Collective
6607c58f1c22SToby Isaac 
6608c58f1c22SToby Isaac   Input Parameters:
6609c58f1c22SToby Isaac + dm   - The DM object
6610c58f1c22SToby Isaac - name - The label name
6611c58f1c22SToby Isaac 
6612c58f1c22SToby Isaac   Output Parameter:
6613c58f1c22SToby Isaac . size - The number of different integer ids, or 0 if the label does not exist
6614c58f1c22SToby Isaac 
6615c58f1c22SToby Isaac   Level: beginner
6616c58f1c22SToby Isaac 
6617df813f42SMatthew G. Knepley .seealso: DMLabelGetNumValues(), DMSetLabelValue()
6618c58f1c22SToby Isaac @*/
6619c58f1c22SToby Isaac PetscErrorCode DMGetLabelSize(DM dm, const char name[], PetscInt *size)
6620c58f1c22SToby Isaac {
6621c58f1c22SToby Isaac   DMLabel        label;
6622c58f1c22SToby Isaac   PetscErrorCode ierr;
6623c58f1c22SToby Isaac 
6624c58f1c22SToby Isaac   PetscFunctionBegin;
6625c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6626c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6627c58f1c22SToby Isaac   PetscValidPointer(size, 3);
6628c58f1c22SToby Isaac   ierr  = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6629c58f1c22SToby Isaac   *size = 0;
6630c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
6631c58f1c22SToby Isaac   ierr = DMLabelGetNumValues(label, size);CHKERRQ(ierr);
6632c58f1c22SToby Isaac   PetscFunctionReturn(0);
6633c58f1c22SToby Isaac }
6634c58f1c22SToby Isaac 
6635c58f1c22SToby Isaac /*@C
6636c58f1c22SToby Isaac   DMGetLabelIdIS - Get the integer ids in a label
6637c58f1c22SToby Isaac 
6638c58f1c22SToby Isaac   Not Collective
6639c58f1c22SToby Isaac 
6640c58f1c22SToby Isaac   Input Parameters:
6641c58f1c22SToby Isaac + mesh - The DM object
6642c58f1c22SToby Isaac - name - The label name
6643c58f1c22SToby Isaac 
6644c58f1c22SToby Isaac   Output Parameter:
6645c58f1c22SToby Isaac . ids - The integer ids, or NULL if the label does not exist
6646c58f1c22SToby Isaac 
6647c58f1c22SToby Isaac   Level: beginner
6648c58f1c22SToby Isaac 
6649c58f1c22SToby Isaac .seealso: DMLabelGetValueIS(), DMGetLabelSize()
6650c58f1c22SToby Isaac @*/
6651c58f1c22SToby Isaac PetscErrorCode DMGetLabelIdIS(DM dm, const char name[], IS *ids)
6652c58f1c22SToby Isaac {
6653c58f1c22SToby Isaac   DMLabel        label;
6654c58f1c22SToby Isaac   PetscErrorCode ierr;
6655c58f1c22SToby Isaac 
6656c58f1c22SToby Isaac   PetscFunctionBegin;
6657c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6658c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6659c58f1c22SToby Isaac   PetscValidPointer(ids, 3);
6660c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6661c58f1c22SToby Isaac   *ids = NULL;
6662dab2e251SBlaise Bourdin  if (label) {
6663c58f1c22SToby Isaac     ierr = DMLabelGetValueIS(label, ids);CHKERRQ(ierr);
6664dab2e251SBlaise Bourdin   } else {
6665dab2e251SBlaise Bourdin     /* returning an empty IS */
6666dab2e251SBlaise Bourdin     ierr = ISCreateGeneral(PETSC_COMM_SELF,0,NULL,PETSC_USE_POINTER,ids);CHKERRQ(ierr);
6667dab2e251SBlaise Bourdin   }
6668c58f1c22SToby Isaac   PetscFunctionReturn(0);
6669c58f1c22SToby Isaac }
6670c58f1c22SToby Isaac 
6671c58f1c22SToby Isaac /*@C
6672c58f1c22SToby Isaac   DMGetStratumSize - Get the number of points in a label stratum
6673c58f1c22SToby Isaac 
6674c58f1c22SToby Isaac   Not Collective
6675c58f1c22SToby Isaac 
6676c58f1c22SToby Isaac   Input Parameters:
6677c58f1c22SToby Isaac + dm - The DM object
6678c58f1c22SToby Isaac . name - The label name
6679c58f1c22SToby Isaac - value - The stratum value
6680c58f1c22SToby Isaac 
6681c58f1c22SToby Isaac   Output Parameter:
6682c58f1c22SToby Isaac . size - The stratum size
6683c58f1c22SToby Isaac 
6684c58f1c22SToby Isaac   Level: beginner
6685c58f1c22SToby Isaac 
6686c58f1c22SToby Isaac .seealso: DMLabelGetStratumSize(), DMGetLabelSize(), DMGetLabelIds()
6687c58f1c22SToby Isaac @*/
6688c58f1c22SToby Isaac PetscErrorCode DMGetStratumSize(DM dm, const char name[], PetscInt value, PetscInt *size)
6689c58f1c22SToby Isaac {
6690c58f1c22SToby Isaac   DMLabel        label;
6691c58f1c22SToby Isaac   PetscErrorCode ierr;
6692c58f1c22SToby Isaac 
6693c58f1c22SToby Isaac   PetscFunctionBegin;
6694c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6695c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6696c58f1c22SToby Isaac   PetscValidPointer(size, 4);
6697c58f1c22SToby Isaac   ierr  = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6698c58f1c22SToby Isaac   *size = 0;
6699c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
6700c58f1c22SToby Isaac   ierr = DMLabelGetStratumSize(label, value, size);CHKERRQ(ierr);
6701c58f1c22SToby Isaac   PetscFunctionReturn(0);
6702c58f1c22SToby Isaac }
6703c58f1c22SToby Isaac 
6704c58f1c22SToby Isaac /*@C
6705c58f1c22SToby Isaac   DMGetStratumIS - Get the points in a label stratum
6706c58f1c22SToby Isaac 
6707c58f1c22SToby Isaac   Not Collective
6708c58f1c22SToby Isaac 
6709c58f1c22SToby Isaac   Input Parameters:
6710c58f1c22SToby Isaac + dm - The DM object
6711c58f1c22SToby Isaac . name - The label name
6712c58f1c22SToby Isaac - value - The stratum value
6713c58f1c22SToby Isaac 
6714c58f1c22SToby Isaac   Output Parameter:
6715c58f1c22SToby Isaac . points - The stratum points, or NULL if the label does not exist or does not have that value
6716c58f1c22SToby Isaac 
6717c58f1c22SToby Isaac   Level: beginner
6718c58f1c22SToby Isaac 
6719c58f1c22SToby Isaac .seealso: DMLabelGetStratumIS(), DMGetStratumSize()
6720c58f1c22SToby Isaac @*/
6721c58f1c22SToby Isaac PetscErrorCode DMGetStratumIS(DM dm, const char name[], PetscInt value, IS *points)
6722c58f1c22SToby Isaac {
6723c58f1c22SToby Isaac   DMLabel        label;
6724c58f1c22SToby Isaac   PetscErrorCode ierr;
6725c58f1c22SToby Isaac 
6726c58f1c22SToby Isaac   PetscFunctionBegin;
6727c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6728c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6729c58f1c22SToby Isaac   PetscValidPointer(points, 4);
6730c58f1c22SToby Isaac   ierr    = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6731c58f1c22SToby Isaac   *points = NULL;
6732c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
6733c58f1c22SToby Isaac   ierr = DMLabelGetStratumIS(label, value, points);CHKERRQ(ierr);
6734c58f1c22SToby Isaac   PetscFunctionReturn(0);
6735c58f1c22SToby Isaac }
6736c58f1c22SToby Isaac 
67374de306b1SToby Isaac /*@C
67389044fa66SMatthew G. Knepley   DMSetStratumIS - Set the points in a label stratum
67394de306b1SToby Isaac 
67404de306b1SToby Isaac   Not Collective
67414de306b1SToby Isaac 
67424de306b1SToby Isaac   Input Parameters:
67434de306b1SToby Isaac + dm - The DM object
67444de306b1SToby Isaac . name - The label name
67454de306b1SToby Isaac . value - The stratum value
67464de306b1SToby Isaac - points - The stratum points
67474de306b1SToby Isaac 
67484de306b1SToby Isaac   Level: beginner
67494de306b1SToby Isaac 
67504de306b1SToby Isaac .seealso: DMLabelSetStratumIS(), DMGetStratumSize()
67514de306b1SToby Isaac @*/
67524de306b1SToby Isaac PetscErrorCode DMSetStratumIS(DM dm, const char name[], PetscInt value, IS points)
67534de306b1SToby Isaac {
67544de306b1SToby Isaac   DMLabel        label;
67554de306b1SToby Isaac   PetscErrorCode ierr;
67564de306b1SToby Isaac 
67574de306b1SToby Isaac   PetscFunctionBegin;
67584de306b1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
67594de306b1SToby Isaac   PetscValidCharPointer(name, 2);
67604de306b1SToby Isaac   PetscValidPointer(points, 4);
67614de306b1SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
67624de306b1SToby Isaac   if (!label) PetscFunctionReturn(0);
67634de306b1SToby Isaac   ierr = DMLabelSetStratumIS(label, value, points);CHKERRQ(ierr);
67644de306b1SToby Isaac   PetscFunctionReturn(0);
67654de306b1SToby Isaac }
67664de306b1SToby Isaac 
6767c58f1c22SToby Isaac /*@C
6768c58f1c22SToby Isaac   DMClearLabelStratum - Remove all points from a stratum from a Sieve Label
6769c58f1c22SToby Isaac 
6770c58f1c22SToby Isaac   Not Collective
6771c58f1c22SToby Isaac 
6772c58f1c22SToby Isaac   Input Parameters:
6773c58f1c22SToby Isaac + dm   - The DM object
6774c58f1c22SToby Isaac . name - The label name
6775c58f1c22SToby Isaac - value - The label value for this point
6776c58f1c22SToby Isaac 
6777c58f1c22SToby Isaac   Output Parameter:
6778c58f1c22SToby Isaac 
6779c58f1c22SToby Isaac   Level: beginner
6780c58f1c22SToby Isaac 
6781c58f1c22SToby Isaac .seealso: DMLabelClearStratum(), DMSetLabelValue(), DMGetStratumIS(), DMClearLabelValue()
6782c58f1c22SToby Isaac @*/
6783c58f1c22SToby Isaac PetscErrorCode DMClearLabelStratum(DM dm, const char name[], PetscInt value)
6784c58f1c22SToby Isaac {
6785c58f1c22SToby Isaac   DMLabel        label;
6786c58f1c22SToby Isaac   PetscErrorCode ierr;
6787c58f1c22SToby Isaac 
6788c58f1c22SToby Isaac   PetscFunctionBegin;
6789c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6790c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6791c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
6792c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
6793c58f1c22SToby Isaac   ierr = DMLabelClearStratum(label, value);CHKERRQ(ierr);
6794c58f1c22SToby Isaac   PetscFunctionReturn(0);
6795c58f1c22SToby Isaac }
6796c58f1c22SToby Isaac 
6797c58f1c22SToby Isaac /*@
6798c58f1c22SToby Isaac   DMGetNumLabels - Return the number of labels defined by the mesh
6799c58f1c22SToby Isaac 
6800c58f1c22SToby Isaac   Not Collective
6801c58f1c22SToby Isaac 
6802c58f1c22SToby Isaac   Input Parameter:
6803c58f1c22SToby Isaac . dm   - The DM object
6804c58f1c22SToby Isaac 
6805c58f1c22SToby Isaac   Output Parameter:
6806c58f1c22SToby Isaac . numLabels - the number of Labels
6807c58f1c22SToby Isaac 
6808c58f1c22SToby Isaac   Level: intermediate
6809c58f1c22SToby Isaac 
6810c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6811c58f1c22SToby Isaac @*/
6812c58f1c22SToby Isaac PetscErrorCode DMGetNumLabels(DM dm, PetscInt *numLabels)
6813c58f1c22SToby Isaac {
6814c58f1c22SToby Isaac   DMLabelLink next = dm->labels->next;
6815c58f1c22SToby Isaac   PetscInt  n    = 0;
6816c58f1c22SToby Isaac 
6817c58f1c22SToby Isaac   PetscFunctionBegin;
6818c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6819c58f1c22SToby Isaac   PetscValidPointer(numLabels, 2);
6820c58f1c22SToby Isaac   while (next) {++n; next = next->next;}
6821c58f1c22SToby Isaac   *numLabels = n;
6822c58f1c22SToby Isaac   PetscFunctionReturn(0);
6823c58f1c22SToby Isaac }
6824c58f1c22SToby Isaac 
6825c58f1c22SToby Isaac /*@C
6826c58f1c22SToby Isaac   DMGetLabelName - Return the name of nth label
6827c58f1c22SToby Isaac 
6828c58f1c22SToby Isaac   Not Collective
6829c58f1c22SToby Isaac 
6830c58f1c22SToby Isaac   Input Parameters:
6831c58f1c22SToby Isaac + dm - The DM object
6832c58f1c22SToby Isaac - n  - the label number
6833c58f1c22SToby Isaac 
6834c58f1c22SToby Isaac   Output Parameter:
6835c58f1c22SToby Isaac . name - the label name
6836c58f1c22SToby Isaac 
6837c58f1c22SToby Isaac   Level: intermediate
6838c58f1c22SToby Isaac 
6839c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6840c58f1c22SToby Isaac @*/
6841c58f1c22SToby Isaac PetscErrorCode DMGetLabelName(DM dm, PetscInt n, const char **name)
6842c58f1c22SToby Isaac {
6843c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6844c58f1c22SToby Isaac   PetscInt       l    = 0;
6845d67d17b1SMatthew G. Knepley   PetscErrorCode ierr;
6846c58f1c22SToby Isaac 
6847c58f1c22SToby Isaac   PetscFunctionBegin;
6848c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6849c58f1c22SToby Isaac   PetscValidPointer(name, 3);
6850c58f1c22SToby Isaac   while (next) {
6851c58f1c22SToby Isaac     if (l == n) {
6852d67d17b1SMatthew G. Knepley       ierr = PetscObjectGetName((PetscObject) next->label, name);CHKERRQ(ierr);
6853c58f1c22SToby Isaac       PetscFunctionReturn(0);
6854c58f1c22SToby Isaac     }
6855c58f1c22SToby Isaac     ++l;
6856c58f1c22SToby Isaac     next = next->next;
6857c58f1c22SToby Isaac   }
6858c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n);
6859c58f1c22SToby Isaac }
6860c58f1c22SToby Isaac 
6861c58f1c22SToby Isaac /*@C
6862c58f1c22SToby Isaac   DMHasLabel - Determine whether the mesh has a label of a given name
6863c58f1c22SToby Isaac 
6864c58f1c22SToby Isaac   Not Collective
6865c58f1c22SToby Isaac 
6866c58f1c22SToby Isaac   Input Parameters:
6867c58f1c22SToby Isaac + dm   - The DM object
6868c58f1c22SToby Isaac - name - The label name
6869c58f1c22SToby Isaac 
6870c58f1c22SToby Isaac   Output Parameter:
6871c58f1c22SToby Isaac . hasLabel - PETSC_TRUE if the label is present
6872c58f1c22SToby Isaac 
6873c58f1c22SToby Isaac   Level: intermediate
6874c58f1c22SToby Isaac 
6875c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6876c58f1c22SToby Isaac @*/
6877c58f1c22SToby Isaac PetscErrorCode DMHasLabel(DM dm, const char name[], PetscBool *hasLabel)
6878c58f1c22SToby Isaac {
6879c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6880d67d17b1SMatthew G. Knepley   const char    *lname;
6881c58f1c22SToby Isaac   PetscErrorCode ierr;
6882c58f1c22SToby Isaac 
6883c58f1c22SToby Isaac   PetscFunctionBegin;
6884c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6885c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6886c58f1c22SToby Isaac   PetscValidPointer(hasLabel, 3);
6887c58f1c22SToby Isaac   *hasLabel = PETSC_FALSE;
6888c58f1c22SToby Isaac   while (next) {
6889d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
6890d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, hasLabel);CHKERRQ(ierr);
6891c58f1c22SToby Isaac     if (*hasLabel) break;
6892c58f1c22SToby Isaac     next = next->next;
6893c58f1c22SToby Isaac   }
6894c58f1c22SToby Isaac   PetscFunctionReturn(0);
6895c58f1c22SToby Isaac }
6896c58f1c22SToby Isaac 
6897c58f1c22SToby Isaac /*@C
6898c58f1c22SToby Isaac   DMGetLabel - Return the label of a given name, or NULL
6899c58f1c22SToby Isaac 
6900c58f1c22SToby Isaac   Not Collective
6901c58f1c22SToby Isaac 
6902c58f1c22SToby Isaac   Input Parameters:
6903c58f1c22SToby Isaac + dm   - The DM object
6904c58f1c22SToby Isaac - name - The label name
6905c58f1c22SToby Isaac 
6906c58f1c22SToby Isaac   Output Parameter:
6907c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent
6908c58f1c22SToby Isaac 
6909c58f1c22SToby Isaac   Level: intermediate
6910c58f1c22SToby Isaac 
6911c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6912c58f1c22SToby Isaac @*/
6913c58f1c22SToby Isaac PetscErrorCode DMGetLabel(DM dm, const char name[], DMLabel *label)
6914c58f1c22SToby Isaac {
6915c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6916c58f1c22SToby Isaac   PetscBool      hasLabel;
6917d67d17b1SMatthew G. Knepley   const char    *lname;
6918c58f1c22SToby Isaac   PetscErrorCode ierr;
6919c58f1c22SToby Isaac 
6920c58f1c22SToby Isaac   PetscFunctionBegin;
6921c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6922c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
6923c58f1c22SToby Isaac   PetscValidPointer(label, 3);
6924c58f1c22SToby Isaac   *label = NULL;
6925c58f1c22SToby Isaac   while (next) {
6926d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
6927d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, &hasLabel);CHKERRQ(ierr);
6928c58f1c22SToby Isaac     if (hasLabel) {
6929c58f1c22SToby Isaac       *label = next->label;
6930c58f1c22SToby Isaac       break;
6931c58f1c22SToby Isaac     }
6932c58f1c22SToby Isaac     next = next->next;
6933c58f1c22SToby Isaac   }
6934c58f1c22SToby Isaac   PetscFunctionReturn(0);
6935c58f1c22SToby Isaac }
6936c58f1c22SToby Isaac 
6937c58f1c22SToby Isaac /*@C
6938c58f1c22SToby Isaac   DMGetLabelByNum - Return the nth label
6939c58f1c22SToby Isaac 
6940c58f1c22SToby Isaac   Not Collective
6941c58f1c22SToby Isaac 
6942c58f1c22SToby Isaac   Input Parameters:
6943c58f1c22SToby Isaac + dm - The DM object
6944c58f1c22SToby Isaac - n  - the label number
6945c58f1c22SToby Isaac 
6946c58f1c22SToby Isaac   Output Parameter:
6947c58f1c22SToby Isaac . label - the label
6948c58f1c22SToby Isaac 
6949c58f1c22SToby Isaac   Level: intermediate
6950c58f1c22SToby Isaac 
6951c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6952c58f1c22SToby Isaac @*/
6953c58f1c22SToby Isaac PetscErrorCode DMGetLabelByNum(DM dm, PetscInt n, DMLabel *label)
6954c58f1c22SToby Isaac {
6955c58f1c22SToby Isaac   DMLabelLink next = dm->labels->next;
6956c58f1c22SToby Isaac   PetscInt    l    = 0;
6957c58f1c22SToby Isaac 
6958c58f1c22SToby Isaac   PetscFunctionBegin;
6959c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6960c58f1c22SToby Isaac   PetscValidPointer(label, 3);
6961c58f1c22SToby Isaac   while (next) {
6962c58f1c22SToby Isaac     if (l == n) {
6963c58f1c22SToby Isaac       *label = next->label;
6964c58f1c22SToby Isaac       PetscFunctionReturn(0);
6965c58f1c22SToby Isaac     }
6966c58f1c22SToby Isaac     ++l;
6967c58f1c22SToby Isaac     next = next->next;
6968c58f1c22SToby Isaac   }
6969c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n);
6970c58f1c22SToby Isaac }
6971c58f1c22SToby Isaac 
6972c58f1c22SToby Isaac /*@C
6973c58f1c22SToby Isaac   DMAddLabel - Add the label to this mesh
6974c58f1c22SToby Isaac 
6975c58f1c22SToby Isaac   Not Collective
6976c58f1c22SToby Isaac 
6977c58f1c22SToby Isaac   Input Parameters:
6978c58f1c22SToby Isaac + dm   - The DM object
6979c58f1c22SToby Isaac - label - The DMLabel
6980c58f1c22SToby Isaac 
6981c58f1c22SToby Isaac   Level: developer
6982c58f1c22SToby Isaac 
6983c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6984c58f1c22SToby Isaac @*/
6985c58f1c22SToby Isaac PetscErrorCode DMAddLabel(DM dm, DMLabel label)
6986c58f1c22SToby Isaac {
6987c58f1c22SToby Isaac   DMLabelLink    tmpLabel;
6988c58f1c22SToby Isaac   PetscBool      hasLabel;
6989d67d17b1SMatthew G. Knepley   const char    *lname;
6990c58f1c22SToby Isaac   PetscErrorCode ierr;
6991c58f1c22SToby Isaac 
6992c58f1c22SToby Isaac   PetscFunctionBegin;
6993c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6994d67d17b1SMatthew G. Knepley   ierr = PetscObjectGetName((PetscObject) label, &lname);CHKERRQ(ierr);
6995d67d17b1SMatthew G. Knepley   ierr = DMHasLabel(dm, lname, &hasLabel);CHKERRQ(ierr);
6996d67d17b1SMatthew G. Knepley   if (hasLabel) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %s already exists in this DM", lname);
6997c58f1c22SToby Isaac   ierr = PetscCalloc1(1, &tmpLabel);CHKERRQ(ierr);
6998c58f1c22SToby Isaac   tmpLabel->label  = label;
6999c58f1c22SToby Isaac   tmpLabel->output = PETSC_TRUE;
7000c58f1c22SToby Isaac   tmpLabel->next   = dm->labels->next;
7001c58f1c22SToby Isaac   dm->labels->next = tmpLabel;
7002c58f1c22SToby Isaac   PetscFunctionReturn(0);
7003c58f1c22SToby Isaac }
7004c58f1c22SToby Isaac 
7005c58f1c22SToby Isaac /*@C
7006c58f1c22SToby Isaac   DMRemoveLabel - Remove the label from this mesh
7007c58f1c22SToby Isaac 
7008c58f1c22SToby Isaac   Not Collective
7009c58f1c22SToby Isaac 
7010c58f1c22SToby Isaac   Input Parameters:
7011c58f1c22SToby Isaac + dm   - The DM object
7012c58f1c22SToby Isaac - name - The label name
7013c58f1c22SToby Isaac 
7014c58f1c22SToby Isaac   Output Parameter:
7015c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent
7016c58f1c22SToby Isaac 
7017c58f1c22SToby Isaac   Level: developer
7018c58f1c22SToby Isaac 
7019c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
7020c58f1c22SToby Isaac @*/
7021c58f1c22SToby Isaac PetscErrorCode DMRemoveLabel(DM dm, const char name[], DMLabel *label)
7022c58f1c22SToby Isaac {
7023c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
7024c58f1c22SToby Isaac   DMLabelLink    last = NULL;
7025c58f1c22SToby Isaac   PetscBool      hasLabel;
7026d67d17b1SMatthew G. Knepley   const char    *lname;
7027c58f1c22SToby Isaac   PetscErrorCode ierr;
7028c58f1c22SToby Isaac 
7029c58f1c22SToby Isaac   PetscFunctionBegin;
7030c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7031c58f1c22SToby Isaac   ierr   = DMHasLabel(dm, name, &hasLabel);CHKERRQ(ierr);
7032c58f1c22SToby Isaac   *label = NULL;
7033c58f1c22SToby Isaac   if (!hasLabel) PetscFunctionReturn(0);
7034c58f1c22SToby Isaac   while (next) {
7035d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
7036d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, &hasLabel);CHKERRQ(ierr);
7037c58f1c22SToby Isaac     if (hasLabel) {
7038c58f1c22SToby Isaac       if (last) last->next       = next->next;
7039c58f1c22SToby Isaac       else      dm->labels->next = next->next;
7040c58f1c22SToby Isaac       next->next = NULL;
7041c58f1c22SToby Isaac       *label     = next->label;
7042c58f1c22SToby Isaac       ierr = PetscStrcmp(name, "depth", &hasLabel);CHKERRQ(ierr);
7043c58f1c22SToby Isaac       if (hasLabel) {
7044c58f1c22SToby Isaac         dm->depthLabel = NULL;
7045c58f1c22SToby Isaac       }
7046c58f1c22SToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
7047c58f1c22SToby Isaac       break;
7048c58f1c22SToby Isaac     }
7049c58f1c22SToby Isaac     last = next;
7050c58f1c22SToby Isaac     next = next->next;
7051c58f1c22SToby Isaac   }
7052c58f1c22SToby Isaac   PetscFunctionReturn(0);
7053c58f1c22SToby Isaac }
7054c58f1c22SToby Isaac 
7055c58f1c22SToby Isaac /*@C
7056c58f1c22SToby Isaac   DMGetLabelOutput - Get the output flag for a given label
7057c58f1c22SToby Isaac 
7058c58f1c22SToby Isaac   Not Collective
7059c58f1c22SToby Isaac 
7060c58f1c22SToby Isaac   Input Parameters:
7061c58f1c22SToby Isaac + dm   - The DM object
7062c58f1c22SToby Isaac - name - The label name
7063c58f1c22SToby Isaac 
7064c58f1c22SToby Isaac   Output Parameter:
7065c58f1c22SToby Isaac . output - The flag for output
7066c58f1c22SToby Isaac 
7067c58f1c22SToby Isaac   Level: developer
7068c58f1c22SToby Isaac 
7069c58f1c22SToby Isaac .seealso: DMSetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
7070c58f1c22SToby Isaac @*/
7071c58f1c22SToby Isaac PetscErrorCode DMGetLabelOutput(DM dm, const char name[], PetscBool *output)
7072c58f1c22SToby Isaac {
7073c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
7074d67d17b1SMatthew G. Knepley   const char    *lname;
7075c58f1c22SToby Isaac   PetscErrorCode ierr;
7076c58f1c22SToby Isaac 
7077c58f1c22SToby Isaac   PetscFunctionBegin;
7078c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7079c58f1c22SToby Isaac   PetscValidPointer(name, 2);
7080c58f1c22SToby Isaac   PetscValidPointer(output, 3);
7081c58f1c22SToby Isaac   while (next) {
7082c58f1c22SToby Isaac     PetscBool flg;
7083c58f1c22SToby Isaac 
7084d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
7085d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, &flg);CHKERRQ(ierr);
7086c58f1c22SToby Isaac     if (flg) {*output = next->output; PetscFunctionReturn(0);}
7087c58f1c22SToby Isaac     next = next->next;
7088c58f1c22SToby Isaac   }
7089c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
7090c58f1c22SToby Isaac }
7091c58f1c22SToby Isaac 
7092c58f1c22SToby Isaac /*@C
7093c58f1c22SToby Isaac   DMSetLabelOutput - Set the output flag for a given label
7094c58f1c22SToby Isaac 
7095c58f1c22SToby Isaac   Not Collective
7096c58f1c22SToby Isaac 
7097c58f1c22SToby Isaac   Input Parameters:
7098c58f1c22SToby Isaac + dm     - The DM object
7099c58f1c22SToby Isaac . name   - The label name
7100c58f1c22SToby Isaac - output - The flag for output
7101c58f1c22SToby Isaac 
7102c58f1c22SToby Isaac   Level: developer
7103c58f1c22SToby Isaac 
7104c58f1c22SToby Isaac .seealso: DMGetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
7105c58f1c22SToby Isaac @*/
7106c58f1c22SToby Isaac PetscErrorCode DMSetLabelOutput(DM dm, const char name[], PetscBool output)
7107c58f1c22SToby Isaac {
7108c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
7109d67d17b1SMatthew G. Knepley   const char    *lname;
7110c58f1c22SToby Isaac   PetscErrorCode ierr;
7111c58f1c22SToby Isaac 
7112c58f1c22SToby Isaac   PetscFunctionBegin;
7113c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7114c58f1c22SToby Isaac   PetscValidPointer(name, 2);
7115c58f1c22SToby Isaac   while (next) {
7116c58f1c22SToby Isaac     PetscBool flg;
7117c58f1c22SToby Isaac 
7118d67d17b1SMatthew G. Knepley     ierr = PetscObjectGetName((PetscObject) next->label, &lname);CHKERRQ(ierr);
7119d67d17b1SMatthew G. Knepley     ierr = PetscStrcmp(name, lname, &flg);CHKERRQ(ierr);
7120c58f1c22SToby Isaac     if (flg) {next->output = output; PetscFunctionReturn(0);}
7121c58f1c22SToby Isaac     next = next->next;
7122c58f1c22SToby Isaac   }
7123c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
7124c58f1c22SToby Isaac }
7125c58f1c22SToby Isaac 
7126c58f1c22SToby Isaac 
7127c58f1c22SToby Isaac /*@
7128c58f1c22SToby Isaac   DMCopyLabels - Copy labels from one mesh to another with a superset of the points
7129c58f1c22SToby Isaac 
7130*d083f849SBarry Smith   Collective on dmA
7131c58f1c22SToby Isaac 
7132c58f1c22SToby Isaac   Input Parameter:
71332e17dfb7SMatthew G. Knepley . dmA - The DM object with initial labels
7134c58f1c22SToby Isaac 
7135c58f1c22SToby Isaac   Output Parameter:
71362e17dfb7SMatthew G. Knepley . dmB - The DM object with copied labels
7137c58f1c22SToby Isaac 
7138c58f1c22SToby Isaac   Level: intermediate
7139c58f1c22SToby Isaac 
7140c58f1c22SToby Isaac   Note: This is typically used when interpolating or otherwise adding to a mesh
7141c58f1c22SToby Isaac 
7142367003a6SStefano Zampini .seealso: DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM(), DMGetCoordinateSection()
7143c58f1c22SToby Isaac @*/
7144c58f1c22SToby Isaac PetscErrorCode DMCopyLabels(DM dmA, DM dmB)
7145c58f1c22SToby Isaac {
7146c58f1c22SToby Isaac   PetscInt       numLabels, l;
7147c58f1c22SToby Isaac   PetscErrorCode ierr;
7148c58f1c22SToby Isaac 
7149c58f1c22SToby Isaac   PetscFunctionBegin;
7150c58f1c22SToby Isaac   if (dmA == dmB) PetscFunctionReturn(0);
7151c58f1c22SToby Isaac   ierr = DMGetNumLabels(dmA, &numLabels);CHKERRQ(ierr);
7152c58f1c22SToby Isaac   for (l = 0; l < numLabels; ++l) {
7153c58f1c22SToby Isaac     DMLabel     label, labelNew;
7154c58f1c22SToby Isaac     const char *name;
7155c58f1c22SToby Isaac     PetscBool   flg;
7156c58f1c22SToby Isaac 
7157c58f1c22SToby Isaac     ierr = DMGetLabelName(dmA, l, &name);CHKERRQ(ierr);
7158c58f1c22SToby Isaac     ierr = PetscStrcmp(name, "depth", &flg);CHKERRQ(ierr);
7159c58f1c22SToby Isaac     if (flg) continue;
71607d5acc75SStefano Zampini     ierr = PetscStrcmp(name, "dim", &flg);CHKERRQ(ierr);
71617d5acc75SStefano Zampini     if (flg) continue;
7162c58f1c22SToby Isaac     ierr = DMGetLabel(dmA, name, &label);CHKERRQ(ierr);
7163c58f1c22SToby Isaac     ierr = DMLabelDuplicate(label, &labelNew);CHKERRQ(ierr);
7164c58f1c22SToby Isaac     ierr = DMAddLabel(dmB, labelNew);CHKERRQ(ierr);
7165c58f1c22SToby Isaac   }
7166c58f1c22SToby Isaac   PetscFunctionReturn(0);
7167c58f1c22SToby Isaac }
7168a8fb8f29SToby Isaac 
7169a8fb8f29SToby Isaac /*@
7170a8fb8f29SToby Isaac   DMGetCoarseDM - Get the coarse mesh from which this was obtained by refinement
7171a8fb8f29SToby Isaac 
7172a8fb8f29SToby Isaac   Input Parameter:
7173a8fb8f29SToby Isaac . dm - The DM object
7174a8fb8f29SToby Isaac 
7175a8fb8f29SToby Isaac   Output Parameter:
7176a8fb8f29SToby Isaac . cdm - The coarse DM
7177a8fb8f29SToby Isaac 
7178a8fb8f29SToby Isaac   Level: intermediate
7179a8fb8f29SToby Isaac 
7180a8fb8f29SToby Isaac .seealso: DMSetCoarseDM()
7181a8fb8f29SToby Isaac @*/
7182a8fb8f29SToby Isaac PetscErrorCode DMGetCoarseDM(DM dm, DM *cdm)
7183a8fb8f29SToby Isaac {
7184a8fb8f29SToby Isaac   PetscFunctionBegin;
7185a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7186a8fb8f29SToby Isaac   PetscValidPointer(cdm, 2);
7187a8fb8f29SToby Isaac   *cdm = dm->coarseMesh;
7188a8fb8f29SToby Isaac   PetscFunctionReturn(0);
7189a8fb8f29SToby Isaac }
7190a8fb8f29SToby Isaac 
7191a8fb8f29SToby Isaac /*@
7192a8fb8f29SToby Isaac   DMSetCoarseDM - Set the coarse mesh from which this was obtained by refinement
7193a8fb8f29SToby Isaac 
7194a8fb8f29SToby Isaac   Input Parameters:
7195a8fb8f29SToby Isaac + dm - The DM object
7196a8fb8f29SToby Isaac - cdm - The coarse DM
7197a8fb8f29SToby Isaac 
7198a8fb8f29SToby Isaac   Level: intermediate
7199a8fb8f29SToby Isaac 
7200a8fb8f29SToby Isaac .seealso: DMGetCoarseDM()
7201a8fb8f29SToby Isaac @*/
7202a8fb8f29SToby Isaac PetscErrorCode DMSetCoarseDM(DM dm, DM cdm)
7203a8fb8f29SToby Isaac {
7204a8fb8f29SToby Isaac   PetscErrorCode ierr;
7205a8fb8f29SToby Isaac 
7206a8fb8f29SToby Isaac   PetscFunctionBegin;
7207a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7208a8fb8f29SToby Isaac   if (cdm) PetscValidHeaderSpecific(cdm, DM_CLASSID, 2);
7209a8fb8f29SToby Isaac   ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr);
7210a8fb8f29SToby Isaac   ierr = DMDestroy(&dm->coarseMesh);CHKERRQ(ierr);
7211a8fb8f29SToby Isaac   dm->coarseMesh = cdm;
7212a8fb8f29SToby Isaac   PetscFunctionReturn(0);
7213a8fb8f29SToby Isaac }
7214a8fb8f29SToby Isaac 
721588bdff64SToby Isaac /*@
721688bdff64SToby Isaac   DMGetFineDM - Get the fine mesh from which this was obtained by refinement
721788bdff64SToby Isaac 
721888bdff64SToby Isaac   Input Parameter:
721988bdff64SToby Isaac . dm - The DM object
722088bdff64SToby Isaac 
722188bdff64SToby Isaac   Output Parameter:
722288bdff64SToby Isaac . fdm - The fine DM
722388bdff64SToby Isaac 
722488bdff64SToby Isaac   Level: intermediate
722588bdff64SToby Isaac 
722688bdff64SToby Isaac .seealso: DMSetFineDM()
722788bdff64SToby Isaac @*/
722888bdff64SToby Isaac PetscErrorCode DMGetFineDM(DM dm, DM *fdm)
722988bdff64SToby Isaac {
723088bdff64SToby Isaac   PetscFunctionBegin;
723188bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
723288bdff64SToby Isaac   PetscValidPointer(fdm, 2);
723388bdff64SToby Isaac   *fdm = dm->fineMesh;
723488bdff64SToby Isaac   PetscFunctionReturn(0);
723588bdff64SToby Isaac }
723688bdff64SToby Isaac 
723788bdff64SToby Isaac /*@
723888bdff64SToby Isaac   DMSetFineDM - Set the fine mesh from which this was obtained by refinement
723988bdff64SToby Isaac 
724088bdff64SToby Isaac   Input Parameters:
724188bdff64SToby Isaac + dm - The DM object
724288bdff64SToby Isaac - fdm - The fine DM
724388bdff64SToby Isaac 
724488bdff64SToby Isaac   Level: intermediate
724588bdff64SToby Isaac 
724688bdff64SToby Isaac .seealso: DMGetFineDM()
724788bdff64SToby Isaac @*/
724888bdff64SToby Isaac PetscErrorCode DMSetFineDM(DM dm, DM fdm)
724988bdff64SToby Isaac {
725088bdff64SToby Isaac   PetscErrorCode ierr;
725188bdff64SToby Isaac 
725288bdff64SToby Isaac   PetscFunctionBegin;
725388bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
725488bdff64SToby Isaac   if (fdm) PetscValidHeaderSpecific(fdm, DM_CLASSID, 2);
725588bdff64SToby Isaac   ierr = PetscObjectReference((PetscObject)fdm);CHKERRQ(ierr);
725688bdff64SToby Isaac   ierr = DMDestroy(&dm->fineMesh);CHKERRQ(ierr);
725788bdff64SToby Isaac   dm->fineMesh = fdm;
725888bdff64SToby Isaac   PetscFunctionReturn(0);
725988bdff64SToby Isaac }
726088bdff64SToby Isaac 
7261a6ba4734SToby Isaac /*=== DMBoundary code ===*/
7262a6ba4734SToby Isaac 
7263a6ba4734SToby Isaac PetscErrorCode DMCopyBoundary(DM dm, DM dmNew)
7264a6ba4734SToby Isaac {
7265e5e52638SMatthew G. Knepley   PetscInt       d;
7266a6ba4734SToby Isaac   PetscErrorCode ierr;
7267a6ba4734SToby Isaac 
7268a6ba4734SToby Isaac   PetscFunctionBegin;
7269e5e52638SMatthew G. Knepley   for (d = 0; d < dm->Nds; ++d) {
7270e5e52638SMatthew G. Knepley     ierr = PetscDSCopyBoundary(dm->probs[d].ds, dmNew->probs[d].ds);CHKERRQ(ierr);
7271e5e52638SMatthew G. Knepley   }
7272a6ba4734SToby Isaac   PetscFunctionReturn(0);
7273a6ba4734SToby Isaac }
7274a6ba4734SToby Isaac 
7275a6ba4734SToby Isaac /*@C
7276a6ba4734SToby Isaac   DMAddBoundary - Add a boundary condition to the model
7277a6ba4734SToby Isaac 
7278a6ba4734SToby Isaac   Input Parameters:
72794c258f51SMatthew G. Knepley + dm          - The DM, with a PetscDS that matches the problem being constrained
7280f971fd6bSMatthew G. Knepley . type        - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann)
7281a6ba4734SToby Isaac . name        - The BC name
7282a6ba4734SToby Isaac . labelname   - The label defining constrained points
7283a6ba4734SToby Isaac . field       - The field to constrain
7284e8ecbf3fSStefano Zampini . numcomps    - The number of constrained field components (0 will constrain all fields)
7285a6ba4734SToby Isaac . comps       - An array of constrained component numbers
7286a6ba4734SToby Isaac . bcFunc      - A pointwise function giving boundary values
7287a6ba4734SToby Isaac . numids      - The number of DMLabel ids for constrained points
7288a6ba4734SToby Isaac . ids         - An array of ids for constrained points
7289a6ba4734SToby Isaac - ctx         - An optional user context for bcFunc
7290a6ba4734SToby Isaac 
7291a6ba4734SToby Isaac   Options Database Keys:
7292a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids
7293a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components
7294a6ba4734SToby Isaac 
7295a6ba4734SToby Isaac   Level: developer
7296a6ba4734SToby Isaac 
7297a6ba4734SToby Isaac .seealso: DMGetBoundary()
7298a6ba4734SToby Isaac @*/
7299a30ec4eaSSatish 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)
7300a6ba4734SToby Isaac {
7301e5e52638SMatthew G. Knepley   PetscDS        ds;
7302a6ba4734SToby Isaac   PetscErrorCode ierr;
7303a6ba4734SToby Isaac 
7304a6ba4734SToby Isaac   PetscFunctionBegin;
7305a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7306e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
7307e5e52638SMatthew G. Knepley   ierr = PetscDSAddBoundary(ds, type,name, labelname, field, numcomps, comps, bcFunc, numids, ids, ctx);CHKERRQ(ierr);
7308a6ba4734SToby Isaac   PetscFunctionReturn(0);
7309a6ba4734SToby Isaac }
7310a6ba4734SToby Isaac 
7311a6ba4734SToby Isaac /*@
7312a6ba4734SToby Isaac   DMGetNumBoundary - Get the number of registered BC
7313a6ba4734SToby Isaac 
7314a6ba4734SToby Isaac   Input Parameters:
7315a6ba4734SToby Isaac . dm - The mesh object
7316a6ba4734SToby Isaac 
7317a6ba4734SToby Isaac   Output Parameters:
7318a6ba4734SToby Isaac . numBd - The number of BC
7319a6ba4734SToby Isaac 
7320a6ba4734SToby Isaac   Level: intermediate
7321a6ba4734SToby Isaac 
7322a6ba4734SToby Isaac .seealso: DMAddBoundary(), DMGetBoundary()
7323a6ba4734SToby Isaac @*/
7324a6ba4734SToby Isaac PetscErrorCode DMGetNumBoundary(DM dm, PetscInt *numBd)
7325a6ba4734SToby Isaac {
7326e5e52638SMatthew G. Knepley   PetscDS        ds;
732758ebd649SToby Isaac   PetscErrorCode ierr;
7328a6ba4734SToby Isaac 
7329a6ba4734SToby Isaac   PetscFunctionBegin;
7330a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7331e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
7332e5e52638SMatthew G. Knepley   ierr = PetscDSGetNumBoundary(ds, numBd);CHKERRQ(ierr);
7333a6ba4734SToby Isaac   PetscFunctionReturn(0);
7334a6ba4734SToby Isaac }
7335a6ba4734SToby Isaac 
7336a6ba4734SToby Isaac /*@C
73371c531cf8SMatthew G. Knepley   DMGetBoundary - Get a model boundary condition
7338a6ba4734SToby Isaac 
7339a6ba4734SToby Isaac   Input Parameters:
7340a6ba4734SToby Isaac + dm          - The mesh object
7341a6ba4734SToby Isaac - bd          - The BC number
7342a6ba4734SToby Isaac 
7343a6ba4734SToby Isaac   Output Parameters:
7344f971fd6bSMatthew G. Knepley + type        - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann)
7345a6ba4734SToby Isaac . name        - The BC name
7346a6ba4734SToby Isaac . labelname   - The label defining constrained points
7347a6ba4734SToby Isaac . field       - The field to constrain
7348a6ba4734SToby Isaac . numcomps    - The number of constrained field components
7349a6ba4734SToby Isaac . comps       - An array of constrained component numbers
7350a6ba4734SToby Isaac . bcFunc      - A pointwise function giving boundary values
7351a6ba4734SToby Isaac . numids      - The number of DMLabel ids for constrained points
7352a6ba4734SToby Isaac . ids         - An array of ids for constrained points
7353a6ba4734SToby Isaac - ctx         - An optional user context for bcFunc
7354a6ba4734SToby Isaac 
7355a6ba4734SToby Isaac   Options Database Keys:
7356a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids
7357a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components
7358a6ba4734SToby Isaac 
7359a6ba4734SToby Isaac   Level: developer
7360a6ba4734SToby Isaac 
7361a6ba4734SToby Isaac .seealso: DMAddBoundary()
7362a6ba4734SToby Isaac @*/
7363a30ec4eaSSatish 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)
7364a6ba4734SToby Isaac {
7365e5e52638SMatthew G. Knepley   PetscDS        ds;
736658ebd649SToby Isaac   PetscErrorCode ierr;
7367a6ba4734SToby Isaac 
7368a6ba4734SToby Isaac   PetscFunctionBegin;
7369a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7370e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
7371e5e52638SMatthew G. Knepley   ierr = PetscDSGetBoundary(ds, bd, type, name, labelname, field, numcomps, comps, func, numids, ids, ctx);CHKERRQ(ierr);
7372a6ba4734SToby Isaac   PetscFunctionReturn(0);
7373a6ba4734SToby Isaac }
7374a6ba4734SToby Isaac 
7375e6f8dbb6SToby Isaac static PetscErrorCode DMPopulateBoundary(DM dm)
7376e6f8dbb6SToby Isaac {
7377e5e52638SMatthew G. Knepley   PetscDS        ds;
7378dff059c6SToby Isaac   DMBoundary    *lastnext;
7379e6f8dbb6SToby Isaac   DSBoundary     dsbound;
7380e6f8dbb6SToby Isaac   PetscErrorCode ierr;
7381e6f8dbb6SToby Isaac 
7382e6f8dbb6SToby Isaac   PetscFunctionBegin;
7383e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
7384e5e52638SMatthew G. Knepley   dsbound = ds->boundary;
738547a1f5adSToby Isaac   if (dm->boundary) {
738647a1f5adSToby Isaac     DMBoundary next = dm->boundary;
738747a1f5adSToby Isaac 
738847a1f5adSToby Isaac     /* quick check to see if the PetscDS has changed */
738947a1f5adSToby Isaac     if (next->dsboundary == dsbound) PetscFunctionReturn(0);
739047a1f5adSToby Isaac     /* the PetscDS has changed: tear down and rebuild */
739147a1f5adSToby Isaac     while (next) {
739247a1f5adSToby Isaac       DMBoundary b = next;
739347a1f5adSToby Isaac 
739447a1f5adSToby Isaac       next = b->next;
739547a1f5adSToby Isaac       ierr = PetscFree(b);CHKERRQ(ierr);
7396a6ba4734SToby Isaac     }
739747a1f5adSToby Isaac     dm->boundary = NULL;
7398a6ba4734SToby Isaac   }
739947a1f5adSToby Isaac 
7400dff059c6SToby Isaac   lastnext = &(dm->boundary);
7401e6f8dbb6SToby Isaac   while (dsbound) {
7402e6f8dbb6SToby Isaac     DMBoundary dmbound;
7403e6f8dbb6SToby Isaac 
7404e6f8dbb6SToby Isaac     ierr = PetscNew(&dmbound);CHKERRQ(ierr);
7405e6f8dbb6SToby Isaac     dmbound->dsboundary = dsbound;
7406e6f8dbb6SToby Isaac     ierr = DMGetLabel(dm, dsbound->labelname, &(dmbound->label));CHKERRQ(ierr);
7407994fe344SLisandro 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);}
740847a1f5adSToby Isaac     /* push on the back instead of the front so that it is in the same order as in the PetscDS */
7409dff059c6SToby Isaac     *lastnext = dmbound;
7410dff059c6SToby Isaac     lastnext = &(dmbound->next);
7411dff059c6SToby Isaac     dsbound = dsbound->next;
7412a6ba4734SToby Isaac   }
7413a6ba4734SToby Isaac   PetscFunctionReturn(0);
7414a6ba4734SToby Isaac }
7415a6ba4734SToby Isaac 
7416a6ba4734SToby Isaac PetscErrorCode DMIsBoundaryPoint(DM dm, PetscInt point, PetscBool *isBd)
7417a6ba4734SToby Isaac {
7418b95f2879SToby Isaac   DMBoundary     b;
7419a6ba4734SToby Isaac   PetscErrorCode ierr;
7420a6ba4734SToby Isaac 
7421a6ba4734SToby Isaac   PetscFunctionBegin;
7422a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7423a6ba4734SToby Isaac   PetscValidPointer(isBd, 3);
7424a6ba4734SToby Isaac   *isBd = PETSC_FALSE;
7425e6f8dbb6SToby Isaac   ierr = DMPopulateBoundary(dm);CHKERRQ(ierr);
7426b95f2879SToby Isaac   b = dm->boundary;
7427a6ba4734SToby Isaac   while (b && !(*isBd)) {
7428e6f8dbb6SToby Isaac     DMLabel    label = b->label;
7429e6f8dbb6SToby Isaac     DSBoundary dsb = b->dsboundary;
74303424c85cSToby Isaac 
74313424c85cSToby Isaac     if (label) {
7432a6ba4734SToby Isaac       PetscInt i;
7433a6ba4734SToby Isaac 
7434e6f8dbb6SToby Isaac       for (i = 0; i < dsb->numids && !(*isBd); ++i) {
7435e6f8dbb6SToby Isaac         ierr = DMLabelStratumHasPoint(label, dsb->ids[i], point, isBd);CHKERRQ(ierr);
7436a6ba4734SToby Isaac       }
7437a6ba4734SToby Isaac     }
7438a6ba4734SToby Isaac     b = b->next;
7439a6ba4734SToby Isaac   }
7440a6ba4734SToby Isaac   PetscFunctionReturn(0);
7441a6ba4734SToby Isaac }
74424d6f44ffSToby Isaac 
74434d6f44ffSToby Isaac /*@C
74444d6f44ffSToby Isaac   DMProjectFunction - This projects the given function into the function space provided.
74454d6f44ffSToby Isaac 
74464d6f44ffSToby Isaac   Input Parameters:
74474d6f44ffSToby Isaac + dm      - The DM
74480709b2feSToby Isaac . time    - The time
74494d6f44ffSToby Isaac . funcs   - The coordinate functions to evaluate, one per field
74504d6f44ffSToby Isaac . ctxs    - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
74514d6f44ffSToby Isaac - mode    - The insertion mode for values
74524d6f44ffSToby Isaac 
74534d6f44ffSToby Isaac   Output Parameter:
74544d6f44ffSToby Isaac . X - vector
74554d6f44ffSToby Isaac 
74564d6f44ffSToby Isaac    Calling sequence of func:
74570709b2feSToby Isaac $    func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx);
74584d6f44ffSToby Isaac 
74594d6f44ffSToby Isaac +  dim - The spatial dimension
74604d6f44ffSToby Isaac .  x   - The coordinates
74614d6f44ffSToby Isaac .  Nf  - The number of fields
74624d6f44ffSToby Isaac .  u   - The output field values
74634d6f44ffSToby Isaac -  ctx - optional user-defined function context
74644d6f44ffSToby Isaac 
74654d6f44ffSToby Isaac   Level: developer
74664d6f44ffSToby Isaac 
74672716604bSToby Isaac .seealso: DMComputeL2Diff()
74684d6f44ffSToby Isaac @*/
74690709b2feSToby Isaac PetscErrorCode DMProjectFunction(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec X)
74704d6f44ffSToby Isaac {
74714d6f44ffSToby Isaac   Vec            localX;
74724d6f44ffSToby Isaac   PetscErrorCode ierr;
74734d6f44ffSToby Isaac 
74744d6f44ffSToby Isaac   PetscFunctionBegin;
74754d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
74764d6f44ffSToby Isaac   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
74770709b2feSToby Isaac   ierr = DMProjectFunctionLocal(dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr);
74784d6f44ffSToby Isaac   ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr);
74794d6f44ffSToby Isaac   ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr);
74804d6f44ffSToby Isaac   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
74814d6f44ffSToby Isaac   PetscFunctionReturn(0);
74824d6f44ffSToby Isaac }
74834d6f44ffSToby Isaac 
74840709b2feSToby Isaac PetscErrorCode DMProjectFunctionLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX)
74854d6f44ffSToby Isaac {
74864d6f44ffSToby Isaac   PetscErrorCode ierr;
74874d6f44ffSToby Isaac 
74884d6f44ffSToby Isaac   PetscFunctionBegin;
74894d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
74904d6f44ffSToby Isaac   PetscValidHeaderSpecific(localX,VEC_CLASSID,5);
74910918c465SMatthew G. Knepley   if (!dm->ops->projectfunctionlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLocal",((PetscObject)dm)->type_name);
74920709b2feSToby Isaac   ierr = (dm->ops->projectfunctionlocal) (dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr);
74934d6f44ffSToby Isaac   PetscFunctionReturn(0);
74944d6f44ffSToby Isaac }
74954d6f44ffSToby Isaac 
74962c53366bSMatthew 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)
74972c53366bSMatthew G. Knepley {
74982c53366bSMatthew G. Knepley   Vec            localX;
74992c53366bSMatthew G. Knepley   PetscErrorCode ierr;
75002c53366bSMatthew G. Knepley 
75012c53366bSMatthew G. Knepley   PetscFunctionBegin;
75022c53366bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
75032c53366bSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
75042c53366bSMatthew G. Knepley   ierr = DMProjectFunctionLabelLocal(dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr);
75052c53366bSMatthew G. Knepley   ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr);
75062c53366bSMatthew G. Knepley   ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr);
75072c53366bSMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
75082c53366bSMatthew G. Knepley   PetscFunctionReturn(0);
75092c53366bSMatthew G. Knepley }
75102c53366bSMatthew G. Knepley 
75111c531cf8SMatthew 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)
75124d6f44ffSToby Isaac {
75134d6f44ffSToby Isaac   PetscErrorCode ierr;
75144d6f44ffSToby Isaac 
75154d6f44ffSToby Isaac   PetscFunctionBegin;
75164d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
75174d6f44ffSToby Isaac   PetscValidHeaderSpecific(localX,VEC_CLASSID,5);
75180918c465SMatthew G. Knepley   if (!dm->ops->projectfunctionlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLabelLocal",((PetscObject)dm)->type_name);
75191c531cf8SMatthew G. Knepley   ierr = (dm->ops->projectfunctionlabellocal) (dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr);
75204d6f44ffSToby Isaac   PetscFunctionReturn(0);
75214d6f44ffSToby Isaac }
75222716604bSToby Isaac 
75238c6c5593SMatthew G. Knepley PetscErrorCode DMProjectFieldLocal(DM dm, PetscReal time, Vec localU,
75248c6c5593SMatthew G. Knepley                                    void (**funcs)(PetscInt, PetscInt, PetscInt,
75258c6c5593SMatthew G. Knepley                                                   const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
75268c6c5593SMatthew G. Knepley                                                   const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
7527191494d9SMatthew G. Knepley                                                   PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
75288c6c5593SMatthew G. Knepley                                    InsertMode mode, Vec localX)
75298c6c5593SMatthew G. Knepley {
75308c6c5593SMatthew G. Knepley   PetscErrorCode ierr;
75318c6c5593SMatthew G. Knepley 
75328c6c5593SMatthew G. Knepley   PetscFunctionBegin;
75338c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
75348c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localU,VEC_CLASSID,3);
75358c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localX,VEC_CLASSID,6);
75360918c465SMatthew G. Knepley   if (!dm->ops->projectfieldlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name);
75378c6c5593SMatthew G. Knepley   ierr = (dm->ops->projectfieldlocal) (dm, time, localU, funcs, mode, localX);CHKERRQ(ierr);
75388c6c5593SMatthew G. Knepley   PetscFunctionReturn(0);
75398c6c5593SMatthew G. Knepley }
75408c6c5593SMatthew G. Knepley 
75411c531cf8SMatthew G. Knepley PetscErrorCode DMProjectFieldLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec localU,
75428c6c5593SMatthew G. Knepley                                         void (**funcs)(PetscInt, PetscInt, PetscInt,
75438c6c5593SMatthew G. Knepley                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
75448c6c5593SMatthew G. Knepley                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
7545191494d9SMatthew G. Knepley                                                        PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
75468c6c5593SMatthew G. Knepley                                         InsertMode mode, Vec localX)
75478c6c5593SMatthew G. Knepley {
75488c6c5593SMatthew G. Knepley   PetscErrorCode ierr;
75498c6c5593SMatthew G. Knepley 
75508c6c5593SMatthew G. Knepley   PetscFunctionBegin;
75518c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
75528c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localU,VEC_CLASSID,6);
75538c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localX,VEC_CLASSID,9);
75540918c465SMatthew G. Knepley   if (!dm->ops->projectfieldlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name);
75551c531cf8SMatthew G. Knepley   ierr = (dm->ops->projectfieldlabellocal)(dm, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX);CHKERRQ(ierr);
75568c6c5593SMatthew G. Knepley   PetscFunctionReturn(0);
75578c6c5593SMatthew G. Knepley }
75588c6c5593SMatthew G. Knepley 
75592716604bSToby Isaac /*@C
75602716604bSToby Isaac   DMComputeL2Diff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h.
75612716604bSToby Isaac 
75622716604bSToby Isaac   Input Parameters:
75632716604bSToby Isaac + dm    - The DM
75640709b2feSToby Isaac . time  - The time
75652716604bSToby Isaac . funcs - The functions to evaluate for each field component
75662716604bSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
7567574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
75682716604bSToby Isaac 
75692716604bSToby Isaac   Output Parameter:
75702716604bSToby Isaac . diff - The diff ||u - u_h||_2
75712716604bSToby Isaac 
75722716604bSToby Isaac   Level: developer
75732716604bSToby Isaac 
75741189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff()
75752716604bSToby Isaac @*/
75760709b2feSToby Isaac PetscErrorCode DMComputeL2Diff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
75772716604bSToby Isaac {
75782716604bSToby Isaac   PetscErrorCode ierr;
75792716604bSToby Isaac 
75802716604bSToby Isaac   PetscFunctionBegin;
75812716604bSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
7582b698f381SToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
75830918c465SMatthew G. Knepley   if (!dm->ops->computel2diff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2Diff",((PetscObject)dm)->type_name);
75840709b2feSToby Isaac   ierr = (dm->ops->computel2diff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr);
75852716604bSToby Isaac   PetscFunctionReturn(0);
75862716604bSToby Isaac }
7587b698f381SToby Isaac 
7588b698f381SToby Isaac /*@C
7589b698f381SToby Isaac   DMComputeL2GradientDiff - This function computes the L_2 difference between the gradient of a function u and an FEM interpolant solution grad u_h.
7590b698f381SToby Isaac 
7591*d083f849SBarry Smith   Collective on dm
7592*d083f849SBarry Smith 
7593b698f381SToby Isaac   Input Parameters:
7594b698f381SToby Isaac + dm    - The DM
7595b698f381SToby Isaac , time  - The time
7596b698f381SToby Isaac . funcs - The gradient functions to evaluate for each field component
7597b698f381SToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
7598574a98acSMatthew G. Knepley . X     - The coefficient vector u_h, a global vector
7599b698f381SToby Isaac - n     - The vector to project along
7600b698f381SToby Isaac 
7601b698f381SToby Isaac   Output Parameter:
7602b698f381SToby Isaac . diff - The diff ||(grad u - grad u_h) . n||_2
7603b698f381SToby Isaac 
7604b698f381SToby Isaac   Level: developer
7605b698f381SToby Isaac 
7606b698f381SToby Isaac .seealso: DMProjectFunction(), DMComputeL2Diff()
7607b698f381SToby Isaac @*/
7608b698f381SToby 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)
7609b698f381SToby Isaac {
7610b698f381SToby Isaac   PetscErrorCode ierr;
7611b698f381SToby Isaac 
7612b698f381SToby Isaac   PetscFunctionBegin;
7613b698f381SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
7614b698f381SToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
7615b698f381SToby Isaac   if (!dm->ops->computel2gradientdiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2GradientDiff",((PetscObject)dm)->type_name);
7616b698f381SToby Isaac   ierr = (dm->ops->computel2gradientdiff)(dm,time,funcs,ctxs,X,n,diff);CHKERRQ(ierr);
7617b698f381SToby Isaac   PetscFunctionReturn(0);
7618b698f381SToby Isaac }
7619b698f381SToby Isaac 
76202a16baeaSToby Isaac /*@C
76212a16baeaSToby Isaac   DMComputeL2FieldDiff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h, separated into field components.
76222a16baeaSToby Isaac 
7623*d083f849SBarry Smith   Collective on dm
7624*d083f849SBarry Smith 
76252a16baeaSToby Isaac   Input Parameters:
76262a16baeaSToby Isaac + dm    - The DM
76272a16baeaSToby Isaac . time  - The time
76282a16baeaSToby Isaac . funcs - The functions to evaluate for each field component
76292a16baeaSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
7630574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
76312a16baeaSToby Isaac 
76322a16baeaSToby Isaac   Output Parameter:
76332a16baeaSToby Isaac . diff - The array of differences, ||u^f - u^f_h||_2
76342a16baeaSToby Isaac 
76352a16baeaSToby Isaac   Level: developer
76362a16baeaSToby Isaac 
76371189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff()
76382a16baeaSToby Isaac @*/
76391189c1efSToby Isaac PetscErrorCode DMComputeL2FieldDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal diff[])
76402a16baeaSToby Isaac {
76412a16baeaSToby Isaac   PetscErrorCode ierr;
76422a16baeaSToby Isaac 
76432a16baeaSToby Isaac   PetscFunctionBegin;
76442a16baeaSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
76452a16baeaSToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
76460918c465SMatthew G. Knepley   if (!dm->ops->computel2fielddiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2FieldDiff",((PetscObject)dm)->type_name);
76472a16baeaSToby Isaac   ierr = (dm->ops->computel2fielddiff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr);
76482a16baeaSToby Isaac   PetscFunctionReturn(0);
76492a16baeaSToby Isaac }
76502a16baeaSToby Isaac 
7651df0b854cSToby Isaac /*@C
7652df0b854cSToby Isaac   DMAdaptLabel - Adapt a dm based on a label with values interpreted as coarsening and refining flags.  Specific implementations of DM maybe have
7653cd3c525cSToby Isaac                  specialized flags, but all implementations should accept flag values DM_ADAPT_DETERMINE, DM_ADAPT_KEEP, DM_ADAPT_REFINE, and DM_ADAPT_COARSEN.
7654df0b854cSToby Isaac 
7655df0b854cSToby Isaac   Collective on dm
7656df0b854cSToby Isaac 
7657df0b854cSToby Isaac   Input parameters:
7658df0b854cSToby Isaac + dm - the pre-adaptation DM object
7659a1b0c543SToby Isaac - label - label with the flags
7660df0b854cSToby Isaac 
7661df0b854cSToby Isaac   Output parameters:
76620d1cd5e0SMatthew G. Knepley . dmAdapt - the adapted DM object: may be NULL if an adapted DM could not be produced.
7663df0b854cSToby Isaac 
7664df0b854cSToby Isaac   Level: intermediate
76650d1cd5e0SMatthew G. Knepley 
76660d1cd5e0SMatthew G. Knepley .seealso: DMAdaptMetric(), DMCoarsen(), DMRefine()
7667df0b854cSToby Isaac @*/
76680d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptLabel(DM dm, DMLabel label, DM *dmAdapt)
7669df0b854cSToby Isaac {
7670df0b854cSToby Isaac   PetscErrorCode ierr;
7671df0b854cSToby Isaac 
7672df0b854cSToby Isaac   PetscFunctionBegin;
7673df0b854cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
7674a1b0c543SToby Isaac   PetscValidPointer(label,2);
76750d1cd5e0SMatthew G. Knepley   PetscValidPointer(dmAdapt,3);
76760d1cd5e0SMatthew G. Knepley   *dmAdapt = NULL;
76776f25b0d8SLisandro Dalcin   if (!dm->ops->adaptlabel) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptLabel",((PetscObject)dm)->type_name);
76780d1cd5e0SMatthew G. Knepley   ierr = (dm->ops->adaptlabel)(dm, label, dmAdapt);CHKERRQ(ierr);
76790d1cd5e0SMatthew G. Knepley   PetscFunctionReturn(0);
76800d1cd5e0SMatthew G. Knepley }
76810d1cd5e0SMatthew G. Knepley 
76820d1cd5e0SMatthew G. Knepley /*@C
76830d1cd5e0SMatthew G. Knepley   DMAdaptMetric - Generates a mesh adapted to the specified metric field using the pragmatic library.
76840d1cd5e0SMatthew G. Knepley 
76850d1cd5e0SMatthew G. Knepley   Input Parameters:
76860d1cd5e0SMatthew G. Knepley + dm - The DM object
76870d1cd5e0SMatthew G. Knepley . metric - The metric to which the mesh is adapted, defined vertex-wise.
76886f25b0d8SLisandro 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_".
76890d1cd5e0SMatthew G. Knepley 
76900d1cd5e0SMatthew G. Knepley   Output Parameter:
76910d1cd5e0SMatthew G. Knepley . dmAdapt  - Pointer to the DM object containing the adapted mesh
76920d1cd5e0SMatthew G. Knepley 
76930d1cd5e0SMatthew G. Knepley   Note: The label in the adapted mesh will be registered under the name of the input DMLabel object
76940d1cd5e0SMatthew G. Knepley 
76950d1cd5e0SMatthew G. Knepley   Level: advanced
76960d1cd5e0SMatthew G. Knepley 
76970d1cd5e0SMatthew G. Knepley .seealso: DMAdaptLabel(), DMCoarsen(), DMRefine()
76980d1cd5e0SMatthew G. Knepley @*/
76990d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptMetric(DM dm, Vec metric, DMLabel bdLabel, DM *dmAdapt)
77000d1cd5e0SMatthew G. Knepley {
77010d1cd5e0SMatthew G. Knepley   PetscErrorCode ierr;
77020d1cd5e0SMatthew G. Knepley 
77030d1cd5e0SMatthew G. Knepley   PetscFunctionBegin;
77040d1cd5e0SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
77050d1cd5e0SMatthew G. Knepley   PetscValidHeaderSpecific(metric, VEC_CLASSID, 2);
77060d1cd5e0SMatthew G. Knepley   if (bdLabel) PetscValidPointer(bdLabel, 3);
77070d1cd5e0SMatthew G. Knepley   PetscValidPointer(dmAdapt, 4);
77086f25b0d8SLisandro Dalcin   *dmAdapt = NULL;
77096f25b0d8SLisandro Dalcin   if (!dm->ops->adaptmetric) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptMetric",((PetscObject)dm)->type_name);
77100d1cd5e0SMatthew G. Knepley   ierr = (dm->ops->adaptmetric)(dm, metric, bdLabel, dmAdapt);CHKERRQ(ierr);
7711df0b854cSToby Isaac   PetscFunctionReturn(0);
7712df0b854cSToby Isaac }
7713c4088d22SMatthew G. Knepley 
7714502a2867SDave May /*@C
7715502a2867SDave May  DMGetNeighbors - Gets an array containing the MPI rank of all the processes neighbors
7716502a2867SDave May 
7717502a2867SDave May  Not Collective
7718502a2867SDave May 
7719502a2867SDave May  Input Parameter:
7720502a2867SDave May  . dm    - The DM
7721502a2867SDave May 
7722502a2867SDave May  Output Parameter:
7723502a2867SDave May  . nranks - the number of neighbours
7724502a2867SDave May  . ranks - the neighbors ranks
7725502a2867SDave May 
7726502a2867SDave May  Notes:
7727502a2867SDave May  Do not free the array, it is freed when the DM is destroyed.
7728502a2867SDave May 
7729502a2867SDave May  Level: beginner
7730502a2867SDave May 
7731dee935c1SDave May  .seealso: DMDAGetNeighbors(), PetscSFGetRanks()
7732502a2867SDave May @*/
7733502a2867SDave May PetscErrorCode DMGetNeighbors(DM dm,PetscInt *nranks,const PetscMPIInt *ranks[])
7734502a2867SDave May {
7735502a2867SDave May   PetscErrorCode ierr;
7736502a2867SDave May 
7737502a2867SDave May   PetscFunctionBegin;
7738502a2867SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
77390918c465SMatthew G. Knepley   if (!dm->ops->getneighbors) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMGetNeighbors",((PetscObject)dm)->type_name);
7740502a2867SDave May   ierr = (dm->ops->getneighbors)(dm,nranks,ranks);CHKERRQ(ierr);
7741502a2867SDave May   PetscFunctionReturn(0);
7742502a2867SDave May }
7743502a2867SDave May 
7744531c7667SBarry Smith #include <petsc/private/matimpl.h> /* Needed because of coloring->ctype below */
7745531c7667SBarry Smith 
7746531c7667SBarry Smith /*
7747531c7667SBarry Smith     Converts the input vector to a ghosted vector and then calls the standard coloring code.
7748531c7667SBarry Smith     This has be a different function because it requires DM which is not defined in the Mat library
7749531c7667SBarry Smith */
7750531c7667SBarry Smith PetscErrorCode  MatFDColoringApply_AIJDM(Mat J,MatFDColoring coloring,Vec x1,void *sctx)
7751531c7667SBarry Smith {
7752531c7667SBarry Smith   PetscErrorCode ierr;
7753531c7667SBarry Smith 
7754531c7667SBarry Smith   PetscFunctionBegin;
7755531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
7756531c7667SBarry Smith     Vec x1local;
7757531c7667SBarry Smith     DM  dm;
7758531c7667SBarry Smith     ierr = MatGetDM(J,&dm);CHKERRQ(ierr);
7759531c7667SBarry Smith     if (!dm) SETERRQ(PetscObjectComm((PetscObject)J),PETSC_ERR_ARG_INCOMP,"IS_COLORING_LOCAL requires a DM");
7760531c7667SBarry Smith     ierr = DMGetLocalVector(dm,&x1local);CHKERRQ(ierr);
7761531c7667SBarry Smith     ierr = DMGlobalToLocalBegin(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr);
7762531c7667SBarry Smith     ierr = DMGlobalToLocalEnd(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr);
7763531c7667SBarry Smith     x1   = x1local;
7764531c7667SBarry Smith   }
7765531c7667SBarry Smith   ierr = MatFDColoringApply_AIJ(J,coloring,x1,sctx);CHKERRQ(ierr);
7766531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
7767531c7667SBarry Smith     DM  dm;
7768531c7667SBarry Smith     ierr = MatGetDM(J,&dm);CHKERRQ(ierr);
7769531c7667SBarry Smith     ierr = DMRestoreLocalVector(dm,&x1);CHKERRQ(ierr);
7770531c7667SBarry Smith   }
7771531c7667SBarry Smith   PetscFunctionReturn(0);
7772531c7667SBarry Smith }
7773531c7667SBarry Smith 
7774531c7667SBarry Smith /*@
7775531c7667SBarry Smith     MatFDColoringUseDM - allows a MatFDColoring object to use the DM associated with the matrix to use a IS_COLORING_LOCAL coloring
7776531c7667SBarry Smith 
7777531c7667SBarry Smith     Input Parameter:
7778531c7667SBarry Smith .    coloring - the MatFDColoring object
7779531c7667SBarry Smith 
778095452b02SPatrick Sanan     Developer Notes:
778195452b02SPatrick Sanan     this routine exists because the PETSc Mat library does not know about the DM objects
7782531c7667SBarry Smith 
77831b266c99SBarry Smith     Level: advanced
77841b266c99SBarry Smith 
7785531c7667SBarry Smith .seealso: MatFDColoring, MatFDColoringCreate(), ISColoringType
7786531c7667SBarry Smith @*/
7787531c7667SBarry Smith PetscErrorCode  MatFDColoringUseDM(Mat coloring,MatFDColoring fdcoloring)
7788531c7667SBarry Smith {
7789531c7667SBarry Smith   PetscFunctionBegin;
7790531c7667SBarry Smith   coloring->ops->fdcoloringapply = MatFDColoringApply_AIJDM;
7791531c7667SBarry Smith   PetscFunctionReturn(0);
7792531c7667SBarry Smith }
77938320bc6fSPatrick Sanan 
77948320bc6fSPatrick Sanan /*@
77958320bc6fSPatrick Sanan     DMGetCompatibility - determine if two DMs are compatible
77968320bc6fSPatrick Sanan 
77978320bc6fSPatrick Sanan     Collective
77988320bc6fSPatrick Sanan 
77998320bc6fSPatrick Sanan     Input Parameters:
78008320bc6fSPatrick Sanan +    dm - the first DM
78018320bc6fSPatrick Sanan -    dm2 - the second DM
78028320bc6fSPatrick Sanan 
78038320bc6fSPatrick Sanan     Output Parameters:
78048320bc6fSPatrick Sanan +    compatible - whether or not the two DMs are compatible
78058320bc6fSPatrick Sanan -    set - whether or not the compatible value was set
78068320bc6fSPatrick Sanan 
78078320bc6fSPatrick Sanan     Notes:
78088320bc6fSPatrick Sanan     Two DMs are deemed compatible if they represent the same parallel decomposition
78093d862458SPatrick Sanan     of the same topology. This implies that the section (field data) on one
78108320bc6fSPatrick Sanan     "makes sense" with respect to the topology and parallel decomposition of the other.
78113d862458SPatrick Sanan     Loosely speaking, compatible DMs represent the same domain and parallel
78123d862458SPatrick Sanan     decomposition, but hold different data.
78138320bc6fSPatrick Sanan 
78148320bc6fSPatrick Sanan     Typically, one would confirm compatibility if intending to simultaneously iterate
78158320bc6fSPatrick Sanan     over a pair of vectors obtained from different DMs.
78168320bc6fSPatrick Sanan 
78178320bc6fSPatrick Sanan     For example, two DMDA objects are compatible if they have the same local
78188320bc6fSPatrick Sanan     and global sizes and the same stencil width. They can have different numbers
78198320bc6fSPatrick Sanan     of degrees of freedom per node. Thus, one could use the node numbering from
78208320bc6fSPatrick Sanan     either DM in bounds for a loop over vectors derived from either DM.
78218320bc6fSPatrick Sanan 
78228320bc6fSPatrick Sanan     Consider the operation of summing data living on a 2-dof DMDA to data living
78238320bc6fSPatrick Sanan     on a 1-dof DMDA, which should be compatible, as in the following snippet.
78248320bc6fSPatrick Sanan .vb
78258320bc6fSPatrick Sanan   ...
78268320bc6fSPatrick Sanan   ierr = DMGetCompatibility(da1,da2,&compatible,&set);CHKERRQ(ierr);
78278320bc6fSPatrick Sanan   if (set && compatible)  {
78288320bc6fSPatrick Sanan     ierr = DMDAVecGetArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr);
78298320bc6fSPatrick Sanan     ierr = DMDAVecGetArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr);
78303d862458SPatrick Sanan     ierr = DMDAGetCorners(da1,&x,&y,NULL,&m,&n,NULL);CHKERRQ(ierr);
78318320bc6fSPatrick Sanan     for (j=y; j<y+n; ++j) {
78328320bc6fSPatrick Sanan       for (i=x; i<x+m, ++i) {
78338320bc6fSPatrick Sanan         arr1[j][i][0] = arr2[j][i][0] + arr2[j][i][1];
78348320bc6fSPatrick Sanan       }
78358320bc6fSPatrick Sanan     }
78368320bc6fSPatrick Sanan     ierr = DMDAVecRestoreArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr);
78378320bc6fSPatrick Sanan     ierr = DMDAVecRestoreArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr);
78388320bc6fSPatrick Sanan   } else {
78398320bc6fSPatrick Sanan     SETERRQ(PetscObjectComm((PetscObject)da1,PETSC_ERR_ARG_INCOMP,"DMDA objects incompatible");
78408320bc6fSPatrick Sanan   }
78418320bc6fSPatrick Sanan   ...
78428320bc6fSPatrick Sanan .ve
78438320bc6fSPatrick Sanan 
78448320bc6fSPatrick Sanan     Checking compatibility might be expensive for a given implementation of DM,
78458320bc6fSPatrick Sanan     or might be impossible to unambiguously confirm or deny. For this reason,
78468320bc6fSPatrick Sanan     this function may decline to determine compatibility, and hence users should
78478320bc6fSPatrick Sanan     always check the "set" output parameter.
78488320bc6fSPatrick Sanan 
78498320bc6fSPatrick Sanan     A DM is always compatible with itself.
78508320bc6fSPatrick Sanan 
78518320bc6fSPatrick Sanan     In the current implementation, DMs which live on "unequal" communicators
78528320bc6fSPatrick Sanan     (MPI_UNEQUAL in the terminology of MPI_Comm_compare()) are always deemed
78538320bc6fSPatrick Sanan     incompatible.
78548320bc6fSPatrick Sanan 
78558320bc6fSPatrick Sanan     This function is labeled "Collective," as information about all subdomains
78568320bc6fSPatrick Sanan     is required on each rank. However, in DM implementations which store all this
78578320bc6fSPatrick Sanan     information locally, this function may be merely "Logically Collective".
78588320bc6fSPatrick Sanan 
78598320bc6fSPatrick Sanan     Developer Notes:
78603d862458SPatrick Sanan     Compatibility is assumed to be a symmetric concept; DM A is compatible with DM B
78613d862458SPatrick Sanan     iff B is compatible with A. Thus, this function checks the implementations
78628320bc6fSPatrick Sanan     of both dm and dm2 (if they are of different types), attempting to determine
78638320bc6fSPatrick Sanan     compatibility. It is left to DM implementers to ensure that symmetry is
78648320bc6fSPatrick Sanan     preserved. The simplest way to do this is, when implementing type-specific
78653d862458SPatrick Sanan     logic for this function, is to check for existing logic in the implementation
78663d862458SPatrick Sanan     of other DM types and let *set = PETSC_FALSE if found.
78678320bc6fSPatrick Sanan 
78688320bc6fSPatrick Sanan     Level: advanced
78698320bc6fSPatrick Sanan 
78703d862458SPatrick Sanan .seealso: DM, DMDACreateCompatibleDMDA(), DMStagCreateCompatibleDMStag()
78718320bc6fSPatrick Sanan @*/
78728320bc6fSPatrick Sanan 
78738320bc6fSPatrick Sanan PetscErrorCode DMGetCompatibility(DM dm,DM dm2,PetscBool *compatible,PetscBool *set)
78748320bc6fSPatrick Sanan {
78758320bc6fSPatrick Sanan   PetscErrorCode ierr;
78768320bc6fSPatrick Sanan   PetscMPIInt    compareResult;
78778320bc6fSPatrick Sanan   DMType         type,type2;
78788320bc6fSPatrick Sanan   PetscBool      sameType;
78798320bc6fSPatrick Sanan 
78808320bc6fSPatrick Sanan   PetscFunctionBegin;
78818320bc6fSPatrick Sanan   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
78828320bc6fSPatrick Sanan   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
78838320bc6fSPatrick Sanan 
78848320bc6fSPatrick Sanan   /* Declare a DM compatible with itself */
78858320bc6fSPatrick Sanan   if (dm == dm2) {
78868320bc6fSPatrick Sanan     *set = PETSC_TRUE;
78878320bc6fSPatrick Sanan     *compatible = PETSC_TRUE;
78888320bc6fSPatrick Sanan     PetscFunctionReturn(0);
78898320bc6fSPatrick Sanan   }
78908320bc6fSPatrick Sanan 
78918320bc6fSPatrick Sanan   /* Declare a DM incompatible with a DM that lives on an "unequal"
78928320bc6fSPatrick Sanan      communicator. Note that this does not preclude compatibility with
78938320bc6fSPatrick Sanan      DMs living on "congruent" or "similar" communicators, but this must be
78948320bc6fSPatrick Sanan      determined by the implementation-specific logic */
78958320bc6fSPatrick Sanan   ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)dm),PetscObjectComm((PetscObject)dm2),&compareResult);CHKERRQ(ierr);
78968320bc6fSPatrick Sanan   if (compareResult == MPI_UNEQUAL) {
78978320bc6fSPatrick Sanan     *set = PETSC_TRUE;
78988320bc6fSPatrick Sanan     *compatible = PETSC_FALSE;
78998320bc6fSPatrick Sanan     PetscFunctionReturn(0);
79008320bc6fSPatrick Sanan   }
79018320bc6fSPatrick Sanan 
79028320bc6fSPatrick Sanan   /* Pass to the implementation-specific routine, if one exists. */
79038320bc6fSPatrick Sanan   if (dm->ops->getcompatibility) {
79048320bc6fSPatrick Sanan     ierr = (*dm->ops->getcompatibility)(dm,dm2,compatible,set);CHKERRQ(ierr);
79058320bc6fSPatrick Sanan     if (*set) {
79068320bc6fSPatrick Sanan       PetscFunctionReturn(0);
79078320bc6fSPatrick Sanan     }
79088320bc6fSPatrick Sanan   }
79098320bc6fSPatrick Sanan 
79108320bc6fSPatrick Sanan   /* If dm and dm2 are of different types, then attempt to check compatibility
79118320bc6fSPatrick Sanan      with an implementation of this function from dm2 */
79128320bc6fSPatrick Sanan   ierr = DMGetType(dm,&type);CHKERRQ(ierr);
79138320bc6fSPatrick Sanan   ierr = DMGetType(dm2,&type2);CHKERRQ(ierr);
79148320bc6fSPatrick Sanan   ierr = PetscStrcmp(type,type2,&sameType);CHKERRQ(ierr);
79158320bc6fSPatrick Sanan   if (!sameType && dm2->ops->getcompatibility) {
79168320bc6fSPatrick Sanan     ierr = (*dm2->ops->getcompatibility)(dm2,dm,compatible,set);CHKERRQ(ierr); /* Note argument order */
79178320bc6fSPatrick Sanan   } else {
79188320bc6fSPatrick Sanan     *set = PETSC_FALSE;
79198320bc6fSPatrick Sanan   }
79208320bc6fSPatrick Sanan   PetscFunctionReturn(0);
79218320bc6fSPatrick Sanan }
7922