xref: /petsc/src/dm/interface/dm.c (revision ddf8437d06b1991790cc11c8471f212a3e2d9790)
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;
101ac00216SMatthew G. Knepley PetscLogEvent DM_Convert, DM_GlobalToLocal, DM_LocalToGlobal, DM_LocalToLocal, DM_LocatePoints, DM_Coarsen, DM_Refine, DM_CreateInterpolation, DM_CreateRestriction;
1167a56275SMatthew G Knepley 
12e249ee26SToby Isaac const char *const DMBoundaryTypes[] = {"NONE","GHOSTED","MIRROR","PERIODIC","TWIST","DMBoundaryType","DM_BOUNDARY_",0};
13bff4a2f0SMatthew G. Knepley 
144a7a4c06SLawrence Mitchell static PetscErrorCode DMHasCreateInjection_Default(DM dm, PetscBool *flg)
154a7a4c06SLawrence Mitchell {
164a7a4c06SLawrence Mitchell   PetscFunctionBegin;
174a7a4c06SLawrence Mitchell   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
184a7a4c06SLawrence Mitchell   PetscValidPointer(flg,2);
194a7a4c06SLawrence Mitchell   *flg = PETSC_FALSE;
204a7a4c06SLawrence Mitchell   PetscFunctionReturn(0);
214a7a4c06SLawrence Mitchell }
224a7a4c06SLawrence Mitchell 
23a4121054SBarry Smith /*@
24de043629SMatthew G Knepley   DMCreate - Creates an empty DM object. The type can then be set with DMSetType().
25a4121054SBarry Smith 
26a4121054SBarry Smith    If you never  call DMSetType()  it will generate an
27a4121054SBarry Smith    error when you try to use the vector.
28a4121054SBarry Smith 
29a4121054SBarry Smith   Collective on MPI_Comm
30a4121054SBarry Smith 
31a4121054SBarry Smith   Input Parameter:
32a4121054SBarry Smith . comm - The communicator for the DM object
33a4121054SBarry Smith 
34a4121054SBarry Smith   Output Parameter:
35a4121054SBarry Smith . dm - The DM object
36a4121054SBarry Smith 
37a4121054SBarry Smith   Level: beginner
38a4121054SBarry Smith 
398472ad0fSDave May .seealso: DMSetType(), DMDA, DMSLICED, DMCOMPOSITE, DMPLEX, DMMOAB, DMNETWORK
40a4121054SBarry Smith @*/
417087cfbeSBarry Smith PetscErrorCode  DMCreate(MPI_Comm comm,DM *dm)
42a4121054SBarry Smith {
43a4121054SBarry Smith   DM             v;
44a4121054SBarry Smith   PetscErrorCode ierr;
45a4121054SBarry Smith 
46a4121054SBarry Smith   PetscFunctionBegin;
471411c6eeSJed Brown   PetscValidPointer(dm,2);
480298fd71SBarry Smith   *dm = NULL;
49607a6623SBarry Smith   ierr = DMInitializePackage();CHKERRQ(ierr);
50a4121054SBarry Smith 
5173107ff1SLisandro Dalcin   ierr = PetscHeaderCreate(v, DM_CLASSID, "DM", "Distribution Manager", "DM", comm, DMDestroy, DMView);CHKERRQ(ierr);
52e7c4fc90SDmitry Karpeev 
530298fd71SBarry Smith   v->ltogmap                  = NULL;
541411c6eeSJed Brown   v->bs                       = 1;
55171400e9SBarry Smith   v->coloringtype             = IS_COLORING_GLOBAL;
5688ed4aceSMatthew G Knepley   ierr                        = PetscSFCreate(comm, &v->sf);CHKERRQ(ierr);
5788ed4aceSMatthew G Knepley   ierr                        = PetscSFCreate(comm, &v->defaultSF);CHKERRQ(ierr);
58c58f1c22SToby Isaac   v->labels                   = NULL;
59c58f1c22SToby Isaac   v->depthLabel               = NULL;
600298fd71SBarry Smith   v->defaultSection           = NULL;
610298fd71SBarry Smith   v->defaultGlobalSection     = NULL;
62fba222abSToby Isaac   v->defaultConstraintSection = NULL;
63fba222abSToby Isaac   v->defaultConstraintMat     = NULL;
64c6b900c6SMatthew G. Knepley   v->L                        = NULL;
65c6b900c6SMatthew G. Knepley   v->maxCell                  = NULL;
665dc8c3f7SMatthew G. Knepley   v->bdtype                   = NULL;
679a9a41abSToby Isaac   v->dimEmbed                 = PETSC_DEFAULT;
6896173672SStefano Zampini   v->dim                      = PETSC_DETERMINE;
69435a35e8SMatthew G Knepley   {
70435a35e8SMatthew G Knepley     PetscInt i;
71435a35e8SMatthew G Knepley     for (i = 0; i < 10; ++i) {
720298fd71SBarry Smith       v->nullspaceConstructors[i] = NULL;
73f9d4088aSMatthew G. Knepley       v->nearnullspaceConstructors[i] = NULL;
74435a35e8SMatthew G Knepley     }
75435a35e8SMatthew G Knepley   }
762764a2aaSMatthew G. Knepley   ierr = PetscDSCreate(comm, &v->prob);CHKERRQ(ierr);
7714f150ffSMatthew G. Knepley   v->dmBC = NULL;
78a8fb8f29SToby Isaac   v->coarseMesh = NULL;
79f4d763aaSMatthew G. Knepley   v->outputSequenceNum = -1;
80cdb7a50dSMatthew G. Knepley   v->outputSequenceVal = 0.0;
81c0dedaeaSBarry Smith   ierr = DMSetVecType(v,VECSTANDARD);CHKERRQ(ierr);
82b412c318SBarry Smith   ierr = DMSetMatType(v,MATAIJ);CHKERRQ(ierr);
83bcc5ffd9SToby Isaac   ierr = PetscNew(&(v->labels));CHKERRQ(ierr);
84c58f1c22SToby Isaac   v->labels->refct = 1;
854a7a4c06SLawrence Mitchell 
864a7a4c06SLawrence Mitchell   v->ops->hascreateinjection = DMHasCreateInjection_Default;
874a7a4c06SLawrence Mitchell 
881411c6eeSJed Brown   *dm = v;
89a4121054SBarry Smith   PetscFunctionReturn(0);
90a4121054SBarry Smith }
91a4121054SBarry Smith 
9238221697SMatthew G. Knepley /*@
9338221697SMatthew G. Knepley   DMClone - Creates a DM object with the same topology as the original.
9438221697SMatthew G. Knepley 
9538221697SMatthew G. Knepley   Collective on MPI_Comm
9638221697SMatthew G. Knepley 
9738221697SMatthew G. Knepley   Input Parameter:
9838221697SMatthew G. Knepley . dm - The original DM object
9938221697SMatthew G. Knepley 
10038221697SMatthew G. Knepley   Output Parameter:
10138221697SMatthew G. Knepley . newdm  - The new DM object
10238221697SMatthew G. Knepley 
10338221697SMatthew G. Knepley   Level: beginner
10438221697SMatthew G. Knepley 
10538221697SMatthew G. Knepley .keywords: DM, topology, create
10638221697SMatthew G. Knepley @*/
10738221697SMatthew G. Knepley PetscErrorCode DMClone(DM dm, DM *newdm)
10838221697SMatthew G. Knepley {
10938221697SMatthew G. Knepley   PetscSF        sf;
11038221697SMatthew G. Knepley   Vec            coords;
11138221697SMatthew G. Knepley   void          *ctx;
112a3219837SMatthew G. Knepley   PetscInt       dim, cdim;
11338221697SMatthew G. Knepley   PetscErrorCode ierr;
11438221697SMatthew G. Knepley 
11538221697SMatthew G. Knepley   PetscFunctionBegin;
11638221697SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
11738221697SMatthew G. Knepley   PetscValidPointer(newdm,2);
11838221697SMatthew G. Knepley   ierr = DMCreate(PetscObjectComm((PetscObject) dm), newdm);CHKERRQ(ierr);
119c58f1c22SToby Isaac   ierr = PetscFree((*newdm)->labels);CHKERRQ(ierr);
120c58f1c22SToby Isaac   dm->labels->refct++;
121c58f1c22SToby Isaac   (*newdm)->labels = dm->labels;
122c58f1c22SToby Isaac   (*newdm)->depthLabel = dm->depthLabel;
123*ddf8437dSMatthew G. Knepley   (*newdm)->leveldown  = dm->leveldown;
124*ddf8437dSMatthew G. Knepley   (*newdm)->levelup    = dm->levelup;
1251de53e9aSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1261de53e9aSMatthew G. Knepley   ierr = DMSetDimension(*newdm, dim);CHKERRQ(ierr);
12738221697SMatthew G. Knepley   if (dm->ops->clone) {
12838221697SMatthew G. Knepley     ierr = (*dm->ops->clone)(dm, newdm);CHKERRQ(ierr);
12938221697SMatthew G. Knepley   }
1303f22bcbcSToby Isaac   (*newdm)->setupcalled = dm->setupcalled;
13138221697SMatthew G. Knepley   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
13238221697SMatthew G. Knepley   ierr = DMSetPointSF(*newdm, sf);CHKERRQ(ierr);
13338221697SMatthew G. Knepley   ierr = DMGetApplicationContext(dm, &ctx);CHKERRQ(ierr);
13438221697SMatthew G. Knepley   ierr = DMSetApplicationContext(*newdm, ctx);CHKERRQ(ierr);
135be4c1c3eSMatthew G. Knepley   if (dm->coordinateDM) {
136be4c1c3eSMatthew G. Knepley     DM           ncdm;
137be4c1c3eSMatthew G. Knepley     PetscSection cs;
1385a0206caSToby Isaac     PetscInt     pEnd = -1, pEndMax = -1;
139be4c1c3eSMatthew G. Knepley 
140e87a4003SBarry Smith     ierr = DMGetSection(dm->coordinateDM, &cs);CHKERRQ(ierr);
141be4c1c3eSMatthew G. Knepley     if (cs) {ierr = PetscSectionGetChart(cs, NULL, &pEnd);CHKERRQ(ierr);}
1425a0206caSToby Isaac     ierr = MPI_Allreduce(&pEnd,&pEndMax,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
1435a0206caSToby Isaac     if (pEndMax >= 0) {
144be4c1c3eSMatthew G. Knepley       ierr = DMClone(dm->coordinateDM, &ncdm);CHKERRQ(ierr);
145e87a4003SBarry Smith       ierr = DMSetSection(ncdm, cs);CHKERRQ(ierr);
146a61e840bSMatthew G. Knepley       ierr = DMSetCoordinateDM(*newdm, ncdm);CHKERRQ(ierr);
147be4c1c3eSMatthew G. Knepley       ierr = DMDestroy(&ncdm);CHKERRQ(ierr);
148be4c1c3eSMatthew G. Knepley     }
149be4c1c3eSMatthew G. Knepley   }
150a3219837SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
151a3219837SMatthew G. Knepley   ierr = DMSetCoordinateDim(*newdm, cdim);CHKERRQ(ierr);
15238221697SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coords);CHKERRQ(ierr);
15338221697SMatthew G. Knepley   if (coords) {
15438221697SMatthew G. Knepley     ierr = DMSetCoordinatesLocal(*newdm, coords);CHKERRQ(ierr);
15538221697SMatthew G. Knepley   } else {
15638221697SMatthew G. Knepley     ierr = DMGetCoordinates(dm, &coords);CHKERRQ(ierr);
15738221697SMatthew G. Knepley     if (coords) {ierr = DMSetCoordinates(*newdm, coords);CHKERRQ(ierr);}
15838221697SMatthew G. Knepley   }
15990b157c4SStefano Zampini   {
16090b157c4SStefano Zampini     PetscBool             isper;
161c6b900c6SMatthew G. Knepley     const PetscReal      *maxCell, *L;
1625dc8c3f7SMatthew G. Knepley     const DMBoundaryType *bd;
16390b157c4SStefano Zampini     ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr);
16490b157c4SStefano Zampini     ierr = DMSetPeriodicity(*newdm, isper, maxCell,  L,  bd);CHKERRQ(ierr);
165c6b900c6SMatthew G. Knepley   }
16638221697SMatthew G. Knepley   PetscFunctionReturn(0);
16738221697SMatthew G. Knepley }
16838221697SMatthew G. Knepley 
1699a42bb27SBarry Smith /*@C
170564755cdSBarry Smith        DMSetVecType - Sets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector()
1719a42bb27SBarry Smith 
1728472ad0fSDave May    Logically Collective on DM
1739a42bb27SBarry Smith 
1749a42bb27SBarry Smith    Input Parameter:
1759a42bb27SBarry Smith +  da - initial distributed array
176e9e886b6SKarl Rupp .  ctype - the vector type, currently either VECSTANDARD, VECCUDA, or VECVIENNACL
1779a42bb27SBarry Smith 
1789a42bb27SBarry Smith    Options Database:
179dd85299cSBarry Smith .   -dm_vec_type ctype
1809a42bb27SBarry Smith 
1819a42bb27SBarry Smith    Level: intermediate
1829a42bb27SBarry Smith 
183a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMGetVecType(), DMSetMatType(), DMGetMatType()
1849a42bb27SBarry Smith @*/
18519fd82e9SBarry Smith PetscErrorCode  DMSetVecType(DM da,VecType ctype)
1869a42bb27SBarry Smith {
1879a42bb27SBarry Smith   PetscErrorCode ierr;
1889a42bb27SBarry Smith 
1899a42bb27SBarry Smith   PetscFunctionBegin;
1909a42bb27SBarry Smith   PetscValidHeaderSpecific(da,DM_CLASSID,1);
1919a42bb27SBarry Smith   ierr = PetscFree(da->vectype);CHKERRQ(ierr);
19219fd82e9SBarry Smith   ierr = PetscStrallocpy(ctype,(char**)&da->vectype);CHKERRQ(ierr);
1939a42bb27SBarry Smith   PetscFunctionReturn(0);
1949a42bb27SBarry Smith }
1959a42bb27SBarry Smith 
196c0dedaeaSBarry Smith /*@C
197c0dedaeaSBarry Smith        DMGetVecType - Gets the type of vector created with DMCreateLocalVector() and DMCreateGlobalVector()
198c0dedaeaSBarry Smith 
1998472ad0fSDave May    Logically Collective on DM
200c0dedaeaSBarry Smith 
201c0dedaeaSBarry Smith    Input Parameter:
202c0dedaeaSBarry Smith .  da - initial distributed array
203c0dedaeaSBarry Smith 
204c0dedaeaSBarry Smith    Output Parameter:
205c0dedaeaSBarry Smith .  ctype - the vector type
206c0dedaeaSBarry Smith 
207c0dedaeaSBarry Smith    Level: intermediate
208c0dedaeaSBarry Smith 
209a2a9ebe5SBarry Smith .seealso: DMCreate(), DMDestroy(), DM, DMDAInterpolationType, VecType, DMSetMatType(), DMGetMatType(), DMSetVecType()
210c0dedaeaSBarry Smith @*/
211c0dedaeaSBarry Smith PetscErrorCode  DMGetVecType(DM da,VecType *ctype)
212c0dedaeaSBarry Smith {
213c0dedaeaSBarry Smith   PetscFunctionBegin;
214c0dedaeaSBarry Smith   PetscValidHeaderSpecific(da,DM_CLASSID,1);
215c0dedaeaSBarry Smith   *ctype = da->vectype;
216c0dedaeaSBarry Smith   PetscFunctionReturn(0);
217c0dedaeaSBarry Smith }
218c0dedaeaSBarry Smith 
2195f1ad066SMatthew G Knepley /*@
22034f98d34SBarry Smith   VecGetDM - Gets the DM defining the data layout of the vector
2215f1ad066SMatthew G Knepley 
2225f1ad066SMatthew G Knepley   Not collective
2235f1ad066SMatthew G Knepley 
2245f1ad066SMatthew G Knepley   Input Parameter:
2255f1ad066SMatthew G Knepley . v - The Vec
2265f1ad066SMatthew G Knepley 
2275f1ad066SMatthew G Knepley   Output Parameter:
2285f1ad066SMatthew G Knepley . dm - The DM
2295f1ad066SMatthew G Knepley 
2305f1ad066SMatthew G Knepley   Level: intermediate
2315f1ad066SMatthew G Knepley 
2325f1ad066SMatthew G Knepley .seealso: VecSetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType()
2335f1ad066SMatthew G Knepley @*/
2345f1ad066SMatthew G Knepley PetscErrorCode VecGetDM(Vec v, DM *dm)
2355f1ad066SMatthew G Knepley {
2365f1ad066SMatthew G Knepley   PetscErrorCode ierr;
2375f1ad066SMatthew G Knepley 
2385f1ad066SMatthew G Knepley   PetscFunctionBegin;
2395f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,1);
2405f1ad066SMatthew G Knepley   PetscValidPointer(dm,2);
2415f1ad066SMatthew G Knepley   ierr = PetscObjectQuery((PetscObject) v, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr);
2425f1ad066SMatthew G Knepley   PetscFunctionReturn(0);
2435f1ad066SMatthew G Knepley }
2445f1ad066SMatthew G Knepley 
2455f1ad066SMatthew G Knepley /*@
246d9805387SMatthew G. Knepley   VecSetDM - Sets the DM defining the data layout of the vector.
2475f1ad066SMatthew G Knepley 
2485f1ad066SMatthew G Knepley   Not collective
2495f1ad066SMatthew G Knepley 
2505f1ad066SMatthew G Knepley   Input Parameters:
2515f1ad066SMatthew G Knepley + v - The Vec
2525f1ad066SMatthew G Knepley - dm - The DM
2535f1ad066SMatthew G Knepley 
254d9805387SMatthew 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.
255d9805387SMatthew G. Knepley 
2565f1ad066SMatthew G Knepley   Level: intermediate
2575f1ad066SMatthew G Knepley 
2585f1ad066SMatthew G Knepley .seealso: VecGetDM(), DMGetLocalVector(), DMGetGlobalVector(), DMSetVecType()
2595f1ad066SMatthew G Knepley @*/
2605f1ad066SMatthew G Knepley PetscErrorCode VecSetDM(Vec v, DM dm)
2615f1ad066SMatthew G Knepley {
2625f1ad066SMatthew G Knepley   PetscErrorCode ierr;
2635f1ad066SMatthew G Knepley 
2645f1ad066SMatthew G Knepley   PetscFunctionBegin;
2655f1ad066SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,1);
266d7f50e27SLisandro Dalcin   if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2);
2675f1ad066SMatthew G Knepley   ierr = PetscObjectCompose((PetscObject) v, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr);
2685f1ad066SMatthew G Knepley   PetscFunctionReturn(0);
2695f1ad066SMatthew G Knepley }
2705f1ad066SMatthew G Knepley 
271521d9a4cSLisandro Dalcin /*@C
2728f1509bcSBarry Smith        DMSetISColoringType - Sets the type of coloring, global or local, that is created by the DM
2738f1509bcSBarry Smith 
2748f1509bcSBarry Smith    Logically Collective on DM
2758f1509bcSBarry Smith 
2768f1509bcSBarry Smith    Input Parameters:
2778f1509bcSBarry Smith +  dm - the DM context
2788f1509bcSBarry Smith -  ctype - the matrix type
2798f1509bcSBarry Smith 
2808f1509bcSBarry Smith    Options Database:
2818f1509bcSBarry Smith .   -dm_is_coloring_type - global or local
2828f1509bcSBarry Smith 
2838f1509bcSBarry Smith    Level: intermediate
2848f1509bcSBarry Smith 
2858f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(),
2868f1509bcSBarry Smith           DMGetISColoringType()
2878f1509bcSBarry Smith @*/
2888f1509bcSBarry Smith PetscErrorCode  DMSetISColoringType(DM dm,ISColoringType ctype)
2898f1509bcSBarry Smith {
2908f1509bcSBarry Smith   PetscFunctionBegin;
2918f1509bcSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2928f1509bcSBarry Smith   dm->coloringtype = ctype;
2938f1509bcSBarry Smith   PetscFunctionReturn(0);
2948f1509bcSBarry Smith }
2958f1509bcSBarry Smith 
2968f1509bcSBarry Smith /*@C
2978f1509bcSBarry Smith        DMGetISColoringType - Gets the type of coloring, global or local, that is created by the DM
298521d9a4cSLisandro Dalcin 
299521d9a4cSLisandro Dalcin    Logically Collective on DM
300521d9a4cSLisandro Dalcin 
301521d9a4cSLisandro Dalcin    Input Parameter:
3028f1509bcSBarry Smith .  dm - the DM context
3038f1509bcSBarry Smith 
3048f1509bcSBarry Smith    Output Parameter:
3058f1509bcSBarry Smith .  ctype - the matrix type
3068f1509bcSBarry Smith 
3078f1509bcSBarry Smith    Options Database:
3088f1509bcSBarry Smith .   -dm_is_coloring_type - global or local
3098f1509bcSBarry Smith 
3108f1509bcSBarry Smith    Level: intermediate
3118f1509bcSBarry Smith 
3128f1509bcSBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(),
3138f1509bcSBarry Smith           DMGetISColoringType()
3148f1509bcSBarry Smith @*/
3158f1509bcSBarry Smith PetscErrorCode  DMGetISColoringType(DM dm,ISColoringType *ctype)
3168f1509bcSBarry Smith {
3178f1509bcSBarry Smith   PetscFunctionBegin;
3188f1509bcSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3198f1509bcSBarry Smith   *ctype = dm->coloringtype;
3208f1509bcSBarry Smith   PetscFunctionReturn(0);
3218f1509bcSBarry Smith }
3228f1509bcSBarry Smith 
3238f1509bcSBarry Smith /*@C
3248f1509bcSBarry Smith        DMSetMatType - Sets the type of matrix created with DMCreateMatrix()
3258f1509bcSBarry Smith 
3268f1509bcSBarry Smith    Logically Collective on DM
3278f1509bcSBarry Smith 
3288f1509bcSBarry Smith    Input Parameters:
329521d9a4cSLisandro Dalcin +  dm - the DM context
330a2b5a043SBarry Smith -  ctype - the matrix type
331521d9a4cSLisandro Dalcin 
332521d9a4cSLisandro Dalcin    Options Database:
333521d9a4cSLisandro Dalcin .   -dm_mat_type ctype
334521d9a4cSLisandro Dalcin 
335521d9a4cSLisandro Dalcin    Level: intermediate
336521d9a4cSLisandro Dalcin 
337a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMGetMatType(), DMSetMatType(), DMGetMatType()
338521d9a4cSLisandro Dalcin @*/
33919fd82e9SBarry Smith PetscErrorCode  DMSetMatType(DM dm,MatType ctype)
340521d9a4cSLisandro Dalcin {
341521d9a4cSLisandro Dalcin   PetscErrorCode ierr;
34288f0584fSBarry Smith 
343521d9a4cSLisandro Dalcin   PetscFunctionBegin;
344521d9a4cSLisandro Dalcin   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
345521d9a4cSLisandro Dalcin   ierr = PetscFree(dm->mattype);CHKERRQ(ierr);
34619fd82e9SBarry Smith   ierr = PetscStrallocpy(ctype,(char**)&dm->mattype);CHKERRQ(ierr);
347521d9a4cSLisandro Dalcin   PetscFunctionReturn(0);
348521d9a4cSLisandro Dalcin }
349521d9a4cSLisandro Dalcin 
350c0dedaeaSBarry Smith /*@C
351c0dedaeaSBarry Smith        DMGetMatType - Gets the type of matrix created with DMCreateMatrix()
352c0dedaeaSBarry Smith 
353c0dedaeaSBarry Smith    Logically Collective on DM
354c0dedaeaSBarry Smith 
355c0dedaeaSBarry Smith    Input Parameter:
356c0dedaeaSBarry Smith .  dm - the DM context
357c0dedaeaSBarry Smith 
358c0dedaeaSBarry Smith    Output Parameter:
359c0dedaeaSBarry Smith .  ctype - the matrix type
360c0dedaeaSBarry Smith 
361c0dedaeaSBarry Smith    Options Database:
362c0dedaeaSBarry Smith .   -dm_mat_type ctype
363c0dedaeaSBarry Smith 
364c0dedaeaSBarry Smith    Level: intermediate
365c0dedaeaSBarry Smith 
366a2a9ebe5SBarry Smith .seealso: DMDACreate1d(), DMDACreate2d(), DMDACreate3d(), DMCreateMatrix(), DMSetMatrixPreallocateOnly(), MatType, DMSetMatType(), DMSetMatType(), DMGetMatType()
367c0dedaeaSBarry Smith @*/
368c0dedaeaSBarry Smith PetscErrorCode  DMGetMatType(DM dm,MatType *ctype)
369c0dedaeaSBarry Smith {
370c0dedaeaSBarry Smith   PetscFunctionBegin;
371c0dedaeaSBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
372c0dedaeaSBarry Smith   *ctype = dm->mattype;
373c0dedaeaSBarry Smith   PetscFunctionReturn(0);
374c0dedaeaSBarry Smith }
375c0dedaeaSBarry Smith 
376c688c046SMatthew G Knepley /*@
37734f98d34SBarry Smith   MatGetDM - Gets the DM defining the data layout of the matrix
378c688c046SMatthew G Knepley 
379c688c046SMatthew G Knepley   Not collective
380c688c046SMatthew G Knepley 
381c688c046SMatthew G Knepley   Input Parameter:
382c688c046SMatthew G Knepley . A - The Mat
383c688c046SMatthew G Knepley 
384c688c046SMatthew G Knepley   Output Parameter:
385c688c046SMatthew G Knepley . dm - The DM
386c688c046SMatthew G Knepley 
387c688c046SMatthew G Knepley   Level: intermediate
388c688c046SMatthew G Knepley 
3898f1509bcSBarry Smith   Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with
3908f1509bcSBarry Smith                   the Mat through a PetscObjectCompose() operation
3918f1509bcSBarry Smith 
392c688c046SMatthew G Knepley .seealso: MatSetDM(), DMCreateMatrix(), DMSetMatType()
393c688c046SMatthew G Knepley @*/
394c688c046SMatthew G Knepley PetscErrorCode MatGetDM(Mat A, DM *dm)
395c688c046SMatthew G Knepley {
396c688c046SMatthew G Knepley   PetscErrorCode ierr;
397c688c046SMatthew G Knepley 
398c688c046SMatthew G Knepley   PetscFunctionBegin;
399c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A,MAT_CLASSID,1);
400c688c046SMatthew G Knepley   PetscValidPointer(dm,2);
401c688c046SMatthew G Knepley   ierr = PetscObjectQuery((PetscObject) A, "__PETSc_dm", (PetscObject*) dm);CHKERRQ(ierr);
402c688c046SMatthew G Knepley   PetscFunctionReturn(0);
403c688c046SMatthew G Knepley }
404c688c046SMatthew G Knepley 
405c688c046SMatthew G Knepley /*@
406c688c046SMatthew G Knepley   MatSetDM - Sets the DM defining the data layout of the matrix
407c688c046SMatthew G Knepley 
408c688c046SMatthew G Knepley   Not collective
409c688c046SMatthew G Knepley 
410c688c046SMatthew G Knepley   Input Parameters:
411c688c046SMatthew G Knepley + A - The Mat
412c688c046SMatthew G Knepley - dm - The DM
413c688c046SMatthew G Knepley 
414c688c046SMatthew G Knepley   Level: intermediate
415c688c046SMatthew G Knepley 
4168f1509bcSBarry Smith   Developer Note: Since the Mat class doesn't know about the DM class the DM object is associated with
4178f1509bcSBarry Smith                   the Mat through a PetscObjectCompose() operation
4188f1509bcSBarry Smith 
4198f1509bcSBarry Smith 
420c688c046SMatthew G Knepley .seealso: MatGetDM(), DMCreateMatrix(), DMSetMatType()
421c688c046SMatthew G Knepley @*/
422c688c046SMatthew G Knepley PetscErrorCode MatSetDM(Mat A, DM dm)
423c688c046SMatthew G Knepley {
424c688c046SMatthew G Knepley   PetscErrorCode ierr;
425c688c046SMatthew G Knepley 
426c688c046SMatthew G Knepley   PetscFunctionBegin;
427c688c046SMatthew G Knepley   PetscValidHeaderSpecific(A,MAT_CLASSID,1);
4288865f1eaSKarl Rupp   if (dm) PetscValidHeaderSpecific(dm,DM_CLASSID,2);
429c688c046SMatthew G Knepley   ierr = PetscObjectCompose((PetscObject) A, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr);
430c688c046SMatthew G Knepley   PetscFunctionReturn(0);
431c688c046SMatthew G Knepley }
432c688c046SMatthew G Knepley 
4339a42bb27SBarry Smith /*@C
4349a42bb27SBarry Smith    DMSetOptionsPrefix - Sets the prefix used for searching for all
4356757b960SDave May    DM options in the database.
4369a42bb27SBarry Smith 
4378353ddbbSDave May    Logically Collective on DM
4389a42bb27SBarry Smith 
4399a42bb27SBarry Smith    Input Parameter:
4408353ddbbSDave May +  da - the DM context
4419a42bb27SBarry Smith -  prefix - the prefix to prepend to all option names
4429a42bb27SBarry Smith 
4439a42bb27SBarry Smith    Notes:
4449a42bb27SBarry Smith    A hyphen (-) must NOT be given at the beginning of the prefix name.
4459a42bb27SBarry Smith    The first character of all runtime options is AUTOMATICALLY the hyphen.
4469a42bb27SBarry Smith 
4479a42bb27SBarry Smith    Level: advanced
4489a42bb27SBarry Smith 
4498353ddbbSDave May .keywords: DM, set, options, prefix, database
4509a42bb27SBarry Smith 
4519a42bb27SBarry Smith .seealso: DMSetFromOptions()
4529a42bb27SBarry Smith @*/
4537087cfbeSBarry Smith PetscErrorCode  DMSetOptionsPrefix(DM dm,const char prefix[])
4549a42bb27SBarry Smith {
4559a42bb27SBarry Smith   PetscErrorCode ierr;
4569a42bb27SBarry Smith 
4579a42bb27SBarry Smith   PetscFunctionBegin;
4589a42bb27SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
4599a42bb27SBarry Smith   ierr = PetscObjectSetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
460691be533SLawrence Mitchell   if (dm->sf) {
461691be533SLawrence Mitchell     ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->sf,prefix);CHKERRQ(ierr);
462691be533SLawrence Mitchell   }
463691be533SLawrence Mitchell   if (dm->defaultSF) {
464691be533SLawrence Mitchell     ierr = PetscObjectSetOptionsPrefix((PetscObject)dm->defaultSF,prefix);CHKERRQ(ierr);
465691be533SLawrence Mitchell   }
4669a42bb27SBarry Smith   PetscFunctionReturn(0);
4679a42bb27SBarry Smith }
4689a42bb27SBarry Smith 
46931697293SDave May /*@C
47031697293SDave May    DMAppendOptionsPrefix - Appends to the prefix used for searching for all
47131697293SDave May    DM options in the database.
47231697293SDave May 
47331697293SDave May    Logically Collective on DM
47431697293SDave May 
47531697293SDave May    Input Parameters:
47631697293SDave May +  dm - the DM context
47731697293SDave May -  prefix - the prefix string to prepend to all DM option requests
47831697293SDave May 
47931697293SDave May    Notes:
48031697293SDave May    A hyphen (-) must NOT be given at the beginning of the prefix name.
48131697293SDave May    The first character of all runtime options is AUTOMATICALLY the hyphen.
48231697293SDave May 
48331697293SDave May    Level: advanced
48431697293SDave May 
48531697293SDave May .keywords: DM, append, options, prefix, database
48631697293SDave May 
48731697293SDave May .seealso: DMSetOptionsPrefix(), DMGetOptionsPrefix()
48831697293SDave May @*/
48931697293SDave May PetscErrorCode  DMAppendOptionsPrefix(DM dm,const char prefix[])
49031697293SDave May {
49131697293SDave May   PetscErrorCode ierr;
49231697293SDave May 
49331697293SDave May   PetscFunctionBegin;
49431697293SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
49531697293SDave May   ierr = PetscObjectAppendOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
49631697293SDave May   PetscFunctionReturn(0);
49731697293SDave May }
49831697293SDave May 
49931697293SDave May /*@C
50031697293SDave May    DMGetOptionsPrefix - Gets the prefix used for searching for all
50131697293SDave May    DM options in the database.
50231697293SDave May 
50331697293SDave May    Not Collective
50431697293SDave May 
50531697293SDave May    Input Parameters:
50631697293SDave May .  dm - the DM context
50731697293SDave May 
50831697293SDave May    Output Parameters:
50931697293SDave May .  prefix - pointer to the prefix string used is returned
51031697293SDave May 
51195452b02SPatrick Sanan    Notes:
51295452b02SPatrick Sanan     On the fortran side, the user should pass in a string 'prefix' of
51331697293SDave May    sufficient length to hold the prefix.
51431697293SDave May 
51531697293SDave May    Level: advanced
51631697293SDave May 
51731697293SDave May .keywords: DM, set, options, prefix, database
51831697293SDave May 
51931697293SDave May .seealso: DMSetOptionsPrefix(), DMAppendOptionsPrefix()
52031697293SDave May @*/
52131697293SDave May PetscErrorCode  DMGetOptionsPrefix(DM dm,const char *prefix[])
52231697293SDave May {
52331697293SDave May   PetscErrorCode ierr;
52431697293SDave May 
52531697293SDave May   PetscFunctionBegin;
52631697293SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
52731697293SDave May   ierr = PetscObjectGetOptionsPrefix((PetscObject)dm,prefix);CHKERRQ(ierr);
52831697293SDave May   PetscFunctionReturn(0);
52931697293SDave May }
53031697293SDave May 
53188bdff64SToby Isaac static PetscErrorCode DMCountNonCyclicReferences(DM dm, PetscBool recurseCoarse, PetscBool recurseFine, PetscInt *ncrefct)
53288bdff64SToby Isaac {
53388bdff64SToby Isaac   PetscInt i, refct = ((PetscObject) dm)->refct;
53488bdff64SToby Isaac   DMNamedVecLink nlink;
53588bdff64SToby Isaac   PetscErrorCode ierr;
53688bdff64SToby Isaac 
53788bdff64SToby Isaac   PetscFunctionBegin;
538aab5bcd8SJed Brown   *ncrefct = 0;
53988bdff64SToby Isaac   /* count all the circular references of DM and its contained Vecs */
54088bdff64SToby Isaac   for (i=0; i<DM_MAX_WORK_VECTORS; i++) {
54188bdff64SToby Isaac     if (dm->localin[i])  refct--;
54288bdff64SToby Isaac     if (dm->globalin[i]) refct--;
54388bdff64SToby Isaac   }
54488bdff64SToby Isaac   for (nlink=dm->namedglobal; nlink; nlink=nlink->next) refct--;
54588bdff64SToby Isaac   for (nlink=dm->namedlocal; nlink; nlink=nlink->next) refct--;
54688bdff64SToby Isaac   if (dm->x) {
54788bdff64SToby Isaac     DM obj;
54888bdff64SToby Isaac     ierr = VecGetDM(dm->x, &obj);CHKERRQ(ierr);
54988bdff64SToby Isaac     if (obj == dm) refct--;
55088bdff64SToby Isaac   }
55188bdff64SToby Isaac   if (dm->coarseMesh && dm->coarseMesh->fineMesh == dm) {
55288bdff64SToby Isaac     refct--;
55388bdff64SToby Isaac     if (recurseCoarse) {
55488bdff64SToby Isaac       PetscInt coarseCount;
55588bdff64SToby Isaac 
55688bdff64SToby Isaac       ierr = DMCountNonCyclicReferences(dm->coarseMesh, PETSC_TRUE, PETSC_FALSE,&coarseCount);CHKERRQ(ierr);
55788bdff64SToby Isaac       refct += coarseCount;
55888bdff64SToby Isaac     }
55988bdff64SToby Isaac   }
56088bdff64SToby Isaac   if (dm->fineMesh && dm->fineMesh->coarseMesh == dm) {
56188bdff64SToby Isaac     refct--;
56288bdff64SToby Isaac     if (recurseFine) {
56388bdff64SToby Isaac       PetscInt fineCount;
56488bdff64SToby Isaac 
56588bdff64SToby Isaac       ierr = DMCountNonCyclicReferences(dm->fineMesh, PETSC_FALSE, PETSC_TRUE,&fineCount);CHKERRQ(ierr);
56688bdff64SToby Isaac       refct += fineCount;
56788bdff64SToby Isaac     }
56888bdff64SToby Isaac   }
56988bdff64SToby Isaac   *ncrefct = refct;
57088bdff64SToby Isaac   PetscFunctionReturn(0);
57188bdff64SToby Isaac }
57288bdff64SToby Isaac 
573354557abSToby Isaac PetscErrorCode DMDestroyLabelLinkList(DM dm)
574354557abSToby Isaac {
575354557abSToby Isaac   PetscErrorCode ierr;
576354557abSToby Isaac 
577354557abSToby Isaac   PetscFunctionBegin;
578354557abSToby Isaac   if (!--(dm->labels->refct)) {
579354557abSToby Isaac     DMLabelLink next = dm->labels->next;
580354557abSToby Isaac 
581354557abSToby Isaac     /* destroy the labels */
582354557abSToby Isaac     while (next) {
583354557abSToby Isaac       DMLabelLink tmp = next->next;
584354557abSToby Isaac 
585354557abSToby Isaac       ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr);
586354557abSToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
587354557abSToby Isaac       next = tmp;
588354557abSToby Isaac     }
589354557abSToby Isaac     ierr = PetscFree(dm->labels);CHKERRQ(ierr);
590354557abSToby Isaac   }
591354557abSToby Isaac   PetscFunctionReturn(0);
592354557abSToby Isaac }
593354557abSToby Isaac 
59447c6ae99SBarry Smith /*@
5958472ad0fSDave May     DMDestroy - Destroys a vector packer or DM.
59647c6ae99SBarry Smith 
59747c6ae99SBarry Smith     Collective on DM
59847c6ae99SBarry Smith 
59947c6ae99SBarry Smith     Input Parameter:
60047c6ae99SBarry Smith .   dm - the DM object to destroy
60147c6ae99SBarry Smith 
60247c6ae99SBarry Smith     Level: developer
60347c6ae99SBarry Smith 
604e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
60547c6ae99SBarry Smith 
60647c6ae99SBarry Smith @*/
607fcfd50ebSBarry Smith PetscErrorCode  DMDestroy(DM *dm)
60847c6ae99SBarry Smith {
60988bdff64SToby Isaac   PetscInt       i, cnt;
610dfe15315SJed Brown   DMNamedVecLink nlink,nnext;
61147c6ae99SBarry Smith   PetscErrorCode ierr;
61247c6ae99SBarry Smith 
61347c6ae99SBarry Smith   PetscFunctionBegin;
6146bf464f9SBarry Smith   if (!*dm) PetscFunctionReturn(0);
6156bf464f9SBarry Smith   PetscValidHeaderSpecific((*dm),DM_CLASSID,1);
61687e657c6SBarry Smith 
61788bdff64SToby Isaac   /* count all non-cyclic references in the doubly-linked list of coarse<->fine meshes */
61888bdff64SToby Isaac   ierr = DMCountNonCyclicReferences(*dm,PETSC_TRUE,PETSC_TRUE,&cnt);CHKERRQ(ierr);
61988bdff64SToby Isaac   --((PetscObject)(*dm))->refct;
62088bdff64SToby Isaac   if (--cnt > 0) {*dm = 0; PetscFunctionReturn(0);}
621732e2eb9SMatthew G Knepley   /*
622732e2eb9SMatthew G Knepley      Need this test because the dm references the vectors that
623732e2eb9SMatthew G Knepley      reference the dm, so destroying the dm calls destroy on the
624732e2eb9SMatthew G Knepley      vectors that cause another destroy on the dm
625732e2eb9SMatthew G Knepley   */
6266bf464f9SBarry Smith   if (((PetscObject)(*dm))->refct < 0) PetscFunctionReturn(0);
6276bf464f9SBarry Smith   ((PetscObject) (*dm))->refct = 0;
628732e2eb9SMatthew G Knepley   for (i=0; i<DM_MAX_WORK_VECTORS; i++) {
6296bf464f9SBarry Smith     if ((*dm)->localout[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Destroying a DM that has a local vector obtained with DMGetLocalVector()");
6306bf464f9SBarry Smith     ierr = VecDestroy(&(*dm)->localin[i]);CHKERRQ(ierr);
631732e2eb9SMatthew G Knepley   }
632f490541aSPeter Brune   nnext=(*dm)->namedglobal;
6330298fd71SBarry Smith   (*dm)->namedglobal = NULL;
634f490541aSPeter Brune   for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named vectors */
6352348bcf4SPeter Brune     nnext = nlink->next;
6362348bcf4SPeter 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);
6372348bcf4SPeter Brune     ierr = PetscFree(nlink->name);CHKERRQ(ierr);
6382348bcf4SPeter Brune     ierr = VecDestroy(&nlink->X);CHKERRQ(ierr);
6392348bcf4SPeter Brune     ierr = PetscFree(nlink);CHKERRQ(ierr);
6402348bcf4SPeter Brune   }
641f490541aSPeter Brune   nnext=(*dm)->namedlocal;
6420298fd71SBarry Smith   (*dm)->namedlocal = NULL;
643f490541aSPeter Brune   for (nlink=nnext; nlink; nlink=nnext) { /* Destroy the named local vectors */
644f490541aSPeter Brune     nnext = nlink->next;
645f490541aSPeter 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);
646f490541aSPeter Brune     ierr = PetscFree(nlink->name);CHKERRQ(ierr);
647f490541aSPeter Brune     ierr = VecDestroy(&nlink->X);CHKERRQ(ierr);
648f490541aSPeter Brune     ierr = PetscFree(nlink);CHKERRQ(ierr);
649f490541aSPeter Brune   }
6502348bcf4SPeter Brune 
651b17ce1afSJed Brown   /* Destroy the list of hooks */
652c833c3b5SJed Brown   {
653c833c3b5SJed Brown     DMCoarsenHookLink link,next;
654b17ce1afSJed Brown     for (link=(*dm)->coarsenhook; link; link=next) {
655b17ce1afSJed Brown       next = link->next;
656b17ce1afSJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
657b17ce1afSJed Brown     }
6580298fd71SBarry Smith     (*dm)->coarsenhook = NULL;
659c833c3b5SJed Brown   }
660c833c3b5SJed Brown   {
661c833c3b5SJed Brown     DMRefineHookLink link,next;
662c833c3b5SJed Brown     for (link=(*dm)->refinehook; link; link=next) {
663c833c3b5SJed Brown       next = link->next;
664c833c3b5SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
665c833c3b5SJed Brown     }
6660298fd71SBarry Smith     (*dm)->refinehook = NULL;
667c833c3b5SJed Brown   }
668be081cd6SPeter Brune   {
669be081cd6SPeter Brune     DMSubDomainHookLink link,next;
670be081cd6SPeter Brune     for (link=(*dm)->subdomainhook; link; link=next) {
671be081cd6SPeter Brune       next = link->next;
672be081cd6SPeter Brune       ierr = PetscFree(link);CHKERRQ(ierr);
673be081cd6SPeter Brune     }
6740298fd71SBarry Smith     (*dm)->subdomainhook = NULL;
675be081cd6SPeter Brune   }
676baf369e7SPeter Brune   {
677baf369e7SPeter Brune     DMGlobalToLocalHookLink link,next;
678baf369e7SPeter Brune     for (link=(*dm)->gtolhook; link; link=next) {
679baf369e7SPeter Brune       next = link->next;
680baf369e7SPeter Brune       ierr = PetscFree(link);CHKERRQ(ierr);
681baf369e7SPeter Brune     }
6820298fd71SBarry Smith     (*dm)->gtolhook = NULL;
683baf369e7SPeter Brune   }
684d4d07f1eSToby Isaac   {
685d4d07f1eSToby Isaac     DMLocalToGlobalHookLink link,next;
686d4d07f1eSToby Isaac     for (link=(*dm)->ltoghook; link; link=next) {
687d4d07f1eSToby Isaac       next = link->next;
688d4d07f1eSToby Isaac       ierr = PetscFree(link);CHKERRQ(ierr);
689d4d07f1eSToby Isaac     }
690d4d07f1eSToby Isaac     (*dm)->ltoghook = NULL;
691d4d07f1eSToby Isaac   }
692aa1993deSMatthew G Knepley   /* Destroy the work arrays */
693aa1993deSMatthew G Knepley   {
694aa1993deSMatthew G Knepley     DMWorkLink link,next;
695aa1993deSMatthew G Knepley     if ((*dm)->workout) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Work array still checked out");
696aa1993deSMatthew G Knepley     for (link=(*dm)->workin; link; link=next) {
697aa1993deSMatthew G Knepley       next = link->next;
698aa1993deSMatthew G Knepley       ierr = PetscFree(link->mem);CHKERRQ(ierr);
699aa1993deSMatthew G Knepley       ierr = PetscFree(link);CHKERRQ(ierr);
700aa1993deSMatthew G Knepley     }
7010298fd71SBarry Smith     (*dm)->workin = NULL;
702aa1993deSMatthew G Knepley   }
703c58f1c22SToby Isaac   if (!--((*dm)->labels->refct)) {
704c58f1c22SToby Isaac     DMLabelLink next = (*dm)->labels->next;
705c58f1c22SToby Isaac 
706c58f1c22SToby Isaac     /* destroy the labels */
707c58f1c22SToby Isaac     while (next) {
708c58f1c22SToby Isaac       DMLabelLink tmp = next->next;
709c58f1c22SToby Isaac 
710c58f1c22SToby Isaac       ierr = DMLabelDestroy(&next->label);CHKERRQ(ierr);
711c58f1c22SToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
712c58f1c22SToby Isaac       next = tmp;
713c58f1c22SToby Isaac     }
714c58f1c22SToby Isaac     ierr = PetscFree((*dm)->labels);CHKERRQ(ierr);
715c58f1c22SToby Isaac   }
716e6f8dbb6SToby Isaac   {
717e6f8dbb6SToby Isaac     DMBoundary next = (*dm)->boundary;
718e6f8dbb6SToby Isaac     while (next) {
719e6f8dbb6SToby Isaac       DMBoundary b = next;
720e6f8dbb6SToby Isaac 
721e6f8dbb6SToby Isaac       next = b->next;
722e6f8dbb6SToby Isaac       ierr = PetscFree(b);CHKERRQ(ierr);
723e6f8dbb6SToby Isaac     }
724e6f8dbb6SToby Isaac   }
725b17ce1afSJed Brown 
72652536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmksp);CHKERRQ(ierr);
72752536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmsnes);CHKERRQ(ierr);
72852536dc3SBarry Smith   ierr = PetscObjectDestroy(&(*dm)->dmts);CHKERRQ(ierr);
72952536dc3SBarry Smith 
7301a266240SBarry Smith   if ((*dm)->ctx && (*dm)->ctxdestroy) {
7311a266240SBarry Smith     ierr = (*(*dm)->ctxdestroy)(&(*dm)->ctx);CHKERRQ(ierr);
7321a266240SBarry Smith   }
73387e657c6SBarry Smith   ierr = VecDestroy(&(*dm)->x);CHKERRQ(ierr);
73471cd77b2SBarry Smith   ierr = MatFDColoringDestroy(&(*dm)->fd);CHKERRQ(ierr);
7354dcab191SBarry Smith   ierr = DMClearGlobalVectors(*dm);CHKERRQ(ierr);
7366bf464f9SBarry Smith   ierr = ISLocalToGlobalMappingDestroy(&(*dm)->ltogmap);CHKERRQ(ierr);
7376bf464f9SBarry Smith   ierr = PetscFree((*dm)->vectype);CHKERRQ(ierr);
738073dac72SJed Brown   ierr = PetscFree((*dm)->mattype);CHKERRQ(ierr);
73988ed4aceSMatthew G Knepley 
74088ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&(*dm)->defaultSection);CHKERRQ(ierr);
74188ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&(*dm)->defaultGlobalSection);CHKERRQ(ierr);
7428b1ab98fSJed Brown   ierr = PetscLayoutDestroy(&(*dm)->map);CHKERRQ(ierr);
743fba222abSToby Isaac   ierr = PetscSectionDestroy(&(*dm)->defaultConstraintSection);CHKERRQ(ierr);
744fba222abSToby Isaac   ierr = MatDestroy(&(*dm)->defaultConstraintMat);CHKERRQ(ierr);
74588ed4aceSMatthew G Knepley   ierr = PetscSFDestroy(&(*dm)->sf);CHKERRQ(ierr);
74688ed4aceSMatthew G Knepley   ierr = PetscSFDestroy(&(*dm)->defaultSF);CHKERRQ(ierr);
747736995cdSBlaise Bourdin   if ((*dm)->useNatural) {
748736995cdSBlaise Bourdin     if ((*dm)->sfNatural) {
7498e4ac7eaSMatthew G. Knepley       ierr = PetscSFDestroy(&(*dm)->sfNatural);CHKERRQ(ierr);
750736995cdSBlaise Bourdin     }
751736995cdSBlaise Bourdin     ierr = PetscObjectDereference((PetscObject) (*dm)->sfMigration);CHKERRQ(ierr);
752736995cdSBlaise Bourdin   }
75388bdff64SToby Isaac   if ((*dm)->coarseMesh && (*dm)->coarseMesh->fineMesh == *dm) {
75488bdff64SToby Isaac     ierr = DMSetFineDM((*dm)->coarseMesh,NULL);CHKERRQ(ierr);
75588bdff64SToby Isaac   }
756a8fb8f29SToby Isaac   ierr = DMDestroy(&(*dm)->coarseMesh);CHKERRQ(ierr);
75788bdff64SToby Isaac   if ((*dm)->fineMesh && (*dm)->fineMesh->coarseMesh == *dm) {
75888bdff64SToby Isaac     ierr = DMSetCoarseDM((*dm)->fineMesh,NULL);CHKERRQ(ierr);
75988bdff64SToby Isaac   }
76088bdff64SToby Isaac   ierr = DMDestroy(&(*dm)->fineMesh);CHKERRQ(ierr);
761f19dbd58SToby Isaac   ierr = DMFieldDestroy(&(*dm)->coordinateField);CHKERRQ(ierr);
7626636e97aSMatthew G Knepley   ierr = DMDestroy(&(*dm)->coordinateDM);CHKERRQ(ierr);
7636636e97aSMatthew G Knepley   ierr = VecDestroy(&(*dm)->coordinates);CHKERRQ(ierr);
7646636e97aSMatthew G Knepley   ierr = VecDestroy(&(*dm)->coordinatesLocal);CHKERRQ(ierr);
7655dc8c3f7SMatthew G. Knepley   ierr = PetscFree3((*dm)->L,(*dm)->maxCell,(*dm)->bdtype);CHKERRQ(ierr);
7666636e97aSMatthew G Knepley 
7672764a2aaSMatthew G. Knepley   ierr = PetscDSDestroy(&(*dm)->prob);CHKERRQ(ierr);
76814f150ffSMatthew G. Knepley   ierr = DMDestroy(&(*dm)->dmBC);CHKERRQ(ierr);
769e04113cfSBarry Smith   /* if memory was published with SAWs then destroy it */
770e04113cfSBarry Smith   ierr = PetscObjectSAWsViewOff((PetscObject)*dm);CHKERRQ(ierr);
771732e2eb9SMatthew G Knepley 
772ed3c66a1SDave May   if ((*dm)->ops->destroy) {
7736bf464f9SBarry Smith     ierr = (*(*dm)->ops->destroy)(*dm);CHKERRQ(ierr);
774ed3c66a1SDave May   }
775435a35e8SMatthew G Knepley   /* We do not destroy (*dm)->data here so that we can reference count backend objects */
776732e2eb9SMatthew G Knepley   ierr = PetscHeaderDestroy(dm);CHKERRQ(ierr);
77747c6ae99SBarry Smith   PetscFunctionReturn(0);
77847c6ae99SBarry Smith }
77947c6ae99SBarry Smith 
780d7bf68aeSBarry Smith /*@
781d7bf68aeSBarry Smith     DMSetUp - sets up the data structures inside a DM object
782d7bf68aeSBarry Smith 
783d7bf68aeSBarry Smith     Collective on DM
784d7bf68aeSBarry Smith 
785d7bf68aeSBarry Smith     Input Parameter:
786d7bf68aeSBarry Smith .   dm - the DM object to setup
787d7bf68aeSBarry Smith 
788d7bf68aeSBarry Smith     Level: developer
789d7bf68aeSBarry Smith 
790e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
791d7bf68aeSBarry Smith 
792d7bf68aeSBarry Smith @*/
7937087cfbeSBarry Smith PetscErrorCode  DMSetUp(DM dm)
794d7bf68aeSBarry Smith {
795d7bf68aeSBarry Smith   PetscErrorCode ierr;
796d7bf68aeSBarry Smith 
797d7bf68aeSBarry Smith   PetscFunctionBegin;
798171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
7998387afaaSJed Brown   if (dm->setupcalled) PetscFunctionReturn(0);
800d7bf68aeSBarry Smith   if (dm->ops->setup) {
801d7bf68aeSBarry Smith     ierr = (*dm->ops->setup)(dm);CHKERRQ(ierr);
802d7bf68aeSBarry Smith   }
8038387afaaSJed Brown   dm->setupcalled = PETSC_TRUE;
804d7bf68aeSBarry Smith   PetscFunctionReturn(0);
805d7bf68aeSBarry Smith }
806d7bf68aeSBarry Smith 
807d7bf68aeSBarry Smith /*@
808d7bf68aeSBarry Smith     DMSetFromOptions - sets parameters in a DM from the options database
809d7bf68aeSBarry Smith 
810d7bf68aeSBarry Smith     Collective on DM
811d7bf68aeSBarry Smith 
812d7bf68aeSBarry Smith     Input Parameter:
813d7bf68aeSBarry Smith .   dm - the DM object to set options for
814d7bf68aeSBarry Smith 
815732e2eb9SMatthew G Knepley     Options Database:
8164164ae61SDominic Meiser +   -dm_preallocate_only - Only preallocate the matrix for DMCreateMatrix(), but do not fill it with zeros
8174164ae61SDominic Meiser .   -dm_vec_type <type>  - type of vector to create inside DM
8184164ae61SDominic Meiser .   -dm_mat_type <type>  - type of matrix to create inside DM
8198f1509bcSBarry Smith -   -dm_is_coloring_type - <global or local>
820732e2eb9SMatthew G Knepley 
821d7bf68aeSBarry Smith     Level: developer
822d7bf68aeSBarry Smith 
823e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
824d7bf68aeSBarry Smith 
825d7bf68aeSBarry Smith @*/
8267087cfbeSBarry Smith PetscErrorCode  DMSetFromOptions(DM dm)
827d7bf68aeSBarry Smith {
8287781c08eSBarry Smith   char           typeName[256];
829ca266f36SBarry Smith   PetscBool      flg;
830d7bf68aeSBarry Smith   PetscErrorCode ierr;
831d7bf68aeSBarry Smith 
832d7bf68aeSBarry Smith   PetscFunctionBegin;
833171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
834f1fd5e65SToby Isaac   if (dm->prob) {
835f1fd5e65SToby Isaac     ierr = PetscDSSetFromOptions(dm->prob);CHKERRQ(ierr);
836f1fd5e65SToby Isaac   }
837691be533SLawrence Mitchell   if (dm->sf) {
838691be533SLawrence Mitchell     ierr = PetscSFSetFromOptions(dm->sf);CHKERRQ(ierr);
839691be533SLawrence Mitchell   }
840691be533SLawrence Mitchell   if (dm->defaultSF) {
841691be533SLawrence Mitchell     ierr = PetscSFSetFromOptions(dm->defaultSF);CHKERRQ(ierr);
842691be533SLawrence Mitchell   }
8433194b578SJed Brown   ierr = PetscObjectOptionsBegin((PetscObject)dm);CHKERRQ(ierr);
8440298fd71SBarry 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);
845a264d7a6SBarry Smith   ierr = PetscOptionsFList("-dm_vec_type","Vector type used for created vectors","DMSetVecType",VecList,dm->vectype,typeName,256,&flg);CHKERRQ(ierr);
846f9ba7244SBarry Smith   if (flg) {
847f9ba7244SBarry Smith     ierr = DMSetVecType(dm,typeName);CHKERRQ(ierr);
848f9ba7244SBarry Smith   }
849a264d7a6SBarry 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);
850073dac72SJed Brown   if (flg) {
851521d9a4cSLisandro Dalcin     ierr = DMSetMatType(dm,typeName);CHKERRQ(ierr);
852073dac72SJed Brown   }
8538f1509bcSBarry Smith   ierr = PetscOptionsEnum("-dm_is_coloring_type","Global or local coloring of Jacobian","DMSetISColoringType",ISColoringTypes,(PetscEnum)dm->coloringtype,(PetscEnum*)&dm->coloringtype,NULL);CHKERRQ(ierr);
854f9ba7244SBarry Smith   if (dm->ops->setfromoptions) {
855e55864a3SBarry Smith     ierr = (*dm->ops->setfromoptions)(PetscOptionsObject,dm);CHKERRQ(ierr);
856f9ba7244SBarry Smith   }
857f9ba7244SBarry Smith   /* process any options handlers added with PetscObjectAddOptionsHandler() */
8580633abcbSJed Brown   ierr = PetscObjectProcessOptionsHandlers(PetscOptionsObject,(PetscObject) dm);CHKERRQ(ierr);
85982fcb398SMatthew G Knepley   ierr = PetscOptionsEnd();CHKERRQ(ierr);
860d7bf68aeSBarry Smith   PetscFunctionReturn(0);
861d7bf68aeSBarry Smith }
862d7bf68aeSBarry Smith 
863fc9bc008SSatish Balay /*@C
864224748a4SBarry Smith     DMView - Views a DM
86547c6ae99SBarry Smith 
86647c6ae99SBarry Smith     Collective on DM
86747c6ae99SBarry Smith 
86847c6ae99SBarry Smith     Input Parameter:
86947c6ae99SBarry Smith +   dm - the DM object to view
87047c6ae99SBarry Smith -   v - the viewer
87147c6ae99SBarry Smith 
872224748a4SBarry Smith     Level: beginner
87347c6ae99SBarry Smith 
874e727c939SJed Brown .seealso DMDestroy(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
87547c6ae99SBarry Smith 
87647c6ae99SBarry Smith @*/
8777087cfbeSBarry Smith PetscErrorCode  DMView(DM dm,PetscViewer v)
87847c6ae99SBarry Smith {
87947c6ae99SBarry Smith   PetscErrorCode    ierr;
88032c0f0efSBarry Smith   PetscBool         isbinary;
88176a8abe0SBarry Smith   PetscMPIInt       size;
88276a8abe0SBarry Smith   PetscViewerFormat format;
88347c6ae99SBarry Smith 
88447c6ae99SBarry Smith   PetscFunctionBegin;
885171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
8863014e516SBarry Smith   if (!v) {
887ce94432eSBarry Smith     ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)dm),&v);CHKERRQ(ierr);
8883014e516SBarry Smith   }
88976a8abe0SBarry Smith   ierr = PetscViewerGetFormat(v,&format);CHKERRQ(ierr);
89076a8abe0SBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)dm),&size);CHKERRQ(ierr);
89176a8abe0SBarry Smith   if (size == 1 && format == PETSC_VIEWER_LOAD_BALANCE) PetscFunctionReturn(0);
89298c3331eSBarry Smith   ierr = PetscObjectPrintClassNamePrefixType((PetscObject)dm,v);CHKERRQ(ierr);
89332c0f0efSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)v,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
89432c0f0efSBarry Smith   if (isbinary) {
89555849f57SBarry Smith     PetscInt classid = DM_FILE_CLASSID;
89632c0f0efSBarry Smith     char     type[256];
89732c0f0efSBarry Smith 
89832c0f0efSBarry Smith     ierr = PetscViewerBinaryWrite(v,&classid,1,PETSC_INT,PETSC_FALSE);CHKERRQ(ierr);
89932c0f0efSBarry Smith     ierr = PetscStrncpy(type,((PetscObject)dm)->type_name,256);CHKERRQ(ierr);
90032c0f0efSBarry Smith     ierr = PetscViewerBinaryWrite(v,type,256,PETSC_CHAR,PETSC_FALSE);CHKERRQ(ierr);
90132c0f0efSBarry Smith   }
9020c010503SBarry Smith   if (dm->ops->view) {
9030c010503SBarry Smith     ierr = (*dm->ops->view)(dm,v);CHKERRQ(ierr);
90447c6ae99SBarry Smith   }
90547c6ae99SBarry Smith   PetscFunctionReturn(0);
90647c6ae99SBarry Smith }
90747c6ae99SBarry Smith 
90847c6ae99SBarry Smith /*@
9098472ad0fSDave May     DMCreateGlobalVector - Creates a global vector from a DM object
91047c6ae99SBarry Smith 
91147c6ae99SBarry Smith     Collective on DM
91247c6ae99SBarry Smith 
91347c6ae99SBarry Smith     Input Parameter:
91447c6ae99SBarry Smith .   dm - the DM object
91547c6ae99SBarry Smith 
91647c6ae99SBarry Smith     Output Parameter:
91747c6ae99SBarry Smith .   vec - the global vector
91847c6ae99SBarry Smith 
919073dac72SJed Brown     Level: beginner
92047c6ae99SBarry Smith 
921e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
92247c6ae99SBarry Smith 
92347c6ae99SBarry Smith @*/
9247087cfbeSBarry Smith PetscErrorCode  DMCreateGlobalVector(DM dm,Vec *vec)
92547c6ae99SBarry Smith {
92647c6ae99SBarry Smith   PetscErrorCode ierr;
92747c6ae99SBarry Smith 
92847c6ae99SBarry Smith   PetscFunctionBegin;
929171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
93047c6ae99SBarry Smith   ierr = (*dm->ops->createglobalvector)(dm,vec);CHKERRQ(ierr);
93147c6ae99SBarry Smith   PetscFunctionReturn(0);
93247c6ae99SBarry Smith }
93347c6ae99SBarry Smith 
93447c6ae99SBarry Smith /*@
9358472ad0fSDave May     DMCreateLocalVector - Creates a local vector from a DM object
93647c6ae99SBarry Smith 
93747c6ae99SBarry Smith     Not Collective
93847c6ae99SBarry Smith 
93947c6ae99SBarry Smith     Input Parameter:
94047c6ae99SBarry Smith .   dm - the DM object
94147c6ae99SBarry Smith 
94247c6ae99SBarry Smith     Output Parameter:
94347c6ae99SBarry Smith .   vec - the local vector
94447c6ae99SBarry Smith 
945073dac72SJed Brown     Level: beginner
94647c6ae99SBarry Smith 
947e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
94847c6ae99SBarry Smith 
94947c6ae99SBarry Smith @*/
9507087cfbeSBarry Smith PetscErrorCode  DMCreateLocalVector(DM dm,Vec *vec)
95147c6ae99SBarry Smith {
95247c6ae99SBarry Smith   PetscErrorCode ierr;
95347c6ae99SBarry Smith 
95447c6ae99SBarry Smith   PetscFunctionBegin;
955171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
95647c6ae99SBarry Smith   ierr = (*dm->ops->createlocalvector)(dm,vec);CHKERRQ(ierr);
95747c6ae99SBarry Smith   PetscFunctionReturn(0);
95847c6ae99SBarry Smith }
95947c6ae99SBarry Smith 
9601411c6eeSJed Brown /*@
9611411c6eeSJed Brown    DMGetLocalToGlobalMapping - Accesses the local-to-global mapping in a DM.
9621411c6eeSJed Brown 
9631411c6eeSJed Brown    Collective on DM
9641411c6eeSJed Brown 
9651411c6eeSJed Brown    Input Parameter:
9661411c6eeSJed Brown .  dm - the DM that provides the mapping
9671411c6eeSJed Brown 
9681411c6eeSJed Brown    Output Parameter:
9691411c6eeSJed Brown .  ltog - the mapping
9701411c6eeSJed Brown 
9711411c6eeSJed Brown    Level: intermediate
9721411c6eeSJed Brown 
9731411c6eeSJed Brown    Notes:
9741411c6eeSJed Brown    This mapping can then be used by VecSetLocalToGlobalMapping() or
9751411c6eeSJed Brown    MatSetLocalToGlobalMapping().
9761411c6eeSJed Brown 
977fc31e74dSBarry Smith .seealso: DMCreateLocalVector()
9781411c6eeSJed Brown @*/
9797087cfbeSBarry Smith PetscErrorCode DMGetLocalToGlobalMapping(DM dm,ISLocalToGlobalMapping *ltog)
9801411c6eeSJed Brown {
9810be3e97aSMatthew G. Knepley   PetscInt       bs = -1, bsLocal[2], bsMinMax[2];
9821411c6eeSJed Brown   PetscErrorCode ierr;
9831411c6eeSJed Brown 
9841411c6eeSJed Brown   PetscFunctionBegin;
9851411c6eeSJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
9861411c6eeSJed Brown   PetscValidPointer(ltog,2);
9871411c6eeSJed Brown   if (!dm->ltogmap) {
98837d0c07bSMatthew G Knepley     PetscSection section, sectionGlobal;
98937d0c07bSMatthew G Knepley 
990e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
99137d0c07bSMatthew G Knepley     if (section) {
992a974ec88SMatthew G. Knepley       const PetscInt *cdofs;
99337d0c07bSMatthew G Knepley       PetscInt       *ltog;
994ccf3bd66SMatthew G. Knepley       PetscInt        pStart, pEnd, n, p, k, l;
99537d0c07bSMatthew G Knepley 
996e87a4003SBarry Smith       ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
99737d0c07bSMatthew G Knepley       ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
998ccf3bd66SMatthew G. Knepley       ierr = PetscSectionGetStorageSize(section, &n);CHKERRQ(ierr);
999ccf3bd66SMatthew G. Knepley       ierr = PetscMalloc1(n, &ltog);CHKERRQ(ierr); /* We want the local+overlap size */
100037d0c07bSMatthew G Knepley       for (p = pStart, l = 0; p < pEnd; ++p) {
1001a974ec88SMatthew G. Knepley         PetscInt bdof, cdof, dof, off, c, cind = 0;
100237d0c07bSMatthew G Knepley 
100337d0c07bSMatthew G Knepley         /* Should probably use constrained dofs */
100437d0c07bSMatthew G Knepley         ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
1005a974ec88SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
1006a974ec88SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(section, p, &cdofs);CHKERRQ(ierr);
100737d0c07bSMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, p, &off);CHKERRQ(ierr);
10081a7dc684SMatthew G. Knepley         /* If you have dofs, and constraints, and they are unequal, we set the blocksize to 1 */
10091a7dc684SMatthew G. Knepley         bdof = cdof && (dof-cdof) ? 1 : dof;
10101a7dc684SMatthew G. Knepley         if (dof) {
1011b190aa46SMatthew G. Knepley           if (bs < 0)          {bs = bdof;}
1012b190aa46SMatthew G. Knepley           else if (bs != bdof) {bs = 1;}
10131a7dc684SMatthew G. Knepley         }
101437d0c07bSMatthew G Knepley         for (c = 0; c < dof; ++c, ++l) {
1015a974ec88SMatthew G. Knepley           if ((cind < cdof) && (c == cdofs[cind])) ltog[l] = off < 0 ? off-c : off+c;
1016a974ec88SMatthew G. Knepley           else                                     ltog[l] = (off < 0 ? -(off+1) : off) + c;
101737d0c07bSMatthew G Knepley         }
101837d0c07bSMatthew G Knepley       }
1019bff27382SMatthew G. Knepley       /* Must have same blocksize on all procs (some might have no points) */
10200be3e97aSMatthew G. Knepley       bsLocal[0] = bs < 0 ? PETSC_MAX_INT : bs; bsLocal[1] = bs;
10210be3e97aSMatthew G. Knepley       ierr = PetscGlobalMinMaxInt(PetscObjectComm((PetscObject) dm), bsLocal, bsMinMax);CHKERRQ(ierr);
10220be3e97aSMatthew G. Knepley       if (bsMinMax[0] != bsMinMax[1]) {bs = 1;}
10230be3e97aSMatthew G. Knepley       else                            {bs = bsMinMax[0];}
10247591dbb2SMatthew G. Knepley       bs = bs < 0 ? 1 : bs;
10257591dbb2SMatthew G. Knepley       /* Must reduce indices by blocksize */
1026ccf3bd66SMatthew G. Knepley       if (bs > 1) {
1027ccf3bd66SMatthew G. Knepley         for (l = 0, k = 0; l < n; l += bs, ++k) ltog[k] = ltog[l]/bs;
1028ccf3bd66SMatthew G. Knepley         n /= bs;
1029ccf3bd66SMatthew G. Knepley       }
1030ccf3bd66SMatthew G. Knepley       ierr = ISLocalToGlobalMappingCreate(PetscObjectComm((PetscObject)dm), bs, n, ltog, PETSC_OWN_POINTER, &dm->ltogmap);CHKERRQ(ierr);
10313bb1ff40SBarry Smith       ierr = PetscLogObjectParent((PetscObject)dm, (PetscObject)dm->ltogmap);CHKERRQ(ierr);
103237d0c07bSMatthew G Knepley     } else {
1033184d77edSJed Brown       if (!dm->ops->getlocaltoglobalmapping) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM can not create LocalToGlobalMapping");
1034184d77edSJed Brown       ierr = (*dm->ops->getlocaltoglobalmapping)(dm);CHKERRQ(ierr);
10351411c6eeSJed Brown     }
103637d0c07bSMatthew G Knepley   }
10371411c6eeSJed Brown   *ltog = dm->ltogmap;
10381411c6eeSJed Brown   PetscFunctionReturn(0);
10391411c6eeSJed Brown }
10401411c6eeSJed Brown 
10411411c6eeSJed Brown /*@
10421411c6eeSJed Brown    DMGetBlockSize - Gets the inherent block size associated with a DM
10431411c6eeSJed Brown 
10441411c6eeSJed Brown    Not Collective
10451411c6eeSJed Brown 
10461411c6eeSJed Brown    Input Parameter:
10471411c6eeSJed Brown .  dm - the DM with block structure
10481411c6eeSJed Brown 
10491411c6eeSJed Brown    Output Parameter:
10501411c6eeSJed Brown .  bs - the block size, 1 implies no exploitable block structure
10511411c6eeSJed Brown 
10521411c6eeSJed Brown    Level: intermediate
10531411c6eeSJed Brown 
1054fc31e74dSBarry Smith .seealso: ISCreateBlock(), VecSetBlockSize(), MatSetBlockSize(), DMGetLocalToGlobalMapping()
10551411c6eeSJed Brown @*/
10567087cfbeSBarry Smith PetscErrorCode  DMGetBlockSize(DM dm,PetscInt *bs)
10571411c6eeSJed Brown {
10581411c6eeSJed Brown   PetscFunctionBegin;
10591411c6eeSJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
10601411c6eeSJed Brown   PetscValidPointer(bs,2);
10611411c6eeSJed 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");
10621411c6eeSJed Brown   *bs = dm->bs;
10631411c6eeSJed Brown   PetscFunctionReturn(0);
10641411c6eeSJed Brown }
10651411c6eeSJed Brown 
106647c6ae99SBarry Smith /*@
10678472ad0fSDave May     DMCreateInterpolation - Gets interpolation matrix between two DM objects
106847c6ae99SBarry Smith 
106947c6ae99SBarry Smith     Collective on DM
107047c6ae99SBarry Smith 
107147c6ae99SBarry Smith     Input Parameter:
107247c6ae99SBarry Smith +   dm1 - the DM object
107347c6ae99SBarry Smith -   dm2 - the second, finer DM object
107447c6ae99SBarry Smith 
107547c6ae99SBarry Smith     Output Parameter:
107647c6ae99SBarry Smith +  mat - the interpolation
107747c6ae99SBarry Smith -  vec - the scaling (optional)
107847c6ae99SBarry Smith 
107947c6ae99SBarry Smith     Level: developer
108047c6ae99SBarry Smith 
108195452b02SPatrick Sanan     Notes:
108295452b02SPatrick 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
108385afcc9aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation.
1084d52bd9f3SBarry Smith 
10851f588964SMatthew G Knepley         For DMDA objects you can use this interpolation (more precisely the interpolation from the DMGetCoordinateDM()) to interpolate the mesh coordinate vectors
1086d52bd9f3SBarry Smith         EXCEPT in the periodic case where it does not make sense since the coordinate vectors are not periodic.
108785afcc9aSBarry Smith 
108885afcc9aSBarry Smith 
10893ad4599aSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction()
109047c6ae99SBarry Smith 
109147c6ae99SBarry Smith @*/
1092e727c939SJed Brown PetscErrorCode  DMCreateInterpolation(DM dm1,DM dm2,Mat *mat,Vec *vec)
109347c6ae99SBarry Smith {
109447c6ae99SBarry Smith   PetscErrorCode ierr;
109547c6ae99SBarry Smith 
109647c6ae99SBarry Smith   PetscFunctionBegin;
1097171400e9SBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
1098171400e9SBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
1099cea54e9dSPatrick Farrell   ierr = PetscLogEventBegin(DM_CreateInterpolation,dm1,dm2,0,0);CHKERRQ(ierr);
110025296bd5SBarry Smith   ierr = (*dm1->ops->createinterpolation)(dm1,dm2,mat,vec);CHKERRQ(ierr);
1101cea54e9dSPatrick Farrell   ierr = PetscLogEventEnd(DM_CreateInterpolation,dm1,dm2,0,0);CHKERRQ(ierr);
110247c6ae99SBarry Smith   PetscFunctionReturn(0);
110347c6ae99SBarry Smith }
110447c6ae99SBarry Smith 
11053ad4599aSBarry Smith /*@
11063ad4599aSBarry Smith     DMCreateRestriction - Gets restriction matrix between two DM objects
11073ad4599aSBarry Smith 
11083ad4599aSBarry Smith     Collective on DM
11093ad4599aSBarry Smith 
11103ad4599aSBarry Smith     Input Parameter:
11113ad4599aSBarry Smith +   dm1 - the DM object
11123ad4599aSBarry Smith -   dm2 - the second, finer DM object
11133ad4599aSBarry Smith 
11143ad4599aSBarry Smith     Output Parameter:
11153ad4599aSBarry Smith .  mat - the restriction
11163ad4599aSBarry Smith 
11173ad4599aSBarry Smith 
11183ad4599aSBarry Smith     Level: developer
11193ad4599aSBarry Smith 
112095452b02SPatrick Sanan     Notes:
112195452b02SPatrick 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
11223ad4599aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the interpolation.
11233ad4599aSBarry Smith 
11243ad4599aSBarry Smith 
11253ad4599aSBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateInterpolation()
11263ad4599aSBarry Smith 
11273ad4599aSBarry Smith @*/
11283ad4599aSBarry Smith PetscErrorCode  DMCreateRestriction(DM dm1,DM dm2,Mat *mat)
11293ad4599aSBarry Smith {
11303ad4599aSBarry Smith   PetscErrorCode ierr;
11313ad4599aSBarry Smith 
11323ad4599aSBarry Smith   PetscFunctionBegin;
11333ad4599aSBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
11343ad4599aSBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
11353ad4599aSBarry Smith   ierr = PetscLogEventBegin(DM_CreateRestriction,dm1,dm2,0,0);CHKERRQ(ierr);
11367294143fSBarry Smith   if (!dm1->ops->createrestriction) SETERRQ(PetscObjectComm((PetscObject)dm1),PETSC_ERR_SUP,"DMCreateRestriction not implemented for this type");
11373ad4599aSBarry Smith   ierr = (*dm1->ops->createrestriction)(dm1,dm2,mat);CHKERRQ(ierr);
11383ad4599aSBarry Smith   ierr = PetscLogEventEnd(DM_CreateRestriction,dm1,dm2,0,0);CHKERRQ(ierr);
11393ad4599aSBarry Smith   PetscFunctionReturn(0);
11403ad4599aSBarry Smith }
11413ad4599aSBarry Smith 
114247c6ae99SBarry Smith /*@
11438472ad0fSDave May     DMCreateInjection - Gets injection matrix between two DM objects
114447c6ae99SBarry Smith 
114547c6ae99SBarry Smith     Collective on DM
114647c6ae99SBarry Smith 
114747c6ae99SBarry Smith     Input Parameter:
114847c6ae99SBarry Smith +   dm1 - the DM object
114947c6ae99SBarry Smith -   dm2 - the second, finer DM object
115047c6ae99SBarry Smith 
115147c6ae99SBarry Smith     Output Parameter:
11526dbf9973SLawrence Mitchell .   mat - the injection
115347c6ae99SBarry Smith 
115447c6ae99SBarry Smith     Level: developer
115547c6ae99SBarry Smith 
115695452b02SPatrick Sanan    Notes:
115795452b02SPatrick 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
115885afcc9aSBarry Smith         DMCoarsen(). The coordinates set into the DMDA are completely ignored in computing the injection.
115985afcc9aSBarry Smith 
1160e727c939SJed Brown .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateColoring(), DMCreateMatrix(), DMCreateInterpolation()
116147c6ae99SBarry Smith 
116247c6ae99SBarry Smith @*/
11636dbf9973SLawrence Mitchell PetscErrorCode  DMCreateInjection(DM dm1,DM dm2,Mat *mat)
116447c6ae99SBarry Smith {
116547c6ae99SBarry Smith   PetscErrorCode ierr;
116647c6ae99SBarry Smith 
116747c6ae99SBarry Smith   PetscFunctionBegin;
1168171400e9SBarry Smith   PetscValidHeaderSpecific(dm1,DM_CLASSID,1);
1169171400e9SBarry Smith   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
11700c4c9125SBarry Smith   if (!dm1->ops->getinjection) SETERRQ(PetscObjectComm((PetscObject)dm1),PETSC_ERR_SUP,"DMCreateInjection not implemented for this type");
11716dbf9973SLawrence Mitchell   ierr = (*dm1->ops->getinjection)(dm1,dm2,mat);CHKERRQ(ierr);
117247c6ae99SBarry Smith   PetscFunctionReturn(0);
117347c6ae99SBarry Smith }
117447c6ae99SBarry Smith 
1175b412c318SBarry Smith /*@
1176bd041c0cSMatthew G. Knepley   DMCreateMassMatrix - Gets mass matrix between two DM objects, M_ij = \int \phi_i \psi_j
1177bd041c0cSMatthew G. Knepley 
1178bd041c0cSMatthew G. Knepley   Collective on DM
1179bd041c0cSMatthew G. Knepley 
1180bd041c0cSMatthew G. Knepley   Input Parameter:
1181bd041c0cSMatthew G. Knepley + dm1 - the DM object
1182bd041c0cSMatthew G. Knepley - dm2 - the second, finer DM object
1183bd041c0cSMatthew G. Knepley 
1184bd041c0cSMatthew G. Knepley   Output Parameter:
1185bd041c0cSMatthew G. Knepley . mat - the interpolation
1186bd041c0cSMatthew G. Knepley 
1187bd041c0cSMatthew G. Knepley   Level: developer
1188bd041c0cSMatthew G. Knepley 
1189bd041c0cSMatthew G. Knepley .seealso DMCreateMatrix(), DMRefine(), DMCoarsen(), DMCreateRestriction(), DMCreateInterpolation(), DMCreateInjection()
1190bd041c0cSMatthew G. Knepley @*/
1191bd041c0cSMatthew G. Knepley PetscErrorCode DMCreateMassMatrix(DM dm1, DM dm2, Mat *mat)
1192bd041c0cSMatthew G. Knepley {
1193bd041c0cSMatthew G. Knepley   PetscErrorCode ierr;
1194bd041c0cSMatthew G. Knepley 
1195bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
1196bd041c0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm1, DM_CLASSID, 1);
1197bd041c0cSMatthew G. Knepley   PetscValidHeaderSpecific(dm2, DM_CLASSID, 2);
1198bd041c0cSMatthew G. Knepley   ierr = (*dm1->ops->createmassmatrix)(dm1, dm2, mat);CHKERRQ(ierr);
1199bd041c0cSMatthew G. Knepley   PetscFunctionReturn(0);
1200bd041c0cSMatthew G. Knepley }
1201bd041c0cSMatthew G. Knepley 
1202bd041c0cSMatthew G. Knepley /*@
1203b412c318SBarry Smith     DMCreateColoring - Gets coloring for a DM
120447c6ae99SBarry Smith 
120547c6ae99SBarry Smith     Collective on DM
120647c6ae99SBarry Smith 
120747c6ae99SBarry Smith     Input Parameter:
120847c6ae99SBarry Smith +   dm - the DM object
12095bdb020cSBarry Smith -   ctype - IS_COLORING_LOCAL or IS_COLORING_GLOBAL
121047c6ae99SBarry Smith 
121147c6ae99SBarry Smith     Output Parameter:
121247c6ae99SBarry Smith .   coloring - the coloring
121347c6ae99SBarry Smith 
121447c6ae99SBarry Smith     Level: developer
121547c6ae99SBarry Smith 
1216b412c318SBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateMatrix(), DMSetMatType()
121747c6ae99SBarry Smith 
1218aab9d709SJed Brown @*/
1219b412c318SBarry Smith PetscErrorCode  DMCreateColoring(DM dm,ISColoringType ctype,ISColoring *coloring)
122047c6ae99SBarry Smith {
122147c6ae99SBarry Smith   PetscErrorCode ierr;
122247c6ae99SBarry Smith 
122347c6ae99SBarry Smith   PetscFunctionBegin;
1224171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1225ce94432eSBarry Smith   if (!dm->ops->getcoloring) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No coloring for this type of DM yet");
1226b412c318SBarry Smith   ierr = (*dm->ops->getcoloring)(dm,ctype,coloring);CHKERRQ(ierr);
122747c6ae99SBarry Smith   PetscFunctionReturn(0);
122847c6ae99SBarry Smith }
122947c6ae99SBarry Smith 
1230b412c318SBarry Smith /*@
12318472ad0fSDave May     DMCreateMatrix - Gets empty Jacobian for a DM
123247c6ae99SBarry Smith 
123347c6ae99SBarry Smith     Collective on DM
123447c6ae99SBarry Smith 
123547c6ae99SBarry Smith     Input Parameter:
1236b412c318SBarry Smith .   dm - the DM object
123747c6ae99SBarry Smith 
123847c6ae99SBarry Smith     Output Parameter:
123947c6ae99SBarry Smith .   mat - the empty Jacobian
124047c6ae99SBarry Smith 
1241073dac72SJed Brown     Level: beginner
124247c6ae99SBarry Smith 
124395452b02SPatrick Sanan     Notes:
124495452b02SPatrick Sanan     This properly preallocates the number of nonzeros in the sparse matrix so you
124594013140SBarry Smith        do not need to do it yourself.
124694013140SBarry Smith 
124794013140SBarry Smith        By default it also sets the nonzero structure and puts in the zero entries. To prevent setting
12487889ec69SBarry Smith        the nonzero pattern call DMSetMatrixPreallocateOnly()
124994013140SBarry Smith 
125094013140SBarry 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
125194013140SBarry Smith        internally by PETSc.
125294013140SBarry Smith 
125394013140SBarry Smith        For structured grid problems, in general it is easiest to use MatSetValuesStencil() or MatSetValuesLocal() to put values into the matrix because MatSetValues() requires
1254aa219208SBarry Smith        the indices for the global numbering for DMDAs which is complicated.
125594013140SBarry Smith 
1256b412c318SBarry Smith .seealso DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMSetMatType()
125747c6ae99SBarry Smith 
1258aab9d709SJed Brown @*/
1259b412c318SBarry Smith PetscErrorCode  DMCreateMatrix(DM dm,Mat *mat)
126047c6ae99SBarry Smith {
126147c6ae99SBarry Smith   PetscErrorCode ierr;
126247c6ae99SBarry Smith 
126347c6ae99SBarry Smith   PetscFunctionBegin;
1264171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1265607a6623SBarry Smith   ierr = MatInitializePackage();CHKERRQ(ierr);
1266c7b7c8a4SJed Brown   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1267c7b7c8a4SJed Brown   PetscValidPointer(mat,3);
1268b412c318SBarry Smith   ierr = (*dm->ops->creatematrix)(dm,mat);CHKERRQ(ierr);
1269e571a35bSMatthew G. Knepley   /* Handle nullspace and near nullspace */
1270e571a35bSMatthew G. Knepley   if (dm->prob) {
1271e571a35bSMatthew G. Knepley     MatNullSpace nullSpace;
1272e571a35bSMatthew G. Knepley     PetscInt     Nf;
1273e571a35bSMatthew G. Knepley 
1274e571a35bSMatthew G. Knepley     ierr = PetscDSGetNumFields(dm->prob, &Nf);CHKERRQ(ierr);
1275e571a35bSMatthew G. Knepley     if (Nf == 1) {
1276e571a35bSMatthew G. Knepley       if (dm->nullspaceConstructors[0]) {
1277e571a35bSMatthew G. Knepley         ierr = (*dm->nullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr);
1278e571a35bSMatthew G. Knepley         ierr = MatSetNullSpace(*mat, nullSpace);CHKERRQ(ierr);
1279e571a35bSMatthew G. Knepley         ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
1280e571a35bSMatthew G. Knepley       }
1281e571a35bSMatthew G. Knepley       if (dm->nearnullspaceConstructors[0]) {
1282e571a35bSMatthew G. Knepley         ierr = (*dm->nearnullspaceConstructors[0])(dm, 0, &nullSpace);CHKERRQ(ierr);
1283e571a35bSMatthew G. Knepley         ierr = MatSetNearNullSpace(*mat, nullSpace);CHKERRQ(ierr);
1284e571a35bSMatthew G. Knepley         ierr = MatNullSpaceDestroy(&nullSpace);CHKERRQ(ierr);
1285e571a35bSMatthew G. Knepley       }
1286e571a35bSMatthew G. Knepley     }
1287e571a35bSMatthew G. Knepley   }
128847c6ae99SBarry Smith   PetscFunctionReturn(0);
128947c6ae99SBarry Smith }
129047c6ae99SBarry Smith 
1291732e2eb9SMatthew G Knepley /*@
1292950540a4SJed Brown   DMSetMatrixPreallocateOnly - When DMCreateMatrix() is called the matrix will be properly
1293732e2eb9SMatthew G Knepley     preallocated but the nonzero structure and zero values will not be set.
1294732e2eb9SMatthew G Knepley 
12958472ad0fSDave May   Logically Collective on DM
1296732e2eb9SMatthew G Knepley 
1297732e2eb9SMatthew G Knepley   Input Parameter:
1298732e2eb9SMatthew G Knepley + dm - the DM
1299732e2eb9SMatthew G Knepley - only - PETSC_TRUE if only want preallocation
1300732e2eb9SMatthew G Knepley 
1301732e2eb9SMatthew G Knepley   Level: developer
1302b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixStructureOnly()
1303732e2eb9SMatthew G Knepley @*/
1304732e2eb9SMatthew G Knepley PetscErrorCode DMSetMatrixPreallocateOnly(DM dm, PetscBool only)
1305732e2eb9SMatthew G Knepley {
1306732e2eb9SMatthew G Knepley   PetscFunctionBegin;
1307732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1308732e2eb9SMatthew G Knepley   dm->prealloc_only = only;
1309732e2eb9SMatthew G Knepley   PetscFunctionReturn(0);
1310732e2eb9SMatthew G Knepley }
1311732e2eb9SMatthew G Knepley 
1312b06ff27eSHong Zhang /*@
1313b06ff27eSHong Zhang   DMSetMatrixStructureOnly - When DMCreateMatrix() is called, the matrix structure will be created
1314b06ff27eSHong Zhang     but the array for values will not be allocated.
1315b06ff27eSHong Zhang 
1316b06ff27eSHong Zhang   Logically Collective on DM
1317b06ff27eSHong Zhang 
1318b06ff27eSHong Zhang   Input Parameter:
1319b06ff27eSHong Zhang + dm - the DM
1320b06ff27eSHong Zhang - only - PETSC_TRUE if only want matrix stucture
1321b06ff27eSHong Zhang 
1322b06ff27eSHong Zhang   Level: developer
1323b06ff27eSHong Zhang .seealso DMCreateMatrix(), DMSetMatrixPreallocateOnly()
1324b06ff27eSHong Zhang @*/
1325b06ff27eSHong Zhang PetscErrorCode DMSetMatrixStructureOnly(DM dm, PetscBool only)
1326b06ff27eSHong Zhang {
1327b06ff27eSHong Zhang   PetscFunctionBegin;
1328b06ff27eSHong Zhang   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1329b06ff27eSHong Zhang   dm->structure_only = only;
1330b06ff27eSHong Zhang   PetscFunctionReturn(0);
1331b06ff27eSHong Zhang }
1332b06ff27eSHong Zhang 
1333a89ea682SMatthew G Knepley /*@C
1334aa1993deSMatthew G Knepley   DMGetWorkArray - Gets a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray()
1335a89ea682SMatthew G Knepley 
1336a89ea682SMatthew G Knepley   Not Collective
1337a89ea682SMatthew G Knepley 
1338a89ea682SMatthew G Knepley   Input Parameters:
1339a89ea682SMatthew G Knepley + dm - the DM object
1340aa1993deSMatthew G Knepley . count - The minium size
134169291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT)
1342a89ea682SMatthew G Knepley 
1343a89ea682SMatthew G Knepley   Output Parameter:
1344a89ea682SMatthew G Knepley . array - the work array
1345a89ea682SMatthew G Knepley 
1346a89ea682SMatthew G Knepley   Level: developer
1347a89ea682SMatthew G Knepley 
1348a89ea682SMatthew G Knepley .seealso DMDestroy(), DMCreate()
1349a89ea682SMatthew G Knepley @*/
135069291d52SBarry Smith PetscErrorCode DMGetWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem)
1351a89ea682SMatthew G Knepley {
1352a89ea682SMatthew G Knepley   PetscErrorCode ierr;
1353aa1993deSMatthew G Knepley   DMWorkLink     link;
135469291d52SBarry Smith   PetscMPIInt    dsize;
1355a89ea682SMatthew G Knepley 
1356a89ea682SMatthew G Knepley   PetscFunctionBegin;
1357a89ea682SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1358aa1993deSMatthew G Knepley   PetscValidPointer(mem,4);
1359aa1993deSMatthew G Knepley   if (dm->workin) {
1360aa1993deSMatthew G Knepley     link       = dm->workin;
1361aa1993deSMatthew G Knepley     dm->workin = dm->workin->next;
1362aa1993deSMatthew G Knepley   } else {
1363b00a9115SJed Brown     ierr = PetscNewLog(dm,&link);CHKERRQ(ierr);
1364a89ea682SMatthew G Knepley   }
136569291d52SBarry Smith   ierr = MPI_Type_size(dtype,&dsize);CHKERRQ(ierr);
13665056fcd2SBarry Smith   if (((size_t)dsize*count) > link->bytes) {
1367aa1993deSMatthew G Knepley     ierr        = PetscFree(link->mem);CHKERRQ(ierr);
1368854ce69bSBarry Smith     ierr        = PetscMalloc(dsize*count,&link->mem);CHKERRQ(ierr);
1369854ce69bSBarry Smith     link->bytes = dsize*count;
1370aa1993deSMatthew G Knepley   }
1371aa1993deSMatthew G Knepley   link->next   = dm->workout;
1372aa1993deSMatthew G Knepley   dm->workout  = link;
1373aa1993deSMatthew G Knepley   *(void**)mem = link->mem;
1374a89ea682SMatthew G Knepley   PetscFunctionReturn(0);
1375a89ea682SMatthew G Knepley }
1376a89ea682SMatthew G Knepley 
1377aa1993deSMatthew G Knepley /*@C
1378aa1993deSMatthew G Knepley   DMRestoreWorkArray - Restores a work array guaranteed to be at least the input size, restore with DMRestoreWorkArray()
1379aa1993deSMatthew G Knepley 
1380aa1993deSMatthew G Knepley   Not Collective
1381aa1993deSMatthew G Knepley 
1382aa1993deSMatthew G Knepley   Input Parameters:
1383aa1993deSMatthew G Knepley + dm - the DM object
1384aa1993deSMatthew G Knepley . count - The minium size
138569291d52SBarry Smith - dtype - MPI data type, often MPIU_REAL, MPIU_SCALAR, MPIU_INT
1386aa1993deSMatthew G Knepley 
1387aa1993deSMatthew G Knepley   Output Parameter:
1388aa1993deSMatthew G Knepley . array - the work array
1389aa1993deSMatthew G Knepley 
1390aa1993deSMatthew G Knepley   Level: developer
1391aa1993deSMatthew G Knepley 
139295452b02SPatrick Sanan   Developer Notes:
139395452b02SPatrick Sanan     count and dtype are ignored, they are only needed for DMGetWorkArray()
1394aa1993deSMatthew G Knepley .seealso DMDestroy(), DMCreate()
1395aa1993deSMatthew G Knepley @*/
139669291d52SBarry Smith PetscErrorCode DMRestoreWorkArray(DM dm,PetscInt count,MPI_Datatype dtype,void *mem)
1397aa1993deSMatthew G Knepley {
1398aa1993deSMatthew G Knepley   DMWorkLink *p,link;
1399aa1993deSMatthew G Knepley 
1400aa1993deSMatthew G Knepley   PetscFunctionBegin;
1401aa1993deSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1402aa1993deSMatthew G Knepley   PetscValidPointer(mem,4);
1403aa1993deSMatthew G Knepley   for (p=&dm->workout; (link=*p); p=&link->next) {
1404aa1993deSMatthew G Knepley     if (link->mem == *(void**)mem) {
1405aa1993deSMatthew G Knepley       *p           = link->next;
1406aa1993deSMatthew G Knepley       link->next   = dm->workin;
1407aa1993deSMatthew G Knepley       dm->workin   = link;
14080298fd71SBarry Smith       *(void**)mem = NULL;
1409aa1993deSMatthew G Knepley       PetscFunctionReturn(0);
1410aa1993deSMatthew G Knepley     }
1411aa1993deSMatthew G Knepley   }
1412aa1993deSMatthew G Knepley   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Array was not checked out");
1413aa1993deSMatthew G Knepley }
1414e7c4fc90SDmitry Karpeev 
1415435a35e8SMatthew G Knepley PetscErrorCode DMSetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1416435a35e8SMatthew G Knepley {
1417435a35e8SMatthew G Knepley   PetscFunctionBegin;
1418435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
141982f516ccSBarry Smith   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1420435a35e8SMatthew G Knepley   dm->nullspaceConstructors[field] = nullsp;
1421435a35e8SMatthew G Knepley   PetscFunctionReturn(0);
1422435a35e8SMatthew G Knepley }
1423435a35e8SMatthew G Knepley 
14240a50eb56SMatthew G. Knepley PetscErrorCode DMGetNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
14250a50eb56SMatthew G. Knepley {
14260a50eb56SMatthew G. Knepley   PetscFunctionBegin;
14270a50eb56SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1428f9d4088aSMatthew G. Knepley   PetscValidPointer(nullsp, 3);
14290a50eb56SMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
14300a50eb56SMatthew G. Knepley   *nullsp = dm->nullspaceConstructors[field];
14310a50eb56SMatthew G. Knepley   PetscFunctionReturn(0);
14320a50eb56SMatthew G. Knepley }
14330a50eb56SMatthew G. Knepley 
1434f9d4088aSMatthew G. Knepley PetscErrorCode DMSetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (*nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1435f9d4088aSMatthew G. Knepley {
1436f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1437f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1438f9d4088aSMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1439f9d4088aSMatthew G. Knepley   dm->nearnullspaceConstructors[field] = nullsp;
1440f9d4088aSMatthew G. Knepley   PetscFunctionReturn(0);
1441f9d4088aSMatthew G. Knepley }
1442f9d4088aSMatthew G. Knepley 
1443f9d4088aSMatthew G. Knepley PetscErrorCode DMGetNearNullSpaceConstructor(DM dm, PetscInt field, PetscErrorCode (**nullsp)(DM dm, PetscInt field, MatNullSpace *nullSpace))
1444f9d4088aSMatthew G. Knepley {
1445f9d4088aSMatthew G. Knepley   PetscFunctionBegin;
1446f9d4088aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1447f9d4088aSMatthew G. Knepley   PetscValidPointer(nullsp, 3);
1448f9d4088aSMatthew G. Knepley   if (field >= 10) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Cannot handle %d >= 10 fields", field);
1449f9d4088aSMatthew G. Knepley   *nullsp = dm->nearnullspaceConstructors[field];
1450f9d4088aSMatthew G. Knepley   PetscFunctionReturn(0);
1451f9d4088aSMatthew G. Knepley }
1452f9d4088aSMatthew G. Knepley 
14534f3b5142SJed Brown /*@C
14544d343eeaSMatthew G Knepley   DMCreateFieldIS - Creates a set of IS objects with the global indices of dofs for each field
14554d343eeaSMatthew G Knepley 
14564d343eeaSMatthew G Knepley   Not collective
14574d343eeaSMatthew G Knepley 
14584d343eeaSMatthew G Knepley   Input Parameter:
14594d343eeaSMatthew G Knepley . dm - the DM object
14604d343eeaSMatthew G Knepley 
14614d343eeaSMatthew G Knepley   Output Parameters:
14620298fd71SBarry Smith + numFields  - The number of fields (or NULL if not requested)
14630298fd71SBarry Smith . fieldNames - The name for each field (or NULL if not requested)
14640298fd71SBarry Smith - fields     - The global indices for each field (or NULL if not requested)
14654d343eeaSMatthew G Knepley 
14664d343eeaSMatthew G Knepley   Level: intermediate
14674d343eeaSMatthew G Knepley 
146821c9b008SJed Brown   Notes:
146921c9b008SJed Brown   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
147021c9b008SJed Brown   PetscFree(), every entry of fields should be destroyed with ISDestroy(), and both arrays should be freed with
147121c9b008SJed Brown   PetscFree().
147221c9b008SJed Brown 
14734d343eeaSMatthew G Knepley .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix()
14744d343eeaSMatthew G Knepley @*/
147537d0c07bSMatthew G Knepley PetscErrorCode DMCreateFieldIS(DM dm, PetscInt *numFields, char ***fieldNames, IS **fields)
14764d343eeaSMatthew G Knepley {
147737d0c07bSMatthew G Knepley   PetscSection   section, sectionGlobal;
14784d343eeaSMatthew G Knepley   PetscErrorCode ierr;
14794d343eeaSMatthew G Knepley 
14804d343eeaSMatthew G Knepley   PetscFunctionBegin;
14814d343eeaSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
148269ca1f37SDmitry Karpeev   if (numFields) {
148369ca1f37SDmitry Karpeev     PetscValidPointer(numFields,2);
148469ca1f37SDmitry Karpeev     *numFields = 0;
148569ca1f37SDmitry Karpeev   }
148637d0c07bSMatthew G Knepley   if (fieldNames) {
148737d0c07bSMatthew G Knepley     PetscValidPointer(fieldNames,3);
14880298fd71SBarry Smith     *fieldNames = NULL;
148969ca1f37SDmitry Karpeev   }
149069ca1f37SDmitry Karpeev   if (fields) {
149169ca1f37SDmitry Karpeev     PetscValidPointer(fields,4);
14920298fd71SBarry Smith     *fields = NULL;
149369ca1f37SDmitry Karpeev   }
1494e87a4003SBarry Smith   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
149537d0c07bSMatthew G Knepley   if (section) {
14963a544194SStefano Zampini     PetscInt *fieldSizes, *fieldNc, **fieldIndices;
149737d0c07bSMatthew G Knepley     PetscInt nF, f, pStart, pEnd, p;
149837d0c07bSMatthew G Knepley 
1499e87a4003SBarry Smith     ierr = DMGetGlobalSection(dm, &sectionGlobal);CHKERRQ(ierr);
150037d0c07bSMatthew G Knepley     ierr = PetscSectionGetNumFields(section, &nF);CHKERRQ(ierr);
15013a544194SStefano Zampini     ierr = PetscMalloc3(nF,&fieldSizes,nF,&fieldNc,nF,&fieldIndices);CHKERRQ(ierr);
150237d0c07bSMatthew G Knepley     ierr = PetscSectionGetChart(sectionGlobal, &pStart, &pEnd);CHKERRQ(ierr);
150337d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
150437d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
15053a544194SStefano Zampini       ierr          = PetscSectionGetFieldComponents(section, f, &fieldNc[f]);CHKERRQ(ierr);
150637d0c07bSMatthew G Knepley     }
150737d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
150837d0c07bSMatthew G Knepley       PetscInt gdof;
150937d0c07bSMatthew G Knepley 
151037d0c07bSMatthew G Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
151137d0c07bSMatthew G Knepley       if (gdof > 0) {
151237d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
15133a544194SStefano Zampini           PetscInt fdof, fcdof, fpdof;
151437d0c07bSMatthew G Knepley 
151537d0c07bSMatthew G Knepley           ierr  = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
151637d0c07bSMatthew G Knepley           ierr  = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
15173a544194SStefano Zampini           fpdof = fdof-fcdof;
15183a544194SStefano Zampini           if (fpdof && fpdof != fieldNc[f]) {
15193a544194SStefano Zampini             /* Layout does not admit a pointwise block size */
15203a544194SStefano Zampini             fieldNc[f] = 1;
15213a544194SStefano Zampini           }
15223a544194SStefano Zampini           fieldSizes[f] += fpdof;
152337d0c07bSMatthew G Knepley         }
152437d0c07bSMatthew G Knepley       }
152537d0c07bSMatthew G Knepley     }
152637d0c07bSMatthew G Knepley     for (f = 0; f < nF; ++f) {
1527785e854fSJed Brown       ierr          = PetscMalloc1(fieldSizes[f], &fieldIndices[f]);CHKERRQ(ierr);
152837d0c07bSMatthew G Knepley       fieldSizes[f] = 0;
152937d0c07bSMatthew G Knepley     }
153037d0c07bSMatthew G Knepley     for (p = pStart; p < pEnd; ++p) {
153137d0c07bSMatthew G Knepley       PetscInt gdof, goff;
153237d0c07bSMatthew G Knepley 
153337d0c07bSMatthew G Knepley       ierr = PetscSectionGetDof(sectionGlobal, p, &gdof);CHKERRQ(ierr);
153437d0c07bSMatthew G Knepley       if (gdof > 0) {
153537d0c07bSMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr);
153637d0c07bSMatthew G Knepley         for (f = 0; f < nF; ++f) {
153737d0c07bSMatthew G Knepley           PetscInt fdof, fcdof, fc;
153837d0c07bSMatthew G Knepley 
153937d0c07bSMatthew G Knepley           ierr = PetscSectionGetFieldDof(section, p, f, &fdof);CHKERRQ(ierr);
154037d0c07bSMatthew G Knepley           ierr = PetscSectionGetFieldConstraintDof(section, p, f, &fcdof);CHKERRQ(ierr);
154137d0c07bSMatthew G Knepley           for (fc = 0; fc < fdof-fcdof; ++fc, ++fieldSizes[f]) {
154237d0c07bSMatthew G Knepley             fieldIndices[f][fieldSizes[f]] = goff++;
154337d0c07bSMatthew G Knepley           }
154437d0c07bSMatthew G Knepley         }
154537d0c07bSMatthew G Knepley       }
154637d0c07bSMatthew G Knepley     }
15478865f1eaSKarl Rupp     if (numFields) *numFields = nF;
154837d0c07bSMatthew G Knepley     if (fieldNames) {
1549785e854fSJed Brown       ierr = PetscMalloc1(nF, fieldNames);CHKERRQ(ierr);
155037d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
155137d0c07bSMatthew G Knepley         const char *fieldName;
155237d0c07bSMatthew G Knepley 
155337d0c07bSMatthew G Knepley         ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr);
155437d0c07bSMatthew G Knepley         ierr = PetscStrallocpy(fieldName, (char**) &(*fieldNames)[f]);CHKERRQ(ierr);
155537d0c07bSMatthew G Knepley       }
155637d0c07bSMatthew G Knepley     }
155737d0c07bSMatthew G Knepley     if (fields) {
1558785e854fSJed Brown       ierr = PetscMalloc1(nF, fields);CHKERRQ(ierr);
155937d0c07bSMatthew G Knepley       for (f = 0; f < nF; ++f) {
15603a544194SStefano Zampini         PetscInt bs, in[2], out[2];
15613a544194SStefano Zampini 
156282f516ccSBarry Smith         ierr  = ISCreateGeneral(PetscObjectComm((PetscObject)dm), fieldSizes[f], fieldIndices[f], PETSC_OWN_POINTER, &(*fields)[f]);CHKERRQ(ierr);
15633a544194SStefano Zampini         in[0] = -fieldNc[f];
15643a544194SStefano Zampini         in[1] = fieldNc[f];
15653a544194SStefano Zampini         ierr  = MPIU_Allreduce(in, out, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
15663a544194SStefano Zampini         bs    = (-out[0] == out[1]) ? out[1] : 1;
15673a544194SStefano Zampini         ierr  = ISSetBlockSize((*fields)[f], bs);CHKERRQ(ierr);
156837d0c07bSMatthew G Knepley       }
156937d0c07bSMatthew G Knepley     }
15703a544194SStefano Zampini     ierr = PetscFree3(fieldSizes,fieldNc,fieldIndices);CHKERRQ(ierr);
15718865f1eaSKarl Rupp   } else if (dm->ops->createfieldis) {
15728865f1eaSKarl Rupp     ierr = (*dm->ops->createfieldis)(dm, numFields, fieldNames, fields);CHKERRQ(ierr);
157369ca1f37SDmitry Karpeev   }
15744d343eeaSMatthew G Knepley   PetscFunctionReturn(0);
15754d343eeaSMatthew G Knepley }
15764d343eeaSMatthew G Knepley 
157716621825SDmitry Karpeev 
157816621825SDmitry Karpeev /*@C
157916621825SDmitry Karpeev   DMCreateFieldDecomposition - Returns a list of IS objects defining a decomposition of a problem into subproblems
158016621825SDmitry Karpeev                           corresponding to different fields: each IS contains the global indices of the dofs of the
158116621825SDmitry Karpeev                           corresponding field. The optional list of DMs define the DM for each subproblem.
1582e7c4fc90SDmitry Karpeev                           Generalizes DMCreateFieldIS().
1583e7c4fc90SDmitry Karpeev 
1584e7c4fc90SDmitry Karpeev   Not collective
1585e7c4fc90SDmitry Karpeev 
1586e7c4fc90SDmitry Karpeev   Input Parameter:
1587e7c4fc90SDmitry Karpeev . dm - the DM object
1588e7c4fc90SDmitry Karpeev 
1589e7c4fc90SDmitry Karpeev   Output Parameters:
15900298fd71SBarry Smith + len       - The number of subproblems in the field decomposition (or NULL if not requested)
15910298fd71SBarry Smith . namelist  - The name for each field (or NULL if not requested)
15920298fd71SBarry Smith . islist    - The global indices for each field (or NULL if not requested)
15930298fd71SBarry Smith - dmlist    - The DMs for each field subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined)
1594e7c4fc90SDmitry Karpeev 
1595e7c4fc90SDmitry Karpeev   Level: intermediate
1596e7c4fc90SDmitry Karpeev 
1597e7c4fc90SDmitry Karpeev   Notes:
1598e7c4fc90SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
1599e7c4fc90SDmitry Karpeev   PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(),
1600e7c4fc90SDmitry Karpeev   and all of the arrays should be freed with PetscFree().
1601e7c4fc90SDmitry Karpeev 
1602e7c4fc90SDmitry Karpeev .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1603e7c4fc90SDmitry Karpeev @*/
160416621825SDmitry Karpeev PetscErrorCode DMCreateFieldDecomposition(DM dm, PetscInt *len, char ***namelist, IS **islist, DM **dmlist)
1605e7c4fc90SDmitry Karpeev {
1606e7c4fc90SDmitry Karpeev   PetscErrorCode ierr;
1607e7c4fc90SDmitry Karpeev 
1608e7c4fc90SDmitry Karpeev   PetscFunctionBegin;
1609e7c4fc90SDmitry Karpeev   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
16108865f1eaSKarl Rupp   if (len) {
16118865f1eaSKarl Rupp     PetscValidPointer(len,2);
16128865f1eaSKarl Rupp     *len = 0;
16138865f1eaSKarl Rupp   }
16148865f1eaSKarl Rupp   if (namelist) {
16158865f1eaSKarl Rupp     PetscValidPointer(namelist,3);
16168865f1eaSKarl Rupp     *namelist = 0;
16178865f1eaSKarl Rupp   }
16188865f1eaSKarl Rupp   if (islist) {
16198865f1eaSKarl Rupp     PetscValidPointer(islist,4);
16208865f1eaSKarl Rupp     *islist = 0;
16218865f1eaSKarl Rupp   }
16228865f1eaSKarl Rupp   if (dmlist) {
16238865f1eaSKarl Rupp     PetscValidPointer(dmlist,5);
16248865f1eaSKarl Rupp     *dmlist = 0;
16258865f1eaSKarl Rupp   }
1626f3f0edfdSDmitry Karpeev   /*
1627f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
1628f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
1629f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
1630f3f0edfdSDmitry Karpeev    */
1631ce94432eSBarry Smith   if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
163216621825SDmitry Karpeev   if (!dm->ops->createfielddecomposition) {
1633435a35e8SMatthew G Knepley     PetscSection section;
1634435a35e8SMatthew G Knepley     PetscInt     numFields, f;
1635435a35e8SMatthew G Knepley 
1636e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
1637435a35e8SMatthew G Knepley     if (section) {ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);}
1638435a35e8SMatthew G Knepley     if (section && numFields && dm->ops->createsubdm) {
1639f25d98f1SMatthew G. Knepley       if (len) *len = numFields;
164003dc3394SMatthew G. Knepley       if (namelist) {ierr = PetscMalloc1(numFields,namelist);CHKERRQ(ierr);}
164103dc3394SMatthew G. Knepley       if (islist)   {ierr = PetscMalloc1(numFields,islist);CHKERRQ(ierr);}
164203dc3394SMatthew G. Knepley       if (dmlist)   {ierr = PetscMalloc1(numFields,dmlist);CHKERRQ(ierr);}
1643435a35e8SMatthew G Knepley       for (f = 0; f < numFields; ++f) {
1644435a35e8SMatthew G Knepley         const char *fieldName;
1645435a35e8SMatthew G Knepley 
164603dc3394SMatthew G. Knepley         ierr = DMCreateSubDM(dm, 1, &f, islist ? &(*islist)[f] : NULL, dmlist ? &(*dmlist)[f] : NULL);CHKERRQ(ierr);
164703dc3394SMatthew G. Knepley         if (namelist) {
1648435a35e8SMatthew G Knepley           ierr = PetscSectionGetFieldName(section, f, &fieldName);CHKERRQ(ierr);
1649435a35e8SMatthew G Knepley           ierr = PetscStrallocpy(fieldName, (char**) &(*namelist)[f]);CHKERRQ(ierr);
1650435a35e8SMatthew G Knepley         }
165103dc3394SMatthew G. Knepley       }
1652435a35e8SMatthew G Knepley     } else {
165369ca1f37SDmitry Karpeev       ierr = DMCreateFieldIS(dm, len, namelist, islist);CHKERRQ(ierr);
1654e7c4fc90SDmitry Karpeev       /* By default there are no DMs associated with subproblems. */
16550298fd71SBarry Smith       if (dmlist) *dmlist = NULL;
1656e7c4fc90SDmitry Karpeev     }
16578865f1eaSKarl Rupp   } else {
165816621825SDmitry Karpeev     ierr = (*dm->ops->createfielddecomposition)(dm,len,namelist,islist,dmlist);CHKERRQ(ierr);
165916621825SDmitry Karpeev   }
166016621825SDmitry Karpeev   PetscFunctionReturn(0);
166116621825SDmitry Karpeev }
166216621825SDmitry Karpeev 
1663564cec59SMatthew G. Knepley /*@
1664435a35e8SMatthew G Knepley   DMCreateSubDM - Returns an IS and DM encapsulating a subproblem defined by the fields passed in.
1665435a35e8SMatthew G Knepley                   The fields are defined by DMCreateFieldIS().
1666435a35e8SMatthew G Knepley 
1667435a35e8SMatthew G Knepley   Not collective
1668435a35e8SMatthew G Knepley 
1669435a35e8SMatthew G Knepley   Input Parameters:
16702adcc780SMatthew G. Knepley + dm        - The DM object
16712adcc780SMatthew G. Knepley . numFields - The number of fields in this subproblem
16722adcc780SMatthew G. Knepley - fields    - The field numbers of the selected fields
1673435a35e8SMatthew G Knepley 
1674435a35e8SMatthew G Knepley   Output Parameters:
16752adcc780SMatthew G. Knepley + is - The global indices for the subproblem
16762adcc780SMatthew G. Knepley - subdm - The DM for the subproblem
1677435a35e8SMatthew G Knepley 
16785d3b26e6SMatthew G. Knepley   Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed
16795d3b26e6SMatthew G. Knepley 
1680435a35e8SMatthew G Knepley   Level: intermediate
1681435a35e8SMatthew G Knepley 
16825d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1683435a35e8SMatthew G Knepley @*/
168437bc7515SMatthew G. Knepley PetscErrorCode DMCreateSubDM(DM dm, PetscInt numFields, const PetscInt fields[], IS *is, DM *subdm)
1685435a35e8SMatthew G Knepley {
1686435a35e8SMatthew G Knepley   PetscErrorCode ierr;
1687435a35e8SMatthew G Knepley 
1688435a35e8SMatthew G Knepley   PetscFunctionBegin;
1689435a35e8SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1690435a35e8SMatthew G Knepley   PetscValidPointer(fields,3);
16918865f1eaSKarl Rupp   if (is) PetscValidPointer(is,4);
16928865f1eaSKarl Rupp   if (subdm) PetscValidPointer(subdm,5);
1693435a35e8SMatthew G Knepley   if (dm->ops->createsubdm) {
1694435a35e8SMatthew G Knepley     ierr = (*dm->ops->createsubdm)(dm, numFields, fields, is, subdm);CHKERRQ(ierr);
169582f516ccSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "This type has no DMCreateSubDM implementation defined");
1696435a35e8SMatthew G Knepley   PetscFunctionReturn(0);
1697435a35e8SMatthew G Knepley }
1698435a35e8SMatthew G Knepley 
16992adcc780SMatthew G. Knepley /*@C
17002adcc780SMatthew G. Knepley   DMCreateSuperDM - Returns an arrays of ISes and DM encapsulating a superproblem defined by the DMs passed in.
17012adcc780SMatthew G. Knepley 
17022adcc780SMatthew G. Knepley   Not collective
17032adcc780SMatthew G. Knepley 
17042adcc780SMatthew G. Knepley   Input Parameter:
17052adcc780SMatthew G. Knepley + dms - The DM objects
17062adcc780SMatthew G. Knepley - len - The number of DMs
17072adcc780SMatthew G. Knepley 
17082adcc780SMatthew G. Knepley   Output Parameters:
1709a42bd24dSMatthew G. Knepley + is - The global indices for the subproblem, or NULL
17102adcc780SMatthew G. Knepley - superdm - The DM for the superproblem
17112adcc780SMatthew G. Knepley 
17125d3b26e6SMatthew G. Knepley   Note: You need to call DMPlexSetMigrationSF() on the original DM if you want the Global-To-Natural map to be automatically constructed
17135d3b26e6SMatthew G. Knepley 
17142adcc780SMatthew G. Knepley   Level: intermediate
17152adcc780SMatthew G. Knepley 
17165d3b26e6SMatthew G. Knepley .seealso DMPlexSetMigrationSF(), DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
17172adcc780SMatthew G. Knepley @*/
17182adcc780SMatthew G. Knepley PetscErrorCode DMCreateSuperDM(DM dms[], PetscInt len, IS **is, DM *superdm)
17192adcc780SMatthew G. Knepley {
17202adcc780SMatthew G. Knepley   PetscInt       i;
17212adcc780SMatthew G. Knepley   PetscErrorCode ierr;
17222adcc780SMatthew G. Knepley 
17232adcc780SMatthew G. Knepley   PetscFunctionBegin;
17242adcc780SMatthew G. Knepley   PetscValidPointer(dms,1);
17252adcc780SMatthew G. Knepley   for (i = 0; i < len; ++i) {PetscValidHeaderSpecific(dms[i],DM_CLASSID,1);}
17262adcc780SMatthew G. Knepley   if (is) PetscValidPointer(is,3);
1727a42bd24dSMatthew G. Knepley   PetscValidPointer(superdm,4);
17282adcc780SMatthew G. Knepley   if (len < 0) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Number of DMs must be nonnegative: %D", len);
17292adcc780SMatthew G. Knepley   if (len) {
1730a42bd24dSMatthew G. Knepley     if (dms[0]->ops->createsuperdm) {ierr = (*dms[0]->ops->createsuperdm)(dms, len, is, superdm);CHKERRQ(ierr);}
1731a42bd24dSMatthew G. Knepley     else SETERRQ(PetscObjectComm((PetscObject) dms[0]), PETSC_ERR_SUP, "This type has no DMCreateSuperDM implementation defined");
17322adcc780SMatthew G. Knepley   }
17332adcc780SMatthew G. Knepley   PetscFunctionReturn(0);
17342adcc780SMatthew G. Knepley }
17352adcc780SMatthew G. Knepley 
173616621825SDmitry Karpeev 
173716621825SDmitry Karpeev /*@C
17388d4ac253SDmitry Karpeev   DMCreateDomainDecomposition - Returns lists of IS objects defining a decomposition of a problem into subproblems
17398d4ac253SDmitry Karpeev                           corresponding to restrictions to pairs nested subdomains: each IS contains the global
17408d4ac253SDmitry Karpeev                           indices of the dofs of the corresponding subdomains.  The inner subdomains conceptually
17418d4ac253SDmitry Karpeev                           define a nonoverlapping covering, while outer subdomains can overlap.
17428d4ac253SDmitry Karpeev                           The optional list of DMs define the DM for each subproblem.
174316621825SDmitry Karpeev 
174416621825SDmitry Karpeev   Not collective
174516621825SDmitry Karpeev 
174616621825SDmitry Karpeev   Input Parameter:
174716621825SDmitry Karpeev . dm - the DM object
174816621825SDmitry Karpeev 
174916621825SDmitry Karpeev   Output Parameters:
17500298fd71SBarry Smith + len         - The number of subproblems in the domain decomposition (or NULL if not requested)
17510298fd71SBarry Smith . namelist    - The name for each subdomain (or NULL if not requested)
17520298fd71SBarry Smith . innerislist - The global indices for each inner subdomain (or NULL, if not requested)
17530298fd71SBarry Smith . outerislist - The global indices for each outer subdomain (or NULL, if not requested)
17540298fd71SBarry Smith - dmlist      - The DMs for each subdomain subproblem (or NULL, if not requested; if NULL is returned, no DMs are defined)
175516621825SDmitry Karpeev 
175616621825SDmitry Karpeev   Level: intermediate
175716621825SDmitry Karpeev 
175816621825SDmitry Karpeev   Notes:
175916621825SDmitry Karpeev   The user is responsible for freeing all requested arrays. In particular, every entry of names should be freed with
176016621825SDmitry Karpeev   PetscFree(), every entry of is should be destroyed with ISDestroy(), every entry of dm should be destroyed with DMDestroy(),
176116621825SDmitry Karpeev   and all of the arrays should be freed with PetscFree().
176216621825SDmitry Karpeev 
17638d4ac253SDmitry Karpeev .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateDomainDecompositionDM(), DMCreateFieldDecomposition()
176416621825SDmitry Karpeev @*/
17658d4ac253SDmitry Karpeev PetscErrorCode DMCreateDomainDecomposition(DM dm, PetscInt *len, char ***namelist, IS **innerislist, IS **outerislist, DM **dmlist)
176616621825SDmitry Karpeev {
176716621825SDmitry Karpeev   PetscErrorCode      ierr;
1768be081cd6SPeter Brune   DMSubDomainHookLink link;
1769be081cd6SPeter Brune   PetscInt            i,l;
177016621825SDmitry Karpeev 
177116621825SDmitry Karpeev   PetscFunctionBegin;
177216621825SDmitry Karpeev   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
177314a18fd3SPeter Brune   if (len)           {PetscValidPointer(len,2);            *len         = 0;}
17740298fd71SBarry Smith   if (namelist)      {PetscValidPointer(namelist,3);       *namelist    = NULL;}
17750298fd71SBarry Smith   if (innerislist)   {PetscValidPointer(innerislist,4);    *innerislist = NULL;}
17760298fd71SBarry Smith   if (outerislist)   {PetscValidPointer(outerislist,5);    *outerislist = NULL;}
17770298fd71SBarry Smith   if (dmlist)        {PetscValidPointer(dmlist,6);         *dmlist      = NULL;}
1778f3f0edfdSDmitry Karpeev   /*
1779f3f0edfdSDmitry Karpeev    Is it a good idea to apply the following check across all impls?
1780f3f0edfdSDmitry Karpeev    Perhaps some impls can have a well-defined decomposition before DMSetUp?
1781f3f0edfdSDmitry Karpeev    This, however, follows the general principle that accessors are not well-behaved until the object is set up.
1782f3f0edfdSDmitry Karpeev    */
1783ce94432eSBarry Smith   if (!dm->setupcalled) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_WRONGSTATE, "Decomposition defined only after DMSetUp");
178416621825SDmitry Karpeev   if (dm->ops->createdomaindecomposition) {
1785be081cd6SPeter Brune     ierr = (*dm->ops->createdomaindecomposition)(dm,&l,namelist,innerislist,outerislist,dmlist);CHKERRQ(ierr);
178614a18fd3SPeter Brune     /* copy subdomain hooks and context over to the subdomain DMs */
1787f891f5b9SPatrick Sanan     if (dmlist && *dmlist) {
1788be081cd6SPeter Brune       for (i = 0; i < l; i++) {
1789be081cd6SPeter Brune         for (link=dm->subdomainhook; link; link=link->next) {
1790be081cd6SPeter Brune           if (link->ddhook) {ierr = (*link->ddhook)(dm,(*dmlist)[i],link->ctx);CHKERRQ(ierr);}
1791be081cd6SPeter Brune         }
1792648262bbSPatrick Sanan         if (dm->ctx) (*dmlist)[i]->ctx = dm->ctx;
1793e7c4fc90SDmitry Karpeev       }
179414a18fd3SPeter Brune     }
179514a18fd3SPeter Brune     if (len) *len = l;
179614a18fd3SPeter Brune   }
1797e30e807fSPeter Brune   PetscFunctionReturn(0);
1798e30e807fSPeter Brune }
1799e30e807fSPeter Brune 
1800e30e807fSPeter Brune 
1801e30e807fSPeter Brune /*@C
1802e30e807fSPeter Brune   DMCreateDomainDecompositionScatters - Returns scatters to the subdomain vectors from the global vector
1803e30e807fSPeter Brune 
1804e30e807fSPeter Brune   Not collective
1805e30e807fSPeter Brune 
1806e30e807fSPeter Brune   Input Parameters:
1807e30e807fSPeter Brune + dm - the DM object
1808e30e807fSPeter Brune . n  - the number of subdomain scatters
1809e30e807fSPeter Brune - subdms - the local subdomains
1810e30e807fSPeter Brune 
1811e30e807fSPeter Brune   Output Parameters:
1812e30e807fSPeter Brune + n     - the number of scatters returned
1813e30e807fSPeter Brune . iscat - scatter from global vector to nonoverlapping global vector entries on subdomain
1814e30e807fSPeter Brune . oscat - scatter from global vector to overlapping global vector entries on subdomain
1815e30e807fSPeter Brune - gscat - scatter from global vector to local vector on subdomain (fills in ghosts)
1816e30e807fSPeter Brune 
181795452b02SPatrick Sanan   Notes:
181895452b02SPatrick Sanan     This is an alternative to the iis and ois arguments in DMCreateDomainDecomposition that allow for the solution
1819e30e807fSPeter Brune   of general nonlinear problems with overlapping subdomain methods.  While merely having index sets that enable subsets
1820e30e807fSPeter Brune   of the residual equations to be created is fine for linear problems, nonlinear problems require local assembly of
1821e30e807fSPeter Brune   solution and residual data.
1822e30e807fSPeter Brune 
1823e30e807fSPeter Brune   Level: developer
1824e30e807fSPeter Brune 
1825e30e807fSPeter Brune .seealso DMDestroy(), DMView(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMCreateFieldIS()
1826e30e807fSPeter Brune @*/
1827e30e807fSPeter Brune PetscErrorCode DMCreateDomainDecompositionScatters(DM dm,PetscInt n,DM *subdms,VecScatter **iscat,VecScatter **oscat,VecScatter **gscat)
1828e30e807fSPeter Brune {
1829e30e807fSPeter Brune   PetscErrorCode ierr;
1830e30e807fSPeter Brune 
1831e30e807fSPeter Brune   PetscFunctionBegin;
1832e30e807fSPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
1833e30e807fSPeter Brune   PetscValidPointer(subdms,3);
1834e30e807fSPeter Brune   if (dm->ops->createddscatters) {
1835e30e807fSPeter Brune     ierr = (*dm->ops->createddscatters)(dm,n,subdms,iscat,oscat,gscat);CHKERRQ(ierr);
18366668ed41SLisandro Dalcin   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "This type has no DMCreateDomainDecompositionScatter implementation defined");
1837e7c4fc90SDmitry Karpeev   PetscFunctionReturn(0);
1838e7c4fc90SDmitry Karpeev }
1839e7c4fc90SDmitry Karpeev 
184047c6ae99SBarry Smith /*@
184147c6ae99SBarry Smith   DMRefine - Refines a DM object
184247c6ae99SBarry Smith 
184347c6ae99SBarry Smith   Collective on DM
184447c6ae99SBarry Smith 
184547c6ae99SBarry Smith   Input Parameter:
184647c6ae99SBarry Smith + dm   - the DM object
184791d95f02SJed Brown - comm - the communicator to contain the new DM object (or MPI_COMM_NULL)
184847c6ae99SBarry Smith 
184947c6ae99SBarry Smith   Output Parameter:
18500298fd71SBarry Smith . dmf - the refined DM, or NULL
1851ae0a1c52SMatthew G Knepley 
18520298fd71SBarry Smith   Note: If no refinement was done, the return value is NULL
185347c6ae99SBarry Smith 
185447c6ae99SBarry Smith   Level: developer
185547c6ae99SBarry Smith 
1856e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
185747c6ae99SBarry Smith @*/
18587087cfbeSBarry Smith PetscErrorCode  DMRefine(DM dm,MPI_Comm comm,DM *dmf)
185947c6ae99SBarry Smith {
186047c6ae99SBarry Smith   PetscErrorCode   ierr;
1861c833c3b5SJed Brown   DMRefineHookLink link;
186247c6ae99SBarry Smith 
186347c6ae99SBarry Smith   PetscFunctionBegin;
1864732e2eb9SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
18651ac00216SMatthew G. Knepley   ierr = PetscLogEventBegin(DM_Refine,dm,0,0,0);CHKERRQ(ierr);
1866fef3a512SBarry Smith   if (!dm->ops->refine) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM cannot refine");
186747c6ae99SBarry Smith   ierr = (*dm->ops->refine)(dm,comm,dmf);CHKERRQ(ierr);
18684057135bSMatthew G Knepley   if (*dmf) {
186943842a1eSJed Brown     (*dmf)->ops->creatematrix = dm->ops->creatematrix;
18708865f1eaSKarl Rupp 
18718cd211a4SJed Brown     ierr = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmf);CHKERRQ(ierr);
18728865f1eaSKarl Rupp 
1873644e2e5bSBarry Smith     (*dmf)->ctx       = dm->ctx;
18740598a293SJed Brown     (*dmf)->leveldown = dm->leveldown;
1875656b349aSBarry Smith     (*dmf)->levelup   = dm->levelup + 1;
18768865f1eaSKarl Rupp 
1877e4b4b23bSJed Brown     ierr = DMSetMatType(*dmf,dm->mattype);CHKERRQ(ierr);
1878c833c3b5SJed Brown     for (link=dm->refinehook; link; link=link->next) {
18798865f1eaSKarl Rupp       if (link->refinehook) {
18808865f1eaSKarl Rupp         ierr = (*link->refinehook)(dm,*dmf,link->ctx);CHKERRQ(ierr);
18818865f1eaSKarl Rupp       }
1882c833c3b5SJed Brown     }
1883c833c3b5SJed Brown   }
18841ac00216SMatthew G. Knepley   ierr = PetscLogEventEnd(DM_Refine,dm,0,0,0);CHKERRQ(ierr);
1885c833c3b5SJed Brown   PetscFunctionReturn(0);
1886c833c3b5SJed Brown }
1887c833c3b5SJed Brown 
1888bb9467b5SJed Brown /*@C
1889c833c3b5SJed Brown    DMRefineHookAdd - adds a callback to be run when interpolating a nonlinear problem to a finer grid
1890c833c3b5SJed Brown 
1891c833c3b5SJed Brown    Logically Collective
1892c833c3b5SJed Brown 
1893c833c3b5SJed Brown    Input Arguments:
1894c833c3b5SJed Brown +  coarse - nonlinear solver context on which to run a hook when restricting to a coarser level
1895c833c3b5SJed Brown .  refinehook - function to run when setting up a coarser level
1896c833c3b5SJed Brown .  interphook - function to run to update data on finer levels (once per SNESSolve())
18970298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
1898c833c3b5SJed Brown 
1899c833c3b5SJed Brown    Calling sequence of refinehook:
1900c833c3b5SJed Brown $    refinehook(DM coarse,DM fine,void *ctx);
1901c833c3b5SJed Brown 
1902c833c3b5SJed Brown +  coarse - coarse level DM
1903c833c3b5SJed Brown .  fine - fine level DM to interpolate problem to
1904c833c3b5SJed Brown -  ctx - optional user-defined function context
1905c833c3b5SJed Brown 
1906c833c3b5SJed Brown    Calling sequence for interphook:
1907c833c3b5SJed Brown $    interphook(DM coarse,Mat interp,DM fine,void *ctx)
1908c833c3b5SJed Brown 
1909c833c3b5SJed Brown +  coarse - coarse level DM
1910c833c3b5SJed Brown .  interp - matrix interpolating a coarse-level solution to the finer grid
1911c833c3b5SJed Brown .  fine - fine level DM to update
1912c833c3b5SJed Brown -  ctx - optional user-defined function context
1913c833c3b5SJed Brown 
1914c833c3b5SJed Brown    Level: advanced
1915c833c3b5SJed Brown 
1916c833c3b5SJed Brown    Notes:
1917c833c3b5SJed Brown    This function is only needed if auxiliary data needs to be passed to fine grids while grid sequencing
1918c833c3b5SJed Brown 
1919c833c3b5SJed Brown    If this function is called multiple times, the hooks will be run in the order they are added.
1920c833c3b5SJed Brown 
1921bb9467b5SJed Brown    This function is currently not available from Fortran.
1922bb9467b5SJed Brown 
1923c833c3b5SJed Brown .seealso: DMCoarsenHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
1924c833c3b5SJed Brown @*/
1925c833c3b5SJed Brown PetscErrorCode DMRefineHookAdd(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx)
1926c833c3b5SJed Brown {
1927c833c3b5SJed Brown   PetscErrorCode   ierr;
1928c833c3b5SJed Brown   DMRefineHookLink link,*p;
1929c833c3b5SJed Brown 
1930c833c3b5SJed Brown   PetscFunctionBegin;
1931c833c3b5SJed Brown   PetscValidHeaderSpecific(coarse,DM_CLASSID,1);
19323d8e3701SJed Brown   for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
19333d8e3701SJed Brown     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) PetscFunctionReturn(0);
19343d8e3701SJed Brown   }
193595dccacaSBarry Smith   ierr             = PetscNew(&link);CHKERRQ(ierr);
1936c833c3b5SJed Brown   link->refinehook = refinehook;
1937c833c3b5SJed Brown   link->interphook = interphook;
1938c833c3b5SJed Brown   link->ctx        = ctx;
19390298fd71SBarry Smith   link->next       = NULL;
1940c833c3b5SJed Brown   *p               = link;
1941c833c3b5SJed Brown   PetscFunctionReturn(0);
1942c833c3b5SJed Brown }
1943c833c3b5SJed Brown 
19443d8e3701SJed Brown /*@C
19453d8e3701SJed Brown    DMRefineHookRemove - remove a callback from the list of hooks to be run when interpolating a nonlinear problem to a finer grid
19463d8e3701SJed Brown 
19473d8e3701SJed Brown    Logically Collective
19483d8e3701SJed Brown 
19493d8e3701SJed Brown    Input Arguments:
19503d8e3701SJed Brown +  coarse - nonlinear solver context on which to run a hook when restricting to a coarser level
19513d8e3701SJed Brown .  refinehook - function to run when setting up a coarser level
19523d8e3701SJed Brown .  interphook - function to run to update data on finer levels (once per SNESSolve())
19533d8e3701SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
19543d8e3701SJed Brown 
19553d8e3701SJed Brown    Level: advanced
19563d8e3701SJed Brown 
19573d8e3701SJed Brown    Notes:
19583d8e3701SJed Brown    This function does nothing if the hook is not in the list.
19593d8e3701SJed Brown 
19603d8e3701SJed Brown    This function is currently not available from Fortran.
19613d8e3701SJed Brown 
19623d8e3701SJed Brown .seealso: DMCoarsenHookRemove(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
19633d8e3701SJed Brown @*/
19643d8e3701SJed Brown PetscErrorCode DMRefineHookRemove(DM coarse,PetscErrorCode (*refinehook)(DM,DM,void*),PetscErrorCode (*interphook)(DM,Mat,DM,void*),void *ctx)
19653d8e3701SJed Brown {
19663d8e3701SJed Brown   PetscErrorCode   ierr;
19673d8e3701SJed Brown   DMRefineHookLink link,*p;
19683d8e3701SJed Brown 
19693d8e3701SJed Brown   PetscFunctionBegin;
19703d8e3701SJed Brown   PetscValidHeaderSpecific(coarse,DM_CLASSID,1);
19713d8e3701SJed Brown   for (p=&coarse->refinehook; *p; p=&(*p)->next) { /* Search the list of current hooks */
19723d8e3701SJed Brown     if ((*p)->refinehook == refinehook && (*p)->interphook == interphook && (*p)->ctx == ctx) {
19733d8e3701SJed Brown       link = *p;
19743d8e3701SJed Brown       *p = link->next;
19753d8e3701SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
19763d8e3701SJed Brown       break;
19773d8e3701SJed Brown     }
19783d8e3701SJed Brown   }
19793d8e3701SJed Brown   PetscFunctionReturn(0);
19803d8e3701SJed Brown }
19813d8e3701SJed Brown 
1982c833c3b5SJed Brown /*@
1983c833c3b5SJed Brown    DMInterpolate - interpolates user-defined problem data to a finer DM by running hooks registered by DMRefineHookAdd()
1984c833c3b5SJed Brown 
1985c833c3b5SJed Brown    Collective if any hooks are
1986c833c3b5SJed Brown 
1987c833c3b5SJed Brown    Input Arguments:
1988c833c3b5SJed Brown +  coarse - coarser DM to use as a base
1989e91eccc2SStefano Zampini .  interp - interpolation matrix, apply using MatInterpolate()
1990c833c3b5SJed Brown -  fine - finer DM to update
1991c833c3b5SJed Brown 
1992c833c3b5SJed Brown    Level: developer
1993c833c3b5SJed Brown 
1994c833c3b5SJed Brown .seealso: DMRefineHookAdd(), MatInterpolate()
1995c833c3b5SJed Brown @*/
1996c833c3b5SJed Brown PetscErrorCode DMInterpolate(DM coarse,Mat interp,DM fine)
1997c833c3b5SJed Brown {
1998c833c3b5SJed Brown   PetscErrorCode   ierr;
1999c833c3b5SJed Brown   DMRefineHookLink link;
2000c833c3b5SJed Brown 
2001c833c3b5SJed Brown   PetscFunctionBegin;
2002c833c3b5SJed Brown   for (link=fine->refinehook; link; link=link->next) {
20038865f1eaSKarl Rupp     if (link->interphook) {
20048865f1eaSKarl Rupp       ierr = (*link->interphook)(coarse,interp,fine,link->ctx);CHKERRQ(ierr);
20058865f1eaSKarl Rupp     }
20064057135bSMatthew G Knepley   }
200747c6ae99SBarry Smith   PetscFunctionReturn(0);
200847c6ae99SBarry Smith }
200947c6ae99SBarry Smith 
2010eb3f98d2SBarry Smith /*@
2011eb3f98d2SBarry Smith     DMGetRefineLevel - Get's the number of refinements that have generated this DM.
2012eb3f98d2SBarry Smith 
2013eb3f98d2SBarry Smith     Not Collective
2014eb3f98d2SBarry Smith 
2015eb3f98d2SBarry Smith     Input Parameter:
2016eb3f98d2SBarry Smith .   dm - the DM object
2017eb3f98d2SBarry Smith 
2018eb3f98d2SBarry Smith     Output Parameter:
2019eb3f98d2SBarry Smith .   level - number of refinements
2020eb3f98d2SBarry Smith 
2021eb3f98d2SBarry Smith     Level: developer
2022eb3f98d2SBarry Smith 
20236a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
2024eb3f98d2SBarry Smith 
2025eb3f98d2SBarry Smith @*/
2026eb3f98d2SBarry Smith PetscErrorCode  DMGetRefineLevel(DM dm,PetscInt *level)
2027eb3f98d2SBarry Smith {
2028eb3f98d2SBarry Smith   PetscFunctionBegin;
2029eb3f98d2SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2030eb3f98d2SBarry Smith   *level = dm->levelup;
2031eb3f98d2SBarry Smith   PetscFunctionReturn(0);
2032eb3f98d2SBarry Smith }
2033eb3f98d2SBarry Smith 
2034fef3a512SBarry Smith /*@
2035fef3a512SBarry Smith     DMSetRefineLevel - Set's the number of refinements that have generated this DM.
2036fef3a512SBarry Smith 
2037fef3a512SBarry Smith     Not Collective
2038fef3a512SBarry Smith 
2039fef3a512SBarry Smith     Input Parameter:
2040fef3a512SBarry Smith +   dm - the DM object
2041fef3a512SBarry Smith -   level - number of refinements
2042fef3a512SBarry Smith 
2043fef3a512SBarry Smith     Level: advanced
2044fef3a512SBarry Smith 
204595452b02SPatrick Sanan     Notes:
204695452b02SPatrick Sanan     This value is used by PCMG to determine how many multigrid levels to use
2047fef3a512SBarry Smith 
2048fef3a512SBarry Smith .seealso DMCoarsen(), DMGetCoarsenLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
2049fef3a512SBarry Smith 
2050fef3a512SBarry Smith @*/
2051fef3a512SBarry Smith PetscErrorCode  DMSetRefineLevel(DM dm,PetscInt level)
2052fef3a512SBarry Smith {
2053fef3a512SBarry Smith   PetscFunctionBegin;
2054fef3a512SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2055fef3a512SBarry Smith   dm->levelup = level;
2056fef3a512SBarry Smith   PetscFunctionReturn(0);
2057fef3a512SBarry Smith }
2058fef3a512SBarry Smith 
2059bb9467b5SJed Brown /*@C
2060baf369e7SPeter Brune    DMGlobalToLocalHookAdd - adds a callback to be run when global to local is called
2061baf369e7SPeter Brune 
2062baf369e7SPeter Brune    Logically Collective
2063baf369e7SPeter Brune 
2064baf369e7SPeter Brune    Input Arguments:
2065baf369e7SPeter Brune +  dm - the DM
2066baf369e7SPeter Brune .  beginhook - function to run at the beginning of DMGlobalToLocalBegin()
2067baf369e7SPeter Brune .  endhook - function to run after DMGlobalToLocalEnd() has completed
20680298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2069baf369e7SPeter Brune 
2070baf369e7SPeter Brune    Calling sequence for beginhook:
2071baf369e7SPeter Brune $    beginhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx)
2072baf369e7SPeter Brune 
2073baf369e7SPeter Brune +  dm - global DM
2074baf369e7SPeter Brune .  g - global vector
2075baf369e7SPeter Brune .  mode - mode
2076baf369e7SPeter Brune .  l - local vector
2077baf369e7SPeter Brune -  ctx - optional user-defined function context
2078baf369e7SPeter Brune 
2079baf369e7SPeter Brune 
2080baf369e7SPeter Brune    Calling sequence for endhook:
2081ec4806b8SPeter Brune $    endhook(DM fine,VecScatter out,VecScatter in,DM coarse,void *ctx)
2082baf369e7SPeter Brune 
2083baf369e7SPeter Brune +  global - global DM
2084baf369e7SPeter Brune -  ctx - optional user-defined function context
2085baf369e7SPeter Brune 
2086baf369e7SPeter Brune    Level: advanced
2087baf369e7SPeter Brune 
2088baf369e7SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2089baf369e7SPeter Brune @*/
2090baf369e7SPeter Brune PetscErrorCode DMGlobalToLocalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx)
2091baf369e7SPeter Brune {
2092baf369e7SPeter Brune   PetscErrorCode          ierr;
2093baf369e7SPeter Brune   DMGlobalToLocalHookLink link,*p;
2094baf369e7SPeter Brune 
2095baf369e7SPeter Brune   PetscFunctionBegin;
2096baf369e7SPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2097baf369e7SPeter Brune   for (p=&dm->gtolhook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */
209895dccacaSBarry Smith   ierr            = PetscNew(&link);CHKERRQ(ierr);
2099baf369e7SPeter Brune   link->beginhook = beginhook;
2100baf369e7SPeter Brune   link->endhook   = endhook;
2101baf369e7SPeter Brune   link->ctx       = ctx;
21020298fd71SBarry Smith   link->next      = NULL;
2103baf369e7SPeter Brune   *p              = link;
2104baf369e7SPeter Brune   PetscFunctionReturn(0);
2105baf369e7SPeter Brune }
2106baf369e7SPeter Brune 
21074c274da1SToby Isaac static PetscErrorCode DMGlobalToLocalHook_Constraints(DM dm, Vec g, InsertMode mode, Vec l, void *ctx)
21084c274da1SToby Isaac {
21094c274da1SToby Isaac   Mat cMat;
21104c274da1SToby Isaac   Vec cVec;
21114c274da1SToby Isaac   PetscSection section, cSec;
21124c274da1SToby Isaac   PetscInt pStart, pEnd, p, dof;
21134c274da1SToby Isaac   PetscErrorCode ierr;
21144c274da1SToby Isaac 
21154c274da1SToby Isaac   PetscFunctionBegin;
21164c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
21174c274da1SToby Isaac   ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr);
21184c274da1SToby Isaac   if (cMat && (mode == INSERT_VALUES || mode == INSERT_ALL_VALUES || mode == INSERT_BC_VALUES)) {
21195db9a05bSToby Isaac     PetscInt nRows;
21205db9a05bSToby Isaac 
21215db9a05bSToby Isaac     ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr);
21225db9a05bSToby Isaac     if (nRows <= 0) PetscFunctionReturn(0);
2123e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
21247711e48fSToby Isaac     ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr);
21254c274da1SToby Isaac     ierr = MatMult(cMat,l,cVec);CHKERRQ(ierr);
21264c274da1SToby Isaac     ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
21274c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
21284c274da1SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
21294c274da1SToby Isaac       if (dof) {
21304c274da1SToby Isaac         PetscScalar *vals;
21314c274da1SToby Isaac         ierr = VecGetValuesSection(cVec,cSec,p,&vals);CHKERRQ(ierr);
21324c274da1SToby Isaac         ierr = VecSetValuesSection(l,section,p,vals,INSERT_ALL_VALUES);CHKERRQ(ierr);
21334c274da1SToby Isaac       }
21344c274da1SToby Isaac     }
21354c274da1SToby Isaac     ierr = VecDestroy(&cVec);CHKERRQ(ierr);
21364c274da1SToby Isaac   }
21374c274da1SToby Isaac   PetscFunctionReturn(0);
21384c274da1SToby Isaac }
21394c274da1SToby Isaac 
214047c6ae99SBarry Smith /*@
214101729b5cSPatrick Sanan     DMGlobalToLocal - update local vectors from global vector
214201729b5cSPatrick Sanan 
214301729b5cSPatrick Sanan     Neighbor-wise Collective on DM
214401729b5cSPatrick Sanan 
214501729b5cSPatrick Sanan     Input Parameters:
214601729b5cSPatrick Sanan +   dm - the DM object
214701729b5cSPatrick Sanan .   g - the global vector
214801729b5cSPatrick Sanan .   mode - INSERT_VALUES or ADD_VALUES
214901729b5cSPatrick Sanan -   l - the local vector
215001729b5cSPatrick Sanan 
215101729b5cSPatrick Sanan     Notes:
215201729b5cSPatrick Sanan     The communication involved in this update can be overlapped with computation by using
215301729b5cSPatrick Sanan     DMGlobalToLocalBegin() and DMGlobalToLocalEnd().
215401729b5cSPatrick Sanan 
215501729b5cSPatrick Sanan     Level: beginner
215601729b5cSPatrick Sanan 
215701729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
215801729b5cSPatrick Sanan 
215901729b5cSPatrick Sanan @*/
216001729b5cSPatrick Sanan PetscErrorCode DMGlobalToLocal(DM dm,Vec g,InsertMode mode,Vec l)
216101729b5cSPatrick Sanan {
216201729b5cSPatrick Sanan   PetscErrorCode ierr;
216301729b5cSPatrick Sanan 
216401729b5cSPatrick Sanan   PetscFunctionBegin;
216501729b5cSPatrick Sanan   ierr = DMGlobalToLocalBegin(dm,g,mode,l);CHKERRQ(ierr);
216601729b5cSPatrick Sanan   ierr = DMGlobalToLocalEnd(dm,g,mode,l);CHKERRQ(ierr);
216701729b5cSPatrick Sanan   PetscFunctionReturn(0);
216801729b5cSPatrick Sanan }
216901729b5cSPatrick Sanan 
217001729b5cSPatrick Sanan /*@
217147c6ae99SBarry Smith     DMGlobalToLocalBegin - Begins updating local vectors from global vector
217247c6ae99SBarry Smith 
217347c6ae99SBarry Smith     Neighbor-wise Collective on DM
217447c6ae99SBarry Smith 
217547c6ae99SBarry Smith     Input Parameters:
217647c6ae99SBarry Smith +   dm - the DM object
217747c6ae99SBarry Smith .   g - the global vector
217847c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
217947c6ae99SBarry Smith -   l - the local vector
218047c6ae99SBarry Smith 
218101729b5cSPatrick Sanan     Level: intermediate
218247c6ae99SBarry Smith 
218301729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
218447c6ae99SBarry Smith 
218547c6ae99SBarry Smith @*/
21867087cfbeSBarry Smith PetscErrorCode  DMGlobalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l)
218747c6ae99SBarry Smith {
21887128ae9fSMatthew G Knepley   PetscSF                 sf;
218947c6ae99SBarry Smith   PetscErrorCode          ierr;
2190baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
219147c6ae99SBarry Smith 
219247c6ae99SBarry Smith   PetscFunctionBegin;
2193171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2194baf369e7SPeter Brune   for (link=dm->gtolhook; link; link=link->next) {
21958865f1eaSKarl Rupp     if (link->beginhook) {
21968865f1eaSKarl Rupp       ierr = (*link->beginhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);
21978865f1eaSKarl Rupp     }
2198baf369e7SPeter Brune   }
21997128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
22007128ae9fSMatthew G Knepley   if (sf) {
2201ae5cfb4aSMatthew G. Knepley     const PetscScalar *gArray;
2202ae5cfb4aSMatthew G. Knepley     PetscScalar       *lArray;
22037128ae9fSMatthew G Knepley 
220482f516ccSBarry Smith     if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
22057128ae9fSMatthew G Knepley     ierr = VecGetArray(l, &lArray);CHKERRQ(ierr);
2206ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr);
22077128ae9fSMatthew G Knepley     ierr = PetscSFBcastBegin(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr);
22087128ae9fSMatthew G Knepley     ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr);
2209ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr);
22107128ae9fSMatthew G Knepley   } else {
2211843c4018SMatthew G Knepley     ierr = (*dm->ops->globaltolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
22127128ae9fSMatthew G Knepley   }
221347c6ae99SBarry Smith   PetscFunctionReturn(0);
221447c6ae99SBarry Smith }
221547c6ae99SBarry Smith 
221647c6ae99SBarry Smith /*@
221747c6ae99SBarry Smith     DMGlobalToLocalEnd - Ends updating local vectors from global vector
221847c6ae99SBarry Smith 
221947c6ae99SBarry Smith     Neighbor-wise Collective on DM
222047c6ae99SBarry Smith 
222147c6ae99SBarry Smith     Input Parameters:
222247c6ae99SBarry Smith +   dm - the DM object
222347c6ae99SBarry Smith .   g - the global vector
222447c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
222547c6ae99SBarry Smith -   l - the local vector
222647c6ae99SBarry Smith 
222701729b5cSPatrick Sanan     Level: intermediate
222847c6ae99SBarry Smith 
222901729b5cSPatrick Sanan .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMLocalToGlobalBegin(), DMLocalToGlobal(), DMLocalToGlobalBegin(), DMLocalToGlobalEnd()
223047c6ae99SBarry Smith 
223147c6ae99SBarry Smith @*/
22327087cfbeSBarry Smith PetscErrorCode  DMGlobalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l)
223347c6ae99SBarry Smith {
22347128ae9fSMatthew G Knepley   PetscSF                 sf;
223547c6ae99SBarry Smith   PetscErrorCode          ierr;
2236ae5cfb4aSMatthew G. Knepley   const PetscScalar      *gArray;
2237ae5cfb4aSMatthew G. Knepley   PetscScalar            *lArray;
2238baf369e7SPeter Brune   DMGlobalToLocalHookLink link;
223947c6ae99SBarry Smith 
224047c6ae99SBarry Smith   PetscFunctionBegin;
2241171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
22427128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
22437128ae9fSMatthew G Knepley   if (sf) {
224482f516ccSBarry Smith     if (mode == ADD_VALUES) SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
22457128ae9fSMatthew G Knepley 
22467128ae9fSMatthew G Knepley     ierr = VecGetArray(l, &lArray);CHKERRQ(ierr);
2247ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(g, &gArray);CHKERRQ(ierr);
22487128ae9fSMatthew G Knepley     ierr = PetscSFBcastEnd(sf, MPIU_SCALAR, gArray, lArray);CHKERRQ(ierr);
22497128ae9fSMatthew G Knepley     ierr = VecRestoreArray(l, &lArray);CHKERRQ(ierr);
2250ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(g, &gArray);CHKERRQ(ierr);
22517128ae9fSMatthew G Knepley   } else {
2252843c4018SMatthew G Knepley     ierr = (*dm->ops->globaltolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
22537128ae9fSMatthew G Knepley   }
22544c274da1SToby Isaac   ierr = DMGlobalToLocalHook_Constraints(dm,g,mode,l,NULL);CHKERRQ(ierr);
2255baf369e7SPeter Brune   for (link=dm->gtolhook; link; link=link->next) {
2256baf369e7SPeter Brune     if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);}
2257baf369e7SPeter Brune   }
225847c6ae99SBarry Smith   PetscFunctionReturn(0);
225947c6ae99SBarry Smith }
226047c6ae99SBarry Smith 
2261d4d07f1eSToby Isaac /*@C
2262d4d07f1eSToby Isaac    DMLocalToGlobalHookAdd - adds a callback to be run when a local to global is called
2263d4d07f1eSToby Isaac 
2264d4d07f1eSToby Isaac    Logically Collective
2265d4d07f1eSToby Isaac 
2266d4d07f1eSToby Isaac    Input Arguments:
2267d4d07f1eSToby Isaac +  dm - the DM
2268d4d07f1eSToby Isaac .  beginhook - function to run at the beginning of DMLocalToGlobalBegin()
2269d4d07f1eSToby Isaac .  endhook - function to run after DMLocalToGlobalEnd() has completed
2270d4d07f1eSToby Isaac -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2271d4d07f1eSToby Isaac 
2272d4d07f1eSToby Isaac    Calling sequence for beginhook:
2273d4d07f1eSToby Isaac $    beginhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx)
2274d4d07f1eSToby Isaac 
2275d4d07f1eSToby Isaac +  dm - global DM
2276d4d07f1eSToby Isaac .  l - local vector
2277d4d07f1eSToby Isaac .  mode - mode
2278d4d07f1eSToby Isaac .  g - global vector
2279d4d07f1eSToby Isaac -  ctx - optional user-defined function context
2280d4d07f1eSToby Isaac 
2281d4d07f1eSToby Isaac 
2282d4d07f1eSToby Isaac    Calling sequence for endhook:
2283d4d07f1eSToby Isaac $    endhook(DM fine,Vec l,InsertMode mode,Vec g,void *ctx)
2284d4d07f1eSToby Isaac 
2285d4d07f1eSToby Isaac +  global - global DM
2286d4d07f1eSToby Isaac .  l - local vector
2287d4d07f1eSToby Isaac .  mode - mode
2288d4d07f1eSToby Isaac .  g - global vector
2289d4d07f1eSToby Isaac -  ctx - optional user-defined function context
2290d4d07f1eSToby Isaac 
2291d4d07f1eSToby Isaac    Level: advanced
2292d4d07f1eSToby Isaac 
2293d4d07f1eSToby Isaac .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2294d4d07f1eSToby Isaac @*/
2295d4d07f1eSToby Isaac PetscErrorCode DMLocalToGlobalHookAdd(DM dm,PetscErrorCode (*beginhook)(DM,Vec,InsertMode,Vec,void*),PetscErrorCode (*endhook)(DM,Vec,InsertMode,Vec,void*),void *ctx)
2296d4d07f1eSToby Isaac {
2297d4d07f1eSToby Isaac   PetscErrorCode          ierr;
2298d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link,*p;
2299d4d07f1eSToby Isaac 
2300d4d07f1eSToby Isaac   PetscFunctionBegin;
2301d4d07f1eSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2302d4d07f1eSToby Isaac   for (p=&dm->ltoghook; *p; p=&(*p)->next) {} /* Scan to the end of the current list of hooks */
230395dccacaSBarry Smith   ierr            = PetscNew(&link);CHKERRQ(ierr);
2304d4d07f1eSToby Isaac   link->beginhook = beginhook;
2305d4d07f1eSToby Isaac   link->endhook   = endhook;
2306d4d07f1eSToby Isaac   link->ctx       = ctx;
2307d4d07f1eSToby Isaac   link->next      = NULL;
2308d4d07f1eSToby Isaac   *p              = link;
2309d4d07f1eSToby Isaac   PetscFunctionReturn(0);
2310d4d07f1eSToby Isaac }
2311d4d07f1eSToby Isaac 
23124c274da1SToby Isaac static PetscErrorCode DMLocalToGlobalHook_Constraints(DM dm, Vec l, InsertMode mode, Vec g, void *ctx)
23134c274da1SToby Isaac {
23144c274da1SToby Isaac   Mat cMat;
23154c274da1SToby Isaac   Vec cVec;
23164c274da1SToby Isaac   PetscSection section, cSec;
23174c274da1SToby Isaac   PetscInt pStart, pEnd, p, dof;
23184c274da1SToby Isaac   PetscErrorCode ierr;
23194c274da1SToby Isaac 
23204c274da1SToby Isaac   PetscFunctionBegin;
23214c274da1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
23224c274da1SToby Isaac   ierr = DMGetDefaultConstraints(dm,&cSec,&cMat);CHKERRQ(ierr);
23234c274da1SToby Isaac   if (cMat && (mode == ADD_VALUES || mode == ADD_ALL_VALUES || mode == ADD_BC_VALUES)) {
23245db9a05bSToby Isaac     PetscInt nRows;
23255db9a05bSToby Isaac 
23265db9a05bSToby Isaac     ierr = MatGetSize(cMat,&nRows,NULL);CHKERRQ(ierr);
23275db9a05bSToby Isaac     if (nRows <= 0) PetscFunctionReturn(0);
2328e87a4003SBarry Smith     ierr = DMGetSection(dm,&section);CHKERRQ(ierr);
23297711e48fSToby Isaac     ierr = MatCreateVecs(cMat,NULL,&cVec);CHKERRQ(ierr);
23304c274da1SToby Isaac     ierr = PetscSectionGetChart(cSec,&pStart,&pEnd);CHKERRQ(ierr);
23314c274da1SToby Isaac     for (p = pStart; p < pEnd; p++) {
23324c274da1SToby Isaac       ierr = PetscSectionGetDof(cSec,p,&dof);CHKERRQ(ierr);
23334c274da1SToby Isaac       if (dof) {
23344c274da1SToby Isaac         PetscInt d;
23354c274da1SToby Isaac         PetscScalar *vals;
23364c274da1SToby Isaac         ierr = VecGetValuesSection(l,section,p,&vals);CHKERRQ(ierr);
23374c274da1SToby Isaac         ierr = VecSetValuesSection(cVec,cSec,p,vals,mode);CHKERRQ(ierr);
23384c274da1SToby Isaac         /* for this to be the true transpose, we have to zero the values that
23394c274da1SToby Isaac          * we just extracted */
23404c274da1SToby Isaac         for (d = 0; d < dof; d++) {
23414c274da1SToby Isaac           vals[d] = 0.;
23424c274da1SToby Isaac         }
23434c274da1SToby Isaac       }
23444c274da1SToby Isaac     }
23454c274da1SToby Isaac     ierr = MatMultTransposeAdd(cMat,cVec,l,l);CHKERRQ(ierr);
23464c274da1SToby Isaac     ierr = VecDestroy(&cVec);CHKERRQ(ierr);
23474c274da1SToby Isaac   }
23484c274da1SToby Isaac   PetscFunctionReturn(0);
23494c274da1SToby Isaac }
235001729b5cSPatrick Sanan /*@
235101729b5cSPatrick Sanan     DMLocalToGlobal - updates global vectors from local vectors
235201729b5cSPatrick Sanan 
235301729b5cSPatrick Sanan     Neighbor-wise Collective on DM
235401729b5cSPatrick Sanan 
235501729b5cSPatrick Sanan     Input Parameters:
235601729b5cSPatrick Sanan +   dm - the DM object
235701729b5cSPatrick Sanan .   l - the local vector
235801729b5cSPatrick 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.
235901729b5cSPatrick Sanan -   g - the global vector
236001729b5cSPatrick Sanan 
236101729b5cSPatrick Sanan     Notes:
236201729b5cSPatrick Sanan     The communication involved in this update can be overlapped with computation by using
236301729b5cSPatrick Sanan     DMLocalToGlobalBegin() and DMLocalToGlobalEnd().
236401729b5cSPatrick Sanan 
236501729b5cSPatrick Sanan     In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation.
236601729b5cSPatrick 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.
236701729b5cSPatrick Sanan 
236801729b5cSPatrick Sanan     Level: beginner
236901729b5cSPatrick Sanan 
237001729b5cSPatrick Sanan .seealso DMLocalToGlobalBegin(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin()
237101729b5cSPatrick Sanan 
237201729b5cSPatrick Sanan @*/
237301729b5cSPatrick Sanan PetscErrorCode DMLocalToGlobal(DM dm,Vec l,InsertMode mode,Vec g)
237401729b5cSPatrick Sanan {
237501729b5cSPatrick Sanan   PetscErrorCode ierr;
237601729b5cSPatrick Sanan 
237701729b5cSPatrick Sanan   PetscFunctionBegin;
237801729b5cSPatrick Sanan   ierr = DMLocalToGlobalBegin(dm,l,mode,g);CHKERRQ(ierr);
237901729b5cSPatrick Sanan   ierr = DMLocalToGlobalEnd(dm,l,mode,g);CHKERRQ(ierr);
238001729b5cSPatrick Sanan   PetscFunctionReturn(0);
238101729b5cSPatrick Sanan }
23824c274da1SToby Isaac 
238347c6ae99SBarry Smith /*@
238401729b5cSPatrick Sanan     DMLocalToGlobalBegin - begins updating global vectors from local vectors
23859a42bb27SBarry Smith 
23869a42bb27SBarry Smith     Neighbor-wise Collective on DM
23879a42bb27SBarry Smith 
23889a42bb27SBarry Smith     Input Parameters:
23899a42bb27SBarry Smith +   dm - the DM object
2390f6813fd5SJed Brown .   l - the local vector
23911eb28f2eSBarry 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.
23921eb28f2eSBarry Smith -   g - the global vector
23939a42bb27SBarry Smith 
239495452b02SPatrick Sanan     Notes:
239595452b02SPatrick Sanan     In the ADD_VALUES case you normally would zero the receiving vector before beginning this operation.
239684330215SMatthew 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.
23979a42bb27SBarry Smith 
239801729b5cSPatrick Sanan     Level: intermediate
23999a42bb27SBarry Smith 
240001729b5cSPatrick Sanan .seealso DMLocalToGlobal(), DMLocalToGlobalEnd(), DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocal(), DMGlobalToLocalEnd(), DMGlobalToLocalBegin()
24019a42bb27SBarry Smith 
24029a42bb27SBarry Smith @*/
24037087cfbeSBarry Smith PetscErrorCode  DMLocalToGlobalBegin(DM dm,Vec l,InsertMode mode,Vec g)
24049a42bb27SBarry Smith {
24057128ae9fSMatthew G Knepley   PetscSF                 sf;
240684330215SMatthew G. Knepley   PetscSection            s, gs;
2407d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
2408ae5cfb4aSMatthew G. Knepley   const PetscScalar      *lArray;
2409ae5cfb4aSMatthew G. Knepley   PetscScalar            *gArray;
241084330215SMatthew G. Knepley   PetscBool               isInsert;
241184330215SMatthew G. Knepley   PetscErrorCode          ierr;
24129a42bb27SBarry Smith 
24139a42bb27SBarry Smith   PetscFunctionBegin;
2414171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2415d4d07f1eSToby Isaac   for (link=dm->ltoghook; link; link=link->next) {
2416d4d07f1eSToby Isaac     if (link->beginhook) {
2417d4d07f1eSToby Isaac       ierr = (*link->beginhook)(dm,l,mode,g,link->ctx);CHKERRQ(ierr);
2418d4d07f1eSToby Isaac     }
2419d4d07f1eSToby Isaac   }
24204c274da1SToby Isaac   ierr = DMLocalToGlobalHook_Constraints(dm,l,mode,g,NULL);CHKERRQ(ierr);
24217128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
2422e87a4003SBarry Smith   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
24237128ae9fSMatthew G Knepley   switch (mode) {
24247128ae9fSMatthew G Knepley   case INSERT_VALUES:
24257128ae9fSMatthew G Knepley   case INSERT_ALL_VALUES:
2426304ab55fSMatthew G. Knepley   case INSERT_BC_VALUES:
242784330215SMatthew G. Knepley     isInsert = PETSC_TRUE; break;
24287128ae9fSMatthew G Knepley   case ADD_VALUES:
24297128ae9fSMatthew G Knepley   case ADD_ALL_VALUES:
2430304ab55fSMatthew G. Knepley   case ADD_BC_VALUES:
243184330215SMatthew G. Knepley     isInsert = PETSC_FALSE; break;
24327128ae9fSMatthew G Knepley   default:
243382f516ccSBarry Smith     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
24347128ae9fSMatthew G Knepley   }
243584330215SMatthew G. Knepley   if (sf && !isInsert) {
2436ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr);
24377128ae9fSMatthew G Knepley     ierr = VecGetArray(g, &gArray);CHKERRQ(ierr);
2438a9b180a6SBarry Smith     ierr = PetscSFReduceBegin(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr);
2439ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr);
244084330215SMatthew G. Knepley     ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr);
244184330215SMatthew G. Knepley   } else if (s && isInsert) {
244284330215SMatthew G. Knepley     PetscInt gStart, pStart, pEnd, p;
244384330215SMatthew G. Knepley 
2444e87a4003SBarry Smith     ierr = DMGetGlobalSection(dm, &gs);CHKERRQ(ierr);
244584330215SMatthew G. Knepley     ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr);
244684330215SMatthew G. Knepley     ierr = VecGetOwnershipRange(g, &gStart, NULL);CHKERRQ(ierr);
2447ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr);
244884330215SMatthew G. Knepley     ierr = VecGetArray(g, &gArray);CHKERRQ(ierr);
244984330215SMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
2450b3b16f48SMatthew G. Knepley       PetscInt dof, gdof, cdof, gcdof, off, goff, d, e;
245184330215SMatthew G. Knepley 
245284330215SMatthew G. Knepley       ierr = PetscSectionGetDof(s, p, &dof);CHKERRQ(ierr);
245303442857SMatthew G. Knepley       ierr = PetscSectionGetDof(gs, p, &gdof);CHKERRQ(ierr);
245484330215SMatthew G. Knepley       ierr = PetscSectionGetConstraintDof(s, p, &cdof);CHKERRQ(ierr);
2455b3b16f48SMatthew G. Knepley       ierr = PetscSectionGetConstraintDof(gs, p, &gcdof);CHKERRQ(ierr);
245684330215SMatthew G. Knepley       ierr = PetscSectionGetOffset(s, p, &off);CHKERRQ(ierr);
245784330215SMatthew G. Knepley       ierr = PetscSectionGetOffset(gs, p, &goff);CHKERRQ(ierr);
2458b3b16f48SMatthew G. Knepley       /* Ignore off-process data and points with no global data */
245903442857SMatthew G. Knepley       if (!gdof || goff < 0) continue;
2460b3b16f48SMatthew 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);
2461b3b16f48SMatthew G. Knepley       /* If no constraints are enforced in the global vector */
2462b3b16f48SMatthew G. Knepley       if (!gcdof) {
246384330215SMatthew G. Knepley         for (d = 0; d < dof; ++d) gArray[goff-gStart+d] = lArray[off+d];
2464b3b16f48SMatthew G. Knepley       /* If constraints are enforced in the global vector */
2465b3b16f48SMatthew G. Knepley       } else if (cdof == gcdof) {
246684330215SMatthew G. Knepley         const PetscInt *cdofs;
246784330215SMatthew G. Knepley         PetscInt        cind = 0;
246884330215SMatthew G. Knepley 
246984330215SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(s, p, &cdofs);CHKERRQ(ierr);
2470b3b16f48SMatthew G. Knepley         for (d = 0, e = 0; d < dof; ++d) {
247184330215SMatthew G. Knepley           if ((cind < cdof) && (d == cdofs[cind])) {++cind; continue;}
2472b3b16f48SMatthew G. Knepley           gArray[goff-gStart+e++] = lArray[off+d];
247384330215SMatthew G. Knepley         }
2474b3b16f48SMatthew 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);
247584330215SMatthew G. Knepley     }
2476ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr);
24777128ae9fSMatthew G Knepley     ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr);
24787128ae9fSMatthew G Knepley   } else {
2479843c4018SMatthew G Knepley     ierr = (*dm->ops->localtoglobalbegin)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr);
24807128ae9fSMatthew G Knepley   }
24819a42bb27SBarry Smith   PetscFunctionReturn(0);
24829a42bb27SBarry Smith }
24839a42bb27SBarry Smith 
24849a42bb27SBarry Smith /*@
24859a42bb27SBarry Smith     DMLocalToGlobalEnd - updates global vectors from local vectors
248647c6ae99SBarry Smith 
248747c6ae99SBarry Smith     Neighbor-wise Collective on DM
248847c6ae99SBarry Smith 
248947c6ae99SBarry Smith     Input Parameters:
249047c6ae99SBarry Smith +   dm - the DM object
2491f6813fd5SJed Brown .   l - the local vector
249247c6ae99SBarry Smith .   mode - INSERT_VALUES or ADD_VALUES
2493f6813fd5SJed Brown -   g - the global vector
249447c6ae99SBarry Smith 
249501729b5cSPatrick Sanan     Level: intermediate
249647c6ae99SBarry Smith 
2497e727c939SJed Brown .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMGlobalToLocalEnd(), DMGlobalToLocalEnd()
249847c6ae99SBarry Smith 
249947c6ae99SBarry Smith @*/
25007087cfbeSBarry Smith PetscErrorCode  DMLocalToGlobalEnd(DM dm,Vec l,InsertMode mode,Vec g)
250147c6ae99SBarry Smith {
25027128ae9fSMatthew G Knepley   PetscSF                 sf;
250384330215SMatthew G. Knepley   PetscSection            s;
2504d4d07f1eSToby Isaac   DMLocalToGlobalHookLink link;
250584330215SMatthew G. Knepley   PetscBool               isInsert;
250684330215SMatthew G. Knepley   PetscErrorCode          ierr;
250747c6ae99SBarry Smith 
250847c6ae99SBarry Smith   PetscFunctionBegin;
2509171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
25107128ae9fSMatthew G Knepley   ierr = DMGetDefaultSF(dm, &sf);CHKERRQ(ierr);
2511e87a4003SBarry Smith   ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
25127128ae9fSMatthew G Knepley   switch (mode) {
25137128ae9fSMatthew G Knepley   case INSERT_VALUES:
25147128ae9fSMatthew G Knepley   case INSERT_ALL_VALUES:
251584330215SMatthew G. Knepley     isInsert = PETSC_TRUE; break;
25167128ae9fSMatthew G Knepley   case ADD_VALUES:
25177128ae9fSMatthew G Knepley   case ADD_ALL_VALUES:
251884330215SMatthew G. Knepley     isInsert = PETSC_FALSE; break;
25197128ae9fSMatthew G Knepley   default:
252082f516ccSBarry Smith     SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid insertion mode %D", mode);
25217128ae9fSMatthew G Knepley   }
252284330215SMatthew G. Knepley   if (sf && !isInsert) {
2523ae5cfb4aSMatthew G. Knepley     const PetscScalar *lArray;
2524ae5cfb4aSMatthew G. Knepley     PetscScalar       *gArray;
252584330215SMatthew G. Knepley 
2526ae5cfb4aSMatthew G. Knepley     ierr = VecGetArrayRead(l, &lArray);CHKERRQ(ierr);
25277128ae9fSMatthew G Knepley     ierr = VecGetArray(g, &gArray);CHKERRQ(ierr);
2528a9b180a6SBarry Smith     ierr = PetscSFReduceEnd(sf, MPIU_SCALAR, lArray, gArray, MPIU_SUM);CHKERRQ(ierr);
2529ae5cfb4aSMatthew G. Knepley     ierr = VecRestoreArrayRead(l, &lArray);CHKERRQ(ierr);
25307128ae9fSMatthew G Knepley     ierr = VecRestoreArray(g, &gArray);CHKERRQ(ierr);
253184330215SMatthew G. Knepley   } else if (s && isInsert) {
25327128ae9fSMatthew G Knepley   } else {
2533843c4018SMatthew G Knepley     ierr = (*dm->ops->localtoglobalend)(dm,l,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),g);CHKERRQ(ierr);
25347128ae9fSMatthew G Knepley   }
2535d4d07f1eSToby Isaac   for (link=dm->ltoghook; link; link=link->next) {
2536d4d07f1eSToby Isaac     if (link->endhook) {ierr = (*link->endhook)(dm,g,mode,l,link->ctx);CHKERRQ(ierr);}
2537d4d07f1eSToby Isaac   }
253847c6ae99SBarry Smith   PetscFunctionReturn(0);
253947c6ae99SBarry Smith }
254047c6ae99SBarry Smith 
2541f089877aSRichard Tran Mills /*@
2542bc0a1609SRichard Tran Mills    DMLocalToLocalBegin - Maps from a local vector (including ghost points
2543bc0a1609SRichard Tran Mills    that contain irrelevant values) to another local vector where the ghost
2544d78e899eSRichard Tran Mills    points in the second are set correctly. Must be followed by DMLocalToLocalEnd().
2545f089877aSRichard Tran Mills 
2546bc0a1609SRichard Tran Mills    Neighbor-wise Collective on DM and Vec
2547f089877aSRichard Tran Mills 
2548f089877aSRichard Tran Mills    Input Parameters:
2549f089877aSRichard Tran Mills +  dm - the DM object
2550bc0a1609SRichard Tran Mills .  g - the original local vector
2551bc0a1609SRichard Tran Mills -  mode - one of INSERT_VALUES or ADD_VALUES
2552f089877aSRichard Tran Mills 
2553bc0a1609SRichard Tran Mills    Output Parameter:
2554bc0a1609SRichard Tran Mills .  l  - the local vector with correct ghost values
2555f089877aSRichard Tran Mills 
2556f089877aSRichard Tran Mills    Level: intermediate
2557f089877aSRichard Tran Mills 
2558bc0a1609SRichard Tran Mills    Notes:
2559bc0a1609SRichard Tran Mills    The local vectors used here need not be the same as those
2560bc0a1609SRichard Tran Mills    obtained from DMCreateLocalVector(), BUT they
2561bc0a1609SRichard Tran Mills    must have the same parallel data layout; they could, for example, be
2562bc0a1609SRichard Tran Mills    obtained with VecDuplicate() from the DM originating vectors.
2563bc0a1609SRichard Tran Mills 
2564bc0a1609SRichard Tran Mills .keywords: DM, local-to-local, begin
2565bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalEnd(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin()
2566f089877aSRichard Tran Mills 
2567f089877aSRichard Tran Mills @*/
2568f089877aSRichard Tran Mills PetscErrorCode  DMLocalToLocalBegin(DM dm,Vec g,InsertMode mode,Vec l)
2569f089877aSRichard Tran Mills {
2570f089877aSRichard Tran Mills   PetscErrorCode          ierr;
2571f089877aSRichard Tran Mills 
2572f089877aSRichard Tran Mills   PetscFunctionBegin;
2573f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2574bb358533SPatrick Sanan   if (!dm->ops->localtolocalbegin) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps");
2575f089877aSRichard Tran Mills   ierr = (*dm->ops->localtolocalbegin)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
2576f089877aSRichard Tran Mills   PetscFunctionReturn(0);
2577f089877aSRichard Tran Mills }
2578f089877aSRichard Tran Mills 
2579f089877aSRichard Tran Mills /*@
2580bc0a1609SRichard Tran Mills    DMLocalToLocalEnd - Maps from a local vector (including ghost points
2581bc0a1609SRichard Tran Mills    that contain irrelevant values) to another local vector where the ghost
2582d78e899eSRichard Tran Mills    points in the second are set correctly. Must be preceded by DMLocalToLocalBegin().
2583f089877aSRichard Tran Mills 
2584bc0a1609SRichard Tran Mills    Neighbor-wise Collective on DM and Vec
2585f089877aSRichard Tran Mills 
2586f089877aSRichard Tran Mills    Input Parameters:
2587bc0a1609SRichard Tran Mills +  da - the DM object
2588bc0a1609SRichard Tran Mills .  g - the original local vector
2589bc0a1609SRichard Tran Mills -  mode - one of INSERT_VALUES or ADD_VALUES
2590f089877aSRichard Tran Mills 
2591bc0a1609SRichard Tran Mills    Output Parameter:
2592bc0a1609SRichard Tran Mills .  l  - the local vector with correct ghost values
2593f089877aSRichard Tran Mills 
2594f089877aSRichard Tran Mills    Level: intermediate
2595f089877aSRichard Tran Mills 
2596bc0a1609SRichard Tran Mills    Notes:
2597bc0a1609SRichard Tran Mills    The local vectors used here need not be the same as those
2598bc0a1609SRichard Tran Mills    obtained from DMCreateLocalVector(), BUT they
2599bc0a1609SRichard Tran Mills    must have the same parallel data layout; they could, for example, be
2600bc0a1609SRichard Tran Mills    obtained with VecDuplicate() from the DM originating vectors.
2601bc0a1609SRichard Tran Mills 
2602bc0a1609SRichard Tran Mills .keywords: DM, local-to-local, end
2603bc0a1609SRichard Tran Mills .seealso DMCoarsen(), DMDestroy(), DMView(), DMCreateLocalVector(), DMCreateGlobalVector(), DMCreateInterpolation(), DMLocalToLocalBegin(), DMGlobalToLocalEnd(), DMLocalToGlobalBegin()
2604f089877aSRichard Tran Mills 
2605f089877aSRichard Tran Mills @*/
2606f089877aSRichard Tran Mills PetscErrorCode  DMLocalToLocalEnd(DM dm,Vec g,InsertMode mode,Vec l)
2607f089877aSRichard Tran Mills {
2608f089877aSRichard Tran Mills   PetscErrorCode          ierr;
2609f089877aSRichard Tran Mills 
2610f089877aSRichard Tran Mills   PetscFunctionBegin;
2611f089877aSRichard Tran Mills   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2612bb358533SPatrick Sanan   if (!dm->ops->localtolocalend) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM does not support local to local maps");
2613f089877aSRichard Tran Mills   ierr = (*dm->ops->localtolocalend)(dm,g,mode == INSERT_ALL_VALUES ? INSERT_VALUES : (mode == ADD_ALL_VALUES ? ADD_VALUES : mode),l);CHKERRQ(ierr);
2614f089877aSRichard Tran Mills   PetscFunctionReturn(0);
2615f089877aSRichard Tran Mills }
2616f089877aSRichard Tran Mills 
2617f089877aSRichard Tran Mills 
261847c6ae99SBarry Smith /*@
261947c6ae99SBarry Smith     DMCoarsen - Coarsens a DM object
262047c6ae99SBarry Smith 
262147c6ae99SBarry Smith     Collective on DM
262247c6ae99SBarry Smith 
262347c6ae99SBarry Smith     Input Parameter:
262447c6ae99SBarry Smith +   dm - the DM object
262591d95f02SJed Brown -   comm - the communicator to contain the new DM object (or MPI_COMM_NULL)
262647c6ae99SBarry Smith 
262747c6ae99SBarry Smith     Output Parameter:
262847c6ae99SBarry Smith .   dmc - the coarsened DM
262947c6ae99SBarry Smith 
263047c6ae99SBarry Smith     Level: developer
263147c6ae99SBarry Smith 
2632e727c939SJed Brown .seealso DMRefine(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
263347c6ae99SBarry Smith 
263447c6ae99SBarry Smith @*/
26357087cfbeSBarry Smith PetscErrorCode DMCoarsen(DM dm, MPI_Comm comm, DM *dmc)
263647c6ae99SBarry Smith {
263747c6ae99SBarry Smith   PetscErrorCode    ierr;
2638b17ce1afSJed Brown   DMCoarsenHookLink link;
263947c6ae99SBarry Smith 
264047c6ae99SBarry Smith   PetscFunctionBegin;
2641171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2642fef3a512SBarry Smith   if (!dm->ops->coarsen) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"This DM cannot coarsen");
264347a35634SPatrick Farrell   ierr = PetscLogEventBegin(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr);
264447c6ae99SBarry Smith   ierr                      = (*dm->ops->coarsen)(dm, comm, dmc);CHKERRQ(ierr);
26458892b4c3SMatthew G. Knepley   if (!(*dmc)) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "NULL coarse mesh produced");
2646a8fb8f29SToby Isaac   ierr = DMSetCoarseDM(dm,*dmc);CHKERRQ(ierr);
264743842a1eSJed Brown   (*dmc)->ops->creatematrix = dm->ops->creatematrix;
26488cd211a4SJed Brown   ierr                      = PetscObjectCopyFortranFunctionPointers((PetscObject)dm,(PetscObject)*dmc);CHKERRQ(ierr);
2649644e2e5bSBarry Smith   (*dmc)->ctx               = dm->ctx;
26500598a293SJed Brown   (*dmc)->levelup           = dm->levelup;
2651656b349aSBarry Smith   (*dmc)->leveldown         = dm->leveldown + 1;
2652e4b4b23bSJed Brown   ierr                      = DMSetMatType(*dmc,dm->mattype);CHKERRQ(ierr);
2653b17ce1afSJed Brown   for (link=dm->coarsenhook; link; link=link->next) {
2654b17ce1afSJed Brown     if (link->coarsenhook) {ierr = (*link->coarsenhook)(dm,*dmc,link->ctx);CHKERRQ(ierr);}
2655b17ce1afSJed Brown   }
265647a35634SPatrick Farrell   ierr = PetscLogEventEnd(DM_Coarsen,dm,0,0,0);CHKERRQ(ierr);
2657b17ce1afSJed Brown   PetscFunctionReturn(0);
2658b17ce1afSJed Brown }
2659b17ce1afSJed Brown 
2660bb9467b5SJed Brown /*@C
2661b17ce1afSJed Brown    DMCoarsenHookAdd - adds a callback to be run when restricting a nonlinear problem to the coarse grid
2662b17ce1afSJed Brown 
2663b17ce1afSJed Brown    Logically Collective
2664b17ce1afSJed Brown 
2665b17ce1afSJed Brown    Input Arguments:
2666b17ce1afSJed Brown +  fine - nonlinear solver context on which to run a hook when restricting to a coarser level
2667b17ce1afSJed Brown .  coarsenhook - function to run when setting up a coarser level
2668b17ce1afSJed Brown .  restricthook - function to run to update data on coarser levels (once per SNESSolve())
26690298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2670b17ce1afSJed Brown 
2671b17ce1afSJed Brown    Calling sequence of coarsenhook:
2672b17ce1afSJed Brown $    coarsenhook(DM fine,DM coarse,void *ctx);
2673b17ce1afSJed Brown 
2674b17ce1afSJed Brown +  fine - fine level DM
2675b17ce1afSJed Brown .  coarse - coarse level DM to restrict problem to
2676b17ce1afSJed Brown -  ctx - optional user-defined function context
2677b17ce1afSJed Brown 
2678b17ce1afSJed Brown    Calling sequence for restricthook:
2679c833c3b5SJed Brown $    restricthook(DM fine,Mat mrestrict,Vec rscale,Mat inject,DM coarse,void *ctx)
2680b17ce1afSJed Brown 
2681b17ce1afSJed Brown +  fine - fine level DM
2682b17ce1afSJed Brown .  mrestrict - matrix restricting a fine-level solution to the coarse grid
2683c833c3b5SJed Brown .  rscale - scaling vector for restriction
2684c833c3b5SJed Brown .  inject - matrix restricting by injection
2685b17ce1afSJed Brown .  coarse - coarse level DM to update
2686b17ce1afSJed Brown -  ctx - optional user-defined function context
2687b17ce1afSJed Brown 
2688b17ce1afSJed Brown    Level: advanced
2689b17ce1afSJed Brown 
2690b17ce1afSJed Brown    Notes:
2691b17ce1afSJed Brown    This function is only needed if auxiliary data needs to be set up on coarse grids.
2692b17ce1afSJed Brown 
2693b17ce1afSJed Brown    If this function is called multiple times, the hooks will be run in the order they are added.
2694b17ce1afSJed Brown 
2695b17ce1afSJed Brown    In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
2696b17ce1afSJed Brown    extract the finest level information from its context (instead of from the SNES).
2697b17ce1afSJed Brown 
2698bb9467b5SJed Brown    This function is currently not available from Fortran.
2699bb9467b5SJed Brown 
2700dc822a44SJed Brown .seealso: DMCoarsenHookRemove(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2701b17ce1afSJed Brown @*/
2702b17ce1afSJed Brown PetscErrorCode DMCoarsenHookAdd(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx)
2703b17ce1afSJed Brown {
2704b17ce1afSJed Brown   PetscErrorCode    ierr;
2705b17ce1afSJed Brown   DMCoarsenHookLink link,*p;
2706b17ce1afSJed Brown 
2707b17ce1afSJed Brown   PetscFunctionBegin;
2708b17ce1afSJed Brown   PetscValidHeaderSpecific(fine,DM_CLASSID,1);
27091e3d8eccSJed Brown   for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
27101e3d8eccSJed Brown     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0);
27111e3d8eccSJed Brown   }
271295dccacaSBarry Smith   ierr               = PetscNew(&link);CHKERRQ(ierr);
2713b17ce1afSJed Brown   link->coarsenhook  = coarsenhook;
2714b17ce1afSJed Brown   link->restricthook = restricthook;
2715b17ce1afSJed Brown   link->ctx          = ctx;
27160298fd71SBarry Smith   link->next         = NULL;
2717b17ce1afSJed Brown   *p                 = link;
2718b17ce1afSJed Brown   PetscFunctionReturn(0);
2719b17ce1afSJed Brown }
2720b17ce1afSJed Brown 
2721dc822a44SJed Brown /*@C
2722dc822a44SJed Brown    DMCoarsenHookRemove - remove a callback from the list of hooks to be run when restricting a nonlinear problem to the coarse grid
2723dc822a44SJed Brown 
2724dc822a44SJed Brown    Logically Collective
2725dc822a44SJed Brown 
2726dc822a44SJed Brown    Input Arguments:
2727dc822a44SJed Brown +  fine - nonlinear solver context on which to run a hook when restricting to a coarser level
2728dc822a44SJed Brown .  coarsenhook - function to run when setting up a coarser level
2729dc822a44SJed Brown .  restricthook - function to run to update data on coarser levels (once per SNESSolve())
2730dc822a44SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2731dc822a44SJed Brown 
2732dc822a44SJed Brown    Level: advanced
2733dc822a44SJed Brown 
2734dc822a44SJed Brown    Notes:
2735dc822a44SJed Brown    This function does nothing if the hook is not in the list.
2736dc822a44SJed Brown 
2737dc822a44SJed Brown    This function is currently not available from Fortran.
2738dc822a44SJed Brown 
2739dc822a44SJed Brown .seealso: DMCoarsenHookAdd(), DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2740dc822a44SJed Brown @*/
2741dc822a44SJed Brown PetscErrorCode DMCoarsenHookRemove(DM fine,PetscErrorCode (*coarsenhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,Mat,Vec,Mat,DM,void*),void *ctx)
2742dc822a44SJed Brown {
2743dc822a44SJed Brown   PetscErrorCode    ierr;
2744dc822a44SJed Brown   DMCoarsenHookLink link,*p;
2745dc822a44SJed Brown 
2746dc822a44SJed Brown   PetscFunctionBegin;
2747dc822a44SJed Brown   PetscValidHeaderSpecific(fine,DM_CLASSID,1);
2748dc822a44SJed Brown   for (p=&fine->coarsenhook; *p; p=&(*p)->next) { /* Search the list of current hooks */
2749dc822a44SJed Brown     if ((*p)->coarsenhook == coarsenhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
2750dc822a44SJed Brown       link = *p;
2751dc822a44SJed Brown       *p = link->next;
2752dc822a44SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
2753dc822a44SJed Brown       break;
2754dc822a44SJed Brown     }
2755dc822a44SJed Brown   }
2756dc822a44SJed Brown   PetscFunctionReturn(0);
2757dc822a44SJed Brown }
2758dc822a44SJed Brown 
2759dc822a44SJed Brown 
2760b17ce1afSJed Brown /*@
2761b17ce1afSJed Brown    DMRestrict - restricts user-defined problem data to a coarser DM by running hooks registered by DMCoarsenHookAdd()
2762b17ce1afSJed Brown 
2763b17ce1afSJed Brown    Collective if any hooks are
2764b17ce1afSJed Brown 
2765b17ce1afSJed Brown    Input Arguments:
2766b17ce1afSJed Brown +  fine - finer DM to use as a base
2767b17ce1afSJed Brown .  restrct - restriction matrix, apply using MatRestrict()
2768e91eccc2SStefano Zampini .  rscale - scaling vector for restriction
2769b17ce1afSJed Brown .  inject - injection matrix, also use MatRestrict()
2770e91eccc2SStefano Zampini -  coarse - coarser DM to update
2771b17ce1afSJed Brown 
2772b17ce1afSJed Brown    Level: developer
2773b17ce1afSJed Brown 
2774b17ce1afSJed Brown .seealso: DMCoarsenHookAdd(), MatRestrict()
2775b17ce1afSJed Brown @*/
2776b17ce1afSJed Brown PetscErrorCode DMRestrict(DM fine,Mat restrct,Vec rscale,Mat inject,DM coarse)
2777b17ce1afSJed Brown {
2778b17ce1afSJed Brown   PetscErrorCode    ierr;
2779b17ce1afSJed Brown   DMCoarsenHookLink link;
2780b17ce1afSJed Brown 
2781b17ce1afSJed Brown   PetscFunctionBegin;
2782b17ce1afSJed Brown   for (link=fine->coarsenhook; link; link=link->next) {
27838865f1eaSKarl Rupp     if (link->restricthook) {
27848865f1eaSKarl Rupp       ierr = (*link->restricthook)(fine,restrct,rscale,inject,coarse,link->ctx);CHKERRQ(ierr);
27858865f1eaSKarl Rupp     }
2786b17ce1afSJed Brown   }
278747c6ae99SBarry Smith   PetscFunctionReturn(0);
278847c6ae99SBarry Smith }
278947c6ae99SBarry Smith 
2790bb9467b5SJed Brown /*@C
2791be081cd6SPeter Brune    DMSubDomainHookAdd - adds a callback to be run when restricting a problem to the coarse grid
27925dbd56e3SPeter Brune 
27935dbd56e3SPeter Brune    Logically Collective
27945dbd56e3SPeter Brune 
27955dbd56e3SPeter Brune    Input Arguments:
27965dbd56e3SPeter Brune +  global - global DM
2797ec4806b8SPeter Brune .  ddhook - function to run to pass data to the decomposition DM upon its creation
27985dbd56e3SPeter Brune .  restricthook - function to run to update data on block solve (at the beginning of the block solve)
27990298fd71SBarry Smith -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
28005dbd56e3SPeter Brune 
2801ec4806b8SPeter Brune 
2802ec4806b8SPeter Brune    Calling sequence for ddhook:
2803ec4806b8SPeter Brune $    ddhook(DM global,DM block,void *ctx)
2804ec4806b8SPeter Brune 
2805ec4806b8SPeter Brune +  global - global DM
2806ec4806b8SPeter Brune .  block  - block DM
2807ec4806b8SPeter Brune -  ctx - optional user-defined function context
2808ec4806b8SPeter Brune 
28095dbd56e3SPeter Brune    Calling sequence for restricthook:
2810ec4806b8SPeter Brune $    restricthook(DM global,VecScatter out,VecScatter in,DM block,void *ctx)
28115dbd56e3SPeter Brune 
28125dbd56e3SPeter Brune +  global - global DM
28135dbd56e3SPeter Brune .  out    - scatter to the outer (with ghost and overlap points) block vector
28145dbd56e3SPeter Brune .  in     - scatter to block vector values only owned locally
2815ec4806b8SPeter Brune .  block  - block DM
28165dbd56e3SPeter Brune -  ctx - optional user-defined function context
28175dbd56e3SPeter Brune 
28185dbd56e3SPeter Brune    Level: advanced
28195dbd56e3SPeter Brune 
28205dbd56e3SPeter Brune    Notes:
2821ec4806b8SPeter Brune    This function is only needed if auxiliary data needs to be set up on subdomain DMs.
28225dbd56e3SPeter Brune 
28235dbd56e3SPeter Brune    If this function is called multiple times, the hooks will be run in the order they are added.
28245dbd56e3SPeter Brune 
28255dbd56e3SPeter Brune    In order to compose with nonlinear preconditioning without duplicating storage, the hook should be implemented to
2826ec4806b8SPeter Brune    extract the global information from its context (instead of from the SNES).
28275dbd56e3SPeter Brune 
2828bb9467b5SJed Brown    This function is currently not available from Fortran.
2829bb9467b5SJed Brown 
28305dbd56e3SPeter Brune .seealso: DMRefineHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
28315dbd56e3SPeter Brune @*/
2832be081cd6SPeter Brune PetscErrorCode DMSubDomainHookAdd(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx)
28335dbd56e3SPeter Brune {
28345dbd56e3SPeter Brune   PetscErrorCode      ierr;
2835be081cd6SPeter Brune   DMSubDomainHookLink link,*p;
28365dbd56e3SPeter Brune 
28375dbd56e3SPeter Brune   PetscFunctionBegin;
28385dbd56e3SPeter Brune   PetscValidHeaderSpecific(global,DM_CLASSID,1);
2839b3a6b972SJed Brown   for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Scan to the end of the current list of hooks */
2840b3a6b972SJed Brown     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) PetscFunctionReturn(0);
2841b3a6b972SJed Brown   }
284295dccacaSBarry Smith   ierr               = PetscNew(&link);CHKERRQ(ierr);
28435dbd56e3SPeter Brune   link->restricthook = restricthook;
2844be081cd6SPeter Brune   link->ddhook       = ddhook;
28455dbd56e3SPeter Brune   link->ctx          = ctx;
28460298fd71SBarry Smith   link->next         = NULL;
28475dbd56e3SPeter Brune   *p                 = link;
28485dbd56e3SPeter Brune   PetscFunctionReturn(0);
28495dbd56e3SPeter Brune }
28505dbd56e3SPeter Brune 
2851b3a6b972SJed Brown /*@C
2852b3a6b972SJed Brown    DMSubDomainHookRemove - remove a callback from the list to be run when restricting a problem to the coarse grid
2853b3a6b972SJed Brown 
2854b3a6b972SJed Brown    Logically Collective
2855b3a6b972SJed Brown 
2856b3a6b972SJed Brown    Input Arguments:
2857b3a6b972SJed Brown +  global - global DM
2858b3a6b972SJed Brown .  ddhook - function to run to pass data to the decomposition DM upon its creation
2859b3a6b972SJed Brown .  restricthook - function to run to update data on block solve (at the beginning of the block solve)
2860b3a6b972SJed Brown -  ctx - [optional] user-defined context for provide data for the hooks (may be NULL)
2861b3a6b972SJed Brown 
2862b3a6b972SJed Brown    Level: advanced
2863b3a6b972SJed Brown 
2864b3a6b972SJed Brown    Notes:
2865b3a6b972SJed Brown 
2866b3a6b972SJed Brown    This function is currently not available from Fortran.
2867b3a6b972SJed Brown 
2868b3a6b972SJed Brown .seealso: DMSubDomainHookAdd(), SNESFASGetInterpolation(), SNESFASGetInjection(), PetscObjectCompose(), PetscContainerCreate()
2869b3a6b972SJed Brown @*/
2870b3a6b972SJed Brown PetscErrorCode DMSubDomainHookRemove(DM global,PetscErrorCode (*ddhook)(DM,DM,void*),PetscErrorCode (*restricthook)(DM,VecScatter,VecScatter,DM,void*),void *ctx)
2871b3a6b972SJed Brown {
2872b3a6b972SJed Brown   PetscErrorCode      ierr;
2873b3a6b972SJed Brown   DMSubDomainHookLink link,*p;
2874b3a6b972SJed Brown 
2875b3a6b972SJed Brown   PetscFunctionBegin;
2876b3a6b972SJed Brown   PetscValidHeaderSpecific(global,DM_CLASSID,1);
2877b3a6b972SJed Brown   for (p=&global->subdomainhook; *p; p=&(*p)->next) { /* Search the list of current hooks */
2878b3a6b972SJed Brown     if ((*p)->ddhook == ddhook && (*p)->restricthook == restricthook && (*p)->ctx == ctx) {
2879b3a6b972SJed Brown       link = *p;
2880b3a6b972SJed Brown       *p = link->next;
2881b3a6b972SJed Brown       ierr = PetscFree(link);CHKERRQ(ierr);
2882b3a6b972SJed Brown       break;
2883b3a6b972SJed Brown     }
2884b3a6b972SJed Brown   }
2885b3a6b972SJed Brown   PetscFunctionReturn(0);
2886b3a6b972SJed Brown }
2887b3a6b972SJed Brown 
28885dbd56e3SPeter Brune /*@
2889be081cd6SPeter Brune    DMSubDomainRestrict - restricts user-defined problem data to a block DM by running hooks registered by DMSubDomainHookAdd()
28905dbd56e3SPeter Brune 
28915dbd56e3SPeter Brune    Collective if any hooks are
28925dbd56e3SPeter Brune 
28935dbd56e3SPeter Brune    Input Arguments:
28945dbd56e3SPeter Brune +  fine - finer DM to use as a base
2895be081cd6SPeter Brune .  oscatter - scatter from domain global vector filling subdomain global vector with overlap
2896be081cd6SPeter Brune .  gscatter - scatter from domain global vector filling subdomain local vector with ghosts
28975dbd56e3SPeter Brune -  coarse - coarer DM to update
28985dbd56e3SPeter Brune 
28995dbd56e3SPeter Brune    Level: developer
29005dbd56e3SPeter Brune 
29015dbd56e3SPeter Brune .seealso: DMCoarsenHookAdd(), MatRestrict()
29025dbd56e3SPeter Brune @*/
2903be081cd6SPeter Brune PetscErrorCode DMSubDomainRestrict(DM global,VecScatter oscatter,VecScatter gscatter,DM subdm)
29045dbd56e3SPeter Brune {
29055dbd56e3SPeter Brune   PetscErrorCode      ierr;
2906be081cd6SPeter Brune   DMSubDomainHookLink link;
29075dbd56e3SPeter Brune 
29085dbd56e3SPeter Brune   PetscFunctionBegin;
2909be081cd6SPeter Brune   for (link=global->subdomainhook; link; link=link->next) {
29108865f1eaSKarl Rupp     if (link->restricthook) {
29118865f1eaSKarl Rupp       ierr = (*link->restricthook)(global,oscatter,gscatter,subdm,link->ctx);CHKERRQ(ierr);
29128865f1eaSKarl Rupp     }
29135dbd56e3SPeter Brune   }
29145dbd56e3SPeter Brune   PetscFunctionReturn(0);
29155dbd56e3SPeter Brune }
29165dbd56e3SPeter Brune 
29175fe1f584SPeter Brune /*@
29186a7d9d85SPeter Brune     DMGetCoarsenLevel - Get's the number of coarsenings that have generated this DM.
29195fe1f584SPeter Brune 
29205fe1f584SPeter Brune     Not Collective
29215fe1f584SPeter Brune 
29225fe1f584SPeter Brune     Input Parameter:
29235fe1f584SPeter Brune .   dm - the DM object
29245fe1f584SPeter Brune 
29255fe1f584SPeter Brune     Output Parameter:
29266a7d9d85SPeter Brune .   level - number of coarsenings
29275fe1f584SPeter Brune 
29285fe1f584SPeter Brune     Level: developer
29295fe1f584SPeter Brune 
29306a7d9d85SPeter Brune .seealso DMCoarsen(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
29315fe1f584SPeter Brune 
29325fe1f584SPeter Brune @*/
29335fe1f584SPeter Brune PetscErrorCode  DMGetCoarsenLevel(DM dm,PetscInt *level)
29345fe1f584SPeter Brune {
29355fe1f584SPeter Brune   PetscFunctionBegin;
29365fe1f584SPeter Brune   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
29375fe1f584SPeter Brune   *level = dm->leveldown;
29385fe1f584SPeter Brune   PetscFunctionReturn(0);
29395fe1f584SPeter Brune }
29405fe1f584SPeter Brune 
29419a64c4a8SMatthew G. Knepley /*@
29429a64c4a8SMatthew G. Knepley     DMSetCoarsenLevel - Sets the number of coarsenings that have generated this DM.
29439a64c4a8SMatthew G. Knepley 
29449a64c4a8SMatthew G. Knepley     Not Collective
29459a64c4a8SMatthew G. Knepley 
29469a64c4a8SMatthew G. Knepley     Input Parameters:
29479a64c4a8SMatthew G. Knepley +   dm - the DM object
29489a64c4a8SMatthew G. Knepley -   level - number of coarsenings
29499a64c4a8SMatthew G. Knepley 
29509a64c4a8SMatthew G. Knepley     Level: developer
29519a64c4a8SMatthew G. Knepley 
29529a64c4a8SMatthew G. Knepley .seealso DMCoarsen(), DMGetCoarsenLevel(), DMGetRefineLevel(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
29539a64c4a8SMatthew G. Knepley @*/
29549a64c4a8SMatthew G. Knepley PetscErrorCode DMSetCoarsenLevel(DM dm,PetscInt level)
29559a64c4a8SMatthew G. Knepley {
29569a64c4a8SMatthew G. Knepley   PetscFunctionBegin;
29579a64c4a8SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
29589a64c4a8SMatthew G. Knepley   dm->leveldown = level;
29599a64c4a8SMatthew G. Knepley   PetscFunctionReturn(0);
29609a64c4a8SMatthew G. Knepley }
29619a64c4a8SMatthew G. Knepley 
29625fe1f584SPeter Brune 
29635fe1f584SPeter Brune 
296447c6ae99SBarry Smith /*@C
296547c6ae99SBarry Smith     DMRefineHierarchy - Refines a DM object, all levels at once
296647c6ae99SBarry Smith 
296747c6ae99SBarry Smith     Collective on DM
296847c6ae99SBarry Smith 
296947c6ae99SBarry Smith     Input Parameter:
297047c6ae99SBarry Smith +   dm - the DM object
297147c6ae99SBarry Smith -   nlevels - the number of levels of refinement
297247c6ae99SBarry Smith 
297347c6ae99SBarry Smith     Output Parameter:
297447c6ae99SBarry Smith .   dmf - the refined DM hierarchy
297547c6ae99SBarry Smith 
297647c6ae99SBarry Smith     Level: developer
297747c6ae99SBarry Smith 
2978e727c939SJed Brown .seealso DMCoarsenHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
297947c6ae99SBarry Smith 
298047c6ae99SBarry Smith @*/
29817087cfbeSBarry Smith PetscErrorCode  DMRefineHierarchy(DM dm,PetscInt nlevels,DM dmf[])
298247c6ae99SBarry Smith {
298347c6ae99SBarry Smith   PetscErrorCode ierr;
298447c6ae99SBarry Smith 
298547c6ae99SBarry Smith   PetscFunctionBegin;
2986171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
2987ce94432eSBarry Smith   if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative");
298847c6ae99SBarry Smith   if (nlevels == 0) PetscFunctionReturn(0);
298947c6ae99SBarry Smith   if (dm->ops->refinehierarchy) {
299047c6ae99SBarry Smith     ierr = (*dm->ops->refinehierarchy)(dm,nlevels,dmf);CHKERRQ(ierr);
299147c6ae99SBarry Smith   } else if (dm->ops->refine) {
299247c6ae99SBarry Smith     PetscInt i;
299347c6ae99SBarry Smith 
2994ce94432eSBarry Smith     ierr = DMRefine(dm,PetscObjectComm((PetscObject)dm),&dmf[0]);CHKERRQ(ierr);
299547c6ae99SBarry Smith     for (i=1; i<nlevels; i++) {
2996ce94432eSBarry Smith       ierr = DMRefine(dmf[i-1],PetscObjectComm((PetscObject)dm),&dmf[i]);CHKERRQ(ierr);
299747c6ae99SBarry Smith     }
2998ce94432eSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No RefineHierarchy for this DM yet");
299947c6ae99SBarry Smith   PetscFunctionReturn(0);
300047c6ae99SBarry Smith }
300147c6ae99SBarry Smith 
300247c6ae99SBarry Smith /*@C
300347c6ae99SBarry Smith     DMCoarsenHierarchy - Coarsens a DM object, all levels at once
300447c6ae99SBarry Smith 
300547c6ae99SBarry Smith     Collective on DM
300647c6ae99SBarry Smith 
300747c6ae99SBarry Smith     Input Parameter:
300847c6ae99SBarry Smith +   dm - the DM object
300947c6ae99SBarry Smith -   nlevels - the number of levels of coarsening
301047c6ae99SBarry Smith 
301147c6ae99SBarry Smith     Output Parameter:
301247c6ae99SBarry Smith .   dmc - the coarsened DM hierarchy
301347c6ae99SBarry Smith 
301447c6ae99SBarry Smith     Level: developer
301547c6ae99SBarry Smith 
3016e727c939SJed Brown .seealso DMRefineHierarchy(), DMDestroy(), DMView(), DMCreateGlobalVector(), DMCreateInterpolation()
301747c6ae99SBarry Smith 
301847c6ae99SBarry Smith @*/
30197087cfbeSBarry Smith PetscErrorCode  DMCoarsenHierarchy(DM dm, PetscInt nlevels, DM dmc[])
302047c6ae99SBarry Smith {
302147c6ae99SBarry Smith   PetscErrorCode ierr;
302247c6ae99SBarry Smith 
302347c6ae99SBarry Smith   PetscFunctionBegin;
3024171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
3025ce94432eSBarry Smith   if (nlevels < 0) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_OUTOFRANGE,"nlevels cannot be negative");
302647c6ae99SBarry Smith   if (nlevels == 0) PetscFunctionReturn(0);
302747c6ae99SBarry Smith   PetscValidPointer(dmc,3);
302847c6ae99SBarry Smith   if (dm->ops->coarsenhierarchy) {
302947c6ae99SBarry Smith     ierr = (*dm->ops->coarsenhierarchy)(dm, nlevels, dmc);CHKERRQ(ierr);
303047c6ae99SBarry Smith   } else if (dm->ops->coarsen) {
303147c6ae99SBarry Smith     PetscInt i;
303247c6ae99SBarry Smith 
3033ce94432eSBarry Smith     ierr = DMCoarsen(dm,PetscObjectComm((PetscObject)dm),&dmc[0]);CHKERRQ(ierr);
303447c6ae99SBarry Smith     for (i=1; i<nlevels; i++) {
3035ce94432eSBarry Smith       ierr = DMCoarsen(dmc[i-1],PetscObjectComm((PetscObject)dm),&dmc[i]);CHKERRQ(ierr);
303647c6ae99SBarry Smith     }
3037ce94432eSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"No CoarsenHierarchy for this DM yet");
303847c6ae99SBarry Smith   PetscFunctionReturn(0);
303947c6ae99SBarry Smith }
304047c6ae99SBarry Smith 
304147c6ae99SBarry Smith /*@
3042e727c939SJed Brown    DMCreateAggregates - Gets the aggregates that map between
304347c6ae99SBarry Smith    grids associated with two DMs.
304447c6ae99SBarry Smith 
304547c6ae99SBarry Smith    Collective on DM
304647c6ae99SBarry Smith 
304747c6ae99SBarry Smith    Input Parameters:
304847c6ae99SBarry Smith +  dmc - the coarse grid DM
304947c6ae99SBarry Smith -  dmf - the fine grid DM
305047c6ae99SBarry Smith 
305147c6ae99SBarry Smith    Output Parameters:
305247c6ae99SBarry Smith .  rest - the restriction matrix (transpose of the projection matrix)
305347c6ae99SBarry Smith 
305447c6ae99SBarry Smith    Level: intermediate
305547c6ae99SBarry Smith 
305647c6ae99SBarry Smith .keywords: interpolation, restriction, multigrid
305747c6ae99SBarry Smith 
3058e727c939SJed Brown .seealso: DMRefine(), DMCreateInjection(), DMCreateInterpolation()
305947c6ae99SBarry Smith @*/
3060e727c939SJed Brown PetscErrorCode  DMCreateAggregates(DM dmc, DM dmf, Mat *rest)
306147c6ae99SBarry Smith {
306247c6ae99SBarry Smith   PetscErrorCode ierr;
306347c6ae99SBarry Smith 
306447c6ae99SBarry Smith   PetscFunctionBegin;
3065171400e9SBarry Smith   PetscValidHeaderSpecific(dmc,DM_CLASSID,1);
3066171400e9SBarry Smith   PetscValidHeaderSpecific(dmf,DM_CLASSID,2);
306747c6ae99SBarry Smith   ierr = (*dmc->ops->getaggregates)(dmc, dmf, rest);CHKERRQ(ierr);
306847c6ae99SBarry Smith   PetscFunctionReturn(0);
306947c6ae99SBarry Smith }
307047c6ae99SBarry Smith 
30711a266240SBarry Smith /*@C
30721a266240SBarry Smith     DMSetApplicationContextDestroy - Sets a user function that will be called to destroy the application context when the DM is destroyed
30731a266240SBarry Smith 
30741a266240SBarry Smith     Not Collective
30751a266240SBarry Smith 
30761a266240SBarry Smith     Input Parameters:
30771a266240SBarry Smith +   dm - the DM object
30781a266240SBarry Smith -   destroy - the destroy function
30791a266240SBarry Smith 
30801a266240SBarry Smith     Level: intermediate
30811a266240SBarry Smith 
3082e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
30831a266240SBarry Smith 
3084f07f9ceaSJed Brown @*/
30851a266240SBarry Smith PetscErrorCode  DMSetApplicationContextDestroy(DM dm,PetscErrorCode (*destroy)(void**))
30861a266240SBarry Smith {
30871a266240SBarry Smith   PetscFunctionBegin;
3088171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
30891a266240SBarry Smith   dm->ctxdestroy = destroy;
30901a266240SBarry Smith   PetscFunctionReturn(0);
30911a266240SBarry Smith }
30921a266240SBarry Smith 
3093b07ff414SBarry Smith /*@
30941b2093e4SBarry Smith     DMSetApplicationContext - Set a user context into a DM object
309547c6ae99SBarry Smith 
309647c6ae99SBarry Smith     Not Collective
309747c6ae99SBarry Smith 
309847c6ae99SBarry Smith     Input Parameters:
309947c6ae99SBarry Smith +   dm - the DM object
310047c6ae99SBarry Smith -   ctx - the user context
310147c6ae99SBarry Smith 
310247c6ae99SBarry Smith     Level: intermediate
310347c6ae99SBarry Smith 
3104e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
310547c6ae99SBarry Smith 
310647c6ae99SBarry Smith @*/
31071b2093e4SBarry Smith PetscErrorCode  DMSetApplicationContext(DM dm,void *ctx)
310847c6ae99SBarry Smith {
310947c6ae99SBarry Smith   PetscFunctionBegin;
3110171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
311147c6ae99SBarry Smith   dm->ctx = ctx;
311247c6ae99SBarry Smith   PetscFunctionReturn(0);
311347c6ae99SBarry Smith }
311447c6ae99SBarry Smith 
311547c6ae99SBarry Smith /*@
31161b2093e4SBarry Smith     DMGetApplicationContext - Gets a user context from a DM object
311747c6ae99SBarry Smith 
311847c6ae99SBarry Smith     Not Collective
311947c6ae99SBarry Smith 
312047c6ae99SBarry Smith     Input Parameter:
312147c6ae99SBarry Smith .   dm - the DM object
312247c6ae99SBarry Smith 
312347c6ae99SBarry Smith     Output Parameter:
312447c6ae99SBarry Smith .   ctx - the user context
312547c6ae99SBarry Smith 
312647c6ae99SBarry Smith     Level: intermediate
312747c6ae99SBarry Smith 
3128e727c939SJed Brown .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
312947c6ae99SBarry Smith 
313047c6ae99SBarry Smith @*/
31311b2093e4SBarry Smith PetscErrorCode  DMGetApplicationContext(DM dm,void *ctx)
313247c6ae99SBarry Smith {
313347c6ae99SBarry Smith   PetscFunctionBegin;
3134171400e9SBarry Smith   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
31351b2093e4SBarry Smith   *(void**)ctx = dm->ctx;
313647c6ae99SBarry Smith   PetscFunctionReturn(0);
313747c6ae99SBarry Smith }
313847c6ae99SBarry Smith 
313908da532bSDmitry Karpeev /*@C
3140df3898eeSBarry Smith     DMSetVariableBounds - sets a function to compute the lower and upper bound vectors for SNESVI.
314108da532bSDmitry Karpeev 
314208da532bSDmitry Karpeev     Logically Collective on DM
314308da532bSDmitry Karpeev 
314408da532bSDmitry Karpeev     Input Parameter:
314508da532bSDmitry Karpeev +   dm - the DM object
31460298fd71SBarry Smith -   f - the function that computes variable bounds used by SNESVI (use NULL to cancel a previous function that was set)
314708da532bSDmitry Karpeev 
314808da532bSDmitry Karpeev     Level: intermediate
314908da532bSDmitry Karpeev 
3150835c3ec7SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext(),
315108da532bSDmitry Karpeev          DMSetJacobian()
315208da532bSDmitry Karpeev 
315308da532bSDmitry Karpeev @*/
315408da532bSDmitry Karpeev PetscErrorCode  DMSetVariableBounds(DM dm,PetscErrorCode (*f)(DM,Vec,Vec))
315508da532bSDmitry Karpeev {
315608da532bSDmitry Karpeev   PetscFunctionBegin;
315708da532bSDmitry Karpeev   dm->ops->computevariablebounds = f;
315808da532bSDmitry Karpeev   PetscFunctionReturn(0);
315908da532bSDmitry Karpeev }
316008da532bSDmitry Karpeev 
316108da532bSDmitry Karpeev /*@
316208da532bSDmitry Karpeev     DMHasVariableBounds - does the DM object have a variable bounds function?
316308da532bSDmitry Karpeev 
316408da532bSDmitry Karpeev     Not Collective
316508da532bSDmitry Karpeev 
316608da532bSDmitry Karpeev     Input Parameter:
316708da532bSDmitry Karpeev .   dm - the DM object to destroy
316808da532bSDmitry Karpeev 
316908da532bSDmitry Karpeev     Output Parameter:
317008da532bSDmitry Karpeev .   flg - PETSC_TRUE if the variable bounds function exists
317108da532bSDmitry Karpeev 
317208da532bSDmitry Karpeev     Level: developer
317308da532bSDmitry Karpeev 
317474e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
317508da532bSDmitry Karpeev 
317608da532bSDmitry Karpeev @*/
317708da532bSDmitry Karpeev PetscErrorCode  DMHasVariableBounds(DM dm,PetscBool  *flg)
317808da532bSDmitry Karpeev {
317908da532bSDmitry Karpeev   PetscFunctionBegin;
318008da532bSDmitry Karpeev   *flg =  (dm->ops->computevariablebounds) ? PETSC_TRUE : PETSC_FALSE;
318108da532bSDmitry Karpeev   PetscFunctionReturn(0);
318208da532bSDmitry Karpeev }
318308da532bSDmitry Karpeev 
318408da532bSDmitry Karpeev /*@C
318508da532bSDmitry Karpeev     DMComputeVariableBounds - compute variable bounds used by SNESVI.
318608da532bSDmitry Karpeev 
318708da532bSDmitry Karpeev     Logically Collective on DM
318808da532bSDmitry Karpeev 
318908da532bSDmitry Karpeev     Input Parameters:
3190907376e6SBarry Smith .   dm - the DM object
319108da532bSDmitry Karpeev 
319208da532bSDmitry Karpeev     Output parameters:
319308da532bSDmitry Karpeev +   xl - lower bound
319408da532bSDmitry Karpeev -   xu - upper bound
319508da532bSDmitry Karpeev 
3196907376e6SBarry Smith     Level: advanced
3197907376e6SBarry Smith 
319895452b02SPatrick Sanan     Notes:
319995452b02SPatrick Sanan     This is generally not called by users. It calls the function provided by the user with DMSetVariableBounds()
320008da532bSDmitry Karpeev 
320174e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
320208da532bSDmitry Karpeev 
320308da532bSDmitry Karpeev @*/
320408da532bSDmitry Karpeev PetscErrorCode  DMComputeVariableBounds(DM dm, Vec xl, Vec xu)
320508da532bSDmitry Karpeev {
320608da532bSDmitry Karpeev   PetscErrorCode ierr;
32075fd66863SKarl Rupp 
320808da532bSDmitry Karpeev   PetscFunctionBegin;
320908da532bSDmitry Karpeev   PetscValidHeaderSpecific(xl,VEC_CLASSID,2);
321008da532bSDmitry Karpeev   PetscValidHeaderSpecific(xu,VEC_CLASSID,2);
321108da532bSDmitry Karpeev   if (dm->ops->computevariablebounds) {
321208da532bSDmitry Karpeev     ierr = (*dm->ops->computevariablebounds)(dm, xl,xu);CHKERRQ(ierr);
32138865f1eaSKarl Rupp   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "This DM is incapable of computing variable bounds.");
321408da532bSDmitry Karpeev   PetscFunctionReturn(0);
321508da532bSDmitry Karpeev }
321608da532bSDmitry Karpeev 
3217b0ae01b7SPeter Brune /*@
3218b0ae01b7SPeter Brune     DMHasColoring - does the DM object have a method of providing a coloring?
3219b0ae01b7SPeter Brune 
3220b0ae01b7SPeter Brune     Not Collective
3221b0ae01b7SPeter Brune 
3222b0ae01b7SPeter Brune     Input Parameter:
3223b0ae01b7SPeter Brune .   dm - the DM object
3224b0ae01b7SPeter Brune 
3225b0ae01b7SPeter Brune     Output Parameter:
3226b0ae01b7SPeter Brune .   flg - PETSC_TRUE if the DM has facilities for DMCreateColoring().
3227b0ae01b7SPeter Brune 
3228b0ae01b7SPeter Brune     Level: developer
3229b0ae01b7SPeter Brune 
3230b0ae01b7SPeter Brune .seealso DMHasFunction(), DMCreateColoring()
3231b0ae01b7SPeter Brune 
3232b0ae01b7SPeter Brune @*/
3233b0ae01b7SPeter Brune PetscErrorCode  DMHasColoring(DM dm,PetscBool  *flg)
3234b0ae01b7SPeter Brune {
3235b0ae01b7SPeter Brune   PetscFunctionBegin;
3236b0ae01b7SPeter Brune   *flg =  (dm->ops->getcoloring) ? PETSC_TRUE : PETSC_FALSE;
3237b0ae01b7SPeter Brune   PetscFunctionReturn(0);
3238b0ae01b7SPeter Brune }
3239b0ae01b7SPeter Brune 
32403ad4599aSBarry Smith /*@
32413ad4599aSBarry Smith     DMHasCreateRestriction - does the DM object have a method of providing a restriction?
32423ad4599aSBarry Smith 
32433ad4599aSBarry Smith     Not Collective
32443ad4599aSBarry Smith 
32453ad4599aSBarry Smith     Input Parameter:
32463ad4599aSBarry Smith .   dm - the DM object
32473ad4599aSBarry Smith 
32483ad4599aSBarry Smith     Output Parameter:
32493ad4599aSBarry Smith .   flg - PETSC_TRUE if the DM has facilities for DMCreateRestriction().
32503ad4599aSBarry Smith 
32513ad4599aSBarry Smith     Level: developer
32523ad4599aSBarry Smith 
32533ad4599aSBarry Smith .seealso DMHasFunction(), DMCreateRestriction()
32543ad4599aSBarry Smith 
32553ad4599aSBarry Smith @*/
32563ad4599aSBarry Smith PetscErrorCode  DMHasCreateRestriction(DM dm,PetscBool  *flg)
32573ad4599aSBarry Smith {
32583ad4599aSBarry Smith   PetscFunctionBegin;
32593ad4599aSBarry Smith   *flg =  (dm->ops->createrestriction) ? PETSC_TRUE : PETSC_FALSE;
32603ad4599aSBarry Smith   PetscFunctionReturn(0);
32613ad4599aSBarry Smith }
32623ad4599aSBarry Smith 
3263a7058e45SLawrence Mitchell 
3264a7058e45SLawrence Mitchell /*@
3265a7058e45SLawrence Mitchell     DMHasCreateInjection - does the DM object have a method of providing an injection?
3266a7058e45SLawrence Mitchell 
3267a7058e45SLawrence Mitchell     Not Collective
3268a7058e45SLawrence Mitchell 
3269a7058e45SLawrence Mitchell     Input Parameter:
3270a7058e45SLawrence Mitchell .   dm - the DM object
3271a7058e45SLawrence Mitchell 
3272a7058e45SLawrence Mitchell     Output Parameter:
3273a7058e45SLawrence Mitchell .   flg - PETSC_TRUE if the DM has facilities for DMCreateInjection().
3274a7058e45SLawrence Mitchell 
3275a7058e45SLawrence Mitchell     Level: developer
3276a7058e45SLawrence Mitchell 
3277a7058e45SLawrence Mitchell .seealso DMHasFunction(), DMCreateInjection()
3278a7058e45SLawrence Mitchell 
3279a7058e45SLawrence Mitchell @*/
3280a7058e45SLawrence Mitchell PetscErrorCode  DMHasCreateInjection(DM dm,PetscBool  *flg)
3281a7058e45SLawrence Mitchell {
32824a7a4c06SLawrence Mitchell   PetscErrorCode ierr;
3283a7058e45SLawrence Mitchell   PetscFunctionBegin;
32844a7a4c06SLawrence Mitchell   if (!dm->ops->hascreateinjection) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DMHasCreateInjection not implemented for this type");
32854a7a4c06SLawrence Mitchell   ierr = (*dm->ops->hascreateinjection)(dm,flg);CHKERRQ(ierr);
3286a7058e45SLawrence Mitchell   PetscFunctionReturn(0);
3287a7058e45SLawrence Mitchell }
3288a7058e45SLawrence Mitchell 
3289748fac09SDmitry Karpeev /*@C
329008da532bSDmitry Karpeev     DMSetVec - set the vector at which to compute residual, Jacobian and VI bounds, if the problem is nonlinear.
329108da532bSDmitry Karpeev 
329208da532bSDmitry Karpeev     Collective on DM
329308da532bSDmitry Karpeev 
329408da532bSDmitry Karpeev     Input Parameter:
329508da532bSDmitry Karpeev +   dm - the DM object
32960298fd71SBarry Smith -   x - location to compute residual and Jacobian, if NULL is passed to those routines; will be NULL for linear problems.
329708da532bSDmitry Karpeev 
329808da532bSDmitry Karpeev     Level: developer
329908da532bSDmitry Karpeev 
330074e1e8c1SBarry Smith .seealso DMView(), DMCreateGlobalVector(), DMCreateInterpolation(), DMCreateColoring(), DMCreateMatrix(), DMGetApplicationContext()
330108da532bSDmitry Karpeev 
330208da532bSDmitry Karpeev @*/
330308da532bSDmitry Karpeev PetscErrorCode  DMSetVec(DM dm,Vec x)
330408da532bSDmitry Karpeev {
330508da532bSDmitry Karpeev   PetscErrorCode ierr;
33065fd66863SKarl Rupp 
330708da532bSDmitry Karpeev   PetscFunctionBegin;
330808da532bSDmitry Karpeev   if (x) {
330908da532bSDmitry Karpeev     if (!dm->x) {
331008da532bSDmitry Karpeev       ierr = DMCreateGlobalVector(dm,&dm->x);CHKERRQ(ierr);
331108da532bSDmitry Karpeev     }
331208da532bSDmitry Karpeev     ierr = VecCopy(x,dm->x);CHKERRQ(ierr);
33138865f1eaSKarl Rupp   } else if (dm->x) {
331408da532bSDmitry Karpeev     ierr = VecDestroy(&dm->x);CHKERRQ(ierr);
331508da532bSDmitry Karpeev   }
331608da532bSDmitry Karpeev   PetscFunctionReturn(0);
331708da532bSDmitry Karpeev }
331808da532bSDmitry Karpeev 
33190298fd71SBarry Smith PetscFunctionList DMList              = NULL;
3320264ace61SBarry Smith PetscBool         DMRegisterAllCalled = PETSC_FALSE;
3321264ace61SBarry Smith 
3322264ace61SBarry Smith /*@C
3323264ace61SBarry Smith   DMSetType - Builds a DM, for a particular DM implementation.
3324264ace61SBarry Smith 
3325264ace61SBarry Smith   Collective on DM
3326264ace61SBarry Smith 
3327264ace61SBarry Smith   Input Parameters:
3328264ace61SBarry Smith + dm     - The DM object
3329264ace61SBarry Smith - method - The name of the DM type
3330264ace61SBarry Smith 
3331264ace61SBarry Smith   Options Database Key:
3332264ace61SBarry Smith . -dm_type <type> - Sets the DM type; use -help for a list of available types
3333264ace61SBarry Smith 
3334264ace61SBarry Smith   Notes:
3335e1589f56SBarry Smith   See "petsc/include/petscdm.h" for available DM types (for instance, DM1D, DM2D, or DM3D).
3336264ace61SBarry Smith 
3337264ace61SBarry Smith   Level: intermediate
3338264ace61SBarry Smith 
3339264ace61SBarry Smith .keywords: DM, set, type
3340264ace61SBarry Smith .seealso: DMGetType(), DMCreate()
3341264ace61SBarry Smith @*/
334219fd82e9SBarry Smith PetscErrorCode  DMSetType(DM dm, DMType method)
3343264ace61SBarry Smith {
3344264ace61SBarry Smith   PetscErrorCode (*r)(DM);
3345264ace61SBarry Smith   PetscBool      match;
3346264ace61SBarry Smith   PetscErrorCode ierr;
3347264ace61SBarry Smith 
3348264ace61SBarry Smith   PetscFunctionBegin;
3349264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID,1);
3350251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject) dm, method, &match);CHKERRQ(ierr);
3351264ace61SBarry Smith   if (match) PetscFunctionReturn(0);
3352264ace61SBarry Smith 
33530f51fdf8SToby Isaac   ierr = DMRegisterAll();CHKERRQ(ierr);
33541c9cd337SJed Brown   ierr = PetscFunctionListFind(DMList,method,&r);CHKERRQ(ierr);
3355ce94432eSBarry Smith   if (!r) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown DM type: %s", method);
3356264ace61SBarry Smith 
3357264ace61SBarry Smith   if (dm->ops->destroy) {
3358264ace61SBarry Smith     ierr             = (*dm->ops->destroy)(dm);CHKERRQ(ierr);
33590298fd71SBarry Smith     dm->ops->destroy = NULL;
3360264ace61SBarry Smith   }
3361264ace61SBarry Smith   ierr = (*r)(dm);CHKERRQ(ierr);
3362264ace61SBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)dm,method);CHKERRQ(ierr);
3363264ace61SBarry Smith   PetscFunctionReturn(0);
3364264ace61SBarry Smith }
3365264ace61SBarry Smith 
3366264ace61SBarry Smith /*@C
3367264ace61SBarry Smith   DMGetType - Gets the DM type name (as a string) from the DM.
3368264ace61SBarry Smith 
3369264ace61SBarry Smith   Not Collective
3370264ace61SBarry Smith 
3371264ace61SBarry Smith   Input Parameter:
3372264ace61SBarry Smith . dm  - The DM
3373264ace61SBarry Smith 
3374264ace61SBarry Smith   Output Parameter:
3375264ace61SBarry Smith . type - The DM type name
3376264ace61SBarry Smith 
3377264ace61SBarry Smith   Level: intermediate
3378264ace61SBarry Smith 
3379264ace61SBarry Smith .keywords: DM, get, type, name
3380264ace61SBarry Smith .seealso: DMSetType(), DMCreate()
3381264ace61SBarry Smith @*/
338219fd82e9SBarry Smith PetscErrorCode  DMGetType(DM dm, DMType *type)
3383264ace61SBarry Smith {
3384264ace61SBarry Smith   PetscErrorCode ierr;
3385264ace61SBarry Smith 
3386264ace61SBarry Smith   PetscFunctionBegin;
3387264ace61SBarry Smith   PetscValidHeaderSpecific(dm, DM_CLASSID,1);
3388c959eef4SJed Brown   PetscValidPointer(type,2);
3389607a6623SBarry Smith   ierr = DMRegisterAll();CHKERRQ(ierr);
3390264ace61SBarry Smith   *type = ((PetscObject)dm)->type_name;
3391264ace61SBarry Smith   PetscFunctionReturn(0);
3392264ace61SBarry Smith }
3393264ace61SBarry Smith 
339467a56275SMatthew G Knepley /*@C
339567a56275SMatthew G Knepley   DMConvert - Converts a DM to another DM, either of the same or different type.
339667a56275SMatthew G Knepley 
339767a56275SMatthew G Knepley   Collective on DM
339867a56275SMatthew G Knepley 
339967a56275SMatthew G Knepley   Input Parameters:
340067a56275SMatthew G Knepley + dm - the DM
340167a56275SMatthew G Knepley - newtype - new DM type (use "same" for the same type)
340267a56275SMatthew G Knepley 
340367a56275SMatthew G Knepley   Output Parameter:
340467a56275SMatthew G Knepley . M - pointer to new DM
340567a56275SMatthew G Knepley 
340667a56275SMatthew G Knepley   Notes:
340767a56275SMatthew G Knepley   Cannot be used to convert a sequential DM to parallel or parallel to sequential,
340867a56275SMatthew G Knepley   the MPI communicator of the generated DM is always the same as the communicator
340967a56275SMatthew G Knepley   of the input DM.
341067a56275SMatthew G Knepley 
341167a56275SMatthew G Knepley   Level: intermediate
341267a56275SMatthew G Knepley 
341367a56275SMatthew G Knepley .seealso: DMCreate()
341467a56275SMatthew G Knepley @*/
341519fd82e9SBarry Smith PetscErrorCode DMConvert(DM dm, DMType newtype, DM *M)
341667a56275SMatthew G Knepley {
341767a56275SMatthew G Knepley   DM             B;
341867a56275SMatthew G Knepley   char           convname[256];
3419c067b6caSMatthew G. Knepley   PetscBool      sametype/*, issame */;
342067a56275SMatthew G Knepley   PetscErrorCode ierr;
342167a56275SMatthew G Knepley 
342267a56275SMatthew G Knepley   PetscFunctionBegin;
342367a56275SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
342467a56275SMatthew G Knepley   PetscValidType(dm,1);
342567a56275SMatthew G Knepley   PetscValidPointer(M,3);
3426251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject) dm, newtype, &sametype);CHKERRQ(ierr);
3427c067b6caSMatthew G. Knepley   /* ierr = PetscStrcmp(newtype, "same", &issame);CHKERRQ(ierr); */
3428c067b6caSMatthew G. Knepley   if (sametype) {
3429c067b6caSMatthew G. Knepley     *M   = dm;
3430c067b6caSMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) dm);CHKERRQ(ierr);
3431c067b6caSMatthew G. Knepley     PetscFunctionReturn(0);
3432c067b6caSMatthew G. Knepley   } else {
34330298fd71SBarry Smith     PetscErrorCode (*conv)(DM, DMType, DM*) = NULL;
343467a56275SMatthew G Knepley 
343567a56275SMatthew G Knepley     /*
343667a56275SMatthew G Knepley        Order of precedence:
343767a56275SMatthew G Knepley        1) See if a specialized converter is known to the current DM.
343867a56275SMatthew G Knepley        2) See if a specialized converter is known to the desired DM class.
343967a56275SMatthew G Knepley        3) See if a good general converter is registered for the desired class
344067a56275SMatthew G Knepley        4) See if a good general converter is known for the current matrix.
344167a56275SMatthew G Knepley        5) Use a really basic converter.
344267a56275SMatthew G Knepley     */
344367a56275SMatthew G Knepley 
344467a56275SMatthew G Knepley     /* 1) See if a specialized converter is known to the current DM and the desired class */
3445a126751eSBarry Smith     ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr);
3446a126751eSBarry Smith     ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr);
3447a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr);
3448a126751eSBarry Smith     ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr);
3449a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr);
34500005d66cSJed Brown     ierr = PetscObjectQueryFunction((PetscObject)dm,convname,&conv);CHKERRQ(ierr);
345167a56275SMatthew G Knepley     if (conv) goto foundconv;
345267a56275SMatthew G Knepley 
345367a56275SMatthew G Knepley     /* 2)  See if a specialized converter is known to the desired DM class. */
345482f516ccSBarry Smith     ierr = DMCreate(PetscObjectComm((PetscObject)dm), &B);CHKERRQ(ierr);
345567a56275SMatthew G Knepley     ierr = DMSetType(B, newtype);CHKERRQ(ierr);
3456a126751eSBarry Smith     ierr = PetscStrncpy(convname,"DMConvert_",sizeof(convname));CHKERRQ(ierr);
3457a126751eSBarry Smith     ierr = PetscStrlcat(convname,((PetscObject) dm)->type_name,sizeof(convname));CHKERRQ(ierr);
3458a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_",sizeof(convname));CHKERRQ(ierr);
3459a126751eSBarry Smith     ierr = PetscStrlcat(convname,newtype,sizeof(convname));CHKERRQ(ierr);
3460a126751eSBarry Smith     ierr = PetscStrlcat(convname,"_C",sizeof(convname));CHKERRQ(ierr);
34610005d66cSJed Brown     ierr = PetscObjectQueryFunction((PetscObject)B,convname,&conv);CHKERRQ(ierr);
346267a56275SMatthew G Knepley     if (conv) {
3463fcfd50ebSBarry Smith       ierr = DMDestroy(&B);CHKERRQ(ierr);
346467a56275SMatthew G Knepley       goto foundconv;
346567a56275SMatthew G Knepley     }
346667a56275SMatthew G Knepley 
346767a56275SMatthew G Knepley #if 0
346867a56275SMatthew G Knepley     /* 3) See if a good general converter is registered for the desired class */
346967a56275SMatthew G Knepley     conv = B->ops->convertfrom;
3470fcfd50ebSBarry Smith     ierr = DMDestroy(&B);CHKERRQ(ierr);
347167a56275SMatthew G Knepley     if (conv) goto foundconv;
347267a56275SMatthew G Knepley 
347367a56275SMatthew G Knepley     /* 4) See if a good general converter is known for the current matrix */
347467a56275SMatthew G Knepley     if (dm->ops->convert) {
347567a56275SMatthew G Knepley       conv = dm->ops->convert;
347667a56275SMatthew G Knepley     }
347767a56275SMatthew G Knepley     if (conv) goto foundconv;
347867a56275SMatthew G Knepley #endif
347967a56275SMatthew G Knepley 
348067a56275SMatthew G Knepley     /* 5) Use a really basic converter. */
348182f516ccSBarry Smith     SETERRQ2(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "No conversion possible between DM types %s and %s", ((PetscObject) dm)->type_name, newtype);
348267a56275SMatthew G Knepley 
348367a56275SMatthew G Knepley foundconv:
348467a56275SMatthew G Knepley     ierr = PetscLogEventBegin(DM_Convert,dm,0,0,0);CHKERRQ(ierr);
348567a56275SMatthew G Knepley     ierr = (*conv)(dm,newtype,M);CHKERRQ(ierr);
348612fa691eSMatthew G. Knepley     /* Things that are independent of DM type: We should consult DMClone() here */
348790b157c4SStefano Zampini     {
348890b157c4SStefano Zampini       PetscBool             isper;
348912fa691eSMatthew G. Knepley       const PetscReal      *maxCell, *L;
349012fa691eSMatthew G. Knepley       const DMBoundaryType *bd;
349190b157c4SStefano Zampini       ierr = DMGetPeriodicity(dm, &isper, &maxCell, &L, &bd);CHKERRQ(ierr);
349290b157c4SStefano Zampini       ierr = DMSetPeriodicity(*M, isper, maxCell,  L,  bd);CHKERRQ(ierr);
349312fa691eSMatthew G. Knepley     }
349467a56275SMatthew G Knepley     ierr = PetscLogEventEnd(DM_Convert,dm,0,0,0);CHKERRQ(ierr);
349567a56275SMatthew G Knepley   }
349667a56275SMatthew G Knepley   ierr = PetscObjectStateIncrease((PetscObject) *M);CHKERRQ(ierr);
349767a56275SMatthew G Knepley   PetscFunctionReturn(0);
349867a56275SMatthew G Knepley }
3499264ace61SBarry Smith 
3500264ace61SBarry Smith /*--------------------------------------------------------------------------------------------------------------------*/
3501264ace61SBarry Smith 
3502264ace61SBarry Smith /*@C
35031c84c290SBarry Smith   DMRegister -  Adds a new DM component implementation
35041c84c290SBarry Smith 
35051c84c290SBarry Smith   Not Collective
35061c84c290SBarry Smith 
35071c84c290SBarry Smith   Input Parameters:
35081c84c290SBarry Smith + name        - The name of a new user-defined creation routine
35091c84c290SBarry Smith - create_func - The creation routine itself
35101c84c290SBarry Smith 
35111c84c290SBarry Smith   Notes:
35121c84c290SBarry Smith   DMRegister() may be called multiple times to add several user-defined DMs
35131c84c290SBarry Smith 
35141c84c290SBarry Smith 
35151c84c290SBarry Smith   Sample usage:
35161c84c290SBarry Smith .vb
3517bdf89e91SBarry Smith     DMRegister("my_da", MyDMCreate);
35181c84c290SBarry Smith .ve
35191c84c290SBarry Smith 
35201c84c290SBarry Smith   Then, your DM type can be chosen with the procedural interface via
35211c84c290SBarry Smith .vb
35221c84c290SBarry Smith     DMCreate(MPI_Comm, DM *);
35231c84c290SBarry Smith     DMSetType(DM,"my_da");
35241c84c290SBarry Smith .ve
35251c84c290SBarry Smith    or at runtime via the option
35261c84c290SBarry Smith .vb
35271c84c290SBarry Smith     -da_type my_da
35281c84c290SBarry Smith .ve
3529264ace61SBarry Smith 
3530264ace61SBarry Smith   Level: advanced
35311c84c290SBarry Smith 
35321c84c290SBarry Smith .keywords: DM, register
3533bdf89e91SBarry Smith .seealso: DMRegisterAll(), DMRegisterDestroy()
35341c84c290SBarry Smith 
3535264ace61SBarry Smith @*/
3536bdf89e91SBarry Smith PetscErrorCode  DMRegister(const char sname[],PetscErrorCode (*function)(DM))
3537264ace61SBarry Smith {
3538264ace61SBarry Smith   PetscErrorCode ierr;
3539264ace61SBarry Smith 
3540264ace61SBarry Smith   PetscFunctionBegin;
35411d36bdfdSBarry Smith   ierr = DMInitializePackage();CHKERRQ(ierr);
3542a240a19fSJed Brown   ierr = PetscFunctionListAdd(&DMList,sname,function);CHKERRQ(ierr);
3543264ace61SBarry Smith   PetscFunctionReturn(0);
3544264ace61SBarry Smith }
3545264ace61SBarry Smith 
3546b859378eSBarry Smith /*@C
354755849f57SBarry Smith   DMLoad - Loads a DM that has been stored in binary  with DMView().
3548b859378eSBarry Smith 
3549b859378eSBarry Smith   Collective on PetscViewer
3550b859378eSBarry Smith 
3551b859378eSBarry Smith   Input Parameters:
3552b859378eSBarry Smith + newdm - the newly loaded DM, this needs to have been created with DMCreate() or
3553b859378eSBarry Smith            some related function before a call to DMLoad().
3554b859378eSBarry Smith - viewer - binary file viewer, obtained from PetscViewerBinaryOpen() or
3555b859378eSBarry Smith            HDF5 file viewer, obtained from PetscViewerHDF5Open()
3556b859378eSBarry Smith 
3557b859378eSBarry Smith    Level: intermediate
3558b859378eSBarry Smith 
3559b859378eSBarry Smith   Notes:
356055849f57SBarry Smith    The type is determined by the data in the file, any type set into the DM before this call is ignored.
3561b859378eSBarry Smith 
3562b859378eSBarry Smith   Notes for advanced users:
3563b859378eSBarry Smith   Most users should not need to know the details of the binary storage
3564b859378eSBarry Smith   format, since DMLoad() and DMView() completely hide these details.
3565b859378eSBarry Smith   But for anyone who's interested, the standard binary matrix storage
3566b859378eSBarry Smith   format is
3567b859378eSBarry Smith .vb
3568b859378eSBarry Smith      has not yet been determined
3569b859378eSBarry Smith .ve
3570b859378eSBarry Smith 
3571b859378eSBarry Smith .seealso: PetscViewerBinaryOpen(), DMView(), MatLoad(), VecLoad()
3572b859378eSBarry Smith @*/
3573b859378eSBarry Smith PetscErrorCode  DMLoad(DM newdm, PetscViewer viewer)
3574b859378eSBarry Smith {
35759331c7a4SMatthew G. Knepley   PetscBool      isbinary, ishdf5;
3576b859378eSBarry Smith   PetscErrorCode ierr;
3577b859378eSBarry Smith 
3578b859378eSBarry Smith   PetscFunctionBegin;
3579b859378eSBarry Smith   PetscValidHeaderSpecific(newdm,DM_CLASSID,1);
3580b859378eSBarry Smith   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
358132c0f0efSBarry Smith   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr);
35829331c7a4SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERHDF5,&ishdf5);CHKERRQ(ierr);
35839331c7a4SMatthew G. Knepley   if (isbinary) {
35849331c7a4SMatthew G. Knepley     PetscInt classid;
35859331c7a4SMatthew G. Knepley     char     type[256];
3586b859378eSBarry Smith 
3587060da220SMatthew G. Knepley     ierr = PetscViewerBinaryRead(viewer,&classid,1,NULL,PETSC_INT);CHKERRQ(ierr);
35889200755eSBarry Smith     if (classid != DM_FILE_CLASSID) SETERRQ1(PetscObjectComm((PetscObject)newdm),PETSC_ERR_ARG_WRONG,"Not DM next in file, classid found %d",(int)classid);
3589060da220SMatthew G. Knepley     ierr = PetscViewerBinaryRead(viewer,type,256,NULL,PETSC_CHAR);CHKERRQ(ierr);
359032c0f0efSBarry Smith     ierr = DMSetType(newdm, type);CHKERRQ(ierr);
35919331c7a4SMatthew G. Knepley     if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);}
35929331c7a4SMatthew G. Knepley   } else if (ishdf5) {
35939331c7a4SMatthew G. Knepley     if (newdm->ops->load) {ierr = (*newdm->ops->load)(newdm,viewer);CHKERRQ(ierr);}
35949331c7a4SMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen() or PetscViewerHDF5Open()");
3595b859378eSBarry Smith   PetscFunctionReturn(0);
3596b859378eSBarry Smith }
3597b859378eSBarry Smith 
35987da65231SMatthew G Knepley /******************************** FEM Support **********************************/
35997da65231SMatthew G Knepley 
3600a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellVector(PetscInt c, const char name[], PetscInt len, const PetscScalar x[])
3601a6dfd86eSKarl Rupp {
36021d47ebbbSSatish Balay   PetscInt       f;
36031b30c384SMatthew G Knepley   PetscErrorCode ierr;
36041b30c384SMatthew G Knepley 
36057da65231SMatthew G Knepley   PetscFunctionBegin;
360674778d6cSJed Brown   ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr);
36071d47ebbbSSatish Balay   for (f = 0; f < len; ++f) {
360857622a8eSBarry Smith     ierr = PetscPrintf(PETSC_COMM_SELF, "  | %g |\n", (double)PetscRealPart(x[f]));CHKERRQ(ierr);
36097da65231SMatthew G Knepley   }
36107da65231SMatthew G Knepley   PetscFunctionReturn(0);
36117da65231SMatthew G Knepley }
36127da65231SMatthew G Knepley 
3613a6dfd86eSKarl Rupp PetscErrorCode DMPrintCellMatrix(PetscInt c, const char name[], PetscInt rows, PetscInt cols, const PetscScalar A[])
3614a6dfd86eSKarl Rupp {
36151b30c384SMatthew G Knepley   PetscInt       f, g;
36167da65231SMatthew G Knepley   PetscErrorCode ierr;
36177da65231SMatthew G Knepley 
36187da65231SMatthew G Knepley   PetscFunctionBegin;
361974778d6cSJed Brown   ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D Element %s\n", c, name);CHKERRQ(ierr);
36201d47ebbbSSatish Balay   for (f = 0; f < rows; ++f) {
362174778d6cSJed Brown     ierr = PetscPrintf(PETSC_COMM_SELF, "  |");CHKERRQ(ierr);
36221d47ebbbSSatish Balay     for (g = 0; g < cols; ++g) {
3623e3556bceSMatthew G. Knepley       ierr = PetscPrintf(PETSC_COMM_SELF, " % 9.5g", PetscRealPart(A[f*cols+g]));CHKERRQ(ierr);
36247da65231SMatthew G Knepley     }
362574778d6cSJed Brown     ierr = PetscPrintf(PETSC_COMM_SELF, " |\n");CHKERRQ(ierr);
36267da65231SMatthew G Knepley   }
36277da65231SMatthew G Knepley   PetscFunctionReturn(0);
36287da65231SMatthew G Knepley }
3629e7c4fc90SDmitry Karpeev 
36306113b454SMatthew G. Knepley PetscErrorCode DMPrintLocalVec(DM dm, const char name[], PetscReal tol, Vec X)
3631e759306cSMatthew G. Knepley {
36320c5b8624SToby Isaac   PetscInt          localSize, bs;
36330c5b8624SToby Isaac   PetscMPIInt       size;
36340c5b8624SToby Isaac   Vec               x, xglob;
36350c5b8624SToby Isaac   const PetscScalar *xarray;
3636e759306cSMatthew G. Knepley   PetscErrorCode    ierr;
3637e759306cSMatthew G. Knepley 
3638e759306cSMatthew G. Knepley   PetscFunctionBegin;
36399852e123SBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm),&size);CHKERRQ(ierr);
3640e759306cSMatthew G. Knepley   ierr = VecDuplicate(X, &x);CHKERRQ(ierr);
3641e759306cSMatthew G. Knepley   ierr = VecCopy(X, x);CHKERRQ(ierr);
36426113b454SMatthew G. Knepley   ierr = VecChop(x, tol);CHKERRQ(ierr);
36430c5b8624SToby Isaac   ierr = PetscPrintf(PetscObjectComm((PetscObject) dm),"%s:\n",name);CHKERRQ(ierr);
36440c5b8624SToby Isaac   if (size > 1) {
36450c5b8624SToby Isaac     ierr = VecGetLocalSize(x,&localSize);CHKERRQ(ierr);
36460c5b8624SToby Isaac     ierr = VecGetArrayRead(x,&xarray);CHKERRQ(ierr);
36470c5b8624SToby Isaac     ierr = VecGetBlockSize(x,&bs);CHKERRQ(ierr);
36480c5b8624SToby Isaac     ierr = VecCreateMPIWithArray(PetscObjectComm((PetscObject) dm),bs,localSize,PETSC_DETERMINE,xarray,&xglob);CHKERRQ(ierr);
36490c5b8624SToby Isaac   } else {
36500c5b8624SToby Isaac     xglob = x;
36510c5b8624SToby Isaac   }
36520c5b8624SToby Isaac   ierr = VecView(xglob,PETSC_VIEWER_STDOUT_(PetscObjectComm((PetscObject) dm)));CHKERRQ(ierr);
36530c5b8624SToby Isaac   if (size > 1) {
36540c5b8624SToby Isaac     ierr = VecDestroy(&xglob);CHKERRQ(ierr);
36550c5b8624SToby Isaac     ierr = VecRestoreArrayRead(x,&xarray);CHKERRQ(ierr);
36560c5b8624SToby Isaac   }
3657e759306cSMatthew G. Knepley   ierr = VecDestroy(&x);CHKERRQ(ierr);
3658e759306cSMatthew G. Knepley   PetscFunctionReturn(0);
3659e759306cSMatthew G. Knepley }
3660e759306cSMatthew G. Knepley 
366188ed4aceSMatthew G Knepley /*@
3662e87a4003SBarry Smith   DMGetSection - Get the PetscSection encoding the local data layout for the DM.
366388ed4aceSMatthew G Knepley 
366488ed4aceSMatthew G Knepley   Input Parameter:
366588ed4aceSMatthew G Knepley . dm - The DM
366688ed4aceSMatthew G Knepley 
366788ed4aceSMatthew G Knepley   Output Parameter:
366888ed4aceSMatthew G Knepley . section - The PetscSection
366988ed4aceSMatthew G Knepley 
3670e5893cccSMatthew G. Knepley   Options Database Keys:
3671e5893cccSMatthew G. Knepley . -dm_petscsection_view - View the Section created by the DM
3672e5893cccSMatthew G. Knepley 
367388ed4aceSMatthew G Knepley   Level: intermediate
367488ed4aceSMatthew G Knepley 
367588ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSection.
367688ed4aceSMatthew G Knepley 
3677e87a4003SBarry Smith .seealso: DMSetSection(), DMGetGlobalSection()
367888ed4aceSMatthew G Knepley @*/
3679e87a4003SBarry Smith PetscErrorCode DMGetSection(DM dm, PetscSection *section)
36800adebc6cSBarry Smith {
3681fd59a867SMatthew G. Knepley   PetscErrorCode ierr;
3682fd59a867SMatthew G. Knepley 
368388ed4aceSMatthew G Knepley   PetscFunctionBegin;
368488ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
368588ed4aceSMatthew G Knepley   PetscValidPointer(section, 2);
36862f0f8703SMatthew G. Knepley   if (!dm->defaultSection && dm->ops->createdefaultsection) {
36872f0f8703SMatthew G. Knepley     ierr = (*dm->ops->createdefaultsection)(dm);CHKERRQ(ierr);
3688ae71db08SMatthew G. Knepley     if (dm->defaultSection) {ierr = PetscObjectViewFromOptions((PetscObject) dm->defaultSection, NULL, "-dm_petscsection_view");CHKERRQ(ierr);}
36892f0f8703SMatthew G. Knepley   }
369088ed4aceSMatthew G Knepley   *section = dm->defaultSection;
369188ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
369288ed4aceSMatthew G Knepley }
369388ed4aceSMatthew G Knepley 
369488ed4aceSMatthew G Knepley /*@
3695e87a4003SBarry Smith   DMSetSection - Set the PetscSection encoding the local data layout for the DM.
369688ed4aceSMatthew G Knepley 
369788ed4aceSMatthew G Knepley   Input Parameters:
369888ed4aceSMatthew G Knepley + dm - The DM
369988ed4aceSMatthew G Knepley - section - The PetscSection
370088ed4aceSMatthew G Knepley 
370188ed4aceSMatthew G Knepley   Level: intermediate
370288ed4aceSMatthew G Knepley 
370388ed4aceSMatthew G Knepley   Note: Any existing Section will be destroyed
370488ed4aceSMatthew G Knepley 
3705e87a4003SBarry Smith .seealso: DMSetSection(), DMGetGlobalSection()
370688ed4aceSMatthew G Knepley @*/
3707e87a4003SBarry Smith PetscErrorCode DMSetSection(DM dm, PetscSection section)
37080adebc6cSBarry Smith {
3709c473ab19SMatthew G. Knepley   PetscInt       numFields = 0;
3710af122d2aSMatthew G Knepley   PetscInt       f;
371188ed4aceSMatthew G Knepley   PetscErrorCode ierr;
371288ed4aceSMatthew G Knepley 
371388ed4aceSMatthew G Knepley   PetscFunctionBegin;
371488ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3715c473ab19SMatthew G. Knepley   if (section) {
37161d799100SJed Brown     PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
37171d799100SJed Brown     ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
3718c473ab19SMatthew G. Knepley   }
371988ed4aceSMatthew G Knepley   ierr = PetscSectionDestroy(&dm->defaultSection);CHKERRQ(ierr);
372088ed4aceSMatthew G Knepley   dm->defaultSection = section;
3721c473ab19SMatthew G. Knepley   if (section) {ierr = PetscSectionGetNumFields(dm->defaultSection, &numFields);CHKERRQ(ierr);}
3722af122d2aSMatthew G Knepley   if (numFields) {
3723af122d2aSMatthew G Knepley     ierr = DMSetNumFields(dm, numFields);CHKERRQ(ierr);
3724af122d2aSMatthew G Knepley     for (f = 0; f < numFields; ++f) {
37250f21e855SMatthew G. Knepley       PetscObject disc;
3726af122d2aSMatthew G Knepley       const char *name;
3727af122d2aSMatthew G Knepley 
3728af122d2aSMatthew G Knepley       ierr = PetscSectionGetFieldName(dm->defaultSection, f, &name);CHKERRQ(ierr);
37290f21e855SMatthew G. Knepley       ierr = DMGetField(dm, f, &disc);CHKERRQ(ierr);
37300f21e855SMatthew G. Knepley       ierr = PetscObjectSetName(disc, name);CHKERRQ(ierr);
3731af122d2aSMatthew G Knepley     }
3732af122d2aSMatthew G Knepley   }
3733e87a4003SBarry Smith   /* The global section will be rebuilt in the next call to DMGetGlobalSection(). */
37341d799100SJed Brown   ierr = PetscSectionDestroy(&dm->defaultGlobalSection);CHKERRQ(ierr);
373588ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
373688ed4aceSMatthew G Knepley }
373788ed4aceSMatthew G Knepley 
37389435951eSToby Isaac /*@
37399435951eSToby Isaac   DMGetDefaultConstraints - Get the PetscSection and Mat the specify the local constraint interpolation. See DMSetDefaultConstraints() for a description of the purpose of constraint interpolation.
37409435951eSToby Isaac 
3741e228b242SToby Isaac   not collective
3742e228b242SToby Isaac 
37439435951eSToby Isaac   Input Parameter:
37449435951eSToby Isaac . dm - The DM
37459435951eSToby Isaac 
37469435951eSToby Isaac   Output Parameter:
37479435951eSToby 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.
37489435951eSToby 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.
37499435951eSToby Isaac 
37509435951eSToby Isaac   Level: advanced
37519435951eSToby Isaac 
37529435951eSToby Isaac   Note: This gets borrowed references, so the user should not destroy the PetscSection or the Mat.
37539435951eSToby Isaac 
37549435951eSToby Isaac .seealso: DMSetDefaultConstraints()
37559435951eSToby Isaac @*/
37569435951eSToby Isaac PetscErrorCode DMGetDefaultConstraints(DM dm, PetscSection *section, Mat *mat)
37579435951eSToby Isaac {
37589435951eSToby Isaac   PetscErrorCode ierr;
37599435951eSToby Isaac 
37609435951eSToby Isaac   PetscFunctionBegin;
37619435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
37629435951eSToby Isaac   if (!dm->defaultConstraintSection && !dm->defaultConstraintMat && dm->ops->createdefaultconstraints) {ierr = (*dm->ops->createdefaultconstraints)(dm);CHKERRQ(ierr);}
376345a75d81SToby Isaac   if (section) {*section = dm->defaultConstraintSection;}
376445a75d81SToby Isaac   if (mat) {*mat = dm->defaultConstraintMat;}
37659435951eSToby Isaac   PetscFunctionReturn(0);
37669435951eSToby Isaac }
37679435951eSToby Isaac 
37689435951eSToby Isaac /*@
37699435951eSToby Isaac   DMSetDefaultConstraints - Set the PetscSection and Mat the specify the local constraint interpolation.
37709435951eSToby Isaac 
37719435951eSToby 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().
37729435951eSToby Isaac 
37739435951eSToby 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.
37749435951eSToby Isaac 
3775e228b242SToby Isaac   collective on dm
3776e228b242SToby Isaac 
37779435951eSToby Isaac   Input Parameters:
37789435951eSToby Isaac + dm - The DM
3779e228b242SToby 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).
3780e228b242SToby 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).
37819435951eSToby Isaac 
37829435951eSToby Isaac   Level: advanced
37839435951eSToby Isaac 
37849435951eSToby Isaac   Note: This increments the references of the PetscSection and the Mat, so they user can destroy them
37859435951eSToby Isaac 
37869435951eSToby Isaac .seealso: DMGetDefaultConstraints()
37879435951eSToby Isaac @*/
37889435951eSToby Isaac PetscErrorCode DMSetDefaultConstraints(DM dm, PetscSection section, Mat mat)
37899435951eSToby Isaac {
3790e228b242SToby Isaac   PetscMPIInt result;
37919435951eSToby Isaac   PetscErrorCode ierr;
37929435951eSToby Isaac 
37939435951eSToby Isaac   PetscFunctionBegin;
37949435951eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3795e228b242SToby Isaac   if (section) {
3796e228b242SToby Isaac     PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
3797e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)section),&result);CHKERRQ(ierr);
3798f60917d2SBarry Smith     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint section must have local communicator");
3799e228b242SToby Isaac   }
3800e228b242SToby Isaac   if (mat) {
3801e228b242SToby Isaac     PetscValidHeaderSpecific(mat,MAT_CLASSID,3);
3802e228b242SToby Isaac     ierr = MPI_Comm_compare(PETSC_COMM_SELF,PetscObjectComm((PetscObject)mat),&result);CHKERRQ(ierr);
3803f60917d2SBarry Smith     if (result != MPI_CONGRUENT && result != MPI_IDENT) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMECOMM,"constraint matrix must have local communicator");
3804e228b242SToby Isaac   }
38059435951eSToby Isaac   ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
38069435951eSToby Isaac   ierr = PetscSectionDestroy(&dm->defaultConstraintSection);CHKERRQ(ierr);
38079435951eSToby Isaac   dm->defaultConstraintSection = section;
38089435951eSToby Isaac   ierr = PetscObjectReference((PetscObject)mat);CHKERRQ(ierr);
38099435951eSToby Isaac   ierr = MatDestroy(&dm->defaultConstraintMat);CHKERRQ(ierr);
38109435951eSToby Isaac   dm->defaultConstraintMat = mat;
38119435951eSToby Isaac   PetscFunctionReturn(0);
38129435951eSToby Isaac }
38139435951eSToby Isaac 
3814497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
3815507e4973SMatthew G. Knepley /*
3816507e4973SMatthew G. Knepley   DMDefaultSectionCheckConsistency - Check the consistentcy of the global and local sections.
3817507e4973SMatthew G. Knepley 
3818507e4973SMatthew G. Knepley   Input Parameters:
3819507e4973SMatthew G. Knepley + dm - The DM
3820507e4973SMatthew G. Knepley . localSection - PetscSection describing the local data layout
3821507e4973SMatthew G. Knepley - globalSection - PetscSection describing the global data layout
3822507e4973SMatthew G. Knepley 
3823507e4973SMatthew G. Knepley   Level: intermediate
3824507e4973SMatthew G. Knepley 
3825507e4973SMatthew G. Knepley .seealso: DMGetDefaultSF(), DMSetDefaultSF()
3826507e4973SMatthew G. Knepley */
3827f741bcd2SMatthew G. Knepley static PetscErrorCode DMDefaultSectionCheckConsistency_Internal(DM dm, PetscSection localSection, PetscSection globalSection)
3828507e4973SMatthew G. Knepley {
3829507e4973SMatthew G. Knepley   MPI_Comm        comm;
3830507e4973SMatthew G. Knepley   PetscLayout     layout;
3831507e4973SMatthew G. Knepley   const PetscInt *ranges;
3832507e4973SMatthew G. Knepley   PetscInt        pStart, pEnd, p, nroots;
3833507e4973SMatthew G. Knepley   PetscMPIInt     size, rank;
3834507e4973SMatthew G. Knepley   PetscBool       valid = PETSC_TRUE, gvalid;
3835507e4973SMatthew G. Knepley   PetscErrorCode  ierr;
3836507e4973SMatthew G. Knepley 
3837507e4973SMatthew G. Knepley   PetscFunctionBegin;
3838507e4973SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
3839507e4973SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3840507e4973SMatthew G. Knepley   ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
3841507e4973SMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
3842507e4973SMatthew G. Knepley   ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr);
3843507e4973SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr);
3844507e4973SMatthew G. Knepley   ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr);
3845507e4973SMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr);
3846507e4973SMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr);
3847507e4973SMatthew G. Knepley   ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr);
3848507e4973SMatthew G. Knepley   ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr);
3849507e4973SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
3850f741bcd2SMatthew G. Knepley     PetscInt       dof, cdof, off, gdof, gcdof, goff, gsize, d;
3851507e4973SMatthew G. Knepley 
3852507e4973SMatthew G. Knepley     ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr);
3853507e4973SMatthew G. Knepley     ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr);
3854507e4973SMatthew G. Knepley     ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr);
3855507e4973SMatthew G. Knepley     ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
3856507e4973SMatthew G. Knepley     ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
3857507e4973SMatthew G. Knepley     ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr);
3858507e4973SMatthew G. Knepley     if (!gdof) continue; /* Censored point */
3859507e4973SMatthew 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;}
3860507e4973SMatthew 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;}
3861507e4973SMatthew G. Knepley     if (gdof < 0) {
3862507e4973SMatthew G. Knepley       gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
3863507e4973SMatthew G. Knepley       for (d = 0; d < gsize; ++d) {
3864507e4973SMatthew G. Knepley         PetscInt offset = -(goff+1) + d, r;
3865507e4973SMatthew G. Knepley 
3866507e4973SMatthew G. Knepley         ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr);
3867507e4973SMatthew G. Knepley         if (r < 0) r = -(r+2);
3868507e4973SMatthew 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;}
3869507e4973SMatthew G. Knepley       }
3870507e4973SMatthew G. Knepley     }
3871507e4973SMatthew G. Knepley   }
3872507e4973SMatthew G. Knepley   ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
3873507e4973SMatthew G. Knepley   ierr = PetscSynchronizedFlush(comm, NULL);CHKERRQ(ierr);
3874b2566f29SBarry Smith   ierr = MPIU_Allreduce(&valid, &gvalid, 1, MPIU_BOOL, MPI_LAND, comm);CHKERRQ(ierr);
3875507e4973SMatthew G. Knepley   if (!gvalid) {
3876507e4973SMatthew G. Knepley     ierr = DMView(dm, NULL);CHKERRQ(ierr);
3877507e4973SMatthew G. Knepley     SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Inconsistent local and global sections");
3878507e4973SMatthew G. Knepley   }
3879507e4973SMatthew G. Knepley   PetscFunctionReturn(0);
3880507e4973SMatthew G. Knepley }
3881f741bcd2SMatthew G. Knepley #endif
3882507e4973SMatthew G. Knepley 
388388ed4aceSMatthew G Knepley /*@
3884e87a4003SBarry Smith   DMGetGlobalSection - Get the PetscSection encoding the global data layout for the DM.
388588ed4aceSMatthew G Knepley 
38868b1ab98fSJed Brown   Collective on DM
38878b1ab98fSJed Brown 
388888ed4aceSMatthew G Knepley   Input Parameter:
388988ed4aceSMatthew G Knepley . dm - The DM
389088ed4aceSMatthew G Knepley 
389188ed4aceSMatthew G Knepley   Output Parameter:
389288ed4aceSMatthew G Knepley . section - The PetscSection
389388ed4aceSMatthew G Knepley 
389488ed4aceSMatthew G Knepley   Level: intermediate
389588ed4aceSMatthew G Knepley 
389688ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSection.
389788ed4aceSMatthew G Knepley 
3898e87a4003SBarry Smith .seealso: DMSetSection(), DMGetSection()
389988ed4aceSMatthew G Knepley @*/
3900e87a4003SBarry Smith PetscErrorCode DMGetGlobalSection(DM dm, PetscSection *section)
39010adebc6cSBarry Smith {
390288ed4aceSMatthew G Knepley   PetscErrorCode ierr;
390388ed4aceSMatthew G Knepley 
390488ed4aceSMatthew G Knepley   PetscFunctionBegin;
390588ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
390688ed4aceSMatthew G Knepley   PetscValidPointer(section, 2);
390788ed4aceSMatthew G Knepley   if (!dm->defaultGlobalSection) {
3908fd59a867SMatthew G. Knepley     PetscSection s;
3909fd59a867SMatthew G. Knepley 
3910e87a4003SBarry Smith     ierr = DMGetSection(dm, &s);CHKERRQ(ierr);
3911fd59a867SMatthew 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");
3912fd59a867SMatthew G. Knepley     if (!dm->sf) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONGSTATE, "DM must have a default PetscSF in order to create a global PetscSection");
391315b58121SMatthew G. Knepley     ierr = PetscSectionCreateGlobalSection(s, dm->sf, PETSC_FALSE, PETSC_FALSE, &dm->defaultGlobalSection);CHKERRQ(ierr);
3914cf06b437SMatthew G. Knepley     ierr = PetscLayoutDestroy(&dm->map);CHKERRQ(ierr);
3915ce94432eSBarry Smith     ierr = PetscSectionGetValueLayout(PetscObjectComm((PetscObject)dm), dm->defaultGlobalSection, &dm->map);CHKERRQ(ierr);
3916685405a1SBarry Smith     ierr = PetscSectionViewFromOptions(dm->defaultGlobalSection, NULL, "-global_section_view");CHKERRQ(ierr);
391788ed4aceSMatthew G Knepley   }
391888ed4aceSMatthew G Knepley   *section = dm->defaultGlobalSection;
391988ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
392088ed4aceSMatthew G Knepley }
392188ed4aceSMatthew G Knepley 
3922b21d0597SMatthew G Knepley /*@
3923e87a4003SBarry Smith   DMSetGlobalSection - Set the PetscSection encoding the global data layout for the DM.
3924b21d0597SMatthew G Knepley 
3925b21d0597SMatthew G Knepley   Input Parameters:
3926b21d0597SMatthew G Knepley + dm - The DM
39275080bbdbSMatthew G Knepley - section - The PetscSection, or NULL
3928b21d0597SMatthew G Knepley 
3929b21d0597SMatthew G Knepley   Level: intermediate
3930b21d0597SMatthew G Knepley 
3931b21d0597SMatthew G Knepley   Note: Any existing Section will be destroyed
3932b21d0597SMatthew G Knepley 
3933e87a4003SBarry Smith .seealso: DMGetGlobalSection(), DMSetSection()
3934b21d0597SMatthew G Knepley @*/
3935e87a4003SBarry Smith PetscErrorCode DMSetGlobalSection(DM dm, PetscSection section)
39360adebc6cSBarry Smith {
3937b21d0597SMatthew G Knepley   PetscErrorCode ierr;
3938b21d0597SMatthew G Knepley 
3939b21d0597SMatthew G Knepley   PetscFunctionBegin;
3940b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
39415080bbdbSMatthew G Knepley   if (section) PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,2);
39421d799100SJed Brown   ierr = PetscObjectReference((PetscObject)section);CHKERRQ(ierr);
3943b21d0597SMatthew G Knepley   ierr = PetscSectionDestroy(&dm->defaultGlobalSection);CHKERRQ(ierr);
3944b21d0597SMatthew G Knepley   dm->defaultGlobalSection = section;
3945497880caSRichard Tran Mills #if defined(PETSC_USE_DEBUG)
3946f741bcd2SMatthew G. Knepley   if (section) {ierr = DMDefaultSectionCheckConsistency_Internal(dm, dm->defaultSection, section);CHKERRQ(ierr);}
3947507e4973SMatthew G. Knepley #endif
3948b21d0597SMatthew G Knepley   PetscFunctionReturn(0);
3949b21d0597SMatthew G Knepley }
3950b21d0597SMatthew G Knepley 
395188ed4aceSMatthew G Knepley /*@
395288ed4aceSMatthew G Knepley   DMGetDefaultSF - Get the PetscSF encoding the parallel dof overlap for the DM. If it has not been set,
395388ed4aceSMatthew G Knepley   it is created from the default PetscSection layouts in the DM.
395488ed4aceSMatthew G Knepley 
395588ed4aceSMatthew G Knepley   Input Parameter:
395688ed4aceSMatthew G Knepley . dm - The DM
395788ed4aceSMatthew G Knepley 
395888ed4aceSMatthew G Knepley   Output Parameter:
395988ed4aceSMatthew G Knepley . sf - The PetscSF
396088ed4aceSMatthew G Knepley 
396188ed4aceSMatthew G Knepley   Level: intermediate
396288ed4aceSMatthew G Knepley 
396388ed4aceSMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSF.
396488ed4aceSMatthew G Knepley 
396588ed4aceSMatthew G Knepley .seealso: DMSetDefaultSF(), DMCreateDefaultSF()
396688ed4aceSMatthew G Knepley @*/
39670adebc6cSBarry Smith PetscErrorCode DMGetDefaultSF(DM dm, PetscSF *sf)
39680adebc6cSBarry Smith {
396988ed4aceSMatthew G Knepley   PetscInt       nroots;
397088ed4aceSMatthew G Knepley   PetscErrorCode ierr;
397188ed4aceSMatthew G Knepley 
397288ed4aceSMatthew G Knepley   PetscFunctionBegin;
397388ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
397488ed4aceSMatthew G Knepley   PetscValidPointer(sf, 2);
39750298fd71SBarry Smith   ierr = PetscSFGetGraph(dm->defaultSF, &nroots, NULL, NULL, NULL);CHKERRQ(ierr);
397688ed4aceSMatthew G Knepley   if (nroots < 0) {
397788ed4aceSMatthew G Knepley     PetscSection section, gSection;
397888ed4aceSMatthew G Knepley 
3979e87a4003SBarry Smith     ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
398031ea6d37SMatthew G Knepley     if (section) {
3981e87a4003SBarry Smith       ierr = DMGetGlobalSection(dm, &gSection);CHKERRQ(ierr);
398288ed4aceSMatthew G Knepley       ierr = DMCreateDefaultSF(dm, section, gSection);CHKERRQ(ierr);
398331ea6d37SMatthew G Knepley     } else {
39840298fd71SBarry Smith       *sf = NULL;
398531ea6d37SMatthew G Knepley       PetscFunctionReturn(0);
398631ea6d37SMatthew G Knepley     }
398788ed4aceSMatthew G Knepley   }
398888ed4aceSMatthew G Knepley   *sf = dm->defaultSF;
398988ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
399088ed4aceSMatthew G Knepley }
399188ed4aceSMatthew G Knepley 
399288ed4aceSMatthew G Knepley /*@
399388ed4aceSMatthew G Knepley   DMSetDefaultSF - Set the PetscSF encoding the parallel dof overlap for the DM
399488ed4aceSMatthew G Knepley 
399588ed4aceSMatthew G Knepley   Input Parameters:
399688ed4aceSMatthew G Knepley + dm - The DM
399788ed4aceSMatthew G Knepley - sf - The PetscSF
399888ed4aceSMatthew G Knepley 
399988ed4aceSMatthew G Knepley   Level: intermediate
400088ed4aceSMatthew G Knepley 
400188ed4aceSMatthew G Knepley   Note: Any previous SF is destroyed
400288ed4aceSMatthew G Knepley 
400388ed4aceSMatthew G Knepley .seealso: DMGetDefaultSF(), DMCreateDefaultSF()
400488ed4aceSMatthew G Knepley @*/
40050adebc6cSBarry Smith PetscErrorCode DMSetDefaultSF(DM dm, PetscSF sf)
40060adebc6cSBarry Smith {
400788ed4aceSMatthew G Knepley   PetscErrorCode ierr;
400888ed4aceSMatthew G Knepley 
400988ed4aceSMatthew G Knepley   PetscFunctionBegin;
401088ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
401188ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 2);
401288ed4aceSMatthew G Knepley   ierr          = PetscSFDestroy(&dm->defaultSF);CHKERRQ(ierr);
401388ed4aceSMatthew G Knepley   dm->defaultSF = sf;
401488ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
401588ed4aceSMatthew G Knepley }
401688ed4aceSMatthew G Knepley 
401788ed4aceSMatthew G Knepley /*@C
401888ed4aceSMatthew G Knepley   DMCreateDefaultSF - Create the PetscSF encoding the parallel dof overlap for the DM based upon the PetscSections
401988ed4aceSMatthew G Knepley   describing the data layout.
402088ed4aceSMatthew G Knepley 
402188ed4aceSMatthew G Knepley   Input Parameters:
402288ed4aceSMatthew G Knepley + dm - The DM
402388ed4aceSMatthew G Knepley . localSection - PetscSection describing the local data layout
402488ed4aceSMatthew G Knepley - globalSection - PetscSection describing the global data layout
402588ed4aceSMatthew G Knepley 
402688ed4aceSMatthew G Knepley   Level: intermediate
402788ed4aceSMatthew G Knepley 
402888ed4aceSMatthew G Knepley .seealso: DMGetDefaultSF(), DMSetDefaultSF()
402988ed4aceSMatthew G Knepley @*/
403088ed4aceSMatthew G Knepley PetscErrorCode DMCreateDefaultSF(DM dm, PetscSection localSection, PetscSection globalSection)
403188ed4aceSMatthew G Knepley {
403282f516ccSBarry Smith   MPI_Comm       comm;
403388ed4aceSMatthew G Knepley   PetscLayout    layout;
403488ed4aceSMatthew G Knepley   const PetscInt *ranges;
403588ed4aceSMatthew G Knepley   PetscInt       *local;
403688ed4aceSMatthew G Knepley   PetscSFNode    *remote;
4037ecd73843SMatthew G. Knepley   PetscInt       pStart, pEnd, p, nroots, nleaves = 0, l;
403888ed4aceSMatthew G Knepley   PetscMPIInt    size, rank;
403988ed4aceSMatthew G Knepley   PetscErrorCode ierr;
404088ed4aceSMatthew G Knepley 
404188ed4aceSMatthew G Knepley   PetscFunctionBegin;
404282f516ccSBarry Smith   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
404388ed4aceSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
404488ed4aceSMatthew G Knepley   ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
404588ed4aceSMatthew G Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
404688ed4aceSMatthew G Knepley   ierr = PetscSectionGetChart(globalSection, &pStart, &pEnd);CHKERRQ(ierr);
404788ed4aceSMatthew G Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &nroots);CHKERRQ(ierr);
404888ed4aceSMatthew G Knepley   ierr = PetscLayoutCreate(comm, &layout);CHKERRQ(ierr);
404988ed4aceSMatthew G Knepley   ierr = PetscLayoutSetBlockSize(layout, 1);CHKERRQ(ierr);
405088ed4aceSMatthew G Knepley   ierr = PetscLayoutSetLocalSize(layout, nroots);CHKERRQ(ierr);
405188ed4aceSMatthew G Knepley   ierr = PetscLayoutSetUp(layout);CHKERRQ(ierr);
405288ed4aceSMatthew G Knepley   ierr = PetscLayoutGetRanges(layout, &ranges);CHKERRQ(ierr);
4053ecd73843SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
40546636e97aSMatthew G Knepley     PetscInt gdof, gcdof;
405588ed4aceSMatthew G Knepley 
40566636e97aSMatthew G Knepley     ierr     = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
40576636e97aSMatthew G Knepley     ierr     = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
4058235fbf56SMatthew 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));
40596636e97aSMatthew G Knepley     nleaves += gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
406088ed4aceSMatthew G Knepley   }
4061785e854fSJed Brown   ierr = PetscMalloc1(nleaves, &local);CHKERRQ(ierr);
4062785e854fSJed Brown   ierr = PetscMalloc1(nleaves, &remote);CHKERRQ(ierr);
406388ed4aceSMatthew G Knepley   for (p = pStart, l = 0; p < pEnd; ++p) {
40641f588964SMatthew G Knepley     const PetscInt *cind;
40656636e97aSMatthew G Knepley     PetscInt       dof, cdof, off, gdof, gcdof, goff, gsize, d, c;
406688ed4aceSMatthew G Knepley 
406788ed4aceSMatthew G Knepley     ierr = PetscSectionGetDof(localSection, p, &dof);CHKERRQ(ierr);
406888ed4aceSMatthew G Knepley     ierr = PetscSectionGetOffset(localSection, p, &off);CHKERRQ(ierr);
406988ed4aceSMatthew G Knepley     ierr = PetscSectionGetConstraintDof(localSection, p, &cdof);CHKERRQ(ierr);
407088ed4aceSMatthew G Knepley     ierr = PetscSectionGetConstraintIndices(localSection, p, &cind);CHKERRQ(ierr);
407188ed4aceSMatthew G Knepley     ierr = PetscSectionGetDof(globalSection, p, &gdof);CHKERRQ(ierr);
40726636e97aSMatthew G Knepley     ierr = PetscSectionGetConstraintDof(globalSection, p, &gcdof);CHKERRQ(ierr);
407388ed4aceSMatthew G Knepley     ierr = PetscSectionGetOffset(globalSection, p, &goff);CHKERRQ(ierr);
40746636e97aSMatthew G Knepley     if (!gdof) continue; /* Censored point */
40756636e97aSMatthew G Knepley     gsize = gdof < 0 ? -(gdof+1)-gcdof : gdof-gcdof;
40766636e97aSMatthew G Knepley     if (gsize != dof-cdof) {
4077057b4bcdSMatthew 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);
40786636e97aSMatthew G Knepley       cdof = 0; /* Ignore constraints */
40796636e97aSMatthew G Knepley     }
408088ed4aceSMatthew G Knepley     for (d = 0, c = 0; d < dof; ++d) {
408188ed4aceSMatthew G Knepley       if ((c < cdof) && (cind[c] == d)) {++c; continue;}
408288ed4aceSMatthew G Knepley       local[l+d-c] = off+d;
408388ed4aceSMatthew G Knepley     }
408488ed4aceSMatthew G Knepley     if (gdof < 0) {
40856636e97aSMatthew G Knepley       for (d = 0; d < gsize; ++d, ++l) {
408688ed4aceSMatthew G Knepley         PetscInt offset = -(goff+1) + d, r;
408788ed4aceSMatthew G Knepley 
408805376888SMatthew G. Knepley         ierr = PetscFindInt(offset,size+1,ranges,&r);CHKERRQ(ierr);
408931d3f06eSJed Brown         if (r < 0) r = -(r+2);
409005376888SMatthew 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);
409188ed4aceSMatthew G Knepley         remote[l].rank  = r;
409288ed4aceSMatthew G Knepley         remote[l].index = offset - ranges[r];
409388ed4aceSMatthew G Knepley       }
409488ed4aceSMatthew G Knepley     } else {
40956636e97aSMatthew G Knepley       for (d = 0; d < gsize; ++d, ++l) {
409688ed4aceSMatthew G Knepley         remote[l].rank  = rank;
409788ed4aceSMatthew G Knepley         remote[l].index = goff+d - ranges[rank];
409888ed4aceSMatthew G Knepley       }
409988ed4aceSMatthew G Knepley     }
410088ed4aceSMatthew G Knepley   }
41016636e97aSMatthew G Knepley   if (l != nleaves) SETERRQ2(comm, PETSC_ERR_PLIB, "Iteration error, l %d != nleaves %d", l, nleaves);
410288ed4aceSMatthew G Knepley   ierr = PetscLayoutDestroy(&layout);CHKERRQ(ierr);
410388ed4aceSMatthew G Knepley   ierr = PetscSFSetGraph(dm->defaultSF, nroots, nleaves, local, PETSC_OWN_POINTER, remote, PETSC_OWN_POINTER);CHKERRQ(ierr);
410488ed4aceSMatthew G Knepley   PetscFunctionReturn(0);
410588ed4aceSMatthew G Knepley }
4106af122d2aSMatthew G Knepley 
4107b21d0597SMatthew G Knepley /*@
4108b21d0597SMatthew G Knepley   DMGetPointSF - Get the PetscSF encoding the parallel section point overlap for the DM.
4109b21d0597SMatthew G Knepley 
4110b21d0597SMatthew G Knepley   Input Parameter:
4111b21d0597SMatthew G Knepley . dm - The DM
4112b21d0597SMatthew G Knepley 
4113b21d0597SMatthew G Knepley   Output Parameter:
4114b21d0597SMatthew G Knepley . sf - The PetscSF
4115b21d0597SMatthew G Knepley 
4116b21d0597SMatthew G Knepley   Level: intermediate
4117b21d0597SMatthew G Knepley 
4118b21d0597SMatthew G Knepley   Note: This gets a borrowed reference, so the user should not destroy this PetscSF.
4119b21d0597SMatthew G Knepley 
4120057b4bcdSMatthew G Knepley .seealso: DMSetPointSF(), DMGetDefaultSF(), DMSetDefaultSF(), DMCreateDefaultSF()
4121b21d0597SMatthew G Knepley @*/
41220adebc6cSBarry Smith PetscErrorCode DMGetPointSF(DM dm, PetscSF *sf)
41230adebc6cSBarry Smith {
4124b21d0597SMatthew G Knepley   PetscFunctionBegin;
4125b21d0597SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4126b21d0597SMatthew G Knepley   PetscValidPointer(sf, 2);
4127b21d0597SMatthew G Knepley   *sf = dm->sf;
4128b21d0597SMatthew G Knepley   PetscFunctionReturn(0);
4129b21d0597SMatthew G Knepley }
4130b21d0597SMatthew G Knepley 
4131057b4bcdSMatthew G Knepley /*@
4132057b4bcdSMatthew G Knepley   DMSetPointSF - Set the PetscSF encoding the parallel section point overlap for the DM.
4133057b4bcdSMatthew G Knepley 
4134057b4bcdSMatthew G Knepley   Input Parameters:
4135057b4bcdSMatthew G Knepley + dm - The DM
4136057b4bcdSMatthew G Knepley - sf - The PetscSF
4137057b4bcdSMatthew G Knepley 
4138057b4bcdSMatthew G Knepley   Level: intermediate
4139057b4bcdSMatthew G Knepley 
4140057b4bcdSMatthew G Knepley .seealso: DMGetPointSF(), DMGetDefaultSF(), DMSetDefaultSF(), DMCreateDefaultSF()
4141057b4bcdSMatthew G Knepley @*/
41420adebc6cSBarry Smith PetscErrorCode DMSetPointSF(DM dm, PetscSF sf)
41430adebc6cSBarry Smith {
4144057b4bcdSMatthew G Knepley   PetscErrorCode ierr;
4145057b4bcdSMatthew G Knepley 
4146057b4bcdSMatthew G Knepley   PetscFunctionBegin;
4147057b4bcdSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4148057b4bcdSMatthew G Knepley   PetscValidHeaderSpecific(sf, PETSCSF_CLASSID, 1);
4149057b4bcdSMatthew G Knepley   ierr   = PetscSFDestroy(&dm->sf);CHKERRQ(ierr);
4150057b4bcdSMatthew G Knepley   ierr   = PetscObjectReference((PetscObject) sf);CHKERRQ(ierr);
4151057b4bcdSMatthew G Knepley   dm->sf = sf;
4152057b4bcdSMatthew G Knepley   PetscFunctionReturn(0);
4153057b4bcdSMatthew G Knepley }
4154057b4bcdSMatthew G Knepley 
41552764a2aaSMatthew G. Knepley /*@
41562764a2aaSMatthew G. Knepley   DMGetDS - Get the PetscDS
41572764a2aaSMatthew G. Knepley 
41582764a2aaSMatthew G. Knepley   Input Parameter:
41592764a2aaSMatthew G. Knepley . dm - The DM
41602764a2aaSMatthew G. Knepley 
41612764a2aaSMatthew G. Knepley   Output Parameter:
41622764a2aaSMatthew G. Knepley . prob - The PetscDS
41632764a2aaSMatthew G. Knepley 
41642764a2aaSMatthew G. Knepley   Level: developer
41652764a2aaSMatthew G. Knepley 
41662764a2aaSMatthew G. Knepley .seealso: DMSetDS()
41672764a2aaSMatthew G. Knepley @*/
41682764a2aaSMatthew G. Knepley PetscErrorCode DMGetDS(DM dm, PetscDS *prob)
4169af122d2aSMatthew G Knepley {
4170af122d2aSMatthew G Knepley   PetscFunctionBegin;
4171af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
41720f21e855SMatthew G. Knepley   PetscValidPointer(prob, 2);
41730f21e855SMatthew G. Knepley   *prob = dm->prob;
41740f21e855SMatthew G. Knepley   PetscFunctionReturn(0);
41750f21e855SMatthew G. Knepley }
41760f21e855SMatthew G. Knepley 
41772764a2aaSMatthew G. Knepley /*@
41782764a2aaSMatthew G. Knepley   DMSetDS - Set the PetscDS
41792764a2aaSMatthew G. Knepley 
41802764a2aaSMatthew G. Knepley   Input Parameters:
41812764a2aaSMatthew G. Knepley + dm - The DM
41822764a2aaSMatthew G. Knepley - prob - The PetscDS
41832764a2aaSMatthew G. Knepley 
41842764a2aaSMatthew G. Knepley   Level: developer
41852764a2aaSMatthew G. Knepley 
41862764a2aaSMatthew G. Knepley .seealso: DMGetDS()
41872764a2aaSMatthew G. Knepley @*/
41882764a2aaSMatthew G. Knepley PetscErrorCode DMSetDS(DM dm, PetscDS prob)
41890f21e855SMatthew G. Knepley {
4190f17e8794SMatthew G. Knepley   PetscInt       dimEmbed;
41910f21e855SMatthew G. Knepley   PetscErrorCode ierr;
41920f21e855SMatthew G. Knepley 
41930f21e855SMatthew G. Knepley   PetscFunctionBegin;
41940f21e855SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
41952764a2aaSMatthew G. Knepley   PetscValidHeaderSpecific(prob, PETSCDS_CLASSID, 2);
419637316535SToby Isaac   ierr = PetscObjectReference((PetscObject) prob);CHKERRQ(ierr);
41972764a2aaSMatthew G. Knepley   ierr = PetscDSDestroy(&dm->prob);CHKERRQ(ierr);
41980f21e855SMatthew G. Knepley   dm->prob = prob;
4199f17e8794SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
4200f17e8794SMatthew G. Knepley   ierr = PetscDSSetCoordinateDimension(prob, dimEmbed);CHKERRQ(ierr);
42010f21e855SMatthew G. Knepley   PetscFunctionReturn(0);
42020f21e855SMatthew G. Knepley }
42030f21e855SMatthew G. Knepley 
42040f21e855SMatthew G. Knepley PetscErrorCode DMGetNumFields(DM dm, PetscInt *numFields)
42050f21e855SMatthew G. Knepley {
42060f21e855SMatthew G. Knepley   PetscErrorCode ierr;
42070f21e855SMatthew G. Knepley 
42080f21e855SMatthew G. Knepley   PetscFunctionBegin;
42090f21e855SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42102764a2aaSMatthew G. Knepley   ierr = PetscDSGetNumFields(dm->prob, numFields);CHKERRQ(ierr);
4211af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4212af122d2aSMatthew G Knepley }
4213af122d2aSMatthew G Knepley 
4214af122d2aSMatthew G Knepley PetscErrorCode DMSetNumFields(DM dm, PetscInt numFields)
4215af122d2aSMatthew G Knepley {
42160f21e855SMatthew G. Knepley   PetscInt       Nf, f;
4217af122d2aSMatthew G Knepley   PetscErrorCode ierr;
4218af122d2aSMatthew G Knepley 
4219af122d2aSMatthew G Knepley   PetscFunctionBegin;
4220af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42212764a2aaSMatthew G. Knepley   ierr = PetscDSGetNumFields(dm->prob, &Nf);CHKERRQ(ierr);
42220f21e855SMatthew G. Knepley   for (f = Nf; f < numFields; ++f) {
42230f21e855SMatthew G. Knepley     PetscContainer obj;
42240f21e855SMatthew G. Knepley 
42250f21e855SMatthew G. Knepley     ierr = PetscContainerCreate(PetscObjectComm((PetscObject) dm), &obj);CHKERRQ(ierr);
42262764a2aaSMatthew G. Knepley     ierr = PetscDSSetDiscretization(dm->prob, f, (PetscObject) obj);CHKERRQ(ierr);
42270f21e855SMatthew G. Knepley     ierr = PetscContainerDestroy(&obj);CHKERRQ(ierr);
4228af122d2aSMatthew G Knepley   }
4229af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4230af122d2aSMatthew G Knepley }
4231af122d2aSMatthew G Knepley 
4232c1929be8SMatthew G. Knepley /*@
4233c1929be8SMatthew G. Knepley   DMGetField - Return the discretization object for a given DM field
4234c1929be8SMatthew G. Knepley 
4235c1929be8SMatthew G. Knepley   Not collective
4236c1929be8SMatthew G. Knepley 
4237c1929be8SMatthew G. Knepley   Input Parameters:
4238c1929be8SMatthew G. Knepley + dm - The DM
4239c1929be8SMatthew G. Knepley - f  - The field number
4240c1929be8SMatthew G. Knepley 
4241c1929be8SMatthew G. Knepley   Output Parameter:
4242c1929be8SMatthew G. Knepley . field - The discretization object
4243c1929be8SMatthew G. Knepley 
4244c1929be8SMatthew G. Knepley   Level: developer
4245c1929be8SMatthew G. Knepley 
4246c1929be8SMatthew G. Knepley .seealso: DMSetField()
4247c1929be8SMatthew G. Knepley @*/
4248af122d2aSMatthew G Knepley PetscErrorCode DMGetField(DM dm, PetscInt f, PetscObject *field)
4249af122d2aSMatthew G Knepley {
42500f21e855SMatthew G. Knepley   PetscErrorCode ierr;
42510f21e855SMatthew G. Knepley 
4252af122d2aSMatthew G Knepley   PetscFunctionBegin;
4253af122d2aSMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42542764a2aaSMatthew G. Knepley   ierr = PetscDSGetDiscretization(dm->prob, f, field);CHKERRQ(ierr);
4255decb47aaSMatthew G. Knepley   PetscFunctionReturn(0);
4256decb47aaSMatthew G. Knepley }
4257decb47aaSMatthew G. Knepley 
4258c1929be8SMatthew G. Knepley /*@
4259c1929be8SMatthew G. Knepley   DMSetField - Set the discretization object for a given DM field
4260c1929be8SMatthew G. Knepley 
4261c1929be8SMatthew G. Knepley   Logically collective on DM
4262c1929be8SMatthew G. Knepley 
4263c1929be8SMatthew G. Knepley   Input Parameters:
4264c1929be8SMatthew G. Knepley + dm - The DM
4265c1929be8SMatthew G. Knepley . f  - The field number
4266c1929be8SMatthew G. Knepley - field - The discretization object
4267c1929be8SMatthew G. Knepley 
4268c1929be8SMatthew G. Knepley   Level: developer
4269c1929be8SMatthew G. Knepley 
4270c1929be8SMatthew G. Knepley .seealso: DMGetField()
4271c1929be8SMatthew G. Knepley @*/
4272decb47aaSMatthew G. Knepley PetscErrorCode DMSetField(DM dm, PetscInt f, PetscObject field)
4273decb47aaSMatthew G. Knepley {
4274decb47aaSMatthew G. Knepley   PetscErrorCode ierr;
4275decb47aaSMatthew G. Knepley 
4276decb47aaSMatthew G. Knepley   PetscFunctionBegin;
4277decb47aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
42782764a2aaSMatthew G. Knepley   ierr = PetscDSSetDiscretization(dm->prob, f, field);CHKERRQ(ierr);
4279af122d2aSMatthew G Knepley   PetscFunctionReturn(0);
4280af122d2aSMatthew G Knepley }
42816636e97aSMatthew G Knepley 
4282b64e0483SPeter Brune PetscErrorCode DMRestrictHook_Coordinates(DM dm,DM dmc,void *ctx)
4283b64e0483SPeter Brune {
4284b64e0483SPeter Brune   DM dm_coord,dmc_coord;
4285b64e0483SPeter Brune   PetscErrorCode ierr;
4286b64e0483SPeter Brune   Vec coords,ccoords;
42876dbf9973SLawrence Mitchell   Mat inject;
4288b64e0483SPeter Brune   PetscFunctionBegin;
4289b64e0483SPeter Brune   ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr);
4290b64e0483SPeter Brune   ierr = DMGetCoordinateDM(dmc,&dmc_coord);CHKERRQ(ierr);
4291b64e0483SPeter Brune   ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr);
4292b64e0483SPeter Brune   ierr = DMGetCoordinates(dmc,&ccoords);CHKERRQ(ierr);
4293b64e0483SPeter Brune   if (coords && !ccoords) {
4294b64e0483SPeter Brune     ierr = DMCreateGlobalVector(dmc_coord,&ccoords);CHKERRQ(ierr);
42956668ed41SLisandro Dalcin     ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr);
42966dbf9973SLawrence Mitchell     ierr = DMCreateInjection(dmc_coord,dm_coord,&inject);CHKERRQ(ierr);
42972adcf181SLawrence Mitchell     ierr = MatRestrict(inject,coords,ccoords);CHKERRQ(ierr);
42986dbf9973SLawrence Mitchell     ierr = MatDestroy(&inject);CHKERRQ(ierr);
4299b64e0483SPeter Brune     ierr = DMSetCoordinates(dmc,ccoords);CHKERRQ(ierr);
4300b64e0483SPeter Brune     ierr = VecDestroy(&ccoords);CHKERRQ(ierr);
4301b64e0483SPeter Brune   }
4302b64e0483SPeter Brune   PetscFunctionReturn(0);
4303b64e0483SPeter Brune }
4304b64e0483SPeter Brune 
430503dadc2fSPeter Brune static PetscErrorCode DMSubDomainHook_Coordinates(DM dm,DM subdm,void *ctx)
430603dadc2fSPeter Brune {
430703dadc2fSPeter Brune   DM dm_coord,subdm_coord;
430803dadc2fSPeter Brune   PetscErrorCode ierr;
430903dadc2fSPeter Brune   Vec coords,ccoords,clcoords;
431003dadc2fSPeter Brune   VecScatter *scat_i,*scat_g;
431103dadc2fSPeter Brune   PetscFunctionBegin;
431203dadc2fSPeter Brune   ierr = DMGetCoordinateDM(dm,&dm_coord);CHKERRQ(ierr);
431303dadc2fSPeter Brune   ierr = DMGetCoordinateDM(subdm,&subdm_coord);CHKERRQ(ierr);
431403dadc2fSPeter Brune   ierr = DMGetCoordinates(dm,&coords);CHKERRQ(ierr);
431503dadc2fSPeter Brune   ierr = DMGetCoordinates(subdm,&ccoords);CHKERRQ(ierr);
431603dadc2fSPeter Brune   if (coords && !ccoords) {
431703dadc2fSPeter Brune     ierr = DMCreateGlobalVector(subdm_coord,&ccoords);CHKERRQ(ierr);
43186668ed41SLisandro Dalcin     ierr = PetscObjectSetName((PetscObject)ccoords,"coordinates");CHKERRQ(ierr);
431903dadc2fSPeter Brune     ierr = DMCreateLocalVector(subdm_coord,&clcoords);CHKERRQ(ierr);
432024640c55SToby Isaac     ierr = PetscObjectSetName((PetscObject)clcoords,"coordinates");CHKERRQ(ierr);
432103dadc2fSPeter Brune     ierr = DMCreateDomainDecompositionScatters(dm_coord,1,&subdm_coord,NULL,&scat_i,&scat_g);CHKERRQ(ierr);
432203dadc2fSPeter Brune     ierr = VecScatterBegin(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
432303dadc2fSPeter Brune     ierr = VecScatterBegin(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
432403dadc2fSPeter Brune     ierr = VecScatterEnd(scat_i[0],coords,ccoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
432503dadc2fSPeter Brune     ierr = VecScatterEnd(scat_g[0],coords,clcoords,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
432603dadc2fSPeter Brune     ierr = DMSetCoordinates(subdm,ccoords);CHKERRQ(ierr);
432703dadc2fSPeter Brune     ierr = DMSetCoordinatesLocal(subdm,clcoords);CHKERRQ(ierr);
432803dadc2fSPeter Brune     ierr = VecScatterDestroy(&scat_i[0]);CHKERRQ(ierr);
432903dadc2fSPeter Brune     ierr = VecScatterDestroy(&scat_g[0]);CHKERRQ(ierr);
433003dadc2fSPeter Brune     ierr = VecDestroy(&ccoords);CHKERRQ(ierr);
433103dadc2fSPeter Brune     ierr = VecDestroy(&clcoords);CHKERRQ(ierr);
433203dadc2fSPeter Brune     ierr = PetscFree(scat_i);CHKERRQ(ierr);
433303dadc2fSPeter Brune     ierr = PetscFree(scat_g);CHKERRQ(ierr);
433403dadc2fSPeter Brune   }
433503dadc2fSPeter Brune   PetscFunctionReturn(0);
433603dadc2fSPeter Brune }
433703dadc2fSPeter Brune 
4338c73cfb54SMatthew G. Knepley /*@
4339c73cfb54SMatthew G. Knepley   DMGetDimension - Return the topological dimension of the DM
4340c73cfb54SMatthew G. Knepley 
4341c73cfb54SMatthew G. Knepley   Not collective
4342c73cfb54SMatthew G. Knepley 
4343c73cfb54SMatthew G. Knepley   Input Parameter:
4344c73cfb54SMatthew G. Knepley . dm - The DM
4345c73cfb54SMatthew G. Knepley 
4346c73cfb54SMatthew G. Knepley   Output Parameter:
4347c73cfb54SMatthew G. Knepley . dim - The topological dimension
4348c73cfb54SMatthew G. Knepley 
4349c73cfb54SMatthew G. Knepley   Level: beginner
4350c73cfb54SMatthew G. Knepley 
4351c73cfb54SMatthew G. Knepley .seealso: DMSetDimension(), DMCreate()
4352c73cfb54SMatthew G. Knepley @*/
4353c73cfb54SMatthew G. Knepley PetscErrorCode DMGetDimension(DM dm, PetscInt *dim)
4354c73cfb54SMatthew G. Knepley {
4355c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
4356c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4357c73cfb54SMatthew G. Knepley   PetscValidPointer(dim, 2);
4358c73cfb54SMatthew G. Knepley   *dim = dm->dim;
4359c73cfb54SMatthew G. Knepley   PetscFunctionReturn(0);
4360c73cfb54SMatthew G. Knepley }
4361c73cfb54SMatthew G. Knepley 
4362c73cfb54SMatthew G. Knepley /*@
4363c73cfb54SMatthew G. Knepley   DMSetDimension - Set the topological dimension of the DM
4364c73cfb54SMatthew G. Knepley 
4365c73cfb54SMatthew G. Knepley   Collective on dm
4366c73cfb54SMatthew G. Knepley 
4367c73cfb54SMatthew G. Knepley   Input Parameters:
4368c73cfb54SMatthew G. Knepley + dm - The DM
4369c73cfb54SMatthew G. Knepley - dim - The topological dimension
4370c73cfb54SMatthew G. Knepley 
4371c73cfb54SMatthew G. Knepley   Level: beginner
4372c73cfb54SMatthew G. Knepley 
4373c73cfb54SMatthew G. Knepley .seealso: DMGetDimension(), DMCreate()
4374c73cfb54SMatthew G. Knepley @*/
4375c73cfb54SMatthew G. Knepley PetscErrorCode DMSetDimension(DM dm, PetscInt dim)
4376c73cfb54SMatthew G. Knepley {
4377f17e8794SMatthew G. Knepley   PetscErrorCode ierr;
4378f17e8794SMatthew G. Knepley 
4379c73cfb54SMatthew G. Knepley   PetscFunctionBegin;
4380c73cfb54SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4381c73cfb54SMatthew G. Knepley   PetscValidLogicalCollectiveInt(dm, dim, 2);
4382c73cfb54SMatthew G. Knepley   dm->dim = dim;
4383f17e8794SMatthew G. Knepley   if (dm->prob->dimEmbed < 0) {ierr = PetscDSSetCoordinateDimension(dm->prob, dm->dim);CHKERRQ(ierr);}
4384c73cfb54SMatthew G. Knepley   PetscFunctionReturn(0);
4385c73cfb54SMatthew G. Knepley }
4386c73cfb54SMatthew G. Knepley 
4387793f3fe5SMatthew G. Knepley /*@
4388793f3fe5SMatthew G. Knepley   DMGetDimPoints - Get the half-open interval for all points of a given dimension
4389793f3fe5SMatthew G. Knepley 
4390793f3fe5SMatthew G. Knepley   Collective on DM
4391793f3fe5SMatthew G. Knepley 
4392793f3fe5SMatthew G. Knepley   Input Parameters:
4393793f3fe5SMatthew G. Knepley + dm - the DM
4394793f3fe5SMatthew G. Knepley - dim - the dimension
4395793f3fe5SMatthew G. Knepley 
4396793f3fe5SMatthew G. Knepley   Output Parameters:
4397793f3fe5SMatthew G. Knepley + pStart - The first point of the given dimension
4398793f3fe5SMatthew G. Knepley . pEnd - The first point following points of the given dimension
4399793f3fe5SMatthew G. Knepley 
4400793f3fe5SMatthew G. Knepley   Note:
4401793f3fe5SMatthew G. Knepley   The points are vertices in the Hasse diagram encoding the topology. This is explained in
4402793f3fe5SMatthew G. Knepley   http://arxiv.org/abs/0908.4427. If not points exist of this dimension in the storage scheme,
4403793f3fe5SMatthew G. Knepley   then the interval is empty.
4404793f3fe5SMatthew G. Knepley 
4405793f3fe5SMatthew G. Knepley   Level: intermediate
4406793f3fe5SMatthew G. Knepley 
4407793f3fe5SMatthew G. Knepley .keywords: point, Hasse Diagram, dimension
4408793f3fe5SMatthew G. Knepley .seealso: DMPLEX, DMPlexGetDepthStratum(), DMPlexGetHeightStratum()
4409793f3fe5SMatthew G. Knepley @*/
4410793f3fe5SMatthew G. Knepley PetscErrorCode DMGetDimPoints(DM dm, PetscInt dim, PetscInt *pStart, PetscInt *pEnd)
4411793f3fe5SMatthew G. Knepley {
4412793f3fe5SMatthew G. Knepley   PetscInt       d;
4413793f3fe5SMatthew G. Knepley   PetscErrorCode ierr;
4414793f3fe5SMatthew G. Knepley 
4415793f3fe5SMatthew G. Knepley   PetscFunctionBegin;
4416793f3fe5SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
4417793f3fe5SMatthew G. Knepley   ierr = DMGetDimension(dm, &d);CHKERRQ(ierr);
4418793f3fe5SMatthew G. Knepley   if ((dim < 0) || (dim > d)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Invalid dimension %d 1", dim, d);
4419793f3fe5SMatthew G. Knepley   ierr = (*dm->ops->getdimpoints)(dm, dim, pStart, pEnd);CHKERRQ(ierr);
4420793f3fe5SMatthew G. Knepley   PetscFunctionReturn(0);
4421793f3fe5SMatthew G. Knepley }
4422793f3fe5SMatthew G. Knepley 
44236636e97aSMatthew G Knepley /*@
44246636e97aSMatthew G Knepley   DMSetCoordinates - Sets into the DM a global vector that holds the coordinates
44256636e97aSMatthew G Knepley 
44266636e97aSMatthew G Knepley   Collective on DM
44276636e97aSMatthew G Knepley 
44286636e97aSMatthew G Knepley   Input Parameters:
44296636e97aSMatthew G Knepley + dm - the DM
44306636e97aSMatthew G Knepley - c - coordinate vector
44316636e97aSMatthew G Knepley 
44322dd40e9bSPatrick Sanan   Notes:
44332dd40e9bSPatrick Sanan   The coordinates do include those for ghost points, which are in the local vector.
44342dd40e9bSPatrick Sanan 
44352dd40e9bSPatrick Sanan   The vector c should be destroyed by the caller.
44366636e97aSMatthew G Knepley 
44376636e97aSMatthew G Knepley   Level: intermediate
44386636e97aSMatthew G Knepley 
44396636e97aSMatthew G Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
44402dd40e9bSPatrick Sanan .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM()
44416636e97aSMatthew G Knepley @*/
44426636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinates(DM dm, Vec c)
44436636e97aSMatthew G Knepley {
44446636e97aSMatthew G Knepley   PetscErrorCode ierr;
44456636e97aSMatthew G Knepley 
44466636e97aSMatthew G Knepley   PetscFunctionBegin;
44476636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
44486636e97aSMatthew G Knepley   PetscValidHeaderSpecific(c,VEC_CLASSID,2);
44496636e97aSMatthew G Knepley   ierr            = PetscObjectReference((PetscObject) c);CHKERRQ(ierr);
44506636e97aSMatthew G Knepley   ierr            = VecDestroy(&dm->coordinates);CHKERRQ(ierr);
44516636e97aSMatthew G Knepley   dm->coordinates = c;
44526636e97aSMatthew G Knepley   ierr            = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr);
4453b64e0483SPeter Brune   ierr            = DMCoarsenHookAdd(dm,DMRestrictHook_Coordinates,NULL,NULL);CHKERRQ(ierr);
445403dadc2fSPeter Brune   ierr            = DMSubDomainHookAdd(dm,DMSubDomainHook_Coordinates,NULL,NULL);CHKERRQ(ierr);
44556636e97aSMatthew G Knepley   PetscFunctionReturn(0);
44566636e97aSMatthew G Knepley }
44576636e97aSMatthew G Knepley 
44586636e97aSMatthew G Knepley /*@
44596636e97aSMatthew G Knepley   DMSetCoordinatesLocal - Sets into the DM a local vector that holds the coordinates
44606636e97aSMatthew G Knepley 
44616636e97aSMatthew G Knepley   Collective on DM
44626636e97aSMatthew G Knepley 
44636636e97aSMatthew G Knepley    Input Parameters:
44646636e97aSMatthew G Knepley +  dm - the DM
44656636e97aSMatthew G Knepley -  c - coordinate vector
44666636e97aSMatthew G Knepley 
44672dd40e9bSPatrick Sanan   Notes:
44686636e97aSMatthew G Knepley   The coordinates of ghost points can be set using DMSetCoordinates()
44696636e97aSMatthew G Knepley   followed by DMGetCoordinatesLocal(). This is intended to enable the
44706636e97aSMatthew G Knepley   setting of ghost coordinates outside of the domain.
44716636e97aSMatthew G Knepley 
44722dd40e9bSPatrick Sanan   The vector c should be destroyed by the caller.
44732dd40e9bSPatrick Sanan 
44746636e97aSMatthew G Knepley   Level: intermediate
44756636e97aSMatthew G Knepley 
44766636e97aSMatthew G Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
44776636e97aSMatthew G Knepley .seealso: DMGetCoordinatesLocal(), DMSetCoordinates(), DMGetCoordinates(), DMGetCoordinateDM()
44786636e97aSMatthew G Knepley @*/
44796636e97aSMatthew G Knepley PetscErrorCode DMSetCoordinatesLocal(DM dm, Vec c)
44806636e97aSMatthew G Knepley {
44816636e97aSMatthew G Knepley   PetscErrorCode ierr;
44826636e97aSMatthew G Knepley 
44836636e97aSMatthew G Knepley   PetscFunctionBegin;
44846636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
44856636e97aSMatthew G Knepley   PetscValidHeaderSpecific(c,VEC_CLASSID,2);
44866636e97aSMatthew G Knepley   ierr = PetscObjectReference((PetscObject) c);CHKERRQ(ierr);
44876636e97aSMatthew G Knepley   ierr = VecDestroy(&dm->coordinatesLocal);CHKERRQ(ierr);
44888865f1eaSKarl Rupp 
44896636e97aSMatthew G Knepley   dm->coordinatesLocal = c;
44908865f1eaSKarl Rupp 
44916636e97aSMatthew G Knepley   ierr = VecDestroy(&dm->coordinates);CHKERRQ(ierr);
44926636e97aSMatthew G Knepley   PetscFunctionReturn(0);
44936636e97aSMatthew G Knepley }
44946636e97aSMatthew G Knepley 
44956636e97aSMatthew G Knepley /*@
44966636e97aSMatthew G Knepley   DMGetCoordinates - Gets a global vector with the coordinates associated with the DM.
44976636e97aSMatthew G Knepley 
44986636e97aSMatthew G Knepley   Not Collective
44996636e97aSMatthew G Knepley 
45006636e97aSMatthew G Knepley   Input Parameter:
45016636e97aSMatthew G Knepley . dm - the DM
45026636e97aSMatthew G Knepley 
45036636e97aSMatthew G Knepley   Output Parameter:
45046636e97aSMatthew G Knepley . c - global coordinate vector
45056636e97aSMatthew G Knepley 
45066636e97aSMatthew G Knepley   Note:
45076636e97aSMatthew G Knepley   This is a borrowed reference, so the user should NOT destroy this vector
45086636e97aSMatthew G Knepley 
45096636e97aSMatthew G Knepley   Each process has only the local coordinates (does NOT have the ghost coordinates).
45106636e97aSMatthew G Knepley 
45116636e97aSMatthew G Knepley   For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...)
45126636e97aSMatthew G Knepley   and (x_0,y_0,z_0,x_1,y_1,z_1...)
45136636e97aSMatthew G Knepley 
45146636e97aSMatthew G Knepley   Level: intermediate
45156636e97aSMatthew G Knepley 
45166636e97aSMatthew G Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
45176636e97aSMatthew G Knepley .seealso: DMSetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM()
45186636e97aSMatthew G Knepley @*/
45196636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinates(DM dm, Vec *c)
45206636e97aSMatthew G Knepley {
45216636e97aSMatthew G Knepley   PetscErrorCode ierr;
45226636e97aSMatthew G Knepley 
45236636e97aSMatthew G Knepley   PetscFunctionBegin;
45246636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
45256636e97aSMatthew G Knepley   PetscValidPointer(c,2);
45261f588964SMatthew G Knepley   if (!dm->coordinates && dm->coordinatesLocal) {
45270298fd71SBarry Smith     DM cdm = NULL;
45286636e97aSMatthew G Knepley 
45296636e97aSMatthew G Knepley     ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
45306636e97aSMatthew G Knepley     ierr = DMCreateGlobalVector(cdm, &dm->coordinates);CHKERRQ(ierr);
45316636e97aSMatthew G Knepley     ierr = PetscObjectSetName((PetscObject) dm->coordinates, "coordinates");CHKERRQ(ierr);
45326636e97aSMatthew G Knepley     ierr = DMLocalToGlobalBegin(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr);
45336636e97aSMatthew G Knepley     ierr = DMLocalToGlobalEnd(cdm, dm->coordinatesLocal, INSERT_VALUES, dm->coordinates);CHKERRQ(ierr);
45346636e97aSMatthew G Knepley   }
45356636e97aSMatthew G Knepley   *c = dm->coordinates;
45366636e97aSMatthew G Knepley   PetscFunctionReturn(0);
45376636e97aSMatthew G Knepley }
45386636e97aSMatthew G Knepley 
45396636e97aSMatthew G Knepley /*@
45406636e97aSMatthew G Knepley   DMGetCoordinatesLocal - Gets a local vector with the coordinates associated with the DM.
45416636e97aSMatthew G Knepley 
45426636e97aSMatthew G Knepley   Collective on DM
45436636e97aSMatthew G Knepley 
45446636e97aSMatthew G Knepley   Input Parameter:
45456636e97aSMatthew G Knepley . dm - the DM
45466636e97aSMatthew G Knepley 
45476636e97aSMatthew G Knepley   Output Parameter:
45486636e97aSMatthew G Knepley . c - coordinate vector
45496636e97aSMatthew G Knepley 
45506636e97aSMatthew G Knepley   Note:
45516636e97aSMatthew G Knepley   This is a borrowed reference, so the user should NOT destroy this vector
45526636e97aSMatthew G Knepley 
45536636e97aSMatthew G Knepley   Each process has the local and ghost coordinates
45546636e97aSMatthew G Knepley 
45556636e97aSMatthew G Knepley   For DMDA, in two and three dimensions coordinates are interlaced (x_0,y_0,x_1,y_1,...)
45566636e97aSMatthew G Knepley   and (x_0,y_0,z_0,x_1,y_1,z_1...)
45576636e97aSMatthew G Knepley 
45586636e97aSMatthew G Knepley   Level: intermediate
45596636e97aSMatthew G Knepley 
45606636e97aSMatthew G Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
45616636e97aSMatthew G Knepley .seealso: DMSetCoordinatesLocal(), DMGetCoordinates(), DMSetCoordinates(), DMGetCoordinateDM()
45626636e97aSMatthew G Knepley @*/
45636636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinatesLocal(DM dm, Vec *c)
45646636e97aSMatthew G Knepley {
45656636e97aSMatthew G Knepley   PetscErrorCode ierr;
45666636e97aSMatthew G Knepley 
45676636e97aSMatthew G Knepley   PetscFunctionBegin;
45686636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
45696636e97aSMatthew G Knepley   PetscValidPointer(c,2);
45701f588964SMatthew G Knepley   if (!dm->coordinatesLocal && dm->coordinates) {
45710298fd71SBarry Smith     DM cdm = NULL;
45726636e97aSMatthew G Knepley 
45736636e97aSMatthew G Knepley     ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
45746636e97aSMatthew G Knepley     ierr = DMCreateLocalVector(cdm, &dm->coordinatesLocal);CHKERRQ(ierr);
45756636e97aSMatthew G Knepley     ierr = PetscObjectSetName((PetscObject) dm->coordinatesLocal, "coordinates");CHKERRQ(ierr);
45766636e97aSMatthew G Knepley     ierr = DMGlobalToLocalBegin(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr);
45776636e97aSMatthew G Knepley     ierr = DMGlobalToLocalEnd(cdm, dm->coordinates, INSERT_VALUES, dm->coordinatesLocal);CHKERRQ(ierr);
45786636e97aSMatthew G Knepley   }
45796636e97aSMatthew G Knepley   *c = dm->coordinatesLocal;
45806636e97aSMatthew G Knepley   PetscFunctionReturn(0);
45816636e97aSMatthew G Knepley }
45826636e97aSMatthew G Knepley 
4583f19dbd58SToby Isaac PetscErrorCode DMGetCoordinateField(DM dm, DMField *field)
4584f19dbd58SToby Isaac {
4585f19dbd58SToby Isaac   PetscErrorCode ierr;
4586f19dbd58SToby Isaac 
4587f19dbd58SToby Isaac   PetscFunctionBegin;
4588f19dbd58SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
4589f19dbd58SToby Isaac   PetscValidPointer(field,2);
4590f19dbd58SToby Isaac   if (!dm->coordinateField) {
4591f19dbd58SToby Isaac     if (dm->ops->createcoordinatefield) {
4592f19dbd58SToby Isaac       ierr = (*dm->ops->createcoordinatefield)(dm,&dm->coordinateField);CHKERRQ(ierr);
4593f19dbd58SToby Isaac     }
4594f19dbd58SToby Isaac   }
4595f19dbd58SToby Isaac   *field = dm->coordinateField;
4596f19dbd58SToby Isaac   PetscFunctionReturn(0);
4597f19dbd58SToby Isaac }
4598f19dbd58SToby Isaac 
4599f19dbd58SToby Isaac PetscErrorCode DMSetCoordinateField(DM dm, DMField field)
4600f19dbd58SToby Isaac {
4601f19dbd58SToby Isaac   PetscErrorCode ierr;
4602f19dbd58SToby Isaac 
4603f19dbd58SToby Isaac   PetscFunctionBegin;
4604f19dbd58SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
4605f19dbd58SToby Isaac   if (field) PetscValidHeaderSpecific(field,DMFIELD_CLASSID,2);
4606c4e6da2cSBarry Smith   ierr = PetscObjectReference((PetscObject)field);CHKERRQ(ierr);
4607f19dbd58SToby Isaac   ierr = DMFieldDestroy(&dm->coordinateField);CHKERRQ(ierr);
4608f19dbd58SToby Isaac   dm->coordinateField = field;
4609f19dbd58SToby Isaac   PetscFunctionReturn(0);
4610f19dbd58SToby Isaac }
4611f19dbd58SToby Isaac 
46126636e97aSMatthew G Knepley /*@
46131cfe2091SMatthew G. Knepley   DMGetCoordinateDM - Gets the DM that prescribes coordinate layout and scatters between global and local coordinates
46146636e97aSMatthew G Knepley 
46156636e97aSMatthew G Knepley   Collective on DM
46166636e97aSMatthew G Knepley 
46176636e97aSMatthew G Knepley   Input Parameter:
46186636e97aSMatthew G Knepley . dm - the DM
46196636e97aSMatthew G Knepley 
46206636e97aSMatthew G Knepley   Output Parameter:
46216636e97aSMatthew G Knepley . cdm - coordinate DM
46226636e97aSMatthew G Knepley 
46236636e97aSMatthew G Knepley   Level: intermediate
46246636e97aSMatthew G Knepley 
46256636e97aSMatthew G Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
46261cfe2091SMatthew G. Knepley .seealso: DMSetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal()
46276636e97aSMatthew G Knepley @*/
46286636e97aSMatthew G Knepley PetscErrorCode DMGetCoordinateDM(DM dm, DM *cdm)
46296636e97aSMatthew G Knepley {
46306636e97aSMatthew G Knepley   PetscErrorCode ierr;
46316636e97aSMatthew G Knepley 
46326636e97aSMatthew G Knepley   PetscFunctionBegin;
46336636e97aSMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
46346636e97aSMatthew G Knepley   PetscValidPointer(cdm,2);
46356636e97aSMatthew G Knepley   if (!dm->coordinateDM) {
463682f516ccSBarry Smith     if (!dm->ops->createcoordinatedm) SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Unable to create coordinates for this DM");
46376636e97aSMatthew G Knepley     ierr = (*dm->ops->createcoordinatedm)(dm, &dm->coordinateDM);CHKERRQ(ierr);
46386636e97aSMatthew G Knepley   }
46396636e97aSMatthew G Knepley   *cdm = dm->coordinateDM;
46406636e97aSMatthew G Knepley   PetscFunctionReturn(0);
46416636e97aSMatthew G Knepley }
4642e87bb0d3SMatthew G Knepley 
46431cfe2091SMatthew G. Knepley /*@
46441cfe2091SMatthew G. Knepley   DMSetCoordinateDM - Sets the DM that prescribes coordinate layout and scatters between global and local coordinates
46451cfe2091SMatthew G. Knepley 
46461cfe2091SMatthew G. Knepley   Logically Collective on DM
46471cfe2091SMatthew G. Knepley 
46481cfe2091SMatthew G. Knepley   Input Parameters:
46491cfe2091SMatthew G. Knepley + dm - the DM
46501cfe2091SMatthew G. Knepley - cdm - coordinate DM
46511cfe2091SMatthew G. Knepley 
46521cfe2091SMatthew G. Knepley   Level: intermediate
46531cfe2091SMatthew G. Knepley 
46541cfe2091SMatthew G. Knepley .keywords: distributed array, get, corners, nodes, local indices, coordinates
46551cfe2091SMatthew G. Knepley .seealso: DMGetCoordinateDM(), DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal()
46561cfe2091SMatthew G. Knepley @*/
46571cfe2091SMatthew G. Knepley PetscErrorCode DMSetCoordinateDM(DM dm, DM cdm)
46581cfe2091SMatthew G. Knepley {
46591cfe2091SMatthew G. Knepley   PetscErrorCode ierr;
46601cfe2091SMatthew G. Knepley 
46611cfe2091SMatthew G. Knepley   PetscFunctionBegin;
46621cfe2091SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
46631cfe2091SMatthew G. Knepley   PetscValidHeaderSpecific(cdm,DM_CLASSID,2);
4664f26b38b9SToby Isaac   ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr);
46651cfe2091SMatthew G. Knepley   ierr = DMDestroy(&dm->coordinateDM);CHKERRQ(ierr);
46661cfe2091SMatthew G. Knepley   dm->coordinateDM = cdm;
46671cfe2091SMatthew G. Knepley   PetscFunctionReturn(0);
46681cfe2091SMatthew G. Knepley }
46691cfe2091SMatthew G. Knepley 
467046e270d4SMatthew G. Knepley /*@
467146e270d4SMatthew G. Knepley   DMGetCoordinateDim - Retrieve the dimension of embedding space for coordinate values.
467246e270d4SMatthew G. Knepley 
467346e270d4SMatthew G. Knepley   Not Collective
467446e270d4SMatthew G. Knepley 
467546e270d4SMatthew G. Knepley   Input Parameter:
467646e270d4SMatthew G. Knepley . dm - The DM object
467746e270d4SMatthew G. Knepley 
467846e270d4SMatthew G. Knepley   Output Parameter:
467946e270d4SMatthew G. Knepley . dim - The embedding dimension
468046e270d4SMatthew G. Knepley 
468146e270d4SMatthew G. Knepley   Level: intermediate
468246e270d4SMatthew G. Knepley 
468346e270d4SMatthew G. Knepley .keywords: mesh, coordinates
4684e87a4003SBarry Smith .seealso: DMSetCoordinateDim(), DMGetCoordinateSection(), DMGetCoordinateDM(), DMGetSection(), DMSetSection()
468546e270d4SMatthew G. Knepley @*/
468646e270d4SMatthew G. Knepley PetscErrorCode DMGetCoordinateDim(DM dm, PetscInt *dim)
468746e270d4SMatthew G. Knepley {
468846e270d4SMatthew G. Knepley   PetscFunctionBegin;
468946e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
469046e270d4SMatthew G. Knepley   PetscValidPointer(dim, 2);
46919a9a41abSToby Isaac   if (dm->dimEmbed == PETSC_DEFAULT) {
46929a9a41abSToby Isaac     dm->dimEmbed = dm->dim;
46939a9a41abSToby Isaac   }
469446e270d4SMatthew G. Knepley   *dim = dm->dimEmbed;
469546e270d4SMatthew G. Knepley   PetscFunctionReturn(0);
469646e270d4SMatthew G. Knepley }
469746e270d4SMatthew G. Knepley 
469846e270d4SMatthew G. Knepley /*@
469946e270d4SMatthew G. Knepley   DMSetCoordinateDim - Set the dimension of the embedding space for coordinate values.
470046e270d4SMatthew G. Knepley 
470146e270d4SMatthew G. Knepley   Not Collective
470246e270d4SMatthew G. Knepley 
470346e270d4SMatthew G. Knepley   Input Parameters:
470446e270d4SMatthew G. Knepley + dm  - The DM object
470546e270d4SMatthew G. Knepley - dim - The embedding dimension
470646e270d4SMatthew G. Knepley 
470746e270d4SMatthew G. Knepley   Level: intermediate
470846e270d4SMatthew G. Knepley 
470946e270d4SMatthew G. Knepley .keywords: mesh, coordinates
4710e87a4003SBarry Smith .seealso: DMGetCoordinateDim(), DMSetCoordinateSection(), DMGetCoordinateSection(), DMGetSection(), DMSetSection()
471146e270d4SMatthew G. Knepley @*/
471246e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateDim(DM dm, PetscInt dim)
471346e270d4SMatthew G. Knepley {
4714f17e8794SMatthew G. Knepley   PetscErrorCode ierr;
4715f17e8794SMatthew G. Knepley 
471646e270d4SMatthew G. Knepley   PetscFunctionBegin;
471746e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
471846e270d4SMatthew G. Knepley   dm->dimEmbed = dim;
4719f17e8794SMatthew G. Knepley   ierr = PetscDSSetCoordinateDimension(dm->prob, dm->dimEmbed);CHKERRQ(ierr);
472046e270d4SMatthew G. Knepley   PetscFunctionReturn(0);
472146e270d4SMatthew G. Knepley }
472246e270d4SMatthew G. Knepley 
4723e8abe2deSMatthew G. Knepley /*@
4724e8abe2deSMatthew G. Knepley   DMGetCoordinateSection - Retrieve the layout of coordinate values over the mesh.
4725e8abe2deSMatthew G. Knepley 
4726e8abe2deSMatthew G. Knepley   Not Collective
4727e8abe2deSMatthew G. Knepley 
4728e8abe2deSMatthew G. Knepley   Input Parameter:
4729e8abe2deSMatthew G. Knepley . dm - The DM object
4730e8abe2deSMatthew G. Knepley 
4731e8abe2deSMatthew G. Knepley   Output Parameter:
4732e8abe2deSMatthew G. Knepley . section - The PetscSection object
4733e8abe2deSMatthew G. Knepley 
4734e8abe2deSMatthew G. Knepley   Level: intermediate
4735e8abe2deSMatthew G. Knepley 
4736e8abe2deSMatthew G. Knepley .keywords: mesh, coordinates
4737e87a4003SBarry Smith .seealso: DMGetCoordinateDM(), DMGetSection(), DMSetSection()
4738e8abe2deSMatthew G. Knepley @*/
4739e8abe2deSMatthew G. Knepley PetscErrorCode DMGetCoordinateSection(DM dm, PetscSection *section)
4740e8abe2deSMatthew G. Knepley {
4741e8abe2deSMatthew G. Knepley   DM             cdm;
4742e8abe2deSMatthew G. Knepley   PetscErrorCode ierr;
4743e8abe2deSMatthew G. Knepley 
4744e8abe2deSMatthew G. Knepley   PetscFunctionBegin;
4745e8abe2deSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4746e8abe2deSMatthew G. Knepley   PetscValidPointer(section, 2);
4747e8abe2deSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
4748e87a4003SBarry Smith   ierr = DMGetSection(cdm, section);CHKERRQ(ierr);
4749e8abe2deSMatthew G. Knepley   PetscFunctionReturn(0);
4750e8abe2deSMatthew G. Knepley }
4751e8abe2deSMatthew G. Knepley 
4752e8abe2deSMatthew G. Knepley /*@
4753e8abe2deSMatthew G. Knepley   DMSetCoordinateSection - Set the layout of coordinate values over the mesh.
4754e8abe2deSMatthew G. Knepley 
4755e8abe2deSMatthew G. Knepley   Not Collective
4756e8abe2deSMatthew G. Knepley 
4757e8abe2deSMatthew G. Knepley   Input Parameters:
4758e8abe2deSMatthew G. Knepley + dm      - The DM object
475946e270d4SMatthew G. Knepley . dim     - The embedding dimension, or PETSC_DETERMINE
4760e8abe2deSMatthew G. Knepley - section - The PetscSection object
4761e8abe2deSMatthew G. Knepley 
4762e8abe2deSMatthew G. Knepley   Level: intermediate
4763e8abe2deSMatthew G. Knepley 
4764e8abe2deSMatthew G. Knepley .keywords: mesh, coordinates
4765e87a4003SBarry Smith .seealso: DMGetCoordinateSection(), DMGetSection(), DMSetSection()
4766e8abe2deSMatthew G. Knepley @*/
476746e270d4SMatthew G. Knepley PetscErrorCode DMSetCoordinateSection(DM dm, PetscInt dim, PetscSection section)
4768e8abe2deSMatthew G. Knepley {
4769e8abe2deSMatthew G. Knepley   DM             cdm;
4770e8abe2deSMatthew G. Knepley   PetscErrorCode ierr;
4771e8abe2deSMatthew G. Knepley 
4772e8abe2deSMatthew G. Knepley   PetscFunctionBegin;
4773e8abe2deSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
477446e270d4SMatthew G. Knepley   PetscValidHeaderSpecific(section,PETSC_SECTION_CLASSID,3);
4775e8abe2deSMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
4776e87a4003SBarry Smith   ierr = DMSetSection(cdm, section);CHKERRQ(ierr);
477746e270d4SMatthew G. Knepley   if (dim == PETSC_DETERMINE) {
47784c1069a6SMatthew G. Knepley     PetscInt d = PETSC_DEFAULT;
477946e270d4SMatthew G. Knepley     PetscInt pStart, pEnd, vStart, vEnd, v, dd;
478046e270d4SMatthew G. Knepley 
478146e270d4SMatthew G. Knepley     ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
478246e270d4SMatthew G. Knepley     ierr = DMGetDimPoints(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
478346e270d4SMatthew G. Knepley     pStart = PetscMax(vStart, pStart);
478446e270d4SMatthew G. Knepley     pEnd   = PetscMin(vEnd, pEnd);
478546e270d4SMatthew G. Knepley     for (v = pStart; v < pEnd; ++v) {
478646e270d4SMatthew G. Knepley       ierr = PetscSectionGetDof(section, v, &dd);CHKERRQ(ierr);
478746e270d4SMatthew G. Knepley       if (dd) {d = dd; break;}
478846e270d4SMatthew G. Knepley     }
47896be882deSMatthew G. Knepley     if (d < 0) d = PETSC_DEFAULT;
479046e270d4SMatthew G. Knepley     ierr = DMSetCoordinateDim(dm, d);CHKERRQ(ierr);
479146e270d4SMatthew G. Knepley   }
4792e8abe2deSMatthew G. Knepley   PetscFunctionReturn(0);
4793e8abe2deSMatthew G. Knepley }
4794e8abe2deSMatthew G. Knepley 
47955dc8c3f7SMatthew G. Knepley /*@C
479690b157c4SStefano Zampini   DMGetPeriodicity - Get the description of mesh periodicity
47975dc8c3f7SMatthew G. Knepley 
47985dc8c3f7SMatthew G. Knepley   Input Parameters:
479990b157c4SStefano Zampini . dm      - The DM object
480090b157c4SStefano Zampini 
480190b157c4SStefano Zampini   Output Parameters:
480290b157c4SStefano Zampini + per     - Whether the DM is periodic or not
48035dc8c3f7SMatthew 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
48045dc8c3f7SMatthew G. Knepley . L       - If we assume the mesh is a torus, this is the length of each coordinate
48055dc8c3f7SMatthew G. Knepley - bd      - This describes the type of periodicity in each topological dimension
48065dc8c3f7SMatthew G. Knepley 
48075dc8c3f7SMatthew G. Knepley   Level: developer
48085dc8c3f7SMatthew G. Knepley 
48095dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity()
48105dc8c3f7SMatthew G. Knepley @*/
481190b157c4SStefano Zampini PetscErrorCode DMGetPeriodicity(DM dm, PetscBool *per, const PetscReal **maxCell, const PetscReal **L, const DMBoundaryType **bd)
4812c6b900c6SMatthew G. Knepley {
4813c6b900c6SMatthew G. Knepley   PetscFunctionBegin;
4814c6b900c6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
481590b157c4SStefano Zampini   if (per)     *per     = dm->periodic;
4816c6b900c6SMatthew G. Knepley   if (L)       *L       = dm->L;
4817c6b900c6SMatthew G. Knepley   if (maxCell) *maxCell = dm->maxCell;
48185dc8c3f7SMatthew G. Knepley   if (bd)      *bd      = dm->bdtype;
4819c6b900c6SMatthew G. Knepley   PetscFunctionReturn(0);
4820c6b900c6SMatthew G. Knepley }
4821c6b900c6SMatthew G. Knepley 
48225dc8c3f7SMatthew G. Knepley /*@C
48235dc8c3f7SMatthew G. Knepley   DMSetPeriodicity - Set the description of mesh periodicity
48245dc8c3f7SMatthew G. Knepley 
48255dc8c3f7SMatthew G. Knepley   Input Parameters:
48265dc8c3f7SMatthew G. Knepley + dm      - The DM object
482790b157c4SStefano Zampini . per     - Whether the DM is periodic or not. If maxCell is not provided, coordinates need to be localized
48285dc8c3f7SMatthew 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
48295dc8c3f7SMatthew G. Knepley . L       - If we assume the mesh is a torus, this is the length of each coordinate
48305dc8c3f7SMatthew G. Knepley - bd      - This describes the type of periodicity in each topological dimension
48315dc8c3f7SMatthew G. Knepley 
48325dc8c3f7SMatthew G. Knepley   Level: developer
48335dc8c3f7SMatthew G. Knepley 
48345dc8c3f7SMatthew G. Knepley .seealso: DMGetPeriodicity()
48355dc8c3f7SMatthew G. Knepley @*/
483690b157c4SStefano Zampini PetscErrorCode DMSetPeriodicity(DM dm, PetscBool per, const PetscReal maxCell[], const PetscReal L[], const DMBoundaryType bd[])
4837c6b900c6SMatthew G. Knepley {
4838c6b900c6SMatthew G. Knepley   PetscInt       dim, d;
4839c6b900c6SMatthew G. Knepley   PetscErrorCode ierr;
4840c6b900c6SMatthew G. Knepley 
4841c6b900c6SMatthew G. Knepley   PetscFunctionBegin;
4842c6b900c6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
484390b157c4SStefano Zampini   PetscValidLogicalCollectiveBool(dm,per,2);
484490b157c4SStefano Zampini   if (maxCell) {
484590b157c4SStefano Zampini     PetscValidPointer(maxCell,3);
484690b157c4SStefano Zampini     PetscValidPointer(L,4);
484790b157c4SStefano Zampini     PetscValidPointer(bd,5);
484890b157c4SStefano Zampini   }
48495dc8c3f7SMatthew G. Knepley   ierr = PetscFree3(dm->L,dm->maxCell,dm->bdtype);CHKERRQ(ierr);
48505dc8c3f7SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
485190b157c4SStefano Zampini   if (maxCell) {
48525dc8c3f7SMatthew G. Knepley     ierr = PetscMalloc3(dim,&dm->L,dim,&dm->maxCell,dim,&dm->bdtype);CHKERRQ(ierr);
48535dc8c3f7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {dm->L[d] = L[d]; dm->maxCell[d] = maxCell[d]; dm->bdtype[d] = bd[d];}
485490b157c4SStefano Zampini     dm->periodic = PETSC_TRUE;
485590b157c4SStefano Zampini   } else {
485690b157c4SStefano Zampini     dm->periodic = per;
485790b157c4SStefano Zampini   }
4858c6b900c6SMatthew G. Knepley   PetscFunctionReturn(0);
4859c6b900c6SMatthew G. Knepley }
4860c6b900c6SMatthew G. Knepley 
48612e17dfb7SMatthew G. Knepley /*@
48622e17dfb7SMatthew 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.
48632e17dfb7SMatthew G. Knepley 
48642e17dfb7SMatthew G. Knepley   Input Parameters:
48652e17dfb7SMatthew G. Knepley + dm     - The DM
486665da65dcSMatthew G. Knepley . in     - The input coordinate point (dim numbers)
486765da65dcSMatthew G. Knepley - endpoint - Include the endpoint L_i
48682e17dfb7SMatthew G. Knepley 
48692e17dfb7SMatthew G. Knepley   Output Parameter:
48702e17dfb7SMatthew G. Knepley . out - The localized coordinate point
48712e17dfb7SMatthew G. Knepley 
48722e17dfb7SMatthew G. Knepley   Level: developer
48732e17dfb7SMatthew G. Knepley 
48742e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate()
48752e17dfb7SMatthew G. Knepley @*/
487665da65dcSMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate(DM dm, const PetscScalar in[], PetscBool endpoint, PetscScalar out[])
48772e17dfb7SMatthew G. Knepley {
48782e17dfb7SMatthew G. Knepley   PetscInt       dim, d;
48792e17dfb7SMatthew G. Knepley   PetscErrorCode ierr;
48802e17dfb7SMatthew G. Knepley 
48812e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
48822e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dim);CHKERRQ(ierr);
48832e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
48842e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
48852e17dfb7SMatthew G. Knepley   } else {
488665da65dcSMatthew G. Knepley     if (endpoint) {
488765da65dcSMatthew G. Knepley       for (d = 0; d < dim; ++d) {
4888da3333bfSMatthew 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)) {
4889da3333bfSMatthew G. Knepley           out[d] = in[d] - dm->L[d]*(PetscFloorReal(PetscRealPart(in[d])/dm->L[d]) - 1);
489065da65dcSMatthew G. Knepley         } else {
4891da3333bfSMatthew G. Knepley           out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]);
489265da65dcSMatthew G. Knepley         }
489365da65dcSMatthew G. Knepley       }
489465da65dcSMatthew G. Knepley     } else {
48952e17dfb7SMatthew G. Knepley       for (d = 0; d < dim; ++d) {
48961118d4bcSLisandro Dalcin         out[d] = in[d] - dm->L[d]*PetscFloorReal(PetscRealPart(in[d])/dm->L[d]);
48972e17dfb7SMatthew G. Knepley       }
48982e17dfb7SMatthew G. Knepley     }
489965da65dcSMatthew G. Knepley   }
49002e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
49012e17dfb7SMatthew G. Knepley }
49022e17dfb7SMatthew G. Knepley 
49032e17dfb7SMatthew G. Knepley /*
49042e17dfb7SMatthew 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.
49052e17dfb7SMatthew G. Knepley 
49062e17dfb7SMatthew G. Knepley   Input Parameters:
49072e17dfb7SMatthew G. Knepley + dm     - The DM
49082e17dfb7SMatthew G. Knepley . dim    - The spatial dimension
49092e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it
49102e17dfb7SMatthew G. Knepley - in     - The input coordinate point (dim numbers)
49112e17dfb7SMatthew G. Knepley 
49122e17dfb7SMatthew G. Knepley   Output Parameter:
49132e17dfb7SMatthew G. Knepley . out - The localized coordinate point
49142e17dfb7SMatthew G. Knepley 
49152e17dfb7SMatthew G. Knepley   Level: developer
49162e17dfb7SMatthew G. Knepley 
49172e17dfb7SMatthew 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
49182e17dfb7SMatthew G. Knepley 
49192e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeAddCoordinate()
49202e17dfb7SMatthew G. Knepley */
49212e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[])
49222e17dfb7SMatthew G. Knepley {
49232e17dfb7SMatthew G. Knepley   PetscInt d;
49242e17dfb7SMatthew G. Knepley 
49252e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
49262e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
49272e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
49282e17dfb7SMatthew G. Knepley   } else {
49292e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
4930908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) {
49312e17dfb7SMatthew G. Knepley         out[d] = PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d];
49322e17dfb7SMatthew G. Knepley       } else {
49332e17dfb7SMatthew G. Knepley         out[d] = in[d];
49342e17dfb7SMatthew G. Knepley       }
49352e17dfb7SMatthew G. Knepley     }
49362e17dfb7SMatthew G. Knepley   }
49372e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
49382e17dfb7SMatthew G. Knepley }
49392e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinateReal_Internal(DM dm, PetscInt dim, const PetscReal anchor[], const PetscReal in[], PetscReal out[])
49402e17dfb7SMatthew G. Knepley {
49412e17dfb7SMatthew G. Knepley   PetscInt d;
49422e17dfb7SMatthew G. Knepley 
49432e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
49442e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
49452e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] = in[d];
49462e17dfb7SMatthew G. Knepley   } else {
49472e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
4948908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsReal(anchor[d] - in[d]) > dm->maxCell[d])) {
49492e17dfb7SMatthew G. Knepley         out[d] = anchor[d] > in[d] ? dm->L[d] + in[d] : in[d] - dm->L[d];
49502e17dfb7SMatthew G. Knepley       } else {
49512e17dfb7SMatthew G. Knepley         out[d] = in[d];
49522e17dfb7SMatthew G. Knepley       }
49532e17dfb7SMatthew G. Knepley     }
49542e17dfb7SMatthew G. Knepley   }
49552e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
49562e17dfb7SMatthew G. Knepley }
49572e17dfb7SMatthew G. Knepley 
49582e17dfb7SMatthew G. Knepley /*
49592e17dfb7SMatthew 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.
49602e17dfb7SMatthew G. Knepley 
49612e17dfb7SMatthew G. Knepley   Input Parameters:
49622e17dfb7SMatthew G. Knepley + dm     - The DM
49632e17dfb7SMatthew G. Knepley . dim    - The spatial dimension
49642e17dfb7SMatthew G. Knepley . anchor - The anchor point, the input point can be no more than maxCell away from it
49652e17dfb7SMatthew G. Knepley . in     - The input coordinate delta (dim numbers)
49662e17dfb7SMatthew G. Knepley - out    - The input coordinate point (dim numbers)
49672e17dfb7SMatthew G. Knepley 
49682e17dfb7SMatthew G. Knepley   Output Parameter:
49692e17dfb7SMatthew G. Knepley . out    - The localized coordinate in + out
49702e17dfb7SMatthew G. Knepley 
49712e17dfb7SMatthew G. Knepley   Level: developer
49722e17dfb7SMatthew G. Knepley 
49732e17dfb7SMatthew 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
49742e17dfb7SMatthew G. Knepley 
49752e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinates(), DMLocalizeCoordinate()
49762e17dfb7SMatthew G. Knepley */
49772e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeAddCoordinate_Internal(DM dm, PetscInt dim, const PetscScalar anchor[], const PetscScalar in[], PetscScalar out[])
49782e17dfb7SMatthew G. Knepley {
49792e17dfb7SMatthew G. Knepley   PetscInt d;
49802e17dfb7SMatthew G. Knepley 
49812e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
49822e17dfb7SMatthew G. Knepley   if (!dm->maxCell) {
49832e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) out[d] += in[d];
49842e17dfb7SMatthew G. Knepley   } else {
49852e17dfb7SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
4986908eca10SMatthew G. Knepley       if ((dm->bdtype[d] != DM_BOUNDARY_NONE) && (PetscAbsScalar(anchor[d] - in[d]) > dm->maxCell[d])) {
49872e17dfb7SMatthew G. Knepley         out[d] += PetscRealPart(anchor[d]) > PetscRealPart(in[d]) ? dm->L[d] + in[d] : in[d] - dm->L[d];
49882e17dfb7SMatthew G. Knepley       } else {
49892e17dfb7SMatthew G. Knepley         out[d] += in[d];
49902e17dfb7SMatthew G. Knepley       }
49912e17dfb7SMatthew G. Knepley     }
49922e17dfb7SMatthew G. Knepley   }
49932e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
49942e17dfb7SMatthew G. Knepley }
49952e17dfb7SMatthew G. Knepley 
499636447a5eSToby Isaac /*@
499736447a5eSToby Isaac   DMGetCoordinatesLocalized - Check if the DM coordinates have been localized for cells
499836447a5eSToby Isaac 
499936447a5eSToby Isaac   Input Parameter:
500036447a5eSToby Isaac . dm - The DM
500136447a5eSToby Isaac 
500236447a5eSToby Isaac   Output Parameter:
500336447a5eSToby Isaac   areLocalized - True if localized
500436447a5eSToby Isaac 
500536447a5eSToby Isaac   Level: developer
500636447a5eSToby Isaac 
500736447a5eSToby Isaac .seealso: DMLocalizeCoordinates()
500836447a5eSToby Isaac @*/
500936447a5eSToby Isaac PetscErrorCode DMGetCoordinatesLocalized(DM dm,PetscBool *areLocalized)
501036447a5eSToby Isaac {
501136447a5eSToby Isaac   DM             cdm;
501236447a5eSToby Isaac   PetscSection   coordSection;
501346a3a80fSLisandro Dalcin   PetscInt       cStart, cEnd, sStart, sEnd, c, dof;
501446a3a80fSLisandro Dalcin   PetscBool      isPlex, alreadyLocalized;
501536447a5eSToby Isaac   PetscErrorCode ierr;
501636447a5eSToby Isaac 
501736447a5eSToby Isaac   PetscFunctionBegin;
501836447a5eSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
501946a3a80fSLisandro Dalcin   PetscValidPointer(areLocalized, 2);
502046a3a80fSLisandro Dalcin 
50218b09590cSToby Isaac   *areLocalized = PETSC_FALSE;
502246a3a80fSLisandro Dalcin   if (!dm->periodic) PetscFunctionReturn(0); /* This is a hideous optimization hack! */
502346a3a80fSLisandro Dalcin 
502436447a5eSToby Isaac   /* We need some generic way of refering to cells/vertices */
502536447a5eSToby Isaac   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
502636447a5eSToby Isaac   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
502746a3a80fSLisandro Dalcin   ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isPlex);CHKERRQ(ierr);
502846a3a80fSLisandro Dalcin   if (!isPlex) SETERRQ(PetscObjectComm((PetscObject) cdm), PETSC_ERR_ARG_WRONG, "Coordinate localization requires a DMPLEX coordinate DM");
502946a3a80fSLisandro Dalcin 
503046a3a80fSLisandro Dalcin   ierr = DMPlexGetHeightStratum(cdm, 0, &cStart, &cEnd);CHKERRQ(ierr);
503136447a5eSToby Isaac   ierr = PetscSectionGetChart(coordSection, &sStart, &sEnd);CHKERRQ(ierr);
503236447a5eSToby Isaac   alreadyLocalized = PETSC_FALSE;
503346a3a80fSLisandro Dalcin   for (c = cStart; c < cEnd; ++c) {
503446a3a80fSLisandro Dalcin     if (c < sStart || c >= sEnd) continue;
503536447a5eSToby Isaac     ierr = PetscSectionGetDof(coordSection, c, &dof);CHKERRQ(ierr);
503646a3a80fSLisandro Dalcin     if (dof) { alreadyLocalized = PETSC_TRUE; break; }
503736447a5eSToby Isaac   }
503846a3a80fSLisandro Dalcin   ierr = MPIU_Allreduce(&alreadyLocalized,areLocalized,1,MPIU_BOOL,MPI_LOR,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
503936447a5eSToby Isaac   PetscFunctionReturn(0);
504036447a5eSToby Isaac }
504136447a5eSToby Isaac 
504236447a5eSToby Isaac 
50432e17dfb7SMatthew G. Knepley /*@
5044492b8470SStefano Zampini   DMLocalizeCoordinates - If a mesh is periodic, create local coordinates for cells having periodic faces
50452e17dfb7SMatthew G. Knepley 
50462e17dfb7SMatthew G. Knepley   Input Parameter:
50472e17dfb7SMatthew G. Knepley . dm - The DM
50482e17dfb7SMatthew G. Knepley 
50492e17dfb7SMatthew G. Knepley   Level: developer
50502e17dfb7SMatthew G. Knepley 
50512e17dfb7SMatthew G. Knepley .seealso: DMLocalizeCoordinate(), DMLocalizeAddCoordinate()
50522e17dfb7SMatthew G. Knepley @*/
50532e17dfb7SMatthew G. Knepley PetscErrorCode DMLocalizeCoordinates(DM dm)
50542e17dfb7SMatthew G. Knepley {
50552e17dfb7SMatthew G. Knepley   DM             cdm;
50562e17dfb7SMatthew G. Knepley   PetscSection   coordSection, cSection;
50572e17dfb7SMatthew G. Knepley   Vec            coordinates,  cVec;
50583e922f36SToby Isaac   PetscScalar   *coords, *coords2, *anchor, *localized;
50593e922f36SToby Isaac   PetscInt       Nc, vStart, vEnd, v, sStart, sEnd, newStart = PETSC_MAX_INT, newEnd = PETSC_MIN_INT, dof, d, off, off2, bs, coordSize;
5060e0ae35bbSToby Isaac   PetscBool      alreadyLocalized, alreadyLocalizedGlobal;
50613e922f36SToby Isaac   PetscInt       maxHeight = 0, h;
50623e922f36SToby Isaac   PetscInt       *pStart = NULL, *pEnd = NULL;
50632e17dfb7SMatthew G. Knepley   PetscErrorCode ierr;
50642e17dfb7SMatthew G. Knepley 
50652e17dfb7SMatthew G. Knepley   PetscFunctionBegin;
50662e17dfb7SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
506792c9c85fSStefano Zampini   if (!dm->periodic) PetscFunctionReturn(0);
5068f7cbd40bSStefano Zampini   ierr = DMGetCoordinatesLocalized(dm, &alreadyLocalized);CHKERRQ(ierr);
5069f7cbd40bSStefano Zampini   if (alreadyLocalized) PetscFunctionReturn(0);
5070f7cbd40bSStefano Zampini 
50712e17dfb7SMatthew G. Knepley   /* We need some generic way of refering to cells/vertices */
50722e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateDM(dm, &cdm);CHKERRQ(ierr);
50732e17dfb7SMatthew G. Knepley   {
50742e17dfb7SMatthew G. Knepley     PetscBool isplex;
50752e17dfb7SMatthew G. Knepley 
50762e17dfb7SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) cdm, DMPLEX, &isplex);CHKERRQ(ierr);
50772e17dfb7SMatthew G. Knepley     if (isplex) {
50782e17dfb7SMatthew G. Knepley       ierr = DMPlexGetDepthStratum(cdm, 0, &vStart, &vEnd);CHKERRQ(ierr);
50793e922f36SToby Isaac       ierr = DMPlexGetMaxProjectionHeight(cdm,&maxHeight);CHKERRQ(ierr);
508069291d52SBarry Smith       ierr = DMGetWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
50813e922f36SToby Isaac       pEnd = &pStart[maxHeight + 1];
50823e922f36SToby Isaac       newStart = vStart;
50833e922f36SToby Isaac       newEnd   = vEnd;
50843e922f36SToby Isaac       for (h = 0; h <= maxHeight; h++) {
50853e922f36SToby Isaac         ierr = DMPlexGetHeightStratum(cdm, h, &pStart[h], &pEnd[h]);CHKERRQ(ierr);
50863e922f36SToby Isaac         newStart = PetscMin(newStart,pStart[h]);
50873e922f36SToby Isaac         newEnd   = PetscMax(newEnd,pEnd[h]);
50883e922f36SToby Isaac       }
50892e17dfb7SMatthew G. Knepley     } else SETERRQ(PetscObjectComm((PetscObject) cdm), PETSC_ERR_ARG_WRONG, "Coordinate localization requires a DMPLEX coordinate DM");
50902e17dfb7SMatthew G. Knepley   }
50912e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinatesLocal(dm, &coordinates);CHKERRQ(ierr);
509243eeeb2dSStefano Zampini   if (!coordinates) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Missing local coordinates vector");
50932e17dfb7SMatthew G. Knepley   ierr = DMGetCoordinateSection(dm, &coordSection);CHKERRQ(ierr);
50943e922f36SToby Isaac   ierr = VecGetBlockSize(coordinates, &bs);CHKERRQ(ierr);
5095e0ae35bbSToby Isaac   ierr = PetscSectionGetChart(coordSection,&sStart,&sEnd);CHKERRQ(ierr);
50963e922f36SToby Isaac 
50972e17dfb7SMatthew G. Knepley   ierr = PetscSectionCreate(PetscObjectComm((PetscObject) dm), &cSection);CHKERRQ(ierr);
50982e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetNumFields(cSection, 1);CHKERRQ(ierr);
50992e17dfb7SMatthew G. Knepley   ierr = PetscSectionGetFieldComponents(coordSection, 0, &Nc);CHKERRQ(ierr);
51002e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetFieldComponents(cSection, 0, Nc);CHKERRQ(ierr);
51013e922f36SToby Isaac   ierr = PetscSectionSetChart(cSection, newStart, newEnd);CHKERRQ(ierr);
51023e922f36SToby Isaac 
510369291d52SBarry Smith   ierr = DMGetWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
51043e922f36SToby Isaac   localized = &anchor[bs];
51053e922f36SToby Isaac   alreadyLocalized = alreadyLocalizedGlobal = PETSC_TRUE;
51063e922f36SToby Isaac   for (h = 0; h <= maxHeight; h++) {
51073e922f36SToby Isaac     PetscInt cStart = pStart[h], cEnd = pEnd[h], c;
51083e922f36SToby Isaac 
51093e922f36SToby Isaac     for (c = cStart; c < cEnd; ++c) {
51103e922f36SToby Isaac       PetscScalar *cellCoords = NULL;
51113e922f36SToby Isaac       PetscInt     b;
51123e922f36SToby Isaac 
51133e922f36SToby Isaac       if (c < sStart || c >= sEnd) alreadyLocalized = PETSC_FALSE;
51143e922f36SToby Isaac       ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
51153e922f36SToby Isaac       for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b];
51163e922f36SToby Isaac       for (d = 0; d < dof/bs; ++d) {
51173e922f36SToby Isaac         ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], localized);CHKERRQ(ierr);
51183e922f36SToby Isaac         for (b = 0; b < bs; b++) {
51193e922f36SToby Isaac           if (cellCoords[d*bs + b] != localized[b]) break;
51203e922f36SToby Isaac         }
51213e922f36SToby Isaac         if (b < bs) break;
51223e922f36SToby Isaac       }
51233e922f36SToby Isaac       if (d < dof/bs) {
51243e922f36SToby Isaac         if (c >= sStart && c < sEnd) {
51253e922f36SToby Isaac           PetscInt cdof;
51263e922f36SToby Isaac 
51273e922f36SToby Isaac           ierr = PetscSectionGetDof(coordSection, c, &cdof);CHKERRQ(ierr);
51283e922f36SToby Isaac           if (cdof != dof) alreadyLocalized = PETSC_FALSE;
51293e922f36SToby Isaac         }
51303e922f36SToby Isaac         ierr = PetscSectionSetDof(cSection, c, dof);CHKERRQ(ierr);
51313e922f36SToby Isaac         ierr = PetscSectionSetFieldDof(cSection, c, 0, dof);CHKERRQ(ierr);
51323e922f36SToby Isaac       }
51333e922f36SToby Isaac       ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
51343e922f36SToby Isaac     }
51353e922f36SToby Isaac   }
51363e922f36SToby Isaac   ierr = MPI_Allreduce(&alreadyLocalized,&alreadyLocalizedGlobal,1,MPIU_BOOL,MPI_LAND,PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
51373e922f36SToby Isaac   if (alreadyLocalizedGlobal) {
513869291d52SBarry Smith     ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
51393e922f36SToby Isaac     ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr);
514069291d52SBarry Smith     ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
51413e922f36SToby Isaac     PetscFunctionReturn(0);
51423e922f36SToby Isaac   }
51432e17dfb7SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
51442e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
51452e17dfb7SMatthew G. Knepley     ierr = PetscSectionSetDof(cSection,     v,  dof);CHKERRQ(ierr);
51462e17dfb7SMatthew G. Knepley     ierr = PetscSectionSetFieldDof(cSection, v, 0, dof);CHKERRQ(ierr);
51472e17dfb7SMatthew G. Knepley   }
51482e17dfb7SMatthew G. Knepley   ierr = PetscSectionSetUp(cSection);CHKERRQ(ierr);
51492e17dfb7SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(cSection, &coordSize);CHKERRQ(ierr);
5150c2be7e5eSLisandro Dalcin   ierr = VecCreate(PETSC_COMM_SELF, &cVec);CHKERRQ(ierr);
51512e17dfb7SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject)cVec,"coordinates");CHKERRQ(ierr);
51522e17dfb7SMatthew G. Knepley   ierr = VecSetBlockSize(cVec,         bs);CHKERRQ(ierr);
51532e17dfb7SMatthew G. Knepley   ierr = VecSetSizes(cVec, coordSize, PETSC_DETERMINE);CHKERRQ(ierr);
51542e17dfb7SMatthew G. Knepley   ierr = VecSetType(cVec, VECSTANDARD);CHKERRQ(ierr);
5155c2be7e5eSLisandro Dalcin   ierr = VecGetArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr);
51562e17dfb7SMatthew G. Knepley   ierr = VecGetArray(cVec, &coords2);CHKERRQ(ierr);
51572e17dfb7SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
51582e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetDof(coordSection, v, &dof);CHKERRQ(ierr);
51592e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetOffset(coordSection, v, &off);CHKERRQ(ierr);
51602e17dfb7SMatthew G. Knepley     ierr = PetscSectionGetOffset(cSection,     v, &off2);CHKERRQ(ierr);
51612e17dfb7SMatthew G. Knepley     for (d = 0; d < dof; ++d) coords2[off2+d] = coords[off+d];
51622e17dfb7SMatthew G. Knepley   }
51633e922f36SToby Isaac   for (h = 0; h <= maxHeight; h++) {
51643e922f36SToby Isaac     PetscInt cStart = pStart[h], cEnd = pEnd[h], c;
51653e922f36SToby Isaac 
51662e17dfb7SMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
51672e17dfb7SMatthew G. Knepley       PetscScalar *cellCoords = NULL;
51683e922f36SToby Isaac       PetscInt     b, cdof;
51692e17dfb7SMatthew G. Knepley 
51703e922f36SToby Isaac       ierr = PetscSectionGetDof(cSection,c,&cdof);CHKERRQ(ierr);
51713e922f36SToby Isaac       if (!cdof) continue;
51722e17dfb7SMatthew G. Knepley       ierr = DMPlexVecGetClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
51732e17dfb7SMatthew G. Knepley       ierr = PetscSectionGetOffset(cSection, c, &off2);CHKERRQ(ierr);
51742e17dfb7SMatthew G. Knepley       for (b = 0; b < bs; ++b) anchor[b] = cellCoords[b];
51752e17dfb7SMatthew G. Knepley       for (d = 0; d < dof/bs; ++d) {ierr = DMLocalizeCoordinate_Internal(dm, bs, anchor, &cellCoords[d*bs], &coords2[off2+d*bs]);CHKERRQ(ierr);}
51762e17dfb7SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(cdm, coordSection, coordinates, c, &dof, &cellCoords);CHKERRQ(ierr);
51772e17dfb7SMatthew G. Knepley     }
51783e922f36SToby Isaac   }
517969291d52SBarry Smith   ierr = DMRestoreWorkArray(dm, 2 * bs, MPIU_SCALAR, &anchor);CHKERRQ(ierr);
518069291d52SBarry Smith   ierr = DMRestoreWorkArray(dm,2*(maxHeight + 1),MPIU_INT,&pStart);CHKERRQ(ierr);
5181c2be7e5eSLisandro Dalcin   ierr = VecRestoreArrayRead(coordinates, (const PetscScalar**)&coords);CHKERRQ(ierr);
51822e17dfb7SMatthew G. Knepley   ierr = VecRestoreArray(cVec, &coords2);CHKERRQ(ierr);
51832e17dfb7SMatthew G. Knepley   ierr = DMSetCoordinateSection(dm, PETSC_DETERMINE, cSection);CHKERRQ(ierr);
51842e17dfb7SMatthew G. Knepley   ierr = DMSetCoordinatesLocal(dm, cVec);CHKERRQ(ierr);
51852e17dfb7SMatthew G. Knepley   ierr = VecDestroy(&cVec);CHKERRQ(ierr);
51862e17dfb7SMatthew G. Knepley   ierr = PetscSectionDestroy(&cSection);CHKERRQ(ierr);
51872e17dfb7SMatthew G. Knepley   PetscFunctionReturn(0);
51882e17dfb7SMatthew G. Knepley }
51892e17dfb7SMatthew G. Knepley 
5190e87bb0d3SMatthew G Knepley /*@
51913a93e3b7SToby Isaac   DMLocatePoints - Locate the points in v in the mesh and return a PetscSF of the containing cells
5192e87bb0d3SMatthew G Knepley 
51933a93e3b7SToby Isaac   Collective on Vec v (see explanation below)
5194e87bb0d3SMatthew G Knepley 
5195e87bb0d3SMatthew G Knepley   Input Parameters:
5196e87bb0d3SMatthew G Knepley + dm - The DM
51973a93e3b7SToby Isaac . v - The Vec of points
519862a38674SMatthew G. Knepley . ltype - The type of point location, e.g. DM_POINTLOCATION_NONE or DM_POINTLOCATION_NEAREST
51993a93e3b7SToby Isaac - cells - Points to either NULL, or a PetscSF with guesses for which cells contain each point.
5200e87bb0d3SMatthew G Knepley 
520161e3bb9bSMatthew G Knepley   Output Parameter:
520262a38674SMatthew G. Knepley + v - The Vec of points, which now contains the nearest mesh points to the given points if DM_POINTLOCATION_NEAREST is used
520362a38674SMatthew G. Knepley - cells - The PetscSF containing the ranks and local indices of the containing points.
52043a93e3b7SToby Isaac 
5205e87bb0d3SMatthew G Knepley 
5206e87bb0d3SMatthew G Knepley   Level: developer
520761e3bb9bSMatthew G Knepley 
520862a38674SMatthew G. Knepley   Notes:
52093a93e3b7SToby Isaac   To do a search of the local cells of the mesh, v should have PETSC_COMM_SELF as its communicator.
521062a38674SMatthew G. Knepley   To do a search of all the cells in the distributed mesh, v should have the same communicator as dm.
52113a93e3b7SToby Isaac 
52123a93e3b7SToby Isaac   If *cellSF is NULL on input, a PetscSF will be created.
521362a38674SMatthew G. Knepley   If *cellSF is not NULL on input, it should point to an existing PetscSF, whose graph will be used as initial guesses.
52143a93e3b7SToby Isaac 
52153a93e3b7SToby Isaac   An array that maps each point to its containing cell can be obtained with
52163a93e3b7SToby Isaac 
521762a38674SMatthew G. Knepley $    const PetscSFNode *cells;
521862a38674SMatthew G. Knepley $    PetscInt           nFound;
5219a6216909SToby Isaac $    const PetscInt    *found;
522062a38674SMatthew G. Knepley $
5221a6216909SToby Isaac $    PetscSFGetGraph(cellSF,NULL,&nFound,&found,&cells);
52223a93e3b7SToby Isaac 
52233a93e3b7SToby 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
52243a93e3b7SToby Isaac   the index of the cell in its rank's local numbering.
52253a93e3b7SToby Isaac 
522661e3bb9bSMatthew G Knepley .keywords: point location, mesh
522762a38674SMatthew G. Knepley .seealso: DMSetCoordinates(), DMSetCoordinatesLocal(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMPointLocationType
522861e3bb9bSMatthew G Knepley @*/
522962a38674SMatthew G. Knepley PetscErrorCode DMLocatePoints(DM dm, Vec v, DMPointLocationType ltype, PetscSF *cellSF)
5230e87bb0d3SMatthew G Knepley {
5231735aa83eSMatthew G Knepley   PetscErrorCode ierr;
5232735aa83eSMatthew G Knepley 
5233e87bb0d3SMatthew G Knepley   PetscFunctionBegin;
5234e87bb0d3SMatthew G Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5235e87bb0d3SMatthew G Knepley   PetscValidHeaderSpecific(v,VEC_CLASSID,2);
5236e0fc9d1bSMatthew G. Knepley   PetscValidPointer(cellSF,4);
52373a93e3b7SToby Isaac   if (*cellSF) {
52383a93e3b7SToby Isaac     PetscMPIInt result;
52393a93e3b7SToby Isaac 
5240e0fc9d1bSMatthew G. Knepley     PetscValidHeaderSpecific(*cellSF,PETSCSF_CLASSID,4);
5241a4f09dd6SDave May     ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)v),PetscObjectComm((PetscObject)*cellSF),&result);CHKERRQ(ierr);
52423a93e3b7SToby 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");
5243e0fc9d1bSMatthew G. Knepley   } else {
52443a93e3b7SToby Isaac     ierr = PetscSFCreate(PetscObjectComm((PetscObject)v),cellSF);CHKERRQ(ierr);
52453a93e3b7SToby Isaac   }
524647a35634SPatrick Farrell   ierr = PetscLogEventBegin(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr);
5247735aa83eSMatthew G Knepley   if (dm->ops->locatepoints) {
524862a38674SMatthew G. Knepley     ierr = (*dm->ops->locatepoints)(dm,v,ltype,*cellSF);CHKERRQ(ierr);
524982f516ccSBarry Smith   } else SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_SUP, "Point location not available for this DM");
525047a35634SPatrick Farrell   ierr = PetscLogEventEnd(DM_LocatePoints,dm,0,0,0);CHKERRQ(ierr);
5251e87bb0d3SMatthew G Knepley   PetscFunctionReturn(0);
5252e87bb0d3SMatthew G Knepley }
525314f150ffSMatthew G. Knepley 
5254f4d763aaSMatthew G. Knepley /*@
5255f4d763aaSMatthew G. Knepley   DMGetOutputDM - Retrieve the DM associated with the layout for output
5256f4d763aaSMatthew G. Knepley 
5257f4d763aaSMatthew G. Knepley   Input Parameter:
5258f4d763aaSMatthew G. Knepley . dm - The original DM
5259f4d763aaSMatthew G. Knepley 
5260f4d763aaSMatthew G. Knepley   Output Parameter:
5261f4d763aaSMatthew G. Knepley . odm - The DM which provides the layout for output
5262f4d763aaSMatthew G. Knepley 
5263f4d763aaSMatthew G. Knepley   Level: intermediate
5264f4d763aaSMatthew G. Knepley 
5265e87a4003SBarry Smith .seealso: VecView(), DMGetGlobalSection()
5266f4d763aaSMatthew G. Knepley @*/
526714f150ffSMatthew G. Knepley PetscErrorCode DMGetOutputDM(DM dm, DM *odm)
526814f150ffSMatthew G. Knepley {
5269c26acbdeSMatthew G. Knepley   PetscSection   section;
52702d4e4a49SMatthew G. Knepley   PetscBool      hasConstraints, ghasConstraints;
527114f150ffSMatthew G. Knepley   PetscErrorCode ierr;
527214f150ffSMatthew G. Knepley 
527314f150ffSMatthew G. Knepley   PetscFunctionBegin;
527414f150ffSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
527514f150ffSMatthew G. Knepley   PetscValidPointer(odm,2);
5276e87a4003SBarry Smith   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
5277c26acbdeSMatthew G. Knepley   ierr = PetscSectionHasConstraints(section, &hasConstraints);CHKERRQ(ierr);
5278127fe6b9SMatthew G. Knepley   ierr = MPI_Allreduce(&hasConstraints, &ghasConstraints, 1, MPIU_BOOL, MPI_LOR, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);
52792d4e4a49SMatthew G. Knepley   if (!ghasConstraints) {
5280c26acbdeSMatthew G. Knepley     *odm = dm;
5281c26acbdeSMatthew G. Knepley     PetscFunctionReturn(0);
5282c26acbdeSMatthew G. Knepley   }
528314f150ffSMatthew G. Knepley   if (!dm->dmBC) {
52840305aff6SMatthew G. Knepley     PetscDS      ds;
5285c26acbdeSMatthew G. Knepley     PetscSection newSection, gsection;
528614f150ffSMatthew G. Knepley     PetscSF      sf;
528714f150ffSMatthew G. Knepley 
528814f150ffSMatthew G. Knepley     ierr = DMClone(dm, &dm->dmBC);CHKERRQ(ierr);
52890305aff6SMatthew G. Knepley     ierr = DMGetDS(dm, &ds);CHKERRQ(ierr);
52900305aff6SMatthew G. Knepley     ierr = DMSetDS(dm->dmBC, ds);CHKERRQ(ierr);
529114f150ffSMatthew G. Knepley     ierr = PetscSectionClone(section, &newSection);CHKERRQ(ierr);
5292e87a4003SBarry Smith     ierr = DMSetSection(dm->dmBC, newSection);CHKERRQ(ierr);
529314f150ffSMatthew G. Knepley     ierr = PetscSectionDestroy(&newSection);CHKERRQ(ierr);
529414f150ffSMatthew G. Knepley     ierr = DMGetPointSF(dm->dmBC, &sf);CHKERRQ(ierr);
529515b58121SMatthew G. Knepley     ierr = PetscSectionCreateGlobalSection(section, sf, PETSC_TRUE, PETSC_FALSE, &gsection);CHKERRQ(ierr);
5296e87a4003SBarry Smith     ierr = DMSetGlobalSection(dm->dmBC, gsection);CHKERRQ(ierr);
529714f150ffSMatthew G. Knepley     ierr = PetscSectionDestroy(&gsection);CHKERRQ(ierr);
529814f150ffSMatthew G. Knepley   }
529914f150ffSMatthew G. Knepley   *odm = dm->dmBC;
530014f150ffSMatthew G. Knepley   PetscFunctionReturn(0);
530114f150ffSMatthew G. Knepley }
5302f4d763aaSMatthew G. Knepley 
5303f4d763aaSMatthew G. Knepley /*@
5304cdb7a50dSMatthew G. Knepley   DMGetOutputSequenceNumber - Retrieve the sequence number/value for output
5305f4d763aaSMatthew G. Knepley 
5306f4d763aaSMatthew G. Knepley   Input Parameter:
5307f4d763aaSMatthew G. Knepley . dm - The original DM
5308f4d763aaSMatthew G. Knepley 
5309cdb7a50dSMatthew G. Knepley   Output Parameters:
5310cdb7a50dSMatthew G. Knepley + num - The output sequence number
5311cdb7a50dSMatthew G. Knepley - val - The output sequence value
5312f4d763aaSMatthew G. Knepley 
5313f4d763aaSMatthew G. Knepley   Level: intermediate
5314f4d763aaSMatthew G. Knepley 
5315f4d763aaSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
5316f4d763aaSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
5317f4d763aaSMatthew G. Knepley 
5318f4d763aaSMatthew G. Knepley .seealso: VecView()
5319f4d763aaSMatthew G. Knepley @*/
5320cdb7a50dSMatthew G. Knepley PetscErrorCode DMGetOutputSequenceNumber(DM dm, PetscInt *num, PetscReal *val)
5321f4d763aaSMatthew G. Knepley {
5322f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
5323f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5324cdb7a50dSMatthew G. Knepley   if (num) {PetscValidPointer(num,2); *num = dm->outputSequenceNum;}
5325cdb7a50dSMatthew G. Knepley   if (val) {PetscValidPointer(val,3);*val = dm->outputSequenceVal;}
5326f4d763aaSMatthew G. Knepley   PetscFunctionReturn(0);
5327f4d763aaSMatthew G. Knepley }
5328f4d763aaSMatthew G. Knepley 
5329f4d763aaSMatthew G. Knepley /*@
5330cdb7a50dSMatthew G. Knepley   DMSetOutputSequenceNumber - Set the sequence number/value for output
5331f4d763aaSMatthew G. Knepley 
5332f4d763aaSMatthew G. Knepley   Input Parameters:
5333f4d763aaSMatthew G. Knepley + dm - The original DM
5334cdb7a50dSMatthew G. Knepley . num - The output sequence number
5335cdb7a50dSMatthew G. Knepley - val - The output sequence value
5336f4d763aaSMatthew G. Knepley 
5337f4d763aaSMatthew G. Knepley   Level: intermediate
5338f4d763aaSMatthew G. Knepley 
5339f4d763aaSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
5340f4d763aaSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
5341f4d763aaSMatthew G. Knepley 
5342f4d763aaSMatthew G. Knepley .seealso: VecView()
5343f4d763aaSMatthew G. Knepley @*/
5344cdb7a50dSMatthew G. Knepley PetscErrorCode DMSetOutputSequenceNumber(DM dm, PetscInt num, PetscReal val)
5345f4d763aaSMatthew G. Knepley {
5346f4d763aaSMatthew G. Knepley   PetscFunctionBegin;
5347f4d763aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5348f4d763aaSMatthew G. Knepley   dm->outputSequenceNum = num;
5349cdb7a50dSMatthew G. Knepley   dm->outputSequenceVal = val;
5350cdb7a50dSMatthew G. Knepley   PetscFunctionReturn(0);
5351cdb7a50dSMatthew G. Knepley }
5352cdb7a50dSMatthew G. Knepley 
5353cdb7a50dSMatthew G. Knepley /*@C
5354cdb7a50dSMatthew G. Knepley   DMOutputSequenceLoad - Retrieve the sequence value from a Viewer
5355cdb7a50dSMatthew G. Knepley 
5356cdb7a50dSMatthew G. Knepley   Input Parameters:
5357cdb7a50dSMatthew G. Knepley + dm   - The original DM
5358cdb7a50dSMatthew G. Knepley . name - The sequence name
5359cdb7a50dSMatthew G. Knepley - num  - The output sequence number
5360cdb7a50dSMatthew G. Knepley 
5361cdb7a50dSMatthew G. Knepley   Output Parameter:
5362cdb7a50dSMatthew G. Knepley . val  - The output sequence value
5363cdb7a50dSMatthew G. Knepley 
5364cdb7a50dSMatthew G. Knepley   Level: intermediate
5365cdb7a50dSMatthew G. Knepley 
5366cdb7a50dSMatthew G. Knepley   Note: This is intended for output that should appear in sequence, for instance
5367cdb7a50dSMatthew G. Knepley   a set of timesteps in an HDF5 file, or a set of realizations of a stochastic system.
5368cdb7a50dSMatthew G. Knepley 
5369cdb7a50dSMatthew G. Knepley .seealso: DMGetOutputSequenceNumber(), DMSetOutputSequenceNumber(), VecView()
5370cdb7a50dSMatthew G. Knepley @*/
5371cdb7a50dSMatthew G. Knepley PetscErrorCode DMOutputSequenceLoad(DM dm, PetscViewer viewer, const char *name, PetscInt num, PetscReal *val)
5372cdb7a50dSMatthew G. Knepley {
5373cdb7a50dSMatthew G. Knepley   PetscBool      ishdf5;
5374cdb7a50dSMatthew G. Knepley   PetscErrorCode ierr;
5375cdb7a50dSMatthew G. Knepley 
5376cdb7a50dSMatthew G. Knepley   PetscFunctionBegin;
5377cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
5378cdb7a50dSMatthew G. Knepley   PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2);
5379cdb7a50dSMatthew G. Knepley   PetscValidPointer(val,4);
5380cdb7a50dSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr);
5381cdb7a50dSMatthew G. Knepley   if (ishdf5) {
5382cdb7a50dSMatthew G. Knepley #if defined(PETSC_HAVE_HDF5)
5383cdb7a50dSMatthew G. Knepley     PetscScalar value;
5384cdb7a50dSMatthew G. Knepley 
538539d25373SMatthew G. Knepley     ierr = DMSequenceLoad_HDF5_Internal(dm, name, num, &value, viewer);CHKERRQ(ierr);
53864aeb217fSMatthew G. Knepley     *val = PetscRealPart(value);
5387cdb7a50dSMatthew G. Knepley #endif
5388cdb7a50dSMatthew G. Knepley   } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Invalid viewer; open viewer with PetscViewerHDF5Open()");
5389f4d763aaSMatthew G. Knepley   PetscFunctionReturn(0);
5390f4d763aaSMatthew G. Knepley }
53918e4ac7eaSMatthew G. Knepley 
53928e4ac7eaSMatthew G. Knepley /*@
53938e4ac7eaSMatthew G. Knepley   DMGetUseNatural - Get the flag for creating a mapping to the natural order on distribution
53948e4ac7eaSMatthew G. Knepley 
53958e4ac7eaSMatthew G. Knepley   Not collective
53968e4ac7eaSMatthew G. Knepley 
53978e4ac7eaSMatthew G. Knepley   Input Parameter:
53988e4ac7eaSMatthew G. Knepley . dm - The DM
53998e4ac7eaSMatthew G. Knepley 
54008e4ac7eaSMatthew G. Knepley   Output Parameter:
54018e4ac7eaSMatthew G. Knepley . useNatural - The flag to build the mapping to a natural order during distribution
54028e4ac7eaSMatthew G. Knepley 
54038e4ac7eaSMatthew G. Knepley   Level: beginner
54048e4ac7eaSMatthew G. Knepley 
54058e4ac7eaSMatthew G. Knepley .seealso: DMSetUseNatural(), DMCreate()
54068e4ac7eaSMatthew G. Knepley @*/
54078e4ac7eaSMatthew G. Knepley PetscErrorCode DMGetUseNatural(DM dm, PetscBool *useNatural)
54088e4ac7eaSMatthew G. Knepley {
54098e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
54108e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
54118e4ac7eaSMatthew G. Knepley   PetscValidPointer(useNatural, 2);
54128e4ac7eaSMatthew G. Knepley   *useNatural = dm->useNatural;
54138e4ac7eaSMatthew G. Knepley   PetscFunctionReturn(0);
54148e4ac7eaSMatthew G. Knepley }
54158e4ac7eaSMatthew G. Knepley 
54168e4ac7eaSMatthew G. Knepley /*@
54175d3b26e6SMatthew G. Knepley   DMSetUseNatural - Set the flag for creating a mapping to the natural order after distribution
54188e4ac7eaSMatthew G. Knepley 
54198e4ac7eaSMatthew G. Knepley   Collective on dm
54208e4ac7eaSMatthew G. Knepley 
54218e4ac7eaSMatthew G. Knepley   Input Parameters:
54228e4ac7eaSMatthew G. Knepley + dm - The DM
54238e4ac7eaSMatthew G. Knepley - useNatural - The flag to build the mapping to a natural order during distribution
54248e4ac7eaSMatthew G. Knepley 
54255d3b26e6SMatthew G. Knepley   Note: This also causes the map to be build after DMCreateSubDM() and DMCreateSuperDM()
54265d3b26e6SMatthew G. Knepley 
54278e4ac7eaSMatthew G. Knepley   Level: beginner
54288e4ac7eaSMatthew G. Knepley 
54295d3b26e6SMatthew G. Knepley .seealso: DMGetUseNatural(), DMCreate(), DMPlexDistribute(), DMCreateSubDM(), DMCreateSuperDM()
54308e4ac7eaSMatthew G. Knepley @*/
54318e4ac7eaSMatthew G. Knepley PetscErrorCode DMSetUseNatural(DM dm, PetscBool useNatural)
54328e4ac7eaSMatthew G. Knepley {
54338e4ac7eaSMatthew G. Knepley   PetscFunctionBegin;
54348e4ac7eaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
54358833efb5SBlaise Bourdin   PetscValidLogicalCollectiveBool(dm, useNatural, 2);
54368e4ac7eaSMatthew G. Knepley   dm->useNatural = useNatural;
54378e4ac7eaSMatthew G. Knepley   PetscFunctionReturn(0);
54388e4ac7eaSMatthew G. Knepley }
5439c58f1c22SToby Isaac 
5440c58f1c22SToby Isaac 
5441c58f1c22SToby Isaac /*@C
5442c58f1c22SToby Isaac   DMCreateLabel - Create a label of the given name if it does not already exist
5443c58f1c22SToby Isaac 
5444c58f1c22SToby Isaac   Not Collective
5445c58f1c22SToby Isaac 
5446c58f1c22SToby Isaac   Input Parameters:
5447c58f1c22SToby Isaac + dm   - The DM object
5448c58f1c22SToby Isaac - name - The label name
5449c58f1c22SToby Isaac 
5450c58f1c22SToby Isaac   Level: intermediate
5451c58f1c22SToby Isaac 
5452c58f1c22SToby Isaac .keywords: mesh
5453c58f1c22SToby Isaac .seealso: DMLabelCreate(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5454c58f1c22SToby Isaac @*/
5455c58f1c22SToby Isaac PetscErrorCode DMCreateLabel(DM dm, const char name[])
5456c58f1c22SToby Isaac {
5457c58f1c22SToby Isaac   DMLabelLink    next  = dm->labels->next;
5458c58f1c22SToby Isaac   PetscBool      flg   = PETSC_FALSE;
5459c58f1c22SToby Isaac   PetscErrorCode ierr;
5460c58f1c22SToby Isaac 
5461c58f1c22SToby Isaac   PetscFunctionBegin;
5462c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5463c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5464c58f1c22SToby Isaac   while (next) {
5465c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, &flg);CHKERRQ(ierr);
5466c58f1c22SToby Isaac     if (flg) break;
5467c58f1c22SToby Isaac     next = next->next;
5468c58f1c22SToby Isaac   }
5469c58f1c22SToby Isaac   if (!flg) {
5470c58f1c22SToby Isaac     DMLabelLink tmpLabel;
5471c58f1c22SToby Isaac 
5472c58f1c22SToby Isaac     ierr = PetscCalloc1(1, &tmpLabel);CHKERRQ(ierr);
5473c58f1c22SToby Isaac     ierr = DMLabelCreate(name, &tmpLabel->label);CHKERRQ(ierr);
5474c58f1c22SToby Isaac     tmpLabel->output = PETSC_TRUE;
5475c58f1c22SToby Isaac     tmpLabel->next   = dm->labels->next;
5476c58f1c22SToby Isaac     dm->labels->next = tmpLabel;
5477c58f1c22SToby Isaac   }
5478c58f1c22SToby Isaac   PetscFunctionReturn(0);
5479c58f1c22SToby Isaac }
5480c58f1c22SToby Isaac 
5481c58f1c22SToby Isaac /*@C
5482c58f1c22SToby Isaac   DMGetLabelValue - Get the value in a Sieve Label for the given point, with 0 as the default
5483c58f1c22SToby Isaac 
5484c58f1c22SToby Isaac   Not Collective
5485c58f1c22SToby Isaac 
5486c58f1c22SToby Isaac   Input Parameters:
5487c58f1c22SToby Isaac + dm   - The DM object
5488c58f1c22SToby Isaac . name - The label name
5489c58f1c22SToby Isaac - point - The mesh point
5490c58f1c22SToby Isaac 
5491c58f1c22SToby Isaac   Output Parameter:
5492c58f1c22SToby Isaac . value - The label value for this point, or -1 if the point is not in the label
5493c58f1c22SToby Isaac 
5494c58f1c22SToby Isaac   Level: beginner
5495c58f1c22SToby Isaac 
5496c58f1c22SToby Isaac .keywords: mesh
5497c58f1c22SToby Isaac .seealso: DMLabelGetValue(), DMSetLabelValue(), DMGetStratumIS()
5498c58f1c22SToby Isaac @*/
5499c58f1c22SToby Isaac PetscErrorCode DMGetLabelValue(DM dm, const char name[], PetscInt point, PetscInt *value)
5500c58f1c22SToby Isaac {
5501c58f1c22SToby Isaac   DMLabel        label;
5502c58f1c22SToby Isaac   PetscErrorCode ierr;
5503c58f1c22SToby Isaac 
5504c58f1c22SToby Isaac   PetscFunctionBegin;
5505c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5506c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5507c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
550813903a91SSatish Balay   if (!label) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "No label named %s was found", name);
5509c58f1c22SToby Isaac   ierr = DMLabelGetValue(label, point, value);CHKERRQ(ierr);
5510c58f1c22SToby Isaac   PetscFunctionReturn(0);
5511c58f1c22SToby Isaac }
5512c58f1c22SToby Isaac 
5513c58f1c22SToby Isaac /*@C
5514c58f1c22SToby Isaac   DMSetLabelValue - Add a point to a Sieve Label with given value
5515c58f1c22SToby Isaac 
5516c58f1c22SToby Isaac   Not Collective
5517c58f1c22SToby Isaac 
5518c58f1c22SToby Isaac   Input Parameters:
5519c58f1c22SToby Isaac + dm   - The DM object
5520c58f1c22SToby Isaac . name - The label name
5521c58f1c22SToby Isaac . point - The mesh point
5522c58f1c22SToby Isaac - value - The label value for this point
5523c58f1c22SToby Isaac 
5524c58f1c22SToby Isaac   Output Parameter:
5525c58f1c22SToby Isaac 
5526c58f1c22SToby Isaac   Level: beginner
5527c58f1c22SToby Isaac 
5528c58f1c22SToby Isaac .keywords: mesh
5529c58f1c22SToby Isaac .seealso: DMLabelSetValue(), DMGetStratumIS(), DMClearLabelValue()
5530c58f1c22SToby Isaac @*/
5531c58f1c22SToby Isaac PetscErrorCode DMSetLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
5532c58f1c22SToby Isaac {
5533c58f1c22SToby Isaac   DMLabel        label;
5534c58f1c22SToby Isaac   PetscErrorCode ierr;
5535c58f1c22SToby Isaac 
5536c58f1c22SToby Isaac   PetscFunctionBegin;
5537c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5538c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5539c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5540c58f1c22SToby Isaac   if (!label) {
5541c58f1c22SToby Isaac     ierr = DMCreateLabel(dm, name);CHKERRQ(ierr);
5542c58f1c22SToby Isaac     ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5543c58f1c22SToby Isaac   }
5544c58f1c22SToby Isaac   ierr = DMLabelSetValue(label, point, value);CHKERRQ(ierr);
5545c58f1c22SToby Isaac   PetscFunctionReturn(0);
5546c58f1c22SToby Isaac }
5547c58f1c22SToby Isaac 
5548c58f1c22SToby Isaac /*@C
5549c58f1c22SToby Isaac   DMClearLabelValue - Remove a point from a Sieve Label with given value
5550c58f1c22SToby Isaac 
5551c58f1c22SToby Isaac   Not Collective
5552c58f1c22SToby Isaac 
5553c58f1c22SToby Isaac   Input Parameters:
5554c58f1c22SToby Isaac + dm   - The DM object
5555c58f1c22SToby Isaac . name - The label name
5556c58f1c22SToby Isaac . point - The mesh point
5557c58f1c22SToby Isaac - value - The label value for this point
5558c58f1c22SToby Isaac 
5559c58f1c22SToby Isaac   Output Parameter:
5560c58f1c22SToby Isaac 
5561c58f1c22SToby Isaac   Level: beginner
5562c58f1c22SToby Isaac 
5563c58f1c22SToby Isaac .keywords: mesh
5564c58f1c22SToby Isaac .seealso: DMLabelClearValue(), DMSetLabelValue(), DMGetStratumIS()
5565c58f1c22SToby Isaac @*/
5566c58f1c22SToby Isaac PetscErrorCode DMClearLabelValue(DM dm, const char name[], PetscInt point, PetscInt value)
5567c58f1c22SToby Isaac {
5568c58f1c22SToby Isaac   DMLabel        label;
5569c58f1c22SToby Isaac   PetscErrorCode ierr;
5570c58f1c22SToby Isaac 
5571c58f1c22SToby Isaac   PetscFunctionBegin;
5572c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5573c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5574c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5575c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
5576c58f1c22SToby Isaac   ierr = DMLabelClearValue(label, point, value);CHKERRQ(ierr);
5577c58f1c22SToby Isaac   PetscFunctionReturn(0);
5578c58f1c22SToby Isaac }
5579c58f1c22SToby Isaac 
5580c58f1c22SToby Isaac /*@C
5581c58f1c22SToby Isaac   DMGetLabelSize - Get the number of different integer ids in a Label
5582c58f1c22SToby Isaac 
5583c58f1c22SToby Isaac   Not Collective
5584c58f1c22SToby Isaac 
5585c58f1c22SToby Isaac   Input Parameters:
5586c58f1c22SToby Isaac + dm   - The DM object
5587c58f1c22SToby Isaac - name - The label name
5588c58f1c22SToby Isaac 
5589c58f1c22SToby Isaac   Output Parameter:
5590c58f1c22SToby Isaac . size - The number of different integer ids, or 0 if the label does not exist
5591c58f1c22SToby Isaac 
5592c58f1c22SToby Isaac   Level: beginner
5593c58f1c22SToby Isaac 
5594c58f1c22SToby Isaac .keywords: mesh
5595c58f1c22SToby Isaac .seealso: DMLabeGetNumValues(), DMSetLabelValue()
5596c58f1c22SToby Isaac @*/
5597c58f1c22SToby Isaac PetscErrorCode DMGetLabelSize(DM dm, const char name[], PetscInt *size)
5598c58f1c22SToby Isaac {
5599c58f1c22SToby Isaac   DMLabel        label;
5600c58f1c22SToby Isaac   PetscErrorCode ierr;
5601c58f1c22SToby Isaac 
5602c58f1c22SToby Isaac   PetscFunctionBegin;
5603c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5604c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5605c58f1c22SToby Isaac   PetscValidPointer(size, 3);
5606c58f1c22SToby Isaac   ierr  = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5607c58f1c22SToby Isaac   *size = 0;
5608c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
5609c58f1c22SToby Isaac   ierr = DMLabelGetNumValues(label, size);CHKERRQ(ierr);
5610c58f1c22SToby Isaac   PetscFunctionReturn(0);
5611c58f1c22SToby Isaac }
5612c58f1c22SToby Isaac 
5613c58f1c22SToby Isaac /*@C
5614c58f1c22SToby Isaac   DMGetLabelIdIS - Get the integer ids in a label
5615c58f1c22SToby Isaac 
5616c58f1c22SToby Isaac   Not Collective
5617c58f1c22SToby Isaac 
5618c58f1c22SToby Isaac   Input Parameters:
5619c58f1c22SToby Isaac + mesh - The DM object
5620c58f1c22SToby Isaac - name - The label name
5621c58f1c22SToby Isaac 
5622c58f1c22SToby Isaac   Output Parameter:
5623c58f1c22SToby Isaac . ids - The integer ids, or NULL if the label does not exist
5624c58f1c22SToby Isaac 
5625c58f1c22SToby Isaac   Level: beginner
5626c58f1c22SToby Isaac 
5627c58f1c22SToby Isaac .keywords: mesh
5628c58f1c22SToby Isaac .seealso: DMLabelGetValueIS(), DMGetLabelSize()
5629c58f1c22SToby Isaac @*/
5630c58f1c22SToby Isaac PetscErrorCode DMGetLabelIdIS(DM dm, const char name[], IS *ids)
5631c58f1c22SToby Isaac {
5632c58f1c22SToby Isaac   DMLabel        label;
5633c58f1c22SToby Isaac   PetscErrorCode ierr;
5634c58f1c22SToby Isaac 
5635c58f1c22SToby Isaac   PetscFunctionBegin;
5636c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5637c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5638c58f1c22SToby Isaac   PetscValidPointer(ids, 3);
5639c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5640c58f1c22SToby Isaac   *ids = NULL;
5641dab2e251SBlaise Bourdin  if (label) {
5642c58f1c22SToby Isaac     ierr = DMLabelGetValueIS(label, ids);CHKERRQ(ierr);
5643dab2e251SBlaise Bourdin   } else {
5644dab2e251SBlaise Bourdin     /* returning an empty IS */
5645dab2e251SBlaise Bourdin     ierr = ISCreateGeneral(PETSC_COMM_SELF,0,NULL,PETSC_USE_POINTER,ids);CHKERRQ(ierr);
5646dab2e251SBlaise Bourdin   }
5647c58f1c22SToby Isaac   PetscFunctionReturn(0);
5648c58f1c22SToby Isaac }
5649c58f1c22SToby Isaac 
5650c58f1c22SToby Isaac /*@C
5651c58f1c22SToby Isaac   DMGetStratumSize - Get the number of points in a label stratum
5652c58f1c22SToby Isaac 
5653c58f1c22SToby Isaac   Not Collective
5654c58f1c22SToby Isaac 
5655c58f1c22SToby Isaac   Input Parameters:
5656c58f1c22SToby Isaac + dm - The DM object
5657c58f1c22SToby Isaac . name - The label name
5658c58f1c22SToby Isaac - value - The stratum value
5659c58f1c22SToby Isaac 
5660c58f1c22SToby Isaac   Output Parameter:
5661c58f1c22SToby Isaac . size - The stratum size
5662c58f1c22SToby Isaac 
5663c58f1c22SToby Isaac   Level: beginner
5664c58f1c22SToby Isaac 
5665c58f1c22SToby Isaac .keywords: mesh
5666c58f1c22SToby Isaac .seealso: DMLabelGetStratumSize(), DMGetLabelSize(), DMGetLabelIds()
5667c58f1c22SToby Isaac @*/
5668c58f1c22SToby Isaac PetscErrorCode DMGetStratumSize(DM dm, const char name[], PetscInt value, PetscInt *size)
5669c58f1c22SToby Isaac {
5670c58f1c22SToby Isaac   DMLabel        label;
5671c58f1c22SToby Isaac   PetscErrorCode ierr;
5672c58f1c22SToby Isaac 
5673c58f1c22SToby Isaac   PetscFunctionBegin;
5674c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5675c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5676c58f1c22SToby Isaac   PetscValidPointer(size, 4);
5677c58f1c22SToby Isaac   ierr  = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5678c58f1c22SToby Isaac   *size = 0;
5679c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
5680c58f1c22SToby Isaac   ierr = DMLabelGetStratumSize(label, value, size);CHKERRQ(ierr);
5681c58f1c22SToby Isaac   PetscFunctionReturn(0);
5682c58f1c22SToby Isaac }
5683c58f1c22SToby Isaac 
5684c58f1c22SToby Isaac /*@C
5685c58f1c22SToby Isaac   DMGetStratumIS - Get the points in a label stratum
5686c58f1c22SToby Isaac 
5687c58f1c22SToby Isaac   Not Collective
5688c58f1c22SToby Isaac 
5689c58f1c22SToby Isaac   Input Parameters:
5690c58f1c22SToby Isaac + dm - The DM object
5691c58f1c22SToby Isaac . name - The label name
5692c58f1c22SToby Isaac - value - The stratum value
5693c58f1c22SToby Isaac 
5694c58f1c22SToby Isaac   Output Parameter:
5695c58f1c22SToby Isaac . points - The stratum points, or NULL if the label does not exist or does not have that value
5696c58f1c22SToby Isaac 
5697c58f1c22SToby Isaac   Level: beginner
5698c58f1c22SToby Isaac 
5699c58f1c22SToby Isaac .keywords: mesh
5700c58f1c22SToby Isaac .seealso: DMLabelGetStratumIS(), DMGetStratumSize()
5701c58f1c22SToby Isaac @*/
5702c58f1c22SToby Isaac PetscErrorCode DMGetStratumIS(DM dm, const char name[], PetscInt value, IS *points)
5703c58f1c22SToby Isaac {
5704c58f1c22SToby Isaac   DMLabel        label;
5705c58f1c22SToby Isaac   PetscErrorCode ierr;
5706c58f1c22SToby Isaac 
5707c58f1c22SToby Isaac   PetscFunctionBegin;
5708c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5709c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5710c58f1c22SToby Isaac   PetscValidPointer(points, 4);
5711c58f1c22SToby Isaac   ierr    = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5712c58f1c22SToby Isaac   *points = NULL;
5713c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
5714c58f1c22SToby Isaac   ierr = DMLabelGetStratumIS(label, value, points);CHKERRQ(ierr);
5715c58f1c22SToby Isaac   PetscFunctionReturn(0);
5716c58f1c22SToby Isaac }
5717c58f1c22SToby Isaac 
57184de306b1SToby Isaac /*@C
57199044fa66SMatthew G. Knepley   DMSetStratumIS - Set the points in a label stratum
57204de306b1SToby Isaac 
57214de306b1SToby Isaac   Not Collective
57224de306b1SToby Isaac 
57234de306b1SToby Isaac   Input Parameters:
57244de306b1SToby Isaac + dm - The DM object
57254de306b1SToby Isaac . name - The label name
57264de306b1SToby Isaac . value - The stratum value
57274de306b1SToby Isaac - points - The stratum points
57284de306b1SToby Isaac 
57294de306b1SToby Isaac   Level: beginner
57304de306b1SToby Isaac 
57314de306b1SToby Isaac .keywords: mesh
57324de306b1SToby Isaac .seealso: DMLabelSetStratumIS(), DMGetStratumSize()
57334de306b1SToby Isaac @*/
57344de306b1SToby Isaac PetscErrorCode DMSetStratumIS(DM dm, const char name[], PetscInt value, IS points)
57354de306b1SToby Isaac {
57364de306b1SToby Isaac   DMLabel        label;
57374de306b1SToby Isaac   PetscErrorCode ierr;
57384de306b1SToby Isaac 
57394de306b1SToby Isaac   PetscFunctionBegin;
57404de306b1SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
57414de306b1SToby Isaac   PetscValidCharPointer(name, 2);
57424de306b1SToby Isaac   PetscValidPointer(points, 4);
57434de306b1SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
57444de306b1SToby Isaac   if (!label) PetscFunctionReturn(0);
57454de306b1SToby Isaac   ierr = DMLabelSetStratumIS(label, value, points);CHKERRQ(ierr);
57464de306b1SToby Isaac   PetscFunctionReturn(0);
57474de306b1SToby Isaac }
57484de306b1SToby Isaac 
5749c58f1c22SToby Isaac /*@C
5750c58f1c22SToby Isaac   DMClearLabelStratum - Remove all points from a stratum from a Sieve Label
5751c58f1c22SToby Isaac 
5752c58f1c22SToby Isaac   Not Collective
5753c58f1c22SToby Isaac 
5754c58f1c22SToby Isaac   Input Parameters:
5755c58f1c22SToby Isaac + dm   - The DM object
5756c58f1c22SToby Isaac . name - The label name
5757c58f1c22SToby Isaac - value - The label value for this point
5758c58f1c22SToby Isaac 
5759c58f1c22SToby Isaac   Output Parameter:
5760c58f1c22SToby Isaac 
5761c58f1c22SToby Isaac   Level: beginner
5762c58f1c22SToby Isaac 
5763c58f1c22SToby Isaac .keywords: mesh
5764c58f1c22SToby Isaac .seealso: DMLabelClearStratum(), DMSetLabelValue(), DMGetStratumIS(), DMClearLabelValue()
5765c58f1c22SToby Isaac @*/
5766c58f1c22SToby Isaac PetscErrorCode DMClearLabelStratum(DM dm, const char name[], PetscInt value)
5767c58f1c22SToby Isaac {
5768c58f1c22SToby Isaac   DMLabel        label;
5769c58f1c22SToby Isaac   PetscErrorCode ierr;
5770c58f1c22SToby Isaac 
5771c58f1c22SToby Isaac   PetscFunctionBegin;
5772c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5773c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5774c58f1c22SToby Isaac   ierr = DMGetLabel(dm, name, &label);CHKERRQ(ierr);
5775c58f1c22SToby Isaac   if (!label) PetscFunctionReturn(0);
5776c58f1c22SToby Isaac   ierr = DMLabelClearStratum(label, value);CHKERRQ(ierr);
5777c58f1c22SToby Isaac   PetscFunctionReturn(0);
5778c58f1c22SToby Isaac }
5779c58f1c22SToby Isaac 
5780c58f1c22SToby Isaac /*@
5781c58f1c22SToby Isaac   DMGetNumLabels - Return the number of labels defined by the mesh
5782c58f1c22SToby Isaac 
5783c58f1c22SToby Isaac   Not Collective
5784c58f1c22SToby Isaac 
5785c58f1c22SToby Isaac   Input Parameter:
5786c58f1c22SToby Isaac . dm   - The DM object
5787c58f1c22SToby Isaac 
5788c58f1c22SToby Isaac   Output Parameter:
5789c58f1c22SToby Isaac . numLabels - the number of Labels
5790c58f1c22SToby Isaac 
5791c58f1c22SToby Isaac   Level: intermediate
5792c58f1c22SToby Isaac 
5793c58f1c22SToby Isaac .keywords: mesh
5794c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5795c58f1c22SToby Isaac @*/
5796c58f1c22SToby Isaac PetscErrorCode DMGetNumLabels(DM dm, PetscInt *numLabels)
5797c58f1c22SToby Isaac {
5798c58f1c22SToby Isaac   DMLabelLink next = dm->labels->next;
5799c58f1c22SToby Isaac   PetscInt  n    = 0;
5800c58f1c22SToby Isaac 
5801c58f1c22SToby Isaac   PetscFunctionBegin;
5802c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5803c58f1c22SToby Isaac   PetscValidPointer(numLabels, 2);
5804c58f1c22SToby Isaac   while (next) {++n; next = next->next;}
5805c58f1c22SToby Isaac   *numLabels = n;
5806c58f1c22SToby Isaac   PetscFunctionReturn(0);
5807c58f1c22SToby Isaac }
5808c58f1c22SToby Isaac 
5809c58f1c22SToby Isaac /*@C
5810c58f1c22SToby Isaac   DMGetLabelName - Return the name of nth label
5811c58f1c22SToby Isaac 
5812c58f1c22SToby Isaac   Not Collective
5813c58f1c22SToby Isaac 
5814c58f1c22SToby Isaac   Input Parameters:
5815c58f1c22SToby Isaac + dm - The DM object
5816c58f1c22SToby Isaac - n  - the label number
5817c58f1c22SToby Isaac 
5818c58f1c22SToby Isaac   Output Parameter:
5819c58f1c22SToby Isaac . name - the label name
5820c58f1c22SToby Isaac 
5821c58f1c22SToby Isaac   Level: intermediate
5822c58f1c22SToby Isaac 
5823c58f1c22SToby Isaac .keywords: mesh
5824c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5825c58f1c22SToby Isaac @*/
5826c58f1c22SToby Isaac PetscErrorCode DMGetLabelName(DM dm, PetscInt n, const char **name)
5827c58f1c22SToby Isaac {
5828c58f1c22SToby Isaac   DMLabelLink next = dm->labels->next;
5829c58f1c22SToby Isaac   PetscInt  l    = 0;
5830c58f1c22SToby Isaac 
5831c58f1c22SToby Isaac   PetscFunctionBegin;
5832c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5833c58f1c22SToby Isaac   PetscValidPointer(name, 3);
5834c58f1c22SToby Isaac   while (next) {
5835c58f1c22SToby Isaac     if (l == n) {
5836c58f1c22SToby Isaac       *name = next->label->name;
5837c58f1c22SToby Isaac       PetscFunctionReturn(0);
5838c58f1c22SToby Isaac     }
5839c58f1c22SToby Isaac     ++l;
5840c58f1c22SToby Isaac     next = next->next;
5841c58f1c22SToby Isaac   }
5842c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n);
5843c58f1c22SToby Isaac }
5844c58f1c22SToby Isaac 
5845c58f1c22SToby Isaac /*@C
5846c58f1c22SToby Isaac   DMHasLabel - Determine whether the mesh has a label of a given name
5847c58f1c22SToby Isaac 
5848c58f1c22SToby Isaac   Not Collective
5849c58f1c22SToby Isaac 
5850c58f1c22SToby Isaac   Input Parameters:
5851c58f1c22SToby Isaac + dm   - The DM object
5852c58f1c22SToby Isaac - name - The label name
5853c58f1c22SToby Isaac 
5854c58f1c22SToby Isaac   Output Parameter:
5855c58f1c22SToby Isaac . hasLabel - PETSC_TRUE if the label is present
5856c58f1c22SToby Isaac 
5857c58f1c22SToby Isaac   Level: intermediate
5858c58f1c22SToby Isaac 
5859c58f1c22SToby Isaac .keywords: mesh
5860c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5861c58f1c22SToby Isaac @*/
5862c58f1c22SToby Isaac PetscErrorCode DMHasLabel(DM dm, const char name[], PetscBool *hasLabel)
5863c58f1c22SToby Isaac {
5864c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
5865c58f1c22SToby Isaac   PetscErrorCode ierr;
5866c58f1c22SToby Isaac 
5867c58f1c22SToby Isaac   PetscFunctionBegin;
5868c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5869c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5870c58f1c22SToby Isaac   PetscValidPointer(hasLabel, 3);
5871c58f1c22SToby Isaac   *hasLabel = PETSC_FALSE;
5872c58f1c22SToby Isaac   while (next) {
5873c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, hasLabel);CHKERRQ(ierr);
5874c58f1c22SToby Isaac     if (*hasLabel) break;
5875c58f1c22SToby Isaac     next = next->next;
5876c58f1c22SToby Isaac   }
5877c58f1c22SToby Isaac   PetscFunctionReturn(0);
5878c58f1c22SToby Isaac }
5879c58f1c22SToby Isaac 
5880c58f1c22SToby Isaac /*@C
5881c58f1c22SToby Isaac   DMGetLabel - Return the label of a given name, or NULL
5882c58f1c22SToby Isaac 
5883c58f1c22SToby Isaac   Not Collective
5884c58f1c22SToby Isaac 
5885c58f1c22SToby Isaac   Input Parameters:
5886c58f1c22SToby Isaac + dm   - The DM object
5887c58f1c22SToby Isaac - name - The label name
5888c58f1c22SToby Isaac 
5889c58f1c22SToby Isaac   Output Parameter:
5890c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent
5891c58f1c22SToby Isaac 
5892c58f1c22SToby Isaac   Level: intermediate
5893c58f1c22SToby Isaac 
5894c58f1c22SToby Isaac .keywords: mesh
5895c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5896c58f1c22SToby Isaac @*/
5897c58f1c22SToby Isaac PetscErrorCode DMGetLabel(DM dm, const char name[], DMLabel *label)
5898c58f1c22SToby Isaac {
5899c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
5900c58f1c22SToby Isaac   PetscBool      hasLabel;
5901c58f1c22SToby Isaac   PetscErrorCode ierr;
5902c58f1c22SToby Isaac 
5903c58f1c22SToby Isaac   PetscFunctionBegin;
5904c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5905c58f1c22SToby Isaac   PetscValidCharPointer(name, 2);
5906c58f1c22SToby Isaac   PetscValidPointer(label, 3);
5907c58f1c22SToby Isaac   *label = NULL;
5908c58f1c22SToby Isaac   while (next) {
5909c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, &hasLabel);CHKERRQ(ierr);
5910c58f1c22SToby Isaac     if (hasLabel) {
5911c58f1c22SToby Isaac       *label = next->label;
5912c58f1c22SToby Isaac       break;
5913c58f1c22SToby Isaac     }
5914c58f1c22SToby Isaac     next = next->next;
5915c58f1c22SToby Isaac   }
5916c58f1c22SToby Isaac   PetscFunctionReturn(0);
5917c58f1c22SToby Isaac }
5918c58f1c22SToby Isaac 
5919c58f1c22SToby Isaac /*@C
5920c58f1c22SToby Isaac   DMGetLabelByNum - Return the nth label
5921c58f1c22SToby Isaac 
5922c58f1c22SToby Isaac   Not Collective
5923c58f1c22SToby Isaac 
5924c58f1c22SToby Isaac   Input Parameters:
5925c58f1c22SToby Isaac + dm - The DM object
5926c58f1c22SToby Isaac - n  - the label number
5927c58f1c22SToby Isaac 
5928c58f1c22SToby Isaac   Output Parameter:
5929c58f1c22SToby Isaac . label - the label
5930c58f1c22SToby Isaac 
5931c58f1c22SToby Isaac   Level: intermediate
5932c58f1c22SToby Isaac 
5933c58f1c22SToby Isaac .keywords: mesh
5934c58f1c22SToby Isaac .seealso: DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5935c58f1c22SToby Isaac @*/
5936c58f1c22SToby Isaac PetscErrorCode DMGetLabelByNum(DM dm, PetscInt n, DMLabel *label)
5937c58f1c22SToby Isaac {
5938c58f1c22SToby Isaac   DMLabelLink next = dm->labels->next;
5939c58f1c22SToby Isaac   PetscInt    l    = 0;
5940c58f1c22SToby Isaac 
5941c58f1c22SToby Isaac   PetscFunctionBegin;
5942c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5943c58f1c22SToby Isaac   PetscValidPointer(label, 3);
5944c58f1c22SToby Isaac   while (next) {
5945c58f1c22SToby Isaac     if (l == n) {
5946c58f1c22SToby Isaac       *label = next->label;
5947c58f1c22SToby Isaac       PetscFunctionReturn(0);
5948c58f1c22SToby Isaac     }
5949c58f1c22SToby Isaac     ++l;
5950c58f1c22SToby Isaac     next = next->next;
5951c58f1c22SToby Isaac   }
5952c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %D does not exist in this DM", n);
5953c58f1c22SToby Isaac }
5954c58f1c22SToby Isaac 
5955c58f1c22SToby Isaac /*@C
5956c58f1c22SToby Isaac   DMAddLabel - Add the label to this mesh
5957c58f1c22SToby Isaac 
5958c58f1c22SToby Isaac   Not Collective
5959c58f1c22SToby Isaac 
5960c58f1c22SToby Isaac   Input Parameters:
5961c58f1c22SToby Isaac + dm   - The DM object
5962c58f1c22SToby Isaac - label - The DMLabel
5963c58f1c22SToby Isaac 
5964c58f1c22SToby Isaac   Level: developer
5965c58f1c22SToby Isaac 
5966c58f1c22SToby Isaac .keywords: mesh
5967c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
5968c58f1c22SToby Isaac @*/
5969c58f1c22SToby Isaac PetscErrorCode DMAddLabel(DM dm, DMLabel label)
5970c58f1c22SToby Isaac {
5971c58f1c22SToby Isaac   DMLabelLink    tmpLabel;
5972c58f1c22SToby Isaac   PetscBool      hasLabel;
5973c58f1c22SToby Isaac   PetscErrorCode ierr;
5974c58f1c22SToby Isaac 
5975c58f1c22SToby Isaac   PetscFunctionBegin;
5976c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5977c58f1c22SToby Isaac   ierr = DMHasLabel(dm, label->name, &hasLabel);CHKERRQ(ierr);
5978c58f1c22SToby Isaac   if (hasLabel) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Label %s already exists in this DM", label->name);
5979c58f1c22SToby Isaac   ierr = PetscCalloc1(1, &tmpLabel);CHKERRQ(ierr);
5980c58f1c22SToby Isaac   tmpLabel->label  = label;
5981c58f1c22SToby Isaac   tmpLabel->output = PETSC_TRUE;
5982c58f1c22SToby Isaac   tmpLabel->next   = dm->labels->next;
5983c58f1c22SToby Isaac   dm->labels->next = tmpLabel;
5984c58f1c22SToby Isaac   PetscFunctionReturn(0);
5985c58f1c22SToby Isaac }
5986c58f1c22SToby Isaac 
5987c58f1c22SToby Isaac /*@C
5988c58f1c22SToby Isaac   DMRemoveLabel - Remove the label from this mesh
5989c58f1c22SToby Isaac 
5990c58f1c22SToby Isaac   Not Collective
5991c58f1c22SToby Isaac 
5992c58f1c22SToby Isaac   Input Parameters:
5993c58f1c22SToby Isaac + dm   - The DM object
5994c58f1c22SToby Isaac - name - The label name
5995c58f1c22SToby Isaac 
5996c58f1c22SToby Isaac   Output Parameter:
5997c58f1c22SToby Isaac . label - The DMLabel, or NULL if the label is absent
5998c58f1c22SToby Isaac 
5999c58f1c22SToby Isaac   Level: developer
6000c58f1c22SToby Isaac 
6001c58f1c22SToby Isaac .keywords: mesh
6002c58f1c22SToby Isaac .seealso: DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6003c58f1c22SToby Isaac @*/
6004c58f1c22SToby Isaac PetscErrorCode DMRemoveLabel(DM dm, const char name[], DMLabel *label)
6005c58f1c22SToby Isaac {
6006c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6007c58f1c22SToby Isaac   DMLabelLink    last = NULL;
6008c58f1c22SToby Isaac   PetscBool      hasLabel;
6009c58f1c22SToby Isaac   PetscErrorCode ierr;
6010c58f1c22SToby Isaac 
6011c58f1c22SToby Isaac   PetscFunctionBegin;
6012c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6013c58f1c22SToby Isaac   ierr   = DMHasLabel(dm, name, &hasLabel);CHKERRQ(ierr);
6014c58f1c22SToby Isaac   *label = NULL;
6015c58f1c22SToby Isaac   if (!hasLabel) PetscFunctionReturn(0);
6016c58f1c22SToby Isaac   while (next) {
6017c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, &hasLabel);CHKERRQ(ierr);
6018c58f1c22SToby Isaac     if (hasLabel) {
6019c58f1c22SToby Isaac       if (last) last->next       = next->next;
6020c58f1c22SToby Isaac       else      dm->labels->next = next->next;
6021c58f1c22SToby Isaac       next->next = NULL;
6022c58f1c22SToby Isaac       *label     = next->label;
6023c58f1c22SToby Isaac       ierr = PetscStrcmp(name, "depth", &hasLabel);CHKERRQ(ierr);
6024c58f1c22SToby Isaac       if (hasLabel) {
6025c58f1c22SToby Isaac         dm->depthLabel = NULL;
6026c58f1c22SToby Isaac       }
6027c58f1c22SToby Isaac       ierr = PetscFree(next);CHKERRQ(ierr);
6028c58f1c22SToby Isaac       break;
6029c58f1c22SToby Isaac     }
6030c58f1c22SToby Isaac     last = next;
6031c58f1c22SToby Isaac     next = next->next;
6032c58f1c22SToby Isaac   }
6033c58f1c22SToby Isaac   PetscFunctionReturn(0);
6034c58f1c22SToby Isaac }
6035c58f1c22SToby Isaac 
6036c58f1c22SToby Isaac /*@C
6037c58f1c22SToby Isaac   DMGetLabelOutput - Get the output flag for a given label
6038c58f1c22SToby Isaac 
6039c58f1c22SToby Isaac   Not Collective
6040c58f1c22SToby Isaac 
6041c58f1c22SToby Isaac   Input Parameters:
6042c58f1c22SToby Isaac + dm   - The DM object
6043c58f1c22SToby Isaac - name - The label name
6044c58f1c22SToby Isaac 
6045c58f1c22SToby Isaac   Output Parameter:
6046c58f1c22SToby Isaac . output - The flag for output
6047c58f1c22SToby Isaac 
6048c58f1c22SToby Isaac   Level: developer
6049c58f1c22SToby Isaac 
6050c58f1c22SToby Isaac .keywords: mesh
6051c58f1c22SToby Isaac .seealso: DMSetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6052c58f1c22SToby Isaac @*/
6053c58f1c22SToby Isaac PetscErrorCode DMGetLabelOutput(DM dm, const char name[], PetscBool *output)
6054c58f1c22SToby Isaac {
6055c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6056c58f1c22SToby Isaac   PetscErrorCode ierr;
6057c58f1c22SToby Isaac 
6058c58f1c22SToby Isaac   PetscFunctionBegin;
6059c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6060c58f1c22SToby Isaac   PetscValidPointer(name, 2);
6061c58f1c22SToby Isaac   PetscValidPointer(output, 3);
6062c58f1c22SToby Isaac   while (next) {
6063c58f1c22SToby Isaac     PetscBool flg;
6064c58f1c22SToby Isaac 
6065c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, &flg);CHKERRQ(ierr);
6066c58f1c22SToby Isaac     if (flg) {*output = next->output; PetscFunctionReturn(0);}
6067c58f1c22SToby Isaac     next = next->next;
6068c58f1c22SToby Isaac   }
6069c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
6070c58f1c22SToby Isaac }
6071c58f1c22SToby Isaac 
6072c58f1c22SToby Isaac /*@C
6073c58f1c22SToby Isaac   DMSetLabelOutput - Set the output flag for a given label
6074c58f1c22SToby Isaac 
6075c58f1c22SToby Isaac   Not Collective
6076c58f1c22SToby Isaac 
6077c58f1c22SToby Isaac   Input Parameters:
6078c58f1c22SToby Isaac + dm     - The DM object
6079c58f1c22SToby Isaac . name   - The label name
6080c58f1c22SToby Isaac - output - The flag for output
6081c58f1c22SToby Isaac 
6082c58f1c22SToby Isaac   Level: developer
6083c58f1c22SToby Isaac 
6084c58f1c22SToby Isaac .keywords: mesh
6085c58f1c22SToby Isaac .seealso: DMGetLabelOutput(), DMCreateLabel(), DMHasLabel(), DMGetLabelValue(), DMSetLabelValue(), DMGetStratumIS()
6086c58f1c22SToby Isaac @*/
6087c58f1c22SToby Isaac PetscErrorCode DMSetLabelOutput(DM dm, const char name[], PetscBool output)
6088c58f1c22SToby Isaac {
6089c58f1c22SToby Isaac   DMLabelLink    next = dm->labels->next;
6090c58f1c22SToby Isaac   PetscErrorCode ierr;
6091c58f1c22SToby Isaac 
6092c58f1c22SToby Isaac   PetscFunctionBegin;
6093c58f1c22SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6094c58f1c22SToby Isaac   PetscValidPointer(name, 2);
6095c58f1c22SToby Isaac   while (next) {
6096c58f1c22SToby Isaac     PetscBool flg;
6097c58f1c22SToby Isaac 
6098c58f1c22SToby Isaac     ierr = PetscStrcmp(name, next->label->name, &flg);CHKERRQ(ierr);
6099c58f1c22SToby Isaac     if (flg) {next->output = output; PetscFunctionReturn(0);}
6100c58f1c22SToby Isaac     next = next->next;
6101c58f1c22SToby Isaac   }
6102c58f1c22SToby Isaac   SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "No label named %s was present in this dm", name);
6103c58f1c22SToby Isaac }
6104c58f1c22SToby Isaac 
6105c58f1c22SToby Isaac 
6106c58f1c22SToby Isaac /*@
6107c58f1c22SToby Isaac   DMCopyLabels - Copy labels from one mesh to another with a superset of the points
6108c58f1c22SToby Isaac 
6109c58f1c22SToby Isaac   Collective on DM
6110c58f1c22SToby Isaac 
6111c58f1c22SToby Isaac   Input Parameter:
61122e17dfb7SMatthew G. Knepley . dmA - The DM object with initial labels
6113c58f1c22SToby Isaac 
6114c58f1c22SToby Isaac   Output Parameter:
61152e17dfb7SMatthew G. Knepley . dmB - The DM object with copied labels
6116c58f1c22SToby Isaac 
6117c58f1c22SToby Isaac   Level: intermediate
6118c58f1c22SToby Isaac 
6119c58f1c22SToby Isaac   Note: This is typically used when interpolating or otherwise adding to a mesh
6120c58f1c22SToby Isaac 
6121c58f1c22SToby Isaac .keywords: mesh
6122c58f1c22SToby Isaac .seealso: DMCopyCoordinates(), DMGetCoordinates(), DMGetCoordinatesLocal(), DMGetCoordinateDM(), DMGetCoordinateSection()
6123c58f1c22SToby Isaac @*/
6124c58f1c22SToby Isaac PetscErrorCode DMCopyLabels(DM dmA, DM dmB)
6125c58f1c22SToby Isaac {
6126c58f1c22SToby Isaac   PetscInt       numLabels, l;
6127c58f1c22SToby Isaac   PetscErrorCode ierr;
6128c58f1c22SToby Isaac 
6129c58f1c22SToby Isaac   PetscFunctionBegin;
6130c58f1c22SToby Isaac   if (dmA == dmB) PetscFunctionReturn(0);
6131c58f1c22SToby Isaac   ierr = DMGetNumLabels(dmA, &numLabels);CHKERRQ(ierr);
6132c58f1c22SToby Isaac   for (l = 0; l < numLabels; ++l) {
6133c58f1c22SToby Isaac     DMLabel     label, labelNew;
6134c58f1c22SToby Isaac     const char *name;
6135c58f1c22SToby Isaac     PetscBool   flg;
6136c58f1c22SToby Isaac 
6137c58f1c22SToby Isaac     ierr = DMGetLabelName(dmA, l, &name);CHKERRQ(ierr);
6138c58f1c22SToby Isaac     ierr = PetscStrcmp(name, "depth", &flg);CHKERRQ(ierr);
6139c58f1c22SToby Isaac     if (flg) continue;
61407d5acc75SStefano Zampini     ierr = PetscStrcmp(name, "dim", &flg);CHKERRQ(ierr);
61417d5acc75SStefano Zampini     if (flg) continue;
6142c58f1c22SToby Isaac     ierr = DMGetLabel(dmA, name, &label);CHKERRQ(ierr);
6143c58f1c22SToby Isaac     ierr = DMLabelDuplicate(label, &labelNew);CHKERRQ(ierr);
6144c58f1c22SToby Isaac     ierr = DMAddLabel(dmB, labelNew);CHKERRQ(ierr);
6145c58f1c22SToby Isaac   }
6146c58f1c22SToby Isaac   PetscFunctionReturn(0);
6147c58f1c22SToby Isaac }
6148a8fb8f29SToby Isaac 
6149a8fb8f29SToby Isaac /*@
6150a8fb8f29SToby Isaac   DMGetCoarseDM - Get the coarse mesh from which this was obtained by refinement
6151a8fb8f29SToby Isaac 
6152a8fb8f29SToby Isaac   Input Parameter:
6153a8fb8f29SToby Isaac . dm - The DM object
6154a8fb8f29SToby Isaac 
6155a8fb8f29SToby Isaac   Output Parameter:
6156a8fb8f29SToby Isaac . cdm - The coarse DM
6157a8fb8f29SToby Isaac 
6158a8fb8f29SToby Isaac   Level: intermediate
6159a8fb8f29SToby Isaac 
6160a8fb8f29SToby Isaac .seealso: DMSetCoarseDM()
6161a8fb8f29SToby Isaac @*/
6162a8fb8f29SToby Isaac PetscErrorCode DMGetCoarseDM(DM dm, DM *cdm)
6163a8fb8f29SToby Isaac {
6164a8fb8f29SToby Isaac   PetscFunctionBegin;
6165a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6166a8fb8f29SToby Isaac   PetscValidPointer(cdm, 2);
6167a8fb8f29SToby Isaac   *cdm = dm->coarseMesh;
6168a8fb8f29SToby Isaac   PetscFunctionReturn(0);
6169a8fb8f29SToby Isaac }
6170a8fb8f29SToby Isaac 
6171a8fb8f29SToby Isaac /*@
6172a8fb8f29SToby Isaac   DMSetCoarseDM - Set the coarse mesh from which this was obtained by refinement
6173a8fb8f29SToby Isaac 
6174a8fb8f29SToby Isaac   Input Parameters:
6175a8fb8f29SToby Isaac + dm - The DM object
6176a8fb8f29SToby Isaac - cdm - The coarse DM
6177a8fb8f29SToby Isaac 
6178a8fb8f29SToby Isaac   Level: intermediate
6179a8fb8f29SToby Isaac 
6180a8fb8f29SToby Isaac .seealso: DMGetCoarseDM()
6181a8fb8f29SToby Isaac @*/
6182a8fb8f29SToby Isaac PetscErrorCode DMSetCoarseDM(DM dm, DM cdm)
6183a8fb8f29SToby Isaac {
6184a8fb8f29SToby Isaac   PetscErrorCode ierr;
6185a8fb8f29SToby Isaac 
6186a8fb8f29SToby Isaac   PetscFunctionBegin;
6187a8fb8f29SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6188a8fb8f29SToby Isaac   if (cdm) PetscValidHeaderSpecific(cdm, DM_CLASSID, 2);
6189a8fb8f29SToby Isaac   ierr = PetscObjectReference((PetscObject)cdm);CHKERRQ(ierr);
6190a8fb8f29SToby Isaac   ierr = DMDestroy(&dm->coarseMesh);CHKERRQ(ierr);
6191a8fb8f29SToby Isaac   dm->coarseMesh = cdm;
6192a8fb8f29SToby Isaac   PetscFunctionReturn(0);
6193a8fb8f29SToby Isaac }
6194a8fb8f29SToby Isaac 
619588bdff64SToby Isaac /*@
619688bdff64SToby Isaac   DMGetFineDM - Get the fine mesh from which this was obtained by refinement
619788bdff64SToby Isaac 
619888bdff64SToby Isaac   Input Parameter:
619988bdff64SToby Isaac . dm - The DM object
620088bdff64SToby Isaac 
620188bdff64SToby Isaac   Output Parameter:
620288bdff64SToby Isaac . fdm - The fine DM
620388bdff64SToby Isaac 
620488bdff64SToby Isaac   Level: intermediate
620588bdff64SToby Isaac 
620688bdff64SToby Isaac .seealso: DMSetFineDM()
620788bdff64SToby Isaac @*/
620888bdff64SToby Isaac PetscErrorCode DMGetFineDM(DM dm, DM *fdm)
620988bdff64SToby Isaac {
621088bdff64SToby Isaac   PetscFunctionBegin;
621188bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
621288bdff64SToby Isaac   PetscValidPointer(fdm, 2);
621388bdff64SToby Isaac   *fdm = dm->fineMesh;
621488bdff64SToby Isaac   PetscFunctionReturn(0);
621588bdff64SToby Isaac }
621688bdff64SToby Isaac 
621788bdff64SToby Isaac /*@
621888bdff64SToby Isaac   DMSetFineDM - Set the fine mesh from which this was obtained by refinement
621988bdff64SToby Isaac 
622088bdff64SToby Isaac   Input Parameters:
622188bdff64SToby Isaac + dm - The DM object
622288bdff64SToby Isaac - fdm - The fine DM
622388bdff64SToby Isaac 
622488bdff64SToby Isaac   Level: intermediate
622588bdff64SToby Isaac 
622688bdff64SToby Isaac .seealso: DMGetFineDM()
622788bdff64SToby Isaac @*/
622888bdff64SToby Isaac PetscErrorCode DMSetFineDM(DM dm, DM fdm)
622988bdff64SToby Isaac {
623088bdff64SToby Isaac   PetscErrorCode ierr;
623188bdff64SToby Isaac 
623288bdff64SToby Isaac   PetscFunctionBegin;
623388bdff64SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
623488bdff64SToby Isaac   if (fdm) PetscValidHeaderSpecific(fdm, DM_CLASSID, 2);
623588bdff64SToby Isaac   ierr = PetscObjectReference((PetscObject)fdm);CHKERRQ(ierr);
623688bdff64SToby Isaac   ierr = DMDestroy(&dm->fineMesh);CHKERRQ(ierr);
623788bdff64SToby Isaac   dm->fineMesh = fdm;
623888bdff64SToby Isaac   PetscFunctionReturn(0);
623988bdff64SToby Isaac }
624088bdff64SToby Isaac 
6241a6ba4734SToby Isaac /*=== DMBoundary code ===*/
6242a6ba4734SToby Isaac 
6243a6ba4734SToby Isaac PetscErrorCode DMCopyBoundary(DM dm, DM dmNew)
6244a6ba4734SToby Isaac {
6245a6ba4734SToby Isaac   PetscErrorCode ierr;
6246a6ba4734SToby Isaac 
6247a6ba4734SToby Isaac   PetscFunctionBegin;
6248e6f8dbb6SToby Isaac   ierr = PetscDSCopyBoundary(dm->prob,dmNew->prob);CHKERRQ(ierr);
6249a6ba4734SToby Isaac   PetscFunctionReturn(0);
6250a6ba4734SToby Isaac }
6251a6ba4734SToby Isaac 
6252a6ba4734SToby Isaac /*@C
6253a6ba4734SToby Isaac   DMAddBoundary - Add a boundary condition to the model
6254a6ba4734SToby Isaac 
6255a6ba4734SToby Isaac   Input Parameters:
62564c258f51SMatthew G. Knepley + dm          - The DM, with a PetscDS that matches the problem being constrained
6257f971fd6bSMatthew G. Knepley . type        - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann)
6258a6ba4734SToby Isaac . name        - The BC name
6259a6ba4734SToby Isaac . labelname   - The label defining constrained points
6260a6ba4734SToby Isaac . field       - The field to constrain
6261a6ba4734SToby Isaac . numcomps    - The number of constrained field components
6262a6ba4734SToby Isaac . comps       - An array of constrained component numbers
6263a6ba4734SToby Isaac . bcFunc      - A pointwise function giving boundary values
6264a6ba4734SToby Isaac . numids      - The number of DMLabel ids for constrained points
6265a6ba4734SToby Isaac . ids         - An array of ids for constrained points
6266a6ba4734SToby Isaac - ctx         - An optional user context for bcFunc
6267a6ba4734SToby Isaac 
6268a6ba4734SToby Isaac   Options Database Keys:
6269a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids
6270a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components
6271a6ba4734SToby Isaac 
6272a6ba4734SToby Isaac   Level: developer
6273a6ba4734SToby Isaac 
6274a6ba4734SToby Isaac .seealso: DMGetBoundary()
6275a6ba4734SToby Isaac @*/
6276a30ec4eaSSatish 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)
6277a6ba4734SToby Isaac {
6278a6ba4734SToby Isaac   PetscErrorCode ierr;
6279a6ba4734SToby Isaac 
6280a6ba4734SToby Isaac   PetscFunctionBegin;
6281a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6282f971fd6bSMatthew G. Knepley   ierr = PetscDSAddBoundary(dm->prob,type,name,labelname,field,numcomps,comps,bcFunc,numids,ids,ctx);CHKERRQ(ierr);
6283a6ba4734SToby Isaac   PetscFunctionReturn(0);
6284a6ba4734SToby Isaac }
6285a6ba4734SToby Isaac 
6286a6ba4734SToby Isaac /*@
6287a6ba4734SToby Isaac   DMGetNumBoundary - Get the number of registered BC
6288a6ba4734SToby Isaac 
6289a6ba4734SToby Isaac   Input Parameters:
6290a6ba4734SToby Isaac . dm - The mesh object
6291a6ba4734SToby Isaac 
6292a6ba4734SToby Isaac   Output Parameters:
6293a6ba4734SToby Isaac . numBd - The number of BC
6294a6ba4734SToby Isaac 
6295a6ba4734SToby Isaac   Level: intermediate
6296a6ba4734SToby Isaac 
6297a6ba4734SToby Isaac .seealso: DMAddBoundary(), DMGetBoundary()
6298a6ba4734SToby Isaac @*/
6299a6ba4734SToby Isaac PetscErrorCode DMGetNumBoundary(DM dm, PetscInt *numBd)
6300a6ba4734SToby Isaac {
630158ebd649SToby Isaac   PetscErrorCode ierr;
6302a6ba4734SToby Isaac 
6303a6ba4734SToby Isaac   PetscFunctionBegin;
6304a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
630558ebd649SToby Isaac   ierr = PetscDSGetNumBoundary(dm->prob,numBd);CHKERRQ(ierr);
6306a6ba4734SToby Isaac   PetscFunctionReturn(0);
6307a6ba4734SToby Isaac }
6308a6ba4734SToby Isaac 
6309a6ba4734SToby Isaac /*@C
63101c531cf8SMatthew G. Knepley   DMGetBoundary - Get a model boundary condition
6311a6ba4734SToby Isaac 
6312a6ba4734SToby Isaac   Input Parameters:
6313a6ba4734SToby Isaac + dm          - The mesh object
6314a6ba4734SToby Isaac - bd          - The BC number
6315a6ba4734SToby Isaac 
6316a6ba4734SToby Isaac   Output Parameters:
6317f971fd6bSMatthew G. Knepley + type        - The type of condition, e.g. DM_BC_ESSENTIAL_ANALYTIC/DM_BC_ESSENTIAL_FIELD (Dirichlet), or DM_BC_NATURAL (Neumann)
6318a6ba4734SToby Isaac . name        - The BC name
6319a6ba4734SToby Isaac . labelname   - The label defining constrained points
6320a6ba4734SToby Isaac . field       - The field to constrain
6321a6ba4734SToby Isaac . numcomps    - The number of constrained field components
6322a6ba4734SToby Isaac . comps       - An array of constrained component numbers
6323a6ba4734SToby Isaac . bcFunc      - A pointwise function giving boundary values
6324a6ba4734SToby Isaac . numids      - The number of DMLabel ids for constrained points
6325a6ba4734SToby Isaac . ids         - An array of ids for constrained points
6326a6ba4734SToby Isaac - ctx         - An optional user context for bcFunc
6327a6ba4734SToby Isaac 
6328a6ba4734SToby Isaac   Options Database Keys:
6329a6ba4734SToby Isaac + -bc_<boundary name> <num> - Overrides the boundary ids
6330a6ba4734SToby Isaac - -bc_<boundary name>_comp <num> - Overrides the boundary components
6331a6ba4734SToby Isaac 
6332a6ba4734SToby Isaac   Level: developer
6333a6ba4734SToby Isaac 
6334a6ba4734SToby Isaac .seealso: DMAddBoundary()
6335a6ba4734SToby Isaac @*/
6336a30ec4eaSSatish 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)
6337a6ba4734SToby Isaac {
633858ebd649SToby Isaac   PetscErrorCode ierr;
6339a6ba4734SToby Isaac 
6340a6ba4734SToby Isaac   PetscFunctionBegin;
6341a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6342f971fd6bSMatthew G. Knepley   ierr = PetscDSGetBoundary(dm->prob,bd,type,name,labelname,field,numcomps,comps,func,numids,ids,ctx);CHKERRQ(ierr);
6343a6ba4734SToby Isaac   PetscFunctionReturn(0);
6344a6ba4734SToby Isaac }
6345a6ba4734SToby Isaac 
6346e6f8dbb6SToby Isaac static PetscErrorCode DMPopulateBoundary(DM dm)
6347e6f8dbb6SToby Isaac {
6348dff059c6SToby Isaac   DMBoundary *lastnext;
6349e6f8dbb6SToby Isaac   DSBoundary dsbound;
6350e6f8dbb6SToby Isaac   PetscErrorCode ierr;
6351e6f8dbb6SToby Isaac 
6352e6f8dbb6SToby Isaac   PetscFunctionBegin;
6353e6f8dbb6SToby Isaac   dsbound = dm->prob->boundary;
635447a1f5adSToby Isaac   if (dm->boundary) {
635547a1f5adSToby Isaac     DMBoundary next = dm->boundary;
635647a1f5adSToby Isaac 
635747a1f5adSToby Isaac     /* quick check to see if the PetscDS has changed */
635847a1f5adSToby Isaac     if (next->dsboundary == dsbound) PetscFunctionReturn(0);
635947a1f5adSToby Isaac     /* the PetscDS has changed: tear down and rebuild */
636047a1f5adSToby Isaac     while (next) {
636147a1f5adSToby Isaac       DMBoundary b = next;
636247a1f5adSToby Isaac 
636347a1f5adSToby Isaac       next = b->next;
636447a1f5adSToby Isaac       ierr = PetscFree(b);CHKERRQ(ierr);
6365a6ba4734SToby Isaac     }
636647a1f5adSToby Isaac     dm->boundary = NULL;
6367a6ba4734SToby Isaac   }
636847a1f5adSToby Isaac 
6369dff059c6SToby Isaac   lastnext = &(dm->boundary);
6370e6f8dbb6SToby Isaac   while (dsbound) {
6371e6f8dbb6SToby Isaac     DMBoundary dmbound;
6372e6f8dbb6SToby Isaac 
6373e6f8dbb6SToby Isaac     ierr = PetscNew(&dmbound);CHKERRQ(ierr);
6374e6f8dbb6SToby Isaac     dmbound->dsboundary = dsbound;
6375e6f8dbb6SToby Isaac     ierr = DMGetLabel(dm, dsbound->labelname, &(dmbound->label));CHKERRQ(ierr);
6376994fe344SLisandro 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);}
637747a1f5adSToby Isaac     /* push on the back instead of the front so that it is in the same order as in the PetscDS */
6378dff059c6SToby Isaac     *lastnext = dmbound;
6379dff059c6SToby Isaac     lastnext = &(dmbound->next);
6380dff059c6SToby Isaac     dsbound = dsbound->next;
6381a6ba4734SToby Isaac   }
6382a6ba4734SToby Isaac   PetscFunctionReturn(0);
6383a6ba4734SToby Isaac }
6384a6ba4734SToby Isaac 
6385a6ba4734SToby Isaac PetscErrorCode DMIsBoundaryPoint(DM dm, PetscInt point, PetscBool *isBd)
6386a6ba4734SToby Isaac {
6387b95f2879SToby Isaac   DMBoundary     b;
6388a6ba4734SToby Isaac   PetscErrorCode ierr;
6389a6ba4734SToby Isaac 
6390a6ba4734SToby Isaac   PetscFunctionBegin;
6391a6ba4734SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6392a6ba4734SToby Isaac   PetscValidPointer(isBd, 3);
6393a6ba4734SToby Isaac   *isBd = PETSC_FALSE;
6394e6f8dbb6SToby Isaac   ierr = DMPopulateBoundary(dm);CHKERRQ(ierr);
6395b95f2879SToby Isaac   b = dm->boundary;
6396a6ba4734SToby Isaac   while (b && !(*isBd)) {
6397e6f8dbb6SToby Isaac     DMLabel    label = b->label;
6398e6f8dbb6SToby Isaac     DSBoundary dsb = b->dsboundary;
63993424c85cSToby Isaac 
64003424c85cSToby Isaac     if (label) {
6401a6ba4734SToby Isaac       PetscInt i;
6402a6ba4734SToby Isaac 
6403e6f8dbb6SToby Isaac       for (i = 0; i < dsb->numids && !(*isBd); ++i) {
6404e6f8dbb6SToby Isaac         ierr = DMLabelStratumHasPoint(label, dsb->ids[i], point, isBd);CHKERRQ(ierr);
6405a6ba4734SToby Isaac       }
6406a6ba4734SToby Isaac     }
6407a6ba4734SToby Isaac     b = b->next;
6408a6ba4734SToby Isaac   }
6409a6ba4734SToby Isaac   PetscFunctionReturn(0);
6410a6ba4734SToby Isaac }
64114d6f44ffSToby Isaac 
64124d6f44ffSToby Isaac /*@C
64134d6f44ffSToby Isaac   DMProjectFunction - This projects the given function into the function space provided.
64144d6f44ffSToby Isaac 
64154d6f44ffSToby Isaac   Input Parameters:
64164d6f44ffSToby Isaac + dm      - The DM
64170709b2feSToby Isaac . time    - The time
64184d6f44ffSToby Isaac . funcs   - The coordinate functions to evaluate, one per field
64194d6f44ffSToby Isaac . ctxs    - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
64204d6f44ffSToby Isaac - mode    - The insertion mode for values
64214d6f44ffSToby Isaac 
64224d6f44ffSToby Isaac   Output Parameter:
64234d6f44ffSToby Isaac . X - vector
64244d6f44ffSToby Isaac 
64254d6f44ffSToby Isaac    Calling sequence of func:
64260709b2feSToby Isaac $    func(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx);
64274d6f44ffSToby Isaac 
64284d6f44ffSToby Isaac +  dim - The spatial dimension
64294d6f44ffSToby Isaac .  x   - The coordinates
64304d6f44ffSToby Isaac .  Nf  - The number of fields
64314d6f44ffSToby Isaac .  u   - The output field values
64324d6f44ffSToby Isaac -  ctx - optional user-defined function context
64334d6f44ffSToby Isaac 
64344d6f44ffSToby Isaac   Level: developer
64354d6f44ffSToby Isaac 
64362716604bSToby Isaac .seealso: DMComputeL2Diff()
64374d6f44ffSToby Isaac @*/
64380709b2feSToby Isaac PetscErrorCode DMProjectFunction(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec X)
64394d6f44ffSToby Isaac {
64404d6f44ffSToby Isaac   Vec            localX;
64414d6f44ffSToby Isaac   PetscErrorCode ierr;
64424d6f44ffSToby Isaac 
64434d6f44ffSToby Isaac   PetscFunctionBegin;
64444d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64454d6f44ffSToby Isaac   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
64460709b2feSToby Isaac   ierr = DMProjectFunctionLocal(dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr);
64474d6f44ffSToby Isaac   ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr);
64484d6f44ffSToby Isaac   ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr);
64494d6f44ffSToby Isaac   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
64504d6f44ffSToby Isaac   PetscFunctionReturn(0);
64514d6f44ffSToby Isaac }
64524d6f44ffSToby Isaac 
64530709b2feSToby Isaac PetscErrorCode DMProjectFunctionLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX)
64544d6f44ffSToby Isaac {
64554d6f44ffSToby Isaac   PetscErrorCode ierr;
64564d6f44ffSToby Isaac 
64574d6f44ffSToby Isaac   PetscFunctionBegin;
64584d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
64594d6f44ffSToby Isaac   PetscValidHeaderSpecific(localX,VEC_CLASSID,5);
64600918c465SMatthew G. Knepley   if (!dm->ops->projectfunctionlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLocal",((PetscObject)dm)->type_name);
64610709b2feSToby Isaac   ierr = (dm->ops->projectfunctionlocal) (dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr);
64624d6f44ffSToby Isaac   PetscFunctionReturn(0);
64634d6f44ffSToby Isaac }
64644d6f44ffSToby Isaac 
64652c53366bSMatthew 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)
64662c53366bSMatthew G. Knepley {
64672c53366bSMatthew G. Knepley   Vec            localX;
64682c53366bSMatthew G. Knepley   PetscErrorCode ierr;
64692c53366bSMatthew G. Knepley 
64702c53366bSMatthew G. Knepley   PetscFunctionBegin;
64712c53366bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
64722c53366bSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
64732c53366bSMatthew G. Knepley   ierr = DMProjectFunctionLabelLocal(dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr);
64742c53366bSMatthew G. Knepley   ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr);
64752c53366bSMatthew G. Knepley   ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr);
64762c53366bSMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
64772c53366bSMatthew G. Knepley   PetscFunctionReturn(0);
64782c53366bSMatthew G. Knepley }
64792c53366bSMatthew G. Knepley 
64801c531cf8SMatthew 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)
64814d6f44ffSToby Isaac {
64824d6f44ffSToby Isaac   PetscErrorCode ierr;
64834d6f44ffSToby Isaac 
64844d6f44ffSToby Isaac   PetscFunctionBegin;
64854d6f44ffSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
64864d6f44ffSToby Isaac   PetscValidHeaderSpecific(localX,VEC_CLASSID,5);
64870918c465SMatthew G. Knepley   if (!dm->ops->projectfunctionlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFunctionLabelLocal",((PetscObject)dm)->type_name);
64881c531cf8SMatthew G. Knepley   ierr = (dm->ops->projectfunctionlabellocal) (dm, time, label, numIds, ids, Nc, comps, funcs, ctxs, mode, localX);CHKERRQ(ierr);
64894d6f44ffSToby Isaac   PetscFunctionReturn(0);
64904d6f44ffSToby Isaac }
64912716604bSToby Isaac 
64928c6c5593SMatthew G. Knepley PetscErrorCode DMProjectFieldLocal(DM dm, PetscReal time, Vec localU,
64938c6c5593SMatthew G. Knepley                                    void (**funcs)(PetscInt, PetscInt, PetscInt,
64948c6c5593SMatthew G. Knepley                                                   const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
64958c6c5593SMatthew G. Knepley                                                   const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
6496191494d9SMatthew G. Knepley                                                   PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
64978c6c5593SMatthew G. Knepley                                    InsertMode mode, Vec localX)
64988c6c5593SMatthew G. Knepley {
64998c6c5593SMatthew G. Knepley   PetscErrorCode ierr;
65008c6c5593SMatthew G. Knepley 
65018c6c5593SMatthew G. Knepley   PetscFunctionBegin;
65028c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
65038c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localU,VEC_CLASSID,3);
65048c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localX,VEC_CLASSID,6);
65050918c465SMatthew G. Knepley   if (!dm->ops->projectfieldlocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name);
65068c6c5593SMatthew G. Knepley   ierr = (dm->ops->projectfieldlocal) (dm, time, localU, funcs, mode, localX);CHKERRQ(ierr);
65078c6c5593SMatthew G. Knepley   PetscFunctionReturn(0);
65088c6c5593SMatthew G. Knepley }
65098c6c5593SMatthew G. Knepley 
65101c531cf8SMatthew G. Knepley PetscErrorCode DMProjectFieldLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscInt Nc, const PetscInt comps[], Vec localU,
65118c6c5593SMatthew G. Knepley                                         void (**funcs)(PetscInt, PetscInt, PetscInt,
65128c6c5593SMatthew G. Knepley                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
65138c6c5593SMatthew G. Knepley                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
6514191494d9SMatthew G. Knepley                                                        PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
65158c6c5593SMatthew G. Knepley                                         InsertMode mode, Vec localX)
65168c6c5593SMatthew G. Knepley {
65178c6c5593SMatthew G. Knepley   PetscErrorCode ierr;
65188c6c5593SMatthew G. Knepley 
65198c6c5593SMatthew G. Knepley   PetscFunctionBegin;
65208c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
65218c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localU,VEC_CLASSID,6);
65228c6c5593SMatthew G. Knepley   PetscValidHeaderSpecific(localX,VEC_CLASSID,9);
65230918c465SMatthew G. Knepley   if (!dm->ops->projectfieldlabellocal) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMProjectFieldLocal",((PetscObject)dm)->type_name);
65241c531cf8SMatthew G. Knepley   ierr = (dm->ops->projectfieldlabellocal)(dm, time, label, numIds, ids, Nc, comps, localU, funcs, mode, localX);CHKERRQ(ierr);
65258c6c5593SMatthew G. Knepley   PetscFunctionReturn(0);
65268c6c5593SMatthew G. Knepley }
65278c6c5593SMatthew G. Knepley 
65282716604bSToby Isaac /*@C
65292716604bSToby Isaac   DMComputeL2Diff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h.
65302716604bSToby Isaac 
65312716604bSToby Isaac   Input Parameters:
65322716604bSToby Isaac + dm    - The DM
65330709b2feSToby Isaac . time  - The time
65342716604bSToby Isaac . funcs - The functions to evaluate for each field component
65352716604bSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
6536574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
65372716604bSToby Isaac 
65382716604bSToby Isaac   Output Parameter:
65392716604bSToby Isaac . diff - The diff ||u - u_h||_2
65402716604bSToby Isaac 
65412716604bSToby Isaac   Level: developer
65422716604bSToby Isaac 
65431189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff()
65442716604bSToby Isaac @*/
65450709b2feSToby Isaac PetscErrorCode DMComputeL2Diff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
65462716604bSToby Isaac {
65472716604bSToby Isaac   PetscErrorCode ierr;
65482716604bSToby Isaac 
65492716604bSToby Isaac   PetscFunctionBegin;
65502716604bSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6551b698f381SToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
65520918c465SMatthew G. Knepley   if (!dm->ops->computel2diff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2Diff",((PetscObject)dm)->type_name);
65530709b2feSToby Isaac   ierr = (dm->ops->computel2diff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr);
65542716604bSToby Isaac   PetscFunctionReturn(0);
65552716604bSToby Isaac }
6556b698f381SToby Isaac 
6557b698f381SToby Isaac /*@C
6558b698f381SToby Isaac   DMComputeL2GradientDiff - This function computes the L_2 difference between the gradient of a function u and an FEM interpolant solution grad u_h.
6559b698f381SToby Isaac 
6560b698f381SToby Isaac   Input Parameters:
6561b698f381SToby Isaac + dm    - The DM
6562b698f381SToby Isaac , time  - The time
6563b698f381SToby Isaac . funcs - The gradient functions to evaluate for each field component
6564b698f381SToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
6565574a98acSMatthew G. Knepley . X     - The coefficient vector u_h, a global vector
6566b698f381SToby Isaac - n     - The vector to project along
6567b698f381SToby Isaac 
6568b698f381SToby Isaac   Output Parameter:
6569b698f381SToby Isaac . diff - The diff ||(grad u - grad u_h) . n||_2
6570b698f381SToby Isaac 
6571b698f381SToby Isaac   Level: developer
6572b698f381SToby Isaac 
6573b698f381SToby Isaac .seealso: DMProjectFunction(), DMComputeL2Diff()
6574b698f381SToby Isaac @*/
6575b698f381SToby 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)
6576b698f381SToby Isaac {
6577b698f381SToby Isaac   PetscErrorCode ierr;
6578b698f381SToby Isaac 
6579b698f381SToby Isaac   PetscFunctionBegin;
6580b698f381SToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
6581b698f381SToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
6582b698f381SToby Isaac   if (!dm->ops->computel2gradientdiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2GradientDiff",((PetscObject)dm)->type_name);
6583b698f381SToby Isaac   ierr = (dm->ops->computel2gradientdiff)(dm,time,funcs,ctxs,X,n,diff);CHKERRQ(ierr);
6584b698f381SToby Isaac   PetscFunctionReturn(0);
6585b698f381SToby Isaac }
6586b698f381SToby Isaac 
65872a16baeaSToby Isaac /*@C
65882a16baeaSToby Isaac   DMComputeL2FieldDiff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h, separated into field components.
65892a16baeaSToby Isaac 
65902a16baeaSToby Isaac   Input Parameters:
65912a16baeaSToby Isaac + dm    - The DM
65922a16baeaSToby Isaac . time  - The time
65932a16baeaSToby Isaac . funcs - The functions to evaluate for each field component
65942a16baeaSToby Isaac . ctxs  - Optional array of contexts to pass to each function, or NULL.
6595574a98acSMatthew G. Knepley - X     - The coefficient vector u_h, a global vector
65962a16baeaSToby Isaac 
65972a16baeaSToby Isaac   Output Parameter:
65982a16baeaSToby Isaac . diff - The array of differences, ||u^f - u^f_h||_2
65992a16baeaSToby Isaac 
66002a16baeaSToby Isaac   Level: developer
66012a16baeaSToby Isaac 
66021189c1efSToby Isaac .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff()
66032a16baeaSToby Isaac @*/
66041189c1efSToby Isaac PetscErrorCode DMComputeL2FieldDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal diff[])
66052a16baeaSToby Isaac {
66062a16baeaSToby Isaac   PetscErrorCode ierr;
66072a16baeaSToby Isaac 
66082a16baeaSToby Isaac   PetscFunctionBegin;
66092a16baeaSToby Isaac   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
66102a16baeaSToby Isaac   PetscValidHeaderSpecific(X,VEC_CLASSID,5);
66110918c465SMatthew G. Knepley   if (!dm->ops->computel2fielddiff) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMComputeL2FieldDiff",((PetscObject)dm)->type_name);
66122a16baeaSToby Isaac   ierr = (dm->ops->computel2fielddiff)(dm,time,funcs,ctxs,X,diff);CHKERRQ(ierr);
66132a16baeaSToby Isaac   PetscFunctionReturn(0);
66142a16baeaSToby Isaac }
66152a16baeaSToby Isaac 
6616df0b854cSToby Isaac /*@C
6617df0b854cSToby Isaac   DMAdaptLabel - Adapt a dm based on a label with values interpreted as coarsening and refining flags.  Specific implementations of DM maybe have
6618cd3c525cSToby Isaac                  specialized flags, but all implementations should accept flag values DM_ADAPT_DETERMINE, DM_ADAPT_KEEP, DM_ADAPT_REFINE, and DM_ADAPT_COARSEN.
6619df0b854cSToby Isaac 
6620df0b854cSToby Isaac   Collective on dm
6621df0b854cSToby Isaac 
6622df0b854cSToby Isaac   Input parameters:
6623df0b854cSToby Isaac + dm - the pre-adaptation DM object
6624a1b0c543SToby Isaac - label - label with the flags
6625df0b854cSToby Isaac 
6626df0b854cSToby Isaac   Output parameters:
66270d1cd5e0SMatthew G. Knepley . dmAdapt - the adapted DM object: may be NULL if an adapted DM could not be produced.
6628df0b854cSToby Isaac 
6629df0b854cSToby Isaac   Level: intermediate
66300d1cd5e0SMatthew G. Knepley 
66310d1cd5e0SMatthew G. Knepley .seealso: DMAdaptMetric(), DMCoarsen(), DMRefine()
6632df0b854cSToby Isaac @*/
66330d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptLabel(DM dm, DMLabel label, DM *dmAdapt)
6634df0b854cSToby Isaac {
6635df0b854cSToby Isaac   PetscErrorCode ierr;
6636df0b854cSToby Isaac 
6637df0b854cSToby Isaac   PetscFunctionBegin;
6638df0b854cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
6639a1b0c543SToby Isaac   PetscValidPointer(label,2);
66400d1cd5e0SMatthew G. Knepley   PetscValidPointer(dmAdapt,3);
66410d1cd5e0SMatthew G. Knepley   *dmAdapt = NULL;
66426f25b0d8SLisandro Dalcin   if (!dm->ops->adaptlabel) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptLabel",((PetscObject)dm)->type_name);
66430d1cd5e0SMatthew G. Knepley   ierr = (dm->ops->adaptlabel)(dm, label, dmAdapt);CHKERRQ(ierr);
66440d1cd5e0SMatthew G. Knepley   PetscFunctionReturn(0);
66450d1cd5e0SMatthew G. Knepley }
66460d1cd5e0SMatthew G. Knepley 
66470d1cd5e0SMatthew G. Knepley /*@C
66480d1cd5e0SMatthew G. Knepley   DMAdaptMetric - Generates a mesh adapted to the specified metric field using the pragmatic library.
66490d1cd5e0SMatthew G. Knepley 
66500d1cd5e0SMatthew G. Knepley   Input Parameters:
66510d1cd5e0SMatthew G. Knepley + dm - The DM object
66520d1cd5e0SMatthew G. Knepley . metric - The metric to which the mesh is adapted, defined vertex-wise.
66536f25b0d8SLisandro 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_".
66540d1cd5e0SMatthew G. Knepley 
66550d1cd5e0SMatthew G. Knepley   Output Parameter:
66560d1cd5e0SMatthew G. Knepley . dmAdapt  - Pointer to the DM object containing the adapted mesh
66570d1cd5e0SMatthew G. Knepley 
66580d1cd5e0SMatthew G. Knepley   Note: The label in the adapted mesh will be registered under the name of the input DMLabel object
66590d1cd5e0SMatthew G. Knepley 
66600d1cd5e0SMatthew G. Knepley   Level: advanced
66610d1cd5e0SMatthew G. Knepley 
66620d1cd5e0SMatthew G. Knepley .seealso: DMAdaptLabel(), DMCoarsen(), DMRefine()
66630d1cd5e0SMatthew G. Knepley @*/
66640d1cd5e0SMatthew G. Knepley PetscErrorCode DMAdaptMetric(DM dm, Vec metric, DMLabel bdLabel, DM *dmAdapt)
66650d1cd5e0SMatthew G. Knepley {
66660d1cd5e0SMatthew G. Knepley   PetscErrorCode ierr;
66670d1cd5e0SMatthew G. Knepley 
66680d1cd5e0SMatthew G. Knepley   PetscFunctionBegin;
66690d1cd5e0SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
66700d1cd5e0SMatthew G. Knepley   PetscValidHeaderSpecific(metric, VEC_CLASSID, 2);
66710d1cd5e0SMatthew G. Knepley   if (bdLabel) PetscValidPointer(bdLabel, 3);
66720d1cd5e0SMatthew G. Knepley   PetscValidPointer(dmAdapt, 4);
66736f25b0d8SLisandro Dalcin   *dmAdapt = NULL;
66746f25b0d8SLisandro Dalcin   if (!dm->ops->adaptmetric) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMAdaptMetric",((PetscObject)dm)->type_name);
66750d1cd5e0SMatthew G. Knepley   ierr = (dm->ops->adaptmetric)(dm, metric, bdLabel, dmAdapt);CHKERRQ(ierr);
6676df0b854cSToby Isaac   PetscFunctionReturn(0);
6677df0b854cSToby Isaac }
6678c4088d22SMatthew G. Knepley 
6679502a2867SDave May /*@C
6680502a2867SDave May  DMGetNeighbors - Gets an array containing the MPI rank of all the processes neighbors
6681502a2867SDave May 
6682502a2867SDave May  Not Collective
6683502a2867SDave May 
6684502a2867SDave May  Input Parameter:
6685502a2867SDave May  . dm    - The DM
6686502a2867SDave May 
6687502a2867SDave May  Output Parameter:
6688502a2867SDave May  . nranks - the number of neighbours
6689502a2867SDave May  . ranks - the neighbors ranks
6690502a2867SDave May 
6691502a2867SDave May  Notes:
6692502a2867SDave May  Do not free the array, it is freed when the DM is destroyed.
6693502a2867SDave May 
6694502a2867SDave May  Level: beginner
6695502a2867SDave May 
6696dee935c1SDave May  .seealso: DMDAGetNeighbors(), PetscSFGetRanks()
6697502a2867SDave May @*/
6698502a2867SDave May PetscErrorCode DMGetNeighbors(DM dm,PetscInt *nranks,const PetscMPIInt *ranks[])
6699502a2867SDave May {
6700502a2867SDave May   PetscErrorCode ierr;
6701502a2867SDave May 
6702502a2867SDave May   PetscFunctionBegin;
6703502a2867SDave May   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
67040918c465SMatthew G. Knepley   if (!dm->ops->getneighbors) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"DM type %s does not implement DMGetNeighbors",((PetscObject)dm)->type_name);
6705502a2867SDave May   ierr = (dm->ops->getneighbors)(dm,nranks,ranks);CHKERRQ(ierr);
6706502a2867SDave May   PetscFunctionReturn(0);
6707502a2867SDave May }
6708502a2867SDave May 
6709531c7667SBarry Smith #include <petsc/private/matimpl.h> /* Needed because of coloring->ctype below */
6710531c7667SBarry Smith 
6711531c7667SBarry Smith /*
6712531c7667SBarry Smith     Converts the input vector to a ghosted vector and then calls the standard coloring code.
6713531c7667SBarry Smith     This has be a different function because it requires DM which is not defined in the Mat library
6714531c7667SBarry Smith */
6715531c7667SBarry Smith PetscErrorCode  MatFDColoringApply_AIJDM(Mat J,MatFDColoring coloring,Vec x1,void *sctx)
6716531c7667SBarry Smith {
6717531c7667SBarry Smith   PetscErrorCode ierr;
6718531c7667SBarry Smith 
6719531c7667SBarry Smith   PetscFunctionBegin;
6720531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
6721531c7667SBarry Smith     Vec x1local;
6722531c7667SBarry Smith     DM  dm;
6723531c7667SBarry Smith     ierr = MatGetDM(J,&dm);CHKERRQ(ierr);
6724531c7667SBarry Smith     if (!dm) SETERRQ(PetscObjectComm((PetscObject)J),PETSC_ERR_ARG_INCOMP,"IS_COLORING_LOCAL requires a DM");
6725531c7667SBarry Smith     ierr = DMGetLocalVector(dm,&x1local);CHKERRQ(ierr);
6726531c7667SBarry Smith     ierr = DMGlobalToLocalBegin(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr);
6727531c7667SBarry Smith     ierr = DMGlobalToLocalEnd(dm,x1,INSERT_VALUES,x1local);CHKERRQ(ierr);
6728531c7667SBarry Smith     x1   = x1local;
6729531c7667SBarry Smith   }
6730531c7667SBarry Smith   ierr = MatFDColoringApply_AIJ(J,coloring,x1,sctx);CHKERRQ(ierr);
6731531c7667SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
6732531c7667SBarry Smith     DM  dm;
6733531c7667SBarry Smith     ierr = MatGetDM(J,&dm);CHKERRQ(ierr);
6734531c7667SBarry Smith     ierr = DMRestoreLocalVector(dm,&x1);CHKERRQ(ierr);
6735531c7667SBarry Smith   }
6736531c7667SBarry Smith   PetscFunctionReturn(0);
6737531c7667SBarry Smith }
6738531c7667SBarry Smith 
6739531c7667SBarry Smith /*@
6740531c7667SBarry Smith     MatFDColoringUseDM - allows a MatFDColoring object to use the DM associated with the matrix to use a IS_COLORING_LOCAL coloring
6741531c7667SBarry Smith 
6742531c7667SBarry Smith     Input Parameter:
6743531c7667SBarry Smith .    coloring - the MatFDColoring object
6744531c7667SBarry Smith 
674595452b02SPatrick Sanan     Developer Notes:
674695452b02SPatrick Sanan     this routine exists because the PETSc Mat library does not know about the DM objects
6747531c7667SBarry Smith 
67481b266c99SBarry Smith     Level: advanced
67491b266c99SBarry Smith 
6750531c7667SBarry Smith .seealso: MatFDColoring, MatFDColoringCreate(), ISColoringType
6751531c7667SBarry Smith @*/
6752531c7667SBarry Smith PetscErrorCode  MatFDColoringUseDM(Mat coloring,MatFDColoring fdcoloring)
6753531c7667SBarry Smith {
6754531c7667SBarry Smith   PetscFunctionBegin;
6755531c7667SBarry Smith   coloring->ops->fdcoloringapply = MatFDColoringApply_AIJDM;
6756531c7667SBarry Smith   PetscFunctionReturn(0);
6757531c7667SBarry Smith }
67588320bc6fSPatrick Sanan 
67598320bc6fSPatrick Sanan /*@
67608320bc6fSPatrick Sanan     DMGetCompatibility - determine if two DMs are compatible
67618320bc6fSPatrick Sanan 
67628320bc6fSPatrick Sanan     Collective
67638320bc6fSPatrick Sanan 
67648320bc6fSPatrick Sanan     Input Parameters:
67658320bc6fSPatrick Sanan +    dm - the first DM
67668320bc6fSPatrick Sanan -    dm2 - the second DM
67678320bc6fSPatrick Sanan 
67688320bc6fSPatrick Sanan     Output Parameters:
67698320bc6fSPatrick Sanan +    compatible - whether or not the two DMs are compatible
67708320bc6fSPatrick Sanan -    set - whether or not the compatible value was set
67718320bc6fSPatrick Sanan 
67728320bc6fSPatrick Sanan     Notes:
67738320bc6fSPatrick Sanan     Two DMs are deemed compatible if they represent the same parallel decomposition
67748320bc6fSPatrick Sanan     of the same topology. This implies that the the section (field data) on one
67758320bc6fSPatrick Sanan     "makes sense" with respect to the topology and parallel decomposition of the other.
67768320bc6fSPatrick Sanan     Loosely speaking, compatibile DMs represent the same domain, with the same parallel
67778320bc6fSPatrick Sanan     decomposition, with different data.
67788320bc6fSPatrick Sanan 
67798320bc6fSPatrick Sanan     Typically, one would confirm compatibility if intending to simultaneously iterate
67808320bc6fSPatrick Sanan     over a pair of vectors obtained from different DMs.
67818320bc6fSPatrick Sanan 
67828320bc6fSPatrick Sanan     For example, two DMDA objects are compatible if they have the same local
67838320bc6fSPatrick Sanan     and global sizes and the same stencil width. They can have different numbers
67848320bc6fSPatrick Sanan     of degrees of freedom per node. Thus, one could use the node numbering from
67858320bc6fSPatrick Sanan     either DM in bounds for a loop over vectors derived from either DM.
67868320bc6fSPatrick Sanan 
67878320bc6fSPatrick Sanan     Consider the operation of summing data living on a 2-dof DMDA to data living
67888320bc6fSPatrick Sanan     on a 1-dof DMDA, which should be compatible, as in the following snippet.
67898320bc6fSPatrick Sanan .vb
67908320bc6fSPatrick Sanan   ...
67918320bc6fSPatrick Sanan   ierr = DMGetCompatibility(da1,da2,&compatible,&set);CHKERRQ(ierr);
67928320bc6fSPatrick Sanan   if (set && compatible)  {
67938320bc6fSPatrick Sanan     ierr = DMDAVecGetArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr);
67948320bc6fSPatrick Sanan     ierr = DMDAVecGetArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr);
67958320bc6fSPatrick Sanan     ierr = DMDAGetCorners(da1,&x,&y,NULL,&m,&n);CHKERRQ(ierr);
67968320bc6fSPatrick Sanan     for (j=y; j<y+n; ++j) {
67978320bc6fSPatrick Sanan       for (i=x; i<x+m, ++i) {
67988320bc6fSPatrick Sanan         arr1[j][i][0] = arr2[j][i][0] + arr2[j][i][1];
67998320bc6fSPatrick Sanan       }
68008320bc6fSPatrick Sanan     }
68018320bc6fSPatrick Sanan     ierr = DMDAVecRestoreArrayDOF(da1,vec1,&arr1);CHKERRQ(ierr);
68028320bc6fSPatrick Sanan     ierr = DMDAVecRestoreArrayDOF(da2,vec2,&arr2);CHKERRQ(ierr);
68038320bc6fSPatrick Sanan   } else {
68048320bc6fSPatrick Sanan     SETERRQ(PetscObjectComm((PetscObject)da1,PETSC_ERR_ARG_INCOMP,"DMDA objects incompatible");
68058320bc6fSPatrick Sanan   }
68068320bc6fSPatrick Sanan   ...
68078320bc6fSPatrick Sanan .ve
68088320bc6fSPatrick Sanan 
68098320bc6fSPatrick Sanan     Checking compatibility might be expensive for a given implementation of DM,
68108320bc6fSPatrick Sanan     or might be impossible to unambiguously confirm or deny. For this reason,
68118320bc6fSPatrick Sanan     this function may decline to determine compatibility, and hence users should
68128320bc6fSPatrick Sanan     always check the "set" output parameter.
68138320bc6fSPatrick Sanan 
68148320bc6fSPatrick Sanan     A DM is always compatible with itself.
68158320bc6fSPatrick Sanan 
68168320bc6fSPatrick Sanan     In the current implementation, DMs which live on "unequal" communicators
68178320bc6fSPatrick Sanan     (MPI_UNEQUAL in the terminology of MPI_Comm_compare()) are always deemed
68188320bc6fSPatrick Sanan     incompatible.
68198320bc6fSPatrick Sanan 
68208320bc6fSPatrick Sanan     This function is labeled "Collective," as information about all subdomains
68218320bc6fSPatrick Sanan     is required on each rank. However, in DM implementations which store all this
68228320bc6fSPatrick Sanan     information locally, this function may be merely "Logically Collective".
68238320bc6fSPatrick Sanan 
68248320bc6fSPatrick Sanan     Developer Notes:
68258320bc6fSPatrick Sanan     Compatibility is assumed to be a symmetric concept; if DM A is compatible with DM B,
68268320bc6fSPatrick Sanan     the DM B is compatible with DM A. Thus, this function checks the implementations
68278320bc6fSPatrick Sanan     of both dm and dm2 (if they are of different types), attempting to determine
68288320bc6fSPatrick Sanan     compatibility. It is left to DM implementers to ensure that symmetry is
68298320bc6fSPatrick Sanan     preserved. The simplest way to do this is, when implementing type-specific
68308320bc6fSPatrick Sanan     logic for this function, to check for existing logic in the implementation
68318320bc6fSPatrick Sanan     of other DM types and let *set = PETSC_FALSE if found; the logic of this
68328320bc6fSPatrick Sanan     function will then call that logic.
68338320bc6fSPatrick Sanan 
68348320bc6fSPatrick Sanan     Level: advanced
68358320bc6fSPatrick Sanan 
68368320bc6fSPatrick Sanan .seealso: DM, DMDACreateCompatibleDMDA()
68378320bc6fSPatrick Sanan @*/
68388320bc6fSPatrick Sanan 
68398320bc6fSPatrick Sanan PetscErrorCode DMGetCompatibility(DM dm,DM dm2,PetscBool *compatible,PetscBool *set)
68408320bc6fSPatrick Sanan {
68418320bc6fSPatrick Sanan   PetscErrorCode ierr;
68428320bc6fSPatrick Sanan   PetscMPIInt    compareResult;
68438320bc6fSPatrick Sanan   DMType         type,type2;
68448320bc6fSPatrick Sanan   PetscBool      sameType;
68458320bc6fSPatrick Sanan 
68468320bc6fSPatrick Sanan   PetscFunctionBegin;
68478320bc6fSPatrick Sanan   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
68488320bc6fSPatrick Sanan   PetscValidHeaderSpecific(dm2,DM_CLASSID,2);
68498320bc6fSPatrick Sanan 
68508320bc6fSPatrick Sanan   /* Declare a DM compatible with itself */
68518320bc6fSPatrick Sanan   if (dm == dm2) {
68528320bc6fSPatrick Sanan     *set = PETSC_TRUE;
68538320bc6fSPatrick Sanan     *compatible = PETSC_TRUE;
68548320bc6fSPatrick Sanan     PetscFunctionReturn(0);
68558320bc6fSPatrick Sanan   }
68568320bc6fSPatrick Sanan 
68578320bc6fSPatrick Sanan   /* Declare a DM incompatible with a DM that lives on an "unequal"
68588320bc6fSPatrick Sanan      communicator. Note that this does not preclude compatibility with
68598320bc6fSPatrick Sanan      DMs living on "congruent" or "similar" communicators, but this must be
68608320bc6fSPatrick Sanan      determined by the implementation-specific logic */
68618320bc6fSPatrick Sanan   ierr = MPI_Comm_compare(PetscObjectComm((PetscObject)dm),PetscObjectComm((PetscObject)dm2),&compareResult);CHKERRQ(ierr);
68628320bc6fSPatrick Sanan   if (compareResult == MPI_UNEQUAL) {
68638320bc6fSPatrick Sanan     *set = PETSC_TRUE;
68648320bc6fSPatrick Sanan     *compatible = PETSC_FALSE;
68658320bc6fSPatrick Sanan     PetscFunctionReturn(0);
68668320bc6fSPatrick Sanan   }
68678320bc6fSPatrick Sanan 
68688320bc6fSPatrick Sanan   /* Pass to the implementation-specific routine, if one exists. */
68698320bc6fSPatrick Sanan   if (dm->ops->getcompatibility) {
68708320bc6fSPatrick Sanan     ierr = (*dm->ops->getcompatibility)(dm,dm2,compatible,set);CHKERRQ(ierr);
68718320bc6fSPatrick Sanan     if (*set) {
68728320bc6fSPatrick Sanan       PetscFunctionReturn(0);
68738320bc6fSPatrick Sanan     }
68748320bc6fSPatrick Sanan   }
68758320bc6fSPatrick Sanan 
68768320bc6fSPatrick Sanan   /* If dm and dm2 are of different types, then attempt to check compatibility
68778320bc6fSPatrick Sanan      with an implementation of this function from dm2 */
68788320bc6fSPatrick Sanan   ierr = DMGetType(dm,&type);CHKERRQ(ierr);
68798320bc6fSPatrick Sanan   ierr = DMGetType(dm2,&type2);CHKERRQ(ierr);
68808320bc6fSPatrick Sanan   ierr = PetscStrcmp(type,type2,&sameType);CHKERRQ(ierr);
68818320bc6fSPatrick Sanan   if (!sameType && dm2->ops->getcompatibility) {
68828320bc6fSPatrick Sanan     ierr = (*dm2->ops->getcompatibility)(dm2,dm,compatible,set);CHKERRQ(ierr); /* Note argument order */
68838320bc6fSPatrick Sanan   } else {
68848320bc6fSPatrick Sanan     *set = PETSC_FALSE;
68858320bc6fSPatrick Sanan   }
68868320bc6fSPatrick Sanan   PetscFunctionReturn(0);
68878320bc6fSPatrick Sanan }
6888