xref: /petsc/src/dm/impls/plex/plexfem.c (revision 0bd915a71a405cdbc8c194adfdf4622e33a0f42e)
1af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h>   /*I      "petscdmplex.h"   I*/
2da97024aSMatthew G. Knepley #include <petscsf.h>
3cb1e1211SMatthew G Knepley 
4af0996ceSBarry Smith #include <petsc/private/petscfeimpl.h>
5af0996ceSBarry Smith #include <petsc/private/petscfvimpl.h>
6a0845e3aSMatthew G. Knepley 
7cb1e1211SMatthew G Knepley #undef __FUNCT__
8cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexGetScale"
9cb1e1211SMatthew G Knepley PetscErrorCode DMPlexGetScale(DM dm, PetscUnit unit, PetscReal *scale)
10cb1e1211SMatthew G Knepley {
11cb1e1211SMatthew G Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
12cb1e1211SMatthew G Knepley 
13cb1e1211SMatthew G Knepley   PetscFunctionBegin;
14cb1e1211SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
15cb1e1211SMatthew G Knepley   PetscValidPointer(scale, 3);
16cb1e1211SMatthew G Knepley   *scale = mesh->scale[unit];
17cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
18cb1e1211SMatthew G Knepley }
19cb1e1211SMatthew G Knepley 
20cb1e1211SMatthew G Knepley #undef __FUNCT__
21cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexSetScale"
22cb1e1211SMatthew G Knepley PetscErrorCode DMPlexSetScale(DM dm, PetscUnit unit, PetscReal scale)
23cb1e1211SMatthew G Knepley {
24cb1e1211SMatthew G Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
25cb1e1211SMatthew G Knepley 
26cb1e1211SMatthew G Knepley   PetscFunctionBegin;
27cb1e1211SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
28cb1e1211SMatthew G Knepley   mesh->scale[unit] = scale;
29cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
30cb1e1211SMatthew G Knepley }
31cb1e1211SMatthew G Knepley 
32cb1e1211SMatthew G Knepley PETSC_STATIC_INLINE PetscInt epsilon(PetscInt i, PetscInt j, PetscInt k)
33cb1e1211SMatthew G Knepley {
34cb1e1211SMatthew G Knepley   switch (i) {
35cb1e1211SMatthew G Knepley   case 0:
36cb1e1211SMatthew G Knepley     switch (j) {
37cb1e1211SMatthew G Knepley     case 0: return 0;
38cb1e1211SMatthew G Knepley     case 1:
39cb1e1211SMatthew G Knepley       switch (k) {
40cb1e1211SMatthew G Knepley       case 0: return 0;
41cb1e1211SMatthew G Knepley       case 1: return 0;
42cb1e1211SMatthew G Knepley       case 2: return 1;
43cb1e1211SMatthew G Knepley       }
44cb1e1211SMatthew G Knepley     case 2:
45cb1e1211SMatthew G Knepley       switch (k) {
46cb1e1211SMatthew G Knepley       case 0: return 0;
47cb1e1211SMatthew G Knepley       case 1: return -1;
48cb1e1211SMatthew G Knepley       case 2: return 0;
49cb1e1211SMatthew G Knepley       }
50cb1e1211SMatthew G Knepley     }
51cb1e1211SMatthew G Knepley   case 1:
52cb1e1211SMatthew G Knepley     switch (j) {
53cb1e1211SMatthew G Knepley     case 0:
54cb1e1211SMatthew G Knepley       switch (k) {
55cb1e1211SMatthew G Knepley       case 0: return 0;
56cb1e1211SMatthew G Knepley       case 1: return 0;
57cb1e1211SMatthew G Knepley       case 2: return -1;
58cb1e1211SMatthew G Knepley       }
59cb1e1211SMatthew G Knepley     case 1: return 0;
60cb1e1211SMatthew G Knepley     case 2:
61cb1e1211SMatthew G Knepley       switch (k) {
62cb1e1211SMatthew G Knepley       case 0: return 1;
63cb1e1211SMatthew G Knepley       case 1: return 0;
64cb1e1211SMatthew G Knepley       case 2: return 0;
65cb1e1211SMatthew G Knepley       }
66cb1e1211SMatthew G Knepley     }
67cb1e1211SMatthew G Knepley   case 2:
68cb1e1211SMatthew G Knepley     switch (j) {
69cb1e1211SMatthew G Knepley     case 0:
70cb1e1211SMatthew G Knepley       switch (k) {
71cb1e1211SMatthew G Knepley       case 0: return 0;
72cb1e1211SMatthew G Knepley       case 1: return 1;
73cb1e1211SMatthew G Knepley       case 2: return 0;
74cb1e1211SMatthew G Knepley       }
75cb1e1211SMatthew G Knepley     case 1:
76cb1e1211SMatthew G Knepley       switch (k) {
77cb1e1211SMatthew G Knepley       case 0: return -1;
78cb1e1211SMatthew G Knepley       case 1: return 0;
79cb1e1211SMatthew G Knepley       case 2: return 0;
80cb1e1211SMatthew G Knepley       }
81cb1e1211SMatthew G Knepley     case 2: return 0;
82cb1e1211SMatthew G Knepley     }
83cb1e1211SMatthew G Knepley   }
84cb1e1211SMatthew G Knepley   return 0;
85cb1e1211SMatthew G Knepley }
86cb1e1211SMatthew G Knepley 
87cb1e1211SMatthew G Knepley #undef __FUNCT__
88026175e5SToby Isaac #define __FUNCT__ "DMPlexProjectRigidBody"
890163fd50SMatthew G. Knepley static PetscErrorCode DMPlexProjectRigidBody(PetscInt dim, PetscReal t, const PetscReal X[], PetscInt Nf, PetscScalar *mode, void *ctx)
90026175e5SToby Isaac {
91026175e5SToby Isaac   PetscInt *ctxInt  = (PetscInt *) ctx;
92ad917190SMatthew G. Knepley   PetscInt  dim2    = ctxInt[0];
93026175e5SToby Isaac   PetscInt  d       = ctxInt[1];
94026175e5SToby Isaac   PetscInt  i, j, k = dim > 2 ? d - dim : d;
95026175e5SToby Isaac 
96ad917190SMatthew G. Knepley   PetscFunctionBegin;
97ad917190SMatthew G. Knepley   if (dim != dim2) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Input dimension %d does not match context dimension %d", dim, dim2);
98026175e5SToby Isaac   for (i = 0; i < dim; i++) mode[i] = 0.;
99026175e5SToby Isaac   if (d < dim) {
100026175e5SToby Isaac     mode[d] = 1.;
101ad917190SMatthew G. Knepley   } else {
102026175e5SToby Isaac     for (i = 0; i < dim; i++) {
103026175e5SToby Isaac       for (j = 0; j < dim; j++) {
104026175e5SToby Isaac         mode[j] += epsilon(i, j, k)*X[i];
105026175e5SToby Isaac       }
106026175e5SToby Isaac     }
107026175e5SToby Isaac   }
108ad917190SMatthew G. Knepley   PetscFunctionReturn(0);
109026175e5SToby Isaac }
110026175e5SToby Isaac 
111026175e5SToby Isaac #undef __FUNCT__
112cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexCreateRigidBody"
113cb1e1211SMatthew G Knepley /*@C
114026175e5SToby Isaac   DMPlexCreateRigidBody - for the default global section, create rigid body modes from coordinates
115cb1e1211SMatthew G Knepley 
116cb1e1211SMatthew G Knepley   Collective on DM
117cb1e1211SMatthew G Knepley 
118cb1e1211SMatthew G Knepley   Input Arguments:
119026175e5SToby Isaac . dm - the DM
120cb1e1211SMatthew G Knepley 
121cb1e1211SMatthew G Knepley   Output Argument:
122cb1e1211SMatthew G Knepley . sp - the null space
123cb1e1211SMatthew G Knepley 
124cb1e1211SMatthew G Knepley   Note: This is necessary to take account of Dirichlet conditions on the displacements
125cb1e1211SMatthew G Knepley 
126cb1e1211SMatthew G Knepley   Level: advanced
127cb1e1211SMatthew G Knepley 
128cb1e1211SMatthew G Knepley .seealso: MatNullSpaceCreate()
129cb1e1211SMatthew G Knepley @*/
130026175e5SToby Isaac PetscErrorCode DMPlexCreateRigidBody(DM dm, MatNullSpace *sp)
131cb1e1211SMatthew G Knepley {
132cb1e1211SMatthew G Knepley   MPI_Comm       comm;
133026175e5SToby Isaac   Vec            mode[6];
134026175e5SToby Isaac   PetscSection   section, globalSection;
1359d8fbdeaSMatthew G. Knepley   PetscInt       dim, dimEmbed, n, m, d, i, j;
136cb1e1211SMatthew G Knepley   PetscErrorCode ierr;
137cb1e1211SMatthew G Knepley 
138cb1e1211SMatthew G Knepley   PetscFunctionBegin;
139cb1e1211SMatthew G Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
140c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1419d8fbdeaSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
142cb1e1211SMatthew G Knepley   if (dim == 1) {
143cb1e1211SMatthew G Knepley     ierr = MatNullSpaceCreate(comm, PETSC_TRUE, 0, NULL, sp);CHKERRQ(ierr);
144cb1e1211SMatthew G Knepley     PetscFunctionReturn(0);
145cb1e1211SMatthew G Knepley   }
146026175e5SToby Isaac   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
147026175e5SToby Isaac   ierr = DMGetDefaultGlobalSection(dm, &globalSection);CHKERRQ(ierr);
148cb1e1211SMatthew G Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &n);CHKERRQ(ierr);
149cb1e1211SMatthew G Knepley   m    = (dim*(dim+1))/2;
150cb1e1211SMatthew G Knepley   ierr = VecCreate(comm, &mode[0]);CHKERRQ(ierr);
151cb1e1211SMatthew G Knepley   ierr = VecSetSizes(mode[0], n, PETSC_DETERMINE);CHKERRQ(ierr);
152cb1e1211SMatthew G Knepley   ierr = VecSetUp(mode[0]);CHKERRQ(ierr);
153cb1e1211SMatthew G Knepley   for (i = 1; i < m; ++i) {ierr = VecDuplicate(mode[0], &mode[i]);CHKERRQ(ierr);}
154026175e5SToby Isaac   for (d = 0; d < m; d++) {
155330485fdSToby Isaac     PetscInt ctx[2];
156026175e5SToby Isaac     void    *voidctx = (void *) (&ctx[0]);
1570163fd50SMatthew G. Knepley     PetscErrorCode (*func)(PetscInt, PetscReal, const PetscReal *, PetscInt, PetscScalar *, void *) = DMPlexProjectRigidBody;
158cb1e1211SMatthew G Knepley 
1599d8fbdeaSMatthew G. Knepley     ctx[0] = dimEmbed;
160330485fdSToby Isaac     ctx[1] = d;
1610163fd50SMatthew G. Knepley     ierr = DMPlexProjectFunction(dm, 0.0, &func, &voidctx, INSERT_VALUES, mode[d]);CHKERRQ(ierr);
162cb1e1211SMatthew G Knepley   }
163cb1e1211SMatthew G Knepley   for (i = 0; i < dim; ++i) {ierr = VecNormalize(mode[i], NULL);CHKERRQ(ierr);}
164cb1e1211SMatthew G Knepley   /* Orthonormalize system */
165cb1e1211SMatthew G Knepley   for (i = dim; i < m; ++i) {
166cb1e1211SMatthew G Knepley     PetscScalar dots[6];
167cb1e1211SMatthew G Knepley 
168cb1e1211SMatthew G Knepley     ierr = VecMDot(mode[i], i, mode, dots);CHKERRQ(ierr);
169cb1e1211SMatthew G Knepley     for (j = 0; j < i; ++j) dots[j] *= -1.0;
170cb1e1211SMatthew G Knepley     ierr = VecMAXPY(mode[i], i, dots, mode);CHKERRQ(ierr);
171cb1e1211SMatthew G Knepley     ierr = VecNormalize(mode[i], NULL);CHKERRQ(ierr);
172cb1e1211SMatthew G Knepley   }
173cb1e1211SMatthew G Knepley   ierr = MatNullSpaceCreate(comm, PETSC_FALSE, m, mode, sp);CHKERRQ(ierr);
174cb1e1211SMatthew G Knepley   for (i = 0; i< m; ++i) {ierr = VecDestroy(&mode[i]);CHKERRQ(ierr);}
175cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
176cb1e1211SMatthew G Knepley }
177cb1e1211SMatthew G Knepley 
178cb1e1211SMatthew G Knepley #undef __FUNCT__
179b29cfa1cSToby Isaac #define __FUNCT__ "DMPlexSetMaxProjectionHeight"
180b29cfa1cSToby Isaac /*@
181b29cfa1cSToby Isaac   DMPlexSetMaxProjectionHeight - In DMPlexProjectXXXLocal() functions, the projected values of a basis function's dofs
182b29cfa1cSToby Isaac   are computed by associating the basis function with one of the mesh points in its transitively-closed support, and
183b29cfa1cSToby Isaac   evaluating the dual space basis of that point.  A basis function is associated with the point in its
184b29cfa1cSToby Isaac   transitively-closed support whose mesh height is highest (w.r.t. DAG height), but not greater than the maximum
185b29cfa1cSToby Isaac   projection height, which is set with this function.  By default, the maximum projection height is zero, which means
186b29cfa1cSToby Isaac   that only mesh cells are used to project basis functions.  A height of one, for example, evaluates a cell-interior
187b29cfa1cSToby Isaac   basis functions using its cells dual space basis, but all other basis functions with the dual space basis of a face.
188b29cfa1cSToby Isaac 
189b29cfa1cSToby Isaac   Input Parameters:
190b29cfa1cSToby Isaac + dm - the DMPlex object
191b29cfa1cSToby Isaac - height - the maximum projection height >= 0
192b29cfa1cSToby Isaac 
193b29cfa1cSToby Isaac   Level: advanced
194b29cfa1cSToby Isaac 
195048b7b1eSToby Isaac .seealso: DMPlexGetMaxProjectionHeight(), DMPlexProjectFunctionLocal(), DMPlexProjectFunctionLabelLocal()
196b29cfa1cSToby Isaac @*/
197b29cfa1cSToby Isaac PetscErrorCode DMPlexSetMaxProjectionHeight(DM dm, PetscInt height)
198b29cfa1cSToby Isaac {
199b29cfa1cSToby Isaac   DM_Plex *plex = (DM_Plex *) dm->data;
200b29cfa1cSToby Isaac 
201b29cfa1cSToby Isaac   PetscFunctionBegin;
202b29cfa1cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
203b29cfa1cSToby Isaac   plex->maxProjectionHeight = height;
204b29cfa1cSToby Isaac   PetscFunctionReturn(0);
205b29cfa1cSToby Isaac }
206b29cfa1cSToby Isaac 
207b29cfa1cSToby Isaac #undef __FUNCT__
208b29cfa1cSToby Isaac #define __FUNCT__ "DMPlexGetMaxProjectionHeight"
209b29cfa1cSToby Isaac /*@
210b29cfa1cSToby Isaac   DMPlexGetMaxProjectionHeight - Get the maximum height (w.r.t. DAG) of mesh points used to evaluate dual bases in
211b29cfa1cSToby Isaac   DMPlexProjectXXXLocal() functions.
212b29cfa1cSToby Isaac 
213b29cfa1cSToby Isaac   Input Parameters:
214b29cfa1cSToby Isaac . dm - the DMPlex object
215b29cfa1cSToby Isaac 
216b29cfa1cSToby Isaac   Output Parameters:
217b29cfa1cSToby Isaac . height - the maximum projection height
218b29cfa1cSToby Isaac 
219b29cfa1cSToby Isaac   Level: intermediate
220b29cfa1cSToby Isaac 
221048b7b1eSToby Isaac .seealso: DMPlexSetMaxProjectionHeight(), DMPlexProjectFunctionLocal(), DMPlexProjectFunctionLabelLocal()
222b29cfa1cSToby Isaac @*/
223b29cfa1cSToby Isaac PetscErrorCode DMPlexGetMaxProjectionHeight(DM dm, PetscInt *height)
224b29cfa1cSToby Isaac {
225b29cfa1cSToby Isaac   DM_Plex *plex = (DM_Plex *) dm->data;
226b29cfa1cSToby Isaac 
227b29cfa1cSToby Isaac   PetscFunctionBegin;
228b29cfa1cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
229b29cfa1cSToby Isaac   *height = plex->maxProjectionHeight;
230b29cfa1cSToby Isaac   PetscFunctionReturn(0);
231b29cfa1cSToby Isaac }
232b29cfa1cSToby Isaac 
233b29cfa1cSToby Isaac #undef __FUNCT__
234a18a7fb9SMatthew G. Knepley #define __FUNCT__ "DMPlexProjectFunctionLabelLocal"
2350163fd50SMatthew G. Knepley PetscErrorCode DMPlexProjectFunctionLabelLocal(DM dm, PetscReal time, DMLabel label, PetscInt numIds, const PetscInt ids[], PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX)
236a18a7fb9SMatthew G. Knepley {
2377d1dd11eSToby Isaac   PetscDualSpace *sp, *cellsp;
238dda36da7SMatthew G. Knepley   PetscInt       *numComp;
239a18a7fb9SMatthew G. Knepley   PetscSection    section;
240a18a7fb9SMatthew G. Knepley   PetscScalar    *values;
241ad96f515SMatthew G. Knepley   PetscBool      *fieldActive;
242dda36da7SMatthew G. Knepley   PetscInt        numFields, dim, dimEmbed, spDim, totDim = 0, numValues, pStart, pEnd, cStart, cEnd, cEndInterior, f, d, v, i, comp, maxHeight, h;
243a18a7fb9SMatthew G. Knepley   PetscErrorCode  ierr;
244a18a7fb9SMatthew G. Knepley 
245a18a7fb9SMatthew G. Knepley   PetscFunctionBegin;
2469ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
2479ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
2489ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
2499ac3fadcSMatthew G. Knepley   if (cEnd <= cStart) PetscFunctionReturn(0);
250c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
2517a1a1bd4SToby Isaac   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
252a18a7fb9SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
253a18a7fb9SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
254dda36da7SMatthew G. Knepley   ierr = PetscMalloc2(numFields,&sp,numFields,&numComp);CHKERRQ(ierr);
2557d1dd11eSToby Isaac   ierr = DMPlexGetMaxProjectionHeight(dm,&maxHeight);CHKERRQ(ierr);
2567d1dd11eSToby Isaac   if (maxHeight < 0 || maxHeight > dim) {SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_USER,"maximum projection height %d not in [0, %d)\n", maxHeight,dim);}
2579ac3fadcSMatthew G. Knepley   if (maxHeight > 0) {ierr = PetscMalloc1(numFields,&cellsp);CHKERRQ(ierr);}
2589ac3fadcSMatthew G. Knepley   else               {cellsp = sp;}
2597d1dd11eSToby Isaac   for (h = 0; h <= maxHeight; h++) {
2607d1dd11eSToby Isaac     ierr = DMPlexGetHeightStratum(dm, h, &pStart, &pEnd);CHKERRQ(ierr);
261fa5a0009SMatthew G. Knepley     if (!h) {pStart = cStart; pEnd = cEnd;}
2627d1dd11eSToby Isaac     if (pEnd <= pStart) continue;
2637d1dd11eSToby Isaac     totDim = 0;
264a18a7fb9SMatthew G. Knepley     for (f = 0; f < numFields; ++f) {
2659ac3fadcSMatthew G. Knepley       PetscObject  obj;
2669ac3fadcSMatthew G. Knepley       PetscClassId id;
2679ac3fadcSMatthew G. Knepley 
2689ac3fadcSMatthew G. Knepley       ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr);
2699ac3fadcSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
2709ac3fadcSMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
2719ac3fadcSMatthew G. Knepley         PetscFE fe = (PetscFE) obj;
2729ac3fadcSMatthew G. Knepley 
273dda36da7SMatthew G. Knepley         ierr = PetscFEGetNumComponents(fe, &numComp[f]);CHKERRQ(ierr);
2747d1dd11eSToby Isaac         if (!h) {
275ee2838f6SToby Isaac           ierr = PetscFEGetDualSpace(fe, &cellsp[f]);CHKERRQ(ierr);
2767d1dd11eSToby Isaac           sp[f] = cellsp[f];
2779ac3fadcSMatthew G. Knepley           ierr = PetscObjectReference((PetscObject) sp[f]);CHKERRQ(ierr);
2789ac3fadcSMatthew G. Knepley         } else {
2797d1dd11eSToby Isaac           ierr = PetscDualSpaceGetHeightSubspace(cellsp[f], h, &sp[f]);CHKERRQ(ierr);
2807d1dd11eSToby Isaac           if (!sp[f]) continue;
2817d1dd11eSToby Isaac         }
2829ac3fadcSMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
2839ac3fadcSMatthew G. Knepley         PetscFV fv = (PetscFV) obj;
2849ac3fadcSMatthew G. Knepley 
285dda36da7SMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &numComp[f]);CHKERRQ(ierr);
286302440fdSBarry Smith         ierr = PetscFVGetDualSpace(fv, &sp[f]);CHKERRQ(ierr);
287e3e48f69SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) sp[f]);CHKERRQ(ierr);
2889ac3fadcSMatthew G. Knepley       } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", f);
289a18a7fb9SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(sp[f], &spDim);CHKERRQ(ierr);
290dda36da7SMatthew G. Knepley       totDim += spDim*numComp[f];
291a18a7fb9SMatthew G. Knepley     }
2927d1dd11eSToby Isaac     ierr = DMPlexVecGetClosure(dm, section, localX, pStart, &numValues, NULL);CHKERRQ(ierr);
2937d1dd11eSToby Isaac     if (numValues != totDim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "The section point closure size %d != dual space dimension %d", numValues, totDim);
294d374af2bSToby Isaac     if (!totDim) continue;
295a18a7fb9SMatthew G. Knepley     ierr = DMGetWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
296ad96f515SMatthew G. Knepley     ierr = DMGetWorkArray(dm, numFields, PETSC_BOOL, &fieldActive);CHKERRQ(ierr);
297ee2838f6SToby Isaac     for (f = 0; f < numFields; ++f) fieldActive[f] = (funcs[f] && sp[f]) ? PETSC_TRUE : PETSC_FALSE;
298a18a7fb9SMatthew G. Knepley     for (i = 0; i < numIds; ++i) {
299a18a7fb9SMatthew G. Knepley       IS              pointIS;
300a18a7fb9SMatthew G. Knepley       const PetscInt *points;
301a18a7fb9SMatthew G. Knepley       PetscInt        n, p;
302a18a7fb9SMatthew G. Knepley 
303a18a7fb9SMatthew G. Knepley       ierr = DMLabelGetStratumIS(label, ids[i], &pointIS);CHKERRQ(ierr);
304a18a7fb9SMatthew G. Knepley       ierr = ISGetLocalSize(pointIS, &n);CHKERRQ(ierr);
305a18a7fb9SMatthew G. Knepley       ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
306a18a7fb9SMatthew G. Knepley       for (p = 0; p < n; ++p) {
307a18a7fb9SMatthew G. Knepley         const PetscInt    point = points[p];
308e1d0b1adSMatthew G. Knepley         PetscFECellGeom   geom;
309a18a7fb9SMatthew G. Knepley 
3107d1dd11eSToby Isaac         if ((point < pStart) || (point >= pEnd)) continue;
311e1d0b1adSMatthew G. Knepley         ierr          = DMPlexComputeCellGeometryFEM(dm, point, NULL, geom.v0, geom.J, NULL, &geom.detJ);CHKERRQ(ierr);
312ee2838f6SToby Isaac         geom.dim      = dim - h;
3137a1a1bd4SToby Isaac         geom.dimEmbed = dimEmbed;
314a18a7fb9SMatthew G. Knepley         for (f = 0, v = 0; f < numFields; ++f) {
315a18a7fb9SMatthew G. Knepley           void * const ctx = ctxs ? ctxs[f] : NULL;
316bf3434eeSMatthew G. Knepley 
3177d1dd11eSToby Isaac           if (!sp[f]) continue;
318a18a7fb9SMatthew G. Knepley           ierr = PetscDualSpaceGetDimension(sp[f], &spDim);CHKERRQ(ierr);
319a18a7fb9SMatthew G. Knepley           for (d = 0; d < spDim; ++d) {
320a18a7fb9SMatthew G. Knepley             if (funcs[f]) {
3210163fd50SMatthew G. Knepley               ierr = PetscDualSpaceApply(sp[f], d, time, &geom, numComp[f], funcs[f], ctx, &values[v]);CHKERRQ(ierr);
322a18a7fb9SMatthew G. Knepley             } else {
323dda36da7SMatthew G. Knepley               for (comp = 0; comp < numComp[f]; ++comp) values[v+comp] = 0.0;
324a18a7fb9SMatthew G. Knepley             }
325dda36da7SMatthew G. Knepley             v += numComp[f];
326a18a7fb9SMatthew G. Knepley           }
327a18a7fb9SMatthew G. Knepley         }
328ad96f515SMatthew G. Knepley         ierr = DMPlexVecSetFieldClosure_Internal(dm, section, localX, fieldActive, point, values, mode);CHKERRQ(ierr);
329a18a7fb9SMatthew G. Knepley       }
330a18a7fb9SMatthew G. Knepley       ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
331a18a7fb9SMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
332a18a7fb9SMatthew G. Knepley     }
3337d1dd11eSToby Isaac     if (h) {
3347d1dd11eSToby Isaac       for (f = 0; f < numFields; ++f) {ierr = PetscDualSpaceDestroy(&sp[f]);CHKERRQ(ierr);}
3357d1dd11eSToby Isaac     }
3367d1dd11eSToby Isaac   }
337a18a7fb9SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
338ad96f515SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, numFields, PETSC_BOOL, &fieldActive);CHKERRQ(ierr);
3399ac3fadcSMatthew G. Knepley   for (f = 0; f < numFields; ++f) {ierr = PetscDualSpaceDestroy(&sp[f]);CHKERRQ(ierr);}
340dda36da7SMatthew G. Knepley   ierr = PetscFree2(sp, numComp);CHKERRQ(ierr);
3417d1dd11eSToby Isaac   if (maxHeight > 0) {
3427d1dd11eSToby Isaac     ierr = PetscFree(cellsp);CHKERRQ(ierr);
3437d1dd11eSToby Isaac   }
344a18a7fb9SMatthew G. Knepley   PetscFunctionReturn(0);
345a18a7fb9SMatthew G. Knepley }
346a18a7fb9SMatthew G. Knepley 
347a18a7fb9SMatthew G. Knepley #undef __FUNCT__
348cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexProjectFunctionLocal"
3490163fd50SMatthew G. Knepley PetscErrorCode DMPlexProjectFunctionLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec localX)
350cb1e1211SMatthew G Knepley {
3517d1dd11eSToby Isaac   PetscDualSpace *sp, *cellsp;
35215496722SMatthew G. Knepley   PetscInt       *numComp;
35372f94c41SMatthew G. Knepley   PetscSection    section;
35472f94c41SMatthew G. Knepley   PetscScalar    *values;
355b793a5ffSMatthew G. Knepley   PetscInt        Nf, dim, dimEmbed, spDim, totDim = 0, numValues, pStart, pEnd, p, cStart, cEnd, cEndInterior, f, d, v, comp, h, maxHeight;
356cb1e1211SMatthew G Knepley   PetscErrorCode  ierr;
357cb1e1211SMatthew G Knepley 
358cb1e1211SMatthew G Knepley   PetscFunctionBegin;
3599ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
3609ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
3619ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
3629ac3fadcSMatthew G. Knepley   if (cEnd <= cStart) PetscFunctionReturn(0);
363cb1e1211SMatthew G Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
364b793a5ffSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
365b793a5ffSMatthew G. Knepley   ierr = PetscMalloc2(Nf, &sp, Nf, &numComp);CHKERRQ(ierr);
3667d1dd11eSToby Isaac   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
367ee2838f6SToby Isaac   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
3687d1dd11eSToby Isaac   ierr = DMPlexGetMaxProjectionHeight(dm,&maxHeight);CHKERRQ(ierr);
3697d1dd11eSToby Isaac   if (maxHeight < 0 || maxHeight > dim) {SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_USER,"maximum projection height %d not in [0, %d)\n", maxHeight,dim);}
3707d1dd11eSToby Isaac   if (maxHeight > 0) {
371b793a5ffSMatthew G. Knepley     ierr = PetscMalloc1(Nf,&cellsp);CHKERRQ(ierr);
3727d1dd11eSToby Isaac   }
373048b7b1eSToby Isaac   else {
374048b7b1eSToby Isaac     cellsp = sp;
375048b7b1eSToby Isaac   }
3767d1dd11eSToby Isaac   for (h = 0; h <= maxHeight; h++) {
3777d1dd11eSToby Isaac     ierr = DMPlexGetHeightStratum(dm, h, &pStart, &pEnd);CHKERRQ(ierr);
378fa5a0009SMatthew G. Knepley     if (!h) {pStart = cStart; pEnd = cEnd;}
379048b7b1eSToby Isaac     if (pEnd <= pStart) continue;
3807d1dd11eSToby Isaac     totDim = 0;
381b793a5ffSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
38215496722SMatthew G. Knepley       PetscObject  obj;
38315496722SMatthew G. Knepley       PetscClassId id;
3840f2d7e86SMatthew G. Knepley 
38515496722SMatthew G. Knepley       ierr = DMGetField(dm, f, &obj);CHKERRQ(ierr);
38615496722SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
38715496722SMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
38815496722SMatthew G. Knepley         PetscFE fe = (PetscFE) obj;
38915496722SMatthew G. Knepley 
39015496722SMatthew G. Knepley         ierr = PetscFEGetNumComponents(fe, &numComp[f]);CHKERRQ(ierr);
3917d1dd11eSToby Isaac         if (!h) {
3927d1dd11eSToby Isaac           ierr  = PetscFEGetDualSpace(fe, &cellsp[f]);CHKERRQ(ierr);
3937d1dd11eSToby Isaac           sp[f] = cellsp[f];
39415496722SMatthew G. Knepley           ierr  = PetscObjectReference((PetscObject) sp[f]);CHKERRQ(ierr);
3957d1dd11eSToby Isaac         }
3967d1dd11eSToby Isaac         else {
3977d1dd11eSToby Isaac           ierr = PetscDualSpaceGetHeightSubspace(cellsp[f], h, &sp[f]);CHKERRQ(ierr);
3987d1dd11eSToby Isaac           if (!sp[f]) {
3997d1dd11eSToby Isaac             continue;
4007d1dd11eSToby Isaac           }
4017d1dd11eSToby Isaac         }
40215496722SMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
40315496722SMatthew G. Knepley         PetscFV fv = (PetscFV) obj;
40415496722SMatthew G. Knepley 
405976fa17dSToby Isaac         if (!h) {
406976fa17dSToby Isaac           ierr = PetscFVGetNumComponents(fv, &numComp[f]);CHKERRQ(ierr);
407976fa17dSToby Isaac           ierr = PetscFVGetDualSpace(fv, &cellsp[f]);CHKERRQ(ierr);
408976fa17dSToby Isaac           ierr = PetscObjectReference((PetscObject) cellsp[f]);CHKERRQ(ierr);
409976fa17dSToby Isaac           sp[f] = cellsp[f];
410976fa17dSToby Isaac         }
411976fa17dSToby Isaac         else {
41277d9c660SToby Isaac           sp[f] = NULL;
41377d9c660SToby Isaac           continue; /* FV doesn't have fields that can be evaluated at faces, corners, etc. */
41477d9c660SToby Isaac         }
41515496722SMatthew G. Knepley       } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", f);
41672f94c41SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(sp[f], &spDim);CHKERRQ(ierr);
41715496722SMatthew G. Knepley       totDim += spDim*numComp[f];
418cb1e1211SMatthew G Knepley     }
4197d1dd11eSToby Isaac     ierr = DMPlexVecGetClosure(dm, section, localX, pStart, &numValues, NULL);CHKERRQ(ierr);
4207d1dd11eSToby Isaac     if (numValues != totDim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "The section point closure size %d != dual space dimension %d", numValues, totDim);
421d374af2bSToby Isaac     if (!totDim) continue;
42272f94c41SMatthew G. Knepley     ierr = DMGetWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
4237d1dd11eSToby Isaac     for (p = pStart; p < pEnd; ++p) {
424e1d0b1adSMatthew G. Knepley       PetscFECellGeom geom;
425cb1e1211SMatthew G Knepley 
42631383a9bSToby Isaac       ierr          = DMPlexComputeCellGeometryFEM(dm, p, NULL, geom.v0, geom.J, NULL, &geom.detJ);CHKERRQ(ierr);
427910c25dcSToby Isaac       geom.dim      = dim - h;
4287a1a1bd4SToby Isaac       geom.dimEmbed = dimEmbed;
429b793a5ffSMatthew G. Knepley       for (f = 0, v = 0; f < Nf; ++f) {
430c110b1eeSGeoffrey Irving         void * const ctx = ctxs ? ctxs[f] : NULL;
4310f2d7e86SMatthew G. Knepley 
4327d1dd11eSToby Isaac         if (!sp[f]) continue;
43372f94c41SMatthew G. Knepley         ierr = PetscDualSpaceGetDimension(sp[f], &spDim);CHKERRQ(ierr);
43472f94c41SMatthew G. Knepley         for (d = 0; d < spDim; ++d) {
435120386c5SMatthew G. Knepley           if (funcs[f]) {
4360163fd50SMatthew G. Knepley             ierr = PetscDualSpaceApply(sp[f], d, time, &geom, numComp[f], funcs[f], ctx, &values[v]);CHKERRQ(ierr);
437120386c5SMatthew G. Knepley           } else {
43815496722SMatthew G. Knepley             for (comp = 0; comp < numComp[f]; ++comp) values[v+comp] = 0.0;
439120386c5SMatthew G. Knepley           }
44015496722SMatthew G. Knepley           v += numComp[f];
441cb1e1211SMatthew G Knepley         }
442cb1e1211SMatthew G Knepley       }
4437d1dd11eSToby Isaac       ierr = DMPlexVecSetClosure(dm, section, localX, p, values, mode);CHKERRQ(ierr);
444cb1e1211SMatthew G Knepley     }
44572f94c41SMatthew G. Knepley     ierr = DMRestoreWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
446ee2838f6SToby Isaac     if (h || !maxHeight) {
447b793a5ffSMatthew G. Knepley       for (f = 0; f < Nf; f++) {ierr = PetscDualSpaceDestroy(&sp[f]);CHKERRQ(ierr);}
4487d1dd11eSToby Isaac     }
4497d1dd11eSToby Isaac   }
45015496722SMatthew G. Knepley   ierr = PetscFree2(sp, numComp);CHKERRQ(ierr);
4517d1dd11eSToby Isaac   if (maxHeight > 0) {
452b793a5ffSMatthew G. Knepley     for (f = 0; f < Nf; f++) {ierr = PetscDualSpaceDestroy(&cellsp[f]);CHKERRQ(ierr);}
4537d1dd11eSToby Isaac     ierr = PetscFree(cellsp);CHKERRQ(ierr);
4547d1dd11eSToby Isaac   }
455cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
456cb1e1211SMatthew G Knepley }
457cb1e1211SMatthew G Knepley 
458cb1e1211SMatthew G Knepley #undef __FUNCT__
4598040c1f3SToby Isaac #define __FUNCT__ "DMPlexProjectFunction"
4608040c1f3SToby Isaac /*@C
4618040c1f3SToby Isaac   DMPlexProjectFunction - This projects the given function into the function space provided.
4628040c1f3SToby Isaac 
4638040c1f3SToby Isaac   Input Parameters:
4648040c1f3SToby Isaac + dm      - The DM
4658040c1f3SToby Isaac . funcs   - The coordinate functions to evaluate, one per field
4668040c1f3SToby Isaac . ctxs    - Optional array of contexts to pass to each coordinate function.  ctxs itself may be null.
4678040c1f3SToby Isaac - mode    - The insertion mode for values
4688040c1f3SToby Isaac 
4698040c1f3SToby Isaac   Output Parameter:
4708040c1f3SToby Isaac . X - vector
4718040c1f3SToby Isaac 
472ad917190SMatthew G. Knepley    Calling sequence of func:
473ad917190SMatthew G. Knepley $    func(PetscInt dim, const PetscReal x[], PetscInt Nf, PetscScalar u[], void *ctx);
474ad917190SMatthew G. Knepley 
475ad917190SMatthew G. Knepley +  dim - The spatial dimension
476ad917190SMatthew G. Knepley .  x   - The coordinates
477ad917190SMatthew G. Knepley .  Nf  - The number of fields
478ad917190SMatthew G. Knepley .  u   - The output field values
479ad917190SMatthew G. Knepley -  ctx - optional user-defined function context
480ad917190SMatthew G. Knepley 
4818040c1f3SToby Isaac   Level: developer
4828040c1f3SToby Isaac 
4838040c1f3SToby Isaac .seealso: DMPlexComputeL2Diff()
4848040c1f3SToby Isaac @*/
4850163fd50SMatthew G. Knepley PetscErrorCode DMPlexProjectFunction(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, InsertMode mode, Vec X)
4868040c1f3SToby Isaac {
4878040c1f3SToby Isaac   Vec            localX;
4888040c1f3SToby Isaac   PetscErrorCode ierr;
4898040c1f3SToby Isaac 
4908040c1f3SToby Isaac   PetscFunctionBegin;
4918040c1f3SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
4928040c1f3SToby Isaac   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
4930163fd50SMatthew G. Knepley   ierr = DMPlexProjectFunctionLocal(dm, time, funcs, ctxs, mode, localX);CHKERRQ(ierr);
4948040c1f3SToby Isaac   ierr = DMLocalToGlobalBegin(dm, localX, mode, X);CHKERRQ(ierr);
4958040c1f3SToby Isaac   ierr = DMLocalToGlobalEnd(dm, localX, mode, X);CHKERRQ(ierr);
4968040c1f3SToby Isaac   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
497cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
498cb1e1211SMatthew G Knepley }
499cb1e1211SMatthew G Knepley 
500cb1e1211SMatthew G Knepley #undef __FUNCT__
5010f2d7e86SMatthew G. Knepley #define __FUNCT__ "DMPlexProjectFieldLocal"
5023bc3b0a0SMatthew G. Knepley PetscErrorCode DMPlexProjectFieldLocal(DM dm, Vec localU, void (**funcs)(const PetscScalar[], const PetscScalar[], const PetscScalar[], const PetscScalar[], const PetscScalar[], const PetscScalar[], const PetscReal [], PetscScalar []), InsertMode mode, Vec localX)
5030f2d7e86SMatthew G. Knepley {
5040f2d7e86SMatthew G. Knepley   DM                dmAux;
505d5396abcSMatthew G. Knepley   PetscDS           prob, probAux = NULL;
5060f2d7e86SMatthew G. Knepley   Vec               A;
507d5396abcSMatthew G. Knepley   PetscSection      section, sectionAux = NULL;
508b793a5ffSMatthew G. Knepley   PetscDualSpace   *sp;
509b793a5ffSMatthew G. Knepley   PetscInt         *Ncf;
510326413afSMatthew G. Knepley   PetscScalar      *values, *u, *u_x, *a, *a_x;
511d5396abcSMatthew G. Knepley   PetscReal        *x, *v0, *J, *invJ, detJ;
5129ac3fadcSMatthew G. Knepley   PetscInt          Nf, dim, spDim, totDim, numValues, cStart, cEnd, cEndInterior, c, f, d, v, comp, maxHeight;
5130f2d7e86SMatthew G. Knepley   PetscErrorCode    ierr;
5140f2d7e86SMatthew G. Knepley 
5150f2d7e86SMatthew G. Knepley   PetscFunctionBegin;
516048b7b1eSToby Isaac   ierr = DMPlexGetMaxProjectionHeight(dm,&maxHeight);CHKERRQ(ierr);
517048b7b1eSToby Isaac   if (maxHeight > 0) {SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Field projection for height > 0 not supported yet");}
5182764a2aaSMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
519c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
5200f2d7e86SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
5210f2d7e86SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
522b793a5ffSMatthew G. Knepley   ierr = PetscMalloc2(Nf, &sp, Nf, &Ncf);CHKERRQ(ierr);
5230f2d7e86SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
5242764a2aaSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
5252764a2aaSMatthew G. Knepley   ierr = PetscDSGetEvaluationArrays(prob, &u, NULL, &u_x);CHKERRQ(ierr);
5262764a2aaSMatthew G. Knepley   ierr = PetscDSGetRefCoordArrays(prob, &x, NULL);CHKERRQ(ierr);
5270f2d7e86SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) dm, "dmAux", (PetscObject *) &dmAux);CHKERRQ(ierr);
5280f2d7e86SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) dm, "A", (PetscObject *) &A);CHKERRQ(ierr);
5290f2d7e86SMatthew G. Knepley   if (dmAux) {
5302764a2aaSMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
531326413afSMatthew G. Knepley     ierr = DMGetDefaultSection(dmAux, &sectionAux);CHKERRQ(ierr);
5322764a2aaSMatthew G. Knepley     ierr = PetscDSGetEvaluationArrays(probAux, &a, NULL, &a_x);CHKERRQ(ierr);
5330f2d7e86SMatthew G. Knepley   }
534d7ddef95SMatthew G. Knepley   ierr = DMPlexInsertBoundaryValues(dm, localU, 0.0, NULL, NULL, NULL);CHKERRQ(ierr);
5350f2d7e86SMatthew G. Knepley   ierr = DMPlexVecGetClosure(dm, section, localX, cStart, &numValues, NULL);CHKERRQ(ierr);
5360f2d7e86SMatthew G. Knepley   if (numValues != totDim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "The section cell closure size %d != dual space dimension %d", numValues, totDim);
5370f2d7e86SMatthew G. Knepley   ierr = DMGetWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
5380f2d7e86SMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
5399ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
5409ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
5410f2d7e86SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
542326413afSMatthew G. Knepley     PetscScalar *coefficients = NULL, *coefficientsAux = NULL;
543326413afSMatthew G. Knepley 
5448e0841e0SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
545326413afSMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, section, localU, c, NULL, &coefficients);CHKERRQ(ierr);
546326413afSMatthew G. Knepley     if (dmAux) {ierr = DMPlexVecGetClosure(dmAux, sectionAux, A, c, NULL, &coefficientsAux);CHKERRQ(ierr);}
5470f2d7e86SMatthew G. Knepley     for (f = 0, v = 0; f < Nf; ++f) {
548d5396abcSMatthew G. Knepley       PetscObject  obj;
549d5396abcSMatthew G. Knepley       PetscClassId id;
5503113607cSMatthew G. Knepley 
551d5396abcSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
552d5396abcSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
553d5396abcSMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
554d5396abcSMatthew G. Knepley         PetscFE fe = (PetscFE) obj;
555d5396abcSMatthew G. Knepley 
556b793a5ffSMatthew G. Knepley         ierr = PetscFEGetDualSpace(fe, &sp[f]);CHKERRQ(ierr);
557b793a5ffSMatthew G. Knepley         ierr  = PetscObjectReference((PetscObject) sp[f]);CHKERRQ(ierr);
558b793a5ffSMatthew G. Knepley         ierr = PetscFEGetNumComponents(fe, &Ncf[f]);CHKERRQ(ierr);
559d5396abcSMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
560d5396abcSMatthew G. Knepley         PetscFV fv = (PetscFV) obj;
561d5396abcSMatthew G. Knepley 
562b793a5ffSMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &Ncf[f]);CHKERRQ(ierr);
563302440fdSBarry Smith         ierr = PetscFVGetDualSpace(fv, &sp[f]);CHKERRQ(ierr);
564e3e48f69SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) sp[f]);CHKERRQ(ierr);
565d5396abcSMatthew G. Knepley       }
566b793a5ffSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(sp[f], &spDim);CHKERRQ(ierr);
5670f2d7e86SMatthew G. Knepley       for (d = 0; d < spDim; ++d) {
5680f2d7e86SMatthew G. Knepley         PetscQuadrature  quad;
5690f2d7e86SMatthew G. Knepley         const PetscReal *points, *weights;
5700f2d7e86SMatthew G. Knepley         PetscInt         numPoints, q;
5710f2d7e86SMatthew G. Knepley 
5720f2d7e86SMatthew G. Knepley         if (funcs[f]) {
573b793a5ffSMatthew G. Knepley           ierr = PetscDualSpaceGetFunctional(sp[f], d, &quad);CHKERRQ(ierr);
5740f2d7e86SMatthew G. Knepley           ierr = PetscQuadratureGetData(quad, NULL, &numPoints, &points, &weights);CHKERRQ(ierr);
5750f2d7e86SMatthew G. Knepley           for (q = 0; q < numPoints; ++q) {
5760f2d7e86SMatthew G. Knepley             CoordinatesRefToReal(dim, dim, v0, J, &points[q*dim], x);
577326413afSMatthew G. Knepley             ierr = EvaluateFieldJets(prob,    PETSC_FALSE, q, invJ, coefficients,    NULL, u, u_x, NULL);CHKERRQ(ierr);
578326413afSMatthew G. Knepley             ierr = EvaluateFieldJets(probAux, PETSC_FALSE, q, invJ, coefficientsAux, NULL, a, a_x, NULL);CHKERRQ(ierr);
5793bc3b0a0SMatthew G. Knepley             (*funcs[f])(u, NULL, u_x, a, NULL, a_x, x, &values[v]);
5800f2d7e86SMatthew G. Knepley           }
5810f2d7e86SMatthew G. Knepley         } else {
582b793a5ffSMatthew G. Knepley           for (comp = 0; comp < Ncf[f]; ++comp) values[v+comp] = 0.0;
5830f2d7e86SMatthew G. Knepley         }
584b793a5ffSMatthew G. Knepley         v += Ncf[f];
5850f2d7e86SMatthew G. Knepley       }
5860f2d7e86SMatthew G. Knepley     }
587326413afSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, section, localU, c, NULL, &coefficients);CHKERRQ(ierr);
588326413afSMatthew G. Knepley     if (dmAux) {ierr = DMPlexVecRestoreClosure(dmAux, sectionAux, A, c, NULL, &coefficientsAux);CHKERRQ(ierr);}
5890f2d7e86SMatthew G. Knepley     ierr = DMPlexVecSetClosure(dm, section, localX, c, values, mode);CHKERRQ(ierr);
5900f2d7e86SMatthew G. Knepley   }
5910f2d7e86SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, numValues, PETSC_SCALAR, &values);CHKERRQ(ierr);
5920f2d7e86SMatthew G. Knepley   ierr = PetscFree3(v0,J,invJ);CHKERRQ(ierr);
593b793a5ffSMatthew G. Knepley   for (f = 0; f < Nf; f++) {ierr = PetscDualSpaceDestroy(&sp[f]);CHKERRQ(ierr);}
594b793a5ffSMatthew G. Knepley   ierr = PetscFree2(sp, Ncf);CHKERRQ(ierr);
5950f2d7e86SMatthew G. Knepley   PetscFunctionReturn(0);
5960f2d7e86SMatthew G. Knepley }
5970f2d7e86SMatthew G. Knepley 
5980f2d7e86SMatthew G. Knepley #undef __FUNCT__
599d7ddef95SMatthew G. Knepley #define __FUNCT__ "DMPlexInsertBoundaryValues_FEM_Internal"
6000163fd50SMatthew G. Knepley static PetscErrorCode DMPlexInsertBoundaryValues_FEM_Internal(DM dm, PetscReal time, PetscInt field, DMLabel label, PetscInt numids, const PetscInt ids[], PetscErrorCode (*func)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void *ctx, Vec locX)
60155f2e967SMatthew G. Knepley {
6020163fd50SMatthew G. Knepley   PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal x[], PetscInt, PetscScalar *u, void *ctx);
60355f2e967SMatthew G. Knepley   void            **ctxs;
604d7ddef95SMatthew G. Knepley   PetscInt          numFields;
605d7ddef95SMatthew G. Knepley   PetscErrorCode    ierr;
606d7ddef95SMatthew G. Knepley 
607d7ddef95SMatthew G. Knepley   PetscFunctionBegin;
608d7ddef95SMatthew G. Knepley   ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
609d7ddef95SMatthew G. Knepley   ierr = PetscCalloc2(numFields,&funcs,numFields,&ctxs);CHKERRQ(ierr);
610d7ddef95SMatthew G. Knepley   funcs[field] = func;
611d7ddef95SMatthew G. Knepley   ctxs[field]  = ctx;
6120163fd50SMatthew G. Knepley   ierr = DMPlexProjectFunctionLabelLocal(dm, time, label, numids, ids, funcs, ctxs, INSERT_BC_VALUES, locX);CHKERRQ(ierr);
613d7ddef95SMatthew G. Knepley   ierr = PetscFree2(funcs,ctxs);CHKERRQ(ierr);
614d7ddef95SMatthew G. Knepley   PetscFunctionReturn(0);
615d7ddef95SMatthew G. Knepley }
616d7ddef95SMatthew G. Knepley 
617d7ddef95SMatthew G. Knepley #undef __FUNCT__
618d7ddef95SMatthew G. Knepley #define __FUNCT__ "DMPlexInsertBoundaryValues_FVM_Internal"
6190e0f25f2SMatthew G. Knepley /* This ignores numcomps/comps */
620d7ddef95SMatthew G. Knepley static PetscErrorCode DMPlexInsertBoundaryValues_FVM_Internal(DM dm, PetscReal time, Vec faceGeometry, Vec cellGeometry, Vec Grad,
621d7ddef95SMatthew G. Knepley                                                               PetscInt field, DMLabel label, PetscInt numids, const PetscInt ids[], PetscErrorCode (*func)(PetscReal,const PetscReal*,const PetscReal*,const PetscScalar*,PetscScalar*,void*), void *ctx, Vec locX)
622d7ddef95SMatthew G. Knepley {
62361f58d28SMatthew G. Knepley   PetscDS            prob;
624da97024aSMatthew G. Knepley   PetscSF            sf;
625d7ddef95SMatthew G. Knepley   DM                 dmFace, dmCell, dmGrad;
626d7ddef95SMatthew G. Knepley   const PetscScalar *facegeom, *cellgeom, *grad;
627da97024aSMatthew G. Knepley   const PetscInt    *leaves;
628d7ddef95SMatthew G. Knepley   PetscScalar       *x, *fx;
629520b3818SMatthew G. Knepley   PetscInt           dim, nleaves, loc, fStart, fEnd, pdim, i;
630d7ddef95SMatthew G. Knepley   PetscErrorCode     ierr;
631d7ddef95SMatthew G. Knepley 
632d7ddef95SMatthew G. Knepley   PetscFunctionBegin;
633da97024aSMatthew G. Knepley   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
634da97024aSMatthew G. Knepley   ierr = PetscSFGetGraph(sf, NULL, &nleaves, &leaves, NULL);CHKERRQ(ierr);
635da97024aSMatthew G. Knepley   nleaves = PetscMax(0, nleaves);
636d7ddef95SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
637d7ddef95SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
63861f58d28SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
639d7ddef95SMatthew G. Knepley   ierr = VecGetDM(faceGeometry, &dmFace);CHKERRQ(ierr);
640d7ddef95SMatthew G. Knepley   ierr = VecGetArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
641d7ddef95SMatthew G. Knepley   ierr = VecGetDM(cellGeometry, &dmCell);CHKERRQ(ierr);
642d7ddef95SMatthew G. Knepley   ierr = VecGetArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
643d7ddef95SMatthew G. Knepley   if (Grad) {
644c0a6632aSMatthew G. Knepley     PetscFV fv;
645c0a6632aSMatthew G. Knepley 
646c0a6632aSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fv);CHKERRQ(ierr);
647d7ddef95SMatthew G. Knepley     ierr = VecGetDM(Grad, &dmGrad);CHKERRQ(ierr);
648d7ddef95SMatthew G. Knepley     ierr = VecGetArrayRead(Grad, &grad);CHKERRQ(ierr);
649d7ddef95SMatthew G. Knepley     ierr = PetscFVGetNumComponents(fv, &pdim);CHKERRQ(ierr);
650d7ddef95SMatthew G. Knepley     ierr = DMGetWorkArray(dm, pdim, PETSC_SCALAR, &fx);CHKERRQ(ierr);
651d7ddef95SMatthew G. Knepley   }
652d7ddef95SMatthew G. Knepley   ierr = VecGetArray(locX, &x);CHKERRQ(ierr);
653d7ddef95SMatthew G. Knepley   for (i = 0; i < numids; ++i) {
654d7ddef95SMatthew G. Knepley     IS              faceIS;
655d7ddef95SMatthew G. Knepley     const PetscInt *faces;
656d7ddef95SMatthew G. Knepley     PetscInt        numFaces, f;
657d7ddef95SMatthew G. Knepley 
658d7ddef95SMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, ids[i], &faceIS);CHKERRQ(ierr);
659d7ddef95SMatthew G. Knepley     if (!faceIS) continue; /* No points with that id on this process */
660d7ddef95SMatthew G. Knepley     ierr = ISGetLocalSize(faceIS, &numFaces);CHKERRQ(ierr);
661d7ddef95SMatthew G. Knepley     ierr = ISGetIndices(faceIS, &faces);CHKERRQ(ierr);
662d7ddef95SMatthew G. Knepley     for (f = 0; f < numFaces; ++f) {
663d7ddef95SMatthew G. Knepley       const PetscInt         face = faces[f], *cells;
664d7ddef95SMatthew G. Knepley       const PetscFVFaceGeom *fg;
665d7ddef95SMatthew G. Knepley 
666d7ddef95SMatthew G. Knepley       if ((face < fStart) || (face >= fEnd)) continue; /* Refinement adds non-faces to labels */
667da97024aSMatthew G. Knepley       ierr = PetscFindInt(face, nleaves, (PetscInt *) leaves, &loc);CHKERRQ(ierr);
668da97024aSMatthew G. Knepley       if (loc >= 0) continue;
669d7ddef95SMatthew G. Knepley       ierr = DMPlexPointLocalRead(dmFace, face, facegeom, &fg);CHKERRQ(ierr);
670d7ddef95SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, face, &cells);CHKERRQ(ierr);
671d7ddef95SMatthew G. Knepley       if (Grad) {
672d7ddef95SMatthew G. Knepley         const PetscFVCellGeom *cg;
673d7ddef95SMatthew G. Knepley         const PetscScalar     *cx, *cgrad;
674d7ddef95SMatthew G. Knepley         PetscScalar           *xG;
675d7ddef95SMatthew G. Knepley         PetscReal              dx[3];
676d7ddef95SMatthew G. Knepley         PetscInt               d;
677d7ddef95SMatthew G. Knepley 
678d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dmCell, cells[0], cellgeom, &cg);CHKERRQ(ierr);
679d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dm, cells[0], x, &cx);CHKERRQ(ierr);
680d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dmGrad, cells[0], grad, &cgrad);CHKERRQ(ierr);
681520b3818SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRef(dm, cells[1], field, x, &xG);CHKERRQ(ierr);
682d7ddef95SMatthew G. Knepley         DMPlex_WaxpyD_Internal(dim, -1, cg->centroid, fg->centroid, dx);
683d7ddef95SMatthew G. Knepley         for (d = 0; d < pdim; ++d) fx[d] = cx[d] + DMPlex_DotD_Internal(dim, &cgrad[d*dim], dx);
684520b3818SMatthew G. Knepley         ierr = (*func)(time, fg->centroid, fg->normal, fx, xG, ctx);CHKERRQ(ierr);
685d7ddef95SMatthew G. Knepley       } else {
686d7ddef95SMatthew G. Knepley         const PetscScalar *xI;
687d7ddef95SMatthew G. Knepley         PetscScalar       *xG;
688d7ddef95SMatthew G. Knepley 
689d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dm, cells[0], x, &xI);CHKERRQ(ierr);
690520b3818SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRef(dm, cells[1], field, x, &xG);CHKERRQ(ierr);
691520b3818SMatthew G. Knepley         ierr = (*func)(time, fg->centroid, fg->normal, xI, xG, ctx);CHKERRQ(ierr);
692d7ddef95SMatthew G. Knepley       }
693d7ddef95SMatthew G. Knepley     }
694d7ddef95SMatthew G. Knepley     ierr = ISRestoreIndices(faceIS, &faces);CHKERRQ(ierr);
695d7ddef95SMatthew G. Knepley     ierr = ISDestroy(&faceIS);CHKERRQ(ierr);
696d7ddef95SMatthew G. Knepley   }
697d7ddef95SMatthew G. Knepley   ierr = VecRestoreArray(locX, &x);CHKERRQ(ierr);
698d7ddef95SMatthew G. Knepley   if (Grad) {
699d7ddef95SMatthew G. Knepley     ierr = DMRestoreWorkArray(dm, pdim, PETSC_SCALAR, &fx);CHKERRQ(ierr);
700d7ddef95SMatthew G. Knepley     ierr = VecRestoreArrayRead(Grad, &grad);CHKERRQ(ierr);
701d7ddef95SMatthew G. Knepley   }
702d7ddef95SMatthew G. Knepley   ierr = VecRestoreArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
703d7ddef95SMatthew G. Knepley   ierr = VecRestoreArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
704d7ddef95SMatthew G. Knepley   PetscFunctionReturn(0);
705d7ddef95SMatthew G. Knepley }
706d7ddef95SMatthew G. Knepley 
707d7ddef95SMatthew G. Knepley #undef __FUNCT__
708d7ddef95SMatthew G. Knepley #define __FUNCT__ "DMPlexInsertBoundaryValues"
709d7ddef95SMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValues(DM dm, Vec locX, PetscReal time, Vec faceGeomFVM, Vec cellGeomFVM, Vec gradFVM)
710d7ddef95SMatthew G. Knepley {
711d7ddef95SMatthew G. Knepley   PetscInt       numBd, b;
71255f2e967SMatthew G. Knepley   PetscErrorCode ierr;
71355f2e967SMatthew G. Knepley 
71455f2e967SMatthew G. Knepley   PetscFunctionBegin;
71555f2e967SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
716d7ddef95SMatthew G. Knepley   PetscValidHeaderSpecific(locX, VEC_CLASSID, 2);
717d7ddef95SMatthew G. Knepley   if (faceGeomFVM) {PetscValidHeaderSpecific(faceGeomFVM, VEC_CLASSID, 4);}
718d7ddef95SMatthew G. Knepley   if (cellGeomFVM) {PetscValidHeaderSpecific(cellGeomFVM, VEC_CLASSID, 5);}
719d7ddef95SMatthew G. Knepley   if (gradFVM)     {PetscValidHeaderSpecific(gradFVM, VEC_CLASSID, 6);}
72055f2e967SMatthew G. Knepley   ierr = DMPlexGetNumBoundary(dm, &numBd);CHKERRQ(ierr);
72155f2e967SMatthew G. Knepley   for (b = 0; b < numBd; ++b) {
72255f2e967SMatthew G. Knepley     PetscBool       isEssential;
723d7ddef95SMatthew G. Knepley     const char     *labelname;
724d7ddef95SMatthew G. Knepley     DMLabel         label;
725d7ddef95SMatthew G. Knepley     PetscInt        field;
726d7ddef95SMatthew G. Knepley     PetscObject     obj;
727d7ddef95SMatthew G. Knepley     PetscClassId    id;
72855f2e967SMatthew G. Knepley     void          (*func)();
729d7ddef95SMatthew G. Knepley     PetscInt        numids;
730d7ddef95SMatthew G. Knepley     const PetscInt *ids;
73155f2e967SMatthew G. Knepley     void           *ctx;
73255f2e967SMatthew G. Knepley 
7330e0f25f2SMatthew G. Knepley     ierr = DMPlexGetBoundary(dm, b, &isEssential, NULL, &labelname, &field, NULL, NULL, &func, &numids, &ids, &ctx);CHKERRQ(ierr);
734d7ddef95SMatthew G. Knepley     if (!isEssential) continue;
73563d5297fSMatthew G. Knepley     ierr = DMPlexGetLabel(dm, labelname, &label);CHKERRQ(ierr);
736d7ddef95SMatthew G. Knepley     ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
737d7ddef95SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
738d7ddef95SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
7390163fd50SMatthew G. Knepley       ierr = DMPlexInsertBoundaryValues_FEM_Internal(dm, time, field, label, numids, ids, (PetscErrorCode (*)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *)) func, ctx, locX);CHKERRQ(ierr);
740d7ddef95SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
74143ea7facSMatthew G. Knepley       if (!faceGeomFVM) continue;
742d7ddef95SMatthew G. Knepley       ierr = DMPlexInsertBoundaryValues_FVM_Internal(dm, time, faceGeomFVM, cellGeomFVM, gradFVM,
743d7ddef95SMatthew G. Knepley                                                      field, label, numids, ids, (PetscErrorCode (*)(PetscReal,const PetscReal*,const PetscReal*,const PetscScalar*,PetscScalar*,void*)) func, ctx, locX);CHKERRQ(ierr);
744d7ddef95SMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
74555f2e967SMatthew G. Knepley   }
74655f2e967SMatthew G. Knepley   PetscFunctionReturn(0);
74755f2e967SMatthew G. Knepley }
74855f2e967SMatthew G. Knepley 
749cb1e1211SMatthew G Knepley #undef __FUNCT__
750cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexComputeL2Diff"
751cb1e1211SMatthew G Knepley /*@C
752cb1e1211SMatthew G Knepley   DMPlexComputeL2Diff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h.
753cb1e1211SMatthew G Knepley 
754cb1e1211SMatthew G Knepley   Input Parameters:
755cb1e1211SMatthew G Knepley + dm    - The DM
7560163fd50SMatthew G. Knepley . time  - The time
757cb1e1211SMatthew G Knepley . funcs - The functions to evaluate for each field component
75851259fa3SMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each function, or NULL.
759cb1e1211SMatthew G Knepley - X     - The coefficient vector u_h
760cb1e1211SMatthew G Knepley 
761cb1e1211SMatthew G Knepley   Output Parameter:
762cb1e1211SMatthew G Knepley . diff - The diff ||u - u_h||_2
763cb1e1211SMatthew G Knepley 
764cb1e1211SMatthew G Knepley   Level: developer
765cb1e1211SMatthew G Knepley 
76615496722SMatthew G. Knepley .seealso: DMPlexProjectFunction(), DMPlexComputeL2FieldDiff(), DMPlexComputeL2GradientDiff()
767878cb397SSatish Balay @*/
7680163fd50SMatthew G. Knepley PetscErrorCode DMPlexComputeL2Diff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
769cb1e1211SMatthew G Knepley {
770cb1e1211SMatthew G Knepley   const PetscInt   debug = 0;
771cb1e1211SMatthew G Knepley   PetscSection     section;
772c5bbbd5bSMatthew G. Knepley   PetscQuadrature  quad;
773cb1e1211SMatthew G Knepley   Vec              localX;
77415496722SMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
775cb1e1211SMatthew G Knepley   PetscReal       *coords, *v0, *J, *invJ, detJ;
776cb1e1211SMatthew G Knepley   PetscReal        localDiff = 0.0;
77715496722SMatthew G. Knepley   const PetscReal *quadPoints, *quadWeights;
7789ac3fadcSMatthew G. Knepley   PetscInt         dim, numFields, numComponents = 0, numQuadPoints, cStart, cEnd, cEndInterior, c, field, fieldOffset;
779cb1e1211SMatthew G Knepley   PetscErrorCode   ierr;
780cb1e1211SMatthew G Knepley 
781cb1e1211SMatthew G Knepley   PetscFunctionBegin;
782c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
783cb1e1211SMatthew G Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
784cb1e1211SMatthew G Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
785cb1e1211SMatthew G Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
786cb1e1211SMatthew G Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
787cb1e1211SMatthew G Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
788cb1e1211SMatthew G Knepley   for (field = 0; field < numFields; ++field) {
78915496722SMatthew G. Knepley     PetscObject  obj;
79015496722SMatthew G. Knepley     PetscClassId id;
791c5bbbd5bSMatthew G. Knepley     PetscInt     Nc;
792c5bbbd5bSMatthew G. Knepley 
79315496722SMatthew G. Knepley     ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
79415496722SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
79515496722SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
79615496722SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
79715496722SMatthew G. Knepley 
7980f2d7e86SMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
7990f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
80015496722SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
80115496722SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
80215496722SMatthew G. Knepley 
80315496722SMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
80415496722SMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
80515496722SMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
806c5bbbd5bSMatthew G. Knepley     numComponents += Nc;
807cb1e1211SMatthew G Knepley   }
80815496722SMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &numQuadPoints, &quadPoints, &quadWeights);CHKERRQ(ierr);
8090163fd50SMatthew G. Knepley   ierr = DMPlexProjectFunctionLocal(dm, 0.0, funcs, ctxs, INSERT_BC_VALUES, localX);CHKERRQ(ierr);
81015496722SMatthew G. Knepley   ierr = PetscMalloc6(numComponents,&funcVal,numComponents,&interpolant,dim,&coords,dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
811cb1e1211SMatthew G Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
8129ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
8139ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
814cb1e1211SMatthew G Knepley   for (c = cStart; c < cEnd; ++c) {
815a1e44745SMatthew G. Knepley     PetscScalar *x = NULL;
816cb1e1211SMatthew G Knepley     PetscReal    elemDiff = 0.0;
817cb1e1211SMatthew G Knepley 
8188e0841e0SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
819cb1e1211SMatthew G Knepley     if (detJ <= 0.0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %d", detJ, c);
820cb1e1211SMatthew G Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
821cb1e1211SMatthew G Knepley 
82215496722SMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
82315496722SMatthew G. Knepley       PetscObject  obj;
82415496722SMatthew G. Knepley       PetscClassId id;
825c110b1eeSGeoffrey Irving       void * const ctx = ctxs ? ctxs[field] : NULL;
82615496722SMatthew G. Knepley       PetscInt     Nb, Nc, q, fc;
827cb1e1211SMatthew G Knepley 
82815496722SMatthew G. Knepley       ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
82915496722SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
83015496722SMatthew G. Knepley       if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
83115496722SMatthew G. Knepley       else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
83215496722SMatthew G. Knepley       else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
833cb1e1211SMatthew G Knepley       if (debug) {
834cb1e1211SMatthew G Knepley         char title[1024];
835cb1e1211SMatthew G Knepley         ierr = PetscSNPrintf(title, 1023, "Solution for Field %d", field);CHKERRQ(ierr);
83615496722SMatthew G. Knepley         ierr = DMPrintCellVector(c, title, Nb*Nc, &x[fieldOffset]);CHKERRQ(ierr);
837cb1e1211SMatthew G Knepley       }
838cb1e1211SMatthew G Knepley       for (q = 0; q < numQuadPoints; ++q) {
83915496722SMatthew G. Knepley         CoordinatesRefToReal(dim, dim, v0, J, &quadPoints[q*dim], coords);
8400163fd50SMatthew G. Knepley         ierr = (*funcs[field])(dim, time, coords, Nc, funcVal, ctx);CHKERRQ(ierr);
84115496722SMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
84215496722SMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
84315496722SMatthew G. Knepley         else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
84415496722SMatthew G. Knepley         for (fc = 0; fc < Nc; ++fc) {
84515496722SMatthew G. Knepley           if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    elem %d field %d diff %g\n", c, field, PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*quadWeights[q]*detJ);CHKERRQ(ierr);}
84615496722SMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*quadWeights[q]*detJ;
847cb1e1211SMatthew G Knepley         }
848cb1e1211SMatthew G Knepley       }
84915496722SMatthew G. Knepley       fieldOffset += Nb*Nc;
850cb1e1211SMatthew G Knepley     }
851cb1e1211SMatthew G Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
852cb1e1211SMatthew G Knepley     if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "  elem %d diff %g\n", c, elemDiff);CHKERRQ(ierr);}
853cb1e1211SMatthew G Knepley     localDiff += elemDiff;
854cb1e1211SMatthew G Knepley   }
85515496722SMatthew G. Knepley   ierr  = PetscFree6(funcVal,interpolant,coords,v0,J,invJ);CHKERRQ(ierr);
856cb1e1211SMatthew G Knepley   ierr  = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
857b2566f29SBarry Smith   ierr  = MPIU_Allreduce(&localDiff, diff, 1, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
858cb1e1211SMatthew G Knepley   *diff = PetscSqrtReal(*diff);
859cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
860cb1e1211SMatthew G Knepley }
861cb1e1211SMatthew G Knepley 
862cb1e1211SMatthew G Knepley #undef __FUNCT__
86340e14135SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeL2GradientDiff"
86440e14135SMatthew G. Knepley /*@C
86540e14135SMatthew G. Knepley   DMPlexComputeL2GradientDiff - This function computes the L_2 difference between the gradient of a function u and an FEM interpolant solution grad u_h.
86640e14135SMatthew G. Knepley 
86740e14135SMatthew G. Knepley   Input Parameters:
86840e14135SMatthew G. Knepley + dm    - The DM
8690163fd50SMatthew G. Knepley , time  - The time
87040e14135SMatthew G. Knepley . funcs - The gradient functions to evaluate for each field component
87151259fa3SMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each function, or NULL.
87240e14135SMatthew G. Knepley . X     - The coefficient vector u_h
87340e14135SMatthew G. Knepley - n     - The vector to project along
87440e14135SMatthew G. Knepley 
87540e14135SMatthew G. Knepley   Output Parameter:
87640e14135SMatthew G. Knepley . diff - The diff ||(grad u - grad u_h) . n||_2
87740e14135SMatthew G. Knepley 
87840e14135SMatthew G. Knepley   Level: developer
87940e14135SMatthew G. Knepley 
88040e14135SMatthew G. Knepley .seealso: DMPlexProjectFunction(), DMPlexComputeL2Diff()
88140e14135SMatthew G. Knepley @*/
8820163fd50SMatthew G. Knepley PetscErrorCode DMPlexComputeL2GradientDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, const PetscReal n[], PetscReal *diff)
883cb1e1211SMatthew G Knepley {
88440e14135SMatthew G. Knepley   const PetscInt  debug = 0;
885cb1e1211SMatthew G Knepley   PetscSection    section;
88640e14135SMatthew G. Knepley   PetscQuadrature quad;
88740e14135SMatthew G. Knepley   Vec             localX;
88840e14135SMatthew G. Knepley   PetscScalar    *funcVal, *interpolantVec;
88940e14135SMatthew G. Knepley   PetscReal      *coords, *realSpaceDer, *v0, *J, *invJ, detJ;
89040e14135SMatthew G. Knepley   PetscReal       localDiff = 0.0;
8919ac3fadcSMatthew G. Knepley   PetscInt        dim, numFields, numComponents = 0, cStart, cEnd, cEndInterior, c, field, fieldOffset, comp;
892cb1e1211SMatthew G Knepley   PetscErrorCode  ierr;
893cb1e1211SMatthew G Knepley 
894cb1e1211SMatthew G Knepley   PetscFunctionBegin;
895c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
89640e14135SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
89740e14135SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
89840e14135SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
89940e14135SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
90040e14135SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
901652b88e8SMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
9020f2d7e86SMatthew G. Knepley     PetscFE  fe;
90340e14135SMatthew G. Knepley     PetscInt Nc;
904652b88e8SMatthew G. Knepley 
9050f2d7e86SMatthew G. Knepley     ierr = DMGetField(dm, field, (PetscObject *) &fe);CHKERRQ(ierr);
9060f2d7e86SMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
9070f2d7e86SMatthew G. Knepley     ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
90840e14135SMatthew G. Knepley     numComponents += Nc;
909652b88e8SMatthew G. Knepley   }
91040e14135SMatthew G. Knepley   /* ierr = DMPlexProjectFunctionLocal(dm, fe, funcs, INSERT_BC_VALUES, localX);CHKERRQ(ierr); */
91140e14135SMatthew G. Knepley   ierr = PetscMalloc7(numComponents,&funcVal,dim,&coords,dim,&realSpaceDer,dim,&v0,dim*dim,&J,dim*dim,&invJ,dim,&interpolantVec);CHKERRQ(ierr);
91240e14135SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
9139ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
9149ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
91540e14135SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
91640e14135SMatthew G. Knepley     PetscScalar *x = NULL;
91740e14135SMatthew G. Knepley     PetscReal    elemDiff = 0.0;
918652b88e8SMatthew G. Knepley 
9198e0841e0SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
92040e14135SMatthew G. Knepley     if (detJ <= 0.0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %d", detJ, c);
92140e14135SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
92240e14135SMatthew G. Knepley 
92340e14135SMatthew G. Knepley     for (field = 0, comp = 0, fieldOffset = 0; field < numFields; ++field) {
9240f2d7e86SMatthew G. Knepley       PetscFE          fe;
92551259fa3SMatthew G. Knepley       void * const     ctx = ctxs ? ctxs[field] : NULL;
92621454ff5SMatthew G. Knepley       const PetscReal *quadPoints, *quadWeights;
92740e14135SMatthew G. Knepley       PetscReal       *basisDer;
92821454ff5SMatthew G. Knepley       PetscInt         numQuadPoints, Nb, Ncomp, q, d, e, fc, f, g;
92940e14135SMatthew G. Knepley 
9300f2d7e86SMatthew G. Knepley       ierr = DMGetField(dm, field, (PetscObject *) &fe);CHKERRQ(ierr);
93121454ff5SMatthew G. Knepley       ierr = PetscQuadratureGetData(quad, NULL, &numQuadPoints, &quadPoints, &quadWeights);CHKERRQ(ierr);
9320f2d7e86SMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
9330f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Ncomp);CHKERRQ(ierr);
9340f2d7e86SMatthew G. Knepley       ierr = PetscFEGetDefaultTabulation(fe, NULL, &basisDer, NULL);CHKERRQ(ierr);
93540e14135SMatthew G. Knepley       if (debug) {
93640e14135SMatthew G. Knepley         char title[1024];
93740e14135SMatthew G. Knepley         ierr = PetscSNPrintf(title, 1023, "Solution for Field %d", field);CHKERRQ(ierr);
93840e14135SMatthew G. Knepley         ierr = DMPrintCellVector(c, title, Nb*Ncomp, &x[fieldOffset]);CHKERRQ(ierr);
939652b88e8SMatthew G. Knepley       }
94040e14135SMatthew G. Knepley       for (q = 0; q < numQuadPoints; ++q) {
94140e14135SMatthew G. Knepley         for (d = 0; d < dim; d++) {
94240e14135SMatthew G. Knepley           coords[d] = v0[d];
94340e14135SMatthew G. Knepley           for (e = 0; e < dim; e++) {
94440e14135SMatthew G. Knepley             coords[d] += J[d*dim+e]*(quadPoints[q*dim+e] + 1.0);
945652b88e8SMatthew G. Knepley           }
94640e14135SMatthew G. Knepley         }
9470163fd50SMatthew G. Knepley         ierr = (*funcs[field])(dim, time, coords, n, numFields, funcVal, ctx);CHKERRQ(ierr);
94840e14135SMatthew G. Knepley         for (fc = 0; fc < Ncomp; ++fc) {
94940e14135SMatthew G. Knepley           PetscScalar interpolant = 0.0;
95040e14135SMatthew G. Knepley 
95140e14135SMatthew G. Knepley           for (d = 0; d < dim; ++d) interpolantVec[d] = 0.0;
95240e14135SMatthew G. Knepley           for (f = 0; f < Nb; ++f) {
95340e14135SMatthew G. Knepley             const PetscInt fidx = f*Ncomp+fc;
95440e14135SMatthew G. Knepley 
95540e14135SMatthew G. Knepley             for (d = 0; d < dim; ++d) {
95640e14135SMatthew G. Knepley               realSpaceDer[d] = 0.0;
95740e14135SMatthew G. Knepley               for (g = 0; g < dim; ++g) {
95840e14135SMatthew G. Knepley                 realSpaceDer[d] += invJ[g*dim+d]*basisDer[(q*Nb*Ncomp+fidx)*dim+g];
95940e14135SMatthew G. Knepley               }
96040e14135SMatthew G. Knepley               interpolantVec[d] += x[fieldOffset+fidx]*realSpaceDer[d];
96140e14135SMatthew G. Knepley             }
96240e14135SMatthew G. Knepley           }
96340e14135SMatthew G. Knepley           for (d = 0; d < dim; ++d) interpolant += interpolantVec[d]*n[d];
96440e14135SMatthew G. Knepley           if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    elem %d fieldDer %d diff %g\n", c, field, PetscSqr(PetscRealPart(interpolant - funcVal[fc]))*quadWeights[q]*detJ);CHKERRQ(ierr);}
96540e14135SMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant - funcVal[fc]))*quadWeights[q]*detJ;
96640e14135SMatthew G. Knepley         }
96740e14135SMatthew G. Knepley       }
96840e14135SMatthew G. Knepley       comp        += Ncomp;
96940e14135SMatthew G. Knepley       fieldOffset += Nb*Ncomp;
97040e14135SMatthew G. Knepley     }
97140e14135SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
97240e14135SMatthew G. Knepley     if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "  elem %d diff %g\n", c, elemDiff);CHKERRQ(ierr);}
97340e14135SMatthew G. Knepley     localDiff += elemDiff;
97440e14135SMatthew G. Knepley   }
97540e14135SMatthew G. Knepley   ierr  = PetscFree7(funcVal,coords,realSpaceDer,v0,J,invJ,interpolantVec);CHKERRQ(ierr);
97640e14135SMatthew G. Knepley   ierr  = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
977b2566f29SBarry Smith   ierr  = MPIU_Allreduce(&localDiff, diff, 1, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
97840e14135SMatthew G. Knepley   *diff = PetscSqrtReal(*diff);
979cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
980cb1e1211SMatthew G Knepley }
981cb1e1211SMatthew G Knepley 
982a0845e3aSMatthew G. Knepley #undef __FUNCT__
98373d901b8SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeL2FieldDiff"
98415496722SMatthew G. Knepley /*@C
98515496722SMatthew G. Knepley   DMPlexComputeL2FieldDiff - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h, separated into field components.
98615496722SMatthew G. Knepley 
98715496722SMatthew G. Knepley   Input Parameters:
98815496722SMatthew G. Knepley + dm    - The DM
9890163fd50SMatthew G. Knepley . time  - The time
99015496722SMatthew G. Knepley . funcs - The functions to evaluate for each field component
99115496722SMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each function, or NULL.
99215496722SMatthew G. Knepley - X     - The coefficient vector u_h
99315496722SMatthew G. Knepley 
99415496722SMatthew G. Knepley   Output Parameter:
99515496722SMatthew G. Knepley . diff - The array of differences, ||u^f - u^f_h||_2
99615496722SMatthew G. Knepley 
99715496722SMatthew G. Knepley   Level: developer
99815496722SMatthew G. Knepley 
99915496722SMatthew G. Knepley .seealso: DMPlexProjectFunction(), DMPlexComputeL2Diff(), DMPlexComputeL2GradientDiff()
100015496722SMatthew G. Knepley @*/
10010163fd50SMatthew G. Knepley PetscErrorCode DMPlexComputeL2FieldDiff(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal diff[])
100273d901b8SMatthew G. Knepley {
100373d901b8SMatthew G. Knepley   const PetscInt   debug = 0;
100473d901b8SMatthew G. Knepley   PetscSection     section;
100573d901b8SMatthew G. Knepley   PetscQuadrature  quad;
100673d901b8SMatthew G. Knepley   Vec              localX;
100715496722SMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
100873d901b8SMatthew G. Knepley   PetscReal       *coords, *v0, *J, *invJ, detJ;
100973d901b8SMatthew G. Knepley   PetscReal       *localDiff;
101015496722SMatthew G. Knepley   const PetscReal *quadPoints, *quadWeights;
10119ac3fadcSMatthew G. Knepley   PetscInt         dim, numFields, numComponents = 0, numQuadPoints, cStart, cEnd, cEndInterior, c, field, fieldOffset;
101273d901b8SMatthew G. Knepley   PetscErrorCode   ierr;
101373d901b8SMatthew G. Knepley 
101473d901b8SMatthew G. Knepley   PetscFunctionBegin;
1015c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
101673d901b8SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
101773d901b8SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
101873d901b8SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
101973d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
102073d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
102173d901b8SMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
102215496722SMatthew G. Knepley     PetscObject  obj;
102315496722SMatthew G. Knepley     PetscClassId id;
102473d901b8SMatthew G. Knepley     PetscInt     Nc;
102573d901b8SMatthew G. Knepley 
102615496722SMatthew G. Knepley     ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
102715496722SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
102815496722SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
102915496722SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
103015496722SMatthew G. Knepley 
10310f2d7e86SMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
10320f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
103315496722SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
103415496722SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
103515496722SMatthew G. Knepley 
103615496722SMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
103715496722SMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
103815496722SMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
103973d901b8SMatthew G. Knepley     numComponents += Nc;
104073d901b8SMatthew G. Knepley   }
104115496722SMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &numQuadPoints, &quadPoints, &quadWeights);CHKERRQ(ierr);
10420163fd50SMatthew G. Knepley   ierr = DMPlexProjectFunctionLocal(dm, time, funcs, ctxs, INSERT_BC_VALUES, localX);CHKERRQ(ierr);
104315496722SMatthew G. Knepley   ierr = PetscCalloc7(numFields,&localDiff,numComponents,&funcVal,numComponents,&interpolant,dim,&coords,dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
104473d901b8SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
10459ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
10469ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
104773d901b8SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
104873d901b8SMatthew G. Knepley     PetscScalar *x = NULL;
104973d901b8SMatthew G. Knepley 
10508e0841e0SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
105173d901b8SMatthew G. Knepley     if (detJ <= 0.0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %d", detJ, c);
105273d901b8SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
105373d901b8SMatthew G. Knepley 
105415496722SMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
105515496722SMatthew G. Knepley       PetscObject  obj;
105615496722SMatthew G. Knepley       PetscClassId id;
105773d901b8SMatthew G. Knepley       void * const ctx = ctxs ? ctxs[field] : NULL;
105815496722SMatthew G. Knepley       PetscInt     Nb, Nc, q, fc;
105973d901b8SMatthew G. Knepley 
106015496722SMatthew G. Knepley       PetscReal       elemDiff = 0.0;
106115496722SMatthew G. Knepley 
106215496722SMatthew G. Knepley       ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
106315496722SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
106415496722SMatthew G. Knepley       if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
106515496722SMatthew G. Knepley       else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
106615496722SMatthew G. Knepley       else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
106773d901b8SMatthew G. Knepley       if (debug) {
106873d901b8SMatthew G. Knepley         char title[1024];
106973d901b8SMatthew G. Knepley         ierr = PetscSNPrintf(title, 1023, "Solution for Field %d", field);CHKERRQ(ierr);
107015496722SMatthew G. Knepley         ierr = DMPrintCellVector(c, title, Nb*Nc, &x[fieldOffset]);CHKERRQ(ierr);
107173d901b8SMatthew G. Knepley       }
107273d901b8SMatthew G. Knepley       for (q = 0; q < numQuadPoints; ++q) {
107315496722SMatthew G. Knepley         CoordinatesRefToReal(dim, dim, v0, J, &quadPoints[q*dim], coords);
10740163fd50SMatthew G. Knepley         ierr = (*funcs[field])(dim, time, coords, numFields, funcVal, ctx);CHKERRQ(ierr);
107515496722SMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
107615496722SMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
107715496722SMatthew G. Knepley         else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
107815496722SMatthew G. Knepley         for (fc = 0; fc < Nc; ++fc) {
107915496722SMatthew G. Knepley           if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    elem %d field %d diff %g\n", c, field, PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*quadWeights[q]*detJ);CHKERRQ(ierr);}
108015496722SMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*quadWeights[q]*detJ;
108173d901b8SMatthew G. Knepley         }
108273d901b8SMatthew G. Knepley       }
108315496722SMatthew G. Knepley       fieldOffset += Nb*Nc;
108473d901b8SMatthew G. Knepley       localDiff[field] += elemDiff;
108573d901b8SMatthew G. Knepley     }
108673d901b8SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
108773d901b8SMatthew G. Knepley   }
108873d901b8SMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1089b2566f29SBarry Smith   ierr = MPIU_Allreduce(localDiff, diff, numFields, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRQ(ierr);
109073d901b8SMatthew G. Knepley   for (field = 0; field < numFields; ++field) diff[field] = PetscSqrtReal(diff[field]);
109115496722SMatthew G. Knepley   ierr = PetscFree7(localDiff,funcVal,interpolant,coords,v0,J,invJ);CHKERRQ(ierr);
109273d901b8SMatthew G. Knepley   PetscFunctionReturn(0);
109373d901b8SMatthew G. Knepley }
109473d901b8SMatthew G. Knepley 
109573d901b8SMatthew G. Knepley #undef __FUNCT__
1096e729f68cSMatthew G. Knepley #define __FUNCT__ "DMPlexComputeL2DiffVec"
1097e729f68cSMatthew G. Knepley /*@C
1098e729f68cSMatthew G. Knepley   DMPlexComputeL2DiffVec - This function computes the cellwise L_2 difference between a function u and an FEM interpolant solution u_h, and stores it in a Vec.
1099e729f68cSMatthew G. Knepley 
1100e729f68cSMatthew G. Knepley   Input Parameters:
1101e729f68cSMatthew G. Knepley + dm    - The DM
11020163fd50SMatthew G. Knepley . time  - The time
1103e729f68cSMatthew G. Knepley . funcs - The functions to evaluate for each field component
1104e729f68cSMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each function, or NULL.
1105e729f68cSMatthew G. Knepley - X     - The coefficient vector u_h
1106e729f68cSMatthew G. Knepley 
1107e729f68cSMatthew G. Knepley   Output Parameter:
1108e729f68cSMatthew G. Knepley . D - A Vec which holds the difference ||u - u_h||_2 for each cell
1109e729f68cSMatthew G. Knepley 
1110e729f68cSMatthew G. Knepley   Level: developer
1111e729f68cSMatthew G. Knepley 
1112e729f68cSMatthew G. Knepley .seealso: DMPlexProjectFunction(), DMPlexComputeL2Diff(), DMPlexComputeL2FieldDiff(), DMPlexComputeL2GradientDiff()
1113e729f68cSMatthew G. Knepley @*/
11140163fd50SMatthew G. Knepley PetscErrorCode DMPlexComputeL2DiffVec(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, Vec D)
1115e729f68cSMatthew G. Knepley {
1116e729f68cSMatthew G. Knepley   PetscSection     section;
1117e729f68cSMatthew G. Knepley   PetscQuadrature  quad;
1118e729f68cSMatthew G. Knepley   Vec              localX;
1119e729f68cSMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
1120e729f68cSMatthew G. Knepley   PetscReal       *coords, *v0, *J, *invJ, detJ;
1121e729f68cSMatthew G. Knepley   const PetscReal *quadPoints, *quadWeights;
1122e729f68cSMatthew G. Knepley   PetscInt         dim, numFields, numComponents = 0, numQuadPoints, cStart, cEnd, cEndInterior, c, field, fieldOffset;
1123e729f68cSMatthew G. Knepley   PetscErrorCode   ierr;
1124e729f68cSMatthew G. Knepley 
1125e729f68cSMatthew G. Knepley   PetscFunctionBegin;
1126e729f68cSMatthew G. Knepley   ierr = VecSet(D, 0.0);CHKERRQ(ierr);
1127e729f68cSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1128e729f68cSMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
1129e729f68cSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
1130e729f68cSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
1131e729f68cSMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1132e729f68cSMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1133e729f68cSMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
1134e729f68cSMatthew G. Knepley     PetscObject  obj;
1135e729f68cSMatthew G. Knepley     PetscClassId id;
1136e729f68cSMatthew G. Knepley     PetscInt     Nc;
1137e729f68cSMatthew G. Knepley 
1138e729f68cSMatthew G. Knepley     ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
1139e729f68cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1140e729f68cSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
1141e729f68cSMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
1142e729f68cSMatthew G. Knepley 
1143e729f68cSMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
1144e729f68cSMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
1145e729f68cSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
1146e729f68cSMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
1147e729f68cSMatthew G. Knepley 
1148e729f68cSMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
1149e729f68cSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
1150e729f68cSMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
1151e729f68cSMatthew G. Knepley     numComponents += Nc;
1152e729f68cSMatthew G. Knepley   }
1153e729f68cSMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &numQuadPoints, &quadPoints, &quadWeights);CHKERRQ(ierr);
11540163fd50SMatthew G. Knepley   ierr = DMPlexProjectFunctionLocal(dm, time, funcs, ctxs, INSERT_BC_VALUES, localX);CHKERRQ(ierr);
1155e729f68cSMatthew G. Knepley   ierr = PetscMalloc6(numComponents,&funcVal,numComponents,&interpolant,dim,&coords,dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
1156e729f68cSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1157e729f68cSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
1158e729f68cSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
1159e729f68cSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1160e729f68cSMatthew G. Knepley     PetscScalar *x = NULL;
11616f288a59SMatthew G. Knepley     PetscScalar  elemDiff = 0.0;
1162e729f68cSMatthew G. Knepley 
1163e729f68cSMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
1164e729f68cSMatthew G. Knepley     if (detJ <= 0.0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %d", detJ, c);
1165e729f68cSMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1166e729f68cSMatthew G. Knepley 
1167e729f68cSMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
1168e729f68cSMatthew G. Knepley       PetscObject  obj;
1169e729f68cSMatthew G. Knepley       PetscClassId id;
1170e729f68cSMatthew G. Knepley       void * const ctx = ctxs ? ctxs[field] : NULL;
1171e729f68cSMatthew G. Knepley       PetscInt     Nb, Nc, q, fc;
1172e729f68cSMatthew G. Knepley 
1173e729f68cSMatthew G. Knepley       ierr = DMGetField(dm, field, &obj);CHKERRQ(ierr);
1174e729f68cSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1175e729f68cSMatthew G. Knepley       if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
1176e729f68cSMatthew G. Knepley       else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
1177e729f68cSMatthew G. Knepley       else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
1178e729f68cSMatthew G. Knepley       for (q = 0; q < numQuadPoints; ++q) {
1179e729f68cSMatthew G. Knepley         CoordinatesRefToReal(dim, dim, v0, J, &quadPoints[q*dim], coords);
11800163fd50SMatthew G. Knepley         ierr = (*funcs[field])(dim, time, coords, Nc, funcVal, ctx);CHKERRQ(ierr);
1181e729f68cSMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
1182e729f68cSMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
1183e729f68cSMatthew G. Knepley         else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", field);
1184e729f68cSMatthew G. Knepley         for (fc = 0; fc < Nc; ++fc) {
1185e729f68cSMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*quadWeights[q]*detJ;
1186e729f68cSMatthew G. Knepley         }
1187e729f68cSMatthew G. Knepley       }
1188e729f68cSMatthew G. Knepley       fieldOffset += Nb*Nc;
1189e729f68cSMatthew G. Knepley     }
1190e729f68cSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1191e729f68cSMatthew G. Knepley     ierr = VecSetValuesSection(D, section, c, &elemDiff, ADD_VALUES);CHKERRQ(ierr);
1192e729f68cSMatthew G. Knepley   }
1193e729f68cSMatthew G. Knepley   ierr = PetscFree6(funcVal,interpolant,coords,v0,J,invJ);CHKERRQ(ierr);
1194e729f68cSMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1195e729f68cSMatthew G. Knepley   ierr = VecSqrtAbs(D);CHKERRQ(ierr);
1196e729f68cSMatthew G. Knepley   PetscFunctionReturn(0);
1197e729f68cSMatthew G. Knepley }
1198e729f68cSMatthew G. Knepley 
1199e729f68cSMatthew G. Knepley #undef __FUNCT__
120073d901b8SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeIntegralFEM"
120173d901b8SMatthew G. Knepley /*@
120273d901b8SMatthew G. Knepley   DMPlexComputeIntegralFEM - Form the local integral F from the local input X using pointwise functions specified by the user
120373d901b8SMatthew G. Knepley 
120473d901b8SMatthew G. Knepley   Input Parameters:
120573d901b8SMatthew G. Knepley + dm - The mesh
120673d901b8SMatthew G. Knepley . X  - Local input vector
120773d901b8SMatthew G. Knepley - user - The user context
120873d901b8SMatthew G. Knepley 
120973d901b8SMatthew G. Knepley   Output Parameter:
121073d901b8SMatthew G. Knepley . integral - Local integral for each field
121173d901b8SMatthew G. Knepley 
121273d901b8SMatthew G. Knepley   Level: developer
121373d901b8SMatthew G. Knepley 
121473d901b8SMatthew G. Knepley .seealso: DMPlexComputeResidualFEM()
121573d901b8SMatthew G. Knepley @*/
12160f2d7e86SMatthew G. Knepley PetscErrorCode DMPlexComputeIntegralFEM(DM dm, Vec X, PetscReal *integral, void *user)
121773d901b8SMatthew G. Knepley {
121873d901b8SMatthew G. Knepley   DM_Plex          *mesh  = (DM_Plex *) dm->data;
121973d901b8SMatthew G. Knepley   DM                dmAux;
122073d901b8SMatthew G. Knepley   Vec               localX, A;
12212764a2aaSMatthew G. Knepley   PetscDS           prob, probAux = NULL;
122273d901b8SMatthew G. Knepley   PetscSection      section, sectionAux;
1223bbce034cSMatthew G. Knepley   PetscFECellGeom  *cgeom;
122473d901b8SMatthew G. Knepley   PetscScalar      *u, *a = NULL;
1225c1f031eeSMatthew G. Knepley   PetscReal        *lintegral, *vol;
12269ac3fadcSMatthew G. Knepley   PetscInt          dim, Nf, f, numCells, cStart, cEnd, cEndInterior, c;
12270f2d7e86SMatthew G. Knepley   PetscInt          totDim, totDimAux;
122873d901b8SMatthew G. Knepley   PetscErrorCode    ierr;
122973d901b8SMatthew G. Knepley 
123073d901b8SMatthew G. Knepley   PetscFunctionBegin;
1231c1f031eeSMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
123273d901b8SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
123373d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
123473d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1235c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
123673d901b8SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &section);CHKERRQ(ierr);
12372764a2aaSMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
12382764a2aaSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
123973d901b8SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
124073d901b8SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
12419ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dm, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
12429ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
124373d901b8SMatthew G. Knepley   numCells = cEnd - cStart;
124473d901b8SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) dm, "dmAux", (PetscObject *) &dmAux);CHKERRQ(ierr);
124573d901b8SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) dm, "A", (PetscObject *) &A);CHKERRQ(ierr);
124673d901b8SMatthew G. Knepley   if (dmAux) {
124773d901b8SMatthew G. Knepley     ierr = DMGetDefaultSection(dmAux, &sectionAux);CHKERRQ(ierr);
12482764a2aaSMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
12492764a2aaSMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
125073d901b8SMatthew G. Knepley   }
1251d7ddef95SMatthew G. Knepley   ierr = DMPlexInsertBoundaryValues(dm, localX, 0.0, NULL, NULL, NULL);CHKERRQ(ierr);
1252c1f031eeSMatthew G. Knepley   ierr = PetscMalloc4(Nf,&lintegral,numCells*totDim,&u,numCells,&cgeom,numCells,&vol);CHKERRQ(ierr);
12530f2d7e86SMatthew G. Knepley   if (dmAux) {ierr = PetscMalloc1(numCells*totDimAux, &a);CHKERRQ(ierr);}
1254c1f031eeSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {lintegral[f] = 0.0;}
125573d901b8SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
125673d901b8SMatthew G. Knepley     PetscScalar *x = NULL;
125773d901b8SMatthew G. Knepley     PetscInt     i;
125873d901b8SMatthew G. Knepley 
1259bbce034cSMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, NULL, cgeom[c].v0, cgeom[c].J, cgeom[c].invJ, &cgeom[c].detJ);CHKERRQ(ierr);
1260c1f031eeSMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFVM(dm, c, &vol[c], NULL, NULL);CHKERRQ(ierr);
1261bbce034cSMatthew G. Knepley     if (cgeom[c].detJ <= 0.0) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %d", cgeom[c].detJ, c);
126273d901b8SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, section, localX, c, NULL, &x);CHKERRQ(ierr);
12630f2d7e86SMatthew G. Knepley     for (i = 0; i < totDim; ++i) u[c*totDim+i] = x[i];
126473d901b8SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, section, localX, c, NULL, &x);CHKERRQ(ierr);
126573d901b8SMatthew G. Knepley     if (dmAux) {
126673d901b8SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dmAux, sectionAux, A, c, NULL, &x);CHKERRQ(ierr);
12670f2d7e86SMatthew G. Knepley       for (i = 0; i < totDimAux; ++i) a[c*totDimAux+i] = x[i];
126873d901b8SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dmAux, sectionAux, A, c, NULL, &x);CHKERRQ(ierr);
126973d901b8SMatthew G. Knepley     }
127073d901b8SMatthew G. Knepley   }
127173d901b8SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
1272c1f031eeSMatthew G. Knepley     PetscObject  obj;
1273c1f031eeSMatthew G. Knepley     PetscClassId id;
1274c1f031eeSMatthew G. Knepley     PetscInt     numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset;
127573d901b8SMatthew G. Knepley 
1276c1f031eeSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
1277c1f031eeSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1278c1f031eeSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
1279c1f031eeSMatthew G. Knepley       PetscFE         fe = (PetscFE) obj;
1280c1f031eeSMatthew G. Knepley       PetscQuadrature q;
1281c1f031eeSMatthew G. Knepley       PetscInt        Nq, Nb;
1282c1f031eeSMatthew G. Knepley 
12830f2d7e86SMatthew G. Knepley       ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
1284c1f031eeSMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &q);CHKERRQ(ierr);
1285c1f031eeSMatthew G. Knepley       ierr = PetscQuadratureGetData(q, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
1286c1f031eeSMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
1287c1f031eeSMatthew G. Knepley       blockSize = Nb*Nq;
128873d901b8SMatthew G. Knepley       batchSize = numBlocks * blockSize;
12890f2d7e86SMatthew G. Knepley       ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
129073d901b8SMatthew G. Knepley       numChunks = numCells / (numBatches*batchSize);
129173d901b8SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
129273d901b8SMatthew G. Knepley       Nr        = numCells % (numBatches*batchSize);
129373d901b8SMatthew G. Knepley       offset    = numCells - Nr;
1294c1f031eeSMatthew G. Knepley       ierr = PetscFEIntegrate(fe, prob, f, Ne, cgeom, u, probAux, a, lintegral);CHKERRQ(ierr);
1295c1f031eeSMatthew G. Knepley       ierr = PetscFEIntegrate(fe, prob, f, Nr, &cgeom[offset], &u[offset*totDim], probAux, &a[offset*totDimAux], lintegral);CHKERRQ(ierr);
1296c1f031eeSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
1297b69edc29SMatthew G. Knepley       /* PetscFV  fv = (PetscFV) obj; */
1298c1f031eeSMatthew G. Knepley       PetscInt       foff;
1299420e96edSMatthew G. Knepley       PetscPointFunc obj_func;
1300b69edc29SMatthew G. Knepley       PetscScalar    lint;
1301c1f031eeSMatthew G. Knepley 
1302c1f031eeSMatthew G. Knepley       ierr = PetscDSGetObjective(prob, f, &obj_func);CHKERRQ(ierr);
1303c1f031eeSMatthew G. Knepley       ierr = PetscDSGetFieldOffset(prob, f, &foff);CHKERRQ(ierr);
1304c1f031eeSMatthew G. Knepley       if (obj_func) {
1305c1f031eeSMatthew G. Knepley         for (c = 0; c < numCells; ++c) {
1306c1f031eeSMatthew G. Knepley           /* TODO: Need full pointwise interpolation and get centroid for x argument */
130730b9ff8bSMatthew G. Knepley           obj_func(dim, Nf, 0, NULL, NULL, &u[totDim*c+foff], NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0.0, NULL, &lint);
1308b69edc29SMatthew G. Knepley           lintegral[f] = PetscRealPart(lint)*vol[c];
130973d901b8SMatthew G. Knepley         }
1310c1f031eeSMatthew G. Knepley       }
1311c1f031eeSMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %d", f);
1312c1f031eeSMatthew G. Knepley   }
131373d901b8SMatthew G. Knepley   if (dmAux) {ierr = PetscFree(a);CHKERRQ(ierr);}
131473d901b8SMatthew G. Knepley   if (mesh->printFEM) {
131573d901b8SMatthew G. Knepley     ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), "Local integral:");CHKERRQ(ierr);
1316c1f031eeSMatthew G. Knepley     for (f = 0; f < Nf; ++f) {ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), " %g", lintegral[f]);CHKERRQ(ierr);}
131773d901b8SMatthew G. Knepley     ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), "\n");CHKERRQ(ierr);
131873d901b8SMatthew G. Knepley   }
131973d901b8SMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1320b2566f29SBarry Smith   ierr = MPIU_Allreduce(lintegral, integral, Nf, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject) dm));CHKERRQ(ierr);
1321c1f031eeSMatthew G. Knepley   ierr = PetscFree4(lintegral,u,cgeom,vol);CHKERRQ(ierr);
1322c1f031eeSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
132373d901b8SMatthew G. Knepley   PetscFunctionReturn(0);
132473d901b8SMatthew G. Knepley }
132573d901b8SMatthew G. Knepley 
132673d901b8SMatthew G. Knepley #undef __FUNCT__
132768132eb9SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeInterpolatorNested"
1328d69c5d34SMatthew G. Knepley /*@
132968132eb9SMatthew G. Knepley   DMPlexComputeInterpolatorNested - Form the local portion of the interpolation matrix I from the coarse DM to the uniformly refined DM.
1330d69c5d34SMatthew G. Knepley 
1331d69c5d34SMatthew G. Knepley   Input Parameters:
1332d69c5d34SMatthew G. Knepley + dmf  - The fine mesh
1333d69c5d34SMatthew G. Knepley . dmc  - The coarse mesh
1334d69c5d34SMatthew G. Knepley - user - The user context
1335d69c5d34SMatthew G. Knepley 
1336d69c5d34SMatthew G. Knepley   Output Parameter:
1337934789fcSMatthew G. Knepley . In  - The interpolation matrix
1338d69c5d34SMatthew G. Knepley 
1339d69c5d34SMatthew G. Knepley   Level: developer
1340d69c5d34SMatthew G. Knepley 
134168132eb9SMatthew G. Knepley .seealso: DMPlexComputeInterpolatorGeneral(), DMPlexComputeJacobianFEM()
1342d69c5d34SMatthew G. Knepley @*/
134368132eb9SMatthew G. Knepley PetscErrorCode DMPlexComputeInterpolatorNested(DM dmc, DM dmf, Mat In, void *user)
1344d69c5d34SMatthew G. Knepley {
1345d69c5d34SMatthew G. Knepley   DM_Plex          *mesh  = (DM_Plex *) dmc->data;
1346d69c5d34SMatthew G. Knepley   const char       *name  = "Interpolator";
13472764a2aaSMatthew G. Knepley   PetscDS           prob;
1348d69c5d34SMatthew G. Knepley   PetscFE          *feRef;
134997c42addSMatthew G. Knepley   PetscFV          *fvRef;
1350d69c5d34SMatthew G. Knepley   PetscSection      fsection, fglobalSection;
1351d69c5d34SMatthew G. Knepley   PetscSection      csection, cglobalSection;
1352d69c5d34SMatthew G. Knepley   PetscScalar      *elemMat;
13539ac3fadcSMatthew G. Knepley   PetscInt          dim, Nf, f, fieldI, fieldJ, offsetI, offsetJ, cStart, cEnd, cEndInterior, c;
13540f2d7e86SMatthew G. Knepley   PetscInt          cTotDim, rTotDim = 0;
1355d69c5d34SMatthew G. Knepley   PetscErrorCode    ierr;
1356d69c5d34SMatthew G. Knepley 
1357d69c5d34SMatthew G. Knepley   PetscFunctionBegin;
1358d69c5d34SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
1359c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dmf, &dim);CHKERRQ(ierr);
1360d69c5d34SMatthew G. Knepley   ierr = DMGetDefaultSection(dmf, &fsection);CHKERRQ(ierr);
1361d69c5d34SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmf, &fglobalSection);CHKERRQ(ierr);
1362d69c5d34SMatthew G. Knepley   ierr = DMGetDefaultSection(dmc, &csection);CHKERRQ(ierr);
1363d69c5d34SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmc, &cglobalSection);CHKERRQ(ierr);
1364d69c5d34SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &Nf);CHKERRQ(ierr);
1365d69c5d34SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dmc, 0, &cStart, &cEnd);CHKERRQ(ierr);
13669ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dmc, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
13679ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
13682764a2aaSMatthew G. Knepley   ierr = DMGetDS(dmf, &prob);CHKERRQ(ierr);
136997c42addSMatthew G. Knepley   ierr = PetscCalloc2(Nf,&feRef,Nf,&fvRef);CHKERRQ(ierr);
1370d69c5d34SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
137197c42addSMatthew G. Knepley     PetscObject  obj;
137297c42addSMatthew G. Knepley     PetscClassId id;
1373aa7890ccSMatthew G. Knepley     PetscInt     rNb = 0, Nc = 0;
1374d69c5d34SMatthew G. Knepley 
137597c42addSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
137697c42addSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
137797c42addSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
137897c42addSMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
137997c42addSMatthew G. Knepley 
13800f2d7e86SMatthew G. Knepley       ierr = PetscFERefine(fe, &feRef[f]);CHKERRQ(ierr);
1381d69c5d34SMatthew G. Knepley       ierr = PetscFEGetDimension(feRef[f], &rNb);CHKERRQ(ierr);
13820f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
138397c42addSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
138497c42addSMatthew G. Knepley       PetscFV        fv = (PetscFV) obj;
138597c42addSMatthew G. Knepley       PetscDualSpace Q;
138697c42addSMatthew G. Knepley 
138797c42addSMatthew G. Knepley       ierr = PetscFVRefine(fv, &fvRef[f]);CHKERRQ(ierr);
138897c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[f], &Q);CHKERRQ(ierr);
138997c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(Q, &rNb);CHKERRQ(ierr);
139097c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
139197c42addSMatthew G. Knepley     }
13920f2d7e86SMatthew G. Knepley     rTotDim += rNb*Nc;
1393d69c5d34SMatthew G. Knepley   }
13942764a2aaSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &cTotDim);CHKERRQ(ierr);
13950f2d7e86SMatthew G. Knepley   ierr = PetscMalloc1(rTotDim*cTotDim,&elemMat);CHKERRQ(ierr);
13960f2d7e86SMatthew G. Knepley   ierr = PetscMemzero(elemMat, rTotDim*cTotDim * sizeof(PetscScalar));CHKERRQ(ierr);
1397d69c5d34SMatthew G. Knepley   for (fieldI = 0, offsetI = 0; fieldI < Nf; ++fieldI) {
1398d69c5d34SMatthew G. Knepley     PetscDualSpace   Qref;
1399d69c5d34SMatthew G. Knepley     PetscQuadrature  f;
1400d69c5d34SMatthew G. Knepley     const PetscReal *qpoints, *qweights;
1401d69c5d34SMatthew G. Knepley     PetscReal       *points;
1402d69c5d34SMatthew G. Knepley     PetscInt         npoints = 0, Nc, Np, fpdim, i, k, p, d;
1403d69c5d34SMatthew G. Knepley 
1404d69c5d34SMatthew G. Knepley     /* Compose points from all dual basis functionals */
140597c42addSMatthew G. Knepley     if (feRef[fieldI]) {
1406d69c5d34SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feRef[fieldI], &Qref);CHKERRQ(ierr);
14070f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feRef[fieldI], &Nc);CHKERRQ(ierr);
140897c42addSMatthew G. Knepley     } else {
140997c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[fieldI], &Qref);CHKERRQ(ierr);
141097c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvRef[fieldI], &Nc);CHKERRQ(ierr);
141197c42addSMatthew G. Knepley     }
1412d69c5d34SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Qref, &fpdim);CHKERRQ(ierr);
1413d69c5d34SMatthew G. Knepley     for (i = 0; i < fpdim; ++i) {
1414d69c5d34SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
1415d69c5d34SMatthew G. Knepley       ierr = PetscQuadratureGetData(f, NULL, &Np, NULL, NULL);CHKERRQ(ierr);
1416d69c5d34SMatthew G. Knepley       npoints += Np;
1417d69c5d34SMatthew G. Knepley     }
1418d69c5d34SMatthew G. Knepley     ierr = PetscMalloc1(npoints*dim,&points);CHKERRQ(ierr);
1419d69c5d34SMatthew G. Knepley     for (i = 0, k = 0; i < fpdim; ++i) {
1420d69c5d34SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
1421d69c5d34SMatthew G. Knepley       ierr = PetscQuadratureGetData(f, NULL, &Np, &qpoints, NULL);CHKERRQ(ierr);
1422d69c5d34SMatthew G. Knepley       for (p = 0; p < Np; ++p, ++k) for (d = 0; d < dim; ++d) points[k*dim+d] = qpoints[p*dim+d];
1423d69c5d34SMatthew G. Knepley     }
1424d69c5d34SMatthew G. Knepley 
1425d69c5d34SMatthew G. Knepley     for (fieldJ = 0, offsetJ = 0; fieldJ < Nf; ++fieldJ) {
142697c42addSMatthew G. Knepley       PetscObject  obj;
142797c42addSMatthew G. Knepley       PetscClassId id;
1428d69c5d34SMatthew G. Knepley       PetscReal   *B;
1429aa7890ccSMatthew G. Knepley       PetscInt     NcJ = 0, cpdim = 0, j;
1430d69c5d34SMatthew G. Knepley 
143197c42addSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, fieldJ, &obj);CHKERRQ(ierr);
143297c42addSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
143397c42addSMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
143497c42addSMatthew G. Knepley         PetscFE fe = (PetscFE) obj;
1435d69c5d34SMatthew G. Knepley 
1436d69c5d34SMatthew G. Knepley         /* Evaluate basis at points */
14370f2d7e86SMatthew G. Knepley         ierr = PetscFEGetNumComponents(fe, &NcJ);CHKERRQ(ierr);
14380f2d7e86SMatthew G. Knepley         ierr = PetscFEGetDimension(fe, &cpdim);CHKERRQ(ierr);
1439ffe73a53SMatthew G. Knepley         /* For now, fields only interpolate themselves */
1440ffe73a53SMatthew G. Knepley         if (fieldI == fieldJ) {
14417c927364SMatthew G. Knepley           if (Nc != NcJ) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in fine space field %d does not match coarse field %d", Nc, NcJ);
14420f2d7e86SMatthew G. Knepley           ierr = PetscFEGetTabulation(fe, npoints, points, &B, NULL, NULL);CHKERRQ(ierr);
1443d69c5d34SMatthew G. Knepley           for (i = 0, k = 0; i < fpdim; ++i) {
1444d69c5d34SMatthew G. Knepley             ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
1445d69c5d34SMatthew G. Knepley             ierr = PetscQuadratureGetData(f, NULL, &Np, NULL, &qweights);CHKERRQ(ierr);
1446d69c5d34SMatthew G. Knepley             for (p = 0; p < Np; ++p, ++k) {
144736a6d9c0SMatthew G. Knepley               for (j = 0; j < cpdim; ++j) {
14480f2d7e86SMatthew G. Knepley                 for (c = 0; c < Nc; ++c) elemMat[(offsetI + i*Nc + c)*cTotDim + offsetJ + j*NcJ + c] += B[k*cpdim*NcJ+j*Nc+c]*qweights[p];
144936a6d9c0SMatthew G. Knepley               }
1450d69c5d34SMatthew G. Knepley             }
1451d69c5d34SMatthew G. Knepley           }
14520f2d7e86SMatthew G. Knepley           ierr = PetscFERestoreTabulation(fe, npoints, points, &B, NULL, NULL);CHKERRQ(ierr);CHKERRQ(ierr);
1453ffe73a53SMatthew G. Knepley         }
145497c42addSMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
145597c42addSMatthew G. Knepley         PetscFV        fv = (PetscFV) obj;
145697c42addSMatthew G. Knepley 
145797c42addSMatthew G. Knepley         /* Evaluate constant function at points */
145897c42addSMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &NcJ);CHKERRQ(ierr);
145997c42addSMatthew G. Knepley         cpdim = 1;
146097c42addSMatthew G. Knepley         /* For now, fields only interpolate themselves */
146197c42addSMatthew G. Knepley         if (fieldI == fieldJ) {
146297c42addSMatthew G. Knepley           if (Nc != NcJ) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in fine space field %d does not match coarse field %d", Nc, NcJ);
146397c42addSMatthew G. Knepley           for (i = 0, k = 0; i < fpdim; ++i) {
146497c42addSMatthew G. Knepley             ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
146597c42addSMatthew G. Knepley             ierr = PetscQuadratureGetData(f, NULL, &Np, NULL, &qweights);CHKERRQ(ierr);
146697c42addSMatthew G. Knepley             for (p = 0; p < Np; ++p, ++k) {
146797c42addSMatthew G. Knepley               for (j = 0; j < cpdim; ++j) {
146897c42addSMatthew G. Knepley                 for (c = 0; c < Nc; ++c) elemMat[(offsetI + i*Nc + c)*cTotDim + offsetJ + j*NcJ + c] += 1.0*qweights[p];
146997c42addSMatthew G. Knepley               }
147097c42addSMatthew G. Knepley             }
147197c42addSMatthew G. Knepley           }
147297c42addSMatthew G. Knepley         }
147397c42addSMatthew G. Knepley       }
147436a6d9c0SMatthew G. Knepley       offsetJ += cpdim*NcJ;
1475d69c5d34SMatthew G. Knepley     }
1476d69c5d34SMatthew G. Knepley     offsetI += fpdim*Nc;
1477549a8adaSMatthew G. Knepley     ierr = PetscFree(points);CHKERRQ(ierr);
1478d69c5d34SMatthew G. Knepley   }
14790f2d7e86SMatthew G. Knepley   if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(0, name, rTotDim, cTotDim, elemMat);CHKERRQ(ierr);}
14807f5b169aSMatthew G. Knepley   /* Preallocate matrix */
14817f5b169aSMatthew G. Knepley   {
1482c094ef40SMatthew G. Knepley     Mat          preallocator;
1483c094ef40SMatthew G. Knepley     PetscScalar *vals;
1484c094ef40SMatthew G. Knepley     PetscInt    *cellCIndices, *cellFIndices;
1485c094ef40SMatthew G. Knepley     PetscInt     locRows, locCols, cell;
14867f5b169aSMatthew G. Knepley 
1487c094ef40SMatthew G. Knepley     ierr = MatGetLocalSize(In, &locRows, &locCols);CHKERRQ(ierr);
1488c094ef40SMatthew G. Knepley     ierr = MatCreate(PetscObjectComm((PetscObject) In), &preallocator);CHKERRQ(ierr);
1489c094ef40SMatthew G. Knepley     ierr = MatSetType(preallocator, MATPREALLOCATOR);CHKERRQ(ierr);
1490c094ef40SMatthew G. Knepley     ierr = MatSetSizes(preallocator, locRows, locCols, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
1491c094ef40SMatthew G. Knepley     ierr = MatSetUp(preallocator);CHKERRQ(ierr);
1492c094ef40SMatthew G. Knepley     ierr = PetscCalloc3(rTotDim*cTotDim, &vals,cTotDim,&cellCIndices,rTotDim,&cellFIndices);CHKERRQ(ierr);
14937f5b169aSMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
14947f5b169aSMatthew G. Knepley       ierr = DMPlexMatGetClosureIndicesRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, cell, cellCIndices, cellFIndices);CHKERRQ(ierr);
1495c094ef40SMatthew G. Knepley       ierr = MatSetValues(preallocator, rTotDim, cellFIndices, cTotDim, cellCIndices, vals, INSERT_VALUES);CHKERRQ(ierr);
14967f5b169aSMatthew G. Knepley     }
1497c094ef40SMatthew G. Knepley     ierr = PetscFree3(vals,cellCIndices,cellFIndices);CHKERRQ(ierr);
1498c094ef40SMatthew G. Knepley     ierr = MatAssemblyBegin(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1499c094ef40SMatthew G. Knepley     ierr = MatAssemblyEnd(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1500c094ef40SMatthew G. Knepley     ierr = MatPreallocatorPreallocate(preallocator, PETSC_TRUE, In);CHKERRQ(ierr);
1501c094ef40SMatthew G. Knepley     ierr = MatDestroy(&preallocator);CHKERRQ(ierr);
15027f5b169aSMatthew G. Knepley   }
15037f5b169aSMatthew G. Knepley   /* Fill matrix */
15047f5b169aSMatthew G. Knepley   ierr = MatZeroEntries(In);CHKERRQ(ierr);
1505d69c5d34SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1506934789fcSMatthew G. Knepley     ierr = DMPlexMatSetClosureRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, In, c, elemMat, INSERT_VALUES);CHKERRQ(ierr);
1507d69c5d34SMatthew G. Knepley   }
1508549a8adaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {ierr = PetscFEDestroy(&feRef[f]);CHKERRQ(ierr);}
150997c42addSMatthew G. Knepley   ierr = PetscFree2(feRef,fvRef);CHKERRQ(ierr);
1510549a8adaSMatthew G. Knepley   ierr = PetscFree(elemMat);CHKERRQ(ierr);
1511934789fcSMatthew G. Knepley   ierr = MatAssemblyBegin(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1512934789fcSMatthew G. Knepley   ierr = MatAssemblyEnd(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1513d69c5d34SMatthew G. Knepley   if (mesh->printFEM) {
1514d69c5d34SMatthew G. Knepley     ierr = PetscPrintf(PETSC_COMM_WORLD, "%s:\n", name);CHKERRQ(ierr);
1515934789fcSMatthew G. Knepley     ierr = MatChop(In, 1.0e-10);CHKERRQ(ierr);
1516934789fcSMatthew G. Knepley     ierr = MatView(In, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
1517d69c5d34SMatthew G. Knepley   }
1518d69c5d34SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
1519d69c5d34SMatthew G. Knepley   PetscFunctionReturn(0);
1520d69c5d34SMatthew G. Knepley }
15216c73c22cSMatthew G. Knepley 
15226c73c22cSMatthew G. Knepley #undef __FUNCT__
152368132eb9SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeInterpolatorGeneral"
152468132eb9SMatthew G. Knepley /*@
152568132eb9SMatthew G. Knepley   DMPlexComputeInterpolatorGeneral - Form the local portion of the interpolation matrix I from the coarse DM to a non-nested fine DM.
152668132eb9SMatthew G. Knepley 
152768132eb9SMatthew G. Knepley   Input Parameters:
152868132eb9SMatthew G. Knepley + dmf  - The fine mesh
152968132eb9SMatthew G. Knepley . dmc  - The coarse mesh
153068132eb9SMatthew G. Knepley - user - The user context
153168132eb9SMatthew G. Knepley 
153268132eb9SMatthew G. Knepley   Output Parameter:
153368132eb9SMatthew G. Knepley . In  - The interpolation matrix
153468132eb9SMatthew G. Knepley 
153568132eb9SMatthew G. Knepley   Level: developer
153668132eb9SMatthew G. Knepley 
153768132eb9SMatthew G. Knepley .seealso: DMPlexComputeInterpolatorNested(), DMPlexComputeJacobianFEM()
153868132eb9SMatthew G. Knepley @*/
153968132eb9SMatthew G. Knepley PetscErrorCode DMPlexComputeInterpolatorGeneral(DM dmc, DM dmf, Mat In, void *user)
15404ef9d792SMatthew G. Knepley {
15414ef9d792SMatthew G. Knepley   PetscDS        prob;
15424ef9d792SMatthew G. Knepley   PetscSection   fsection, csection, globalFSection, globalCSection;
15434ef9d792SMatthew G. Knepley   PetscHashJK    ht;
15444ef9d792SMatthew G. Knepley   PetscLayout    rLayout;
15454ef9d792SMatthew G. Knepley   PetscInt      *dnz, *onz;
15464ef9d792SMatthew G. Knepley   PetscInt       locRows, rStart, rEnd;
15474ef9d792SMatthew G. Knepley   PetscReal     *x, *v0, *J, *invJ, detJ;
15484ef9d792SMatthew G. Knepley   PetscReal     *v0c, *Jc, *invJc, detJc;
15494ef9d792SMatthew G. Knepley   PetscScalar   *elemMat;
15504ef9d792SMatthew G. Knepley   PetscInt       dim, Nf, field, totDim, cStart, cEnd, cell, ccell;
15514ef9d792SMatthew G. Knepley   PetscErrorCode ierr;
15524ef9d792SMatthew G. Knepley 
15534ef9d792SMatthew G. Knepley   PetscFunctionBegin;
15544ef9d792SMatthew G. Knepley   ierr = DMGetCoordinateDim(dmc, &dim);CHKERRQ(ierr);
15554ef9d792SMatthew G. Knepley   ierr = DMGetDS(dmc, &prob);CHKERRQ(ierr);
15564ef9d792SMatthew G. Knepley   ierr = PetscDSGetRefCoordArrays(prob, &x, NULL);CHKERRQ(ierr);
15574ef9d792SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
15584ef9d792SMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
15594ef9d792SMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0c,dim*dim,&Jc,dim*dim,&invJc);CHKERRQ(ierr);
15604ef9d792SMatthew G. Knepley   ierr = DMGetDefaultSection(dmf, &fsection);CHKERRQ(ierr);
15614ef9d792SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);
15624ef9d792SMatthew G. Knepley   ierr = DMGetDefaultSection(dmc, &csection);CHKERRQ(ierr);
15634ef9d792SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);
15644ef9d792SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dmf, 0, &cStart, &cEnd);CHKERRQ(ierr);
15654ef9d792SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
15664ef9d792SMatthew G. Knepley   ierr = PetscMalloc1(totDim*totDim, &elemMat);CHKERRQ(ierr);
15674ef9d792SMatthew G. Knepley 
15684ef9d792SMatthew G. Knepley   ierr = MatGetLocalSize(In, &locRows, NULL);CHKERRQ(ierr);
15694ef9d792SMatthew G. Knepley   ierr = PetscLayoutCreate(PetscObjectComm((PetscObject) In), &rLayout);CHKERRQ(ierr);
15704ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr);
15714ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr);
15724ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr);
15734ef9d792SMatthew G. Knepley   ierr = PetscLayoutGetRange(rLayout, &rStart, &rEnd);CHKERRQ(ierr);
15744ef9d792SMatthew G. Knepley   ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr);
15754ef9d792SMatthew G. Knepley   ierr = PetscCalloc2(locRows,&dnz,locRows,&onz);CHKERRQ(ierr);
15764ef9d792SMatthew G. Knepley   ierr = PetscHashJKCreate(&ht);CHKERRQ(ierr);
15774ef9d792SMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
15784ef9d792SMatthew G. Knepley     PetscObject      obj;
15794ef9d792SMatthew G. Knepley     PetscClassId     id;
1580c0d7054bSMatthew G. Knepley     PetscDualSpace   Q = NULL;
15814ef9d792SMatthew G. Knepley     PetscQuadrature  f;
158217f047d8SMatthew G. Knepley     const PetscReal *qpoints;
158317f047d8SMatthew G. Knepley     PetscInt         Nc, Np, fpdim, i, d;
15844ef9d792SMatthew G. Knepley 
15854ef9d792SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
15864ef9d792SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
15874ef9d792SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
15884ef9d792SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
15894ef9d792SMatthew G. Knepley 
15904ef9d792SMatthew G. Knepley       ierr = PetscFEGetDualSpace(fe, &Q);CHKERRQ(ierr);
15914ef9d792SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
15924ef9d792SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
15934ef9d792SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
15944ef9d792SMatthew G. Knepley 
15954ef9d792SMatthew G. Knepley       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
15964ef9d792SMatthew G. Knepley       Nc   = 1;
15974ef9d792SMatthew G. Knepley     }
15984ef9d792SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Q, &fpdim);CHKERRQ(ierr);
15994ef9d792SMatthew G. Knepley     /* For each fine grid cell */
16004ef9d792SMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
16014ef9d792SMatthew G. Knepley       PetscInt *findices,   *cindices;
16024ef9d792SMatthew G. Knepley       PetscInt  numFIndices, numCIndices;
16034ef9d792SMatthew G. Knepley 
16044ef9d792SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, &numFIndices, &findices);CHKERRQ(ierr);CHKERRQ(ierr);
16054ef9d792SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
16064ef9d792SMatthew G. Knepley       if (numFIndices != fpdim*Nc) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of fine indices %d != %d dual basis vecs", numFIndices, fpdim*Nc);
16074ef9d792SMatthew G. Knepley       for (i = 0; i < fpdim; ++i) {
16084ef9d792SMatthew G. Knepley         Vec             pointVec;
16094ef9d792SMatthew G. Knepley         PetscScalar    *pV;
16104ef9d792SMatthew G. Knepley         IS              coarseCellIS;
16114ef9d792SMatthew G. Knepley         const PetscInt *coarseCells;
16124ef9d792SMatthew G. Knepley         PetscInt        numCoarseCells, q, r, c;
16134ef9d792SMatthew G. Knepley 
16144ef9d792SMatthew G. Knepley         /* Get points from the dual basis functional quadrature */
16154ef9d792SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(Q, i, &f);CHKERRQ(ierr);
16164ef9d792SMatthew G. Knepley         ierr = PetscQuadratureGetData(f, NULL, &Np, &qpoints, NULL);CHKERRQ(ierr);
16174ef9d792SMatthew G. Knepley         ierr = VecCreateSeq(PETSC_COMM_SELF, Np*dim, &pointVec);CHKERRQ(ierr);
16184ef9d792SMatthew G. Knepley         ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
16194ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
16204ef9d792SMatthew G. Knepley         for (q = 0; q < Np; ++q) {
16214ef9d792SMatthew G. Knepley           /* Transform point to real space */
16224ef9d792SMatthew G. Knepley           CoordinatesRefToReal(dim, dim, v0, J, &qpoints[q*dim], x);
16234ef9d792SMatthew G. Knepley           for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
16244ef9d792SMatthew G. Knepley         }
16254ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
16264ef9d792SMatthew G. Knepley         /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
16274ef9d792SMatthew G. Knepley         ierr = DMLocatePoints(dmc, pointVec, &coarseCellIS);CHKERRQ(ierr);
16284ef9d792SMatthew G. Knepley         ierr = ISViewFromOptions(coarseCellIS, NULL, "-interp_is_view");CHKERRQ(ierr);
16294ef9d792SMatthew G. Knepley         /* Update preallocation info */
16304ef9d792SMatthew G. Knepley         ierr = ISGetLocalSize(coarseCellIS, &numCoarseCells);CHKERRQ(ierr);
16314ef9d792SMatthew G. Knepley         ierr = ISGetIndices(coarseCellIS, &coarseCells);CHKERRQ(ierr);
16324ef9d792SMatthew G. Knepley         for (r = 0; r < Nc; ++r) {
16334ef9d792SMatthew G. Knepley           PetscHashJKKey  key;
16344ef9d792SMatthew G. Knepley           PetscHashJKIter missing, iter;
16354ef9d792SMatthew G. Knepley 
16364ef9d792SMatthew G. Knepley           key.j = findices[i*Nc+r];
16374ef9d792SMatthew G. Knepley           if (key.j < 0) continue;
16384ef9d792SMatthew G. Knepley           /* Get indices for coarse elements */
16394ef9d792SMatthew G. Knepley           for (ccell = 0; ccell < numCoarseCells; ++ccell) {
16404ef9d792SMatthew G. Knepley             ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell], &numCIndices, &cindices);CHKERRQ(ierr);CHKERRQ(ierr);
16414ef9d792SMatthew G. Knepley             for (c = 0; c < numCIndices; ++c) {
16424ef9d792SMatthew G. Knepley               key.k = cindices[c];
16434ef9d792SMatthew G. Knepley               if (key.k < 0) continue;
16444ef9d792SMatthew G. Knepley               ierr = PetscHashJKPut(ht, key, &missing, &iter);CHKERRQ(ierr);
16454ef9d792SMatthew G. Knepley               if (missing) {
16464ef9d792SMatthew G. Knepley                 ierr = PetscHashJKSet(ht, iter, 1);CHKERRQ(ierr);
16474ef9d792SMatthew G. Knepley                 if ((key.k >= rStart) && (key.k < rEnd)) ++dnz[key.j-rStart];
16484ef9d792SMatthew G. Knepley                 else                                     ++onz[key.j-rStart];
16494ef9d792SMatthew G. Knepley               }
16504ef9d792SMatthew G. Knepley             }
16514ef9d792SMatthew G. Knepley             ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell], &numCIndices, &cindices);CHKERRQ(ierr);CHKERRQ(ierr);
16524ef9d792SMatthew G. Knepley           }
16534ef9d792SMatthew G. Knepley         }
16544ef9d792SMatthew G. Knepley         ierr = ISRestoreIndices(coarseCellIS, &coarseCells);CHKERRQ(ierr);
16554ef9d792SMatthew G. Knepley         ierr = ISDestroy(&coarseCellIS);CHKERRQ(ierr);
16564ef9d792SMatthew G. Knepley         ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
16574ef9d792SMatthew G. Knepley       }
16584ef9d792SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, &numFIndices, &findices);CHKERRQ(ierr);CHKERRQ(ierr);
16594ef9d792SMatthew G. Knepley     }
16604ef9d792SMatthew G. Knepley   }
16614ef9d792SMatthew G. Knepley   ierr = PetscHashJKDestroy(&ht);CHKERRQ(ierr);
16624ef9d792SMatthew G. Knepley   ierr = MatXAIJSetPreallocation(In, 1, dnz, onz, NULL, NULL);CHKERRQ(ierr);
16634ef9d792SMatthew G. Knepley   ierr = MatSetOption(In, MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
16644ef9d792SMatthew G. Knepley   ierr = PetscFree2(dnz,onz);CHKERRQ(ierr);
16654ef9d792SMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
16664ef9d792SMatthew G. Knepley     PetscObject      obj;
16674ef9d792SMatthew G. Knepley     PetscClassId     id;
1668c0d7054bSMatthew G. Knepley     PetscDualSpace   Q = NULL;
16694ef9d792SMatthew G. Knepley     PetscQuadrature  f;
16704ef9d792SMatthew G. Knepley     const PetscReal *qpoints, *qweights;
167117f047d8SMatthew G. Knepley     PetscInt         Nc, Np, fpdim, i, d;
16724ef9d792SMatthew G. Knepley 
16734ef9d792SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
16744ef9d792SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
16754ef9d792SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
16764ef9d792SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
16774ef9d792SMatthew G. Knepley 
16784ef9d792SMatthew G. Knepley       ierr = PetscFEGetDualSpace(fe, &Q);CHKERRQ(ierr);
16794ef9d792SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
16804ef9d792SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
16814ef9d792SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
16824ef9d792SMatthew G. Knepley 
16834ef9d792SMatthew G. Knepley       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
16844ef9d792SMatthew G. Knepley       Nc   = 1;
16854ef9d792SMatthew G. Knepley     }
16864ef9d792SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Q, &fpdim);CHKERRQ(ierr);
16874ef9d792SMatthew G. Knepley     /* For each fine grid cell */
16884ef9d792SMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
16894ef9d792SMatthew G. Knepley       PetscInt *findices,   *cindices;
16904ef9d792SMatthew G. Knepley       PetscInt  numFIndices, numCIndices;
16914ef9d792SMatthew G. Knepley 
16924ef9d792SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, &numFIndices, &findices);CHKERRQ(ierr);CHKERRQ(ierr);
16934ef9d792SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
16944ef9d792SMatthew G. Knepley       if (numFIndices != fpdim*Nc) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of fine indices %d != %d dual basis vecs", numFIndices, fpdim*Nc);
16954ef9d792SMatthew G. Knepley       for (i = 0; i < fpdim; ++i) {
16964ef9d792SMatthew G. Knepley         Vec             pointVec;
16974ef9d792SMatthew G. Knepley         PetscScalar    *pV;
16984ef9d792SMatthew G. Knepley         IS              coarseCellIS;
16994ef9d792SMatthew G. Knepley         const PetscInt *coarseCells;
170017f047d8SMatthew G. Knepley         PetscInt        numCoarseCells, cpdim, q, c, j;
17014ef9d792SMatthew G. Knepley 
17024ef9d792SMatthew G. Knepley         /* Get points from the dual basis functional quadrature */
17034ef9d792SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(Q, i, &f);CHKERRQ(ierr);
17044ef9d792SMatthew G. Knepley         ierr = PetscQuadratureGetData(f, NULL, &Np, &qpoints, &qweights);CHKERRQ(ierr);
17054ef9d792SMatthew G. Knepley         ierr = VecCreateSeq(PETSC_COMM_SELF, Np*dim, &pointVec);CHKERRQ(ierr);
17064ef9d792SMatthew G. Knepley         ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
17074ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
17084ef9d792SMatthew G. Knepley         for (q = 0; q < Np; ++q) {
17094ef9d792SMatthew G. Knepley           /* Transform point to real space */
17104ef9d792SMatthew G. Knepley           CoordinatesRefToReal(dim, dim, v0, J, &qpoints[q*dim], x);
17114ef9d792SMatthew G. Knepley           for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
17124ef9d792SMatthew G. Knepley         }
17134ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
17144ef9d792SMatthew G. Knepley         /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
17154ef9d792SMatthew G. Knepley         ierr = DMLocatePoints(dmc, pointVec, &coarseCellIS);CHKERRQ(ierr);
17164ef9d792SMatthew G. Knepley         /* Update preallocation info */
17174ef9d792SMatthew G. Knepley         ierr = ISGetLocalSize(coarseCellIS, &numCoarseCells);CHKERRQ(ierr);
17184ef9d792SMatthew G. Knepley         ierr = ISGetIndices(coarseCellIS, &coarseCells);CHKERRQ(ierr);
17194ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
17204ef9d792SMatthew G. Knepley         for (ccell = 0; ccell < numCoarseCells; ++ccell) {
1721826eb36dSMatthew G. Knepley           PetscReal pVReal[3];
1722826eb36dSMatthew G. Knepley 
17234ef9d792SMatthew G. Knepley           ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell], &numCIndices, &cindices);CHKERRQ(ierr);CHKERRQ(ierr);
17244ef9d792SMatthew G. Knepley           /* Transform points from real space to coarse reference space */
1725f1ac73f2SMatthew G. Knepley           ierr = DMPlexComputeCellGeometryFEM(dmc, coarseCells[ccell], NULL, v0c, Jc, invJc, &detJc);CHKERRQ(ierr);
1726826eb36dSMatthew G. Knepley           CoordinatesRealToRef(dim, dim, v0c, invJc, pVReal, x);
1727826eb36dSMatthew G. Knepley           for (d = 0; d < dim; ++d) pV[ccell*dim+d] = pVReal[d];
17284ef9d792SMatthew G. Knepley 
17294ef9d792SMatthew G. Knepley           if (id == PETSCFE_CLASSID) {
17304ef9d792SMatthew G. Knepley             PetscFE    fe = (PetscFE) obj;
17314ef9d792SMatthew G. Knepley             PetscReal *B;
17324ef9d792SMatthew G. Knepley 
17334ef9d792SMatthew G. Knepley             /* Evaluate coarse basis on contained point */
17344ef9d792SMatthew G. Knepley             ierr = PetscFEGetDimension(fe, &cpdim);CHKERRQ(ierr);
17354ef9d792SMatthew G. Knepley             ierr = PetscFEGetTabulation(fe, 1, x, &B, NULL, NULL);CHKERRQ(ierr);
17364ef9d792SMatthew G. Knepley             /* Get elemMat entries by multiplying by weight */
17374ef9d792SMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
17384ef9d792SMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[(c*cpdim + j)*Nc + c] = B[j*Nc + c]*qweights[ccell];
17394ef9d792SMatthew G. Knepley             }
17404ef9d792SMatthew G. Knepley             ierr = PetscFERestoreTabulation(fe, 1, x, &B, NULL, NULL);CHKERRQ(ierr);CHKERRQ(ierr);
17414ef9d792SMatthew G. Knepley           } else {
17424ef9d792SMatthew G. Knepley             cpdim = 1;
17434ef9d792SMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
17444ef9d792SMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[(c*cpdim + j)*Nc + c] = 1.0*qweights[ccell];
17454ef9d792SMatthew G. Knepley             }
17464ef9d792SMatthew G. Knepley           }
17474ef9d792SMatthew G. Knepley           /* Update interpolator */
17484ef9d792SMatthew G. Knepley           ierr = MatSetValues(In, Nc, &findices[i*Nc], numCIndices, cindices, elemMat, INSERT_VALUES);CHKERRQ(ierr);
17494ef9d792SMatthew G. Knepley           ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell], &numCIndices, &cindices);CHKERRQ(ierr);CHKERRQ(ierr);
17504ef9d792SMatthew G. Knepley         }
17514ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
17524ef9d792SMatthew G. Knepley         ierr = ISRestoreIndices(coarseCellIS, &coarseCells);CHKERRQ(ierr);
17534ef9d792SMatthew G. Knepley         ierr = ISDestroy(&coarseCellIS);CHKERRQ(ierr);
17544ef9d792SMatthew G. Knepley         ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
17554ef9d792SMatthew G. Knepley       }
17564ef9d792SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, &numFIndices, &findices);CHKERRQ(ierr);CHKERRQ(ierr);
17574ef9d792SMatthew G. Knepley     }
17584ef9d792SMatthew G. Knepley   }
17594ef9d792SMatthew G. Knepley   ierr = PetscFree3(v0,J,invJ);CHKERRQ(ierr);
17604ef9d792SMatthew G. Knepley   ierr = PetscFree3(v0c,Jc,invJc);CHKERRQ(ierr);
17614ef9d792SMatthew G. Knepley   ierr = PetscFree(elemMat);CHKERRQ(ierr);
17624ef9d792SMatthew G. Knepley   ierr = MatAssemblyBegin(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
17634ef9d792SMatthew G. Knepley   ierr = MatAssemblyEnd(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
17644ef9d792SMatthew G. Knepley   PetscFunctionReturn(0);
17654ef9d792SMatthew G. Knepley }
17664ef9d792SMatthew G. Knepley 
17674ef9d792SMatthew G. Knepley #undef __FUNCT__
17687c927364SMatthew G. Knepley #define __FUNCT__ "DMPlexComputeInjectorFEM"
17697c927364SMatthew G. Knepley PetscErrorCode DMPlexComputeInjectorFEM(DM dmc, DM dmf, VecScatter *sc, void *user)
17707c927364SMatthew G. Knepley {
1771e9d4ef1bSMatthew G. Knepley   PetscDS        prob;
17727c927364SMatthew G. Knepley   PetscFE       *feRef;
177397c42addSMatthew G. Knepley   PetscFV       *fvRef;
17747c927364SMatthew G. Knepley   Vec            fv, cv;
17757c927364SMatthew G. Knepley   IS             fis, cis;
17767c927364SMatthew G. Knepley   PetscSection   fsection, fglobalSection, csection, cglobalSection;
17777c927364SMatthew G. Knepley   PetscInt      *cmap, *cellCIndices, *cellFIndices, *cindices, *findices;
1778*0bd915a7SMatthew G. Knepley   PetscInt       cTotDim, fTotDim = 0, Nf, f, field, cStart, cEnd, cEndInterior, c, dim, d, startC, endC, offsetC, offsetF, m;
17797c927364SMatthew G. Knepley   PetscErrorCode ierr;
17807c927364SMatthew G. Knepley 
17817c927364SMatthew G. Knepley   PetscFunctionBegin;
178275a69067SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_InjectorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
1783c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dmf, &dim);CHKERRQ(ierr);
17847c927364SMatthew G. Knepley   ierr = DMGetDefaultSection(dmf, &fsection);CHKERRQ(ierr);
17857c927364SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmf, &fglobalSection);CHKERRQ(ierr);
17867c927364SMatthew G. Knepley   ierr = DMGetDefaultSection(dmc, &csection);CHKERRQ(ierr);
17877c927364SMatthew G. Knepley   ierr = DMGetDefaultGlobalSection(dmc, &cglobalSection);CHKERRQ(ierr);
17887c927364SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &Nf);CHKERRQ(ierr);
17897c927364SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dmc, 0, &cStart, &cEnd);CHKERRQ(ierr);
17909ac3fadcSMatthew G. Knepley   ierr = DMPlexGetHybridBounds(dmc, &cEndInterior, NULL, NULL, NULL);CHKERRQ(ierr);
17919ac3fadcSMatthew G. Knepley   cEnd = cEndInterior < 0 ? cEnd : cEndInterior;
1792e9d4ef1bSMatthew G. Knepley   ierr = DMGetDS(dmc, &prob);CHKERRQ(ierr);
179397c42addSMatthew G. Knepley   ierr = PetscCalloc2(Nf,&feRef,Nf,&fvRef);CHKERRQ(ierr);
17947c927364SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
179597c42addSMatthew G. Knepley     PetscObject  obj;
179697c42addSMatthew G. Knepley     PetscClassId id;
1797aa7890ccSMatthew G. Knepley     PetscInt     fNb = 0, Nc = 0;
17987c927364SMatthew G. Knepley 
179997c42addSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
180097c42addSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
180197c42addSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
180297c42addSMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
180397c42addSMatthew G. Knepley 
18047c927364SMatthew G. Knepley       ierr = PetscFERefine(fe, &feRef[f]);CHKERRQ(ierr);
18057c927364SMatthew G. Knepley       ierr = PetscFEGetDimension(feRef[f], &fNb);CHKERRQ(ierr);
18067c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
180797c42addSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
180897c42addSMatthew G. Knepley       PetscFV        fv = (PetscFV) obj;
180997c42addSMatthew G. Knepley       PetscDualSpace Q;
181097c42addSMatthew G. Knepley 
181197c42addSMatthew G. Knepley       ierr = PetscFVRefine(fv, &fvRef[f]);CHKERRQ(ierr);
181297c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[f], &Q);CHKERRQ(ierr);
181397c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(Q, &fNb);CHKERRQ(ierr);
181497c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
181597c42addSMatthew G. Knepley     }
18167c927364SMatthew G. Knepley     fTotDim += fNb*Nc;
18177c927364SMatthew G. Knepley   }
1818e9d4ef1bSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &cTotDim);CHKERRQ(ierr);
18197c927364SMatthew G. Knepley   ierr = PetscMalloc1(cTotDim,&cmap);CHKERRQ(ierr);
18207c927364SMatthew G. Knepley   for (field = 0, offsetC = 0, offsetF = 0; field < Nf; ++field) {
18217c927364SMatthew G. Knepley     PetscFE        feC;
182297c42addSMatthew G. Knepley     PetscFV        fvC;
18237c927364SMatthew G. Knepley     PetscDualSpace QF, QC;
18247c927364SMatthew G. Knepley     PetscInt       NcF, NcC, fpdim, cpdim;
18257c927364SMatthew G. Knepley 
182697c42addSMatthew G. Knepley     if (feRef[field]) {
1827e9d4ef1bSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &feC);CHKERRQ(ierr);
18287c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feC, &NcC);CHKERRQ(ierr);
18297c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feRef[field], &NcF);CHKERRQ(ierr);
18307c927364SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feRef[field], &QF);CHKERRQ(ierr);
18317c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QF, &fpdim);CHKERRQ(ierr);
18327c927364SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feC, &QC);CHKERRQ(ierr);
18337c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QC, &cpdim);CHKERRQ(ierr);
183497c42addSMatthew G. Knepley     } else {
183597c42addSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fvC);CHKERRQ(ierr);
183697c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvC, &NcC);CHKERRQ(ierr);
183797c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvRef[field], &NcF);CHKERRQ(ierr);
183897c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[field], &QF);CHKERRQ(ierr);
183997c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QF, &fpdim);CHKERRQ(ierr);
184097c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvC, &QC);CHKERRQ(ierr);
184197c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QC, &cpdim);CHKERRQ(ierr);
184297c42addSMatthew G. Knepley     }
184397c42addSMatthew G. Knepley     if (NcF != NcC) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in fine space field %d does not match coarse field %d", NcF, NcC);
18447c927364SMatthew G. Knepley     for (c = 0; c < cpdim; ++c) {
18457c927364SMatthew G. Knepley       PetscQuadrature  cfunc;
18467c927364SMatthew G. Knepley       const PetscReal *cqpoints;
18477c927364SMatthew G. Knepley       PetscInt         NpC;
184897c42addSMatthew G. Knepley       PetscBool        found = PETSC_FALSE;
18497c927364SMatthew G. Knepley 
18507c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(QC, c, &cfunc);CHKERRQ(ierr);
18517c927364SMatthew G. Knepley       ierr = PetscQuadratureGetData(cfunc, NULL, &NpC, &cqpoints, NULL);CHKERRQ(ierr);
185297c42addSMatthew G. Knepley       if (NpC != 1 && feRef[field]) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Do not know how to do injection for moments");
18537c927364SMatthew G. Knepley       for (f = 0; f < fpdim; ++f) {
18547c927364SMatthew G. Knepley         PetscQuadrature  ffunc;
18557c927364SMatthew G. Knepley         const PetscReal *fqpoints;
18567c927364SMatthew G. Knepley         PetscReal        sum = 0.0;
18577c927364SMatthew G. Knepley         PetscInt         NpF, comp;
18587c927364SMatthew G. Knepley 
18597c927364SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(QF, f, &ffunc);CHKERRQ(ierr);
18607c927364SMatthew G. Knepley         ierr = PetscQuadratureGetData(ffunc, NULL, &NpF, &fqpoints, NULL);CHKERRQ(ierr);
18617c927364SMatthew G. Knepley         if (NpC != NpF) continue;
18627c927364SMatthew G. Knepley         for (d = 0; d < dim; ++d) sum += PetscAbsReal(cqpoints[d] - fqpoints[d]);
18637c927364SMatthew G. Knepley         if (sum > 1.0e-9) continue;
18647c927364SMatthew G. Knepley         for (comp = 0; comp < NcC; ++comp) {
18657c927364SMatthew G. Knepley           cmap[(offsetC+c)*NcC+comp] = (offsetF+f)*NcF+comp;
18667c927364SMatthew G. Knepley         }
186797c42addSMatthew G. Knepley         found = PETSC_TRUE;
18687c927364SMatthew G. Knepley         break;
18697c927364SMatthew G. Knepley       }
187097c42addSMatthew G. Knepley       if (!found) {
187197c42addSMatthew G. Knepley         /* TODO We really want the average here, but some asshole put VecScatter in the interface */
187297c42addSMatthew G. Knepley         if (fvRef[field]) {
187397c42addSMatthew G. Knepley           PetscInt comp;
187497c42addSMatthew G. Knepley           for (comp = 0; comp < NcC; ++comp) {
187597c42addSMatthew G. Knepley             cmap[(offsetC+c)*NcC+comp] = (offsetF+0)*NcF+comp;
187697c42addSMatthew G. Knepley           }
187797c42addSMatthew G. Knepley         } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Could not locate matching functional for injection");
187897c42addSMatthew G. Knepley       }
18797c927364SMatthew G. Knepley     }
18807c927364SMatthew G. Knepley     offsetC += cpdim*NcC;
18817c927364SMatthew G. Knepley     offsetF += fpdim*NcF;
18827c927364SMatthew G. Knepley   }
188397c42addSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {ierr = PetscFEDestroy(&feRef[f]);CHKERRQ(ierr);ierr = PetscFVDestroy(&fvRef[f]);CHKERRQ(ierr);}
188497c42addSMatthew G. Knepley   ierr = PetscFree2(feRef,fvRef);CHKERRQ(ierr);
18857c927364SMatthew G. Knepley 
18867c927364SMatthew G. Knepley   ierr = DMGetGlobalVector(dmf, &fv);CHKERRQ(ierr);
18877c927364SMatthew G. Knepley   ierr = DMGetGlobalVector(dmc, &cv);CHKERRQ(ierr);
1888*0bd915a7SMatthew G. Knepley   ierr = VecGetOwnershipRange(cv, &startC, &endC);CHKERRQ(ierr);
18897c927364SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(cglobalSection, &m);CHKERRQ(ierr);
18907c927364SMatthew G. Knepley   ierr = PetscMalloc2(cTotDim,&cellCIndices,fTotDim,&cellFIndices);CHKERRQ(ierr);
1891aa7da3c4SMatthew G. Knepley   ierr = PetscMalloc1(m,&cindices);CHKERRQ(ierr);
1892aa7da3c4SMatthew G. Knepley   ierr = PetscMalloc1(m,&findices);CHKERRQ(ierr);
18937c927364SMatthew G. Knepley   for (d = 0; d < m; ++d) cindices[d] = findices[d] = -1;
18947c927364SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
18957c927364SMatthew G. Knepley     ierr = DMPlexMatGetClosureIndicesRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, c, cellCIndices, cellFIndices);CHKERRQ(ierr);
18967c927364SMatthew G. Knepley     for (d = 0; d < cTotDim; ++d) {
1897*0bd915a7SMatthew G. Knepley       if ((cellCIndices[d] < startC) || (cellCIndices[d] >= endC)) continue;
18987c927364SMatthew G. Knepley       if ((findices[cellCIndices[d]-startC] >= 0) && (findices[cellCIndices[d]-startC] != cellFIndices[cmap[d]])) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Coarse dof %d maps to both %d and %d", cindices[cellCIndices[d]-startC], findices[cellCIndices[d]-startC], cellFIndices[cmap[d]]);
18997c927364SMatthew G. Knepley       cindices[cellCIndices[d]-startC] = cellCIndices[d];
19007c927364SMatthew G. Knepley       findices[cellCIndices[d]-startC] = cellFIndices[cmap[d]];
19017c927364SMatthew G. Knepley     }
19027c927364SMatthew G. Knepley   }
19037c927364SMatthew G. Knepley   ierr = PetscFree(cmap);CHKERRQ(ierr);
19047c927364SMatthew G. Knepley   ierr = PetscFree2(cellCIndices,cellFIndices);CHKERRQ(ierr);
19057c927364SMatthew G. Knepley 
19067c927364SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, m, cindices, PETSC_OWN_POINTER, &cis);CHKERRQ(ierr);
19077c927364SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, m, findices, PETSC_OWN_POINTER, &fis);CHKERRQ(ierr);
19087c927364SMatthew G. Knepley   ierr = VecScatterCreate(cv, cis, fv, fis, sc);CHKERRQ(ierr);
19097c927364SMatthew G. Knepley   ierr = ISDestroy(&cis);CHKERRQ(ierr);
19107c927364SMatthew G. Knepley   ierr = ISDestroy(&fis);CHKERRQ(ierr);
19117c927364SMatthew G. Knepley   ierr = DMRestoreGlobalVector(dmf, &fv);CHKERRQ(ierr);
19127c927364SMatthew G. Knepley   ierr = DMRestoreGlobalVector(dmc, &cv);CHKERRQ(ierr);
191375a69067SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_InjectorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
1914cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
1915cb1e1211SMatthew G Knepley }
1916