xref: /petsc/src/dm/impls/plex/plexfem.c (revision 8e3a2eeff93b8092aa720bf50e8b48bf277d7f13)
1af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h>   /*I      "petscdmplex.h"   I*/
2da97024aSMatthew G. Knepley #include <petscsf.h>
3cb1e1211SMatthew G Knepley 
4*8e3a2eefSMatthew G. Knepley #include <petscblaslapack.h>
5e8f14785SLisandro Dalcin #include <petsc/private/hashsetij.h>
6af0996ceSBarry Smith #include <petsc/private/petscfeimpl.h>
7af0996ceSBarry Smith #include <petsc/private/petscfvimpl.h>
8a0845e3aSMatthew G. Knepley 
92f856554SMatthew G. Knepley static PetscErrorCode DMPlexConvertPlex(DM dm, DM *plex, PetscBool copy)
102f856554SMatthew G. Knepley {
112f856554SMatthew G. Knepley   PetscBool      isPlex;
122f856554SMatthew G. Knepley   PetscErrorCode ierr;
132f856554SMatthew G. Knepley 
142f856554SMatthew G. Knepley   PetscFunctionBegin;
152f856554SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) dm, DMPLEX, &isPlex);CHKERRQ(ierr);
162f856554SMatthew G. Knepley   if (isPlex) {
172f856554SMatthew G. Knepley     *plex = dm;
182f856554SMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) dm);CHKERRQ(ierr);
192f856554SMatthew G. Knepley   } else {
202f856554SMatthew G. Knepley     ierr = PetscObjectQuery((PetscObject) dm, "dm_plex", (PetscObject *) plex);CHKERRQ(ierr);
212f856554SMatthew G. Knepley     if (!*plex) {
222f856554SMatthew G. Knepley       ierr = DMConvert(dm, DMPLEX, plex);CHKERRQ(ierr);
232f856554SMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) dm, "dm_plex", (PetscObject) *plex);CHKERRQ(ierr);
242f856554SMatthew G. Knepley       if (copy) {
252f856554SMatthew G. Knepley         DMSubDomainHookLink link;
269a2a23afSMatthew G. Knepley 
279a2a23afSMatthew G. Knepley         ierr = DMCopyAuxiliaryVec(dm, *plex);CHKERRQ(ierr);
289a2a23afSMatthew G. Knepley         /* Run the subdomain hook (this will copy the DMSNES/DMTS) */
292f856554SMatthew G. Knepley         for (link = dm->subdomainhook; link; link = link->next) {
302f856554SMatthew G. Knepley           if (link->ddhook) {ierr = (*link->ddhook)(dm, *plex, link->ctx);CHKERRQ(ierr);}
312f856554SMatthew G. Knepley         }
322f856554SMatthew G. Knepley       }
332f856554SMatthew G. Knepley     } else {
342f856554SMatthew G. Knepley       ierr = PetscObjectReference((PetscObject) *plex);CHKERRQ(ierr);
352f856554SMatthew G. Knepley     }
362f856554SMatthew G. Knepley   }
372f856554SMatthew G. Knepley   PetscFunctionReturn(0);
382f856554SMatthew G. Knepley }
392f856554SMatthew G. Knepley 
409b6f715bSMatthew G. Knepley static PetscErrorCode PetscContainerUserDestroy_PetscFEGeom (void *ctx)
419b6f715bSMatthew G. Knepley {
429b6f715bSMatthew G. Knepley   PetscFEGeom *geom = (PetscFEGeom *) ctx;
439b6f715bSMatthew G. Knepley   PetscErrorCode ierr;
449b6f715bSMatthew G. Knepley 
459b6f715bSMatthew G. Knepley   PetscFunctionBegin;
469b6f715bSMatthew G. Knepley   ierr = PetscFEGeomDestroy(&geom);CHKERRQ(ierr);
479b6f715bSMatthew G. Knepley   PetscFunctionReturn(0);
489b6f715bSMatthew G. Knepley }
499b6f715bSMatthew G. Knepley 
509b6f715bSMatthew G. Knepley static PetscErrorCode DMPlexGetFEGeom(DMField coordField, IS pointIS, PetscQuadrature quad, PetscBool faceData, PetscFEGeom **geom)
519b6f715bSMatthew G. Knepley {
529b6f715bSMatthew G. Knepley   char            composeStr[33] = {0};
539b6f715bSMatthew G. Knepley   PetscObjectId   id;
549b6f715bSMatthew G. Knepley   PetscContainer  container;
559b6f715bSMatthew G. Knepley   PetscErrorCode  ierr;
569b6f715bSMatthew G. Knepley 
579b6f715bSMatthew G. Knepley   PetscFunctionBegin;
589b6f715bSMatthew G. Knepley   ierr = PetscObjectGetId((PetscObject)quad,&id);CHKERRQ(ierr);
599b6f715bSMatthew G. Knepley   ierr = PetscSNPrintf(composeStr, 32, "DMPlexGetFEGeom_%x\n", id);CHKERRQ(ierr);
609b6f715bSMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) pointIS, composeStr, (PetscObject *) &container);CHKERRQ(ierr);
619b6f715bSMatthew G. Knepley   if (container) {
629b6f715bSMatthew G. Knepley     ierr = PetscContainerGetPointer(container, (void **) geom);CHKERRQ(ierr);
639b6f715bSMatthew G. Knepley   } else {
649b6f715bSMatthew G. Knepley     ierr = DMFieldCreateFEGeom(coordField, pointIS, quad, faceData, geom);CHKERRQ(ierr);
659b6f715bSMatthew G. Knepley     ierr = PetscContainerCreate(PETSC_COMM_SELF,&container);CHKERRQ(ierr);
669b6f715bSMatthew G. Knepley     ierr = PetscContainerSetPointer(container, (void *) *geom);CHKERRQ(ierr);
679b6f715bSMatthew G. Knepley     ierr = PetscContainerSetUserDestroy(container, PetscContainerUserDestroy_PetscFEGeom);CHKERRQ(ierr);
689b6f715bSMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) pointIS, composeStr, (PetscObject) container);CHKERRQ(ierr);
699b6f715bSMatthew G. Knepley     ierr = PetscContainerDestroy(&container);CHKERRQ(ierr);
709b6f715bSMatthew G. Knepley   }
719b6f715bSMatthew G. Knepley   PetscFunctionReturn(0);
729b6f715bSMatthew G. Knepley }
739b6f715bSMatthew G. Knepley 
749b6f715bSMatthew G. Knepley static PetscErrorCode DMPlexRestoreFEGeom(DMField coordField, IS pointIS, PetscQuadrature quad, PetscBool faceData, PetscFEGeom **geom)
759b6f715bSMatthew G. Knepley {
769b6f715bSMatthew G. Knepley   PetscFunctionBegin;
779b6f715bSMatthew G. Knepley   *geom = NULL;
789b6f715bSMatthew G. Knepley   PetscFunctionReturn(0);
799b6f715bSMatthew G. Knepley }
809b6f715bSMatthew G. Knepley 
8146fa42a0SMatthew G. Knepley /*@
8246fa42a0SMatthew G. Knepley   DMPlexGetScale - Get the scale for the specified fundamental unit
8346fa42a0SMatthew G. Knepley 
8446fa42a0SMatthew G. Knepley   Not collective
8546fa42a0SMatthew G. Knepley 
8646fa42a0SMatthew G. Knepley   Input Arguments:
8746fa42a0SMatthew G. Knepley + dm   - the DM
8846fa42a0SMatthew G. Knepley - unit - The SI unit
8946fa42a0SMatthew G. Knepley 
9046fa42a0SMatthew G. Knepley   Output Argument:
9146fa42a0SMatthew G. Knepley . scale - The value used to scale all quantities with this unit
9246fa42a0SMatthew G. Knepley 
9346fa42a0SMatthew G. Knepley   Level: advanced
9446fa42a0SMatthew G. Knepley 
9546fa42a0SMatthew G. Knepley .seealso: DMPlexSetScale(), PetscUnit
9646fa42a0SMatthew G. Knepley @*/
97cb1e1211SMatthew G Knepley PetscErrorCode DMPlexGetScale(DM dm, PetscUnit unit, PetscReal *scale)
98cb1e1211SMatthew G Knepley {
99cb1e1211SMatthew G Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
100cb1e1211SMatthew G Knepley 
101cb1e1211SMatthew G Knepley   PetscFunctionBegin;
102cb1e1211SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
103cb1e1211SMatthew G Knepley   PetscValidPointer(scale, 3);
104cb1e1211SMatthew G Knepley   *scale = mesh->scale[unit];
105cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
106cb1e1211SMatthew G Knepley }
107cb1e1211SMatthew G Knepley 
10846fa42a0SMatthew G. Knepley /*@
10946fa42a0SMatthew G. Knepley   DMPlexSetScale - Set the scale for the specified fundamental unit
11046fa42a0SMatthew G. Knepley 
11146fa42a0SMatthew G. Knepley   Not collective
11246fa42a0SMatthew G. Knepley 
11346fa42a0SMatthew G. Knepley   Input Arguments:
11446fa42a0SMatthew G. Knepley + dm   - the DM
11546fa42a0SMatthew G. Knepley . unit - The SI unit
11646fa42a0SMatthew G. Knepley - scale - The value used to scale all quantities with this unit
11746fa42a0SMatthew G. Knepley 
11846fa42a0SMatthew G. Knepley   Level: advanced
11946fa42a0SMatthew G. Knepley 
12046fa42a0SMatthew G. Knepley .seealso: DMPlexGetScale(), PetscUnit
12146fa42a0SMatthew G. Knepley @*/
122cb1e1211SMatthew G Knepley PetscErrorCode DMPlexSetScale(DM dm, PetscUnit unit, PetscReal scale)
123cb1e1211SMatthew G Knepley {
124cb1e1211SMatthew G Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
125cb1e1211SMatthew G Knepley 
126cb1e1211SMatthew G Knepley   PetscFunctionBegin;
127cb1e1211SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
128cb1e1211SMatthew G Knepley   mesh->scale[unit] = scale;
129cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
130cb1e1211SMatthew G Knepley }
131cb1e1211SMatthew G Knepley 
132327779f2SMatthew Knepley static PetscErrorCode DMPlexProjectRigidBody_Private(PetscInt dim, PetscReal t, const PetscReal X[], PetscInt Nc, PetscScalar *mode, void *ctx)
133026175e5SToby Isaac {
13412adca46SMatthew G. Knepley   const PetscInt eps[3][3][3] = {{{0, 0, 0}, {0, 0, 1}, {0, -1, 0}}, {{0, 0, -1}, {0, 0, 0}, {1, 0, 0}}, {{0, 1, 0}, {-1, 0, 0}, {0, 0, 0}}};
135026175e5SToby Isaac   PetscInt *ctxInt  = (PetscInt *) ctx;
136ad917190SMatthew G. Knepley   PetscInt  dim2    = ctxInt[0];
137026175e5SToby Isaac   PetscInt  d       = ctxInt[1];
138026175e5SToby Isaac   PetscInt  i, j, k = dim > 2 ? d - dim : d;
139026175e5SToby Isaac 
140ad917190SMatthew G. Knepley   PetscFunctionBegin;
141ff1e0c32SBarry Smith   if (dim != dim2) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Input dimension %D does not match context dimension %D", dim, dim2);
142026175e5SToby Isaac   for (i = 0; i < dim; i++) mode[i] = 0.;
143026175e5SToby Isaac   if (d < dim) {
14412adca46SMatthew G. Knepley     mode[d] = 1.; /* Translation along axis d */
145ad917190SMatthew G. Knepley   } else {
146026175e5SToby Isaac     for (i = 0; i < dim; i++) {
147026175e5SToby Isaac       for (j = 0; j < dim; j++) {
14812adca46SMatthew G. Knepley         mode[j] += eps[i][j][k]*X[i]; /* Rotation about axis d */
149026175e5SToby Isaac       }
150026175e5SToby Isaac     }
151026175e5SToby Isaac   }
152ad917190SMatthew G. Knepley   PetscFunctionReturn(0);
153026175e5SToby Isaac }
154026175e5SToby Isaac 
155cc4e42d9SMartin Diehl /*@
15612adca46SMatthew G. Knepley   DMPlexCreateRigidBody - For the default global section, create rigid body modes by function space interpolation
157cb1e1211SMatthew G Knepley 
158d083f849SBarry Smith   Collective on dm
159cb1e1211SMatthew G Knepley 
160cb1e1211SMatthew G Knepley   Input Arguments:
16156cf3b9cSMatthew G. Knepley + dm - the DM
16256cf3b9cSMatthew G. Knepley - field - The field number for the rigid body space, or 0 for the default
163cb1e1211SMatthew G Knepley 
164cb1e1211SMatthew G Knepley   Output Argument:
165cb1e1211SMatthew G Knepley . sp - the null space
166cb1e1211SMatthew G Knepley 
16712adca46SMatthew G. Knepley   Note: This is necessary to provide a suitable coarse space for algebraic multigrid
168cb1e1211SMatthew G Knepley 
169cb1e1211SMatthew G Knepley   Level: advanced
170cb1e1211SMatthew G Knepley 
17112adca46SMatthew G. Knepley .seealso: MatNullSpaceCreate(), PCGAMG
172cb1e1211SMatthew G Knepley @*/
17356cf3b9cSMatthew G. Knepley PetscErrorCode DMPlexCreateRigidBody(DM dm, PetscInt field, MatNullSpace *sp)
174cb1e1211SMatthew G Knepley {
17556cf3b9cSMatthew G. Knepley   PetscErrorCode (**func)(PetscInt, PetscReal, const PetscReal *, PetscInt, PetscScalar *, void *);
176cb1e1211SMatthew G Knepley   MPI_Comm          comm;
177026175e5SToby Isaac   Vec               mode[6];
178026175e5SToby Isaac   PetscSection      section, globalSection;
17956cf3b9cSMatthew G. Knepley   PetscInt          dim, dimEmbed, Nf, n, m, mmin, d, i, j;
180cb1e1211SMatthew G Knepley   PetscErrorCode    ierr;
181cb1e1211SMatthew G Knepley 
182cb1e1211SMatthew G Knepley   PetscFunctionBegin;
183cb1e1211SMatthew G Knepley   ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
184c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1859d8fbdeaSMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
18656cf3b9cSMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
18756cf3b9cSMatthew G. Knepley   if (Nf && (field < 0 || field >= Nf)) SETERRQ2(comm, PETSC_ERR_ARG_OUTOFRANGE, "Field %D is not in [0, Nf)", field, Nf);
18856cf3b9cSMatthew G. Knepley   if (dim == 1 && Nf < 2) {
189cb1e1211SMatthew G Knepley     ierr = MatNullSpaceCreate(comm, PETSC_TRUE, 0, NULL, sp);CHKERRQ(ierr);
190cb1e1211SMatthew G Knepley     PetscFunctionReturn(0);
191cb1e1211SMatthew G Knepley   }
19292fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
193e87a4003SBarry Smith   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
194cb1e1211SMatthew G Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &n);CHKERRQ(ierr);
19556cf3b9cSMatthew G. Knepley   ierr = PetscCalloc1(Nf, &func);CHKERRQ(ierr);
196b247467aSMatthew G. Knepley   m    = (dim*(dim+1))/2;
197cb1e1211SMatthew G Knepley   ierr = VecCreate(comm, &mode[0]);CHKERRQ(ierr);
198cb1e1211SMatthew G Knepley   ierr = VecSetSizes(mode[0], n, PETSC_DETERMINE);CHKERRQ(ierr);
199cb1e1211SMatthew G Knepley   ierr = VecSetUp(mode[0]);CHKERRQ(ierr);
200b247467aSMatthew G. Knepley   ierr = VecGetSize(mode[0], &n);CHKERRQ(ierr);
201b247467aSMatthew G. Knepley   mmin = PetscMin(m, n);
20256cf3b9cSMatthew G. Knepley   func[field] = DMPlexProjectRigidBody_Private;
203cb1e1211SMatthew G Knepley   for (i = 1; i < m; ++i) {ierr = VecDuplicate(mode[0], &mode[i]);CHKERRQ(ierr);}
204026175e5SToby Isaac   for (d = 0; d < m; d++) {
205330485fdSToby Isaac     PetscInt ctx[2];
206026175e5SToby Isaac     void    *voidctx = (void *) (&ctx[0]);
207cb1e1211SMatthew G Knepley 
2089d8fbdeaSMatthew G. Knepley     ctx[0] = dimEmbed;
209330485fdSToby Isaac     ctx[1] = d;
21056cf3b9cSMatthew G. Knepley     ierr = DMProjectFunction(dm, 0.0, func, &voidctx, INSERT_VALUES, mode[d]);CHKERRQ(ierr);
211cb1e1211SMatthew G Knepley   }
2123b2202bfSJacob Faibussowitsch   /* Orthonormalize system */
213b50a2c0aSJacob Faibussowitsch   for (i = 0; i < mmin; ++i) {
214b77f2eeeSJacob Faibussowitsch     PetscScalar dots[6];
215b50a2c0aSJacob Faibussowitsch 
2169019a6d7SJacob Faibussowitsch     ierr = VecNormalize(mode[i], NULL);CHKERRQ(ierr);
217b77f2eeeSJacob Faibussowitsch     ierr = VecMDot(mode[i], mmin-i-1, mode+i+1, dots+i+1);CHKERRQ(ierr);
218b50a2c0aSJacob Faibussowitsch     for (j = i+1; j < mmin; ++j) {
219b77f2eeeSJacob Faibussowitsch       dots[j] *= -1.0;
220b77f2eeeSJacob Faibussowitsch       ierr = VecAXPY(mode[j], dots[j], mode[i]);CHKERRQ(ierr);
221b50a2c0aSJacob Faibussowitsch     }
222cb1e1211SMatthew G Knepley   }
223b247467aSMatthew G. Knepley   ierr = MatNullSpaceCreate(comm, PETSC_FALSE, mmin, mode, sp);CHKERRQ(ierr);
224b247467aSMatthew G. Knepley   for (i = 0; i < m; ++i) {ierr = VecDestroy(&mode[i]);CHKERRQ(ierr);}
22556cf3b9cSMatthew G. Knepley   ierr = PetscFree(func);CHKERRQ(ierr);
226cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
227cb1e1211SMatthew G Knepley }
228cb1e1211SMatthew G Knepley 
229cc4e42d9SMartin Diehl /*@
23012adca46SMatthew G. Knepley   DMPlexCreateRigidBodies - For the default global section, create rigid body modes by function space interpolation
23112adca46SMatthew G. Knepley 
232d083f849SBarry Smith   Collective on dm
23312adca46SMatthew G. Knepley 
23412adca46SMatthew G. Knepley   Input Arguments:
23512adca46SMatthew G. Knepley + dm    - the DM
23612adca46SMatthew G. Knepley . nb    - The number of bodies
23712adca46SMatthew G. Knepley . label - The DMLabel marking each domain
23812adca46SMatthew G. Knepley . nids  - The number of ids per body
23912adca46SMatthew G. Knepley - ids   - An array of the label ids in sequence for each domain
24012adca46SMatthew G. Knepley 
24112adca46SMatthew G. Knepley   Output Argument:
24212adca46SMatthew G. Knepley . sp - the null space
24312adca46SMatthew G. Knepley 
24412adca46SMatthew G. Knepley   Note: This is necessary to provide a suitable coarse space for algebraic multigrid
24512adca46SMatthew G. Knepley 
24612adca46SMatthew G. Knepley   Level: advanced
24712adca46SMatthew G. Knepley 
24812adca46SMatthew G. Knepley .seealso: MatNullSpaceCreate()
24912adca46SMatthew G. Knepley @*/
25012adca46SMatthew G. Knepley PetscErrorCode DMPlexCreateRigidBodies(DM dm, PetscInt nb, DMLabel label, const PetscInt nids[], const PetscInt ids[], MatNullSpace *sp)
25112adca46SMatthew G. Knepley {
25212adca46SMatthew G. Knepley   MPI_Comm       comm;
25312adca46SMatthew G. Knepley   PetscSection   section, globalSection;
25412adca46SMatthew G. Knepley   Vec           *mode;
25512adca46SMatthew G. Knepley   PetscScalar   *dots;
25612adca46SMatthew G. Knepley   PetscInt       dim, dimEmbed, n, m, b, d, i, j, off;
25712adca46SMatthew G. Knepley   PetscErrorCode ierr;
25812adca46SMatthew G. Knepley 
25912adca46SMatthew G. Knepley   PetscFunctionBegin;
26012adca46SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
26112adca46SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
26212adca46SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dimEmbed);CHKERRQ(ierr);
26392fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
264e87a4003SBarry Smith   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
26512adca46SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(globalSection, &n);CHKERRQ(ierr);
26612adca46SMatthew G. Knepley   m    = nb * (dim*(dim+1))/2;
26712adca46SMatthew G. Knepley   ierr = PetscMalloc2(m, &mode, m, &dots);CHKERRQ(ierr);
26812adca46SMatthew G. Knepley   ierr = VecCreate(comm, &mode[0]);CHKERRQ(ierr);
26912adca46SMatthew G. Knepley   ierr = VecSetSizes(mode[0], n, PETSC_DETERMINE);CHKERRQ(ierr);
27012adca46SMatthew G. Knepley   ierr = VecSetUp(mode[0]);CHKERRQ(ierr);
27112adca46SMatthew G. Knepley   for (i = 1; i < m; ++i) {ierr = VecDuplicate(mode[0], &mode[i]);CHKERRQ(ierr);}
27212adca46SMatthew G. Knepley   for (b = 0, off = 0; b < nb; ++b) {
27312adca46SMatthew G. Knepley     for (d = 0; d < m/nb; ++d) {
27412adca46SMatthew G. Knepley       PetscInt         ctx[2];
27512adca46SMatthew G. Knepley       PetscErrorCode (*func)(PetscInt, PetscReal, const PetscReal *, PetscInt, PetscScalar *, void *) = DMPlexProjectRigidBody_Private;
27612adca46SMatthew G. Knepley       void            *voidctx = (void *) (&ctx[0]);
27712adca46SMatthew G. Knepley 
27812adca46SMatthew G. Knepley       ctx[0] = dimEmbed;
27912adca46SMatthew G. Knepley       ctx[1] = d;
28012adca46SMatthew G. Knepley       ierr = DMProjectFunctionLabel(dm, 0.0, label, nids[b], &ids[off], 0, NULL, &func, &voidctx, INSERT_VALUES, mode[d]);CHKERRQ(ierr);
28112adca46SMatthew G. Knepley       off   += nids[b];
28212adca46SMatthew G. Knepley     }
28312adca46SMatthew G. Knepley   }
2843b2202bfSJacob Faibussowitsch   /* Orthonormalize system */
285606c1a1cSJacob Faibussowitsch   for (i = 0; i < m; ++i) {
286b77f2eeeSJacob Faibussowitsch     PetscScalar dots[6];
2875a0e29b9SJacob Faibussowitsch 
2889019a6d7SJacob Faibussowitsch     ierr = VecNormalize(mode[i], NULL);CHKERRQ(ierr);
289b77f2eeeSJacob Faibussowitsch     ierr = VecMDot(mode[i], m-i-1, mode+i+1, dots+i+1);CHKERRQ(ierr);
2905a0e29b9SJacob Faibussowitsch     for (j = i+1; j < m; ++j) {
291b77f2eeeSJacob Faibussowitsch       dots[j] *= -1.0;
292b77f2eeeSJacob Faibussowitsch       ierr = VecAXPY(mode[j], dots[j], mode[i]);CHKERRQ(ierr);
2935a0e29b9SJacob Faibussowitsch     }
29412adca46SMatthew G. Knepley   }
29512adca46SMatthew G. Knepley   ierr = MatNullSpaceCreate(comm, PETSC_FALSE, m, mode, sp);CHKERRQ(ierr);
29612adca46SMatthew G. Knepley   for (i = 0; i< m; ++i) {ierr = VecDestroy(&mode[i]);CHKERRQ(ierr);}
29712adca46SMatthew G. Knepley   ierr = PetscFree2(mode, dots);CHKERRQ(ierr);
29812adca46SMatthew G. Knepley   PetscFunctionReturn(0);
29912adca46SMatthew G. Knepley }
30012adca46SMatthew G. Knepley 
301b29cfa1cSToby Isaac /*@
302b29cfa1cSToby Isaac   DMPlexSetMaxProjectionHeight - In DMPlexProjectXXXLocal() functions, the projected values of a basis function's dofs
303b29cfa1cSToby Isaac   are computed by associating the basis function with one of the mesh points in its transitively-closed support, and
304b29cfa1cSToby Isaac   evaluating the dual space basis of that point.  A basis function is associated with the point in its
305b29cfa1cSToby Isaac   transitively-closed support whose mesh height is highest (w.r.t. DAG height), but not greater than the maximum
306b29cfa1cSToby Isaac   projection height, which is set with this function.  By default, the maximum projection height is zero, which means
307b29cfa1cSToby Isaac   that only mesh cells are used to project basis functions.  A height of one, for example, evaluates a cell-interior
308b29cfa1cSToby Isaac   basis functions using its cells dual space basis, but all other basis functions with the dual space basis of a face.
309b29cfa1cSToby Isaac 
310b29cfa1cSToby Isaac   Input Parameters:
311b29cfa1cSToby Isaac + dm - the DMPlex object
312b29cfa1cSToby Isaac - height - the maximum projection height >= 0
313b29cfa1cSToby Isaac 
314b29cfa1cSToby Isaac   Level: advanced
315b29cfa1cSToby Isaac 
3164d6f44ffSToby Isaac .seealso: DMPlexGetMaxProjectionHeight(), DMProjectFunctionLocal(), DMProjectFunctionLabelLocal()
317b29cfa1cSToby Isaac @*/
318b29cfa1cSToby Isaac PetscErrorCode DMPlexSetMaxProjectionHeight(DM dm, PetscInt height)
319b29cfa1cSToby Isaac {
320b29cfa1cSToby Isaac   DM_Plex *plex = (DM_Plex *) dm->data;
321b29cfa1cSToby Isaac 
322b29cfa1cSToby Isaac   PetscFunctionBegin;
323b29cfa1cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
324b29cfa1cSToby Isaac   plex->maxProjectionHeight = height;
325b29cfa1cSToby Isaac   PetscFunctionReturn(0);
326b29cfa1cSToby Isaac }
327b29cfa1cSToby Isaac 
328b29cfa1cSToby Isaac /*@
329b29cfa1cSToby Isaac   DMPlexGetMaxProjectionHeight - Get the maximum height (w.r.t. DAG) of mesh points used to evaluate dual bases in
330b29cfa1cSToby Isaac   DMPlexProjectXXXLocal() functions.
331b29cfa1cSToby Isaac 
332b29cfa1cSToby Isaac   Input Parameters:
333b29cfa1cSToby Isaac . dm - the DMPlex object
334b29cfa1cSToby Isaac 
335b29cfa1cSToby Isaac   Output Parameters:
336b29cfa1cSToby Isaac . height - the maximum projection height
337b29cfa1cSToby Isaac 
338b29cfa1cSToby Isaac   Level: intermediate
339b29cfa1cSToby Isaac 
3404d6f44ffSToby Isaac .seealso: DMPlexSetMaxProjectionHeight(), DMProjectFunctionLocal(), DMProjectFunctionLabelLocal()
341b29cfa1cSToby Isaac @*/
342b29cfa1cSToby Isaac PetscErrorCode DMPlexGetMaxProjectionHeight(DM dm, PetscInt *height)
343b29cfa1cSToby Isaac {
344b29cfa1cSToby Isaac   DM_Plex *plex = (DM_Plex *) dm->data;
345b29cfa1cSToby Isaac 
346b29cfa1cSToby Isaac   PetscFunctionBegin;
347b29cfa1cSToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
348b29cfa1cSToby Isaac   *height = plex->maxProjectionHeight;
349b29cfa1cSToby Isaac   PetscFunctionReturn(0);
350b29cfa1cSToby Isaac }
351b29cfa1cSToby Isaac 
352ca3d3a14SMatthew G. Knepley typedef struct {
353ca3d3a14SMatthew G. Knepley   PetscReal    alpha; /* The first Euler angle, and in 2D the only one */
354ca3d3a14SMatthew G. Knepley   PetscReal    beta;  /* The second Euler angle */
355ca3d3a14SMatthew G. Knepley   PetscReal    gamma; /* The third Euler angle */
356ca3d3a14SMatthew G. Knepley   PetscInt     dim;   /* The dimension of R */
357ca3d3a14SMatthew G. Knepley   PetscScalar *R;     /* The rotation matrix, transforming a vector in the local basis to the global basis */
358ca3d3a14SMatthew G. Knepley   PetscScalar *RT;    /* The transposed rotation matrix, transforming a vector in the global basis to the local basis */
359ca3d3a14SMatthew G. Knepley } RotCtx;
360ca3d3a14SMatthew G. Knepley 
361ca3d3a14SMatthew G. Knepley /*
362ca3d3a14SMatthew G. Knepley   Note: Following https://en.wikipedia.org/wiki/Euler_angles, we will specify Euler angles by extrinsic rotations, meaning that
363ca3d3a14SMatthew G. Knepley   we rotate with respect to a fixed initial coordinate system, the local basis (x-y-z). The global basis (X-Y-Z) is reached as follows:
364ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates about the z axis by alpha. The X axis is now at angle alpha with respect to the x axis.
365ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates again about the x axis by beta. The Z axis is now at angle beta with respect to the z axis.
366ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates a third time about the z axis by gamma.
367ca3d3a14SMatthew G. Knepley */
368ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransformSetUp_Rotation_Internal(DM dm, void *ctx)
369ca3d3a14SMatthew G. Knepley {
370ca3d3a14SMatthew G. Knepley   RotCtx        *rc  = (RotCtx *) ctx;
371ca3d3a14SMatthew G. Knepley   PetscInt       dim = rc->dim;
372ca3d3a14SMatthew G. Knepley   PetscReal      c1, s1, c2, s2, c3, s3;
373ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
374ca3d3a14SMatthew G. Knepley 
375ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
376ca3d3a14SMatthew G. Knepley   ierr = PetscMalloc2(PetscSqr(dim), &rc->R, PetscSqr(dim), &rc->RT);CHKERRQ(ierr);
377ca3d3a14SMatthew G. Knepley   switch (dim) {
378ca3d3a14SMatthew G. Knepley   case 2:
379ca3d3a14SMatthew G. Knepley     c1 = PetscCosReal(rc->alpha);s1 = PetscSinReal(rc->alpha);
380ca3d3a14SMatthew G. Knepley     rc->R[0] =  c1;rc->R[1] = s1;
381ca3d3a14SMatthew G. Knepley     rc->R[2] = -s1;rc->R[3] = c1;
382580bdb30SBarry Smith     ierr = PetscArraycpy(rc->RT, rc->R, PetscSqr(dim));CHKERRQ(ierr);
383b458e8f1SJose E. Roman     DMPlex_Transpose2D_Internal(rc->RT);
384ca3d3a14SMatthew G. Knepley     break;
385ca3d3a14SMatthew G. Knepley   case 3:
386ca3d3a14SMatthew G. Knepley     c1 = PetscCosReal(rc->alpha);s1 = PetscSinReal(rc->alpha);
387ca3d3a14SMatthew G. Knepley     c2 = PetscCosReal(rc->beta); s2 = PetscSinReal(rc->beta);
388ca3d3a14SMatthew G. Knepley     c3 = PetscCosReal(rc->gamma);s3 = PetscSinReal(rc->gamma);
389ca3d3a14SMatthew G. Knepley     rc->R[0] =  c1*c3 - c2*s1*s3;rc->R[1] =  c3*s1    + c1*c2*s3;rc->R[2] = s2*s3;
390ca3d3a14SMatthew G. Knepley     rc->R[3] = -c1*s3 - c2*c3*s1;rc->R[4] =  c1*c2*c3 - s1*s3;   rc->R[5] = c3*s2;
391ca3d3a14SMatthew G. Knepley     rc->R[6] =  s1*s2;           rc->R[7] = -c1*s2;              rc->R[8] = c2;
392580bdb30SBarry Smith     ierr = PetscArraycpy(rc->RT, rc->R, PetscSqr(dim));CHKERRQ(ierr);
393b458e8f1SJose E. Roman     DMPlex_Transpose3D_Internal(rc->RT);
394ca3d3a14SMatthew G. Knepley     break;
395ca3d3a14SMatthew G. Knepley   default: SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Dimension %D not supported", dim);
396ca3d3a14SMatthew G. Knepley   }
397ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
398ca3d3a14SMatthew G. Knepley }
399ca3d3a14SMatthew G. Knepley 
400ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransformDestroy_Rotation_Internal(DM dm, void *ctx)
401ca3d3a14SMatthew G. Knepley {
402ca3d3a14SMatthew G. Knepley   RotCtx        *rc = (RotCtx *) ctx;
403ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
404ca3d3a14SMatthew G. Knepley 
405ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
406ca3d3a14SMatthew G. Knepley   ierr = PetscFree2(rc->R, rc->RT);CHKERRQ(ierr);
407ca3d3a14SMatthew G. Knepley   ierr = PetscFree(rc);CHKERRQ(ierr);
408ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
409ca3d3a14SMatthew G. Knepley }
410ca3d3a14SMatthew G. Knepley 
411ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransformGetMatrix_Rotation_Internal(DM dm, const PetscReal x[], PetscBool l2g, const PetscScalar **A, void *ctx)
412ca3d3a14SMatthew G. Knepley {
413ca3d3a14SMatthew G. Knepley   RotCtx *rc = (RotCtx *) ctx;
414ca3d3a14SMatthew G. Knepley 
415ca3d3a14SMatthew G. Knepley   PetscFunctionBeginHot;
416ca3d3a14SMatthew G. Knepley   PetscValidPointer(ctx, 5);
417ca3d3a14SMatthew G. Knepley   if (l2g) {*A = rc->R;}
418ca3d3a14SMatthew G. Knepley   else     {*A = rc->RT;}
419ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
420ca3d3a14SMatthew G. Knepley }
421ca3d3a14SMatthew G. Knepley 
422ab6a9622SMatthew G. Knepley PetscErrorCode DMPlexBasisTransformApplyReal_Internal(DM dm, const PetscReal x[], PetscBool l2g, PetscInt dim, const PetscReal *y, PetscReal *z, void *ctx)
423ab6a9622SMatthew G. Knepley {
424ec277c0fSMatthew G. Knepley   PetscErrorCode ierr;
425ec277c0fSMatthew G. Knepley 
426ec277c0fSMatthew G. Knepley   PetscFunctionBegin;
427ab6a9622SMatthew G. Knepley   #if defined(PETSC_USE_COMPLEX)
428ab6a9622SMatthew G. Knepley   switch (dim) {
429ab6a9622SMatthew G. Knepley     case 2:
430ab6a9622SMatthew G. Knepley     {
43142e9364cSSatish Balay       PetscScalar yt[2], zt[2] = {0.0,0.0};
432ab6a9622SMatthew G. Knepley 
433ab6a9622SMatthew G. Knepley       yt[0] = y[0]; yt[1] = y[1];
434ec277c0fSMatthew G. Knepley       ierr = DMPlexBasisTransformApply_Internal(dm, x, l2g, dim, yt, zt, ctx);CHKERRQ(ierr);
435ab6a9622SMatthew G. Knepley       z[0] = PetscRealPart(zt[0]); z[1] = PetscRealPart(zt[1]);
436ab6a9622SMatthew G. Knepley     }
4379b4815dcSMatthew G. Knepley     break;
438ab6a9622SMatthew G. Knepley     case 3:
439ab6a9622SMatthew G. Knepley     {
44042e9364cSSatish Balay       PetscScalar yt[3], zt[3] = {0.0,0.0,0.0};
441ab6a9622SMatthew G. Knepley 
442ab6a9622SMatthew G. Knepley       yt[0] = y[0]; yt[1] = y[1]; yt[2] = y[2];
443ec277c0fSMatthew G. Knepley       ierr = DMPlexBasisTransformApply_Internal(dm, x, l2g, dim, yt, zt, ctx);CHKERRQ(ierr);
444ab6a9622SMatthew G. Knepley       z[0] = PetscRealPart(zt[0]); z[1] = PetscRealPart(zt[1]); z[2] = PetscRealPart(zt[2]);
445ab6a9622SMatthew G. Knepley     }
4469b4815dcSMatthew G. Knepley     break;
447ab6a9622SMatthew G. Knepley   }
448ab6a9622SMatthew G. Knepley   #else
449ab6a9622SMatthew G. Knepley   ierr = DMPlexBasisTransformApply_Internal(dm, x, l2g, dim, y, z, ctx);CHKERRQ(ierr);
450ab6a9622SMatthew G. Knepley   #endif
451ec277c0fSMatthew G. Knepley   PetscFunctionReturn(0);
452ab6a9622SMatthew G. Knepley }
453ab6a9622SMatthew G. Knepley 
454ec277c0fSMatthew G. Knepley PetscErrorCode DMPlexBasisTransformApply_Internal(DM dm, const PetscReal x[], PetscBool l2g, PetscInt dim, const PetscScalar *y, PetscScalar *z, void *ctx)
455ca3d3a14SMatthew G. Knepley {
456ca3d3a14SMatthew G. Knepley   const PetscScalar *A;
457ca3d3a14SMatthew G. Knepley   PetscErrorCode     ierr;
458ca3d3a14SMatthew G. Knepley 
459ca3d3a14SMatthew G. Knepley   PetscFunctionBeginHot;
460ca3d3a14SMatthew G. Knepley   ierr = (*dm->transformGetMatrix)(dm, x, l2g, &A, ctx);CHKERRQ(ierr);
461ca3d3a14SMatthew G. Knepley   switch (dim) {
4621fba962aSMatthew G. Knepley   case 2: DMPlex_Mult2D_Internal(A, 1, y, z);break;
4631fba962aSMatthew G. Knepley   case 3: DMPlex_Mult3D_Internal(A, 1, y, z);break;
464ca3d3a14SMatthew G. Knepley   }
465ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
466ca3d3a14SMatthew G. Knepley }
467ca3d3a14SMatthew G. Knepley 
468ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransformField_Internal(DM dm, DM tdm, Vec tv, PetscInt p, PetscInt f, PetscBool l2g, PetscScalar *a)
469ca3d3a14SMatthew G. Knepley {
470ca3d3a14SMatthew G. Knepley   PetscSection       ts;
471ca3d3a14SMatthew G. Knepley   const PetscScalar *ta, *tva;
472ca3d3a14SMatthew G. Knepley   PetscInt           dof;
473ca3d3a14SMatthew G. Knepley   PetscErrorCode     ierr;
474ca3d3a14SMatthew G. Knepley 
475ca3d3a14SMatthew G. Knepley   PetscFunctionBeginHot;
47692fd8e1eSJed Brown   ierr = DMGetLocalSection(tdm, &ts);CHKERRQ(ierr);
477ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(ts, p, f, &dof);CHKERRQ(ierr);
478ca3d3a14SMatthew G. Knepley   ierr = VecGetArrayRead(tv, &ta);CHKERRQ(ierr);
479ca3d3a14SMatthew G. Knepley   ierr = DMPlexPointLocalFieldRead(tdm, p, f, ta, (void *) &tva);CHKERRQ(ierr);
480ca3d3a14SMatthew G. Knepley   if (l2g) {
481ca3d3a14SMatthew G. Knepley     switch (dof) {
4821fba962aSMatthew G. Knepley     case 4: DMPlex_Mult2D_Internal(tva, 1, a, a);break;
4831fba962aSMatthew G. Knepley     case 9: DMPlex_Mult3D_Internal(tva, 1, a, a);break;
484ca3d3a14SMatthew G. Knepley     }
485ca3d3a14SMatthew G. Knepley   } else {
486ca3d3a14SMatthew G. Knepley     switch (dof) {
4871fba962aSMatthew G. Knepley     case 4: DMPlex_MultTranspose2D_Internal(tva, 1, a, a);break;
4881fba962aSMatthew G. Knepley     case 9: DMPlex_MultTranspose3D_Internal(tva, 1, a, a);break;
489ca3d3a14SMatthew G. Knepley     }
490ca3d3a14SMatthew G. Knepley   }
491ca3d3a14SMatthew G. Knepley   ierr = VecRestoreArrayRead(tv, &ta);CHKERRQ(ierr);
492ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
493ca3d3a14SMatthew G. Knepley }
494ca3d3a14SMatthew G. Knepley 
495ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransformFieldTensor_Internal(DM dm, DM tdm, Vec tv, PetscInt pf, PetscInt f, PetscInt pg, PetscInt g, PetscBool l2g, PetscInt lda, PetscScalar *a)
496ca3d3a14SMatthew G. Knepley {
497ca3d3a14SMatthew G. Knepley   PetscSection       s, ts;
498ca3d3a14SMatthew G. Knepley   const PetscScalar *ta, *tvaf, *tvag;
499ca3d3a14SMatthew G. Knepley   PetscInt           fdof, gdof, fpdof, gpdof;
500ca3d3a14SMatthew G. Knepley   PetscErrorCode     ierr;
501ca3d3a14SMatthew G. Knepley 
502ca3d3a14SMatthew G. Knepley   PetscFunctionBeginHot;
50392fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr);
50492fd8e1eSJed Brown   ierr = DMGetLocalSection(tdm, &ts);CHKERRQ(ierr);
505ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(s, pf, f, &fpdof);CHKERRQ(ierr);
506ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(s, pg, g, &gpdof);CHKERRQ(ierr);
507ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(ts, pf, f, &fdof);CHKERRQ(ierr);
508ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetFieldDof(ts, pg, g, &gdof);CHKERRQ(ierr);
509ca3d3a14SMatthew G. Knepley   ierr = VecGetArrayRead(tv, &ta);CHKERRQ(ierr);
510ca3d3a14SMatthew G. Knepley   ierr = DMPlexPointLocalFieldRead(tdm, pf, f, ta, (void *) &tvaf);CHKERRQ(ierr);
511ca3d3a14SMatthew G. Knepley   ierr = DMPlexPointLocalFieldRead(tdm, pg, g, ta, (void *) &tvag);CHKERRQ(ierr);
512ca3d3a14SMatthew G. Knepley   if (l2g) {
513ca3d3a14SMatthew G. Knepley     switch (fdof) {
514ca3d3a14SMatthew G. Knepley     case 4: DMPlex_MatMult2D_Internal(tvaf, gpdof, lda, a, a);break;
515ca3d3a14SMatthew G. Knepley     case 9: DMPlex_MatMult3D_Internal(tvaf, gpdof, lda, a, a);break;
516ca3d3a14SMatthew G. Knepley     }
517ca3d3a14SMatthew G. Knepley     switch (gdof) {
518ca3d3a14SMatthew G. Knepley     case 4: DMPlex_MatMultTransposeLeft2D_Internal(tvag, fpdof, lda, a, a);break;
519ca3d3a14SMatthew G. Knepley     case 9: DMPlex_MatMultTransposeLeft3D_Internal(tvag, fpdof, lda, a, a);break;
520ca3d3a14SMatthew G. Knepley     }
521ca3d3a14SMatthew G. Knepley   } else {
522ca3d3a14SMatthew G. Knepley     switch (fdof) {
523ca3d3a14SMatthew G. Knepley     case 4: DMPlex_MatMultTranspose2D_Internal(tvaf, gpdof, lda, a, a);break;
524ca3d3a14SMatthew G. Knepley     case 9: DMPlex_MatMultTranspose3D_Internal(tvaf, gpdof, lda, a, a);break;
525ca3d3a14SMatthew G. Knepley     }
526ca3d3a14SMatthew G. Knepley     switch (gdof) {
527ca3d3a14SMatthew G. Knepley     case 4: DMPlex_MatMultLeft2D_Internal(tvag, fpdof, lda, a, a);break;
528ca3d3a14SMatthew G. Knepley     case 9: DMPlex_MatMultLeft3D_Internal(tvag, fpdof, lda, a, a);break;
529ca3d3a14SMatthew G. Knepley     }
530ca3d3a14SMatthew G. Knepley   }
531ca3d3a14SMatthew G. Knepley   ierr = VecRestoreArrayRead(tv, &ta);CHKERRQ(ierr);
532ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
533ca3d3a14SMatthew G. Knepley }
534ca3d3a14SMatthew G. Knepley 
535ca3d3a14SMatthew G. Knepley PetscErrorCode DMPlexBasisTransformPoint_Internal(DM dm, DM tdm, Vec tv, PetscInt p, PetscBool fieldActive[], PetscBool l2g, PetscScalar *a)
536ca3d3a14SMatthew G. Knepley {
537ca3d3a14SMatthew G. Knepley   PetscSection    s;
538ca3d3a14SMatthew G. Knepley   PetscSection    clSection;
539ca3d3a14SMatthew G. Knepley   IS              clPoints;
540ca3d3a14SMatthew G. Knepley   const PetscInt *clp;
541ca3d3a14SMatthew G. Knepley   PetscInt       *points = NULL;
542ca3d3a14SMatthew G. Knepley   PetscInt        Nf, f, Np, cp, dof, d = 0;
543ca3d3a14SMatthew G. Knepley   PetscErrorCode  ierr;
544ca3d3a14SMatthew G. Knepley 
545ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
54692fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr);
547ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
548ca3d3a14SMatthew G. Knepley   ierr = DMPlexGetCompressedClosure(dm, s, p, &Np, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
549ca3d3a14SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
550ca3d3a14SMatthew G. Knepley     for (cp = 0; cp < Np*2; cp += 2) {
551ca3d3a14SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(s, points[cp], f, &dof);CHKERRQ(ierr);
552ca3d3a14SMatthew G. Knepley       if (!dof) continue;
553ca3d3a14SMatthew G. Knepley       if (fieldActive[f]) {ierr = DMPlexBasisTransformField_Internal(dm, tdm, tv, points[cp], f, l2g, &a[d]);CHKERRQ(ierr);}
554ca3d3a14SMatthew G. Knepley       d += dof;
555ca3d3a14SMatthew G. Knepley     }
556ca3d3a14SMatthew G. Knepley   }
557ca3d3a14SMatthew G. Knepley   ierr = DMPlexRestoreCompressedClosure(dm, s, p, &Np, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
558ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
559ca3d3a14SMatthew G. Knepley }
560ca3d3a14SMatthew G. Knepley 
561ca3d3a14SMatthew G. Knepley PetscErrorCode DMPlexBasisTransformPointTensor_Internal(DM dm, DM tdm, Vec tv, PetscInt p, PetscBool l2g, PetscInt lda, PetscScalar *a)
562ca3d3a14SMatthew G. Knepley {
563ca3d3a14SMatthew G. Knepley   PetscSection    s;
564ca3d3a14SMatthew G. Knepley   PetscSection    clSection;
565ca3d3a14SMatthew G. Knepley   IS              clPoints;
566ca3d3a14SMatthew G. Knepley   const PetscInt *clp;
567ca3d3a14SMatthew G. Knepley   PetscInt       *points = NULL;
5688bdb3c71SMatthew G. Knepley   PetscInt        Nf, f, g, Np, cpf, cpg, fdof, gdof, r, c = 0;
569ca3d3a14SMatthew G. Knepley   PetscErrorCode  ierr;
570ca3d3a14SMatthew G. Knepley 
571ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
57292fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr);
573ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
574ca3d3a14SMatthew G. Knepley   ierr = DMPlexGetCompressedClosure(dm, s, p, &Np, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
575ca3d3a14SMatthew G. Knepley   for (f = 0, r = 0; f < Nf; ++f) {
576ca3d3a14SMatthew G. Knepley     for (cpf = 0; cpf < Np*2; cpf += 2) {
577ca3d3a14SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(s, points[cpf], f, &fdof);CHKERRQ(ierr);
578ca3d3a14SMatthew G. Knepley       for (g = 0, c = 0; g < Nf; ++g) {
579ca3d3a14SMatthew G. Knepley         for (cpg = 0; cpg < Np*2; cpg += 2) {
580ca3d3a14SMatthew G. Knepley           ierr = PetscSectionGetFieldDof(s, points[cpg], g, &gdof);CHKERRQ(ierr);
581ca3d3a14SMatthew G. Knepley           ierr = DMPlexBasisTransformFieldTensor_Internal(dm, tdm, tv, points[cpf], f, points[cpg], g, l2g, lda, &a[r*lda+c]);CHKERRQ(ierr);
582ca3d3a14SMatthew G. Knepley           c += gdof;
583ca3d3a14SMatthew G. Knepley         }
584ca3d3a14SMatthew G. Knepley       }
585ca3d3a14SMatthew G. Knepley       if (c != lda) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid number of columns %D should be %D", c, lda);
586ca3d3a14SMatthew G. Knepley       r += fdof;
587ca3d3a14SMatthew G. Knepley     }
588ca3d3a14SMatthew G. Knepley   }
589ca3d3a14SMatthew G. Knepley   if (r != lda) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid number of rows %D should be %D", c, lda);
590ca3d3a14SMatthew G. Knepley   ierr = DMPlexRestoreCompressedClosure(dm, s, p, &Np, &points, &clSection, &clPoints, &clp);CHKERRQ(ierr);
591ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
592ca3d3a14SMatthew G. Knepley }
593ca3d3a14SMatthew G. Knepley 
594ca3d3a14SMatthew G. Knepley static PetscErrorCode DMPlexBasisTransform_Internal(DM dm, Vec lv, PetscBool l2g)
595ca3d3a14SMatthew G. Knepley {
596ca3d3a14SMatthew G. Knepley   DM                 tdm;
597ca3d3a14SMatthew G. Knepley   Vec                tv;
598ca3d3a14SMatthew G. Knepley   PetscSection       ts, s;
599ca3d3a14SMatthew G. Knepley   const PetscScalar *ta;
600ca3d3a14SMatthew G. Knepley   PetscScalar       *a, *va;
601ca3d3a14SMatthew G. Knepley   PetscInt           pStart, pEnd, p, Nf, f;
602ca3d3a14SMatthew G. Knepley   PetscErrorCode     ierr;
603ca3d3a14SMatthew G. Knepley 
604ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
605ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
606ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
60792fd8e1eSJed Brown   ierr = DMGetLocalSection(tdm, &ts);CHKERRQ(ierr);
60892fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &s);CHKERRQ(ierr);
609ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr);
610ca3d3a14SMatthew G. Knepley   ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
611ca3d3a14SMatthew G. Knepley   ierr = VecGetArray(lv, &a);CHKERRQ(ierr);
612ca3d3a14SMatthew G. Knepley   ierr = VecGetArrayRead(tv, &ta);CHKERRQ(ierr);
613ca3d3a14SMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
614ca3d3a14SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
615ca3d3a14SMatthew G. Knepley       ierr = DMPlexPointLocalFieldRef(dm, p, f, a, (void *) &va);CHKERRQ(ierr);
616ca3d3a14SMatthew G. Knepley       ierr = DMPlexBasisTransformField_Internal(dm, tdm, tv, p, f, l2g, va);CHKERRQ(ierr);
617ca3d3a14SMatthew G. Knepley     }
618ca3d3a14SMatthew G. Knepley   }
619ca3d3a14SMatthew G. Knepley   ierr = VecRestoreArray(lv, &a);CHKERRQ(ierr);
620ca3d3a14SMatthew G. Knepley   ierr = VecRestoreArrayRead(tv, &ta);CHKERRQ(ierr);
621ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
622ca3d3a14SMatthew G. Knepley }
623ca3d3a14SMatthew G. Knepley 
624ca3d3a14SMatthew G. Knepley /*@
625ca3d3a14SMatthew G. Knepley   DMPlexGlobalToLocalBasis - Transform the values in the given local vector from the global basis to the local basis
626ca3d3a14SMatthew G. Knepley 
627ca3d3a14SMatthew G. Knepley   Input Parameters:
628ca3d3a14SMatthew G. Knepley + dm - The DM
629ca3d3a14SMatthew G. Knepley - lv - A local vector with values in the global basis
630ca3d3a14SMatthew G. Knepley 
631ca3d3a14SMatthew G. Knepley   Output Parameters:
632ca3d3a14SMatthew G. Knepley . lv - A local vector with values in the local basis
633ca3d3a14SMatthew G. Knepley 
634c0f8e1fdSMatthew G. Knepley   Note: This method is only intended to be called inside DMGlobalToLocal(). It is unlikely that a user will have a local vector full of coefficients for the global basis unless they are reimplementing GlobalToLocal.
635c0f8e1fdSMatthew G. Knepley 
636ca3d3a14SMatthew G. Knepley   Level: developer
637ca3d3a14SMatthew G. Knepley 
638436bc73aSJed Brown .seealso: DMPlexLocalToGlobalBasis(), DMGetLocalSection(), DMPlexCreateBasisRotation()
639ca3d3a14SMatthew G. Knepley @*/
640ca3d3a14SMatthew G. Knepley PetscErrorCode DMPlexGlobalToLocalBasis(DM dm, Vec lv)
641ca3d3a14SMatthew G. Knepley {
642ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
643ca3d3a14SMatthew G. Knepley 
644ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
645ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
646ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(lv, VEC_CLASSID, 2);
647ca3d3a14SMatthew G. Knepley   ierr = DMPlexBasisTransform_Internal(dm, lv, PETSC_FALSE);CHKERRQ(ierr);
648ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
649ca3d3a14SMatthew G. Knepley }
650ca3d3a14SMatthew G. Knepley 
651ca3d3a14SMatthew G. Knepley /*@
652ca3d3a14SMatthew G. Knepley   DMPlexLocalToGlobalBasis - Transform the values in the given local vector from the local basis to the global basis
653ca3d3a14SMatthew G. Knepley 
654ca3d3a14SMatthew G. Knepley   Input Parameters:
655ca3d3a14SMatthew G. Knepley + dm - The DM
656ca3d3a14SMatthew G. Knepley - lv - A local vector with values in the local basis
657ca3d3a14SMatthew G. Knepley 
658ca3d3a14SMatthew G. Knepley   Output Parameters:
659ca3d3a14SMatthew G. Knepley . lv - A local vector with values in the global basis
660ca3d3a14SMatthew G. Knepley 
661c0f8e1fdSMatthew G. Knepley   Note: This method is only intended to be called inside DMGlobalToLocal(). It is unlikely that a user would want a local vector full of coefficients for the global basis unless they are reimplementing GlobalToLocal.
662c0f8e1fdSMatthew G. Knepley 
663ca3d3a14SMatthew G. Knepley   Level: developer
664ca3d3a14SMatthew G. Knepley 
665436bc73aSJed Brown .seealso: DMPlexGlobalToLocalBasis(), DMGetLocalSection(), DMPlexCreateBasisRotation()
666ca3d3a14SMatthew G. Knepley @*/
667ca3d3a14SMatthew G. Knepley PetscErrorCode DMPlexLocalToGlobalBasis(DM dm, Vec lv)
668ca3d3a14SMatthew G. Knepley {
669ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
670ca3d3a14SMatthew G. Knepley 
671ca3d3a14SMatthew G. Knepley   PetscFunctionBegin;
672ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
673ca3d3a14SMatthew G. Knepley   PetscValidHeaderSpecific(lv, VEC_CLASSID, 2);
674ca3d3a14SMatthew G. Knepley   ierr = DMPlexBasisTransform_Internal(dm, lv, PETSC_TRUE);CHKERRQ(ierr);
675ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
676ca3d3a14SMatthew G. Knepley }
677ca3d3a14SMatthew G. Knepley 
678ca3d3a14SMatthew G. Knepley /*@
679ca3d3a14SMatthew G. Knepley   DMPlexCreateBasisRotation - Create an internal transformation from the global basis, used to specify boundary conditions
680ca3d3a14SMatthew G. Knepley     and global solutions, to a local basis, appropriate for discretization integrals and assembly.
681ca3d3a14SMatthew G. Knepley 
682ca3d3a14SMatthew G. Knepley   Input Parameters:
683ca3d3a14SMatthew G. Knepley + dm    - The DM
684ca3d3a14SMatthew G. Knepley . alpha - The first Euler angle, and in 2D the only one
685ca3d3a14SMatthew G. Knepley . beta  - The second Euler angle
686f0fc11ceSJed Brown - gamma - The third Euler angle
687ca3d3a14SMatthew G. Knepley 
688ca3d3a14SMatthew G. Knepley   Note: Following https://en.wikipedia.org/wiki/Euler_angles, we will specify Euler angles by extrinsic rotations, meaning that
689ca3d3a14SMatthew G. Knepley   we rotate with respect to a fixed initial coordinate system, the local basis (x-y-z). The global basis (X-Y-Z) is reached as follows:
690ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates about the z axis by alpha. The X axis is now at angle alpha with respect to the x axis.
691ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates again about the x axis by beta. The Z axis is now at angle beta with respect to the z axis.
692ca3d3a14SMatthew G. Knepley   $ The XYZ system rotates a third time about the z axis by gamma.
693ca3d3a14SMatthew G. Knepley 
694ca3d3a14SMatthew G. Knepley   Level: developer
695ca3d3a14SMatthew G. Knepley 
696ca3d3a14SMatthew G. Knepley .seealso: DMPlexGlobalToLocalBasis(), DMPlexLocalToGlobalBasis()
697ca3d3a14SMatthew G. Knepley @*/
698ca3d3a14SMatthew G. Knepley PetscErrorCode DMPlexCreateBasisRotation(DM dm, PetscReal alpha, PetscReal beta, PetscReal gamma)
699ca3d3a14SMatthew G. Knepley {
700ca3d3a14SMatthew G. Knepley   RotCtx        *rc;
701ca3d3a14SMatthew G. Knepley   PetscInt       cdim;
702ca3d3a14SMatthew G. Knepley   PetscErrorCode ierr;
703ca3d3a14SMatthew G. Knepley 
704ca3d3a14SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &cdim);CHKERRQ(ierr);
705ca3d3a14SMatthew G. Knepley   ierr = PetscMalloc1(1, &rc);CHKERRQ(ierr);
706ca3d3a14SMatthew G. Knepley   dm->transformCtx       = rc;
707ca3d3a14SMatthew G. Knepley   dm->transformSetUp     = DMPlexBasisTransformSetUp_Rotation_Internal;
708ca3d3a14SMatthew G. Knepley   dm->transformDestroy   = DMPlexBasisTransformDestroy_Rotation_Internal;
709ca3d3a14SMatthew G. Knepley   dm->transformGetMatrix = DMPlexBasisTransformGetMatrix_Rotation_Internal;
710ca3d3a14SMatthew G. Knepley   rc->dim   = cdim;
711ca3d3a14SMatthew G. Knepley   rc->alpha = alpha;
712ca3d3a14SMatthew G. Knepley   rc->beta  = beta;
713ca3d3a14SMatthew G. Knepley   rc->gamma = gamma;
714ca3d3a14SMatthew G. Knepley   ierr = (*dm->transformSetUp)(dm, dm->transformCtx);CHKERRQ(ierr);
715ca3d3a14SMatthew G. Knepley   ierr = DMConstructBasisTransform_Internal(dm);CHKERRQ(ierr);
716ca3d3a14SMatthew G. Knepley   PetscFunctionReturn(0);
717ca3d3a14SMatthew G. Knepley }
718ca3d3a14SMatthew G. Knepley 
719b278463cSMatthew G. Knepley /*@C
720ece3a9fcSMatthew G. Knepley   DMPlexInsertBoundaryValuesEssential - Insert boundary values into a local vector using a function of the coordinates
721b278463cSMatthew G. Knepley 
722b278463cSMatthew G. Knepley   Input Parameters:
723b278463cSMatthew G. Knepley + dm     - The DM, with a PetscDS that matches the problem being constrained
724b278463cSMatthew G. Knepley . time   - The time
725b278463cSMatthew G. Knepley . field  - The field to constrain
7261c531cf8SMatthew G. Knepley . Nc     - The number of constrained field components, or 0 for all components
7271c531cf8SMatthew G. Knepley . comps  - An array of constrained component numbers, or NULL for all components
728b278463cSMatthew G. Knepley . label  - The DMLabel defining constrained points
729b278463cSMatthew G. Knepley . numids - The number of DMLabel ids for constrained points
730b278463cSMatthew G. Knepley . ids    - An array of ids for constrained points
731b278463cSMatthew G. Knepley . func   - A pointwise function giving boundary values
732b278463cSMatthew G. Knepley - ctx    - An optional user context for bcFunc
733b278463cSMatthew G. Knepley 
734b278463cSMatthew G. Knepley   Output Parameter:
735b278463cSMatthew G. Knepley . locX   - A local vector to receives the boundary values
736b278463cSMatthew G. Knepley 
737b278463cSMatthew G. Knepley   Level: developer
738b278463cSMatthew G. Knepley 
739ece3a9fcSMatthew G. Knepley .seealso: DMPlexInsertBoundaryValuesEssentialField(), DMPlexInsertBoundaryValuesEssentialBdField(), DMAddBoundary()
740b278463cSMatthew G. Knepley @*/
7411c531cf8SMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValuesEssential(DM dm, PetscReal time, PetscInt field, PetscInt Nc, const PetscInt comps[], DMLabel label, PetscInt numids, const PetscInt ids[], PetscErrorCode (*func)(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *), void *ctx, Vec locX)
74255f2e967SMatthew G. Knepley {
7430163fd50SMatthew G. Knepley   PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal x[], PetscInt, PetscScalar *u, void *ctx);
74455f2e967SMatthew G. Knepley   void            **ctxs;
745d7ddef95SMatthew G. Knepley   PetscInt          numFields;
746d7ddef95SMatthew G. Knepley   PetscErrorCode    ierr;
747d7ddef95SMatthew G. Knepley 
748d7ddef95SMatthew G. Knepley   PetscFunctionBegin;
749d7ddef95SMatthew G. Knepley   ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
750d7ddef95SMatthew G. Knepley   ierr = PetscCalloc2(numFields,&funcs,numFields,&ctxs);CHKERRQ(ierr);
751d7ddef95SMatthew G. Knepley   funcs[field] = func;
752d7ddef95SMatthew G. Knepley   ctxs[field]  = ctx;
7531c531cf8SMatthew G. Knepley   ierr = DMProjectFunctionLabelLocal(dm, time, label, numids, ids, Nc, comps, funcs, ctxs, INSERT_BC_VALUES, locX);CHKERRQ(ierr);
754d7ddef95SMatthew G. Knepley   ierr = PetscFree2(funcs,ctxs);CHKERRQ(ierr);
755d7ddef95SMatthew G. Knepley   PetscFunctionReturn(0);
756d7ddef95SMatthew G. Knepley }
757d7ddef95SMatthew G. Knepley 
758b278463cSMatthew G. Knepley /*@C
759ece3a9fcSMatthew G. Knepley   DMPlexInsertBoundaryValuesEssentialField - Insert boundary values into a local vector using a function of the coordinates and field data
760b278463cSMatthew G. Knepley 
761b278463cSMatthew G. Knepley   Input Parameters:
762b278463cSMatthew G. Knepley + dm     - The DM, with a PetscDS that matches the problem being constrained
763b278463cSMatthew G. Knepley . time   - The time
764b278463cSMatthew G. Knepley . locU   - A local vector with the input solution values
765b278463cSMatthew G. Knepley . field  - The field to constrain
7661c531cf8SMatthew G. Knepley . Nc     - The number of constrained field components, or 0 for all components
7671c531cf8SMatthew G. Knepley . comps  - An array of constrained component numbers, or NULL for all components
768b278463cSMatthew G. Knepley . label  - The DMLabel defining constrained points
769b278463cSMatthew G. Knepley . numids - The number of DMLabel ids for constrained points
770b278463cSMatthew G. Knepley . ids    - An array of ids for constrained points
771b278463cSMatthew G. Knepley . func   - A pointwise function giving boundary values
772b278463cSMatthew G. Knepley - ctx    - An optional user context for bcFunc
773b278463cSMatthew G. Knepley 
774b278463cSMatthew G. Knepley   Output Parameter:
775b278463cSMatthew G. Knepley . locX   - A local vector to receives the boundary values
776b278463cSMatthew G. Knepley 
777b278463cSMatthew G. Knepley   Level: developer
778b278463cSMatthew G. Knepley 
779ece3a9fcSMatthew G. Knepley .seealso: DMPlexInsertBoundaryValuesEssential(), DMPlexInsertBoundaryValuesEssentialBdField(), DMAddBoundary()
780b278463cSMatthew G. Knepley @*/
7811c531cf8SMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValuesEssentialField(DM dm, PetscReal time, Vec locU, PetscInt field, PetscInt Nc, const PetscInt comps[], DMLabel label, PetscInt numids, const PetscInt ids[],
782c60e475cSMatthew G. Knepley                                                         void (*func)(PetscInt, PetscInt, PetscInt,
783c60e475cSMatthew G. Knepley                                                                      const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
784c60e475cSMatthew G. Knepley                                                                      const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
78597b6e6e8SMatthew G. Knepley                                                                      PetscReal, const PetscReal[], PetscInt, const PetscScalar[],
786b278463cSMatthew G. Knepley                                                                      PetscScalar[]),
787b278463cSMatthew G. Knepley                                                         void *ctx, Vec locX)
788c60e475cSMatthew G. Knepley {
789c60e475cSMatthew G. Knepley   void (**funcs)(PetscInt, PetscInt, PetscInt,
790c60e475cSMatthew G. Knepley                  const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
791c60e475cSMatthew G. Knepley                  const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
79297b6e6e8SMatthew G. Knepley                  PetscReal, const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]);
793c60e475cSMatthew G. Knepley   void            **ctxs;
794c60e475cSMatthew G. Knepley   PetscInt          numFields;
795c60e475cSMatthew G. Knepley   PetscErrorCode    ierr;
796c60e475cSMatthew G. Knepley 
797c60e475cSMatthew G. Knepley   PetscFunctionBegin;
798c60e475cSMatthew G. Knepley   ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
799c60e475cSMatthew G. Knepley   ierr = PetscCalloc2(numFields,&funcs,numFields,&ctxs);CHKERRQ(ierr);
800c60e475cSMatthew G. Knepley   funcs[field] = func;
801c60e475cSMatthew G. Knepley   ctxs[field]  = ctx;
8021c531cf8SMatthew G. Knepley   ierr = DMProjectFieldLabelLocal(dm, time, label, numids, ids, Nc, comps, locU, funcs, INSERT_BC_VALUES, locX);CHKERRQ(ierr);
803c60e475cSMatthew G. Knepley   ierr = PetscFree2(funcs,ctxs);CHKERRQ(ierr);
804c60e475cSMatthew G. Knepley   PetscFunctionReturn(0);
805c60e475cSMatthew G. Knepley }
806c60e475cSMatthew G. Knepley 
807b278463cSMatthew G. Knepley /*@C
808ece3a9fcSMatthew G. Knepley   DMPlexInsertBoundaryValuesEssentialBdField - Insert boundary values into a local vector using a function of the coodinates and boundary field data
809ece3a9fcSMatthew G. Knepley 
810ece3a9fcSMatthew G. Knepley   Collective on dm
811ece3a9fcSMatthew G. Knepley 
812ece3a9fcSMatthew G. Knepley   Input Parameters:
813ece3a9fcSMatthew G. Knepley + dm     - The DM, with a PetscDS that matches the problem being constrained
814ece3a9fcSMatthew G. Knepley . time   - The time
815ece3a9fcSMatthew G. Knepley . locU   - A local vector with the input solution values
816ece3a9fcSMatthew G. Knepley . field  - The field to constrain
817ece3a9fcSMatthew G. Knepley . Nc     - The number of constrained field components, or 0 for all components
818ece3a9fcSMatthew G. Knepley . comps  - An array of constrained component numbers, or NULL for all components
819ece3a9fcSMatthew G. Knepley . label  - The DMLabel defining constrained points
820ece3a9fcSMatthew G. Knepley . numids - The number of DMLabel ids for constrained points
821ece3a9fcSMatthew G. Knepley . ids    - An array of ids for constrained points
822ece3a9fcSMatthew G. Knepley . func   - A pointwise function giving boundary values, the calling sequence is given in DMProjectBdFieldLabelLocal()
823ece3a9fcSMatthew G. Knepley - ctx    - An optional user context for bcFunc
824ece3a9fcSMatthew G. Knepley 
825ece3a9fcSMatthew G. Knepley   Output Parameter:
826ece3a9fcSMatthew G. Knepley . locX   - A local vector to receive the boundary values
827ece3a9fcSMatthew G. Knepley 
828ece3a9fcSMatthew G. Knepley   Level: developer
829ece3a9fcSMatthew G. Knepley 
830ece3a9fcSMatthew G. Knepley .seealso: DMProjectBdFieldLabelLocal(), DMPlexInsertBoundaryValuesEssential(), DMPlexInsertBoundaryValuesEssentialField(), DMAddBoundary()
831ece3a9fcSMatthew G. Knepley @*/
832ece3a9fcSMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValuesEssentialBdField(DM dm, PetscReal time, Vec locU, PetscInt field, PetscInt Nc, const PetscInt comps[], DMLabel label, PetscInt numids, const PetscInt ids[],
833ece3a9fcSMatthew G. Knepley                                                           void (*func)(PetscInt, PetscInt, PetscInt,
834ece3a9fcSMatthew G. Knepley                                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
835ece3a9fcSMatthew G. Knepley                                                                        const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
836ece3a9fcSMatthew G. Knepley                                                                        PetscReal, const PetscReal[], const PetscReal[], PetscInt, const PetscScalar[],
837ece3a9fcSMatthew G. Knepley                                                                        PetscScalar[]),
838ece3a9fcSMatthew G. Knepley                                                           void *ctx, Vec locX)
839ece3a9fcSMatthew G. Knepley {
840ece3a9fcSMatthew G. Knepley   void (**funcs)(PetscInt, PetscInt, PetscInt,
841ece3a9fcSMatthew G. Knepley                  const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
842ece3a9fcSMatthew G. Knepley                  const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
843ece3a9fcSMatthew G. Knepley                  PetscReal, const PetscReal[], const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]);
844ece3a9fcSMatthew G. Knepley   void            **ctxs;
845ece3a9fcSMatthew G. Knepley   PetscInt          numFields;
846ece3a9fcSMatthew G. Knepley   PetscErrorCode    ierr;
847ece3a9fcSMatthew G. Knepley 
848ece3a9fcSMatthew G. Knepley   PetscFunctionBegin;
849ece3a9fcSMatthew G. Knepley   ierr = DMGetNumFields(dm, &numFields);CHKERRQ(ierr);
850ece3a9fcSMatthew G. Knepley   ierr = PetscCalloc2(numFields,&funcs,numFields,&ctxs);CHKERRQ(ierr);
851ece3a9fcSMatthew G. Knepley   funcs[field] = func;
852ece3a9fcSMatthew G. Knepley   ctxs[field]  = ctx;
853ece3a9fcSMatthew G. Knepley   ierr = DMProjectBdFieldLabelLocal(dm, time, label, numids, ids, Nc, comps, locU, funcs, INSERT_BC_VALUES, locX);CHKERRQ(ierr);
854ece3a9fcSMatthew G. Knepley   ierr = PetscFree2(funcs,ctxs);CHKERRQ(ierr);
855ece3a9fcSMatthew G. Knepley   PetscFunctionReturn(0);
856ece3a9fcSMatthew G. Knepley }
857ece3a9fcSMatthew G. Knepley 
858ece3a9fcSMatthew G. Knepley /*@C
859b278463cSMatthew G. Knepley   DMPlexInsertBoundaryValuesRiemann - Insert boundary values into a local vector
860b278463cSMatthew G. Knepley 
861b278463cSMatthew G. Knepley   Input Parameters:
862b278463cSMatthew G. Knepley + dm     - The DM, with a PetscDS that matches the problem being constrained
863b278463cSMatthew G. Knepley . time   - The time
864b278463cSMatthew G. Knepley . faceGeometry - A vector with the FVM face geometry information
865b278463cSMatthew G. Knepley . cellGeometry - A vector with the FVM cell geometry information
866b278463cSMatthew G. Knepley . Grad         - A vector with the FVM cell gradient information
867b278463cSMatthew G. Knepley . field  - The field to constrain
8681c531cf8SMatthew G. Knepley . Nc     - The number of constrained field components, or 0 for all components
8691c531cf8SMatthew G. Knepley . comps  - An array of constrained component numbers, or NULL for all components
870b278463cSMatthew G. Knepley . label  - The DMLabel defining constrained points
871b278463cSMatthew G. Knepley . numids - The number of DMLabel ids for constrained points
872b278463cSMatthew G. Knepley . ids    - An array of ids for constrained points
873b278463cSMatthew G. Knepley . func   - A pointwise function giving boundary values
874b278463cSMatthew G. Knepley - ctx    - An optional user context for bcFunc
875b278463cSMatthew G. Knepley 
876b278463cSMatthew G. Knepley   Output Parameter:
877b278463cSMatthew G. Knepley . locX   - A local vector to receives the boundary values
878b278463cSMatthew G. Knepley 
879b278463cSMatthew G. Knepley   Note: This implementation currently ignores the numcomps/comps argument from DMAddBoundary()
880b278463cSMatthew G. Knepley 
881b278463cSMatthew G. Knepley   Level: developer
882b278463cSMatthew G. Knepley 
883b278463cSMatthew G. Knepley .seealso: DMPlexInsertBoundaryValuesEssential(), DMPlexInsertBoundaryValuesEssentialField(), DMAddBoundary()
884b278463cSMatthew G. Knepley @*/
8851c531cf8SMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValuesRiemann(DM dm, PetscReal time, Vec faceGeometry, Vec cellGeometry, Vec Grad, PetscInt field, PetscInt Nc, const PetscInt comps[], DMLabel label, PetscInt numids, const PetscInt ids[],
886b278463cSMatthew G. Knepley                                                  PetscErrorCode (*func)(PetscReal,const PetscReal*,const PetscReal*,const PetscScalar*,PetscScalar*,void*), void *ctx, Vec locX)
887d7ddef95SMatthew G. Knepley {
88861f58d28SMatthew G. Knepley   PetscDS            prob;
889da97024aSMatthew G. Knepley   PetscSF            sf;
890d7ddef95SMatthew G. Knepley   DM                 dmFace, dmCell, dmGrad;
89120369375SToby Isaac   const PetscScalar *facegeom, *cellgeom = NULL, *grad;
892da97024aSMatthew G. Knepley   const PetscInt    *leaves;
893d7ddef95SMatthew G. Knepley   PetscScalar       *x, *fx;
894520b3818SMatthew G. Knepley   PetscInt           dim, nleaves, loc, fStart, fEnd, pdim, i;
895e735a8a9SMatthew G. Knepley   PetscErrorCode     ierr, ierru = 0;
896d7ddef95SMatthew G. Knepley 
897d7ddef95SMatthew G. Knepley   PetscFunctionBegin;
898da97024aSMatthew G. Knepley   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
899da97024aSMatthew G. Knepley   ierr = PetscSFGetGraph(sf, NULL, &nleaves, &leaves, NULL);CHKERRQ(ierr);
900da97024aSMatthew G. Knepley   nleaves = PetscMax(0, nleaves);
901d7ddef95SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
902d7ddef95SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
90361f58d28SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
904d7ddef95SMatthew G. Knepley   ierr = VecGetDM(faceGeometry, &dmFace);CHKERRQ(ierr);
905d7ddef95SMatthew G. Knepley   ierr = VecGetArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
90620369375SToby Isaac   if (cellGeometry) {
907d7ddef95SMatthew G. Knepley     ierr = VecGetDM(cellGeometry, &dmCell);CHKERRQ(ierr);
908d7ddef95SMatthew G. Knepley     ierr = VecGetArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
90920369375SToby Isaac   }
910d7ddef95SMatthew G. Knepley   if (Grad) {
911c0a6632aSMatthew G. Knepley     PetscFV fv;
912c0a6632aSMatthew G. Knepley 
913c0a6632aSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fv);CHKERRQ(ierr);
914d7ddef95SMatthew G. Knepley     ierr = VecGetDM(Grad, &dmGrad);CHKERRQ(ierr);
915d7ddef95SMatthew G. Knepley     ierr = VecGetArrayRead(Grad, &grad);CHKERRQ(ierr);
916d7ddef95SMatthew G. Knepley     ierr = PetscFVGetNumComponents(fv, &pdim);CHKERRQ(ierr);
91769291d52SBarry Smith     ierr = DMGetWorkArray(dm, pdim, MPIU_SCALAR, &fx);CHKERRQ(ierr);
918d7ddef95SMatthew G. Knepley   }
919d7ddef95SMatthew G. Knepley   ierr = VecGetArray(locX, &x);CHKERRQ(ierr);
920d7ddef95SMatthew G. Knepley   for (i = 0; i < numids; ++i) {
921d7ddef95SMatthew G. Knepley     IS              faceIS;
922d7ddef95SMatthew G. Knepley     const PetscInt *faces;
923d7ddef95SMatthew G. Knepley     PetscInt        numFaces, f;
924d7ddef95SMatthew G. Knepley 
925d7ddef95SMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, ids[i], &faceIS);CHKERRQ(ierr);
926d7ddef95SMatthew G. Knepley     if (!faceIS) continue; /* No points with that id on this process */
927d7ddef95SMatthew G. Knepley     ierr = ISGetLocalSize(faceIS, &numFaces);CHKERRQ(ierr);
928d7ddef95SMatthew G. Knepley     ierr = ISGetIndices(faceIS, &faces);CHKERRQ(ierr);
929d7ddef95SMatthew G. Knepley     for (f = 0; f < numFaces; ++f) {
930d7ddef95SMatthew G. Knepley       const PetscInt         face = faces[f], *cells;
931640bce14SSatish Balay       PetscFVFaceGeom        *fg;
932d7ddef95SMatthew G. Knepley 
933d7ddef95SMatthew G. Knepley       if ((face < fStart) || (face >= fEnd)) continue; /* Refinement adds non-faces to labels */
934da97024aSMatthew G. Knepley       ierr = PetscFindInt(face, nleaves, (PetscInt *) leaves, &loc);CHKERRQ(ierr);
935da97024aSMatthew G. Knepley       if (loc >= 0) continue;
936d7ddef95SMatthew G. Knepley       ierr = DMPlexPointLocalRead(dmFace, face, facegeom, &fg);CHKERRQ(ierr);
937d7ddef95SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, face, &cells);CHKERRQ(ierr);
938d7ddef95SMatthew G. Knepley       if (Grad) {
939640bce14SSatish Balay         PetscFVCellGeom       *cg;
940640bce14SSatish Balay         PetscScalar           *cx, *cgrad;
941d7ddef95SMatthew G. Knepley         PetscScalar           *xG;
942d7ddef95SMatthew G. Knepley         PetscReal              dx[3];
943d7ddef95SMatthew G. Knepley         PetscInt               d;
944d7ddef95SMatthew G. Knepley 
945d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dmCell, cells[0], cellgeom, &cg);CHKERRQ(ierr);
946d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dm, cells[0], x, &cx);CHKERRQ(ierr);
947d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dmGrad, cells[0], grad, &cgrad);CHKERRQ(ierr);
948520b3818SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRef(dm, cells[1], field, x, &xG);CHKERRQ(ierr);
949d7ddef95SMatthew G. Knepley         DMPlex_WaxpyD_Internal(dim, -1, cg->centroid, fg->centroid, dx);
950d7ddef95SMatthew G. Knepley         for (d = 0; d < pdim; ++d) fx[d] = cx[d] + DMPlex_DotD_Internal(dim, &cgrad[d*dim], dx);
951e735a8a9SMatthew G. Knepley         ierru = (*func)(time, fg->centroid, fg->normal, fx, xG, ctx);
952e735a8a9SMatthew G. Knepley         if (ierru) {
953e735a8a9SMatthew G. Knepley           ierr = ISRestoreIndices(faceIS, &faces);CHKERRQ(ierr);
954e735a8a9SMatthew G. Knepley           ierr = ISDestroy(&faceIS);CHKERRQ(ierr);
955e735a8a9SMatthew G. Knepley           goto cleanup;
956e735a8a9SMatthew G. Knepley         }
957d7ddef95SMatthew G. Knepley       } else {
958640bce14SSatish Balay         PetscScalar       *xI;
959d7ddef95SMatthew G. Knepley         PetscScalar       *xG;
960d7ddef95SMatthew G. Knepley 
961d7ddef95SMatthew G. Knepley         ierr = DMPlexPointLocalRead(dm, cells[0], x, &xI);CHKERRQ(ierr);
962520b3818SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRef(dm, cells[1], field, x, &xG);CHKERRQ(ierr);
963e735a8a9SMatthew G. Knepley         ierru = (*func)(time, fg->centroid, fg->normal, xI, xG, ctx);
964e735a8a9SMatthew G. Knepley         if (ierru) {
965e735a8a9SMatthew G. Knepley           ierr = ISRestoreIndices(faceIS, &faces);CHKERRQ(ierr);
966e735a8a9SMatthew G. Knepley           ierr = ISDestroy(&faceIS);CHKERRQ(ierr);
967e735a8a9SMatthew G. Knepley           goto cleanup;
968e735a8a9SMatthew G. Knepley         }
969d7ddef95SMatthew G. Knepley       }
970d7ddef95SMatthew G. Knepley     }
971d7ddef95SMatthew G. Knepley     ierr = ISRestoreIndices(faceIS, &faces);CHKERRQ(ierr);
972d7ddef95SMatthew G. Knepley     ierr = ISDestroy(&faceIS);CHKERRQ(ierr);
973d7ddef95SMatthew G. Knepley   }
974e735a8a9SMatthew G. Knepley   cleanup:
975d7ddef95SMatthew G. Knepley   ierr = VecRestoreArray(locX, &x);CHKERRQ(ierr);
976d7ddef95SMatthew G. Knepley   if (Grad) {
97769291d52SBarry Smith     ierr = DMRestoreWorkArray(dm, pdim, MPIU_SCALAR, &fx);CHKERRQ(ierr);
978d7ddef95SMatthew G. Knepley     ierr = VecRestoreArrayRead(Grad, &grad);CHKERRQ(ierr);
979d7ddef95SMatthew G. Knepley   }
980e735a8a9SMatthew G. Knepley   if (cellGeometry) {ierr = VecRestoreArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);}
981d7ddef95SMatthew G. Knepley   ierr = VecRestoreArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
982e735a8a9SMatthew G. Knepley   CHKERRQ(ierru);
983d7ddef95SMatthew G. Knepley   PetscFunctionReturn(0);
984d7ddef95SMatthew G. Knepley }
985d7ddef95SMatthew G. Knepley 
9860c364540SMatthew G. Knepley static PetscErrorCode zero(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, void *ctx)
9870c364540SMatthew G. Knepley {
9880c364540SMatthew G. Knepley   PetscInt c;
9890c364540SMatthew G. Knepley   for (c = 0; c < Nc; ++c) u[c] = 0.0;
9900c364540SMatthew G. Knepley   return 0;
9910c364540SMatthew G. Knepley }
9920c364540SMatthew G. Knepley 
993f1d73a7aSMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValues_Plex(DM dm, PetscBool insertEssential, Vec locX, PetscReal time, Vec faceGeomFVM, Vec cellGeomFVM, Vec gradFVM)
994d7ddef95SMatthew G. Knepley {
9950c364540SMatthew G. Knepley   PetscObject    isZero;
996e5e52638SMatthew G. Knepley   PetscDS        prob;
997d7ddef95SMatthew G. Knepley   PetscInt       numBd, b;
99855f2e967SMatthew G. Knepley   PetscErrorCode ierr;
99955f2e967SMatthew G. Knepley 
100055f2e967SMatthew G. Knepley   PetscFunctionBegin;
1001e5e52638SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
1002e5e52638SMatthew G. Knepley   ierr = PetscDSGetNumBoundary(prob, &numBd);CHKERRQ(ierr);
10030c364540SMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) locX, "__Vec_bc_zero__", &isZero);CHKERRQ(ierr);
100455f2e967SMatthew G. Knepley   for (b = 0; b < numBd; ++b) {
100545480ffeSMatthew G. Knepley     PetscWeakForm           wf;
1006f971fd6bSMatthew G. Knepley     DMBoundaryConditionType type;
100745480ffeSMatthew G. Knepley     const char             *name;
1008d7ddef95SMatthew G. Knepley     DMLabel                 label;
10091c531cf8SMatthew G. Knepley     PetscInt                field, Nc;
10101c531cf8SMatthew G. Knepley     const PetscInt         *comps;
1011d7ddef95SMatthew G. Knepley     PetscObject             obj;
1012d7ddef95SMatthew G. Knepley     PetscClassId            id;
101345480ffeSMatthew G. Knepley     void                  (*bvfunc)(void);
1014d7ddef95SMatthew G. Knepley     PetscInt                numids;
1015d7ddef95SMatthew G. Knepley     const PetscInt         *ids;
101655f2e967SMatthew G. Knepley     void                   *ctx;
101755f2e967SMatthew G. Knepley 
101845480ffeSMatthew G. Knepley     ierr = PetscDSGetBoundary(prob, b, &wf, &type, &name, &label, &numids, &ids, &field, &Nc, &comps, &bvfunc, NULL, &ctx);CHKERRQ(ierr);
1019f971fd6bSMatthew G. Knepley     if (insertEssential != (type & DM_BC_ESSENTIAL)) continue;
102044a7f3ddSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
1021d7ddef95SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1022d7ddef95SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
1023c60e475cSMatthew G. Knepley       switch (type) {
1024c60e475cSMatthew G. Knepley         /* for FEM, there is no insertion to be done for non-essential boundary conditions */
1025c60e475cSMatthew G. Knepley       case DM_BC_ESSENTIAL:
102645480ffeSMatthew G. Knepley         {
102745480ffeSMatthew G. Knepley           PetscSimplePointFunc func = (PetscSimplePointFunc) bvfunc;
102845480ffeSMatthew G. Knepley 
102945480ffeSMatthew G. Knepley           if (isZero) func = zero;
1030092e5057SToby Isaac           ierr = DMPlexLabelAddCells(dm,label);CHKERRQ(ierr);
103145480ffeSMatthew G. Knepley           ierr = DMPlexInsertBoundaryValuesEssential(dm, time, field, Nc, comps, label, numids, ids, func, ctx, locX);CHKERRQ(ierr);
1032092e5057SToby Isaac           ierr = DMPlexLabelClearCells(dm,label);CHKERRQ(ierr);
103345480ffeSMatthew G. Knepley         }
1034c60e475cSMatthew G. Knepley         break;
1035c60e475cSMatthew G. Knepley       case DM_BC_ESSENTIAL_FIELD:
103645480ffeSMatthew G. Knepley         {
103745480ffeSMatthew G. Knepley           PetscPointFunc func = (PetscPointFunc) bvfunc;
103845480ffeSMatthew G. Knepley 
1039c60e475cSMatthew G. Knepley           ierr = DMPlexLabelAddCells(dm,label);CHKERRQ(ierr);
104045480ffeSMatthew G. Knepley           ierr = DMPlexInsertBoundaryValuesEssentialField(dm, time, locX, field, Nc, comps, label, numids, ids, func, ctx, locX);CHKERRQ(ierr);
1041c60e475cSMatthew G. Knepley           ierr = DMPlexLabelClearCells(dm,label);CHKERRQ(ierr);
104245480ffeSMatthew G. Knepley         }
1043c60e475cSMatthew G. Knepley         break;
1044c60e475cSMatthew G. Knepley       default: break;
1045c60e475cSMatthew G. Knepley       }
1046d7ddef95SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
104745480ffeSMatthew G. Knepley       {
104845480ffeSMatthew G. Knepley         PetscErrorCode (*func)(PetscReal,const PetscReal*,const PetscReal*,const PetscScalar*,PetscScalar*,void*) = (PetscErrorCode (*)(PetscReal,const PetscReal*,const PetscReal*,const PetscScalar*,PetscScalar*,void*)) bvfunc;
104945480ffeSMatthew G. Knepley 
105043ea7facSMatthew G. Knepley         if (!faceGeomFVM) continue;
105145480ffeSMatthew G. Knepley         ierr = DMPlexInsertBoundaryValuesRiemann(dm, time, faceGeomFVM, cellGeomFVM, gradFVM, field, Nc, comps, label, numids, ids, func, ctx, locX);CHKERRQ(ierr);
105245480ffeSMatthew G. Knepley       }
1053ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
105455f2e967SMatthew G. Knepley   }
105555f2e967SMatthew G. Knepley   PetscFunctionReturn(0);
105655f2e967SMatthew G. Knepley }
105755f2e967SMatthew G. Knepley 
105856cf3b9cSMatthew G. Knepley PetscErrorCode DMPlexInsertTimeDerivativeBoundaryValues_Plex(DM dm, PetscBool insertEssential, Vec locX, PetscReal time, Vec faceGeomFVM, Vec cellGeomFVM, Vec gradFVM)
105956cf3b9cSMatthew G. Knepley {
106056cf3b9cSMatthew G. Knepley   PetscObject    isZero;
106156cf3b9cSMatthew G. Knepley   PetscDS        prob;
106256cf3b9cSMatthew G. Knepley   PetscInt       numBd, b;
106356cf3b9cSMatthew G. Knepley   PetscErrorCode ierr;
106456cf3b9cSMatthew G. Knepley 
106556cf3b9cSMatthew G. Knepley   PetscFunctionBegin;
106656cf3b9cSMatthew G. Knepley   if (!locX) PetscFunctionReturn(0);
106756cf3b9cSMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
106856cf3b9cSMatthew G. Knepley   ierr = PetscDSGetNumBoundary(prob, &numBd);CHKERRQ(ierr);
106956cf3b9cSMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) locX, "__Vec_bc_zero__", &isZero);CHKERRQ(ierr);
107056cf3b9cSMatthew G. Knepley   for (b = 0; b < numBd; ++b) {
107145480ffeSMatthew G. Knepley     PetscWeakForm           wf;
107256cf3b9cSMatthew G. Knepley     DMBoundaryConditionType type;
107345480ffeSMatthew G. Knepley     const char             *name;
107456cf3b9cSMatthew G. Knepley     DMLabel                 label;
107556cf3b9cSMatthew G. Knepley     PetscInt                field, Nc;
107656cf3b9cSMatthew G. Knepley     const PetscInt         *comps;
107756cf3b9cSMatthew G. Knepley     PetscObject             obj;
107856cf3b9cSMatthew G. Knepley     PetscClassId            id;
107956cf3b9cSMatthew G. Knepley     PetscInt                numids;
108056cf3b9cSMatthew G. Knepley     const PetscInt         *ids;
108145480ffeSMatthew G. Knepley     void                  (*bvfunc)(void);
108256cf3b9cSMatthew G. Knepley     void                   *ctx;
108356cf3b9cSMatthew G. Knepley 
108445480ffeSMatthew G. Knepley     ierr = PetscDSGetBoundary(prob, b, &wf, &type, &name, &label, &numids, &ids, &field, &Nc, &comps, NULL, &bvfunc, &ctx);CHKERRQ(ierr);
108556cf3b9cSMatthew G. Knepley     if (insertEssential != (type & DM_BC_ESSENTIAL)) continue;
108656cf3b9cSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
108756cf3b9cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
108856cf3b9cSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
108956cf3b9cSMatthew G. Knepley       switch (type) {
109056cf3b9cSMatthew G. Knepley         /* for FEM, there is no insertion to be done for non-essential boundary conditions */
109156cf3b9cSMatthew G. Knepley       case DM_BC_ESSENTIAL:
109245480ffeSMatthew G. Knepley         {
109345480ffeSMatthew G. Knepley           PetscSimplePointFunc func_t = (PetscSimplePointFunc) bvfunc;
109445480ffeSMatthew G. Knepley 
109545480ffeSMatthew G. Knepley           if (isZero) func_t = zero;
109656cf3b9cSMatthew G. Knepley           ierr = DMPlexLabelAddCells(dm,label);CHKERRQ(ierr);
109745480ffeSMatthew G. Knepley           ierr = DMPlexInsertBoundaryValuesEssential(dm, time, field, Nc, comps, label, numids, ids, func_t, ctx, locX);CHKERRQ(ierr);
109856cf3b9cSMatthew G. Knepley           ierr = DMPlexLabelClearCells(dm,label);CHKERRQ(ierr);
109945480ffeSMatthew G. Knepley         }
110056cf3b9cSMatthew G. Knepley         break;
110156cf3b9cSMatthew G. Knepley       case DM_BC_ESSENTIAL_FIELD:
110245480ffeSMatthew G. Knepley         {
110345480ffeSMatthew G. Knepley           PetscPointFunc func_t = (PetscPointFunc) bvfunc;
110445480ffeSMatthew G. Knepley 
110556cf3b9cSMatthew G. Knepley           ierr = DMPlexLabelAddCells(dm,label);CHKERRQ(ierr);
110645480ffeSMatthew G. Knepley           ierr = DMPlexInsertBoundaryValuesEssentialField(dm, time, locX, field, Nc, comps, label, numids, ids, func_t, ctx, locX);CHKERRQ(ierr);
110756cf3b9cSMatthew G. Knepley           ierr = DMPlexLabelClearCells(dm,label);CHKERRQ(ierr);
110845480ffeSMatthew G. Knepley         }
110956cf3b9cSMatthew G. Knepley         break;
111056cf3b9cSMatthew G. Knepley       default: break;
111156cf3b9cSMatthew G. Knepley       }
111256cf3b9cSMatthew G. Knepley     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
111356cf3b9cSMatthew G. Knepley   }
111456cf3b9cSMatthew G. Knepley   PetscFunctionReturn(0);
111556cf3b9cSMatthew G. Knepley }
111656cf3b9cSMatthew G. Knepley 
1117f1d73a7aSMatthew G. Knepley /*@
1118f1d73a7aSMatthew G. Knepley   DMPlexInsertBoundaryValues - Puts coefficients which represent boundary values into the local solution vector
1119f1d73a7aSMatthew G. Knepley 
1120f1d73a7aSMatthew G. Knepley   Input Parameters:
1121f1d73a7aSMatthew G. Knepley + dm - The DM
1122f1d73a7aSMatthew G. Knepley . insertEssential - Should I insert essential (e.g. Dirichlet) or inessential (e.g. Neumann) boundary conditions
1123f1d73a7aSMatthew G. Knepley . time - The time
1124f1d73a7aSMatthew G. Knepley . faceGeomFVM - Face geometry data for FV discretizations
1125f1d73a7aSMatthew G. Knepley . cellGeomFVM - Cell geometry data for FV discretizations
1126f1d73a7aSMatthew G. Knepley - gradFVM - Gradient reconstruction data for FV discretizations
1127f1d73a7aSMatthew G. Knepley 
1128f1d73a7aSMatthew G. Knepley   Output Parameters:
1129f1d73a7aSMatthew G. Knepley . locX - Solution updated with boundary values
1130f1d73a7aSMatthew G. Knepley 
1131f1d73a7aSMatthew G. Knepley   Level: developer
1132f1d73a7aSMatthew G. Knepley 
1133f1d73a7aSMatthew G. Knepley .seealso: DMProjectFunctionLabelLocal()
1134f1d73a7aSMatthew G. Knepley @*/
1135f1d73a7aSMatthew G. Knepley PetscErrorCode DMPlexInsertBoundaryValues(DM dm, PetscBool insertEssential, Vec locX, PetscReal time, Vec faceGeomFVM, Vec cellGeomFVM, Vec gradFVM)
1136f1d73a7aSMatthew G. Knepley {
1137f1d73a7aSMatthew G. Knepley   PetscErrorCode ierr;
1138f1d73a7aSMatthew G. Knepley 
1139f1d73a7aSMatthew G. Knepley   PetscFunctionBegin;
1140f1d73a7aSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1141064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(locX, VEC_CLASSID, 3);
1142064a246eSJacob Faibussowitsch   if (faceGeomFVM) {PetscValidHeaderSpecific(faceGeomFVM, VEC_CLASSID, 5);}
1143064a246eSJacob Faibussowitsch   if (cellGeomFVM) {PetscValidHeaderSpecific(cellGeomFVM, VEC_CLASSID, 6);}
1144064a246eSJacob Faibussowitsch   if (gradFVM)     {PetscValidHeaderSpecific(gradFVM, VEC_CLASSID, 7);}
1145f1d73a7aSMatthew G. Knepley   ierr = PetscTryMethod(dm,"DMPlexInsertBoundaryValues_C",(DM,PetscBool,Vec,PetscReal,Vec,Vec,Vec),(dm,insertEssential,locX,time,faceGeomFVM,cellGeomFVM,gradFVM));CHKERRQ(ierr);
1146f1d73a7aSMatthew G. Knepley   PetscFunctionReturn(0);
1147f1d73a7aSMatthew G. Knepley }
1148f1d73a7aSMatthew G. Knepley 
114956cf3b9cSMatthew G. Knepley /*@
115056cf3b9cSMatthew G. Knepley   DMPlexInsertTimeDerivativeBoundaryValues - Puts coefficients which represent boundary values of the time derviative into the local solution vector
115156cf3b9cSMatthew G. Knepley 
115256cf3b9cSMatthew G. Knepley   Input Parameters:
115356cf3b9cSMatthew G. Knepley + dm - The DM
115456cf3b9cSMatthew G. Knepley . insertEssential - Should I insert essential (e.g. Dirichlet) or inessential (e.g. Neumann) boundary conditions
115556cf3b9cSMatthew G. Knepley . time - The time
115656cf3b9cSMatthew G. Knepley . faceGeomFVM - Face geometry data for FV discretizations
115756cf3b9cSMatthew G. Knepley . cellGeomFVM - Cell geometry data for FV discretizations
115856cf3b9cSMatthew G. Knepley - gradFVM - Gradient reconstruction data for FV discretizations
115956cf3b9cSMatthew G. Knepley 
116056cf3b9cSMatthew G. Knepley   Output Parameters:
116156cf3b9cSMatthew G. Knepley . locX_t - Solution updated with boundary values
116256cf3b9cSMatthew G. Knepley 
116356cf3b9cSMatthew G. Knepley   Level: developer
116456cf3b9cSMatthew G. Knepley 
116556cf3b9cSMatthew G. Knepley .seealso: DMProjectFunctionLabelLocal()
116656cf3b9cSMatthew G. Knepley @*/
116756cf3b9cSMatthew G. Knepley PetscErrorCode DMPlexInsertTimeDerivativeBoundaryValues(DM dm, PetscBool insertEssential, Vec locX_t, PetscReal time, Vec faceGeomFVM, Vec cellGeomFVM, Vec gradFVM)
116856cf3b9cSMatthew G. Knepley {
116956cf3b9cSMatthew G. Knepley   PetscErrorCode ierr;
117056cf3b9cSMatthew G. Knepley 
117156cf3b9cSMatthew G. Knepley   PetscFunctionBegin;
117256cf3b9cSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1173064a246eSJacob Faibussowitsch   if (locX_t)      {PetscValidHeaderSpecific(locX_t, VEC_CLASSID, 3);}
1174064a246eSJacob Faibussowitsch   if (faceGeomFVM) {PetscValidHeaderSpecific(faceGeomFVM, VEC_CLASSID, 5);}
1175064a246eSJacob Faibussowitsch   if (cellGeomFVM) {PetscValidHeaderSpecific(cellGeomFVM, VEC_CLASSID, 6);}
1176064a246eSJacob Faibussowitsch   if (gradFVM)     {PetscValidHeaderSpecific(gradFVM, VEC_CLASSID, 7);}
117756cf3b9cSMatthew G. Knepley   ierr = PetscTryMethod(dm,"DMPlexInsertTimeDerviativeBoundaryValues_C",(DM,PetscBool,Vec,PetscReal,Vec,Vec,Vec),(dm,insertEssential,locX_t,time,faceGeomFVM,cellGeomFVM,gradFVM));CHKERRQ(ierr);
117856cf3b9cSMatthew G. Knepley   PetscFunctionReturn(0);
117956cf3b9cSMatthew G. Knepley }
118056cf3b9cSMatthew G. Knepley 
11810709b2feSToby Isaac PetscErrorCode DMComputeL2Diff_Plex(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
1182cb1e1211SMatthew G Knepley {
1183574a98acSMatthew G. Knepley   Vec              localX;
1184574a98acSMatthew G. Knepley   PetscErrorCode   ierr;
1185574a98acSMatthew G. Knepley 
1186574a98acSMatthew G. Knepley   PetscFunctionBegin;
1187574a98acSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
11885d42b983SMatthew G. Knepley   ierr = DMPlexInsertBoundaryValues(dm, PETSC_TRUE, localX, time, NULL, NULL, NULL);CHKERRQ(ierr);
1189574a98acSMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1190574a98acSMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1191574a98acSMatthew G. Knepley   ierr = DMPlexComputeL2DiffLocal(dm, time, funcs, ctxs, localX, diff);CHKERRQ(ierr);
1192574a98acSMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1193574a98acSMatthew G. Knepley   PetscFunctionReturn(0);
1194574a98acSMatthew G. Knepley }
1195574a98acSMatthew G. Knepley 
1196574a98acSMatthew G. Knepley /*@C
1197ca3d3a14SMatthew G. Knepley   DMComputeL2DiffLocal - This function computes the L_2 difference between a function u and an FEM interpolant solution u_h.
1198574a98acSMatthew G. Knepley 
1199d083f849SBarry Smith   Collective on dm
1200c0f8e1fdSMatthew G. Knepley 
1201574a98acSMatthew G. Knepley   Input Parameters:
1202574a98acSMatthew G. Knepley + dm     - The DM
1203574a98acSMatthew G. Knepley . time   - The time
1204574a98acSMatthew G. Knepley . funcs  - The functions to evaluate for each field component
1205574a98acSMatthew G. Knepley . ctxs   - Optional array of contexts to pass to each function, or NULL.
1206574a98acSMatthew G. Knepley - localX - The coefficient vector u_h, a local vector
1207574a98acSMatthew G. Knepley 
1208574a98acSMatthew G. Knepley   Output Parameter:
1209574a98acSMatthew G. Knepley . diff - The diff ||u - u_h||_2
1210574a98acSMatthew G. Knepley 
1211574a98acSMatthew G. Knepley   Level: developer
1212574a98acSMatthew G. Knepley 
1213574a98acSMatthew G. Knepley .seealso: DMProjectFunction(), DMComputeL2FieldDiff(), DMComputeL2GradientDiff()
1214574a98acSMatthew G. Knepley @*/
1215574a98acSMatthew G. Knepley PetscErrorCode DMPlexComputeL2DiffLocal(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec localX, PetscReal *diff)
1216574a98acSMatthew G. Knepley {
12170f09c10fSMatthew G. Knepley   const PetscInt   debug = ((DM_Plex*)dm->data)->printL2;
1218ca3d3a14SMatthew G. Knepley   DM               tdm;
1219ca3d3a14SMatthew G. Knepley   Vec              tv;
1220cb1e1211SMatthew G Knepley   PetscSection     section;
1221c5bbbd5bSMatthew G. Knepley   PetscQuadrature  quad;
12224bee2e38SMatthew G. Knepley   PetscFEGeom      fegeom;
122315496722SMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
12244bee2e38SMatthew G. Knepley   PetscReal       *coords, *gcoords;
1225cb1e1211SMatthew G Knepley   PetscReal        localDiff = 0.0;
12267318780aSToby Isaac   const PetscReal *quadWeights;
1227412e9a14SMatthew G. Knepley   PetscInt         dim, coordDim, numFields, numComponents = 0, qNc, Nq, cellHeight, cStart, cEnd, c, field, fieldOffset;
1228ca3d3a14SMatthew G. Knepley   PetscBool        transform;
1229cb1e1211SMatthew G Knepley   PetscErrorCode   ierr;
1230cb1e1211SMatthew G Knepley 
1231cb1e1211SMatthew G Knepley   PetscFunctionBegin;
1232c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
12337318780aSToby Isaac   ierr = DMGetCoordinateDim(dm, &coordDim);CHKERRQ(ierr);
12342a4e142eSMatthew G. Knepley   fegeom.dimEmbed = coordDim;
123592fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
1236cb1e1211SMatthew G Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
1237ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
1238ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
1239ca3d3a14SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
1240cb1e1211SMatthew G Knepley   for (field = 0; field < numFields; ++field) {
124115496722SMatthew G. Knepley     PetscObject  obj;
124215496722SMatthew G. Knepley     PetscClassId id;
1243c5bbbd5bSMatthew G. Knepley     PetscInt     Nc;
1244c5bbbd5bSMatthew G. Knepley 
124544a7f3ddSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
124615496722SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
124715496722SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
124815496722SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
124915496722SMatthew G. Knepley 
12500f2d7e86SMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
12510f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
125215496722SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
125315496722SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
125415496722SMatthew G. Knepley 
125515496722SMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
125615496722SMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
1257ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
1258c5bbbd5bSMatthew G. Knepley     numComponents += Nc;
1259cb1e1211SMatthew G Knepley   }
12609c3cf19fSMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &qNc, &Nq, NULL, &quadWeights);CHKERRQ(ierr);
1261beaa55a6SMatthew G. Knepley   if ((qNc != 1) && (qNc != numComponents)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_SIZ, "Quadrature components %D != %D field components", qNc, numComponents);
12622a4e142eSMatthew G. Knepley   ierr = PetscMalloc6(numComponents,&funcVal,numComponents,&interpolant,coordDim*Nq,&coords,Nq,&fegeom.detJ,coordDim*coordDim*Nq,&fegeom.J,coordDim*coordDim*Nq,&fegeom.invJ);CHKERRQ(ierr);
1263aed3cbd0SMatthew G. Knepley   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
1264412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
1265cb1e1211SMatthew G Knepley   for (c = cStart; c < cEnd; ++c) {
1266a1e44745SMatthew G. Knepley     PetscScalar *x = NULL;
1267cb1e1211SMatthew G Knepley     PetscReal    elemDiff = 0.0;
12689c3cf19fSMatthew G. Knepley     PetscInt     qc = 0;
1269cb1e1211SMatthew G Knepley 
12702a4e142eSMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
1271cb1e1211SMatthew G Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1272cb1e1211SMatthew G Knepley 
127315496722SMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
127415496722SMatthew G. Knepley       PetscObject  obj;
127515496722SMatthew G. Knepley       PetscClassId id;
1276c110b1eeSGeoffrey Irving       void * const ctx = ctxs ? ctxs[field] : NULL;
127715496722SMatthew G. Knepley       PetscInt     Nb, Nc, q, fc;
1278cb1e1211SMatthew G Knepley 
127944a7f3ddSMatthew G. Knepley       ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
128015496722SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
128115496722SMatthew G. Knepley       if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
128215496722SMatthew G. Knepley       else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
1283ff1e0c32SBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
1284cb1e1211SMatthew G Knepley       if (debug) {
1285cb1e1211SMatthew G Knepley         char title[1024];
1286ff1e0c32SBarry Smith         ierr = PetscSNPrintf(title, 1023, "Solution for Field %D", field);CHKERRQ(ierr);
12874c848028SMatthew G. Knepley         ierr = DMPrintCellVector(c, title, Nb, &x[fieldOffset]);CHKERRQ(ierr);
1288cb1e1211SMatthew G Knepley       }
12897318780aSToby Isaac       for (q = 0; q < Nq; ++q) {
12902a4e142eSMatthew G. Knepley         PetscFEGeom qgeom;
12912a4e142eSMatthew G. Knepley 
12922a4e142eSMatthew G. Knepley         qgeom.dimEmbed = fegeom.dimEmbed;
12932a4e142eSMatthew G. Knepley         qgeom.J        = &fegeom.J[q*coordDim*coordDim];
12942a4e142eSMatthew G. Knepley         qgeom.invJ     = &fegeom.invJ[q*coordDim*coordDim];
12952a4e142eSMatthew G. Knepley         qgeom.detJ     = &fegeom.detJ[q];
1296ff1e0c32SBarry Smith         if (fegeom.detJ[q] <= 0.0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %D, point %D", (double)fegeom.detJ[q], c, q);
1297d3a7d86cSMatthew G. Knepley         if (transform) {
1298d3a7d86cSMatthew G. Knepley           gcoords = &coords[coordDim*Nq];
1299d3a7d86cSMatthew G. Knepley           ierr = DMPlexBasisTransformApplyReal_Internal(dm, &coords[coordDim*q], PETSC_TRUE, coordDim, &coords[coordDim*q], gcoords, dm->transformCtx);CHKERRQ(ierr);
1300d3a7d86cSMatthew G. Knepley         } else {
1301d3a7d86cSMatthew G. Knepley           gcoords = &coords[coordDim*q];
1302d3a7d86cSMatthew G. Knepley         }
1303ca3d3a14SMatthew G. Knepley         ierr = (*funcs[field])(coordDim, time, gcoords, Nc, funcVal, ctx);
1304e735a8a9SMatthew G. Knepley         if (ierr) {
1305e735a8a9SMatthew G. Knepley           PetscErrorCode ierr2;
1306e735a8a9SMatthew G. Knepley           ierr2 = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr2);
1307e735a8a9SMatthew G. Knepley           ierr2 = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr2);
13082a4e142eSMatthew G. Knepley           ierr2 = PetscFree6(funcVal,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr2);
1309e735a8a9SMatthew G. Knepley           CHKERRQ(ierr);
1310e735a8a9SMatthew G. Knepley         }
1311ca3d3a14SMatthew G. Knepley         if (transform) {ierr = DMPlexBasisTransformApply_Internal(dm, &coords[coordDim*q], PETSC_FALSE, Nc, funcVal, funcVal, dm->transformCtx);CHKERRQ(ierr);}
13122a4e142eSMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fieldOffset], &qgeom, q, interpolant);CHKERRQ(ierr);}
131315496722SMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
1314ff1e0c32SBarry Smith         else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
131515496722SMatthew G. Knepley         for (fc = 0; fc < Nc; ++fc) {
1316beaa55a6SMatthew G. Knepley           const PetscReal wt = quadWeights[q*qNc+(qNc == 1 ? 0 : qc+fc)];
131780dbbc5dSMatthew G. Knepley           if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    elem %D field %D,%D point %g %g %g diff %g\n", c, field, fc, (double)(coordDim > 0 ? coords[coordDim*q] : 0.), (double)(coordDim > 1 ? coords[coordDim*q+1] : 0.),(double)(coordDim > 2 ? coords[coordDim*q+2] : 0.), (double)(PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q]));CHKERRQ(ierr);}
13184bee2e38SMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q];
1319cb1e1211SMatthew G Knepley         }
1320cb1e1211SMatthew G Knepley       }
13219c3cf19fSMatthew G. Knepley       fieldOffset += Nb;
1322beaa55a6SMatthew G. Knepley       qc += Nc;
1323cb1e1211SMatthew G Knepley     }
1324cb1e1211SMatthew G Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1325ff1e0c32SBarry Smith     if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "  elem %D diff %g\n", c, (double)elemDiff);CHKERRQ(ierr);}
1326cb1e1211SMatthew G Knepley     localDiff += elemDiff;
1327cb1e1211SMatthew G Knepley   }
13282a4e142eSMatthew G. Knepley   ierr  = PetscFree6(funcVal,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr);
1329820f2d46SBarry Smith   ierr  = MPIU_Allreduce(&localDiff, diff, 1, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
1330cb1e1211SMatthew G Knepley   *diff = PetscSqrtReal(*diff);
1331cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
1332cb1e1211SMatthew G Knepley }
1333cb1e1211SMatthew G Knepley 
1334b698f381SToby Isaac PetscErrorCode DMComputeL2GradientDiff_Plex(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, const PetscReal n[], PetscReal *diff)
1335cb1e1211SMatthew G Knepley {
13360f09c10fSMatthew G. Knepley   const PetscInt   debug = ((DM_Plex*)dm->data)->printL2;
1337ca3d3a14SMatthew G. Knepley   DM               tdm;
1338cb1e1211SMatthew G Knepley   PetscSection     section;
133940e14135SMatthew G. Knepley   PetscQuadrature  quad;
1340ca3d3a14SMatthew G. Knepley   Vec              localX, tv;
13419c3cf19fSMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
13422a4e142eSMatthew G. Knepley   const PetscReal *quadWeights;
13434bee2e38SMatthew G. Knepley   PetscFEGeom      fegeom;
13444bee2e38SMatthew G. Knepley   PetscReal       *coords, *gcoords;
134540e14135SMatthew G. Knepley   PetscReal        localDiff = 0.0;
1346485ad865SMatthew G. Knepley   PetscInt         dim, coordDim, qNc = 0, Nq = 0, numFields, numComponents = 0, cStart, cEnd, c, field, fieldOffset;
1347ca3d3a14SMatthew G. Knepley   PetscBool        transform;
1348cb1e1211SMatthew G Knepley   PetscErrorCode   ierr;
1349cb1e1211SMatthew G Knepley 
1350cb1e1211SMatthew G Knepley   PetscFunctionBegin;
1351c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
13527318780aSToby Isaac   ierr = DMGetCoordinateDim(dm, &coordDim);CHKERRQ(ierr);
13534bee2e38SMatthew G. Knepley   fegeom.dimEmbed = coordDim;
135492fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
135540e14135SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
135640e14135SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
135740e14135SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
135840e14135SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1359ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
1360ca3d3a14SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
1361ca3d3a14SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
1362652b88e8SMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
13630f2d7e86SMatthew G. Knepley     PetscFE  fe;
136440e14135SMatthew G. Knepley     PetscInt Nc;
1365652b88e8SMatthew G. Knepley 
136644a7f3ddSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, (PetscObject *) &fe);CHKERRQ(ierr);
13670f2d7e86SMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
13680f2d7e86SMatthew G. Knepley     ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
136940e14135SMatthew G. Knepley     numComponents += Nc;
1370652b88e8SMatthew G. Knepley   }
13712a4e142eSMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &qNc, &Nq, NULL, &quadWeights);CHKERRQ(ierr);
1372beaa55a6SMatthew G. Knepley   if ((qNc != 1) && (qNc != numComponents)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_SIZ, "Quadrature components %D != %D field components", qNc, numComponents);
13734d6f44ffSToby Isaac   /* ierr = DMProjectFunctionLocal(dm, fe, funcs, INSERT_BC_VALUES, localX);CHKERRQ(ierr); */
13744bee2e38SMatthew G. Knepley   ierr = PetscMalloc6(numComponents,&funcVal,coordDim*Nq,&coords,coordDim*coordDim*Nq,&fegeom.J,coordDim*coordDim*Nq,&fegeom.invJ,numComponents*coordDim,&interpolant,Nq,&fegeom.detJ);CHKERRQ(ierr);
1375412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
137640e14135SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
137740e14135SMatthew G. Knepley     PetscScalar *x = NULL;
137840e14135SMatthew G. Knepley     PetscReal    elemDiff = 0.0;
13799c3cf19fSMatthew G. Knepley     PetscInt     qc = 0;
1380652b88e8SMatthew G. Knepley 
13814bee2e38SMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
138240e14135SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
138340e14135SMatthew G. Knepley 
13849c3cf19fSMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
13850f2d7e86SMatthew G. Knepley       PetscFE          fe;
138651259fa3SMatthew G. Knepley       void * const     ctx = ctxs ? ctxs[field] : NULL;
13879c3cf19fSMatthew G. Knepley       PetscInt         Nb, Nc, q, fc;
138840e14135SMatthew G. Knepley 
138944a7f3ddSMatthew G. Knepley       ierr = DMGetField(dm, field, NULL, (PetscObject *) &fe);CHKERRQ(ierr);
13900f2d7e86SMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
13919c3cf19fSMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
139240e14135SMatthew G. Knepley       if (debug) {
139340e14135SMatthew G. Knepley         char title[1024];
1394ff1e0c32SBarry Smith         ierr = PetscSNPrintf(title, 1023, "Solution for Field %D", field);CHKERRQ(ierr);
13959c3cf19fSMatthew G. Knepley         ierr = DMPrintCellVector(c, title, Nb, &x[fieldOffset]);CHKERRQ(ierr);
1396652b88e8SMatthew G. Knepley       }
13979c3cf19fSMatthew G. Knepley       for (q = 0; q < Nq; ++q) {
13982a4e142eSMatthew G. Knepley         PetscFEGeom qgeom;
13992a4e142eSMatthew G. Knepley 
14002a4e142eSMatthew G. Knepley         qgeom.dimEmbed = fegeom.dimEmbed;
14012a4e142eSMatthew G. Knepley         qgeom.J        = &fegeom.J[q*coordDim*coordDim];
14022a4e142eSMatthew G. Knepley         qgeom.invJ     = &fegeom.invJ[q*coordDim*coordDim];
14032a4e142eSMatthew G. Knepley         qgeom.detJ     = &fegeom.detJ[q];
1404ff1e0c32SBarry Smith         if (fegeom.detJ[q] <= 0.0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %D, quadrature points %D", (double)fegeom.detJ[q], c, q);
1405d3a7d86cSMatthew G. Knepley         if (transform) {
1406d3a7d86cSMatthew G. Knepley           gcoords = &coords[coordDim*Nq];
1407d3a7d86cSMatthew G. Knepley           ierr = DMPlexBasisTransformApplyReal_Internal(dm, &coords[coordDim*q], PETSC_TRUE, coordDim, &coords[coordDim*q], gcoords, dm->transformCtx);CHKERRQ(ierr);
1408d3a7d86cSMatthew G. Knepley         } else {
1409d3a7d86cSMatthew G. Knepley           gcoords = &coords[coordDim*q];
1410d3a7d86cSMatthew G. Knepley         }
14114bee2e38SMatthew G. Knepley         ierr = (*funcs[field])(coordDim, time, gcoords, n, Nc, funcVal, ctx);
1412e735a8a9SMatthew G. Knepley         if (ierr) {
1413e735a8a9SMatthew G. Knepley           PetscErrorCode ierr2;
1414e735a8a9SMatthew G. Knepley           ierr2 = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr2);
1415e735a8a9SMatthew G. Knepley           ierr2 = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr2);
14164bee2e38SMatthew G. Knepley           ierr2 = PetscFree6(funcVal,coords,fegeom.J,fegeom.invJ,interpolant,fegeom.detJ);CHKERRQ(ierr2);
1417e735a8a9SMatthew G. Knepley           CHKERRQ(ierr);
1418e735a8a9SMatthew G. Knepley         }
1419ca3d3a14SMatthew G. Knepley         if (transform) {ierr = DMPlexBasisTransformApply_Internal(dm, &coords[coordDim*q], PETSC_FALSE, Nc, funcVal, funcVal, dm->transformCtx);CHKERRQ(ierr);}
1420f9244615SMatthew G. Knepley         ierr = PetscFEInterpolateGradient_Static(fe, 1, &x[fieldOffset], &qgeom, q, interpolant);CHKERRQ(ierr);
14214bee2e38SMatthew G. Knepley         /* Overwrite with the dot product if the normal is given */
14224bee2e38SMatthew G. Knepley         if (n) {
14234bee2e38SMatthew G. Knepley           for (fc = 0; fc < Nc; ++fc) {
14244bee2e38SMatthew G. Knepley             PetscScalar sum = 0.0;
14254bee2e38SMatthew G. Knepley             PetscInt    d;
14264bee2e38SMatthew G. Knepley             for (d = 0; d < dim; ++d) sum += interpolant[fc*dim+d]*n[d];
14274bee2e38SMatthew G. Knepley             interpolant[fc] = sum;
14284bee2e38SMatthew G. Knepley           }
14294bee2e38SMatthew G. Knepley         }
14309c3cf19fSMatthew G. Knepley         for (fc = 0; fc < Nc; ++fc) {
1431beaa55a6SMatthew G. Knepley           const PetscReal wt = quadWeights[q*qNc+(qNc == 1 ? 0 : qc+fc)];
1432ff1e0c32SBarry Smith           if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    elem %D fieldDer %D,%D diff %g\n", c, field, fc, (double)(PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q]));CHKERRQ(ierr);}
14334bee2e38SMatthew G. Knepley           elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q];
143440e14135SMatthew G. Knepley         }
143540e14135SMatthew G. Knepley       }
14369c3cf19fSMatthew G. Knepley       fieldOffset += Nb;
14379c3cf19fSMatthew G. Knepley       qc          += Nc;
143840e14135SMatthew G. Knepley     }
143940e14135SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1440ff1e0c32SBarry Smith     if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "  elem %D diff %g\n", c, (double)elemDiff);CHKERRQ(ierr);}
144140e14135SMatthew G. Knepley     localDiff += elemDiff;
144240e14135SMatthew G. Knepley   }
14434bee2e38SMatthew G. Knepley   ierr  = PetscFree6(funcVal,coords,fegeom.J,fegeom.invJ,interpolant,fegeom.detJ);CHKERRQ(ierr);
144440e14135SMatthew G. Knepley   ierr  = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1445820f2d46SBarry Smith   ierr  = MPIU_Allreduce(&localDiff, diff, 1, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
144640e14135SMatthew G. Knepley   *diff = PetscSqrtReal(*diff);
1447cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
1448cb1e1211SMatthew G Knepley }
1449cb1e1211SMatthew G Knepley 
1450c6eecec3SToby Isaac PetscErrorCode DMComputeL2FieldDiff_Plex(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, PetscReal *diff)
145173d901b8SMatthew G. Knepley {
14520f09c10fSMatthew G. Knepley   const PetscInt   debug = ((DM_Plex*)dm->data)->printL2;
1453ca3d3a14SMatthew G. Knepley   DM               tdm;
1454083401c6SMatthew G. Knepley   DMLabel          depthLabel;
145573d901b8SMatthew G. Knepley   PetscSection     section;
1456ca3d3a14SMatthew G. Knepley   Vec              localX, tv;
145773d901b8SMatthew G. Knepley   PetscReal       *localDiff;
1458083401c6SMatthew G. Knepley   PetscInt         dim, depth, dE, Nf, f, Nds, s;
1459ca3d3a14SMatthew G. Knepley   PetscBool        transform;
146073d901b8SMatthew G. Knepley   PetscErrorCode   ierr;
146173d901b8SMatthew G. Knepley 
146273d901b8SMatthew G. Knepley   PetscFunctionBegin;
1463c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
1464083401c6SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &dE);CHKERRQ(ierr);
146592fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
146673d901b8SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
1467083401c6SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
1468083401c6SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
1469083401c6SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
1470083401c6SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
1471083401c6SMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
1472083401c6SMatthew G. Knepley   ierr = DMLabelGetNumValues(depthLabel, &depth);CHKERRQ(ierr);
1473083401c6SMatthew G. Knepley 
1474ca3d3a14SMatthew G. Knepley   ierr = VecSet(localX, 0.0);CHKERRQ(ierr);
147573d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
147673d901b8SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1477ca3d3a14SMatthew G. Knepley   ierr = DMProjectFunctionLocal(dm, time, funcs, ctxs, INSERT_BC_VALUES, localX);CHKERRQ(ierr);
1478083401c6SMatthew G. Knepley   ierr = DMGetNumDS(dm, &Nds);CHKERRQ(ierr);
1479083401c6SMatthew G. Knepley   ierr = PetscCalloc1(Nf, &localDiff);CHKERRQ(ierr);
1480083401c6SMatthew G. Knepley   for (s = 0; s < Nds; ++s) {
1481083401c6SMatthew G. Knepley     PetscDS          ds;
1482083401c6SMatthew G. Knepley     DMLabel          label;
1483083401c6SMatthew G. Knepley     IS               fieldIS, pointIS;
1484083401c6SMatthew G. Knepley     const PetscInt  *fields, *points = NULL;
1485083401c6SMatthew G. Knepley     PetscQuadrature  quad;
1486083401c6SMatthew G. Knepley     const PetscReal *quadPoints, *quadWeights;
1487083401c6SMatthew G. Knepley     PetscFEGeom      fegeom;
1488083401c6SMatthew G. Knepley     PetscReal       *coords, *gcoords;
1489083401c6SMatthew G. Knepley     PetscScalar     *funcVal, *interpolant;
149096959cd1SMatthew G. Knepley     PetscBool        isHybrid;
1491083401c6SMatthew G. Knepley     PetscInt         qNc, Nq, totNc, cStart = 0, cEnd, c, dsNf;
149273d901b8SMatthew G. Knepley 
1493083401c6SMatthew G. Knepley     ierr = DMGetRegionNumDS(dm, s, &label, &fieldIS, &ds);CHKERRQ(ierr);
1494083401c6SMatthew G. Knepley     ierr = ISGetIndices(fieldIS, &fields);CHKERRQ(ierr);
149596959cd1SMatthew G. Knepley     ierr = PetscDSGetHybrid(ds, &isHybrid);CHKERRQ(ierr);
1496083401c6SMatthew G. Knepley     ierr = PetscDSGetNumFields(ds, &dsNf);CHKERRQ(ierr);
1497083401c6SMatthew G. Knepley     ierr = PetscDSGetTotalComponents(ds, &totNc);CHKERRQ(ierr);
1498083401c6SMatthew G. Knepley     ierr = PetscDSGetQuadrature(ds, &quad);CHKERRQ(ierr);
14999c3cf19fSMatthew G. Knepley     ierr = PetscQuadratureGetData(quad, NULL, &qNc, &Nq, &quadPoints, &quadWeights);CHKERRQ(ierr);
1500083401c6SMatthew G. Knepley     if ((qNc != 1) && (qNc != totNc)) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Quadrature components %D != %D field components", qNc, totNc);
1501083401c6SMatthew G. Knepley     ierr = PetscCalloc6(totNc, &funcVal, totNc, &interpolant, dE*(Nq+1), &coords,Nq, &fegeom.detJ, dE*dE*Nq, &fegeom.J, dE*dE*Nq, &fegeom.invJ);CHKERRQ(ierr);
1502083401c6SMatthew G. Knepley     if (!label) {
1503412e9a14SMatthew G. Knepley       ierr = DMPlexGetSimplexOrBoxCells(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1504083401c6SMatthew G. Knepley     } else {
1505083401c6SMatthew G. Knepley       ierr = DMLabelGetStratumIS(label, 1, &pointIS);CHKERRQ(ierr);
1506083401c6SMatthew G. Knepley       ierr = ISGetLocalSize(pointIS, &cEnd);CHKERRQ(ierr);
1507083401c6SMatthew G. Knepley       ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
1508083401c6SMatthew G. Knepley     }
150973d901b8SMatthew G. Knepley     for (c = cStart; c < cEnd; ++c) {
1510083401c6SMatthew G. Knepley       const PetscInt cell = points ? points[c] : c;
151173d901b8SMatthew G. Knepley       PetscScalar   *x    = NULL;
151296959cd1SMatthew G. Knepley       PetscInt       qc   = 0, fOff = 0, dep, fStart = isHybrid ? dsNf-1 : 0;
151373d901b8SMatthew G. Knepley 
1514083401c6SMatthew G. Knepley       ierr = DMLabelGetValue(depthLabel, cell, &dep);CHKERRQ(ierr);
1515083401c6SMatthew G. Knepley       if (dep != depth-1) continue;
151696959cd1SMatthew G. Knepley       if (isHybrid) {
151796959cd1SMatthew G. Knepley         const PetscInt *cone;
151896959cd1SMatthew G. Knepley 
151996959cd1SMatthew G. Knepley         ierr = DMPlexGetCone(dm, cell, &cone);CHKERRQ(ierr);
152096959cd1SMatthew G. Knepley         ierr = DMPlexComputeCellGeometryFEM(dm, cone[0], quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
152196959cd1SMatthew G. Knepley       } else {
1522083401c6SMatthew G. Knepley         ierr = DMPlexComputeCellGeometryFEM(dm, cell, quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
152396959cd1SMatthew G. Knepley       }
1524083401c6SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dm, NULL, localX, cell, NULL, &x);CHKERRQ(ierr);
152596959cd1SMatthew G. Knepley       for (f = fStart; f < dsNf; ++f) {
152615496722SMatthew G. Knepley         PetscObject  obj;
152715496722SMatthew G. Knepley         PetscClassId id;
1528083401c6SMatthew G. Knepley         void * const ctx = ctxs ? ctxs[fields[f]] : NULL;
152915496722SMatthew G. Knepley         PetscInt     Nb, Nc, q, fc;
153015496722SMatthew G. Knepley         PetscReal    elemDiff = 0.0;
153115496722SMatthew G. Knepley 
1532083401c6SMatthew G. Knepley         ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
153315496722SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
153415496722SMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
153515496722SMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
1536083401c6SMatthew G. Knepley         else SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", fields[f]);
153773d901b8SMatthew G. Knepley         if (debug) {
153873d901b8SMatthew G. Knepley           char title[1024];
1539083401c6SMatthew G. Knepley           ierr = PetscSNPrintf(title, 1023, "Solution for Field %D", fields[f]);CHKERRQ(ierr);
1540083401c6SMatthew G. Knepley           ierr = DMPrintCellVector(cell, title, Nb, &x[fOff]);CHKERRQ(ierr);
154173d901b8SMatthew G. Knepley         }
15427318780aSToby Isaac         for (q = 0; q < Nq; ++q) {
15432a4e142eSMatthew G. Knepley           PetscFEGeom qgeom;
15442a4e142eSMatthew G. Knepley 
15452a4e142eSMatthew G. Knepley           qgeom.dimEmbed = fegeom.dimEmbed;
1546083401c6SMatthew G. Knepley           qgeom.J        = &fegeom.J[q*dE*dE];
1547083401c6SMatthew G. Knepley           qgeom.invJ     = &fegeom.invJ[q*dE*dE];
15482a4e142eSMatthew G. Knepley           qgeom.detJ     = &fegeom.detJ[q];
1549083401c6SMatthew G. Knepley           if (fegeom.detJ[q] <= 0.0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for cell %D, quadrature point %D", (double)fegeom.detJ[q], cell, q);
1550d3a7d86cSMatthew G. Knepley           if (transform) {
1551083401c6SMatthew G. Knepley             gcoords = &coords[dE*Nq];
1552083401c6SMatthew G. Knepley             ierr = DMPlexBasisTransformApplyReal_Internal(dm, &coords[dE*q], PETSC_TRUE, dE, &coords[dE*q], gcoords, dm->transformCtx);CHKERRQ(ierr);
1553d3a7d86cSMatthew G. Knepley           } else {
1554083401c6SMatthew G. Knepley             gcoords = &coords[dE*q];
1555d3a7d86cSMatthew G. Knepley           }
1556083401c6SMatthew G. Knepley           ierr = (*funcs[fields[f]])(dE, time, gcoords, Nc, funcVal, ctx);
1557e735a8a9SMatthew G. Knepley           if (ierr) {
1558e735a8a9SMatthew G. Knepley             PetscErrorCode ierr2;
1559083401c6SMatthew G. Knepley             ierr2 = DMPlexVecRestoreClosure(dm, NULL, localX, cell, NULL, &x);CHKERRQ(ierr2);
1560e735a8a9SMatthew G. Knepley             ierr2 = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr2);
1561083401c6SMatthew G. Knepley             ierr2 = PetscFree6(funcVal,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr2);
1562e735a8a9SMatthew G. Knepley             CHKERRQ(ierr);
1563e735a8a9SMatthew G. Knepley           }
1564083401c6SMatthew G. Knepley           if (transform) {ierr = DMPlexBasisTransformApply_Internal(dm, &coords[dE*q], PETSC_FALSE, Nc, funcVal, funcVal, dm->transformCtx);CHKERRQ(ierr);}
156596959cd1SMatthew G. Knepley           /* Call once for each face, except for lagrange field */
1566083401c6SMatthew G. Knepley           if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fOff], &qgeom, q, interpolant);CHKERRQ(ierr);}
1567083401c6SMatthew G. Knepley           else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fOff], q, interpolant);CHKERRQ(ierr);}
1568083401c6SMatthew G. Knepley           else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", fields[f]);
156915496722SMatthew G. Knepley           for (fc = 0; fc < Nc; ++fc) {
1570beaa55a6SMatthew G. Knepley             const PetscReal wt = quadWeights[q*qNc+(qNc == 1 ? 0 : qc+fc)];
1571083401c6SMatthew G. Knepley             if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "    cell %D field %D,%D point %g %g %g diff %g\n", cell, fields[f], fc, (double)(dE > 0 ? coords[dE*q] : 0.), (double)(dE > 1 ? coords[dE*q+1] : 0.),(double)(dE > 2 ? coords[dE*q+2] : 0.), (double)(PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q]));CHKERRQ(ierr);}
15724bee2e38SMatthew G. Knepley             elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q];
157373d901b8SMatthew G. Knepley           }
157473d901b8SMatthew G. Knepley         }
1575083401c6SMatthew G. Knepley         fOff += Nb;
15769c3cf19fSMatthew G. Knepley         qc   += Nc;
1577083401c6SMatthew G. Knepley         localDiff[fields[f]] += elemDiff;
1578083401c6SMatthew G. Knepley         if (debug) {ierr = PetscPrintf(PETSC_COMM_SELF, "  cell %D field %D cum diff %g\n", cell, fields[f], (double)localDiff[fields[f]]);CHKERRQ(ierr);}
157973d901b8SMatthew G. Knepley       }
1580083401c6SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dm, NULL, localX, cell, NULL, &x);CHKERRQ(ierr);
1581083401c6SMatthew G. Knepley     }
1582083401c6SMatthew G. Knepley     if (label) {
1583083401c6SMatthew G. Knepley       ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
1584083401c6SMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
1585083401c6SMatthew G. Knepley     }
1586083401c6SMatthew G. Knepley     ierr = ISRestoreIndices(fieldIS, &fields);CHKERRQ(ierr);
1587083401c6SMatthew G. Knepley     ierr = PetscFree6(funcVal, interpolant, coords, fegeom.detJ, fegeom.J, fegeom.invJ);CHKERRQ(ierr);
158873d901b8SMatthew G. Knepley   }
158973d901b8SMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1590820f2d46SBarry Smith   ierr = MPIU_Allreduce(localDiff, diff, Nf, MPIU_REAL, MPIU_SUM, PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr);
1591083401c6SMatthew G. Knepley   ierr = PetscFree(localDiff);CHKERRQ(ierr);
1592083401c6SMatthew G. Knepley   for (f = 0; f < Nf; ++f) diff[f] = PetscSqrtReal(diff[f]);
159373d901b8SMatthew G. Knepley   PetscFunctionReturn(0);
159473d901b8SMatthew G. Knepley }
159573d901b8SMatthew G. Knepley 
1596e729f68cSMatthew G. Knepley /*@C
1597e729f68cSMatthew 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.
1598e729f68cSMatthew G. Knepley 
1599d083f849SBarry Smith   Collective on dm
1600c0f8e1fdSMatthew G. Knepley 
1601e729f68cSMatthew G. Knepley   Input Parameters:
1602e729f68cSMatthew G. Knepley + dm    - The DM
16030163fd50SMatthew G. Knepley . time  - The time
1604ca3eba1bSToby Isaac . funcs - The functions to evaluate for each field component: NULL means that component does not contribute to error calculation
1605e729f68cSMatthew G. Knepley . ctxs  - Optional array of contexts to pass to each function, or NULL.
1606e729f68cSMatthew G. Knepley - X     - The coefficient vector u_h
1607e729f68cSMatthew G. Knepley 
1608e729f68cSMatthew G. Knepley   Output Parameter:
1609e729f68cSMatthew G. Knepley . D - A Vec which holds the difference ||u - u_h||_2 for each cell
1610e729f68cSMatthew G. Knepley 
1611e729f68cSMatthew G. Knepley   Level: developer
1612e729f68cSMatthew G. Knepley 
1613b698f381SToby Isaac .seealso: DMProjectFunction(), DMComputeL2Diff(), DMPlexComputeL2FieldDiff(), DMComputeL2GradientDiff()
1614e729f68cSMatthew G. Knepley @*/
16150163fd50SMatthew G. Knepley PetscErrorCode DMPlexComputeL2DiffVec(DM dm, PetscReal time, PetscErrorCode (**funcs)(PetscInt, PetscReal, const PetscReal [], PetscInt, PetscScalar *, void *), void **ctxs, Vec X, Vec D)
1616e729f68cSMatthew G. Knepley {
1617e729f68cSMatthew G. Knepley   PetscSection     section;
1618e729f68cSMatthew G. Knepley   PetscQuadrature  quad;
1619e729f68cSMatthew G. Knepley   Vec              localX;
16204bee2e38SMatthew G. Knepley   PetscFEGeom      fegeom;
1621e729f68cSMatthew G. Knepley   PetscScalar     *funcVal, *interpolant;
16224bee2e38SMatthew G. Knepley   PetscReal       *coords;
1623e729f68cSMatthew G. Knepley   const PetscReal *quadPoints, *quadWeights;
1624485ad865SMatthew G. Knepley   PetscInt         dim, coordDim, numFields, numComponents = 0, qNc, Nq, cStart, cEnd, c, field, fieldOffset;
1625e729f68cSMatthew G. Knepley   PetscErrorCode   ierr;
1626e729f68cSMatthew G. Knepley 
1627e729f68cSMatthew G. Knepley   PetscFunctionBegin;
1628e729f68cSMatthew G. Knepley   ierr = VecSet(D, 0.0);CHKERRQ(ierr);
1629e729f68cSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
16307318780aSToby Isaac   ierr = DMGetCoordinateDim(dm, &coordDim);CHKERRQ(ierr);
163192fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
1632e729f68cSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
1633e729f68cSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &localX);CHKERRQ(ierr);
1634bdd6f66aSToby Isaac   ierr = DMProjectFunctionLocal(dm, time, funcs, ctxs, INSERT_BC_VALUES, localX);CHKERRQ(ierr);
1635e729f68cSMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1636e729f68cSMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, localX);CHKERRQ(ierr);
1637e729f68cSMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
1638e729f68cSMatthew G. Knepley     PetscObject  obj;
1639e729f68cSMatthew G. Knepley     PetscClassId id;
1640e729f68cSMatthew G. Knepley     PetscInt     Nc;
1641e729f68cSMatthew G. Knepley 
164244a7f3ddSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
1643e729f68cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1644e729f68cSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
1645e729f68cSMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
1646e729f68cSMatthew G. Knepley 
1647e729f68cSMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
1648e729f68cSMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
1649e729f68cSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
1650e729f68cSMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
1651e729f68cSMatthew G. Knepley 
1652e729f68cSMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
1653e729f68cSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
1654ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
1655e729f68cSMatthew G. Knepley     numComponents += Nc;
1656e729f68cSMatthew G. Knepley   }
16579c3cf19fSMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &qNc, &Nq, &quadPoints, &quadWeights);CHKERRQ(ierr);
1658beaa55a6SMatthew G. Knepley   if ((qNc != 1) && (qNc != numComponents)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_SIZ, "Quadrature components %D != %D field components", qNc, numComponents);
16592a4e142eSMatthew G. Knepley   ierr = PetscMalloc6(numComponents,&funcVal,numComponents,&interpolant,coordDim*Nq,&coords,Nq,&fegeom.detJ,coordDim*coordDim*Nq,&fegeom.J,coordDim*coordDim*Nq,&fegeom.invJ);CHKERRQ(ierr);
1660412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
1661e729f68cSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
1662e729f68cSMatthew G. Knepley     PetscScalar *x = NULL;
16636f288a59SMatthew G. Knepley     PetscScalar  elemDiff = 0.0;
16649c3cf19fSMatthew G. Knepley     PetscInt     qc = 0;
1665e729f68cSMatthew G. Knepley 
16662a4e142eSMatthew G. Knepley     ierr = DMPlexComputeCellGeometryFEM(dm, c, quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
1667e729f68cSMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
1668e729f68cSMatthew G. Knepley 
1669e729f68cSMatthew G. Knepley     for (field = 0, fieldOffset = 0; field < numFields; ++field) {
1670e729f68cSMatthew G. Knepley       PetscObject  obj;
1671e729f68cSMatthew G. Knepley       PetscClassId id;
1672e729f68cSMatthew G. Knepley       void * const ctx = ctxs ? ctxs[field] : NULL;
1673e729f68cSMatthew G. Knepley       PetscInt     Nb, Nc, q, fc;
1674e729f68cSMatthew G. Knepley 
167544a7f3ddSMatthew G. Knepley       ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
1676e729f68cSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1677e729f68cSMatthew G. Knepley       if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
1678e729f68cSMatthew G. Knepley       else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
1679ff1e0c32SBarry Smith       else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
168023f34ed2SToby Isaac       if (funcs[field]) {
16817318780aSToby Isaac         for (q = 0; q < Nq; ++q) {
16822a4e142eSMatthew G. Knepley           PetscFEGeom qgeom;
16832a4e142eSMatthew G. Knepley 
16842a4e142eSMatthew G. Knepley           qgeom.dimEmbed = fegeom.dimEmbed;
16852a4e142eSMatthew G. Knepley           qgeom.J        = &fegeom.J[q*coordDim*coordDim];
16862a4e142eSMatthew G. Knepley           qgeom.invJ     = &fegeom.invJ[q*coordDim*coordDim];
16872a4e142eSMatthew G. Knepley           qgeom.detJ     = &fegeom.detJ[q];
16884bee2e38SMatthew G. Knepley           if (fegeom.detJ[q] <= 0.0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %D, quadrature points %D", (double)fegeom.detJ[q], c, q);
1689274e8aaeSMatthew G. Knepley           ierr = (*funcs[field])(coordDim, time, &coords[q*coordDim], Nc, funcVal, ctx);
1690e735a8a9SMatthew G. Knepley           if (ierr) {
1691e735a8a9SMatthew G. Knepley             PetscErrorCode ierr2;
1692e735a8a9SMatthew G. Knepley             ierr2 = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr2);
16932a4e142eSMatthew G. Knepley             ierr2 = PetscFree6(funcVal,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr2);
1694e735a8a9SMatthew G. Knepley             ierr2 = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr2);
1695e735a8a9SMatthew G. Knepley             CHKERRQ(ierr);
1696e735a8a9SMatthew G. Knepley           }
16972a4e142eSMatthew G. Knepley           if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolate_Static((PetscFE) obj, &x[fieldOffset], &qgeom, q, interpolant);CHKERRQ(ierr);}
1698e729f68cSMatthew G. Knepley           else if (id == PETSCFV_CLASSID) {ierr = PetscFVInterpolate_Static((PetscFV) obj, &x[fieldOffset], q, interpolant);CHKERRQ(ierr);}
1699ff1e0c32SBarry Smith           else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
1700e729f68cSMatthew G. Knepley           for (fc = 0; fc < Nc; ++fc) {
1701beaa55a6SMatthew G. Knepley             const PetscReal wt = quadWeights[q*qNc+(qNc == 1 ? 0 : qc+fc)];
17024bee2e38SMatthew G. Knepley             elemDiff += PetscSqr(PetscRealPart(interpolant[fc] - funcVal[fc]))*wt*fegeom.detJ[q];
1703e729f68cSMatthew G. Knepley           }
1704e729f68cSMatthew G. Knepley         }
170523f34ed2SToby Isaac       }
1706beaa55a6SMatthew G. Knepley       fieldOffset += Nb;
17079c3cf19fSMatthew G. Knepley       qc          += Nc;
1708e729f68cSMatthew G. Knepley     }
1709e729f68cSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, NULL, localX, c, NULL, &x);CHKERRQ(ierr);
171023f34ed2SToby Isaac     ierr = VecSetValue(D, c - cStart, elemDiff, INSERT_VALUES);CHKERRQ(ierr);
1711e729f68cSMatthew G. Knepley   }
17122a4e142eSMatthew G. Knepley   ierr = PetscFree6(funcVal,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr);
1713e729f68cSMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &localX);CHKERRQ(ierr);
1714e729f68cSMatthew G. Knepley   ierr = VecSqrtAbs(D);CHKERRQ(ierr);
1715e729f68cSMatthew G. Knepley   PetscFunctionReturn(0);
1716e729f68cSMatthew G. Knepley }
1717e729f68cSMatthew G. Knepley 
17181555c271SMatthew G. Knepley /*@C
17191555c271SMatthew G. Knepley   DMPlexComputeGradientClementInterpolant - This function computes the L2 projection of the cellwise gradient of a function u onto P1, and stores it in a Vec.
17201555c271SMatthew G. Knepley 
1721d083f849SBarry Smith   Collective on dm
1722c0f8e1fdSMatthew G. Knepley 
17231555c271SMatthew G. Knepley   Input Parameters:
17241555c271SMatthew G. Knepley + dm - The DM
17251555c271SMatthew G. Knepley - LocX  - The coefficient vector u_h
17261555c271SMatthew G. Knepley 
17271555c271SMatthew G. Knepley   Output Parameter:
17281555c271SMatthew G. Knepley . locC - A Vec which holds the Clement interpolant of the gradient
17291555c271SMatthew G. Knepley 
173095452b02SPatrick Sanan   Notes:
173195452b02SPatrick Sanan     Add citation to (Clement, 1975) and definition of the interpolant
17321555c271SMatthew G. Knepley   \nabla u_h(v_i) = \sum_{T_i \in support(v_i)} |T_i| \nabla u_h(T_i) / \sum_{T_i \in support(v_i)} |T_i| where |T_i| is the cell volume
17331555c271SMatthew G. Knepley 
17341555c271SMatthew G. Knepley   Level: developer
17351555c271SMatthew G. Knepley 
17361555c271SMatthew G. Knepley .seealso: DMProjectFunction(), DMComputeL2Diff(), DMPlexComputeL2FieldDiff(), DMComputeL2GradientDiff()
17371555c271SMatthew G. Knepley @*/
17381555c271SMatthew G. Knepley PetscErrorCode DMPlexComputeGradientClementInterpolant(DM dm, Vec locX, Vec locC)
17391555c271SMatthew G. Knepley {
1740db1066baSMatthew G. Knepley   DM_Plex         *mesh  = (DM_Plex *) dm->data;
1741db1066baSMatthew G. Knepley   PetscInt         debug = mesh->printFEM;
17421555c271SMatthew G. Knepley   DM               dmC;
17431555c271SMatthew G. Knepley   PetscSection     section;
17441555c271SMatthew G. Knepley   PetscQuadrature  quad;
17451555c271SMatthew G. Knepley   PetscScalar     *interpolant, *gradsum;
17464bee2e38SMatthew G. Knepley   PetscFEGeom      fegeom;
17474bee2e38SMatthew G. Knepley   PetscReal       *coords;
17481555c271SMatthew G. Knepley   const PetscReal *quadPoints, *quadWeights;
1749485ad865SMatthew G. Knepley   PetscInt         dim, coordDim, numFields, numComponents = 0, qNc, Nq, cStart, cEnd, vStart, vEnd, v, field, fieldOffset;
17501555c271SMatthew G. Knepley   PetscErrorCode   ierr;
17511555c271SMatthew G. Knepley 
17521555c271SMatthew G. Knepley   PetscFunctionBegin;
17531555c271SMatthew G. Knepley   ierr = VecGetDM(locC, &dmC);CHKERRQ(ierr);
17541555c271SMatthew G. Knepley   ierr = VecSet(locC, 0.0);CHKERRQ(ierr);
17551555c271SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
17561555c271SMatthew G. Knepley   ierr = DMGetCoordinateDim(dm, &coordDim);CHKERRQ(ierr);
17574bee2e38SMatthew G. Knepley   fegeom.dimEmbed = coordDim;
175892fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
17591555c271SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &numFields);CHKERRQ(ierr);
17601555c271SMatthew G. Knepley   for (field = 0; field < numFields; ++field) {
17611555c271SMatthew G. Knepley     PetscObject  obj;
17621555c271SMatthew G. Knepley     PetscClassId id;
17631555c271SMatthew G. Knepley     PetscInt     Nc;
17641555c271SMatthew G. Knepley 
176544a7f3ddSMatthew G. Knepley     ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
17661555c271SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
17671555c271SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
17681555c271SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
17691555c271SMatthew G. Knepley 
17701555c271SMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
17711555c271SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
17721555c271SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
17731555c271SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
17741555c271SMatthew G. Knepley 
17751555c271SMatthew G. Knepley       ierr = PetscFVGetQuadrature(fv, &quad);CHKERRQ(ierr);
17761555c271SMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
1777ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
17781555c271SMatthew G. Knepley     numComponents += Nc;
17791555c271SMatthew G. Knepley   }
17801555c271SMatthew G. Knepley   ierr = PetscQuadratureGetData(quad, NULL, &qNc, &Nq, &quadPoints, &quadWeights);CHKERRQ(ierr);
17811555c271SMatthew G. Knepley   if ((qNc != 1) && (qNc != numComponents)) SETERRQ2(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_SIZ, "Quadrature components %D != %D field components", qNc, numComponents);
17824bee2e38SMatthew G. Knepley   ierr = PetscMalloc6(coordDim*numComponents*2,&gradsum,coordDim*numComponents,&interpolant,coordDim*Nq,&coords,Nq,&fegeom.detJ,coordDim*coordDim*Nq,&fegeom.J,coordDim*coordDim*Nq,&fegeom.invJ);CHKERRQ(ierr);
17831555c271SMatthew G. Knepley   ierr = DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd);CHKERRQ(ierr);
1784412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
17851555c271SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
17861555c271SMatthew G. Knepley     PetscScalar volsum = 0.0;
17871555c271SMatthew G. Knepley     PetscInt   *star = NULL;
17881555c271SMatthew G. Knepley     PetscInt    starSize, st, d, fc;
17891555c271SMatthew G. Knepley 
1790580bdb30SBarry Smith     ierr = PetscArrayzero(gradsum, coordDim*numComponents);CHKERRQ(ierr);
17911555c271SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, v, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
17921555c271SMatthew G. Knepley     for (st = 0; st < starSize*2; st += 2) {
17931555c271SMatthew G. Knepley       const PetscInt cell = star[st];
17941555c271SMatthew G. Knepley       PetscScalar   *grad = &gradsum[coordDim*numComponents];
17951555c271SMatthew G. Knepley       PetscScalar   *x    = NULL;
17961555c271SMatthew G. Knepley       PetscReal      vol  = 0.0;
17971555c271SMatthew G. Knepley 
17981555c271SMatthew G. Knepley       if ((cell < cStart) || (cell >= cEnd)) continue;
17994bee2e38SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dm, cell, quad, coords, fegeom.J, fegeom.invJ, fegeom.detJ);CHKERRQ(ierr);
18001555c271SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dm, NULL, locX, cell, NULL, &x);CHKERRQ(ierr);
18011555c271SMatthew G. Knepley       for (field = 0, fieldOffset = 0; field < numFields; ++field) {
18021555c271SMatthew G. Knepley         PetscObject  obj;
18031555c271SMatthew G. Knepley         PetscClassId id;
18041555c271SMatthew G. Knepley         PetscInt     Nb, Nc, q, qc = 0;
18051555c271SMatthew G. Knepley 
1806580bdb30SBarry Smith         ierr = PetscArrayzero(grad, coordDim*numComponents);CHKERRQ(ierr);
180744a7f3ddSMatthew G. Knepley         ierr = DMGetField(dm, field, NULL, &obj);CHKERRQ(ierr);
18081555c271SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
18091555c271SMatthew G. Knepley         if (id == PETSCFE_CLASSID)      {ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr);ierr = PetscFEGetDimension((PetscFE) obj, &Nb);CHKERRQ(ierr);}
18101555c271SMatthew G. Knepley         else if (id == PETSCFV_CLASSID) {ierr = PetscFVGetNumComponents((PetscFV) obj, &Nc);CHKERRQ(ierr);Nb = 1;}
1811ff1e0c32SBarry Smith         else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
18121555c271SMatthew G. Knepley         for (q = 0; q < Nq; ++q) {
18132a4e142eSMatthew G. Knepley           PetscFEGeom qgeom;
18142a4e142eSMatthew G. Knepley 
18152a4e142eSMatthew G. Knepley           qgeom.dimEmbed = fegeom.dimEmbed;
18162a4e142eSMatthew G. Knepley           qgeom.J        = &fegeom.J[q*coordDim*coordDim];
18172a4e142eSMatthew G. Knepley           qgeom.invJ     = &fegeom.invJ[q*coordDim*coordDim];
18182a4e142eSMatthew G. Knepley           qgeom.detJ     = &fegeom.detJ[q];
18194bee2e38SMatthew G. Knepley           if (fegeom.detJ[q] <= 0.0) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Invalid determinant %g for element %D, quadrature points %D", (double)fegeom.detJ[q], cell, q);
18201555c271SMatthew G. Knepley           if (ierr) {
18211555c271SMatthew G. Knepley             PetscErrorCode ierr2;
18221555c271SMatthew G. Knepley             ierr2 = DMPlexVecRestoreClosure(dm, NULL, locX, cell, NULL, &x);CHKERRQ(ierr2);
18231555c271SMatthew G. Knepley             ierr2 = DMPlexRestoreTransitiveClosure(dm, v, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr2);
18244bee2e38SMatthew G. Knepley             ierr2 = PetscFree6(gradsum,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr2);
18251555c271SMatthew G. Knepley             CHKERRQ(ierr);
18261555c271SMatthew G. Knepley           }
1827f9244615SMatthew G. Knepley           if (id == PETSCFE_CLASSID)      {ierr = PetscFEInterpolateGradient_Static((PetscFE) obj, 1, &x[fieldOffset], &qgeom, q, interpolant);CHKERRQ(ierr);}
1828ff1e0c32SBarry Smith           else SETERRQ1(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", field);
18291555c271SMatthew G. Knepley           for (fc = 0; fc < Nc; ++fc) {
18301555c271SMatthew G. Knepley             const PetscReal wt = quadWeights[q*qNc+qc+fc];
18311555c271SMatthew G. Knepley 
18324bee2e38SMatthew G. Knepley             for (d = 0; d < coordDim; ++d) grad[fc*coordDim+d] += interpolant[fc*dim+d]*wt*fegeom.detJ[q];
18331555c271SMatthew G. Knepley           }
18344bee2e38SMatthew G. Knepley           vol += quadWeights[q*qNc]*fegeom.detJ[q];
18351555c271SMatthew G. Knepley         }
18361555c271SMatthew G. Knepley         fieldOffset += Nb;
18371555c271SMatthew G. Knepley         qc          += Nc;
18381555c271SMatthew G. Knepley       }
18391555c271SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dm, NULL, locX, cell, NULL, &x);CHKERRQ(ierr);
1840f8527842SMatthew G. Knepley       for (fc = 0; fc < numComponents; ++fc) {
1841f8527842SMatthew G. Knepley         for (d = 0; d < coordDim; ++d) {
1842f8527842SMatthew G. Knepley           gradsum[fc*coordDim+d] += grad[fc*coordDim+d];
1843f8527842SMatthew G. Knepley         }
1844f8527842SMatthew G. Knepley       }
1845f8527842SMatthew G. Knepley       volsum += vol;
1846db1066baSMatthew G. Knepley       if (debug) {
18476d20ae03SJed Brown         ierr = PetscPrintf(PETSC_COMM_SELF, "Cell %D gradient: [", cell);CHKERRQ(ierr);
18481555c271SMatthew G. Knepley         for (fc = 0; fc < numComponents; ++fc) {
18491555c271SMatthew G. Knepley           for (d = 0; d < coordDim; ++d) {
18501555c271SMatthew G. Knepley             if (fc || d > 0) {ierr = PetscPrintf(PETSC_COMM_SELF, ", ");CHKERRQ(ierr);}
18516d20ae03SJed Brown             ierr = PetscPrintf(PETSC_COMM_SELF, "%g", (double)PetscRealPart(grad[fc*coordDim+d]));CHKERRQ(ierr);
18521555c271SMatthew G. Knepley           }
18531555c271SMatthew G. Knepley         }
18541555c271SMatthew G. Knepley         ierr = PetscPrintf(PETSC_COMM_SELF, "]\n");CHKERRQ(ierr);
1855db1066baSMatthew G. Knepley       }
18561555c271SMatthew G. Knepley     }
18571555c271SMatthew G. Knepley     for (fc = 0; fc < numComponents; ++fc) {
18581555c271SMatthew G. Knepley       for (d = 0; d < coordDim; ++d) gradsum[fc*coordDim+d] /= volsum;
18591555c271SMatthew G. Knepley     }
18601555c271SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, v, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
18611555c271SMatthew G. Knepley     ierr = DMPlexVecSetClosure(dmC, NULL, locC, v, gradsum, INSERT_VALUES);CHKERRQ(ierr);
18621555c271SMatthew G. Knepley   }
18634bee2e38SMatthew G. Knepley   ierr = PetscFree6(gradsum,interpolant,coords,fegeom.detJ,fegeom.J,fegeom.invJ);CHKERRQ(ierr);
18641555c271SMatthew G. Knepley   PetscFunctionReturn(0);
18651555c271SMatthew G. Knepley }
18661555c271SMatthew G. Knepley 
1867338f77d5SMatthew G. Knepley static PetscErrorCode DMPlexComputeIntegral_Internal(DM dm, Vec X, PetscInt cStart, PetscInt cEnd, PetscScalar *cintegral, void *user)
186873d901b8SMatthew G. Knepley {
1869338f77d5SMatthew G. Knepley   DM                 dmAux = NULL;
187061aaff12SToby Isaac   PetscDS            prob,    probAux = NULL;
187173d901b8SMatthew G. Knepley   PetscSection       section, sectionAux;
1872338f77d5SMatthew G. Knepley   Vec                locX,    locA;
1873c330f8ffSToby Isaac   PetscInt           dim, numCells = cEnd - cStart, c, f;
1874c330f8ffSToby Isaac   PetscBool          useFVM = PETSC_FALSE;
1875338f77d5SMatthew G. Knepley   /* DS */
1876338f77d5SMatthew G. Knepley   PetscInt           Nf,    totDim,    *uOff, *uOff_x, numConstants;
1877338f77d5SMatthew G. Knepley   PetscInt           NfAux, totDimAux, *aOff;
1878338f77d5SMatthew G. Knepley   PetscScalar       *u, *a;
1879338f77d5SMatthew G. Knepley   const PetscScalar *constants;
1880338f77d5SMatthew G. Knepley   /* Geometry */
1881c330f8ffSToby Isaac   PetscFEGeom       *cgeomFEM;
1882338f77d5SMatthew G. Knepley   DM                 dmGrad;
1883c330f8ffSToby Isaac   PetscQuadrature    affineQuad = NULL;
1884338f77d5SMatthew G. Knepley   Vec                cellGeometryFVM = NULL, faceGeometryFVM = NULL, locGrad = NULL;
1885b5a3613cSMatthew G. Knepley   PetscFVCellGeom   *cgeomFVM;
1886338f77d5SMatthew G. Knepley   const PetscScalar *lgrad;
1887b7260050SToby Isaac   PetscInt           maxDegree;
1888c330f8ffSToby Isaac   DMField            coordField;
1889c330f8ffSToby Isaac   IS                 cellIS;
189073d901b8SMatthew G. Knepley   PetscErrorCode     ierr;
189173d901b8SMatthew G. Knepley 
189273d901b8SMatthew G. Knepley   PetscFunctionBegin;
1893338f77d5SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
1894c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
189592fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
189673d901b8SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
1897338f77d5SMatthew G. Knepley   /* Determine which discretizations we have */
1898b5a3613cSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
1899b5a3613cSMatthew G. Knepley     PetscObject  obj;
1900b5a3613cSMatthew G. Knepley     PetscClassId id;
1901b5a3613cSMatthew G. Knepley 
1902b5a3613cSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
1903b5a3613cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1904338f77d5SMatthew G. Knepley     if (id == PETSCFV_CLASSID) useFVM = PETSC_TRUE;
1905338f77d5SMatthew G. Knepley   }
1906338f77d5SMatthew G. Knepley   /* Get local solution with boundary values */
1907338f77d5SMatthew G. Knepley   ierr = DMGetLocalVector(dm, &locX);CHKERRQ(ierr);
1908338f77d5SMatthew G. Knepley   ierr = DMPlexInsertBoundaryValues(dm, PETSC_TRUE, locX, 0.0, NULL, NULL, NULL);CHKERRQ(ierr);
1909338f77d5SMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, locX);CHKERRQ(ierr);
1910338f77d5SMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, locX);CHKERRQ(ierr);
1911338f77d5SMatthew G. Knepley   /* Read DS information */
1912338f77d5SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
1913338f77d5SMatthew G. Knepley   ierr = PetscDSGetComponentOffsets(prob, &uOff);CHKERRQ(ierr);
1914338f77d5SMatthew G. Knepley   ierr = PetscDSGetComponentDerivativeOffsets(prob, &uOff_x);CHKERRQ(ierr);
1915c330f8ffSToby Isaac   ierr = ISCreateStride(PETSC_COMM_SELF,numCells,cStart,1,&cellIS);CHKERRQ(ierr);
1916338f77d5SMatthew G. Knepley   ierr = PetscDSGetConstants(prob, &numConstants, &constants);CHKERRQ(ierr);
1917338f77d5SMatthew G. Knepley   /* Read Auxiliary DS information */
19189a2a23afSMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, NULL, 0, &locA);CHKERRQ(ierr);
19199a2a23afSMatthew G. Knepley   if (locA) {
19209a2a23afSMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
1921338f77d5SMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
1922338f77d5SMatthew G. Knepley     ierr = PetscDSGetNumFields(probAux, &NfAux);CHKERRQ(ierr);
192392fd8e1eSJed Brown     ierr = DMGetLocalSection(dmAux, &sectionAux);CHKERRQ(ierr);
1924338f77d5SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
1925338f77d5SMatthew G. Knepley     ierr = PetscDSGetComponentOffsets(probAux, &aOff);CHKERRQ(ierr);
1926338f77d5SMatthew G. Knepley   }
1927338f77d5SMatthew G. Knepley   /* Allocate data  arrays */
1928338f77d5SMatthew G. Knepley   ierr = PetscCalloc1(numCells*totDim, &u);CHKERRQ(ierr);
1929338f77d5SMatthew G. Knepley   if (dmAux) {ierr = PetscMalloc1(numCells*totDimAux, &a);CHKERRQ(ierr);}
1930338f77d5SMatthew G. Knepley   /* Read out geometry */
1931c330f8ffSToby Isaac   ierr = DMGetCoordinateField(dm,&coordField);CHKERRQ(ierr);
1932b7260050SToby Isaac   ierr = DMFieldGetDegree(coordField,cellIS,NULL,&maxDegree);CHKERRQ(ierr);
1933b7260050SToby Isaac   if (maxDegree <= 1) {
1934c330f8ffSToby Isaac     ierr = DMFieldCreateDefaultQuadrature(coordField,cellIS,&affineQuad);CHKERRQ(ierr);
1935c330f8ffSToby Isaac     if (affineQuad) {
1936c330f8ffSToby Isaac       ierr = DMFieldCreateFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
1937338f77d5SMatthew G. Knepley     }
1938b5a3613cSMatthew G. Knepley   }
1939b5a3613cSMatthew G. Knepley   if (useFVM) {
1940338f77d5SMatthew G. Knepley     PetscFV   fv = NULL;
1941b5a3613cSMatthew G. Knepley     Vec       grad;
1942b5a3613cSMatthew G. Knepley     PetscInt  fStart, fEnd;
1943b5a3613cSMatthew G. Knepley     PetscBool compGrad;
1944b5a3613cSMatthew G. Knepley 
1945338f77d5SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
1946338f77d5SMatthew G. Knepley       PetscObject  obj;
1947338f77d5SMatthew G. Knepley       PetscClassId id;
1948338f77d5SMatthew G. Knepley 
1949338f77d5SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
1950338f77d5SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1951338f77d5SMatthew G. Knepley       if (id == PETSCFV_CLASSID) {fv = (PetscFV) obj; break;}
1952338f77d5SMatthew G. Knepley     }
1953338f77d5SMatthew G. Knepley     ierr = PetscFVGetComputeGradients(fv, &compGrad);CHKERRQ(ierr);
1954338f77d5SMatthew G. Knepley     ierr = PetscFVSetComputeGradients(fv, PETSC_TRUE);CHKERRQ(ierr);
1955b5a3613cSMatthew G. Knepley     ierr = DMPlexComputeGeometryFVM(dm, &cellGeometryFVM, &faceGeometryFVM);CHKERRQ(ierr);
1956338f77d5SMatthew G. Knepley     ierr = DMPlexComputeGradientFVM(dm, fv, faceGeometryFVM, cellGeometryFVM, &dmGrad);CHKERRQ(ierr);
1957338f77d5SMatthew G. Knepley     ierr = PetscFVSetComputeGradients(fv, compGrad);CHKERRQ(ierr);
1958b5a3613cSMatthew G. Knepley     ierr = VecGetArrayRead(cellGeometryFVM, (const PetscScalar **) &cgeomFVM);CHKERRQ(ierr);
1959b5a3613cSMatthew G. Knepley     /* Reconstruct and limit cell gradients */
1960b5a3613cSMatthew G. Knepley     ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
1961b5a3613cSMatthew G. Knepley     ierr = DMGetGlobalVector(dmGrad, &grad);CHKERRQ(ierr);
1962338f77d5SMatthew G. Knepley     ierr = DMPlexReconstructGradients_Internal(dm, fv, fStart, fEnd, faceGeometryFVM, cellGeometryFVM, locX, grad);CHKERRQ(ierr);
1963b5a3613cSMatthew G. Knepley     /* Communicate gradient values */
1964b5a3613cSMatthew G. Knepley     ierr = DMGetLocalVector(dmGrad, &locGrad);CHKERRQ(ierr);
1965b5a3613cSMatthew G. Knepley     ierr = DMGlobalToLocalBegin(dmGrad, grad, INSERT_VALUES, locGrad);CHKERRQ(ierr);
1966b5a3613cSMatthew G. Knepley     ierr = DMGlobalToLocalEnd(dmGrad, grad, INSERT_VALUES, locGrad);CHKERRQ(ierr);
1967b5a3613cSMatthew G. Knepley     ierr = DMRestoreGlobalVector(dmGrad, &grad);CHKERRQ(ierr);
1968b5a3613cSMatthew G. Knepley     /* Handle non-essential (e.g. outflow) boundary values */
1969338f77d5SMatthew G. Knepley     ierr = DMPlexInsertBoundaryValues(dm, PETSC_FALSE, locX, 0.0, faceGeometryFVM, cellGeometryFVM, locGrad);CHKERRQ(ierr);
1970b5a3613cSMatthew G. Knepley     ierr = VecGetArrayRead(locGrad, &lgrad);CHKERRQ(ierr);
1971b5a3613cSMatthew G. Knepley   }
1972338f77d5SMatthew G. Knepley   /* Read out data from inputs */
197373d901b8SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
197473d901b8SMatthew G. Knepley     PetscScalar *x = NULL;
197573d901b8SMatthew G. Knepley     PetscInt     i;
197673d901b8SMatthew G. Knepley 
1977338f77d5SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, section, locX, c, NULL, &x);CHKERRQ(ierr);
19780f2d7e86SMatthew G. Knepley     for (i = 0; i < totDim; ++i) u[c*totDim+i] = x[i];
1979338f77d5SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, section, locX, c, NULL, &x);CHKERRQ(ierr);
198073d901b8SMatthew G. Knepley     if (dmAux) {
1981338f77d5SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dmAux, sectionAux, locA, c, NULL, &x);CHKERRQ(ierr);
19820f2d7e86SMatthew G. Knepley       for (i = 0; i < totDimAux; ++i) a[c*totDimAux+i] = x[i];
1983338f77d5SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dmAux, sectionAux, locA, c, NULL, &x);CHKERRQ(ierr);
198473d901b8SMatthew G. Knepley     }
198573d901b8SMatthew G. Knepley   }
1986338f77d5SMatthew G. Knepley   /* Do integration for each field */
198773d901b8SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
1988c1f031eeSMatthew G. Knepley     PetscObject  obj;
1989c1f031eeSMatthew G. Knepley     PetscClassId id;
1990c1f031eeSMatthew G. Knepley     PetscInt     numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset;
199173d901b8SMatthew G. Knepley 
1992c1f031eeSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
1993c1f031eeSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
1994c1f031eeSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
1995c1f031eeSMatthew G. Knepley       PetscFE         fe = (PetscFE) obj;
1996c1f031eeSMatthew G. Knepley       PetscQuadrature q;
1997c330f8ffSToby Isaac       PetscFEGeom     *chunkGeom = NULL;
1998c1f031eeSMatthew G. Knepley       PetscInt        Nq, Nb;
1999c1f031eeSMatthew G. Knepley 
20000f2d7e86SMatthew G. Knepley       ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
2001c1f031eeSMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe, &q);CHKERRQ(ierr);
20029c3cf19fSMatthew G. Knepley       ierr = PetscQuadratureGetData(q, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
2003c1f031eeSMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
2004c1f031eeSMatthew G. Knepley       blockSize = Nb*Nq;
200573d901b8SMatthew G. Knepley       batchSize = numBlocks * blockSize;
20060f2d7e86SMatthew G. Knepley       ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
200773d901b8SMatthew G. Knepley       numChunks = numCells / (numBatches*batchSize);
200873d901b8SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
200973d901b8SMatthew G. Knepley       Nr        = numCells % (numBatches*batchSize);
201073d901b8SMatthew G. Knepley       offset    = numCells - Nr;
2011c330f8ffSToby Isaac       if (!affineQuad) {
2012c330f8ffSToby Isaac         ierr = DMFieldCreateFEGeom(coordField,cellIS,q,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
2013c330f8ffSToby Isaac       }
2014c330f8ffSToby Isaac       ierr = PetscFEGeomGetChunk(cgeomFEM,0,offset,&chunkGeom);CHKERRQ(ierr);
20154bee2e38SMatthew G. Knepley       ierr = PetscFEIntegrate(prob, f, Ne, chunkGeom, u, probAux, a, cintegral);CHKERRQ(ierr);
2016c330f8ffSToby Isaac       ierr = PetscFEGeomGetChunk(cgeomFEM,offset,numCells,&chunkGeom);CHKERRQ(ierr);
20174bee2e38SMatthew G. Knepley       ierr = PetscFEIntegrate(prob, f, Nr, chunkGeom, &u[offset*totDim], probAux, &a[offset*totDimAux], &cintegral[offset*Nf]);CHKERRQ(ierr);
2018c330f8ffSToby Isaac       ierr = PetscFEGeomRestoreChunk(cgeomFEM,offset,numCells,&chunkGeom);CHKERRQ(ierr);
2019c330f8ffSToby Isaac       if (!affineQuad) {
2020c330f8ffSToby Isaac         ierr = PetscFEGeomDestroy(&cgeomFEM);CHKERRQ(ierr);
2021c330f8ffSToby Isaac       }
2022c1f031eeSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
2023c1f031eeSMatthew G. Knepley       PetscInt       foff;
2024420e96edSMatthew G. Knepley       PetscPointFunc obj_func;
2025b69edc29SMatthew G. Knepley       PetscScalar    lint;
2026c1f031eeSMatthew G. Knepley 
2027c1f031eeSMatthew G. Knepley       ierr = PetscDSGetObjective(prob, f, &obj_func);CHKERRQ(ierr);
2028c1f031eeSMatthew G. Knepley       ierr = PetscDSGetFieldOffset(prob, f, &foff);CHKERRQ(ierr);
2029c1f031eeSMatthew G. Knepley       if (obj_func) {
2030c1f031eeSMatthew G. Knepley         for (c = 0; c < numCells; ++c) {
2031b5a3613cSMatthew G. Knepley           PetscScalar *u_x;
2032b5a3613cSMatthew G. Knepley 
2033b5a3613cSMatthew G. Knepley           ierr = DMPlexPointLocalRead(dmGrad, c, lgrad, &u_x);CHKERRQ(ierr);
2034338f77d5SMatthew G. Knepley           obj_func(dim, Nf, NfAux, uOff, uOff_x, &u[totDim*c+foff], NULL, u_x, aOff, NULL, &a[totDimAux*c], NULL, NULL, 0.0, cgeomFVM[c].centroid, numConstants, constants, &lint);
2035338f77d5SMatthew G. Knepley           cintegral[c*Nf+f] += PetscRealPart(lint)*cgeomFVM[c].volume;
203673d901b8SMatthew G. Knepley         }
2037c1f031eeSMatthew G. Knepley       }
2038ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", f);
2039c1f031eeSMatthew G. Knepley   }
2040338f77d5SMatthew G. Knepley   /* Cleanup data arrays */
2041b5a3613cSMatthew G. Knepley   if (useFVM) {
2042b5a3613cSMatthew G. Knepley     ierr = VecRestoreArrayRead(locGrad, &lgrad);CHKERRQ(ierr);
2043b5a3613cSMatthew G. Knepley     ierr = VecRestoreArrayRead(cellGeometryFVM, (const PetscScalar **) &cgeomFVM);CHKERRQ(ierr);
2044b5a3613cSMatthew G. Knepley     ierr = DMRestoreLocalVector(dmGrad, &locGrad);CHKERRQ(ierr);
2045b5a3613cSMatthew G. Knepley     ierr = VecDestroy(&faceGeometryFVM);CHKERRQ(ierr);
2046b5a3613cSMatthew G. Knepley     ierr = VecDestroy(&cellGeometryFVM);CHKERRQ(ierr);
2047b5a3613cSMatthew G. Knepley     ierr = DMDestroy(&dmGrad);CHKERRQ(ierr);
2048b5a3613cSMatthew G. Knepley   }
204973d901b8SMatthew G. Knepley   if (dmAux) {ierr = PetscFree(a);CHKERRQ(ierr);}
2050338f77d5SMatthew G. Knepley   ierr = PetscFree(u);CHKERRQ(ierr);
2051338f77d5SMatthew G. Knepley   /* Cleanup */
2052f99c8401SToby Isaac   if (affineQuad) {
2053f99c8401SToby Isaac     ierr = PetscFEGeomDestroy(&cgeomFEM);CHKERRQ(ierr);
2054f99c8401SToby Isaac   }
2055f99c8401SToby Isaac   ierr = PetscQuadratureDestroy(&affineQuad);CHKERRQ(ierr);
2056c330f8ffSToby Isaac   ierr = ISDestroy(&cellIS);CHKERRQ(ierr);
2057338f77d5SMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &locX);CHKERRQ(ierr);
2058338f77d5SMatthew G. Knepley   PetscFunctionReturn(0);
2059338f77d5SMatthew G. Knepley }
2060338f77d5SMatthew G. Knepley 
2061338f77d5SMatthew G. Knepley /*@
2062338f77d5SMatthew G. Knepley   DMPlexComputeIntegralFEM - Form the integral over the domain from the global input X using pointwise functions specified by the user
2063338f77d5SMatthew G. Knepley 
2064338f77d5SMatthew G. Knepley   Input Parameters:
2065338f77d5SMatthew G. Knepley + dm - The mesh
2066338f77d5SMatthew G. Knepley . X  - Global input vector
2067338f77d5SMatthew G. Knepley - user - The user context
2068338f77d5SMatthew G. Knepley 
2069338f77d5SMatthew G. Knepley   Output Parameter:
2070338f77d5SMatthew G. Knepley . integral - Integral for each field
2071338f77d5SMatthew G. Knepley 
2072338f77d5SMatthew G. Knepley   Level: developer
2073338f77d5SMatthew G. Knepley 
2074446c23c1SPierre Jolivet .seealso: DMPlexSNESComputeResidualFEM()
2075338f77d5SMatthew G. Knepley @*/
2076b8feb594SMatthew G. Knepley PetscErrorCode DMPlexComputeIntegralFEM(DM dm, Vec X, PetscScalar *integral, void *user)
2077338f77d5SMatthew G. Knepley {
2078338f77d5SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dm->data;
2079b8feb594SMatthew G. Knepley   PetscScalar   *cintegral, *lintegral;
2080412e9a14SMatthew G. Knepley   PetscInt       Nf, f, cellHeight, cStart, cEnd, cell;
2081338f77d5SMatthew G. Knepley   PetscErrorCode ierr;
2082338f77d5SMatthew G. Knepley 
2083338f77d5SMatthew G. Knepley   PetscFunctionBegin;
2084338f77d5SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2085338f77d5SMatthew G. Knepley   PetscValidHeaderSpecific(X, VEC_CLASSID, 2);
2086338f77d5SMatthew G. Knepley   PetscValidPointer(integral, 3);
2087338f77d5SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
2088338f77d5SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
2089338f77d5SMatthew G. Knepley   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
2090412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
2091338f77d5SMatthew G. Knepley   /* TODO Introduce a loop over large chunks (right now this is a single chunk) */
2092338f77d5SMatthew G. Knepley   ierr = PetscCalloc2(Nf, &lintegral, (cEnd-cStart)*Nf, &cintegral);CHKERRQ(ierr);
2093338f77d5SMatthew G. Knepley   ierr = DMPlexComputeIntegral_Internal(dm, X, cStart, cEnd, cintegral, user);CHKERRQ(ierr);
2094338f77d5SMatthew G. Knepley   /* Sum up values */
2095338f77d5SMatthew G. Knepley   for (cell = cStart; cell < cEnd; ++cell) {
2096338f77d5SMatthew G. Knepley     const PetscInt c = cell - cStart;
2097338f77d5SMatthew G. Knepley 
2098338f77d5SMatthew G. Knepley     if (mesh->printFEM > 1) {ierr = DMPrintCellVector(cell, "Cell Integral", Nf, &cintegral[c*Nf]);CHKERRQ(ierr);}
2099b8feb594SMatthew G. Knepley     for (f = 0; f < Nf; ++f) lintegral[f] += cintegral[c*Nf+f];
2100338f77d5SMatthew G. Knepley   }
2101820f2d46SBarry Smith   ierr = MPIU_Allreduce(lintegral, integral, Nf, MPIU_SCALAR, MPIU_SUM, PetscObjectComm((PetscObject) dm));CHKERRMPI(ierr);
210273d901b8SMatthew G. Knepley   if (mesh->printFEM) {
2103338f77d5SMatthew G. Knepley     ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), "Integral:");CHKERRQ(ierr);
2104b8feb594SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), " %g", (double) PetscRealPart(integral[f]));CHKERRQ(ierr);}
210573d901b8SMatthew G. Knepley     ierr = PetscPrintf(PetscObjectComm((PetscObject) dm), "\n");CHKERRQ(ierr);
210673d901b8SMatthew G. Knepley   }
2107338f77d5SMatthew G. Knepley   ierr = PetscFree2(lintegral, cintegral);CHKERRQ(ierr);
2108338f77d5SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
2109338f77d5SMatthew G. Knepley   PetscFunctionReturn(0);
2110338f77d5SMatthew G. Knepley }
2111338f77d5SMatthew G. Knepley 
2112338f77d5SMatthew G. Knepley /*@
2113338f77d5SMatthew G. Knepley   DMPlexComputeCellwiseIntegralFEM - Form the vector of cellwise integrals F from the global input X using pointwise functions specified by the user
2114338f77d5SMatthew G. Knepley 
2115338f77d5SMatthew G. Knepley   Input Parameters:
2116338f77d5SMatthew G. Knepley + dm - The mesh
2117338f77d5SMatthew G. Knepley . X  - Global input vector
2118338f77d5SMatthew G. Knepley - user - The user context
2119338f77d5SMatthew G. Knepley 
2120338f77d5SMatthew G. Knepley   Output Parameter:
2121338f77d5SMatthew G. Knepley . integral - Cellwise integrals for each field
2122338f77d5SMatthew G. Knepley 
2123338f77d5SMatthew G. Knepley   Level: developer
2124338f77d5SMatthew G. Knepley 
2125446c23c1SPierre Jolivet .seealso: DMPlexSNESComputeResidualFEM()
2126338f77d5SMatthew G. Knepley @*/
2127338f77d5SMatthew G. Knepley PetscErrorCode DMPlexComputeCellwiseIntegralFEM(DM dm, Vec X, Vec F, void *user)
2128338f77d5SMatthew G. Knepley {
2129338f77d5SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dm->data;
2130338f77d5SMatthew G. Knepley   DM             dmF;
2131338f77d5SMatthew G. Knepley   PetscSection   sectionF;
2132338f77d5SMatthew G. Knepley   PetscScalar   *cintegral, *af;
2133412e9a14SMatthew G. Knepley   PetscInt       Nf, f, cellHeight, cStart, cEnd, cell;
2134338f77d5SMatthew G. Knepley   PetscErrorCode ierr;
2135338f77d5SMatthew G. Knepley 
2136338f77d5SMatthew G. Knepley   PetscFunctionBegin;
2137338f77d5SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2138338f77d5SMatthew G. Knepley   PetscValidHeaderSpecific(X, VEC_CLASSID, 2);
2139338f77d5SMatthew G. Knepley   PetscValidHeaderSpecific(F, VEC_CLASSID, 3);
2140338f77d5SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
2141338f77d5SMatthew G. Knepley   ierr = DMGetNumFields(dm, &Nf);CHKERRQ(ierr);
2142338f77d5SMatthew G. Knepley   ierr = DMPlexGetVTKCellHeight(dm, &cellHeight);CHKERRQ(ierr);
2143412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dm, cellHeight, &cStart, &cEnd);CHKERRQ(ierr);
2144338f77d5SMatthew G. Knepley   /* TODO Introduce a loop over large chunks (right now this is a single chunk) */
2145338f77d5SMatthew G. Knepley   ierr = PetscCalloc1((cEnd-cStart)*Nf, &cintegral);CHKERRQ(ierr);
2146338f77d5SMatthew G. Knepley   ierr = DMPlexComputeIntegral_Internal(dm, X, cStart, cEnd, cintegral, user);CHKERRQ(ierr);
2147338f77d5SMatthew G. Knepley   /* Put values in F*/
2148338f77d5SMatthew G. Knepley   ierr = VecGetDM(F, &dmF);CHKERRQ(ierr);
214992fd8e1eSJed Brown   ierr = DMGetLocalSection(dmF, &sectionF);CHKERRQ(ierr);
2150338f77d5SMatthew G. Knepley   ierr = VecGetArray(F, &af);CHKERRQ(ierr);
2151338f77d5SMatthew G. Knepley   for (cell = cStart; cell < cEnd; ++cell) {
2152338f77d5SMatthew G. Knepley     const PetscInt c = cell - cStart;
2153338f77d5SMatthew G. Knepley     PetscInt       dof, off;
2154338f77d5SMatthew G. Knepley 
2155338f77d5SMatthew G. Knepley     if (mesh->printFEM > 1) {ierr = DMPrintCellVector(cell, "Cell Integral", Nf, &cintegral[c*Nf]);CHKERRQ(ierr);}
2156338f77d5SMatthew G. Knepley     ierr = PetscSectionGetDof(sectionF, cell, &dof);CHKERRQ(ierr);
2157338f77d5SMatthew G. Knepley     ierr = PetscSectionGetOffset(sectionF, cell, &off);CHKERRQ(ierr);
2158338f77d5SMatthew G. Knepley     if (dof != Nf) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "The number of cell dofs %D != %D", dof, Nf);
2159338f77d5SMatthew G. Knepley     for (f = 0; f < Nf; ++f) af[off+f] = cintegral[c*Nf+f];
2160338f77d5SMatthew G. Knepley   }
2161338f77d5SMatthew G. Knepley   ierr = VecRestoreArray(F, &af);CHKERRQ(ierr);
2162338f77d5SMatthew G. Knepley   ierr = PetscFree(cintegral);CHKERRQ(ierr);
2163c1f031eeSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
216473d901b8SMatthew G. Knepley   PetscFunctionReturn(0);
216573d901b8SMatthew G. Knepley }
216673d901b8SMatthew G. Knepley 
21679b6f715bSMatthew G. Knepley static PetscErrorCode DMPlexComputeBdIntegral_Internal(DM dm, Vec locX, IS pointIS,
21689b6f715bSMatthew G. Knepley                                                        void (*func)(PetscInt, PetscInt, PetscInt,
216964c72086SMatthew G. Knepley                                                                     const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
217064c72086SMatthew G. Knepley                                                                     const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
217164c72086SMatthew G. Knepley                                                                     PetscReal, const PetscReal[], const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
217264c72086SMatthew G. Knepley                                                        PetscScalar *fintegral, void *user)
217364c72086SMatthew G. Knepley {
21749b6f715bSMatthew G. Knepley   DM                 plex = NULL, plexA = NULL;
2175a6e0b375SMatthew G. Knepley   DMEnclosureType    encAux;
21769b6f715bSMatthew G. Knepley   PetscDS            prob, probAux = NULL;
21779b6f715bSMatthew G. Knepley   PetscSection       section, sectionAux = NULL;
21789b6f715bSMatthew G. Knepley   Vec                locA = NULL;
21799b6f715bSMatthew G. Knepley   DMField            coordField;
21809b6f715bSMatthew G. Knepley   PetscInt           Nf,        totDim,        *uOff, *uOff_x;
21819b6f715bSMatthew G. Knepley   PetscInt           NfAux = 0, totDimAux = 0, *aOff = NULL;
21829b6f715bSMatthew G. Knepley   PetscScalar       *u, *a = NULL;
218364c72086SMatthew G. Knepley   const PetscScalar *constants;
21849b6f715bSMatthew G. Knepley   PetscInt           numConstants, f;
218564c72086SMatthew G. Knepley   PetscErrorCode     ierr;
218664c72086SMatthew G. Knepley 
218764c72086SMatthew G. Knepley   PetscFunctionBegin;
21889b6f715bSMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
21899b6f715bSMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
219064c72086SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
219192fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
219264c72086SMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
219364c72086SMatthew G. Knepley   /* Determine which discretizations we have */
21949b6f715bSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
219564c72086SMatthew G. Knepley     PetscObject  obj;
219664c72086SMatthew G. Knepley     PetscClassId id;
219764c72086SMatthew G. Knepley 
21989b6f715bSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
219964c72086SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
22009b6f715bSMatthew G. Knepley     if (id == PETSCFV_CLASSID) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Not supported for FVM (field %D)", f);
220164c72086SMatthew G. Knepley   }
220264c72086SMatthew G. Knepley   /* Read DS information */
220364c72086SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
220464c72086SMatthew G. Knepley   ierr = PetscDSGetComponentOffsets(prob, &uOff);CHKERRQ(ierr);
220564c72086SMatthew G. Knepley   ierr = PetscDSGetComponentDerivativeOffsets(prob, &uOff_x);CHKERRQ(ierr);
220664c72086SMatthew G. Knepley   ierr = PetscDSGetConstants(prob, &numConstants, &constants);CHKERRQ(ierr);
220764c72086SMatthew G. Knepley   /* Read Auxiliary DS information */
22089a2a23afSMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, NULL, 0, &locA);CHKERRQ(ierr);
22099b6f715bSMatthew G. Knepley   if (locA) {
22109b6f715bSMatthew G. Knepley     DM dmAux;
22119b6f715bSMatthew G. Knepley 
22129b6f715bSMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
2213a6e0b375SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
22149b6f715bSMatthew G. Knepley     ierr = DMConvert(dmAux, DMPLEX, &plexA);CHKERRQ(ierr);
221564c72086SMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
221664c72086SMatthew G. Knepley     ierr = PetscDSGetNumFields(probAux, &NfAux);CHKERRQ(ierr);
221792fd8e1eSJed Brown     ierr = DMGetLocalSection(dmAux, &sectionAux);CHKERRQ(ierr);
221864c72086SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
221964c72086SMatthew G. Knepley     ierr = PetscDSGetComponentOffsets(probAux, &aOff);CHKERRQ(ierr);
222064c72086SMatthew G. Knepley   }
22219b6f715bSMatthew G. Knepley   /* Integrate over points */
22229b6f715bSMatthew G. Knepley   {
22239b6f715bSMatthew G. Knepley     PetscFEGeom    *fgeom, *chunkGeom = NULL;
2224b7260050SToby Isaac     PetscInt        maxDegree;
22259b6f715bSMatthew G. Knepley     PetscQuadrature qGeom = NULL;
22269b6f715bSMatthew G. Knepley     const PetscInt *points;
22279b6f715bSMatthew G. Knepley     PetscInt        numFaces, face, Nq, field;
22289b6f715bSMatthew G. Knepley     PetscInt        numChunks, chunkSize, chunk, Nr, offset;
222964c72086SMatthew G. Knepley 
22309b6f715bSMatthew G. Knepley     ierr = ISGetLocalSize(pointIS, &numFaces);CHKERRQ(ierr);
22319b6f715bSMatthew G. Knepley     ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
22329b6f715bSMatthew G. Knepley     ierr = PetscCalloc2(numFaces*totDim, &u, locA ? numFaces*totDimAux : 0, &a);CHKERRQ(ierr);
2233b7260050SToby Isaac     ierr = DMFieldGetDegree(coordField, pointIS, NULL, &maxDegree);CHKERRQ(ierr);
223464c72086SMatthew G. Knepley     for (field = 0; field < Nf; ++field) {
223564c72086SMatthew G. Knepley       PetscFE fe;
223664c72086SMatthew G. Knepley 
223764c72086SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fe);CHKERRQ(ierr);
2238b7260050SToby Isaac       if (maxDegree <= 1) {ierr = DMFieldCreateDefaultQuadrature(coordField, pointIS, &qGeom);CHKERRQ(ierr);}
22399b6f715bSMatthew G. Knepley       if (!qGeom) {
22409b6f715bSMatthew G. Knepley         ierr = PetscFEGetFaceQuadrature(fe, &qGeom);CHKERRQ(ierr);
22419b6f715bSMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) qGeom);CHKERRQ(ierr);
22429b6f715bSMatthew G. Knepley       }
22439b6f715bSMatthew G. Knepley       ierr = PetscQuadratureGetData(qGeom, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
22449b6f715bSMatthew G. Knepley       ierr = DMPlexGetFEGeom(coordField, pointIS, qGeom, PETSC_TRUE, &fgeom);CHKERRQ(ierr);
22459b6f715bSMatthew G. Knepley       for (face = 0; face < numFaces; ++face) {
2246f15274beSMatthew Knepley         const PetscInt point = points[face], *support;
22479b6f715bSMatthew G. Knepley         PetscScalar    *x    = NULL;
2248f15274beSMatthew Knepley         PetscInt       i;
22499b6f715bSMatthew G. Knepley 
22509b6f715bSMatthew G. Knepley         ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
22519b6f715bSMatthew G. Knepley         ierr = DMPlexVecGetClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
22529b6f715bSMatthew G. Knepley         for (i = 0; i < totDim; ++i) u[face*totDim+i] = x[i];
22539b6f715bSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
22549b6f715bSMatthew G. Knepley         if (locA) {
22559b6f715bSMatthew G. Knepley           PetscInt subp;
2256a6e0b375SMatthew G. Knepley           ierr = DMGetEnclosurePoint(plexA, dm, encAux, support[0], &subp);CHKERRQ(ierr);
22579b6f715bSMatthew G. Knepley           ierr = DMPlexVecGetClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
22589b6f715bSMatthew G. Knepley           for (i = 0; i < totDimAux; ++i) a[f*totDimAux+i] = x[i];
22599b6f715bSMatthew G. Knepley           ierr = DMPlexVecRestoreClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
22609b6f715bSMatthew G. Knepley         }
22619b6f715bSMatthew G. Knepley       }
22629b6f715bSMatthew G. Knepley       /* Get blocking */
22639b6f715bSMatthew G. Knepley       {
22649b6f715bSMatthew G. Knepley         PetscQuadrature q;
22659b6f715bSMatthew G. Knepley         PetscInt        numBatches, batchSize, numBlocks, blockSize;
22669b6f715bSMatthew G. Knepley         PetscInt        Nq, Nb;
22679b6f715bSMatthew G. Knepley 
226864c72086SMatthew G. Knepley         ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
226964c72086SMatthew G. Knepley         ierr = PetscFEGetQuadrature(fe, &q);CHKERRQ(ierr);
227064c72086SMatthew G. Knepley         ierr = PetscQuadratureGetData(q, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
227164c72086SMatthew G. Knepley         ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
227264c72086SMatthew G. Knepley         blockSize = Nb*Nq;
227364c72086SMatthew G. Knepley         batchSize = numBlocks * blockSize;
22749b6f715bSMatthew G. Knepley         chunkSize = numBatches*batchSize;
227564c72086SMatthew G. Knepley         ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
22769b6f715bSMatthew G. Knepley         numChunks = numFaces / chunkSize;
22779b6f715bSMatthew G. Knepley         Nr        = numFaces % chunkSize;
227864c72086SMatthew G. Knepley         offset    = numFaces - Nr;
227964c72086SMatthew G. Knepley       }
22809b6f715bSMatthew G. Knepley       /* Do integration for each field */
22819b6f715bSMatthew G. Knepley       for (chunk = 0; chunk < numChunks; ++chunk) {
22829b6f715bSMatthew G. Knepley         ierr = PetscFEGeomGetChunk(fgeom, chunk*chunkSize, (chunk+1)*chunkSize, &chunkGeom);CHKERRQ(ierr);
22834bee2e38SMatthew G. Knepley         ierr = PetscFEIntegrateBd(prob, field, func, chunkSize, chunkGeom, u, probAux, a, fintegral);CHKERRQ(ierr);
22849b6f715bSMatthew G. Knepley         ierr = PetscFEGeomRestoreChunk(fgeom, 0, offset, &chunkGeom);CHKERRQ(ierr);
228564c72086SMatthew G. Knepley       }
22869b6f715bSMatthew G. Knepley       ierr = PetscFEGeomGetChunk(fgeom, offset, numFaces, &chunkGeom);CHKERRQ(ierr);
22874bee2e38SMatthew G. Knepley       ierr = PetscFEIntegrateBd(prob, field, func, Nr, chunkGeom, &u[offset*totDim], probAux, a ? &a[offset*totDimAux] : NULL, &fintegral[offset*Nf]);CHKERRQ(ierr);
22889b6f715bSMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(fgeom, offset, numFaces, &chunkGeom);CHKERRQ(ierr);
228964c72086SMatthew G. Knepley       /* Cleanup data arrays */
22909b6f715bSMatthew G. Knepley       ierr = DMPlexRestoreFEGeom(coordField, pointIS, qGeom, PETSC_TRUE, &fgeom);CHKERRQ(ierr);
22919b6f715bSMatthew G. Knepley       ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
22929b6f715bSMatthew G. Knepley       ierr = PetscFree2(u, a);CHKERRQ(ierr);
22939b6f715bSMatthew G. Knepley       ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
229464c72086SMatthew G. Knepley     }
229564c72086SMatthew G. Knepley   }
22969b6f715bSMatthew G. Knepley   if (plex)  {ierr = DMDestroy(&plex);CHKERRQ(ierr);}
22979b6f715bSMatthew G. Knepley   if (plexA) {ierr = DMDestroy(&plexA);CHKERRQ(ierr);}
22989b6f715bSMatthew G. Knepley   PetscFunctionReturn(0);
22999b6f715bSMatthew G. Knepley }
23009b6f715bSMatthew G. Knepley 
23019b6f715bSMatthew G. Knepley /*@
23029b6f715bSMatthew G. Knepley   DMPlexComputeBdIntegral - Form the integral over the specified boundary from the global input X using pointwise functions specified by the user
23039b6f715bSMatthew G. Knepley 
23049b6f715bSMatthew G. Knepley   Input Parameters:
23059b6f715bSMatthew G. Knepley + dm      - The mesh
23069b6f715bSMatthew G. Knepley . X       - Global input vector
23079b6f715bSMatthew G. Knepley . label   - The boundary DMLabel
23089b6f715bSMatthew G. Knepley . numVals - The number of label values to use, or PETSC_DETERMINE for all values
23099b6f715bSMatthew G. Knepley . vals    - The label values to use, or PETSC_NULL for all values
23109b6f715bSMatthew G. Knepley . func    = The function to integrate along the boundary
23119b6f715bSMatthew G. Knepley - user    - The user context
23129b6f715bSMatthew G. Knepley 
23139b6f715bSMatthew G. Knepley   Output Parameter:
23149b6f715bSMatthew G. Knepley . integral - Integral for each field
23159b6f715bSMatthew G. Knepley 
23169b6f715bSMatthew G. Knepley   Level: developer
23179b6f715bSMatthew G. Knepley 
23189b6f715bSMatthew G. Knepley .seealso: DMPlexComputeIntegralFEM(), DMPlexComputeBdResidualFEM()
23199b6f715bSMatthew G. Knepley @*/
23209b6f715bSMatthew G. Knepley PetscErrorCode DMPlexComputeBdIntegral(DM dm, Vec X, DMLabel label, PetscInt numVals, const PetscInt vals[],
23219b6f715bSMatthew G. Knepley                                        void (*func)(PetscInt, PetscInt, PetscInt,
23229b6f715bSMatthew G. Knepley                                                     const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
23239b6f715bSMatthew G. Knepley                                                     const PetscInt[], const PetscInt[], const PetscScalar[], const PetscScalar[], const PetscScalar[],
23249b6f715bSMatthew G. Knepley                                                     PetscReal, const PetscReal[], const PetscReal[], PetscInt, const PetscScalar[], PetscScalar[]),
23259b6f715bSMatthew G. Knepley                                        PetscScalar *integral, void *user)
23269b6f715bSMatthew G. Knepley {
23279b6f715bSMatthew G. Knepley   Vec            locX;
23289b6f715bSMatthew G. Knepley   PetscSection   section;
23299b6f715bSMatthew G. Knepley   DMLabel        depthLabel;
23309b6f715bSMatthew G. Knepley   IS             facetIS;
23319b6f715bSMatthew G. Knepley   PetscInt       dim, Nf, f, v;
23329b6f715bSMatthew G. Knepley   PetscErrorCode ierr;
23339b6f715bSMatthew G. Knepley 
23349b6f715bSMatthew G. Knepley   PetscFunctionBegin;
23359b6f715bSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
23369b6f715bSMatthew G. Knepley   PetscValidHeaderSpecific(X, VEC_CLASSID, 2);
23379b6f715bSMatthew G. Knepley   PetscValidPointer(label, 3);
23389b6f715bSMatthew G. Knepley   if (vals) PetscValidPointer(vals, 5);
2339064a246eSJacob Faibussowitsch   PetscValidPointer(integral, 7);
23409b6f715bSMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
23419b6f715bSMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
23429b6f715bSMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
23439b6f715bSMatthew G. Knepley   ierr = DMLabelGetStratumIS(depthLabel, dim-1, &facetIS);CHKERRQ(ierr);
234492fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
23459b6f715bSMatthew G. Knepley   ierr = PetscSectionGetNumFields(section, &Nf);CHKERRQ(ierr);
23469b6f715bSMatthew G. Knepley   /* Get local solution with boundary values */
23479b6f715bSMatthew G. Knepley   ierr = DMGetLocalVector(dm, &locX);CHKERRQ(ierr);
23489b6f715bSMatthew G. Knepley   ierr = DMPlexInsertBoundaryValues(dm, PETSC_TRUE, locX, 0.0, NULL, NULL, NULL);CHKERRQ(ierr);
23499b6f715bSMatthew G. Knepley   ierr = DMGlobalToLocalBegin(dm, X, INSERT_VALUES, locX);CHKERRQ(ierr);
23509b6f715bSMatthew G. Knepley   ierr = DMGlobalToLocalEnd(dm, X, INSERT_VALUES, locX);CHKERRQ(ierr);
23519b6f715bSMatthew G. Knepley   /* Loop over label values */
2352580bdb30SBarry Smith   ierr = PetscArrayzero(integral, Nf);CHKERRQ(ierr);
23539b6f715bSMatthew G. Knepley   for (v = 0; v < numVals; ++v) {
23549b6f715bSMatthew G. Knepley     IS           pointIS;
23559b6f715bSMatthew G. Knepley     PetscInt     numFaces, face;
23569b6f715bSMatthew G. Knepley     PetscScalar *fintegral;
23579b6f715bSMatthew G. Knepley 
23589b6f715bSMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, vals[v], &pointIS);CHKERRQ(ierr);
23599b6f715bSMatthew G. Knepley     if (!pointIS) continue; /* No points with that id on this process */
23609b6f715bSMatthew G. Knepley     {
23619b6f715bSMatthew G. Knepley       IS isectIS;
23629b6f715bSMatthew G. Knepley 
23639b6f715bSMatthew G. Knepley       /* TODO: Special cases of ISIntersect where it is quick to check a priori if one is a superset of the other */
23649b6f715bSMatthew G. Knepley       ierr = ISIntersect_Caching_Internal(facetIS, pointIS, &isectIS);CHKERRQ(ierr);
23659b6f715bSMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
23669b6f715bSMatthew G. Knepley       pointIS = isectIS;
23679b6f715bSMatthew G. Knepley     }
23689b6f715bSMatthew G. Knepley     ierr = ISGetLocalSize(pointIS, &numFaces);CHKERRQ(ierr);
23699b6f715bSMatthew G. Knepley     ierr = PetscCalloc1(numFaces*Nf, &fintegral);CHKERRQ(ierr);
23709b6f715bSMatthew G. Knepley     ierr = DMPlexComputeBdIntegral_Internal(dm, locX, pointIS, func, fintegral, user);CHKERRQ(ierr);
23719b6f715bSMatthew G. Knepley     /* Sum point contributions into integral */
23729b6f715bSMatthew G. Knepley     for (f = 0; f < Nf; ++f) for (face = 0; face < numFaces; ++face) integral[f] += fintegral[face*Nf+f];
23739b6f715bSMatthew G. Knepley     ierr = PetscFree(fintegral);CHKERRQ(ierr);
23749b6f715bSMatthew G. Knepley     ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
23759b6f715bSMatthew G. Knepley   }
237664c72086SMatthew G. Knepley   ierr = DMRestoreLocalVector(dm, &locX);CHKERRQ(ierr);
23779b6f715bSMatthew G. Knepley   ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
23789b6f715bSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_IntegralFEM,dm,0,0,0);CHKERRQ(ierr);
237964c72086SMatthew G. Knepley   PetscFunctionReturn(0);
238064c72086SMatthew G. Knepley }
238164c72086SMatthew G. Knepley 
2382d69c5d34SMatthew G. Knepley /*@
2383cf51de39SMatthew G. Knepley   DMPlexComputeInterpolatorNested - Form the local portion of the interpolation matrix I from the coarse DM to a uniformly refined DM.
2384d69c5d34SMatthew G. Knepley 
2385d69c5d34SMatthew G. Knepley   Input Parameters:
2386cf51de39SMatthew G. Knepley + dmc  - The coarse mesh
2387cf51de39SMatthew G. Knepley . dmf  - The fine mesh
2388cf51de39SMatthew G. Knepley . isRefined - Flag indicating regular refinement, rather than the same topology
2389d69c5d34SMatthew G. Knepley - user - The user context
2390d69c5d34SMatthew G. Knepley 
2391d69c5d34SMatthew G. Knepley   Output Parameter:
2392934789fcSMatthew G. Knepley . In  - The interpolation matrix
2393d69c5d34SMatthew G. Knepley 
2394d69c5d34SMatthew G. Knepley   Level: developer
2395d69c5d34SMatthew G. Knepley 
239668132eb9SMatthew G. Knepley .seealso: DMPlexComputeInterpolatorGeneral(), DMPlexComputeJacobianFEM()
2397d69c5d34SMatthew G. Knepley @*/
2398cf51de39SMatthew G. Knepley PetscErrorCode DMPlexComputeInterpolatorNested(DM dmc, DM dmf, PetscBool isRefined, Mat In, void *user)
2399d69c5d34SMatthew G. Knepley {
2400d69c5d34SMatthew G. Knepley   DM_Plex          *mesh  = (DM_Plex *) dmc->data;
2401d69c5d34SMatthew G. Knepley   const char       *name  = "Interpolator";
2402d69c5d34SMatthew G. Knepley   PetscFE          *feRef;
240397c42addSMatthew G. Knepley   PetscFV          *fvRef;
2404d69c5d34SMatthew G. Knepley   PetscSection      fsection, fglobalSection;
2405d69c5d34SMatthew G. Knepley   PetscSection      csection, cglobalSection;
2406d69c5d34SMatthew G. Knepley   PetscScalar      *elemMat;
2407485ad865SMatthew G. Knepley   PetscInt          dim, Nf, f, fieldI, fieldJ, offsetI, offsetJ, cStart, cEnd, c;
24082ea9c922SToby Isaac   PetscInt          cTotDim=0, rTotDim = 0;
2409d69c5d34SMatthew G. Knepley   PetscErrorCode    ierr;
2410d69c5d34SMatthew G. Knepley 
2411d69c5d34SMatthew G. Knepley   PetscFunctionBegin;
2412d69c5d34SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
2413c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dmf, &dim);CHKERRQ(ierr);
241492fd8e1eSJed Brown   ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);
2415e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmf, &fglobalSection);CHKERRQ(ierr);
241692fd8e1eSJed Brown   ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);
2417e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmc, &cglobalSection);CHKERRQ(ierr);
2418d69c5d34SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &Nf);CHKERRQ(ierr);
2419412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dmc, 0, &cStart, &cEnd);CHKERRQ(ierr);
242097c42addSMatthew G. Knepley   ierr = PetscCalloc2(Nf, &feRef, Nf, &fvRef);CHKERRQ(ierr);
2421d69c5d34SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
24222ea9c922SToby Isaac     PetscObject  obj, objc;
24232ea9c922SToby Isaac     PetscClassId id, idc;
24242ea9c922SToby Isaac     PetscInt     rNb = 0, Nc = 0, cNb = 0;
2425d69c5d34SMatthew G. Knepley 
24262ea9c922SToby Isaac     ierr = DMGetField(dmf, f, NULL, &obj);CHKERRQ(ierr);
242797c42addSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
242897c42addSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
242997c42addSMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
243097c42addSMatthew G. Knepley 
2431cf51de39SMatthew G. Knepley       if (isRefined) {
24320f2d7e86SMatthew G. Knepley         ierr = PetscFERefine(fe, &feRef[f]);CHKERRQ(ierr);
2433cf51de39SMatthew G. Knepley       } else {
2434cf51de39SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) fe);CHKERRQ(ierr);
2435cf51de39SMatthew G. Knepley         feRef[f] = fe;
2436cf51de39SMatthew G. Knepley       }
2437d69c5d34SMatthew G. Knepley       ierr = PetscFEGetDimension(feRef[f], &rNb);CHKERRQ(ierr);
24380f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
243997c42addSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
244097c42addSMatthew G. Knepley       PetscFV        fv = (PetscFV) obj;
244197c42addSMatthew G. Knepley       PetscDualSpace Q;
244297c42addSMatthew G. Knepley 
2443cf51de39SMatthew G. Knepley       if (isRefined) {
244497c42addSMatthew G. Knepley         ierr = PetscFVRefine(fv, &fvRef[f]);CHKERRQ(ierr);
2445cf51de39SMatthew G. Knepley       } else {
2446cf51de39SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) fv);CHKERRQ(ierr);
2447cf51de39SMatthew G. Knepley         fvRef[f] = fv;
2448cf51de39SMatthew G. Knepley       }
244997c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[f], &Q);CHKERRQ(ierr);
245097c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(Q, &rNb);CHKERRQ(ierr);
24512ea9c922SToby Isaac       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
245297c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
245397c42addSMatthew G. Knepley     }
24542ea9c922SToby Isaac     ierr = DMGetField(dmc, f, NULL, &objc);CHKERRQ(ierr);
24552ea9c922SToby Isaac     ierr = PetscObjectGetClassId(objc, &idc);CHKERRQ(ierr);
24562ea9c922SToby Isaac     if (idc == PETSCFE_CLASSID) {
24572ea9c922SToby Isaac       PetscFE fe = (PetscFE) objc;
24582ea9c922SToby Isaac 
24592ea9c922SToby Isaac       ierr = PetscFEGetDimension(fe, &cNb);CHKERRQ(ierr);
24602ea9c922SToby Isaac     } else if (id == PETSCFV_CLASSID) {
24612ea9c922SToby Isaac       PetscFV        fv = (PetscFV) obj;
24622ea9c922SToby Isaac       PetscDualSpace Q;
24632ea9c922SToby Isaac 
24642ea9c922SToby Isaac       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
24652ea9c922SToby Isaac       ierr = PetscDualSpaceGetDimension(Q, &cNb);CHKERRQ(ierr);
2466d69c5d34SMatthew G. Knepley     }
24672ea9c922SToby Isaac     rTotDim += rNb;
24682ea9c922SToby Isaac     cTotDim += cNb;
24692ea9c922SToby Isaac   }
24700f2d7e86SMatthew G. Knepley   ierr = PetscMalloc1(rTotDim*cTotDim,&elemMat);CHKERRQ(ierr);
2471580bdb30SBarry Smith   ierr = PetscArrayzero(elemMat, rTotDim*cTotDim);CHKERRQ(ierr);
2472d69c5d34SMatthew G. Knepley   for (fieldI = 0, offsetI = 0; fieldI < Nf; ++fieldI) {
2473d69c5d34SMatthew G. Knepley     PetscDualSpace   Qref;
2474d69c5d34SMatthew G. Knepley     PetscQuadrature  f;
2475d69c5d34SMatthew G. Knepley     const PetscReal *qpoints, *qweights;
2476d69c5d34SMatthew G. Knepley     PetscReal       *points;
2477d69c5d34SMatthew G. Knepley     PetscInt         npoints = 0, Nc, Np, fpdim, i, k, p, d;
2478d69c5d34SMatthew G. Knepley 
2479d69c5d34SMatthew G. Knepley     /* Compose points from all dual basis functionals */
248097c42addSMatthew G. Knepley     if (feRef[fieldI]) {
2481d69c5d34SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feRef[fieldI], &Qref);CHKERRQ(ierr);
24820f2d7e86SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feRef[fieldI], &Nc);CHKERRQ(ierr);
248397c42addSMatthew G. Knepley     } else {
248497c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[fieldI], &Qref);CHKERRQ(ierr);
248597c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvRef[fieldI], &Nc);CHKERRQ(ierr);
248697c42addSMatthew G. Knepley     }
2487d69c5d34SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Qref, &fpdim);CHKERRQ(ierr);
2488d69c5d34SMatthew G. Knepley     for (i = 0; i < fpdim; ++i) {
2489d69c5d34SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
24909c3cf19fSMatthew G. Knepley       ierr = PetscQuadratureGetData(f, NULL, NULL, &Np, NULL, NULL);CHKERRQ(ierr);
2491d69c5d34SMatthew G. Knepley       npoints += Np;
2492d69c5d34SMatthew G. Knepley     }
2493d69c5d34SMatthew G. Knepley     ierr = PetscMalloc1(npoints*dim,&points);CHKERRQ(ierr);
2494d69c5d34SMatthew G. Knepley     for (i = 0, k = 0; i < fpdim; ++i) {
2495d69c5d34SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
24969c3cf19fSMatthew G. Knepley       ierr = PetscQuadratureGetData(f, NULL, NULL, &Np, &qpoints, NULL);CHKERRQ(ierr);
2497d69c5d34SMatthew G. Knepley       for (p = 0; p < Np; ++p, ++k) for (d = 0; d < dim; ++d) points[k*dim+d] = qpoints[p*dim+d];
2498d69c5d34SMatthew G. Knepley     }
2499d69c5d34SMatthew G. Knepley 
2500d69c5d34SMatthew G. Knepley     for (fieldJ = 0, offsetJ = 0; fieldJ < Nf; ++fieldJ) {
250197c42addSMatthew G. Knepley       PetscObject  obj;
250297c42addSMatthew G. Knepley       PetscClassId id;
25039c3cf19fSMatthew G. Knepley       PetscInt     NcJ = 0, cpdim = 0, j, qNc;
2504d69c5d34SMatthew G. Knepley 
25052ea9c922SToby Isaac       ierr = DMGetField(dmc, fieldJ, NULL, &obj);CHKERRQ(ierr);
250697c42addSMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
250797c42addSMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
250897c42addSMatthew G. Knepley         PetscFE           fe = (PetscFE) obj;
2509ef0bb6c7SMatthew G. Knepley         PetscTabulation T  = NULL;
2510d69c5d34SMatthew G. Knepley 
2511d69c5d34SMatthew G. Knepley         /* Evaluate basis at points */
25120f2d7e86SMatthew G. Knepley         ierr = PetscFEGetNumComponents(fe, &NcJ);CHKERRQ(ierr);
25130f2d7e86SMatthew G. Knepley         ierr = PetscFEGetDimension(fe, &cpdim);CHKERRQ(ierr);
2514ffe73a53SMatthew G. Knepley         /* For now, fields only interpolate themselves */
2515ffe73a53SMatthew G. Knepley         if (fieldI == fieldJ) {
25169c3cf19fSMatthew 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);
2517ef0bb6c7SMatthew G. Knepley           ierr = PetscFECreateTabulation(fe, 1, npoints, points, 0, &T);CHKERRQ(ierr);
2518d69c5d34SMatthew G. Knepley           for (i = 0, k = 0; i < fpdim; ++i) {
2519d69c5d34SMatthew G. Knepley             ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
25209c3cf19fSMatthew G. Knepley             ierr = PetscQuadratureGetData(f, NULL, &qNc, &Np, NULL, &qweights);CHKERRQ(ierr);
25219c3cf19fSMatthew G. Knepley             if (qNc != NcJ) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in quadrature %D does not match coarse field %D", qNc, NcJ);
2522d69c5d34SMatthew G. Knepley             for (p = 0; p < Np; ++p, ++k) {
252336a6d9c0SMatthew G. Knepley               for (j = 0; j < cpdim; ++j) {
2524d172c84bSMatthew G. Knepley                 /*
2525d172c84bSMatthew G. Knepley                    cTotDim:            Total columns in element interpolation matrix, sum of number of dual basis functionals in each field
2526d172c84bSMatthew G. Knepley                    offsetI, offsetJ:   Offsets into the larger element interpolation matrix for different fields
2527d172c84bSMatthew G. Knepley                    fpdim, i, cpdim, j: Dofs for fine and coarse grids, correspond to dual space basis functionals
2528d172c84bSMatthew G. Knepley                    qNC, Nc, Ncj, c:    Number of components in this field
2529d172c84bSMatthew G. Knepley                    Np, p:              Number of quad points in the fine grid functional i
2530d172c84bSMatthew G. Knepley                    k:                  i*Np + p, overall point number for the interpolation
2531d172c84bSMatthew G. Knepley                 */
2532ef0bb6c7SMatthew G. Knepley                 for (c = 0; c < Nc; ++c) elemMat[(offsetI + i)*cTotDim + offsetJ + j] += T->T[0][k*cpdim*NcJ+j*Nc+c]*qweights[p*qNc+c];
253336a6d9c0SMatthew G. Knepley               }
2534d69c5d34SMatthew G. Knepley             }
2535d69c5d34SMatthew G. Knepley           }
2536ef0bb6c7SMatthew G. Knepley           ierr = PetscTabulationDestroy(&T);CHKERRQ(ierr);CHKERRQ(ierr);
2537ffe73a53SMatthew G. Knepley         }
253897c42addSMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
253997c42addSMatthew G. Knepley         PetscFV        fv = (PetscFV) obj;
254097c42addSMatthew G. Knepley 
254197c42addSMatthew G. Knepley         /* Evaluate constant function at points */
254297c42addSMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &NcJ);CHKERRQ(ierr);
254397c42addSMatthew G. Knepley         cpdim = 1;
254497c42addSMatthew G. Knepley         /* For now, fields only interpolate themselves */
254597c42addSMatthew G. Knepley         if (fieldI == fieldJ) {
2546ff1e0c32SBarry Smith           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);
254797c42addSMatthew G. Knepley           for (i = 0, k = 0; i < fpdim; ++i) {
254897c42addSMatthew G. Knepley             ierr = PetscDualSpaceGetFunctional(Qref, i, &f);CHKERRQ(ierr);
25499c3cf19fSMatthew G. Knepley             ierr = PetscQuadratureGetData(f, NULL, &qNc, &Np, NULL, &qweights);CHKERRQ(ierr);
25509c3cf19fSMatthew G. Knepley             if (qNc != NcJ) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in quadrature %D does not match coarse field %D", qNc, NcJ);
255197c42addSMatthew G. Knepley             for (p = 0; p < Np; ++p, ++k) {
255297c42addSMatthew G. Knepley               for (j = 0; j < cpdim; ++j) {
2553458eb97cSMatthew G. Knepley                 for (c = 0; c < Nc; ++c) elemMat[(offsetI + i)*cTotDim + offsetJ + j] += 1.0*qweights[p*qNc+c];
255497c42addSMatthew G. Knepley               }
255597c42addSMatthew G. Knepley             }
255697c42addSMatthew G. Knepley           }
255797c42addSMatthew G. Knepley         }
255897c42addSMatthew G. Knepley       }
2559d172c84bSMatthew G. Knepley       offsetJ += cpdim;
2560d69c5d34SMatthew G. Knepley     }
2561d172c84bSMatthew G. Knepley     offsetI += fpdim;
2562549a8adaSMatthew G. Knepley     ierr = PetscFree(points);CHKERRQ(ierr);
2563d69c5d34SMatthew G. Knepley   }
25640f2d7e86SMatthew G. Knepley   if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(0, name, rTotDim, cTotDim, elemMat);CHKERRQ(ierr);}
25657f5b169aSMatthew G. Knepley   /* Preallocate matrix */
25667f5b169aSMatthew G. Knepley   {
2567c094ef40SMatthew G. Knepley     Mat          preallocator;
2568c094ef40SMatthew G. Knepley     PetscScalar *vals;
2569c094ef40SMatthew G. Knepley     PetscInt    *cellCIndices, *cellFIndices;
2570c094ef40SMatthew G. Knepley     PetscInt     locRows, locCols, cell;
25717f5b169aSMatthew G. Knepley 
2572c094ef40SMatthew G. Knepley     ierr = MatGetLocalSize(In, &locRows, &locCols);CHKERRQ(ierr);
2573c094ef40SMatthew G. Knepley     ierr = MatCreate(PetscObjectComm((PetscObject) In), &preallocator);CHKERRQ(ierr);
2574c094ef40SMatthew G. Knepley     ierr = MatSetType(preallocator, MATPREALLOCATOR);CHKERRQ(ierr);
2575c094ef40SMatthew G. Knepley     ierr = MatSetSizes(preallocator, locRows, locCols, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr);
2576c094ef40SMatthew G. Knepley     ierr = MatSetUp(preallocator);CHKERRQ(ierr);
2577c094ef40SMatthew G. Knepley     ierr = PetscCalloc3(rTotDim*cTotDim, &vals,cTotDim,&cellCIndices,rTotDim,&cellFIndices);CHKERRQ(ierr);
25787f5b169aSMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
2579cf51de39SMatthew G. Knepley       if (isRefined) {
25807f5b169aSMatthew G. Knepley         ierr = DMPlexMatGetClosureIndicesRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, cell, cellCIndices, cellFIndices);CHKERRQ(ierr);
2581c094ef40SMatthew G. Knepley         ierr = MatSetValues(preallocator, rTotDim, cellFIndices, cTotDim, cellCIndices, vals, INSERT_VALUES);CHKERRQ(ierr);
2582cf51de39SMatthew G. Knepley       } else {
2583cf51de39SMatthew G. Knepley         ierr = DMPlexMatSetClosureGeneral(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, preallocator, cell, vals, INSERT_VALUES);CHKERRQ(ierr);
2584cf51de39SMatthew G. Knepley       }
25857f5b169aSMatthew G. Knepley     }
2586c094ef40SMatthew G. Knepley     ierr = PetscFree3(vals,cellCIndices,cellFIndices);CHKERRQ(ierr);
2587c094ef40SMatthew G. Knepley     ierr = MatAssemblyBegin(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2588c094ef40SMatthew G. Knepley     ierr = MatAssemblyEnd(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2589c094ef40SMatthew G. Knepley     ierr = MatPreallocatorPreallocate(preallocator, PETSC_TRUE, In);CHKERRQ(ierr);
2590c094ef40SMatthew G. Knepley     ierr = MatDestroy(&preallocator);CHKERRQ(ierr);
25917f5b169aSMatthew G. Knepley   }
25927f5b169aSMatthew G. Knepley   /* Fill matrix */
25937f5b169aSMatthew G. Knepley   ierr = MatZeroEntries(In);CHKERRQ(ierr);
2594d69c5d34SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
2595cf51de39SMatthew G. Knepley     if (isRefined) {
2596934789fcSMatthew G. Knepley       ierr = DMPlexMatSetClosureRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, In, c, elemMat, INSERT_VALUES);CHKERRQ(ierr);
2597cf51de39SMatthew G. Knepley     } else {
2598cf51de39SMatthew G. Knepley       ierr = DMPlexMatSetClosureGeneral(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, In, c, elemMat, INSERT_VALUES);CHKERRQ(ierr);
2599cf51de39SMatthew G. Knepley     }
2600d69c5d34SMatthew G. Knepley   }
2601549a8adaSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {ierr = PetscFEDestroy(&feRef[f]);CHKERRQ(ierr);}
260297c42addSMatthew G. Knepley   ierr = PetscFree2(feRef,fvRef);CHKERRQ(ierr);
2603549a8adaSMatthew G. Knepley   ierr = PetscFree(elemMat);CHKERRQ(ierr);
2604934789fcSMatthew G. Knepley   ierr = MatAssemblyBegin(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2605934789fcSMatthew G. Knepley   ierr = MatAssemblyEnd(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
26069318fe57SMatthew G. Knepley   if (mesh->printFEM > 1) {
2607825f8a23SLisandro Dalcin     ierr = PetscPrintf(PetscObjectComm((PetscObject)In), "%s:\n", name);CHKERRQ(ierr);
2608934789fcSMatthew G. Knepley     ierr = MatChop(In, 1.0e-10);CHKERRQ(ierr);
2609825f8a23SLisandro Dalcin     ierr = MatView(In, NULL);CHKERRQ(ierr);
2610d69c5d34SMatthew G. Knepley   }
2611d69c5d34SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
2612d69c5d34SMatthew G. Knepley   PetscFunctionReturn(0);
2613d69c5d34SMatthew G. Knepley }
26146c73c22cSMatthew G. Knepley 
2615bd041c0cSMatthew G. Knepley PetscErrorCode DMPlexComputeMassMatrixNested(DM dmc, DM dmf, Mat mass, void *user)
2616bd041c0cSMatthew G. Knepley {
2617bd041c0cSMatthew G. Knepley   SETERRQ(PetscObjectComm((PetscObject) dmc), PETSC_ERR_SUP, "Laziness");
2618bd041c0cSMatthew G. Knepley }
2619bd041c0cSMatthew G. Knepley 
262068132eb9SMatthew G. Knepley /*@
262168132eb9SMatthew G. Knepley   DMPlexComputeInterpolatorGeneral - Form the local portion of the interpolation matrix I from the coarse DM to a non-nested fine DM.
262268132eb9SMatthew G. Knepley 
262368132eb9SMatthew G. Knepley   Input Parameters:
262468132eb9SMatthew G. Knepley + dmf  - The fine mesh
262568132eb9SMatthew G. Knepley . dmc  - The coarse mesh
262668132eb9SMatthew G. Knepley - user - The user context
262768132eb9SMatthew G. Knepley 
262868132eb9SMatthew G. Knepley   Output Parameter:
262968132eb9SMatthew G. Knepley . In  - The interpolation matrix
263068132eb9SMatthew G. Knepley 
263168132eb9SMatthew G. Knepley   Level: developer
263268132eb9SMatthew G. Knepley 
263368132eb9SMatthew G. Knepley .seealso: DMPlexComputeInterpolatorNested(), DMPlexComputeJacobianFEM()
263468132eb9SMatthew G. Knepley @*/
263568132eb9SMatthew G. Knepley PetscErrorCode DMPlexComputeInterpolatorGeneral(DM dmc, DM dmf, Mat In, void *user)
26364ef9d792SMatthew G. Knepley {
263764e98e1dSMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dmf->data;
263864e98e1dSMatthew G. Knepley   const char    *name = "Interpolator";
26394ef9d792SMatthew G. Knepley   PetscDS        prob;
26404ef9d792SMatthew G. Knepley   PetscSection   fsection, csection, globalFSection, globalCSection;
2641e8f14785SLisandro Dalcin   PetscHSetIJ    ht;
26424ef9d792SMatthew G. Knepley   PetscLayout    rLayout;
26434ef9d792SMatthew G. Knepley   PetscInt      *dnz, *onz;
26444ef9d792SMatthew G. Knepley   PetscInt       locRows, rStart, rEnd;
26454ef9d792SMatthew G. Knepley   PetscReal     *x, *v0, *J, *invJ, detJ;
26464ef9d792SMatthew G. Knepley   PetscReal     *v0c, *Jc, *invJc, detJc;
26474ef9d792SMatthew G. Knepley   PetscScalar   *elemMat;
26484ef9d792SMatthew G. Knepley   PetscInt       dim, Nf, field, totDim, cStart, cEnd, cell, ccell;
26494ef9d792SMatthew G. Knepley   PetscErrorCode ierr;
26504ef9d792SMatthew G. Knepley 
26514ef9d792SMatthew G. Knepley   PetscFunctionBegin;
265277711781SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
26534ef9d792SMatthew G. Knepley   ierr = DMGetCoordinateDim(dmc, &dim);CHKERRQ(ierr);
26544ef9d792SMatthew G. Knepley   ierr = DMGetDS(dmc, &prob);CHKERRQ(ierr);
26554bee2e38SMatthew G. Knepley   ierr = PetscDSGetWorkspace(prob, &x, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
26564ef9d792SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
26574ef9d792SMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
26584ef9d792SMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0c,dim*dim,&Jc,dim*dim,&invJc);CHKERRQ(ierr);
265992fd8e1eSJed Brown   ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);
2660e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);
266192fd8e1eSJed Brown   ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);
2662e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);
26634ef9d792SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dmf, 0, &cStart, &cEnd);CHKERRQ(ierr);
26644ef9d792SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
26659c3cf19fSMatthew G. Knepley   ierr = PetscMalloc1(totDim, &elemMat);CHKERRQ(ierr);
26664ef9d792SMatthew G. Knepley 
26674ef9d792SMatthew G. Knepley   ierr = MatGetLocalSize(In, &locRows, NULL);CHKERRQ(ierr);
26684ef9d792SMatthew G. Knepley   ierr = PetscLayoutCreate(PetscObjectComm((PetscObject) In), &rLayout);CHKERRQ(ierr);
26694ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr);
26704ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr);
26714ef9d792SMatthew G. Knepley   ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr);
26724ef9d792SMatthew G. Knepley   ierr = PetscLayoutGetRange(rLayout, &rStart, &rEnd);CHKERRQ(ierr);
26734ef9d792SMatthew G. Knepley   ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr);
26744ef9d792SMatthew G. Knepley   ierr = PetscCalloc2(locRows,&dnz,locRows,&onz);CHKERRQ(ierr);
2675e8f14785SLisandro Dalcin   ierr = PetscHSetIJCreate(&ht);CHKERRQ(ierr);
26764ef9d792SMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
26774ef9d792SMatthew G. Knepley     PetscObject      obj;
26784ef9d792SMatthew G. Knepley     PetscClassId     id;
2679c0d7054bSMatthew G. Knepley     PetscDualSpace   Q = NULL;
26804ef9d792SMatthew G. Knepley     PetscQuadrature  f;
268117f047d8SMatthew G. Knepley     const PetscReal *qpoints;
268217f047d8SMatthew G. Knepley     PetscInt         Nc, Np, fpdim, i, d;
26834ef9d792SMatthew G. Knepley 
26844ef9d792SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
26854ef9d792SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
26864ef9d792SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
26874ef9d792SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
26884ef9d792SMatthew G. Knepley 
26894ef9d792SMatthew G. Knepley       ierr = PetscFEGetDualSpace(fe, &Q);CHKERRQ(ierr);
26904ef9d792SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
26914ef9d792SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
26924ef9d792SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
26934ef9d792SMatthew G. Knepley 
26944ef9d792SMatthew G. Knepley       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
26954ef9d792SMatthew G. Knepley       Nc   = 1;
26964ef9d792SMatthew G. Knepley     }
26974ef9d792SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Q, &fpdim);CHKERRQ(ierr);
26984ef9d792SMatthew G. Knepley     /* For each fine grid cell */
26994ef9d792SMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
27004ef9d792SMatthew G. Knepley       PetscInt *findices,   *cindices;
27014ef9d792SMatthew G. Knepley       PetscInt  numFIndices, numCIndices;
27024ef9d792SMatthew G. Knepley 
270371f0bbf9SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
27044ef9d792SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
2705ff1e0c32SBarry Smith       if (numFIndices != fpdim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of fine indices %D != %D dual basis vecs", numFIndices, fpdim);
27064ef9d792SMatthew G. Knepley       for (i = 0; i < fpdim; ++i) {
27074ef9d792SMatthew G. Knepley         Vec             pointVec;
27084ef9d792SMatthew G. Knepley         PetscScalar    *pV;
27093a93e3b7SToby Isaac         PetscSF         coarseCellSF = NULL;
27103a93e3b7SToby Isaac         const PetscSFNode *coarseCells;
27119c3cf19fSMatthew G. Knepley         PetscInt        numCoarseCells, q, c;
27124ef9d792SMatthew G. Knepley 
27134ef9d792SMatthew G. Knepley         /* Get points from the dual basis functional quadrature */
27144ef9d792SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(Q, i, &f);CHKERRQ(ierr);
27159c3cf19fSMatthew G. Knepley         ierr = PetscQuadratureGetData(f, NULL, NULL, &Np, &qpoints, NULL);CHKERRQ(ierr);
27164ef9d792SMatthew G. Knepley         ierr = VecCreateSeq(PETSC_COMM_SELF, Np*dim, &pointVec);CHKERRQ(ierr);
27174ef9d792SMatthew G. Knepley         ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
27184ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
27194ef9d792SMatthew G. Knepley         for (q = 0; q < Np; ++q) {
2720c330f8ffSToby Isaac           const PetscReal xi0[3] = {-1., -1., -1.};
2721c330f8ffSToby Isaac 
27224ef9d792SMatthew G. Knepley           /* Transform point to real space */
2723c330f8ffSToby Isaac           CoordinatesRefToReal(dim, dim, xi0, v0, J, &qpoints[q*dim], x);
27244ef9d792SMatthew G. Knepley           for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
27254ef9d792SMatthew G. Knepley         }
27264ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
27274ef9d792SMatthew G. Knepley         /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
27281555c271SMatthew G. Knepley         /* OPT: Pack all quad points from fine cell */
272962a38674SMatthew G. Knepley         ierr = DMLocatePoints(dmc, pointVec, DM_POINTLOCATION_NEAREST, &coarseCellSF);CHKERRQ(ierr);
27303a93e3b7SToby Isaac         ierr = PetscSFViewFromOptions(coarseCellSF, NULL, "-interp_sf_view");CHKERRQ(ierr);
27314ef9d792SMatthew G. Knepley         /* Update preallocation info */
27323a93e3b7SToby Isaac         ierr = PetscSFGetGraph(coarseCellSF, NULL, &numCoarseCells, NULL, &coarseCells);CHKERRQ(ierr);
27333a93e3b7SToby Isaac         if (numCoarseCells != Np) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Not all closure points located");
27349c3cf19fSMatthew G. Knepley         {
2735e8f14785SLisandro Dalcin           PetscHashIJKey key;
2736e8f14785SLisandro Dalcin           PetscBool      missing;
27374ef9d792SMatthew G. Knepley 
2738e8f14785SLisandro Dalcin           key.i = findices[i];
2739e8f14785SLisandro Dalcin           if (key.i >= 0) {
27404ef9d792SMatthew G. Knepley             /* Get indices for coarse elements */
27414ef9d792SMatthew G. Knepley             for (ccell = 0; ccell < numCoarseCells; ++ccell) {
274271f0bbf9SMatthew G. Knepley               ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
27434ef9d792SMatthew G. Knepley               for (c = 0; c < numCIndices; ++c) {
2744e8f14785SLisandro Dalcin                 key.j = cindices[c];
2745e8f14785SLisandro Dalcin                 if (key.j < 0) continue;
2746e8f14785SLisandro Dalcin                 ierr = PetscHSetIJQueryAdd(ht, key, &missing);CHKERRQ(ierr);
27474ef9d792SMatthew G. Knepley                 if (missing) {
2748e8f14785SLisandro Dalcin                   if ((key.j >= rStart) && (key.j < rEnd)) ++dnz[key.i-rStart];
2749e8f14785SLisandro Dalcin                   else                                     ++onz[key.i-rStart];
27504ef9d792SMatthew G. Knepley                 }
27514ef9d792SMatthew G. Knepley               }
275271f0bbf9SMatthew G. Knepley               ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
27534ef9d792SMatthew G. Knepley             }
27544ef9d792SMatthew G. Knepley           }
27558c543595SMatthew G. Knepley         }
27563a93e3b7SToby Isaac         ierr = PetscSFDestroy(&coarseCellSF);CHKERRQ(ierr);
27574ef9d792SMatthew G. Knepley         ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
27584ef9d792SMatthew G. Knepley       }
275971f0bbf9SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
27604ef9d792SMatthew G. Knepley     }
27614ef9d792SMatthew G. Knepley   }
2762e8f14785SLisandro Dalcin   ierr = PetscHSetIJDestroy(&ht);CHKERRQ(ierr);
27634ef9d792SMatthew G. Knepley   ierr = MatXAIJSetPreallocation(In, 1, dnz, onz, NULL, NULL);CHKERRQ(ierr);
27644ef9d792SMatthew G. Knepley   ierr = MatSetOption(In, MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
27654ef9d792SMatthew G. Knepley   ierr = PetscFree2(dnz,onz);CHKERRQ(ierr);
27664ef9d792SMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
27674ef9d792SMatthew G. Knepley     PetscObject       obj;
27684ef9d792SMatthew G. Knepley     PetscClassId      id;
2769c0d7054bSMatthew G. Knepley     PetscDualSpace    Q = NULL;
2770ef0bb6c7SMatthew G. Knepley     PetscTabulation T = NULL;
27714ef9d792SMatthew G. Knepley     PetscQuadrature   f;
27724ef9d792SMatthew G. Knepley     const PetscReal  *qpoints, *qweights;
27739c3cf19fSMatthew G. Knepley     PetscInt          Nc, qNc, Np, fpdim, i, d;
27744ef9d792SMatthew G. Knepley 
27754ef9d792SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
27764ef9d792SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
27774ef9d792SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
27784ef9d792SMatthew G. Knepley       PetscFE fe = (PetscFE) obj;
27794ef9d792SMatthew G. Knepley 
27804ef9d792SMatthew G. Knepley       ierr = PetscFEGetDualSpace(fe, &Q);CHKERRQ(ierr);
27814ef9d792SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
2782ef0bb6c7SMatthew G. Knepley       ierr = PetscFECreateTabulation(fe, 1, 1, x, 0, &T);CHKERRQ(ierr);
27834ef9d792SMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
27844ef9d792SMatthew G. Knepley       PetscFV fv = (PetscFV) obj;
27854ef9d792SMatthew G. Knepley 
27864ef9d792SMatthew G. Knepley       ierr = PetscFVGetDualSpace(fv, &Q);CHKERRQ(ierr);
27874ef9d792SMatthew G. Knepley       Nc   = 1;
2788ff1e0c32SBarry Smith     } else SETERRQ1(PetscObjectComm((PetscObject)dmc),PETSC_ERR_ARG_WRONG,"Unknown discretization type for field %D",field);
27894ef9d792SMatthew G. Knepley     ierr = PetscDualSpaceGetDimension(Q, &fpdim);CHKERRQ(ierr);
27904ef9d792SMatthew G. Knepley     /* For each fine grid cell */
27914ef9d792SMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
27924ef9d792SMatthew G. Knepley       PetscInt *findices,   *cindices;
27934ef9d792SMatthew G. Knepley       PetscInt  numFIndices, numCIndices;
27944ef9d792SMatthew G. Knepley 
279571f0bbf9SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
27964ef9d792SMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
2797ff1e0c32SBarry Smith       if (numFIndices != fpdim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of fine indices %D != %D dual basis vecs", numFIndices, fpdim);
27984ef9d792SMatthew G. Knepley       for (i = 0; i < fpdim; ++i) {
27994ef9d792SMatthew G. Knepley         Vec             pointVec;
28004ef9d792SMatthew G. Knepley         PetscScalar    *pV;
280112111d7cSToby Isaac         PetscSF         coarseCellSF = NULL;
28023a93e3b7SToby Isaac         const PetscSFNode *coarseCells;
280317f047d8SMatthew G. Knepley         PetscInt        numCoarseCells, cpdim, q, c, j;
28044ef9d792SMatthew G. Knepley 
28054ef9d792SMatthew G. Knepley         /* Get points from the dual basis functional quadrature */
28064ef9d792SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(Q, i, &f);CHKERRQ(ierr);
28079c3cf19fSMatthew G. Knepley         ierr = PetscQuadratureGetData(f, NULL, &qNc, &Np, &qpoints, &qweights);CHKERRQ(ierr);
28089c3cf19fSMatthew G. Knepley         if (qNc != Nc) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components in quadrature %D does not match coarse field %D", qNc, Nc);
28094ef9d792SMatthew G. Knepley         ierr = VecCreateSeq(PETSC_COMM_SELF, Np*dim, &pointVec);CHKERRQ(ierr);
28104ef9d792SMatthew G. Knepley         ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
28114ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
28124ef9d792SMatthew G. Knepley         for (q = 0; q < Np; ++q) {
2813c330f8ffSToby Isaac           const PetscReal xi0[3] = {-1., -1., -1.};
2814c330f8ffSToby Isaac 
28154ef9d792SMatthew G. Knepley           /* Transform point to real space */
2816c330f8ffSToby Isaac           CoordinatesRefToReal(dim, dim, xi0, v0, J, &qpoints[q*dim], x);
28174ef9d792SMatthew G. Knepley           for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
28184ef9d792SMatthew G. Knepley         }
28194ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
28204ef9d792SMatthew G. Knepley         /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
28211555c271SMatthew G. Knepley         /* OPT: Read this out from preallocation information */
282262a38674SMatthew G. Knepley         ierr = DMLocatePoints(dmc, pointVec, DM_POINTLOCATION_NEAREST, &coarseCellSF);CHKERRQ(ierr);
28234ef9d792SMatthew G. Knepley         /* Update preallocation info */
28243a93e3b7SToby Isaac         ierr = PetscSFGetGraph(coarseCellSF, NULL, &numCoarseCells, NULL, &coarseCells);CHKERRQ(ierr);
28253a93e3b7SToby Isaac         if (numCoarseCells != Np) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Not all closure points located");
28264ef9d792SMatthew G. Knepley         ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
28274ef9d792SMatthew G. Knepley         for (ccell = 0; ccell < numCoarseCells; ++ccell) {
2828826eb36dSMatthew G. Knepley           PetscReal pVReal[3];
2829c330f8ffSToby Isaac           const PetscReal xi0[3] = {-1., -1., -1.};
2830826eb36dSMatthew G. Knepley 
283171f0bbf9SMatthew G. Knepley           ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
28324ef9d792SMatthew G. Knepley           /* Transform points from real space to coarse reference space */
28333a93e3b7SToby Isaac           ierr = DMPlexComputeCellGeometryFEM(dmc, coarseCells[ccell].index, NULL, v0c, Jc, invJc, &detJc);CHKERRQ(ierr);
2834e2d86523SMatthew G. Knepley           for (d = 0; d < dim; ++d) pVReal[d] = PetscRealPart(pV[ccell*dim+d]);
2835c330f8ffSToby Isaac           CoordinatesRealToRef(dim, dim, xi0, v0c, invJc, pVReal, x);
28364ef9d792SMatthew G. Knepley 
28374ef9d792SMatthew G. Knepley           if (id == PETSCFE_CLASSID) {
28384ef9d792SMatthew G. Knepley             PetscFE fe = (PetscFE) obj;
28394ef9d792SMatthew G. Knepley 
28404ef9d792SMatthew G. Knepley             /* Evaluate coarse basis on contained point */
28414ef9d792SMatthew G. Knepley             ierr = PetscFEGetDimension(fe, &cpdim);CHKERRQ(ierr);
2842ef0bb6c7SMatthew G. Knepley             ierr = PetscFEComputeTabulation(fe, 1, x, 0, T);CHKERRQ(ierr);
2843580bdb30SBarry Smith             ierr = PetscArrayzero(elemMat, cpdim);CHKERRQ(ierr);
28444ef9d792SMatthew G. Knepley             /* Get elemMat entries by multiplying by weight */
28454ef9d792SMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
2846ef0bb6c7SMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[j] += T->T[0][j*Nc + c]*qweights[ccell*qNc + c];
28474ef9d792SMatthew G. Knepley             }
28484ef9d792SMatthew G. Knepley           } else {
28494ef9d792SMatthew G. Knepley             cpdim = 1;
28504ef9d792SMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
28519c3cf19fSMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[j] += 1.0*qweights[ccell*qNc + c];
28524ef9d792SMatthew G. Knepley             }
28534ef9d792SMatthew G. Knepley           }
28544ef9d792SMatthew G. Knepley           /* Update interpolator */
28559c3cf19fSMatthew G. Knepley           if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, 1, numCIndices, elemMat);CHKERRQ(ierr);}
28569c3cf19fSMatthew G. Knepley           if (numCIndices != cpdim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Number of element matrix columns %D != %D", numCIndices, cpdim);
28579c3cf19fSMatthew G. Knepley           ierr = MatSetValues(In, 1, &findices[i], numCIndices, cindices, elemMat, INSERT_VALUES);CHKERRQ(ierr);
285871f0bbf9SMatthew G. Knepley           ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
28594ef9d792SMatthew G. Knepley         }
28604ef9d792SMatthew G. Knepley         ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
28613a93e3b7SToby Isaac         ierr = PetscSFDestroy(&coarseCellSF);CHKERRQ(ierr);
28624ef9d792SMatthew G. Knepley         ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
28634ef9d792SMatthew G. Knepley       }
286471f0bbf9SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
28654ef9d792SMatthew G. Knepley     }
2866ef0bb6c7SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {ierr = PetscTabulationDestroy(&T);CHKERRQ(ierr);}
28674ef9d792SMatthew G. Knepley   }
28684ef9d792SMatthew G. Knepley   ierr = PetscFree3(v0,J,invJ);CHKERRQ(ierr);
28694ef9d792SMatthew G. Knepley   ierr = PetscFree3(v0c,Jc,invJc);CHKERRQ(ierr);
28704ef9d792SMatthew G. Knepley   ierr = PetscFree(elemMat);CHKERRQ(ierr);
28714ef9d792SMatthew G. Knepley   ierr = MatAssemblyBegin(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
28724ef9d792SMatthew G. Knepley   ierr = MatAssemblyEnd(In, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
287377711781SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_InterpolatorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
28744ef9d792SMatthew G. Knepley   PetscFunctionReturn(0);
28754ef9d792SMatthew G. Knepley }
28764ef9d792SMatthew G. Knepley 
287746fa42a0SMatthew G. Knepley /*@
2878bd041c0cSMatthew G. Knepley   DMPlexComputeMassMatrixGeneral - Form the local portion of the mass matrix M from the coarse DM to a non-nested fine DM.
2879bd041c0cSMatthew G. Knepley 
2880bd041c0cSMatthew G. Knepley   Input Parameters:
2881bd041c0cSMatthew G. Knepley + dmf  - The fine mesh
2882bd041c0cSMatthew G. Knepley . dmc  - The coarse mesh
2883bd041c0cSMatthew G. Knepley - user - The user context
2884bd041c0cSMatthew G. Knepley 
2885bd041c0cSMatthew G. Knepley   Output Parameter:
2886bd041c0cSMatthew G. Knepley . mass  - The mass matrix
2887bd041c0cSMatthew G. Knepley 
2888bd041c0cSMatthew G. Knepley   Level: developer
2889bd041c0cSMatthew G. Knepley 
2890bd041c0cSMatthew G. Knepley .seealso: DMPlexComputeMassMatrixNested(), DMPlexComputeInterpolatorNested(), DMPlexComputeInterpolatorGeneral(), DMPlexComputeJacobianFEM()
2891bd041c0cSMatthew G. Knepley @*/
2892bd041c0cSMatthew G. Knepley PetscErrorCode DMPlexComputeMassMatrixGeneral(DM dmc, DM dmf, Mat mass, void *user)
2893bd041c0cSMatthew G. Knepley {
2894bd041c0cSMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dmf->data;
2895bd041c0cSMatthew G. Knepley   const char    *name = "Mass Matrix";
2896bd041c0cSMatthew G. Knepley   PetscDS        prob;
2897bd041c0cSMatthew G. Knepley   PetscSection   fsection, csection, globalFSection, globalCSection;
2898e8f14785SLisandro Dalcin   PetscHSetIJ    ht;
2899bd041c0cSMatthew G. Knepley   PetscLayout    rLayout;
2900bd041c0cSMatthew G. Knepley   PetscInt      *dnz, *onz;
2901bd041c0cSMatthew G. Knepley   PetscInt       locRows, rStart, rEnd;
2902bd041c0cSMatthew G. Knepley   PetscReal     *x, *v0, *J, *invJ, detJ;
2903bd041c0cSMatthew G. Knepley   PetscReal     *v0c, *Jc, *invJc, detJc;
2904bd041c0cSMatthew G. Knepley   PetscScalar   *elemMat;
2905bd041c0cSMatthew G. Knepley   PetscInt       dim, Nf, field, totDim, cStart, cEnd, cell, ccell;
2906bd041c0cSMatthew G. Knepley   PetscErrorCode ierr;
2907bd041c0cSMatthew G. Knepley 
2908bd041c0cSMatthew G. Knepley   PetscFunctionBegin;
2909bd041c0cSMatthew G. Knepley   ierr = DMGetCoordinateDim(dmc, &dim);CHKERRQ(ierr);
2910bd041c0cSMatthew G. Knepley   ierr = DMGetDS(dmc, &prob);CHKERRQ(ierr);
29114bee2e38SMatthew G. Knepley   ierr = PetscDSGetWorkspace(prob, &x, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
2912bd041c0cSMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
2913bd041c0cSMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0,dim*dim,&J,dim*dim,&invJ);CHKERRQ(ierr);
2914bd041c0cSMatthew G. Knepley   ierr = PetscMalloc3(dim,&v0c,dim*dim,&Jc,dim*dim,&invJc);CHKERRQ(ierr);
291592fd8e1eSJed Brown   ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);
2916e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr);
291792fd8e1eSJed Brown   ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);
2918e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmc, &globalCSection);CHKERRQ(ierr);
2919bd041c0cSMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dmf, 0, &cStart, &cEnd);CHKERRQ(ierr);
2920bd041c0cSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
2921bd041c0cSMatthew G. Knepley   ierr = PetscMalloc1(totDim, &elemMat);CHKERRQ(ierr);
2922bd041c0cSMatthew G. Knepley 
2923bd041c0cSMatthew G. Knepley   ierr = MatGetLocalSize(mass, &locRows, NULL);CHKERRQ(ierr);
2924bd041c0cSMatthew G. Knepley   ierr = PetscLayoutCreate(PetscObjectComm((PetscObject) mass), &rLayout);CHKERRQ(ierr);
2925bd041c0cSMatthew G. Knepley   ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr);
2926bd041c0cSMatthew G. Knepley   ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr);
2927bd041c0cSMatthew G. Knepley   ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr);
2928bd041c0cSMatthew G. Knepley   ierr = PetscLayoutGetRange(rLayout, &rStart, &rEnd);CHKERRQ(ierr);
2929bd041c0cSMatthew G. Knepley   ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr);
2930bd041c0cSMatthew G. Knepley   ierr = PetscCalloc2(locRows,&dnz,locRows,&onz);CHKERRQ(ierr);
2931e8f14785SLisandro Dalcin   ierr = PetscHSetIJCreate(&ht);CHKERRQ(ierr);
2932bd041c0cSMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
2933bd041c0cSMatthew G. Knepley     PetscObject      obj;
2934bd041c0cSMatthew G. Knepley     PetscClassId     id;
2935bd041c0cSMatthew G. Knepley     PetscQuadrature  quad;
2936bd041c0cSMatthew G. Knepley     const PetscReal *qpoints;
2937bd041c0cSMatthew G. Knepley     PetscInt         Nq, Nc, i, d;
2938bd041c0cSMatthew G. Knepley 
2939bd041c0cSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
2940bd041c0cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
2941bd041c0cSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {ierr = PetscFEGetQuadrature((PetscFE) obj, &quad);CHKERRQ(ierr);}
2942bd041c0cSMatthew G. Knepley     else                       {ierr = PetscFVGetQuadrature((PetscFV) obj, &quad);CHKERRQ(ierr);}
2943bd041c0cSMatthew G. Knepley     ierr = PetscQuadratureGetData(quad, NULL, &Nc, &Nq, &qpoints, NULL);CHKERRQ(ierr);
2944bd041c0cSMatthew G. Knepley     /* For each fine grid cell */
2945bd041c0cSMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
2946bd041c0cSMatthew G. Knepley       Vec                pointVec;
2947bd041c0cSMatthew G. Knepley       PetscScalar       *pV;
2948bd041c0cSMatthew G. Knepley       PetscSF            coarseCellSF = NULL;
2949bd041c0cSMatthew G. Knepley       const PetscSFNode *coarseCells;
2950bd041c0cSMatthew G. Knepley       PetscInt           numCoarseCells, q, c;
2951bd041c0cSMatthew G. Knepley       PetscInt          *findices,   *cindices;
2952bd041c0cSMatthew G. Knepley       PetscInt           numFIndices, numCIndices;
2953bd041c0cSMatthew G. Knepley 
295471f0bbf9SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
2955bd041c0cSMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
2956bd041c0cSMatthew G. Knepley       /* Get points from the quadrature */
2957bd041c0cSMatthew G. Knepley       ierr = VecCreateSeq(PETSC_COMM_SELF, Nq*dim, &pointVec);CHKERRQ(ierr);
2958bd041c0cSMatthew G. Knepley       ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
2959bd041c0cSMatthew G. Knepley       ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
2960bd041c0cSMatthew G. Knepley       for (q = 0; q < Nq; ++q) {
2961c330f8ffSToby Isaac         const PetscReal xi0[3] = {-1., -1., -1.};
2962c330f8ffSToby Isaac 
2963bd041c0cSMatthew G. Knepley         /* Transform point to real space */
2964c330f8ffSToby Isaac         CoordinatesRefToReal(dim, dim, xi0, v0, J, &qpoints[q*dim], x);
2965bd041c0cSMatthew G. Knepley         for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
2966bd041c0cSMatthew G. Knepley       }
2967bd041c0cSMatthew G. Knepley       ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
2968bd041c0cSMatthew G. Knepley       /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
2969bd041c0cSMatthew G. Knepley       ierr = DMLocatePoints(dmc, pointVec, DM_POINTLOCATION_NEAREST, &coarseCellSF);CHKERRQ(ierr);
2970bd041c0cSMatthew G. Knepley       ierr = PetscSFViewFromOptions(coarseCellSF, NULL, "-interp_sf_view");CHKERRQ(ierr);
2971bd041c0cSMatthew G. Knepley       /* Update preallocation info */
2972bd041c0cSMatthew G. Knepley       ierr = PetscSFGetGraph(coarseCellSF, NULL, &numCoarseCells, NULL, &coarseCells);CHKERRQ(ierr);
2973bd041c0cSMatthew G. Knepley       if (numCoarseCells != Nq) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Not all closure points located");
2974bd041c0cSMatthew G. Knepley       {
2975e8f14785SLisandro Dalcin         PetscHashIJKey key;
2976e8f14785SLisandro Dalcin         PetscBool      missing;
2977bd041c0cSMatthew G. Knepley 
2978bd041c0cSMatthew G. Knepley         for (i = 0; i < numFIndices; ++i) {
2979e8f14785SLisandro Dalcin           key.i = findices[i];
2980e8f14785SLisandro Dalcin           if (key.i >= 0) {
2981bd041c0cSMatthew G. Knepley             /* Get indices for coarse elements */
2982bd041c0cSMatthew G. Knepley             for (ccell = 0; ccell < numCoarseCells; ++ccell) {
298371f0bbf9SMatthew G. Knepley               ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
2984bd041c0cSMatthew G. Knepley               for (c = 0; c < numCIndices; ++c) {
2985e8f14785SLisandro Dalcin                 key.j = cindices[c];
2986e8f14785SLisandro Dalcin                 if (key.j < 0) continue;
2987e8f14785SLisandro Dalcin                 ierr = PetscHSetIJQueryAdd(ht, key, &missing);CHKERRQ(ierr);
2988bd041c0cSMatthew G. Knepley                 if (missing) {
2989e8f14785SLisandro Dalcin                   if ((key.j >= rStart) && (key.j < rEnd)) ++dnz[key.i-rStart];
2990e8f14785SLisandro Dalcin                   else                                     ++onz[key.i-rStart];
2991bd041c0cSMatthew G. Knepley                 }
2992bd041c0cSMatthew G. Knepley               }
299371f0bbf9SMatthew G. Knepley               ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
2994bd041c0cSMatthew G. Knepley             }
2995bd041c0cSMatthew G. Knepley           }
2996bd041c0cSMatthew G. Knepley         }
2997bd041c0cSMatthew G. Knepley       }
2998bd041c0cSMatthew G. Knepley       ierr = PetscSFDestroy(&coarseCellSF);CHKERRQ(ierr);
2999bd041c0cSMatthew G. Knepley       ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
300071f0bbf9SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
3001bd041c0cSMatthew G. Knepley     }
3002bd041c0cSMatthew G. Knepley   }
3003e8f14785SLisandro Dalcin   ierr = PetscHSetIJDestroy(&ht);CHKERRQ(ierr);
3004bd041c0cSMatthew G. Knepley   ierr = MatXAIJSetPreallocation(mass, 1, dnz, onz, NULL, NULL);CHKERRQ(ierr);
3005bd041c0cSMatthew G. Knepley   ierr = MatSetOption(mass, MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
3006bd041c0cSMatthew G. Knepley   ierr = PetscFree2(dnz,onz);CHKERRQ(ierr);
3007bd041c0cSMatthew G. Knepley   for (field = 0; field < Nf; ++field) {
3008bd041c0cSMatthew G. Knepley     PetscObject       obj;
3009bd041c0cSMatthew G. Knepley     PetscClassId      id;
3010ef0bb6c7SMatthew G. Knepley     PetscTabulation T, Tfine;
3011bd041c0cSMatthew G. Knepley     PetscQuadrature   quad;
3012bd041c0cSMatthew G. Knepley     const PetscReal  *qpoints, *qweights;
3013bd041c0cSMatthew G. Knepley     PetscInt          Nq, Nc, i, d;
3014bd041c0cSMatthew G. Knepley 
3015bd041c0cSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
3016bd041c0cSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
3017ef0bb6c7SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
3018ef0bb6c7SMatthew G. Knepley       ierr = PetscFEGetQuadrature((PetscFE) obj, &quad);CHKERRQ(ierr);
3019f9244615SMatthew G. Knepley       ierr = PetscFEGetCellTabulation((PetscFE) obj, 1, &Tfine);CHKERRQ(ierr);
3020ef0bb6c7SMatthew G. Knepley       ierr = PetscFECreateTabulation((PetscFE) obj, 1, 1, x, 0, &T);CHKERRQ(ierr);
3021ef0bb6c7SMatthew G. Knepley     } else {
3022ef0bb6c7SMatthew G. Knepley       ierr = PetscFVGetQuadrature((PetscFV) obj, &quad);CHKERRQ(ierr);
3023ef0bb6c7SMatthew G. Knepley     }
3024bd041c0cSMatthew G. Knepley     ierr = PetscQuadratureGetData(quad, NULL, &Nc, &Nq, &qpoints, &qweights);CHKERRQ(ierr);
3025bd041c0cSMatthew G. Knepley     /* For each fine grid cell */
3026bd041c0cSMatthew G. Knepley     for (cell = cStart; cell < cEnd; ++cell) {
3027bd041c0cSMatthew G. Knepley       Vec                pointVec;
3028bd041c0cSMatthew G. Knepley       PetscScalar       *pV;
3029bd041c0cSMatthew G. Knepley       PetscSF            coarseCellSF = NULL;
3030bd041c0cSMatthew G. Knepley       const PetscSFNode *coarseCells;
3031bd041c0cSMatthew G. Knepley       PetscInt           numCoarseCells, cpdim, q, c, j;
3032bd041c0cSMatthew G. Knepley       PetscInt          *findices,   *cindices;
3033bd041c0cSMatthew G. Knepley       PetscInt           numFIndices, numCIndices;
3034bd041c0cSMatthew G. Knepley 
303571f0bbf9SMatthew G. Knepley       ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
3036bd041c0cSMatthew G. Knepley       ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr);
3037bd041c0cSMatthew G. Knepley       /* Get points from the quadrature */
3038bd041c0cSMatthew G. Knepley       ierr = VecCreateSeq(PETSC_COMM_SELF, Nq*dim, &pointVec);CHKERRQ(ierr);
3039bd041c0cSMatthew G. Knepley       ierr = VecSetBlockSize(pointVec, dim);CHKERRQ(ierr);
3040bd041c0cSMatthew G. Knepley       ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
3041bd041c0cSMatthew G. Knepley       for (q = 0; q < Nq; ++q) {
3042c330f8ffSToby Isaac         const PetscReal xi0[3] = {-1., -1., -1.};
3043c330f8ffSToby Isaac 
3044bd041c0cSMatthew G. Knepley         /* Transform point to real space */
3045c330f8ffSToby Isaac         CoordinatesRefToReal(dim, dim, xi0, v0, J, &qpoints[q*dim], x);
3046bd041c0cSMatthew G. Knepley         for (d = 0; d < dim; ++d) pV[q*dim+d] = x[d];
3047bd041c0cSMatthew G. Knepley       }
3048bd041c0cSMatthew G. Knepley       ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
3049bd041c0cSMatthew G. Knepley       /* Get set of coarse cells that overlap points (would like to group points by coarse cell) */
3050bd041c0cSMatthew G. Knepley       ierr = DMLocatePoints(dmc, pointVec, DM_POINTLOCATION_NEAREST, &coarseCellSF);CHKERRQ(ierr);
3051bd041c0cSMatthew G. Knepley       /* Update matrix */
3052bd041c0cSMatthew G. Knepley       ierr = PetscSFGetGraph(coarseCellSF, NULL, &numCoarseCells, NULL, &coarseCells);CHKERRQ(ierr);
3053bd041c0cSMatthew G. Knepley       if (numCoarseCells != Nq) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Not all closure points located");
3054bd041c0cSMatthew G. Knepley       ierr = VecGetArray(pointVec, &pV);CHKERRQ(ierr);
3055bd041c0cSMatthew G. Knepley       for (ccell = 0; ccell < numCoarseCells; ++ccell) {
3056bd041c0cSMatthew G. Knepley         PetscReal pVReal[3];
3057c330f8ffSToby Isaac         const PetscReal xi0[3] = {-1., -1., -1.};
3058c330f8ffSToby Isaac 
3059bd041c0cSMatthew G. Knepley 
306071f0bbf9SMatthew G. Knepley         ierr = DMPlexGetClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
3061bd041c0cSMatthew G. Knepley         /* Transform points from real space to coarse reference space */
3062bd041c0cSMatthew G. Knepley         ierr = DMPlexComputeCellGeometryFEM(dmc, coarseCells[ccell].index, NULL, v0c, Jc, invJc, &detJc);CHKERRQ(ierr);
3063bd041c0cSMatthew G. Knepley         for (d = 0; d < dim; ++d) pVReal[d] = PetscRealPart(pV[ccell*dim+d]);
3064c330f8ffSToby Isaac         CoordinatesRealToRef(dim, dim, xi0, v0c, invJc, pVReal, x);
3065bd041c0cSMatthew G. Knepley 
3066bd041c0cSMatthew G. Knepley         if (id == PETSCFE_CLASSID) {
3067bd041c0cSMatthew G. Knepley           PetscFE fe = (PetscFE) obj;
3068bd041c0cSMatthew G. Knepley 
3069bd041c0cSMatthew G. Knepley           /* Evaluate coarse basis on contained point */
3070bd041c0cSMatthew G. Knepley           ierr = PetscFEGetDimension(fe, &cpdim);CHKERRQ(ierr);
3071ef0bb6c7SMatthew G. Knepley           ierr = PetscFEComputeTabulation(fe, 1, x, 0, T);CHKERRQ(ierr);
3072bd041c0cSMatthew G. Knepley           /* Get elemMat entries by multiplying by weight */
3073bd041c0cSMatthew G. Knepley           for (i = 0; i < numFIndices; ++i) {
3074580bdb30SBarry Smith             ierr = PetscArrayzero(elemMat, cpdim);CHKERRQ(ierr);
3075bd041c0cSMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
3076ef0bb6c7SMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[j] += T->T[0][j*Nc + c]*Tfine->T[0][(ccell*numFIndices + i)*Nc + c]*qweights[ccell*Nc + c]*detJ;
3077bd041c0cSMatthew G. Knepley             }
3078bd041c0cSMatthew G. Knepley             /* Update interpolator */
3079bd041c0cSMatthew G. Knepley             if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, 1, numCIndices, elemMat);CHKERRQ(ierr);}
3080bd041c0cSMatthew G. Knepley             if (numCIndices != cpdim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Number of element matrix columns %D != %D", numCIndices, cpdim);
3081bd041c0cSMatthew G. Knepley             ierr = MatSetValues(mass, 1, &findices[i], numCIndices, cindices, elemMat, ADD_VALUES);CHKERRQ(ierr);
3082bd041c0cSMatthew G. Knepley           }
3083bd041c0cSMatthew G. Knepley         } else {
3084bd041c0cSMatthew G. Knepley           cpdim = 1;
3085bd041c0cSMatthew G. Knepley           for (i = 0; i < numFIndices; ++i) {
3086580bdb30SBarry Smith             ierr = PetscArrayzero(elemMat, cpdim);CHKERRQ(ierr);
3087bd041c0cSMatthew G. Knepley             for (j = 0; j < cpdim; ++j) {
3088bd041c0cSMatthew G. Knepley               for (c = 0; c < Nc; ++c) elemMat[j] += 1.0*1.0*qweights[ccell*Nc + c]*detJ;
3089bd041c0cSMatthew G. Knepley             }
3090bd041c0cSMatthew G. Knepley             /* Update interpolator */
3091bd041c0cSMatthew G. Knepley             if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, 1, numCIndices, elemMat);CHKERRQ(ierr);}
3092ff1e0c32SBarry Smith             ierr = PetscPrintf(PETSC_COMM_SELF, "Nq: %D %D Nf: %D %D Nc: %D %D\n", ccell, Nq, i, numFIndices, j, numCIndices);CHKERRQ(ierr);
3093bd041c0cSMatthew G. Knepley             if (numCIndices != cpdim) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Number of element matrix columns %D != %D", numCIndices, cpdim);
3094bd041c0cSMatthew G. Knepley             ierr = MatSetValues(mass, 1, &findices[i], numCIndices, cindices, elemMat, ADD_VALUES);CHKERRQ(ierr);
3095bd041c0cSMatthew G. Knepley           }
3096bd041c0cSMatthew G. Knepley         }
309771f0bbf9SMatthew G. Knepley         ierr = DMPlexRestoreClosureIndices(dmc, csection, globalCSection, coarseCells[ccell].index, PETSC_FALSE, &numCIndices, &cindices, NULL, NULL);CHKERRQ(ierr);
3098bd041c0cSMatthew G. Knepley       }
3099bd041c0cSMatthew G. Knepley       ierr = VecRestoreArray(pointVec, &pV);CHKERRQ(ierr);
3100bd041c0cSMatthew G. Knepley       ierr = PetscSFDestroy(&coarseCellSF);CHKERRQ(ierr);
3101bd041c0cSMatthew G. Knepley       ierr = VecDestroy(&pointVec);CHKERRQ(ierr);
310271f0bbf9SMatthew G. Knepley       ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr);
3103bd041c0cSMatthew G. Knepley     }
3104ef0bb6c7SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {ierr = PetscTabulationDestroy(&T);CHKERRQ(ierr);}
3105bd041c0cSMatthew G. Knepley   }
3106bd041c0cSMatthew G. Knepley   ierr = PetscFree3(v0,J,invJ);CHKERRQ(ierr);
3107bd041c0cSMatthew G. Knepley   ierr = PetscFree3(v0c,Jc,invJc);CHKERRQ(ierr);
3108bd041c0cSMatthew G. Knepley   ierr = PetscFree(elemMat);CHKERRQ(ierr);
3109bd041c0cSMatthew G. Knepley   ierr = MatAssemblyBegin(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
3110bd041c0cSMatthew G. Knepley   ierr = MatAssemblyEnd(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
3111bd041c0cSMatthew G. Knepley   PetscFunctionReturn(0);
3112bd041c0cSMatthew G. Knepley }
3113bd041c0cSMatthew G. Knepley 
3114bd041c0cSMatthew G. Knepley /*@
311546fa42a0SMatthew G. Knepley   DMPlexComputeInjectorFEM - Compute a mapping from coarse unknowns to fine unknowns
311646fa42a0SMatthew G. Knepley 
311746fa42a0SMatthew G. Knepley   Input Parameters:
311846fa42a0SMatthew G. Knepley + dmc  - The coarse mesh
311946fa42a0SMatthew G. Knepley - dmf  - The fine mesh
312046fa42a0SMatthew G. Knepley - user - The user context
312146fa42a0SMatthew G. Knepley 
312246fa42a0SMatthew G. Knepley   Output Parameter:
312346fa42a0SMatthew G. Knepley . sc   - The mapping
312446fa42a0SMatthew G. Knepley 
312546fa42a0SMatthew G. Knepley   Level: developer
312646fa42a0SMatthew G. Knepley 
312746fa42a0SMatthew G. Knepley .seealso: DMPlexComputeInterpolatorNested(), DMPlexComputeJacobianFEM()
312846fa42a0SMatthew G. Knepley @*/
31297c927364SMatthew G. Knepley PetscErrorCode DMPlexComputeInjectorFEM(DM dmc, DM dmf, VecScatter *sc, void *user)
31307c927364SMatthew G. Knepley {
3131e9d4ef1bSMatthew G. Knepley   PetscDS        prob;
31327c927364SMatthew G. Knepley   PetscFE       *feRef;
313397c42addSMatthew G. Knepley   PetscFV       *fvRef;
31347c927364SMatthew G. Knepley   Vec            fv, cv;
31357c927364SMatthew G. Knepley   IS             fis, cis;
31367c927364SMatthew G. Knepley   PetscSection   fsection, fglobalSection, csection, cglobalSection;
31377c927364SMatthew G. Knepley   PetscInt      *cmap, *cellCIndices, *cellFIndices, *cindices, *findices;
3138485ad865SMatthew G. Knepley   PetscInt       cTotDim, fTotDim = 0, Nf, f, field, cStart, cEnd, c, dim, d, startC, endC, offsetC, offsetF, m;
31396f3d3cbcSMatthew G. Knepley   PetscBool     *needAvg;
31407c927364SMatthew G. Knepley   PetscErrorCode ierr;
31417c927364SMatthew G. Knepley 
31427c927364SMatthew G. Knepley   PetscFunctionBegin;
314375a69067SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_InjectorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
3144c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dmf, &dim);CHKERRQ(ierr);
314592fd8e1eSJed Brown   ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr);
3146e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmf, &fglobalSection);CHKERRQ(ierr);
314792fd8e1eSJed Brown   ierr = DMGetLocalSection(dmc, &csection);CHKERRQ(ierr);
3148e87a4003SBarry Smith   ierr = DMGetGlobalSection(dmc, &cglobalSection);CHKERRQ(ierr);
31497c927364SMatthew G. Knepley   ierr = PetscSectionGetNumFields(fsection, &Nf);CHKERRQ(ierr);
3150412e9a14SMatthew G. Knepley   ierr = DMPlexGetSimplexOrBoxCells(dmc, 0, &cStart, &cEnd);CHKERRQ(ierr);
3151e9d4ef1bSMatthew G. Knepley   ierr = DMGetDS(dmc, &prob);CHKERRQ(ierr);
31526f3d3cbcSMatthew G. Knepley   ierr = PetscCalloc3(Nf,&feRef,Nf,&fvRef,Nf,&needAvg);CHKERRQ(ierr);
31537c927364SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
315497c42addSMatthew G. Knepley     PetscObject  obj;
315597c42addSMatthew G. Knepley     PetscClassId id;
3156aa7890ccSMatthew G. Knepley     PetscInt     fNb = 0, Nc = 0;
31577c927364SMatthew G. Knepley 
315897c42addSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
315997c42addSMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
316097c42addSMatthew G. Knepley     if (id == PETSCFE_CLASSID) {
316197c42addSMatthew G. Knepley       PetscFE    fe = (PetscFE) obj;
31626f3d3cbcSMatthew G. Knepley       PetscSpace sp;
31639b2fc754SMatthew G. Knepley       PetscInt   maxDegree;
316497c42addSMatthew G. Knepley 
31657c927364SMatthew G. Knepley       ierr = PetscFERefine(fe, &feRef[f]);CHKERRQ(ierr);
31667c927364SMatthew G. Knepley       ierr = PetscFEGetDimension(feRef[f], &fNb);CHKERRQ(ierr);
31677c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(fe, &Nc);CHKERRQ(ierr);
31686f3d3cbcSMatthew G. Knepley       ierr = PetscFEGetBasisSpace(fe, &sp);CHKERRQ(ierr);
31699b2fc754SMatthew G. Knepley       ierr = PetscSpaceGetDegree(sp, NULL, &maxDegree);CHKERRQ(ierr);
31709b2fc754SMatthew G. Knepley       if (!maxDegree) needAvg[f] = PETSC_TRUE;
317197c42addSMatthew G. Knepley     } else if (id == PETSCFV_CLASSID) {
317297c42addSMatthew G. Knepley       PetscFV        fv = (PetscFV) obj;
317397c42addSMatthew G. Knepley       PetscDualSpace Q;
317497c42addSMatthew G. Knepley 
317597c42addSMatthew G. Knepley       ierr = PetscFVRefine(fv, &fvRef[f]);CHKERRQ(ierr);
317697c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[f], &Q);CHKERRQ(ierr);
317797c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(Q, &fNb);CHKERRQ(ierr);
317897c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
31796f3d3cbcSMatthew G. Knepley       needAvg[f] = PETSC_TRUE;
318097c42addSMatthew G. Knepley     }
3181d172c84bSMatthew G. Knepley     fTotDim += fNb;
31827c927364SMatthew G. Knepley   }
3183e9d4ef1bSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &cTotDim);CHKERRQ(ierr);
31847c927364SMatthew G. Knepley   ierr = PetscMalloc1(cTotDim,&cmap);CHKERRQ(ierr);
31857c927364SMatthew G. Knepley   for (field = 0, offsetC = 0, offsetF = 0; field < Nf; ++field) {
31867c927364SMatthew G. Knepley     PetscFE        feC;
318797c42addSMatthew G. Knepley     PetscFV        fvC;
31887c927364SMatthew G. Knepley     PetscDualSpace QF, QC;
3189d172c84bSMatthew G. Knepley     PetscInt       order = -1, NcF, NcC, fpdim, cpdim;
31907c927364SMatthew G. Knepley 
319197c42addSMatthew G. Knepley     if (feRef[field]) {
3192e9d4ef1bSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &feC);CHKERRQ(ierr);
31937c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feC, &NcC);CHKERRQ(ierr);
31947c927364SMatthew G. Knepley       ierr = PetscFEGetNumComponents(feRef[field], &NcF);CHKERRQ(ierr);
31957c927364SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feRef[field], &QF);CHKERRQ(ierr);
3196d172c84bSMatthew G. Knepley       ierr = PetscDualSpaceGetOrder(QF, &order);CHKERRQ(ierr);
31977c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QF, &fpdim);CHKERRQ(ierr);
31987c927364SMatthew G. Knepley       ierr = PetscFEGetDualSpace(feC, &QC);CHKERRQ(ierr);
31997c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QC, &cpdim);CHKERRQ(ierr);
320097c42addSMatthew G. Knepley     } else {
320197c42addSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fvC);CHKERRQ(ierr);
320297c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvC, &NcC);CHKERRQ(ierr);
320397c42addSMatthew G. Knepley       ierr = PetscFVGetNumComponents(fvRef[field], &NcF);CHKERRQ(ierr);
320497c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvRef[field], &QF);CHKERRQ(ierr);
320597c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QF, &fpdim);CHKERRQ(ierr);
320697c42addSMatthew G. Knepley       ierr = PetscFVGetDualSpace(fvC, &QC);CHKERRQ(ierr);
320797c42addSMatthew G. Knepley       ierr = PetscDualSpaceGetDimension(QC, &cpdim);CHKERRQ(ierr);
320897c42addSMatthew G. Knepley     }
3209ff1e0c32SBarry Smith     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);
32107c927364SMatthew G. Knepley     for (c = 0; c < cpdim; ++c) {
32117c927364SMatthew G. Knepley       PetscQuadrature  cfunc;
3212d172c84bSMatthew G. Knepley       const PetscReal *cqpoints, *cqweights;
3213d172c84bSMatthew G. Knepley       PetscInt         NqcC, NpC;
321497c42addSMatthew G. Knepley       PetscBool        found = PETSC_FALSE;
32157c927364SMatthew G. Knepley 
32167c927364SMatthew G. Knepley       ierr = PetscDualSpaceGetFunctional(QC, c, &cfunc);CHKERRQ(ierr);
3217d172c84bSMatthew G. Knepley       ierr = PetscQuadratureGetData(cfunc, NULL, &NqcC, &NpC, &cqpoints, &cqweights);CHKERRQ(ierr);
3218ff1e0c32SBarry Smith       if (NqcC != NcC) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of quadrature components %D must match number of field components %D", NqcC, NcC);
321997c42addSMatthew G. Knepley       if (NpC != 1 && feRef[field]) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Do not know how to do injection for moments");
32207c927364SMatthew G. Knepley       for (f = 0; f < fpdim; ++f) {
32217c927364SMatthew G. Knepley         PetscQuadrature  ffunc;
3222d172c84bSMatthew G. Knepley         const PetscReal *fqpoints, *fqweights;
32237c927364SMatthew G. Knepley         PetscReal        sum = 0.0;
3224d172c84bSMatthew G. Knepley         PetscInt         NqcF, NpF;
32257c927364SMatthew G. Knepley 
32267c927364SMatthew G. Knepley         ierr = PetscDualSpaceGetFunctional(QF, f, &ffunc);CHKERRQ(ierr);
3227d172c84bSMatthew G. Knepley         ierr = PetscQuadratureGetData(ffunc, NULL, &NqcF, &NpF, &fqpoints, &fqweights);CHKERRQ(ierr);
3228ff1e0c32SBarry Smith         if (NqcF != NcF) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of quadrature components %D must match number of field components %D", NqcF, NcF);
32297c927364SMatthew G. Knepley         if (NpC != NpF) continue;
32307c927364SMatthew G. Knepley         for (d = 0; d < dim; ++d) sum += PetscAbsReal(cqpoints[d] - fqpoints[d]);
32317c927364SMatthew G. Knepley         if (sum > 1.0e-9) continue;
3232d172c84bSMatthew G. Knepley         for (d = 0; d < NcC; ++d) sum += PetscAbsReal(cqweights[d]*fqweights[d]);
3233d172c84bSMatthew G. Knepley         if (sum < 1.0e-9) continue;
3234d172c84bSMatthew G. Knepley         cmap[offsetC+c] = offsetF+f;
323597c42addSMatthew G. Knepley         found = PETSC_TRUE;
32367c927364SMatthew G. Knepley         break;
32377c927364SMatthew G. Knepley       }
323897c42addSMatthew G. Knepley       if (!found) {
323997c42addSMatthew G. Knepley         /* TODO We really want the average here, but some asshole put VecScatter in the interface */
3240d172c84bSMatthew G. Knepley         if (fvRef[field] || (feRef[field] && order == 0)) {
3241d172c84bSMatthew G. Knepley           cmap[offsetC+c] = offsetF+0;
324297c42addSMatthew G. Knepley         } else SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Could not locate matching functional for injection");
324397c42addSMatthew G. Knepley       }
32447c927364SMatthew G. Knepley     }
3245d172c84bSMatthew G. Knepley     offsetC += cpdim;
3246d172c84bSMatthew G. Knepley     offsetF += fpdim;
32477c927364SMatthew G. Knepley   }
324897c42addSMatthew G. Knepley   for (f = 0; f < Nf; ++f) {ierr = PetscFEDestroy(&feRef[f]);CHKERRQ(ierr);ierr = PetscFVDestroy(&fvRef[f]);CHKERRQ(ierr);}
32496f3d3cbcSMatthew G. Knepley   ierr = PetscFree3(feRef,fvRef,needAvg);CHKERRQ(ierr);
32507c927364SMatthew G. Knepley 
32517c927364SMatthew G. Knepley   ierr = DMGetGlobalVector(dmf, &fv);CHKERRQ(ierr);
32527c927364SMatthew G. Knepley   ierr = DMGetGlobalVector(dmc, &cv);CHKERRQ(ierr);
32530bd915a7SMatthew G. Knepley   ierr = VecGetOwnershipRange(cv, &startC, &endC);CHKERRQ(ierr);
32547c927364SMatthew G. Knepley   ierr = PetscSectionGetConstrainedStorageSize(cglobalSection, &m);CHKERRQ(ierr);
32557c927364SMatthew G. Knepley   ierr = PetscMalloc2(cTotDim,&cellCIndices,fTotDim,&cellFIndices);CHKERRQ(ierr);
3256aa7da3c4SMatthew G. Knepley   ierr = PetscMalloc1(m,&cindices);CHKERRQ(ierr);
3257aa7da3c4SMatthew G. Knepley   ierr = PetscMalloc1(m,&findices);CHKERRQ(ierr);
32587c927364SMatthew G. Knepley   for (d = 0; d < m; ++d) cindices[d] = findices[d] = -1;
32597c927364SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
32607c927364SMatthew G. Knepley     ierr = DMPlexMatGetClosureIndicesRefined(dmf, fsection, fglobalSection, dmc, csection, cglobalSection, c, cellCIndices, cellFIndices);CHKERRQ(ierr);
32617c927364SMatthew G. Knepley     for (d = 0; d < cTotDim; ++d) {
32620bd915a7SMatthew G. Knepley       if ((cellCIndices[d] < startC) || (cellCIndices[d] >= endC)) continue;
3263ff1e0c32SBarry Smith       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]]);
32647c927364SMatthew G. Knepley       cindices[cellCIndices[d]-startC] = cellCIndices[d];
32657c927364SMatthew G. Knepley       findices[cellCIndices[d]-startC] = cellFIndices[cmap[d]];
32667c927364SMatthew G. Knepley     }
32677c927364SMatthew G. Knepley   }
32687c927364SMatthew G. Knepley   ierr = PetscFree(cmap);CHKERRQ(ierr);
32697c927364SMatthew G. Knepley   ierr = PetscFree2(cellCIndices,cellFIndices);CHKERRQ(ierr);
32707c927364SMatthew G. Knepley 
32717c927364SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, m, cindices, PETSC_OWN_POINTER, &cis);CHKERRQ(ierr);
32727c927364SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, m, findices, PETSC_OWN_POINTER, &fis);CHKERRQ(ierr);
32739448b7f1SJunchao Zhang   ierr = VecScatterCreate(cv, cis, fv, fis, sc);CHKERRQ(ierr);
32747c927364SMatthew G. Knepley   ierr = ISDestroy(&cis);CHKERRQ(ierr);
32757c927364SMatthew G. Knepley   ierr = ISDestroy(&fis);CHKERRQ(ierr);
32767c927364SMatthew G. Knepley   ierr = DMRestoreGlobalVector(dmf, &fv);CHKERRQ(ierr);
32777c927364SMatthew G. Knepley   ierr = DMRestoreGlobalVector(dmc, &cv);CHKERRQ(ierr);
327875a69067SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_InjectorFEM,dmc,dmf,0,0);CHKERRQ(ierr);
3279cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
3280cb1e1211SMatthew G Knepley }
3281a1cf66bbSMatthew G. Knepley 
32822f856554SMatthew G. Knepley /*@C
32832f856554SMatthew G. Knepley   DMPlexGetCellFields - Retrieve the field values values for a chunk of cells
32842f856554SMatthew G. Knepley 
32852f856554SMatthew G. Knepley   Input Parameters:
32862f856554SMatthew G. Knepley + dm     - The DM
32872f856554SMatthew G. Knepley . cellIS - The cells to include
32882f856554SMatthew G. Knepley . locX   - A local vector with the solution fields
32892f856554SMatthew G. Knepley . locX_t - A local vector with solution field time derivatives, or NULL
32902f856554SMatthew G. Knepley - locA   - A local vector with auxiliary fields, or NULL
32912f856554SMatthew G. Knepley 
32922f856554SMatthew G. Knepley   Output Parameters:
32932f856554SMatthew G. Knepley + u   - The field coefficients
32942f856554SMatthew G. Knepley . u_t - The fields derivative coefficients
32952f856554SMatthew G. Knepley - a   - The auxiliary field coefficients
32962f856554SMatthew G. Knepley 
32972f856554SMatthew G. Knepley   Level: developer
32982f856554SMatthew G. Knepley 
32992f856554SMatthew G. Knepley .seealso: DMPlexGetFaceFields()
33002f856554SMatthew G. Knepley @*/
33012f856554SMatthew G. Knepley PetscErrorCode DMPlexGetCellFields(DM dm, IS cellIS, Vec locX, Vec locX_t, Vec locA, PetscScalar **u, PetscScalar **u_t, PetscScalar **a)
33022f856554SMatthew G. Knepley {
33032f856554SMatthew G. Knepley   DM              plex, plexA = NULL;
3304a6e0b375SMatthew G. Knepley   DMEnclosureType encAux;
33052f856554SMatthew G. Knepley   PetscSection    section, sectionAux;
33062f856554SMatthew G. Knepley   PetscDS         prob;
33072f856554SMatthew G. Knepley   const PetscInt *cells;
33082f856554SMatthew G. Knepley   PetscInt        cStart, cEnd, numCells, totDim, totDimAux, c;
33092f856554SMatthew G. Knepley   PetscErrorCode  ierr;
33102f856554SMatthew G. Knepley 
33112f856554SMatthew G. Knepley   PetscFunctionBegin;
33122f856554SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
3313064a246eSJacob Faibussowitsch   PetscValidHeaderSpecific(locX, VEC_CLASSID, 3);
3314064a246eSJacob Faibussowitsch   if (locX_t) {PetscValidHeaderSpecific(locX_t, VEC_CLASSID, 4);}
3315064a246eSJacob Faibussowitsch   if (locA)   {PetscValidHeaderSpecific(locA, VEC_CLASSID, 5);}
3316064a246eSJacob Faibussowitsch   PetscValidPointer(u, 6);
3317064a246eSJacob Faibussowitsch   PetscValidPointer(u_t, 7);
3318064a246eSJacob Faibussowitsch   PetscValidPointer(a, 8);
33192f856554SMatthew G. Knepley   ierr = DMPlexConvertPlex(dm, &plex, PETSC_FALSE);CHKERRQ(ierr);
33202f856554SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
332192fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
3322083401c6SMatthew G. Knepley   ierr = DMGetCellDS(dm, cells ? cells[cStart] : cStart, &prob);CHKERRQ(ierr);
33232f856554SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
33242f856554SMatthew G. Knepley   if (locA) {
33252f856554SMatthew G. Knepley     DM      dmAux;
33262f856554SMatthew G. Knepley     PetscDS probAux;
33272f856554SMatthew G. Knepley 
33282f856554SMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
3329a6e0b375SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
33302f856554SMatthew G. Knepley     ierr = DMPlexConvertPlex(dmAux, &plexA, PETSC_FALSE);CHKERRQ(ierr);
333192fd8e1eSJed Brown     ierr = DMGetLocalSection(dmAux, &sectionAux);CHKERRQ(ierr);
33322f856554SMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
33332f856554SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
33342f856554SMatthew G. Knepley   }
33352f856554SMatthew G. Knepley   numCells = cEnd - cStart;
33362f856554SMatthew G. Knepley   ierr = DMGetWorkArray(dm, numCells*totDim, MPIU_SCALAR, u);CHKERRQ(ierr);
33372f856554SMatthew G. Knepley   if (locX_t) {ierr = DMGetWorkArray(dm, numCells*totDim, MPIU_SCALAR, u_t);CHKERRQ(ierr);} else {*u_t = NULL;}
33382f856554SMatthew G. Knepley   if (locA)   {ierr = DMGetWorkArray(dm, numCells*totDimAux, MPIU_SCALAR, a);CHKERRQ(ierr);} else {*a = NULL;}
33392f856554SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
33402f856554SMatthew G. Knepley     const PetscInt cell = cells ? cells[c] : c;
33412f856554SMatthew G. Knepley     const PetscInt cind = c - cStart;
33422f856554SMatthew G. Knepley     PetscScalar   *x = NULL, *x_t = NULL, *ul = *u, *ul_t = *u_t, *al = *a;
33432f856554SMatthew G. Knepley     PetscInt       i;
33442f856554SMatthew G. Knepley 
33452f856554SMatthew G. Knepley     ierr = DMPlexVecGetClosure(plex, section, locX, cell, NULL, &x);CHKERRQ(ierr);
33462f856554SMatthew G. Knepley     for (i = 0; i < totDim; ++i) ul[cind*totDim+i] = x[i];
33472f856554SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(plex, section, locX, cell, NULL, &x);CHKERRQ(ierr);
33482f856554SMatthew G. Knepley     if (locX_t) {
33492f856554SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plex, section, locX_t, cell, NULL, &x_t);CHKERRQ(ierr);
33502f856554SMatthew G. Knepley       for (i = 0; i < totDim; ++i) ul_t[cind*totDim+i] = x_t[i];
33512f856554SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plex, section, locX_t, cell, NULL, &x_t);CHKERRQ(ierr);
33522f856554SMatthew G. Knepley     }
33532f856554SMatthew G. Knepley     if (locA) {
33542f856554SMatthew G. Knepley       PetscInt subcell;
3355a6e0b375SMatthew G. Knepley       ierr = DMGetEnclosurePoint(plexA, dm, encAux, cell, &subcell);CHKERRQ(ierr);
33562f856554SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plexA, sectionAux, locA, subcell, NULL, &x);CHKERRQ(ierr);
33572f856554SMatthew G. Knepley       for (i = 0; i < totDimAux; ++i) al[cind*totDimAux+i] = x[i];
33582f856554SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plexA, sectionAux, locA, subcell, NULL, &x);CHKERRQ(ierr);
33592f856554SMatthew G. Knepley     }
33602f856554SMatthew G. Knepley   }
33612f856554SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
33622f856554SMatthew G. Knepley   if (locA) {ierr = DMDestroy(&plexA);CHKERRQ(ierr);}
33632f856554SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
33642f856554SMatthew G. Knepley   PetscFunctionReturn(0);
33652f856554SMatthew G. Knepley }
33662f856554SMatthew G. Knepley 
33672f856554SMatthew G. Knepley /*@C
33682f856554SMatthew G. Knepley   DMPlexRestoreCellFields - Restore the field values values for a chunk of cells
33692f856554SMatthew G. Knepley 
33702f856554SMatthew G. Knepley   Input Parameters:
33712f856554SMatthew G. Knepley + dm     - The DM
33722f856554SMatthew G. Knepley . cellIS - The cells to include
33732f856554SMatthew G. Knepley . locX   - A local vector with the solution fields
33742f856554SMatthew G. Knepley . locX_t - A local vector with solution field time derivatives, or NULL
33752f856554SMatthew G. Knepley - locA   - A local vector with auxiliary fields, or NULL
33762f856554SMatthew G. Knepley 
33772f856554SMatthew G. Knepley   Output Parameters:
33782f856554SMatthew G. Knepley + u   - The field coefficients
33792f856554SMatthew G. Knepley . u_t - The fields derivative coefficients
33802f856554SMatthew G. Knepley - a   - The auxiliary field coefficients
33812f856554SMatthew G. Knepley 
33822f856554SMatthew G. Knepley   Level: developer
33832f856554SMatthew G. Knepley 
33842f856554SMatthew G. Knepley .seealso: DMPlexGetFaceFields()
33852f856554SMatthew G. Knepley @*/
33862f856554SMatthew G. Knepley PetscErrorCode DMPlexRestoreCellFields(DM dm, IS cellIS, Vec locX, Vec locX_t, Vec locA, PetscScalar **u, PetscScalar **u_t, PetscScalar **a)
33872f856554SMatthew G. Knepley {
33882f856554SMatthew G. Knepley   PetscErrorCode ierr;
33892f856554SMatthew G. Knepley 
33902f856554SMatthew G. Knepley   PetscFunctionBegin;
33912f856554SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, u);CHKERRQ(ierr);
33922f856554SMatthew G. Knepley   if (locX_t) {ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, u_t);CHKERRQ(ierr);}
33932f856554SMatthew G. Knepley   if (locA)   {ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, a);CHKERRQ(ierr);}
33942f856554SMatthew G. Knepley   PetscFunctionReturn(0);
33952f856554SMatthew G. Knepley }
33962f856554SMatthew G. Knepley 
3397148442b3SMatthew G. Knepley static PetscErrorCode DMPlexGetHybridAuxFields(DM dm, DM dmAux[], PetscDS dsAux[], IS cellIS, Vec locA[], PetscScalar *a[])
33986528b96dSMatthew G. Knepley {
339904c51a94SMatthew G. Knepley   DM              plexA[2];
3400148442b3SMatthew G. Knepley   DMEnclosureType encAux[2];
340104c51a94SMatthew G. Knepley   PetscSection    sectionAux[2];
34026528b96dSMatthew G. Knepley   const PetscInt *cells;
3403148442b3SMatthew G. Knepley   PetscInt        cStart, cEnd, numCells, c, s, totDimAux[2];
34046528b96dSMatthew G. Knepley   PetscErrorCode  ierr;
34056528b96dSMatthew G. Knepley 
34066528b96dSMatthew G. Knepley   PetscFunctionBegin;
3407148442b3SMatthew G. Knepley   PetscValidPointer(locA, 5);
340804c51a94SMatthew G. Knepley   if (!locA[0] || !locA[1]) PetscFunctionReturn(0);
3409148442b3SMatthew G. Knepley   PetscValidPointer(dmAux, 2);
3410148442b3SMatthew G. Knepley   PetscValidPointer(dsAux, 3);
3411148442b3SMatthew G. Knepley   PetscValidPointer(a, 6);
34126528b96dSMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
34136528b96dSMatthew G. Knepley   numCells = cEnd - cStart;
3414148442b3SMatthew G. Knepley   for (s = 0; s < 2; ++s) {
3415148442b3SMatthew G. Knepley     PetscValidHeaderSpecific(dmAux[s], DM_CLASSID, 2);
3416148442b3SMatthew G. Knepley     PetscValidHeaderSpecific(dsAux[s], PETSCDS_CLASSID, 3);
3417148442b3SMatthew G. Knepley     PetscValidHeaderSpecific(locA[s], VEC_CLASSID, 5);
3418148442b3SMatthew G. Knepley     ierr = DMPlexConvertPlex(dmAux[s], &plexA[s], PETSC_FALSE);CHKERRQ(ierr);
3419148442b3SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux[s], dm, &encAux[s]);CHKERRQ(ierr);
3420148442b3SMatthew G. Knepley     ierr = DMGetLocalSection(dmAux[s], &sectionAux[s]);CHKERRQ(ierr);
3421148442b3SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(dsAux[s], &totDimAux[s]);CHKERRQ(ierr);
3422148442b3SMatthew G. Knepley     ierr = DMGetWorkArray(dmAux[s], numCells*totDimAux[s], MPIU_SCALAR, &a[s]);CHKERRQ(ierr);
342304c51a94SMatthew G. Knepley   }
3424148442b3SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
34256528b96dSMatthew G. Knepley     const PetscInt  cell = cells ? cells[c] : c;
34266528b96dSMatthew G. Knepley     const PetscInt  cind = c - cStart;
34276528b96dSMatthew G. Knepley     const PetscInt *cone, *ornt;
34286528b96dSMatthew G. Knepley 
3429148442b3SMatthew G. Knepley     ierr = DMPlexGetCone(dm, cell, &cone);CHKERRQ(ierr);
3430148442b3SMatthew G. Knepley     ierr = DMPlexGetConeOrientation(dm, cell, &ornt);CHKERRQ(ierr);
3431148442b3SMatthew G. Knepley     if (ornt[0]) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_SUP, "Face %D in hybrid cell %D has orientation %D != 0", cone[0], cell, ornt[0]);
3432148442b3SMatthew G. Knepley     for (s = 0; s < 2; ++s) {
3433148442b3SMatthew G. Knepley       PetscScalar   *x = NULL, *al = a[s];
3434148442b3SMatthew G. Knepley       const PetscInt tdA = totDimAux[s];
3435148442b3SMatthew G. Knepley       PetscInt       subface, Na, i;
34366528b96dSMatthew G. Knepley 
3437148442b3SMatthew G. Knepley       ierr = DMGetEnclosurePoint(plexA[s], dm, encAux[s], cone[0], &subface);CHKERRQ(ierr);
3438148442b3SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plexA[s], sectionAux[s], locA[s], subface, &Na, &x);CHKERRQ(ierr);
34396528b96dSMatthew G. Knepley       for (i = 0; i < Na; ++i) al[cind*tdA+i] = x[i];
3440148442b3SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plexA[s], sectionAux[s], locA[s], subface, &Na, &x);CHKERRQ(ierr);
34416528b96dSMatthew G. Knepley     }
34426528b96dSMatthew G. Knepley   }
3443148442b3SMatthew G. Knepley   for (s = 0; s < 2; ++s) {ierr = DMDestroy(&plexA[s]);CHKERRQ(ierr);}
34446528b96dSMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
34456528b96dSMatthew G. Knepley   PetscFunctionReturn(0);
34466528b96dSMatthew G. Knepley }
34476528b96dSMatthew G. Knepley 
344804c51a94SMatthew G. Knepley static PetscErrorCode DMPlexRestoreHybridAuxFields(DM dmAux[], PetscDS dsAux[], IS cellIS, Vec locA[], PetscScalar *a[])
34496528b96dSMatthew G. Knepley {
34506528b96dSMatthew G. Knepley   PetscErrorCode ierr;
34516528b96dSMatthew G. Knepley 
34526528b96dSMatthew G. Knepley   PetscFunctionBegin;
345304c51a94SMatthew G. Knepley   if (!locA[0] || !locA[1]) PetscFunctionReturn(0);
345404c51a94SMatthew G. Knepley   ierr = DMRestoreWorkArray(dmAux[0], 0, MPIU_SCALAR, &a[0]);CHKERRQ(ierr);
345504c51a94SMatthew G. Knepley   ierr = DMRestoreWorkArray(dmAux[1], 0, MPIU_SCALAR, &a[1]);CHKERRQ(ierr);
34566528b96dSMatthew G. Knepley   PetscFunctionReturn(0);
34576528b96dSMatthew G. Knepley }
34586528b96dSMatthew G. Knepley 
34592f856554SMatthew G. Knepley /*@C
34602f856554SMatthew G. Knepley   DMPlexGetFaceFields - Retrieve the field values values for a chunk of faces
34612f856554SMatthew G. Knepley 
34622f856554SMatthew G. Knepley   Input Parameters:
34632f856554SMatthew G. Knepley + dm     - The DM
34642f856554SMatthew G. Knepley . fStart - The first face to include
34652f856554SMatthew G. Knepley . fEnd   - The first face to exclude
34662f856554SMatthew G. Knepley . locX   - A local vector with the solution fields
34672f856554SMatthew G. Knepley . locX_t - A local vector with solution field time derivatives, or NULL
34682f856554SMatthew G. Knepley . faceGeometry - A local vector with face geometry
34692f856554SMatthew G. Knepley . cellGeometry - A local vector with cell geometry
34702f856554SMatthew G. Knepley - locaGrad - A local vector with field gradients, or NULL
34712f856554SMatthew G. Knepley 
34722f856554SMatthew G. Knepley   Output Parameters:
34732f856554SMatthew G. Knepley + Nface - The number of faces with field values
34742f856554SMatthew G. Knepley . uL - The field values at the left side of the face
34752f856554SMatthew G. Knepley - uR - The field values at the right side of the face
34762f856554SMatthew G. Knepley 
34772f856554SMatthew G. Knepley   Level: developer
34782f856554SMatthew G. Knepley 
34792f856554SMatthew G. Knepley .seealso: DMPlexGetCellFields()
34802f856554SMatthew G. Knepley @*/
34812f856554SMatthew G. Knepley PetscErrorCode DMPlexGetFaceFields(DM dm, PetscInt fStart, PetscInt fEnd, Vec locX, Vec locX_t, Vec faceGeometry, Vec cellGeometry, Vec locGrad, PetscInt *Nface, PetscScalar **uL, PetscScalar **uR)
34822f856554SMatthew G. Knepley {
34832f856554SMatthew G. Knepley   DM                 dmFace, dmCell, dmGrad = NULL;
34842f856554SMatthew G. Knepley   PetscSection       section;
34852f856554SMatthew G. Knepley   PetscDS            prob;
34862f856554SMatthew G. Knepley   DMLabel            ghostLabel;
34872f856554SMatthew G. Knepley   const PetscScalar *facegeom, *cellgeom, *x, *lgrad;
34882f856554SMatthew G. Knepley   PetscBool         *isFE;
34892f856554SMatthew G. Knepley   PetscInt           dim, Nf, f, Nc, numFaces = fEnd - fStart, iface, face;
34902f856554SMatthew G. Knepley   PetscErrorCode     ierr;
34912f856554SMatthew G. Knepley 
34922f856554SMatthew G. Knepley   PetscFunctionBegin;
34932f856554SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
34942f856554SMatthew G. Knepley   PetscValidHeaderSpecific(locX, VEC_CLASSID, 4);
34952f856554SMatthew G. Knepley   if (locX_t) {PetscValidHeaderSpecific(locX_t, VEC_CLASSID, 5);}
34962f856554SMatthew G. Knepley   PetscValidHeaderSpecific(faceGeometry, VEC_CLASSID, 6);
34972f856554SMatthew G. Knepley   PetscValidHeaderSpecific(cellGeometry, VEC_CLASSID, 7);
34982f856554SMatthew G. Knepley   if (locGrad) {PetscValidHeaderSpecific(locGrad, VEC_CLASSID, 8);}
3499064a246eSJacob Faibussowitsch   PetscValidPointer(uL, 10);
3500064a246eSJacob Faibussowitsch   PetscValidPointer(uR, 11);
35012f856554SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
35022f856554SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
350392fd8e1eSJed Brown   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
35042f856554SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
35052f856554SMatthew G. Knepley   ierr = PetscDSGetTotalComponents(prob, &Nc);CHKERRQ(ierr);
35062f856554SMatthew G. Knepley   ierr = PetscMalloc1(Nf, &isFE);CHKERRQ(ierr);
35072f856554SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
35082f856554SMatthew G. Knepley     PetscObject  obj;
35092f856554SMatthew G. Knepley     PetscClassId id;
35102f856554SMatthew G. Knepley 
35112f856554SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
35122f856554SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
35132f856554SMatthew G. Knepley     if (id == PETSCFE_CLASSID)      {isFE[f] = PETSC_TRUE;}
35142f856554SMatthew G. Knepley     else if (id == PETSCFV_CLASSID) {isFE[f] = PETSC_FALSE;}
35152f856554SMatthew G. Knepley     else                            {isFE[f] = PETSC_FALSE;}
35162f856554SMatthew G. Knepley   }
35172f856554SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
35182f856554SMatthew G. Knepley   ierr = VecGetArrayRead(locX, &x);CHKERRQ(ierr);
35192f856554SMatthew G. Knepley   ierr = VecGetDM(faceGeometry, &dmFace);CHKERRQ(ierr);
35202f856554SMatthew G. Knepley   ierr = VecGetArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
35212f856554SMatthew G. Knepley   ierr = VecGetDM(cellGeometry, &dmCell);CHKERRQ(ierr);
35222f856554SMatthew G. Knepley   ierr = VecGetArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
35232f856554SMatthew G. Knepley   if (locGrad) {
35242f856554SMatthew G. Knepley     ierr = VecGetDM(locGrad, &dmGrad);CHKERRQ(ierr);
35252f856554SMatthew G. Knepley     ierr = VecGetArrayRead(locGrad, &lgrad);CHKERRQ(ierr);
35262f856554SMatthew G. Knepley   }
35272f856554SMatthew G. Knepley   ierr = DMGetWorkArray(dm, numFaces*Nc, MPIU_SCALAR, uL);CHKERRQ(ierr);
35282f856554SMatthew G. Knepley   ierr = DMGetWorkArray(dm, numFaces*Nc, MPIU_SCALAR, uR);CHKERRQ(ierr);
35292f856554SMatthew G. Knepley   /* Right now just eat the extra work for FE (could make a cell loop) */
35302f856554SMatthew G. Knepley   for (face = fStart, iface = 0; face < fEnd; ++face) {
35312f856554SMatthew G. Knepley     const PetscInt        *cells;
35322f856554SMatthew G. Knepley     PetscFVFaceGeom       *fg;
35332f856554SMatthew G. Knepley     PetscFVCellGeom       *cgL, *cgR;
35342f856554SMatthew G. Knepley     PetscScalar           *xL, *xR, *gL, *gR;
35352f856554SMatthew G. Knepley     PetscScalar           *uLl = *uL, *uRl = *uR;
35362f856554SMatthew G. Knepley     PetscInt               ghost, nsupp, nchild;
35372f856554SMatthew G. Knepley 
35382f856554SMatthew G. Knepley     ierr = DMLabelGetValue(ghostLabel, face, &ghost);CHKERRQ(ierr);
35392f856554SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, face, &nsupp);CHKERRQ(ierr);
35402f856554SMatthew G. Knepley     ierr = DMPlexGetTreeChildren(dm, face, &nchild, NULL);CHKERRQ(ierr);
35412f856554SMatthew G. Knepley     if (ghost >= 0 || nsupp > 2 || nchild > 0) continue;
35422f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmFace, face, facegeom, &fg);CHKERRQ(ierr);
35432f856554SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, face, &cells);CHKERRQ(ierr);
35442f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmCell, cells[0], cellgeom, &cgL);CHKERRQ(ierr);
35452f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmCell, cells[1], cellgeom, &cgR);CHKERRQ(ierr);
35462f856554SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
35472f856554SMatthew G. Knepley       PetscInt off;
35482f856554SMatthew G. Knepley 
35492f856554SMatthew G. Knepley       ierr = PetscDSGetComponentOffset(prob, f, &off);CHKERRQ(ierr);
35502f856554SMatthew G. Knepley       if (isFE[f]) {
35512f856554SMatthew G. Knepley         const PetscInt *cone;
35522f856554SMatthew G. Knepley         PetscInt        comp, coneSizeL, coneSizeR, faceLocL, faceLocR, ldof, rdof, d;
35532f856554SMatthew G. Knepley 
35542f856554SMatthew G. Knepley         xL = xR = NULL;
35552f856554SMatthew G. Knepley         ierr = PetscSectionGetFieldComponents(section, f, &comp);CHKERRQ(ierr);
35562f856554SMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, section, locX, cells[0], &ldof, (PetscScalar **) &xL);CHKERRQ(ierr);
35572f856554SMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, section, locX, cells[1], &rdof, (PetscScalar **) &xR);CHKERRQ(ierr);
35582f856554SMatthew G. Knepley         ierr = DMPlexGetCone(dm, cells[0], &cone);CHKERRQ(ierr);
35592f856554SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cells[0], &coneSizeL);CHKERRQ(ierr);
35602f856554SMatthew G. Knepley         for (faceLocL = 0; faceLocL < coneSizeL; ++faceLocL) if (cone[faceLocL] == face) break;
35612f856554SMatthew G. Knepley         ierr = DMPlexGetCone(dm, cells[1], &cone);CHKERRQ(ierr);
35622f856554SMatthew G. Knepley         ierr = DMPlexGetConeSize(dm, cells[1], &coneSizeR);CHKERRQ(ierr);
35632f856554SMatthew G. Knepley         for (faceLocR = 0; faceLocR < coneSizeR; ++faceLocR) if (cone[faceLocR] == face) break;
3564ff1e0c32SBarry Smith         if (faceLocL == coneSizeL && faceLocR == coneSizeR) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Could not find face %D in cone of cell %D or cell %D", face, cells[0], cells[1]);
35652f856554SMatthew G. Knepley         /* Check that FEM field has values in the right cell (sometimes its an FV ghost cell) */
35662f856554SMatthew G. Knepley         /* TODO: this is a hack that might not be right for nonconforming */
35672f856554SMatthew G. Knepley         if (faceLocL < coneSizeL) {
3568a8f1f9e5SMatthew G. Knepley           ierr = PetscFEEvaluateFaceFields_Internal(prob, f, faceLocL, xL, &uLl[iface*Nc+off]);CHKERRQ(ierr);
3569a8f1f9e5SMatthew G. Knepley           if (rdof == ldof && faceLocR < coneSizeR) {ierr = PetscFEEvaluateFaceFields_Internal(prob, f, faceLocR, xR, &uRl[iface*Nc+off]);CHKERRQ(ierr);}
35702f856554SMatthew G. Knepley           else              {for (d = 0; d < comp; ++d) uRl[iface*Nc+off+d] = uLl[iface*Nc+off+d];}
35712f856554SMatthew G. Knepley         }
35722f856554SMatthew G. Knepley         else {
3573a8f1f9e5SMatthew G. Knepley           ierr = PetscFEEvaluateFaceFields_Internal(prob, f, faceLocR, xR, &uRl[iface*Nc+off]);CHKERRQ(ierr);
35742f856554SMatthew G. Knepley           ierr = PetscSectionGetFieldComponents(section, f, &comp);CHKERRQ(ierr);
35752f856554SMatthew G. Knepley           for (d = 0; d < comp; ++d) uLl[iface*Nc+off+d] = uRl[iface*Nc+off+d];
35762f856554SMatthew G. Knepley         }
35772f856554SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, section, locX, cells[0], &ldof, (PetscScalar **) &xL);CHKERRQ(ierr);
35782f856554SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, section, locX, cells[1], &rdof, (PetscScalar **) &xR);CHKERRQ(ierr);
35792f856554SMatthew G. Knepley       } else {
35802f856554SMatthew G. Knepley         PetscFV  fv;
35812f856554SMatthew G. Knepley         PetscInt numComp, c;
35822f856554SMatthew G. Knepley 
35832f856554SMatthew G. Knepley         ierr = PetscDSGetDiscretization(prob, f, (PetscObject *) &fv);CHKERRQ(ierr);
35842f856554SMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &numComp);CHKERRQ(ierr);
35852f856554SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRead(dm, cells[0], f, x, &xL);CHKERRQ(ierr);
35862f856554SMatthew G. Knepley         ierr = DMPlexPointLocalFieldRead(dm, cells[1], f, x, &xR);CHKERRQ(ierr);
35872f856554SMatthew G. Knepley         if (dmGrad) {
35882f856554SMatthew G. Knepley           PetscReal dxL[3], dxR[3];
35892f856554SMatthew G. Knepley 
35902f856554SMatthew G. Knepley           ierr = DMPlexPointLocalRead(dmGrad, cells[0], lgrad, &gL);CHKERRQ(ierr);
35912f856554SMatthew G. Knepley           ierr = DMPlexPointLocalRead(dmGrad, cells[1], lgrad, &gR);CHKERRQ(ierr);
35922f856554SMatthew G. Knepley           DMPlex_WaxpyD_Internal(dim, -1, cgL->centroid, fg->centroid, dxL);
35932f856554SMatthew G. Knepley           DMPlex_WaxpyD_Internal(dim, -1, cgR->centroid, fg->centroid, dxR);
35942f856554SMatthew G. Knepley           for (c = 0; c < numComp; ++c) {
35952f856554SMatthew G. Knepley             uLl[iface*Nc+off+c] = xL[c] + DMPlex_DotD_Internal(dim, &gL[c*dim], dxL);
35962f856554SMatthew G. Knepley             uRl[iface*Nc+off+c] = xR[c] + DMPlex_DotD_Internal(dim, &gR[c*dim], dxR);
35972f856554SMatthew G. Knepley           }
35982f856554SMatthew G. Knepley         } else {
35992f856554SMatthew G. Knepley           for (c = 0; c < numComp; ++c) {
36002f856554SMatthew G. Knepley             uLl[iface*Nc+off+c] = xL[c];
36012f856554SMatthew G. Knepley             uRl[iface*Nc+off+c] = xR[c];
36022f856554SMatthew G. Knepley           }
36032f856554SMatthew G. Knepley         }
36042f856554SMatthew G. Knepley       }
36052f856554SMatthew G. Knepley     }
36062f856554SMatthew G. Knepley     ++iface;
36072f856554SMatthew G. Knepley   }
36082f856554SMatthew G. Knepley   *Nface = iface;
36092f856554SMatthew G. Knepley   ierr = VecRestoreArrayRead(locX, &x);CHKERRQ(ierr);
36102f856554SMatthew G. Knepley   ierr = VecRestoreArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
36112f856554SMatthew G. Knepley   ierr = VecRestoreArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
36122f856554SMatthew G. Knepley   if (locGrad) {
36132f856554SMatthew G. Knepley     ierr = VecRestoreArrayRead(locGrad, &lgrad);CHKERRQ(ierr);
36142f856554SMatthew G. Knepley   }
36152f856554SMatthew G. Knepley   ierr = PetscFree(isFE);CHKERRQ(ierr);
36162f856554SMatthew G. Knepley   PetscFunctionReturn(0);
36172f856554SMatthew G. Knepley }
36182f856554SMatthew G. Knepley 
36192f856554SMatthew G. Knepley /*@C
36202f856554SMatthew G. Knepley   DMPlexRestoreFaceFields - Restore the field values values for a chunk of faces
36212f856554SMatthew G. Knepley 
36222f856554SMatthew G. Knepley   Input Parameters:
36232f856554SMatthew G. Knepley + dm     - The DM
36242f856554SMatthew G. Knepley . fStart - The first face to include
36252f856554SMatthew G. Knepley . fEnd   - The first face to exclude
36262f856554SMatthew G. Knepley . locX   - A local vector with the solution fields
36272f856554SMatthew G. Knepley . locX_t - A local vector with solution field time derivatives, or NULL
36282f856554SMatthew G. Knepley . faceGeometry - A local vector with face geometry
36292f856554SMatthew G. Knepley . cellGeometry - A local vector with cell geometry
36302f856554SMatthew G. Knepley - locaGrad - A local vector with field gradients, or NULL
36312f856554SMatthew G. Knepley 
36322f856554SMatthew G. Knepley   Output Parameters:
36332f856554SMatthew G. Knepley + Nface - The number of faces with field values
36342f856554SMatthew G. Knepley . uL - The field values at the left side of the face
36352f856554SMatthew G. Knepley - uR - The field values at the right side of the face
36362f856554SMatthew G. Knepley 
36372f856554SMatthew G. Knepley   Level: developer
36382f856554SMatthew G. Knepley 
36392f856554SMatthew G. Knepley .seealso: DMPlexGetFaceFields()
36402f856554SMatthew G. Knepley @*/
36412f856554SMatthew G. Knepley PetscErrorCode DMPlexRestoreFaceFields(DM dm, PetscInt fStart, PetscInt fEnd, Vec locX, Vec locX_t, Vec faceGeometry, Vec cellGeometry, Vec locGrad, PetscInt *Nface, PetscScalar **uL, PetscScalar **uR)
36422f856554SMatthew G. Knepley {
36432f856554SMatthew G. Knepley   PetscErrorCode ierr;
36442f856554SMatthew G. Knepley 
36452f856554SMatthew G. Knepley   PetscFunctionBegin;
36462f856554SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, uL);CHKERRQ(ierr);
36472f856554SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, 0, MPIU_SCALAR, uR);CHKERRQ(ierr);
36482f856554SMatthew G. Knepley   PetscFunctionReturn(0);
36492f856554SMatthew G. Knepley }
36502f856554SMatthew G. Knepley 
36512f856554SMatthew G. Knepley /*@C
36522f856554SMatthew G. Knepley   DMPlexGetFaceGeometry - Retrieve the geometric values for a chunk of faces
36532f856554SMatthew G. Knepley 
36542f856554SMatthew G. Knepley   Input Parameters:
36552f856554SMatthew G. Knepley + dm     - The DM
36562f856554SMatthew G. Knepley . fStart - The first face to include
36572f856554SMatthew G. Knepley . fEnd   - The first face to exclude
36582f856554SMatthew G. Knepley . faceGeometry - A local vector with face geometry
36592f856554SMatthew G. Knepley - cellGeometry - A local vector with cell geometry
36602f856554SMatthew G. Knepley 
36612f856554SMatthew G. Knepley   Output Parameters:
36622f856554SMatthew G. Knepley + Nface - The number of faces with field values
36632f856554SMatthew G. Knepley . fgeom - The extract the face centroid and normal
36642f856554SMatthew G. Knepley - vol   - The cell volume
36652f856554SMatthew G. Knepley 
36662f856554SMatthew G. Knepley   Level: developer
36672f856554SMatthew G. Knepley 
36682f856554SMatthew G. Knepley .seealso: DMPlexGetCellFields()
36692f856554SMatthew G. Knepley @*/
36702f856554SMatthew G. Knepley PetscErrorCode DMPlexGetFaceGeometry(DM dm, PetscInt fStart, PetscInt fEnd, Vec faceGeometry, Vec cellGeometry, PetscInt *Nface, PetscFVFaceGeom **fgeom, PetscReal **vol)
36712f856554SMatthew G. Knepley {
36722f856554SMatthew G. Knepley   DM                 dmFace, dmCell;
36732f856554SMatthew G. Knepley   DMLabel            ghostLabel;
36742f856554SMatthew G. Knepley   const PetscScalar *facegeom, *cellgeom;
36752f856554SMatthew G. Knepley   PetscInt           dim, numFaces = fEnd - fStart, iface, face;
36762f856554SMatthew G. Knepley   PetscErrorCode     ierr;
36772f856554SMatthew G. Knepley 
36782f856554SMatthew G. Knepley   PetscFunctionBegin;
36792f856554SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
36802f856554SMatthew G. Knepley   PetscValidHeaderSpecific(faceGeometry, VEC_CLASSID, 4);
36812f856554SMatthew G. Knepley   PetscValidHeaderSpecific(cellGeometry, VEC_CLASSID, 5);
3682064a246eSJacob Faibussowitsch   PetscValidPointer(fgeom, 7);
3683064a246eSJacob Faibussowitsch   PetscValidPointer(vol, 8);
36842f856554SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
36852f856554SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
36862f856554SMatthew G. Knepley   ierr = VecGetDM(faceGeometry, &dmFace);CHKERRQ(ierr);
36872f856554SMatthew G. Knepley   ierr = VecGetArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
36882f856554SMatthew G. Knepley   ierr = VecGetDM(cellGeometry, &dmCell);CHKERRQ(ierr);
36892f856554SMatthew G. Knepley   ierr = VecGetArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
36902f856554SMatthew G. Knepley   ierr = PetscMalloc1(numFaces, fgeom);CHKERRQ(ierr);
36912f856554SMatthew G. Knepley   ierr = DMGetWorkArray(dm, numFaces*2, MPIU_SCALAR, vol);CHKERRQ(ierr);
36922f856554SMatthew G. Knepley   for (face = fStart, iface = 0; face < fEnd; ++face) {
36932f856554SMatthew G. Knepley     const PetscInt        *cells;
36942f856554SMatthew G. Knepley     PetscFVFaceGeom       *fg;
36952f856554SMatthew G. Knepley     PetscFVCellGeom       *cgL, *cgR;
36962f856554SMatthew G. Knepley     PetscFVFaceGeom       *fgeoml = *fgeom;
36972f856554SMatthew G. Knepley     PetscReal             *voll   = *vol;
36982f856554SMatthew G. Knepley     PetscInt               ghost, d, nchild, nsupp;
36992f856554SMatthew G. Knepley 
37002f856554SMatthew G. Knepley     ierr = DMLabelGetValue(ghostLabel, face, &ghost);CHKERRQ(ierr);
37012f856554SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, face, &nsupp);CHKERRQ(ierr);
37022f856554SMatthew G. Knepley     ierr = DMPlexGetTreeChildren(dm, face, &nchild, NULL);CHKERRQ(ierr);
37032f856554SMatthew G. Knepley     if (ghost >= 0 || nsupp > 2 || nchild > 0) continue;
37042f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmFace, face, facegeom, &fg);CHKERRQ(ierr);
37052f856554SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, face, &cells);CHKERRQ(ierr);
37062f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmCell, cells[0], cellgeom, &cgL);CHKERRQ(ierr);
37072f856554SMatthew G. Knepley     ierr = DMPlexPointLocalRead(dmCell, cells[1], cellgeom, &cgR);CHKERRQ(ierr);
37082f856554SMatthew G. Knepley     for (d = 0; d < dim; ++d) {
37092f856554SMatthew G. Knepley       fgeoml[iface].centroid[d] = fg->centroid[d];
37102f856554SMatthew G. Knepley       fgeoml[iface].normal[d]   = fg->normal[d];
37112f856554SMatthew G. Knepley     }
37122f856554SMatthew G. Knepley     voll[iface*2+0] = cgL->volume;
37132f856554SMatthew G. Knepley     voll[iface*2+1] = cgR->volume;
37142f856554SMatthew G. Knepley     ++iface;
37152f856554SMatthew G. Knepley   }
37162f856554SMatthew G. Knepley   *Nface = iface;
37172f856554SMatthew G. Knepley   ierr = VecRestoreArrayRead(faceGeometry, &facegeom);CHKERRQ(ierr);
37182f856554SMatthew G. Knepley   ierr = VecRestoreArrayRead(cellGeometry, &cellgeom);CHKERRQ(ierr);
37192f856554SMatthew G. Knepley   PetscFunctionReturn(0);
37202f856554SMatthew G. Knepley }
37212f856554SMatthew G. Knepley 
37222f856554SMatthew G. Knepley /*@C
37232f856554SMatthew G. Knepley   DMPlexRestoreFaceGeometry - Restore the field values values for a chunk of faces
37242f856554SMatthew G. Knepley 
37252f856554SMatthew G. Knepley   Input Parameters:
37262f856554SMatthew G. Knepley + dm     - The DM
37272f856554SMatthew G. Knepley . fStart - The first face to include
37282f856554SMatthew G. Knepley . fEnd   - The first face to exclude
37292f856554SMatthew G. Knepley . faceGeometry - A local vector with face geometry
37302f856554SMatthew G. Knepley - cellGeometry - A local vector with cell geometry
37312f856554SMatthew G. Knepley 
37322f856554SMatthew G. Knepley   Output Parameters:
37332f856554SMatthew G. Knepley + Nface - The number of faces with field values
37342f856554SMatthew G. Knepley . fgeom - The extract the face centroid and normal
37352f856554SMatthew G. Knepley - vol   - The cell volume
37362f856554SMatthew G. Knepley 
37372f856554SMatthew G. Knepley   Level: developer
37382f856554SMatthew G. Knepley 
37392f856554SMatthew G. Knepley .seealso: DMPlexGetFaceFields()
37402f856554SMatthew G. Knepley @*/
37412f856554SMatthew G. Knepley PetscErrorCode DMPlexRestoreFaceGeometry(DM dm, PetscInt fStart, PetscInt fEnd, Vec faceGeometry, Vec cellGeometry, PetscInt *Nface, PetscFVFaceGeom **fgeom, PetscReal **vol)
37422f856554SMatthew G. Knepley {
37432f856554SMatthew G. Knepley   PetscErrorCode ierr;
37442f856554SMatthew G. Knepley 
37452f856554SMatthew G. Knepley   PetscFunctionBegin;
37462f856554SMatthew G. Knepley   ierr = PetscFree(*fgeom);CHKERRQ(ierr);
37472f856554SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, 0, MPIU_REAL, vol);CHKERRQ(ierr);
37482f856554SMatthew G. Knepley   PetscFunctionReturn(0);
37492f856554SMatthew G. Knepley }
37502f856554SMatthew G. Knepley 
3751a1cf66bbSMatthew G. Knepley PetscErrorCode DMSNESGetFEGeom(DMField coordField, IS pointIS, PetscQuadrature quad, PetscBool faceData, PetscFEGeom **geom)
3752a1cf66bbSMatthew G. Knepley {
3753a1cf66bbSMatthew G. Knepley   char            composeStr[33] = {0};
3754a1cf66bbSMatthew G. Knepley   PetscObjectId   id;
3755a1cf66bbSMatthew G. Knepley   PetscContainer  container;
3756a1cf66bbSMatthew G. Knepley   PetscErrorCode  ierr;
3757a1cf66bbSMatthew G. Knepley 
3758a1cf66bbSMatthew G. Knepley   PetscFunctionBegin;
3759a1cf66bbSMatthew G. Knepley   ierr = PetscObjectGetId((PetscObject)quad,&id);CHKERRQ(ierr);
3760a1cf66bbSMatthew G. Knepley   ierr = PetscSNPrintf(composeStr, 32, "DMSNESGetFEGeom_%x\n", id);CHKERRQ(ierr);
3761a1cf66bbSMatthew G. Knepley   ierr = PetscObjectQuery((PetscObject) pointIS, composeStr, (PetscObject *) &container);CHKERRQ(ierr);
3762a1cf66bbSMatthew G. Knepley   if (container) {
3763a1cf66bbSMatthew G. Knepley     ierr = PetscContainerGetPointer(container, (void **) geom);CHKERRQ(ierr);
3764a1cf66bbSMatthew G. Knepley   } else {
3765a1cf66bbSMatthew G. Knepley     ierr = DMFieldCreateFEGeom(coordField, pointIS, quad, faceData, geom);CHKERRQ(ierr);
3766a1cf66bbSMatthew G. Knepley     ierr = PetscContainerCreate(PETSC_COMM_SELF,&container);CHKERRQ(ierr);
3767a1cf66bbSMatthew G. Knepley     ierr = PetscContainerSetPointer(container, (void *) *geom);CHKERRQ(ierr);
3768a1cf66bbSMatthew G. Knepley     ierr = PetscContainerSetUserDestroy(container, PetscContainerUserDestroy_PetscFEGeom);CHKERRQ(ierr);
3769a1cf66bbSMatthew G. Knepley     ierr = PetscObjectCompose((PetscObject) pointIS, composeStr, (PetscObject) container);CHKERRQ(ierr);
3770a1cf66bbSMatthew G. Knepley     ierr = PetscContainerDestroy(&container);CHKERRQ(ierr);
3771a1cf66bbSMatthew G. Knepley   }
3772a1cf66bbSMatthew G. Knepley   PetscFunctionReturn(0);
3773a1cf66bbSMatthew G. Knepley }
3774a1cf66bbSMatthew G. Knepley 
3775a1cf66bbSMatthew G. Knepley PetscErrorCode DMSNESRestoreFEGeom(DMField coordField, IS pointIS, PetscQuadrature quad, PetscBool faceData, PetscFEGeom **geom)
3776a1cf66bbSMatthew G. Knepley {
3777a1cf66bbSMatthew G. Knepley   PetscFunctionBegin;
3778a1cf66bbSMatthew G. Knepley   *geom = NULL;
3779a1cf66bbSMatthew G. Knepley   PetscFunctionReturn(0);
3780a1cf66bbSMatthew G. Knepley }
3781a1cf66bbSMatthew G. Knepley 
378292d50984SMatthew G. Knepley PetscErrorCode DMPlexComputeResidual_Patch_Internal(DM dm, PetscSection section, IS cellIS, PetscReal t, Vec locX, Vec locX_t, Vec locF, void *user)
378392d50984SMatthew G. Knepley {
378492d50984SMatthew G. Knepley   DM_Plex         *mesh       = (DM_Plex *) dm->data;
378592d50984SMatthew G. Knepley   const char      *name       = "Residual";
378692d50984SMatthew G. Knepley   DM               dmAux      = NULL;
378792d50984SMatthew G. Knepley   DMLabel          ghostLabel = NULL;
378892d50984SMatthew G. Knepley   PetscDS          prob       = NULL;
378992d50984SMatthew G. Knepley   PetscDS          probAux    = NULL;
379092d50984SMatthew G. Knepley   PetscBool        useFEM     = PETSC_FALSE;
379192d50984SMatthew G. Knepley   PetscBool        isImplicit = (locX_t || t == PETSC_MIN_REAL) ? PETSC_TRUE : PETSC_FALSE;
379292d50984SMatthew G. Knepley   DMField          coordField = NULL;
3793c0006e53SPatrick Farrell   Vec              locA;
3794c0006e53SPatrick Farrell   PetscScalar     *u = NULL, *u_t, *a, *uL = NULL, *uR = NULL;
379592d50984SMatthew G. Knepley   IS               chunkIS;
379692d50984SMatthew G. Knepley   const PetscInt  *cells;
379792d50984SMatthew G. Knepley   PetscInt         cStart, cEnd, numCells;
3798364207b6SKarl Rupp   PetscInt         Nf, f, totDim, totDimAux, numChunks, cellChunkSize, chunk, fStart, fEnd;
379992d50984SMatthew G. Knepley   PetscInt         maxDegree = PETSC_MAX_INT;
38006528b96dSMatthew G. Knepley   PetscHashFormKey key;
380192d50984SMatthew G. Knepley   PetscQuadrature  affineQuad = NULL, *quads = NULL;
380292d50984SMatthew G. Knepley   PetscFEGeom     *affineGeom = NULL, **geoms = NULL;
380392d50984SMatthew G. Knepley   PetscErrorCode   ierr;
380492d50984SMatthew G. Knepley 
380592d50984SMatthew G. Knepley   PetscFunctionBegin;
380692d50984SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
380792d50984SMatthew G. Knepley   /* FEM+FVM */
380892d50984SMatthew G. Knepley   /* 1: Get sizes from dm and dmAux */
380992d50984SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
381092d50984SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
381192d50984SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
381292d50984SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
38139a2a23afSMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, NULL, 0, &locA);CHKERRQ(ierr);
381492d50984SMatthew G. Knepley   if (locA) {
381592d50984SMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
381692d50984SMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
381792d50984SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
381892d50984SMatthew G. Knepley   }
381992d50984SMatthew G. Knepley   /* 2: Get geometric data */
382092d50984SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
382192d50984SMatthew G. Knepley     PetscObject  obj;
382292d50984SMatthew G. Knepley     PetscClassId id;
382392d50984SMatthew G. Knepley     PetscBool    fimp;
382492d50984SMatthew G. Knepley 
382592d50984SMatthew G. Knepley     ierr = PetscDSGetImplicit(prob, f, &fimp);CHKERRQ(ierr);
382692d50984SMatthew G. Knepley     if (isImplicit != fimp) continue;
382792d50984SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
382892d50984SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
382992d50984SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {useFEM = PETSC_TRUE;}
3830364207b6SKarl Rupp     if (id == PETSCFV_CLASSID) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Use of FVM with PCPATCH not yet implemented");
383192d50984SMatthew G. Knepley   }
383292d50984SMatthew G. Knepley   if (useFEM) {
383392d50984SMatthew G. Knepley     ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
383492d50984SMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,cellIS,NULL,&maxDegree);CHKERRQ(ierr);
383592d50984SMatthew G. Knepley     if (maxDegree <= 1) {
383692d50984SMatthew G. Knepley       ierr = DMFieldCreateDefaultQuadrature(coordField,cellIS,&affineQuad);CHKERRQ(ierr);
383792d50984SMatthew G. Knepley       if (affineQuad) {
383892d50984SMatthew G. Knepley         ierr = DMSNESGetFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
383992d50984SMatthew G. Knepley       }
384092d50984SMatthew G. Knepley     } else {
384192d50984SMatthew G. Knepley       ierr = PetscCalloc2(Nf,&quads,Nf,&geoms);CHKERRQ(ierr);
384292d50984SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
384392d50984SMatthew G. Knepley         PetscObject  obj;
384492d50984SMatthew G. Knepley         PetscClassId id;
384592d50984SMatthew G. Knepley         PetscBool    fimp;
384692d50984SMatthew G. Knepley 
384792d50984SMatthew G. Knepley         ierr = PetscDSGetImplicit(prob, f, &fimp);CHKERRQ(ierr);
384892d50984SMatthew G. Knepley         if (isImplicit != fimp) continue;
384992d50984SMatthew G. Knepley         ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
385092d50984SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
385192d50984SMatthew G. Knepley         if (id == PETSCFE_CLASSID) {
385292d50984SMatthew G. Knepley           PetscFE fe = (PetscFE) obj;
385392d50984SMatthew G. Knepley 
385492d50984SMatthew G. Knepley           ierr = PetscFEGetQuadrature(fe, &quads[f]);CHKERRQ(ierr);
385592d50984SMatthew G. Knepley           ierr = PetscObjectReference((PetscObject)quads[f]);CHKERRQ(ierr);
385692d50984SMatthew G. Knepley           ierr = DMSNESGetFEGeom(coordField,cellIS,quads[f],PETSC_FALSE,&geoms[f]);CHKERRQ(ierr);
385792d50984SMatthew G. Knepley         }
385892d50984SMatthew G. Knepley       }
385992d50984SMatthew G. Knepley     }
386092d50984SMatthew G. Knepley   }
386192d50984SMatthew G. Knepley   /* Loop over chunks */
386292d50984SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
386392d50984SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
386492d50984SMatthew G. Knepley   if (useFEM) {ierr = ISCreate(PETSC_COMM_SELF, &chunkIS);CHKERRQ(ierr);}
386592d50984SMatthew G. Knepley   numCells      = cEnd - cStart;
386692d50984SMatthew G. Knepley   numChunks     = 1;
386792d50984SMatthew G. Knepley   cellChunkSize = numCells/numChunks;
386892d50984SMatthew G. Knepley   numChunks     = PetscMin(1,numCells);
38696528b96dSMatthew G. Knepley   key.label     = NULL;
38706528b96dSMatthew G. Knepley   key.value     = 0;
387192d50984SMatthew G. Knepley   for (chunk = 0; chunk < numChunks; ++chunk) {
3872c0006e53SPatrick Farrell     PetscScalar     *elemVec, *fluxL = NULL, *fluxR = NULL;
3873c0006e53SPatrick Farrell     PetscReal       *vol = NULL;
3874c0006e53SPatrick Farrell     PetscFVFaceGeom *fgeom = NULL;
387592d50984SMatthew G. Knepley     PetscInt         cS = cStart+chunk*cellChunkSize, cE = PetscMin(cS+cellChunkSize, cEnd), numCells = cE - cS, c;
3876c0006e53SPatrick Farrell     PetscInt         numFaces = 0;
387792d50984SMatthew G. Knepley 
387892d50984SMatthew G. Knepley     /* Extract field coefficients */
387992d50984SMatthew G. Knepley     if (useFEM) {
388092d50984SMatthew G. Knepley       ierr = ISGetPointSubrange(chunkIS, cS, cE, cells);CHKERRQ(ierr);
388192d50984SMatthew G. Knepley       ierr = DMPlexGetCellFields(dm, chunkIS, locX, locX_t, locA, &u, &u_t, &a);CHKERRQ(ierr);
388292d50984SMatthew G. Knepley       ierr = DMGetWorkArray(dm, numCells*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
3883580bdb30SBarry Smith       ierr = PetscArrayzero(elemVec, numCells*totDim);CHKERRQ(ierr);
388492d50984SMatthew G. Knepley     }
388592d50984SMatthew G. Knepley     /* TODO We will interlace both our field coefficients (u, u_t, uL, uR, etc.) and our output (elemVec, fL, fR). I think this works */
388692d50984SMatthew G. Knepley     /* Loop over fields */
388792d50984SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
388892d50984SMatthew G. Knepley       PetscObject  obj;
388992d50984SMatthew G. Knepley       PetscClassId id;
389092d50984SMatthew G. Knepley       PetscBool    fimp;
389192d50984SMatthew G. Knepley       PetscInt     numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset;
389292d50984SMatthew G. Knepley 
38936528b96dSMatthew G. Knepley       key.field = f;
389492d50984SMatthew G. Knepley       ierr = PetscDSGetImplicit(prob, f, &fimp);CHKERRQ(ierr);
389592d50984SMatthew G. Knepley       if (isImplicit != fimp) continue;
389692d50984SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
389792d50984SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
389892d50984SMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
389992d50984SMatthew G. Knepley         PetscFE         fe = (PetscFE) obj;
390092d50984SMatthew G. Knepley         PetscFEGeom    *geom = affineGeom ? affineGeom : geoms[f];
390192d50984SMatthew G. Knepley         PetscFEGeom    *chunkGeom = NULL;
390292d50984SMatthew G. Knepley         PetscQuadrature quad = affineQuad ? affineQuad : quads[f];
390392d50984SMatthew G. Knepley         PetscInt        Nq, Nb;
390492d50984SMatthew G. Knepley 
390592d50984SMatthew G. Knepley         ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
390692d50984SMatthew G. Knepley         ierr = PetscQuadratureGetData(quad, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
390792d50984SMatthew G. Knepley         ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
390892d50984SMatthew G. Knepley         blockSize = Nb;
390992d50984SMatthew G. Knepley         batchSize = numBlocks * blockSize;
391092d50984SMatthew G. Knepley         ierr      = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
391192d50984SMatthew G. Knepley         numChunks = numCells / (numBatches*batchSize);
391292d50984SMatthew G. Knepley         Ne        = numChunks*numBatches*batchSize;
391392d50984SMatthew G. Knepley         Nr        = numCells % (numBatches*batchSize);
391492d50984SMatthew G. Knepley         offset    = numCells - Nr;
391592d50984SMatthew G. Knepley         /* Integrate FE residual to get elemVec (need fields at quadrature points) */
391692d50984SMatthew G. Knepley         /*   For FV, I think we use a P0 basis and the cell coefficients (for subdivided cells, we can tweak the basis tabulation to be the indicator function) */
391792d50984SMatthew G. Knepley         ierr = PetscFEGeomGetChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
39186528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateResidual(prob, key, Ne, chunkGeom, u, u_t, probAux, a, t, elemVec);CHKERRQ(ierr);
391992d50984SMatthew G. Knepley         ierr = PetscFEGeomGetChunk(geom,offset,numCells,&chunkGeom);CHKERRQ(ierr);
39206528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateResidual(prob, key, Nr, chunkGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, &elemVec[offset*totDim]);CHKERRQ(ierr);
392192d50984SMatthew G. Knepley         ierr = PetscFEGeomRestoreChunk(geom,offset,numCells,&chunkGeom);CHKERRQ(ierr);
392292d50984SMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
392392d50984SMatthew G. Knepley         PetscFV fv = (PetscFV) obj;
392492d50984SMatthew G. Knepley 
392592d50984SMatthew G. Knepley         Ne = numFaces;
392692d50984SMatthew G. Knepley         /* Riemann solve over faces (need fields at face centroids) */
392792d50984SMatthew G. Knepley         /*   We need to evaluate FE fields at those coordinates */
392892d50984SMatthew G. Knepley         ierr = PetscFVIntegrateRHSFunction(fv, prob, f, Ne, fgeom, vol, uL, uR, fluxL, fluxR);CHKERRQ(ierr);
3929ff1e0c32SBarry Smith       } else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", f);
393092d50984SMatthew G. Knepley     }
393192d50984SMatthew G. Knepley     /* Loop over domain */
393292d50984SMatthew G. Knepley     if (useFEM) {
393392d50984SMatthew G. Knepley       /* Add elemVec to locX */
393492d50984SMatthew G. Knepley       for (c = cS; c < cE; ++c) {
393592d50984SMatthew G. Knepley         const PetscInt cell = cells ? cells[c] : c;
393692d50984SMatthew G. Knepley         const PetscInt cind = c - cStart;
393792d50984SMatthew G. Knepley 
393892d50984SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellVector(cell, name, totDim, &elemVec[cind*totDim]);CHKERRQ(ierr);}
393992d50984SMatthew G. Knepley         if (ghostLabel) {
394092d50984SMatthew G. Knepley           PetscInt ghostVal;
394192d50984SMatthew G. Knepley 
394292d50984SMatthew G. Knepley           ierr = DMLabelGetValue(ghostLabel,cell,&ghostVal);CHKERRQ(ierr);
394392d50984SMatthew G. Knepley           if (ghostVal > 0) continue;
394492d50984SMatthew G. Knepley         }
394592d50984SMatthew G. Knepley         ierr = DMPlexVecSetClosure(dm, section, locF, cell, &elemVec[cind*totDim], ADD_ALL_VALUES);CHKERRQ(ierr);
394692d50984SMatthew G. Knepley       }
394792d50984SMatthew G. Knepley     }
394892d50984SMatthew G. Knepley     /* Handle time derivative */
394992d50984SMatthew G. Knepley     if (locX_t) {
395092d50984SMatthew G. Knepley       PetscScalar *x_t, *fa;
395192d50984SMatthew G. Knepley 
395292d50984SMatthew G. Knepley       ierr = VecGetArray(locF, &fa);CHKERRQ(ierr);
395392d50984SMatthew G. Knepley       ierr = VecGetArray(locX_t, &x_t);CHKERRQ(ierr);
395492d50984SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
395592d50984SMatthew G. Knepley         PetscFV      fv;
395692d50984SMatthew G. Knepley         PetscObject  obj;
395792d50984SMatthew G. Knepley         PetscClassId id;
395892d50984SMatthew G. Knepley         PetscInt     pdim, d;
395992d50984SMatthew G. Knepley 
396092d50984SMatthew G. Knepley         ierr = PetscDSGetDiscretization(prob, f, &obj);CHKERRQ(ierr);
396192d50984SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
396292d50984SMatthew G. Knepley         if (id != PETSCFV_CLASSID) continue;
396392d50984SMatthew G. Knepley         fv   = (PetscFV) obj;
396492d50984SMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &pdim);CHKERRQ(ierr);
396592d50984SMatthew G. Knepley         for (c = cS; c < cE; ++c) {
396692d50984SMatthew G. Knepley           const PetscInt cell = cells ? cells[c] : c;
396792d50984SMatthew G. Knepley           PetscScalar   *u_t, *r;
396892d50984SMatthew G. Knepley 
396992d50984SMatthew G. Knepley           if (ghostLabel) {
397092d50984SMatthew G. Knepley             PetscInt ghostVal;
397192d50984SMatthew G. Knepley 
397292d50984SMatthew G. Knepley             ierr = DMLabelGetValue(ghostLabel, cell, &ghostVal);CHKERRQ(ierr);
397392d50984SMatthew G. Knepley             if (ghostVal > 0) continue;
397492d50984SMatthew G. Knepley           }
397592d50984SMatthew G. Knepley           ierr = DMPlexPointLocalFieldRead(dm, cell, f, x_t, &u_t);CHKERRQ(ierr);
397692d50984SMatthew G. Knepley           ierr = DMPlexPointLocalFieldRef(dm, cell, f, fa, &r);CHKERRQ(ierr);
397792d50984SMatthew G. Knepley           for (d = 0; d < pdim; ++d) r[d] += u_t[d];
397892d50984SMatthew G. Knepley         }
397992d50984SMatthew G. Knepley       }
398092d50984SMatthew G. Knepley       ierr = VecRestoreArray(locX_t, &x_t);CHKERRQ(ierr);
398192d50984SMatthew G. Knepley       ierr = VecRestoreArray(locF, &fa);CHKERRQ(ierr);
398292d50984SMatthew G. Knepley     }
398392d50984SMatthew G. Knepley     if (useFEM) {
398492d50984SMatthew G. Knepley       ierr = DMPlexRestoreCellFields(dm, chunkIS, locX, locX_t, locA, &u, &u_t, &a);CHKERRQ(ierr);
398592d50984SMatthew G. Knepley       ierr = DMRestoreWorkArray(dm, numCells*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
398692d50984SMatthew G. Knepley     }
398792d50984SMatthew G. Knepley   }
398892d50984SMatthew G. Knepley   if (useFEM) {ierr = ISDestroy(&chunkIS);CHKERRQ(ierr);}
398992d50984SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
399092d50984SMatthew G. Knepley   /* TODO Could include boundary residual here (see DMPlexComputeResidual_Internal) */
399192d50984SMatthew G. Knepley   if (useFEM) {
399292d50984SMatthew G. Knepley     if (maxDegree <= 1) {
399392d50984SMatthew G. Knepley       ierr = DMSNESRestoreFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
399492d50984SMatthew G. Knepley       ierr = PetscQuadratureDestroy(&affineQuad);CHKERRQ(ierr);
399592d50984SMatthew G. Knepley     } else {
399692d50984SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
399792d50984SMatthew G. Knepley         ierr = DMSNESRestoreFEGeom(coordField,cellIS,quads[f],PETSC_FALSE,&geoms[f]);CHKERRQ(ierr);
399892d50984SMatthew G. Knepley         ierr = PetscQuadratureDestroy(&quads[f]);CHKERRQ(ierr);
399992d50984SMatthew G. Knepley       }
400092d50984SMatthew G. Knepley       ierr = PetscFree2(quads,geoms);CHKERRQ(ierr);
400192d50984SMatthew G. Knepley     }
400292d50984SMatthew G. Knepley   }
400392d50984SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
400492d50984SMatthew G. Knepley   PetscFunctionReturn(0);
400592d50984SMatthew G. Knepley }
400692d50984SMatthew G. Knepley 
4007a1cf66bbSMatthew G. Knepley /*
4008a1cf66bbSMatthew G. Knepley   We always assemble JacP, and if the matrix is different from Jac and two different sets of point functions are provided, we also assemble Jac
4009a1cf66bbSMatthew G. Knepley 
4010a1cf66bbSMatthew G. Knepley   X   - The local solution vector
4011a1cf66bbSMatthew G. Knepley   X_t - The local solution time derviative vector, or NULL
4012a1cf66bbSMatthew G. Knepley */
4013a1cf66bbSMatthew G. Knepley PetscErrorCode DMPlexComputeJacobian_Patch_Internal(DM dm, PetscSection section, PetscSection globalSection, IS cellIS,
4014a1cf66bbSMatthew G. Knepley                                                     PetscReal t, PetscReal X_tShift, Vec X, Vec X_t, Mat Jac, Mat JacP, void *ctx)
4015a1cf66bbSMatthew G. Knepley {
4016a1cf66bbSMatthew G. Knepley   DM_Plex         *mesh  = (DM_Plex *) dm->data;
4017a1cf66bbSMatthew G. Knepley   const char      *name = "Jacobian", *nameP = "JacobianPre";
4018a1cf66bbSMatthew G. Knepley   DM               dmAux = NULL;
4019a1cf66bbSMatthew G. Knepley   PetscDS          prob,   probAux = NULL;
4020a1cf66bbSMatthew G. Knepley   PetscSection     sectionAux = NULL;
4021a1cf66bbSMatthew G. Knepley   Vec              A;
4022a1cf66bbSMatthew G. Knepley   DMField          coordField;
4023a1cf66bbSMatthew G. Knepley   PetscFEGeom     *cgeomFEM;
4024a1cf66bbSMatthew G. Knepley   PetscQuadrature  qGeom = NULL;
4025a1cf66bbSMatthew G. Knepley   Mat              J = Jac, JP = JacP;
4026a1cf66bbSMatthew G. Knepley   PetscScalar     *work, *u = NULL, *u_t = NULL, *a = NULL, *elemMat = NULL, *elemMatP = NULL, *elemMatD = NULL;
40279b2fc754SMatthew G. Knepley   PetscBool        hasJac, hasPrec, hasDyn, assembleJac, isMatIS, isMatISP, *isFE, hasFV = PETSC_FALSE;
4028a1cf66bbSMatthew G. Knepley   const PetscInt  *cells;
40296528b96dSMatthew G. Knepley   PetscHashFormKey key;
40309b2fc754SMatthew G. Knepley   PetscInt         Nf, fieldI, fieldJ, maxDegree, numCells, cStart, cEnd, numChunks, chunkSize, chunk, totDim, totDimAux = 0, sz, wsz, off = 0, offCell = 0;
4031a1cf66bbSMatthew G. Knepley   PetscErrorCode   ierr;
4032a1cf66bbSMatthew G. Knepley 
4033a1cf66bbSMatthew G. Knepley   PetscFunctionBegin;
4034a1cf66bbSMatthew G. Knepley   ierr = ISGetLocalSize(cellIS, &numCells);CHKERRQ(ierr);
4035a1cf66bbSMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
4036a1cf66bbSMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
4037a1cf66bbSMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
40389a2a23afSMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, NULL, 0, &A);CHKERRQ(ierr);
40399a2a23afSMatthew G. Knepley   if (A) {
40409a2a23afSMatthew G. Knepley     ierr = VecGetDM(A, &dmAux);CHKERRQ(ierr);
404192fd8e1eSJed Brown     ierr = DMGetLocalSection(dmAux, &sectionAux);CHKERRQ(ierr);
4042a1cf66bbSMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
4043a1cf66bbSMatthew G. Knepley   }
4044a1cf66bbSMatthew G. Knepley   /* Get flags */
4045a1cf66bbSMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
4046a1cf66bbSMatthew G. Knepley   ierr = DMGetWorkArray(dm, Nf, MPIU_BOOL, &isFE);CHKERRQ(ierr);
4047a1cf66bbSMatthew G. Knepley   for (fieldI = 0; fieldI < Nf; ++fieldI) {
4048a1cf66bbSMatthew G. Knepley     PetscObject  disc;
4049a1cf66bbSMatthew G. Knepley     PetscClassId id;
4050a1cf66bbSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, fieldI, &disc);CHKERRQ(ierr);
4051a1cf66bbSMatthew G. Knepley     ierr = PetscObjectGetClassId(disc, &id);CHKERRQ(ierr);
4052a1cf66bbSMatthew G. Knepley     if (id == PETSCFE_CLASSID)      {isFE[fieldI] = PETSC_TRUE;}
4053a1cf66bbSMatthew G. Knepley     else if (id == PETSCFV_CLASSID) {hasFV = PETSC_TRUE; isFE[fieldI] = PETSC_FALSE;}
4054a1cf66bbSMatthew G. Knepley   }
4055a1cf66bbSMatthew G. Knepley   ierr = PetscDSHasJacobian(prob, &hasJac);CHKERRQ(ierr);
4056a1cf66bbSMatthew G. Knepley   ierr = PetscDSHasJacobianPreconditioner(prob, &hasPrec);CHKERRQ(ierr);
4057a1cf66bbSMatthew G. Knepley   ierr = PetscDSHasDynamicJacobian(prob, &hasDyn);CHKERRQ(ierr);
4058a1cf66bbSMatthew G. Knepley   assembleJac = hasJac && hasPrec && (Jac != JacP) ? PETSC_TRUE : PETSC_FALSE;
4059a1cf66bbSMatthew G. Knepley   hasDyn      = hasDyn && (X_tShift != 0.0) ? PETSC_TRUE : PETSC_FALSE;
4060a1cf66bbSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) Jac,  MATIS, &isMatIS);CHKERRQ(ierr);
4061a1cf66bbSMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatISP);CHKERRQ(ierr);
4062a1cf66bbSMatthew G. Knepley   /* Setup input data and temp arrays (should be DMGetWorkArray) */
4063a1cf66bbSMatthew G. Knepley   if (isMatISP || isMatISP) {ierr = DMPlexGetSubdomainSection(dm, &globalSection);CHKERRQ(ierr);}
4064a1cf66bbSMatthew G. Knepley   if (isMatIS)  {ierr = MatISGetLocalMat(Jac,  &J);CHKERRQ(ierr);}
4065a1cf66bbSMatthew G. Knepley   if (isMatISP) {ierr = MatISGetLocalMat(JacP, &JP);CHKERRQ(ierr);}
4066a1cf66bbSMatthew G. Knepley   if (hasFV)    {ierr = MatSetOption(JP, MAT_IGNORE_ZERO_ENTRIES, PETSC_TRUE);CHKERRQ(ierr);} /* No allocated space for FV stuff, so ignore the zero entries */
4067a1cf66bbSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
4068a1cf66bbSMatthew G. Knepley   if (probAux) {ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);}
4069a1cf66bbSMatthew G. Knepley   /* Compute batch sizes */
4070a1cf66bbSMatthew G. Knepley   if (isFE[0]) {
4071a1cf66bbSMatthew G. Knepley     PetscFE         fe;
4072a1cf66bbSMatthew G. Knepley     PetscQuadrature q;
4073a1cf66bbSMatthew G. Knepley     PetscInt        numQuadPoints, numBatches, batchSize, numBlocks, blockSize, Nb;
4074a1cf66bbSMatthew G. Knepley 
4075a1cf66bbSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, 0, (PetscObject *) &fe);CHKERRQ(ierr);
4076a1cf66bbSMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &q);CHKERRQ(ierr);
4077a1cf66bbSMatthew G. Knepley     ierr = PetscQuadratureGetData(q, NULL, NULL, &numQuadPoints, NULL, NULL);CHKERRQ(ierr);
4078a1cf66bbSMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
4079a1cf66bbSMatthew G. Knepley     ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
4080a1cf66bbSMatthew G. Knepley     blockSize = Nb*numQuadPoints;
4081a1cf66bbSMatthew G. Knepley     batchSize = numBlocks  * blockSize;
4082a1cf66bbSMatthew G. Knepley     chunkSize = numBatches * batchSize;
4083a1cf66bbSMatthew G. Knepley     numChunks = numCells / chunkSize + numCells % chunkSize;
4084a1cf66bbSMatthew G. Knepley     ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
4085a1cf66bbSMatthew G. Knepley   } else {
4086a1cf66bbSMatthew G. Knepley     chunkSize = numCells;
4087a1cf66bbSMatthew G. Knepley     numChunks = 1;
4088a1cf66bbSMatthew G. Knepley   }
4089a1cf66bbSMatthew G. Knepley   /* Get work space */
4090a1cf66bbSMatthew G. Knepley   wsz  = (((X?1:0) + (X_t?1:0) + (dmAux?1:0))*totDim + ((hasJac?1:0) + (hasPrec?1:0) + (hasDyn?1:0))*totDim*totDim)*chunkSize;
4091a1cf66bbSMatthew G. Knepley   ierr = DMGetWorkArray(dm, wsz, MPIU_SCALAR, &work);CHKERRQ(ierr);
4092580bdb30SBarry Smith   ierr = PetscArrayzero(work, wsz);CHKERRQ(ierr);
4093a1cf66bbSMatthew G. Knepley   off      = 0;
4094a1cf66bbSMatthew G. Knepley   u        = X       ? (sz = chunkSize*totDim,        off += sz, work+off-sz) : NULL;
4095a1cf66bbSMatthew G. Knepley   u_t      = X_t     ? (sz = chunkSize*totDim,        off += sz, work+off-sz) : NULL;
4096a1cf66bbSMatthew G. Knepley   a        = dmAux   ? (sz = chunkSize*totDimAux,     off += sz, work+off-sz) : NULL;
4097a1cf66bbSMatthew G. Knepley   elemMat  = hasJac  ? (sz = chunkSize*totDim*totDim, off += sz, work+off-sz) : NULL;
4098a1cf66bbSMatthew G. Knepley   elemMatP = hasPrec ? (sz = chunkSize*totDim*totDim, off += sz, work+off-sz) : NULL;
4099a1cf66bbSMatthew G. Knepley   elemMatD = hasDyn  ? (sz = chunkSize*totDim*totDim, off += sz, work+off-sz) : NULL;
4100a1cf66bbSMatthew G. Knepley   if (off != wsz) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Error is workspace size %D should be %D", off, wsz);
4101a1cf66bbSMatthew G. Knepley   /* Setup geometry */
4102a1cf66bbSMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
41039b2fc754SMatthew G. Knepley   ierr = DMFieldGetDegree(coordField, cellIS, NULL, &maxDegree);CHKERRQ(ierr);
41049b2fc754SMatthew G. Knepley   if (maxDegree <= 1) {ierr = DMFieldCreateDefaultQuadrature(coordField, cellIS, &qGeom);CHKERRQ(ierr);}
4105a1cf66bbSMatthew G. Knepley   if (!qGeom) {
4106a1cf66bbSMatthew G. Knepley     PetscFE fe;
4107a1cf66bbSMatthew G. Knepley 
4108a1cf66bbSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, 0, (PetscObject *) &fe);CHKERRQ(ierr);
4109a1cf66bbSMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &qGeom);CHKERRQ(ierr);
4110a1cf66bbSMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) qGeom);CHKERRQ(ierr);
4111a1cf66bbSMatthew G. Knepley   }
4112a1cf66bbSMatthew G. Knepley   ierr = DMSNESGetFEGeom(coordField, cellIS, qGeom, PETSC_FALSE, &cgeomFEM);CHKERRQ(ierr);
4113a1cf66bbSMatthew G. Knepley   /* Compute volume integrals */
4114a1cf66bbSMatthew G. Knepley   if (assembleJac) {ierr = MatZeroEntries(J);CHKERRQ(ierr);}
4115a1cf66bbSMatthew G. Knepley   ierr = MatZeroEntries(JP);CHKERRQ(ierr);
41166528b96dSMatthew G. Knepley   key.label = NULL;
41176528b96dSMatthew G. Knepley   key.value = 0;
4118a1cf66bbSMatthew G. Knepley   for (chunk = 0; chunk < numChunks; ++chunk, offCell += chunkSize) {
4119a1cf66bbSMatthew G. Knepley     const PetscInt   Ncell = PetscMin(chunkSize, numCells - offCell);
4120a1cf66bbSMatthew G. Knepley     PetscInt         c;
4121a1cf66bbSMatthew G. Knepley 
4122a1cf66bbSMatthew G. Knepley     /* Extract values */
4123a1cf66bbSMatthew G. Knepley     for (c = 0; c < Ncell; ++c) {
4124a1cf66bbSMatthew G. Knepley       const PetscInt cell = cells ? cells[c+offCell] : c+offCell;
4125a1cf66bbSMatthew G. Knepley       PetscScalar   *x = NULL,  *x_t = NULL;
4126a1cf66bbSMatthew G. Knepley       PetscInt       i;
4127a1cf66bbSMatthew G. Knepley 
4128a1cf66bbSMatthew G. Knepley       if (X) {
4129a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, section, X, cell, NULL, &x);CHKERRQ(ierr);
4130a1cf66bbSMatthew G. Knepley         for (i = 0; i < totDim; ++i) u[c*totDim+i] = x[i];
4131a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, section, X, cell, NULL, &x);CHKERRQ(ierr);
4132a1cf66bbSMatthew G. Knepley       }
4133a1cf66bbSMatthew G. Knepley       if (X_t) {
4134a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecGetClosure(dm, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
4135a1cf66bbSMatthew G. Knepley         for (i = 0; i < totDim; ++i) u_t[c*totDim+i] = x_t[i];
4136a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dm, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
4137a1cf66bbSMatthew G. Knepley       }
4138a1cf66bbSMatthew G. Knepley       if (dmAux) {
4139a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecGetClosure(dmAux, sectionAux, A, cell, NULL, &x);CHKERRQ(ierr);
4140a1cf66bbSMatthew G. Knepley         for (i = 0; i < totDimAux; ++i) a[c*totDimAux+i] = x[i];
4141a1cf66bbSMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(dmAux, sectionAux, A, cell, NULL, &x);CHKERRQ(ierr);
4142a1cf66bbSMatthew G. Knepley       }
4143a1cf66bbSMatthew G. Knepley     }
4144a1cf66bbSMatthew G. Knepley     for (fieldI = 0; fieldI < Nf; ++fieldI) {
4145a1cf66bbSMatthew G. Knepley       PetscFE fe;
4146a1cf66bbSMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fe);CHKERRQ(ierr);
4147a1cf66bbSMatthew G. Knepley       for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
41486528b96dSMatthew G. Knepley         key.field = fieldI*Nf + fieldJ;
41496528b96dSMatthew G. Knepley         if (hasJac)  {ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN,     key, Ncell, cgeomFEM, u, u_t, probAux, a, t, X_tShift, elemMat);CHKERRQ(ierr);}
41506528b96dSMatthew G. Knepley         if (hasPrec) {ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_PRE, key, Ncell, cgeomFEM, u, u_t, probAux, a, t, X_tShift, elemMatP);CHKERRQ(ierr);}
41516528b96dSMatthew G. Knepley         if (hasDyn)  {ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_DYN, key, Ncell, cgeomFEM, u, u_t, probAux, a, t, X_tShift, elemMatD);CHKERRQ(ierr);}
4152a1cf66bbSMatthew G. Knepley       }
4153a1cf66bbSMatthew G. Knepley       /* For finite volume, add the identity */
4154a1cf66bbSMatthew G. Knepley       if (!isFE[fieldI]) {
4155a1cf66bbSMatthew G. Knepley         PetscFV  fv;
4156a1cf66bbSMatthew G. Knepley         PetscInt eOffset = 0, Nc, fc, foff;
4157a1cf66bbSMatthew G. Knepley 
4158a1cf66bbSMatthew G. Knepley         ierr = PetscDSGetFieldOffset(prob, fieldI, &foff);CHKERRQ(ierr);
4159a1cf66bbSMatthew G. Knepley         ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fv);CHKERRQ(ierr);
4160a1cf66bbSMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &Nc);CHKERRQ(ierr);
4161a1cf66bbSMatthew G. Knepley         for (c = 0; c < chunkSize; ++c, eOffset += totDim*totDim) {
4162a1cf66bbSMatthew G. Knepley           for (fc = 0; fc < Nc; ++fc) {
4163a1cf66bbSMatthew G. Knepley             const PetscInt i = foff + fc;
4164a1cf66bbSMatthew G. Knepley             if (hasJac)  {elemMat [eOffset+i*totDim+i] = 1.0;}
4165a1cf66bbSMatthew G. Knepley             if (hasPrec) {elemMatP[eOffset+i*totDim+i] = 1.0;}
4166a1cf66bbSMatthew G. Knepley           }
4167a1cf66bbSMatthew G. Knepley         }
4168a1cf66bbSMatthew G. Knepley       }
4169a1cf66bbSMatthew G. Knepley     }
4170a1cf66bbSMatthew G. Knepley     /*   Add contribution from X_t */
4171a1cf66bbSMatthew G. Knepley     if (hasDyn) {for (c = 0; c < chunkSize*totDim*totDim; ++c) elemMat[c] += X_tShift*elemMatD[c];}
4172a1cf66bbSMatthew G. Knepley     /* Insert values into matrix */
4173a1cf66bbSMatthew G. Knepley     for (c = 0; c < Ncell; ++c) {
4174a1cf66bbSMatthew G. Knepley       const PetscInt cell = cells ? cells[c+offCell] : c+offCell;
4175a1cf66bbSMatthew G. Knepley       if (mesh->printFEM > 1) {
4176a1cf66bbSMatthew G. Knepley         if (hasJac)  {ierr = DMPrintCellMatrix(cell, name,  totDim, totDim, &elemMat[(c-cStart)*totDim*totDim]);CHKERRQ(ierr);}
4177a1cf66bbSMatthew G. Knepley         if (hasPrec) {ierr = DMPrintCellMatrix(cell, nameP, totDim, totDim, &elemMatP[(c-cStart)*totDim*totDim]);CHKERRQ(ierr);}
4178a1cf66bbSMatthew G. Knepley       }
4179a1cf66bbSMatthew G. Knepley       if (assembleJac) {ierr = DMPlexMatSetClosure(dm, section, globalSection, Jac, cell, &elemMat[(c-cStart)*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);}
4180a1cf66bbSMatthew G. Knepley       ierr = DMPlexMatSetClosure(dm, section, globalSection, JP, cell, &elemMat[(c-cStart)*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
4181a1cf66bbSMatthew G. Knepley     }
4182a1cf66bbSMatthew G. Knepley   }
4183a1cf66bbSMatthew G. Knepley   /* Cleanup */
4184a1cf66bbSMatthew G. Knepley   ierr = DMSNESRestoreFEGeom(coordField, cellIS, qGeom, PETSC_FALSE, &cgeomFEM);CHKERRQ(ierr);
4185a1cf66bbSMatthew G. Knepley   ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
4186a1cf66bbSMatthew G. Knepley   if (hasFV) {ierr = MatSetOption(JacP, MAT_IGNORE_ZERO_ENTRIES, PETSC_FALSE);CHKERRQ(ierr);}
4187a1cf66bbSMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, Nf, MPIU_BOOL, &isFE);CHKERRQ(ierr);
4188a1cf66bbSMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, ((1 + (X_t?1:0) + (dmAux?1:0))*totDim + ((hasJac?1:0) + (hasPrec?1:0) + (hasDyn?1:0))*totDim*totDim)*chunkSize, MPIU_SCALAR, &work);CHKERRQ(ierr);
4189a1cf66bbSMatthew G. Knepley   /* Compute boundary integrals */
4190a1cf66bbSMatthew G. Knepley   /* ierr = DMPlexComputeBdJacobian_Internal(dm, X, X_t, t, X_tShift, Jac, JacP, ctx);CHKERRQ(ierr); */
4191a1cf66bbSMatthew G. Knepley   /* Assemble matrix */
4192a1cf66bbSMatthew G. Knepley   if (assembleJac) {ierr = MatAssemblyBegin(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);ierr = MatAssemblyEnd(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);}
4193a1cf66bbSMatthew G. Knepley   ierr = MatAssemblyBegin(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);ierr = MatAssemblyEnd(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
4194a1cf66bbSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
4195a1cf66bbSMatthew G. Knepley   PetscFunctionReturn(0);
4196a1cf66bbSMatthew G. Knepley }
41973e9753d6SMatthew G. Knepley 
41983e9753d6SMatthew G. Knepley /******** FEM Assembly Function ********/
41993e9753d6SMatthew G. Knepley 
42003e9753d6SMatthew G. Knepley static PetscErrorCode DMConvertPlex_Internal(DM dm, DM *plex, PetscBool copy)
42013e9753d6SMatthew G. Knepley {
42023e9753d6SMatthew G. Knepley   PetscBool      isPlex;
42033e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
42043e9753d6SMatthew G. Knepley 
42053e9753d6SMatthew G. Knepley   PetscFunctionBegin;
42063e9753d6SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) dm, DMPLEX, &isPlex);CHKERRQ(ierr);
42073e9753d6SMatthew G. Knepley   if (isPlex) {
42083e9753d6SMatthew G. Knepley     *plex = dm;
42093e9753d6SMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) dm);CHKERRQ(ierr);
42103e9753d6SMatthew G. Knepley   } else {
42113e9753d6SMatthew G. Knepley     ierr = PetscObjectQuery((PetscObject) dm, "dm_plex", (PetscObject *) plex);CHKERRQ(ierr);
42123e9753d6SMatthew G. Knepley     if (!*plex) {
42133e9753d6SMatthew G. Knepley       ierr = DMConvert(dm,DMPLEX,plex);CHKERRQ(ierr);
42143e9753d6SMatthew G. Knepley       ierr = PetscObjectCompose((PetscObject) dm, "dm_plex", (PetscObject) *plex);CHKERRQ(ierr);
42153e9753d6SMatthew G. Knepley       if (copy) {
42169a2a23afSMatthew G. Knepley         ierr = DMCopyAuxiliaryVec(dm, *plex);CHKERRQ(ierr);
42173e9753d6SMatthew G. Knepley       }
42183e9753d6SMatthew G. Knepley     } else {
42193e9753d6SMatthew G. Knepley       ierr = PetscObjectReference((PetscObject) *plex);CHKERRQ(ierr);
42203e9753d6SMatthew G. Knepley     }
42213e9753d6SMatthew G. Knepley   }
42223e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
42233e9753d6SMatthew G. Knepley }
42243e9753d6SMatthew G. Knepley 
42253e9753d6SMatthew G. Knepley /*@
42263e9753d6SMatthew G. Knepley   DMPlexGetGeometryFVM - Return precomputed geometric data
42273e9753d6SMatthew G. Knepley 
42283e9753d6SMatthew G. Knepley   Collective on DM
42293e9753d6SMatthew G. Knepley 
42303e9753d6SMatthew G. Knepley   Input Parameter:
42313e9753d6SMatthew G. Knepley . dm - The DM
42323e9753d6SMatthew G. Knepley 
42333e9753d6SMatthew G. Knepley   Output Parameters:
42343e9753d6SMatthew G. Knepley + facegeom - The values precomputed from face geometry
42353e9753d6SMatthew G. Knepley . cellgeom - The values precomputed from cell geometry
42363e9753d6SMatthew G. Knepley - minRadius - The minimum radius over the mesh of an inscribed sphere in a cell
42373e9753d6SMatthew G. Knepley 
42383e9753d6SMatthew G. Knepley   Level: developer
42393e9753d6SMatthew G. Knepley 
4240446c23c1SPierre Jolivet .seealso: DMTSSetRHSFunctionLocal()
42413e9753d6SMatthew G. Knepley @*/
42423e9753d6SMatthew G. Knepley PetscErrorCode DMPlexGetGeometryFVM(DM dm, Vec *facegeom, Vec *cellgeom, PetscReal *minRadius)
42433e9753d6SMatthew G. Knepley {
42443e9753d6SMatthew G. Knepley   DM             plex;
42453e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
42463e9753d6SMatthew G. Knepley 
42473e9753d6SMatthew G. Knepley   PetscFunctionBegin;
42483e9753d6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
42493e9753d6SMatthew G. Knepley   ierr = DMConvertPlex_Internal(dm,&plex,PETSC_TRUE);CHKERRQ(ierr);
42503e9753d6SMatthew G. Knepley   ierr = DMPlexGetDataFVM(plex, NULL, cellgeom, facegeom, NULL);CHKERRQ(ierr);
42513e9753d6SMatthew G. Knepley   if (minRadius) {ierr = DMPlexGetMinRadius(plex, minRadius);CHKERRQ(ierr);}
42523e9753d6SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
42533e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
42543e9753d6SMatthew G. Knepley }
42553e9753d6SMatthew G. Knepley 
42563e9753d6SMatthew G. Knepley /*@
42573e9753d6SMatthew G. Knepley   DMPlexGetGradientDM - Return gradient data layout
42583e9753d6SMatthew G. Knepley 
42593e9753d6SMatthew G. Knepley   Collective on DM
42603e9753d6SMatthew G. Knepley 
42613e9753d6SMatthew G. Knepley   Input Parameters:
42623e9753d6SMatthew G. Knepley + dm - The DM
42633e9753d6SMatthew G. Knepley - fv - The PetscFV
42643e9753d6SMatthew G. Knepley 
42653e9753d6SMatthew G. Knepley   Output Parameter:
42663e9753d6SMatthew G. Knepley . dmGrad - The layout for gradient values
42673e9753d6SMatthew G. Knepley 
42683e9753d6SMatthew G. Knepley   Level: developer
42693e9753d6SMatthew G. Knepley 
4270446c23c1SPierre Jolivet .seealso: DMPlexGetGeometryFVM()
42713e9753d6SMatthew G. Knepley @*/
42723e9753d6SMatthew G. Knepley PetscErrorCode DMPlexGetGradientDM(DM dm, PetscFV fv, DM *dmGrad)
42733e9753d6SMatthew G. Knepley {
42743e9753d6SMatthew G. Knepley   DM             plex;
42753e9753d6SMatthew G. Knepley   PetscBool      computeGradients;
42763e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
42773e9753d6SMatthew G. Knepley 
42783e9753d6SMatthew G. Knepley   PetscFunctionBegin;
42793e9753d6SMatthew G. Knepley   PetscValidHeaderSpecific(dm,DM_CLASSID,1);
42803e9753d6SMatthew G. Knepley   PetscValidHeaderSpecific(fv,PETSCFV_CLASSID,2);
42813e9753d6SMatthew G. Knepley   PetscValidPointer(dmGrad,3);
42823e9753d6SMatthew G. Knepley   ierr = PetscFVGetComputeGradients(fv, &computeGradients);CHKERRQ(ierr);
42833e9753d6SMatthew G. Knepley   if (!computeGradients) {*dmGrad = NULL; PetscFunctionReturn(0);}
42843e9753d6SMatthew G. Knepley   ierr = DMConvertPlex_Internal(dm,&plex,PETSC_TRUE);CHKERRQ(ierr);
42853e9753d6SMatthew G. Knepley   ierr = DMPlexGetDataFVM(plex, fv, NULL, NULL, dmGrad);CHKERRQ(ierr);
42863e9753d6SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
42873e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
42883e9753d6SMatthew G. Knepley }
42893e9753d6SMatthew G. Knepley 
429045480ffeSMatthew G. Knepley static PetscErrorCode DMPlexComputeBdResidual_Single_Internal(DM dm, PetscReal t, PetscWeakForm wf, DMLabel label, PetscInt numValues, const PetscInt values[], PetscInt field, Vec locX, Vec locX_t, Vec locF, DMField coordField, IS facetIS)
42913e9753d6SMatthew G. Knepley {
42923e9753d6SMatthew G. Knepley   DM_Plex         *mesh = (DM_Plex *) dm->data;
42933e9753d6SMatthew G. Knepley   DM               plex = NULL, plexA = NULL;
42943e9753d6SMatthew G. Knepley   DMEnclosureType  encAux;
42953e9753d6SMatthew G. Knepley   PetscDS          prob, probAux = NULL;
42963e9753d6SMatthew G. Knepley   PetscSection     section, sectionAux = NULL;
42973e9753d6SMatthew G. Knepley   Vec              locA = NULL;
42983e9753d6SMatthew G. Knepley   PetscScalar     *u = NULL, *u_t = NULL, *a = NULL, *elemVec = NULL;
42993e9753d6SMatthew G. Knepley   PetscInt         v;
43003e9753d6SMatthew G. Knepley   PetscInt         totDim, totDimAux = 0;
43013e9753d6SMatthew G. Knepley   PetscErrorCode   ierr;
43023e9753d6SMatthew G. Knepley 
43033e9753d6SMatthew G. Knepley   PetscFunctionBegin;
43043e9753d6SMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
43053e9753d6SMatthew G. Knepley   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
43063e9753d6SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
43073e9753d6SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
430804c51a94SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, label, values[0], &locA);CHKERRQ(ierr);
43093e9753d6SMatthew G. Knepley   if (locA) {
43103e9753d6SMatthew G. Knepley     DM dmAux;
43113e9753d6SMatthew G. Knepley 
43123e9753d6SMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
43133e9753d6SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
43143e9753d6SMatthew G. Knepley     ierr = DMConvert(dmAux, DMPLEX, &plexA);CHKERRQ(ierr);
43153e9753d6SMatthew G. Knepley     ierr = DMGetDS(plexA, &probAux);CHKERRQ(ierr);
43163e9753d6SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
43173e9753d6SMatthew G. Knepley     ierr = DMGetLocalSection(plexA, &sectionAux);CHKERRQ(ierr);
43183e9753d6SMatthew G. Knepley   }
43193e9753d6SMatthew G. Knepley   for (v = 0; v < numValues; ++v) {
43203e9753d6SMatthew G. Knepley     PetscFEGeom     *fgeom;
43213e9753d6SMatthew G. Knepley     PetscInt         maxDegree;
43223e9753d6SMatthew G. Knepley     PetscQuadrature  qGeom = NULL;
43233e9753d6SMatthew G. Knepley     IS               pointIS;
43243e9753d6SMatthew G. Knepley     const PetscInt  *points;
432506d8a0d3SMatthew G. Knepley     PetscHashFormKey key;
43263e9753d6SMatthew G. Knepley     PetscInt         numFaces, face, Nq;
43273e9753d6SMatthew G. Knepley 
432806d8a0d3SMatthew G. Knepley     key.label = label;
432906d8a0d3SMatthew G. Knepley     key.value = values[v];
433006d8a0d3SMatthew G. Knepley     key.field = field;
43313e9753d6SMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, values[v], &pointIS);CHKERRQ(ierr);
43323e9753d6SMatthew G. Knepley     if (!pointIS) continue; /* No points with that id on this process */
43333e9753d6SMatthew G. Knepley     {
43343e9753d6SMatthew G. Knepley       IS isectIS;
43353e9753d6SMatthew G. Knepley 
43363e9753d6SMatthew G. Knepley       /* TODO: Special cases of ISIntersect where it is quick to check a priori if one is a superset of the other */
43373e9753d6SMatthew G. Knepley       ierr = ISIntersect_Caching_Internal(facetIS,pointIS,&isectIS);CHKERRQ(ierr);
43383e9753d6SMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
43393e9753d6SMatthew G. Knepley       pointIS = isectIS;
43403e9753d6SMatthew G. Knepley     }
43413e9753d6SMatthew G. Knepley     ierr = ISGetLocalSize(pointIS,&numFaces);CHKERRQ(ierr);
43423e9753d6SMatthew G. Knepley     ierr = ISGetIndices(pointIS,&points);CHKERRQ(ierr);
43433e9753d6SMatthew G. Knepley     ierr = PetscMalloc4(numFaces*totDim, &u, locX_t ? numFaces*totDim : 0, &u_t, numFaces*totDim, &elemVec, locA ? numFaces*totDimAux : 0, &a);CHKERRQ(ierr);
43443e9753d6SMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,pointIS,NULL,&maxDegree);CHKERRQ(ierr);
43453e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
43463e9753d6SMatthew G. Knepley       ierr = DMFieldCreateDefaultQuadrature(coordField,pointIS,&qGeom);CHKERRQ(ierr);
43473e9753d6SMatthew G. Knepley     }
43483e9753d6SMatthew G. Knepley     if (!qGeom) {
43493e9753d6SMatthew G. Knepley       PetscFE fe;
43503e9753d6SMatthew G. Knepley 
43513e9753d6SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fe);CHKERRQ(ierr);
43523e9753d6SMatthew G. Knepley       ierr = PetscFEGetFaceQuadrature(fe, &qGeom);CHKERRQ(ierr);
43533e9753d6SMatthew G. Knepley       ierr = PetscObjectReference((PetscObject)qGeom);CHKERRQ(ierr);
43543e9753d6SMatthew G. Knepley     }
43553e9753d6SMatthew G. Knepley     ierr = PetscQuadratureGetData(qGeom, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
43563e9753d6SMatthew G. Knepley     ierr = DMSNESGetFEGeom(coordField,pointIS,qGeom,PETSC_TRUE,&fgeom);CHKERRQ(ierr);
43573e9753d6SMatthew G. Knepley     for (face = 0; face < numFaces; ++face) {
4358f15274beSMatthew Knepley       const PetscInt point = points[face], *support;
43593e9753d6SMatthew G. Knepley       PetscScalar   *x     = NULL;
4360f15274beSMatthew Knepley       PetscInt       i;
43613e9753d6SMatthew G. Knepley 
43623e9753d6SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
43633e9753d6SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
43643e9753d6SMatthew G. Knepley       for (i = 0; i < totDim; ++i) u[face*totDim+i] = x[i];
43653e9753d6SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
43663e9753d6SMatthew G. Knepley       if (locX_t) {
43673e9753d6SMatthew G. Knepley         ierr = DMPlexVecGetClosure(plex, section, locX_t, support[0], NULL, &x);CHKERRQ(ierr);
43683e9753d6SMatthew G. Knepley         for (i = 0; i < totDim; ++i) u_t[face*totDim+i] = x[i];
43693e9753d6SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(plex, section, locX_t, support[0], NULL, &x);CHKERRQ(ierr);
43703e9753d6SMatthew G. Knepley       }
43713e9753d6SMatthew G. Knepley       if (locA) {
43723e9753d6SMatthew G. Knepley         PetscInt subp;
43733e9753d6SMatthew G. Knepley 
43743e9753d6SMatthew G. Knepley         ierr = DMGetEnclosurePoint(plexA, dm, encAux, support[0], &subp);CHKERRQ(ierr);
43753e9753d6SMatthew G. Knepley         ierr = DMPlexVecGetClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
43763e9753d6SMatthew G. Knepley         for (i = 0; i < totDimAux; ++i) a[face*totDimAux+i] = x[i];
43773e9753d6SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
43783e9753d6SMatthew G. Knepley       }
43793e9753d6SMatthew G. Knepley     }
43803e9753d6SMatthew G. Knepley     ierr = PetscArrayzero(elemVec, numFaces*totDim);CHKERRQ(ierr);
43813e9753d6SMatthew G. Knepley     {
43823e9753d6SMatthew G. Knepley       PetscFE         fe;
43833e9753d6SMatthew G. Knepley       PetscInt        Nb;
43843e9753d6SMatthew G. Knepley       PetscFEGeom     *chunkGeom = NULL;
43853e9753d6SMatthew G. Knepley       /* Conforming batches */
43863e9753d6SMatthew G. Knepley       PetscInt        numChunks, numBatches, numBlocks, Ne, blockSize, batchSize;
43873e9753d6SMatthew G. Knepley       /* Remainder */
43883e9753d6SMatthew G. Knepley       PetscInt        Nr, offset;
43893e9753d6SMatthew G. Knepley 
43903e9753d6SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, field, (PetscObject *) &fe);CHKERRQ(ierr);
43913e9753d6SMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
43923e9753d6SMatthew G. Knepley       ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
43933e9753d6SMatthew G. Knepley       /* TODO: documentation is unclear about what is going on with these numbers: how should Nb / Nq factor in ? */
43943e9753d6SMatthew G. Knepley       blockSize = Nb;
43953e9753d6SMatthew G. Knepley       batchSize = numBlocks * blockSize;
43963e9753d6SMatthew G. Knepley       ierr =  PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
43973e9753d6SMatthew G. Knepley       numChunks = numFaces / (numBatches*batchSize);
43983e9753d6SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
43993e9753d6SMatthew G. Knepley       Nr        = numFaces % (numBatches*batchSize);
44003e9753d6SMatthew G. Knepley       offset    = numFaces - Nr;
44013e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(fgeom,0,offset,&chunkGeom);CHKERRQ(ierr);
440245480ffeSMatthew G. Knepley       ierr = PetscFEIntegrateBdResidual(prob, wf, key, Ne, chunkGeom, u, u_t, probAux, a, t, elemVec);CHKERRQ(ierr);
44033e9753d6SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(fgeom, 0, offset, &chunkGeom);CHKERRQ(ierr);
44043e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(fgeom,offset,numFaces,&chunkGeom);CHKERRQ(ierr);
440545480ffeSMatthew G. Knepley       ierr = PetscFEIntegrateBdResidual(prob, wf, key, Nr, chunkGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, a ? &a[offset*totDimAux] : NULL, t, &elemVec[offset*totDim]);CHKERRQ(ierr);
44063e9753d6SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(fgeom,offset,numFaces,&chunkGeom);CHKERRQ(ierr);
44073e9753d6SMatthew G. Knepley     }
44083e9753d6SMatthew G. Knepley     for (face = 0; face < numFaces; ++face) {
44093e9753d6SMatthew G. Knepley       const PetscInt point = points[face], *support;
44103e9753d6SMatthew G. Knepley 
44113e9753d6SMatthew G. Knepley       if (mesh->printFEM > 1) {ierr = DMPrintCellVector(point, "BdResidual", totDim, &elemVec[face*totDim]);CHKERRQ(ierr);}
44123e9753d6SMatthew G. Knepley       ierr = DMPlexGetSupport(plex, point, &support);CHKERRQ(ierr);
44133e9753d6SMatthew G. Knepley       ierr = DMPlexVecSetClosure(plex, NULL, locF, support[0], &elemVec[face*totDim], ADD_ALL_VALUES);CHKERRQ(ierr);
44143e9753d6SMatthew G. Knepley     }
44153e9753d6SMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,pointIS,qGeom,PETSC_TRUE,&fgeom);CHKERRQ(ierr);
44163e9753d6SMatthew G. Knepley     ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
44173e9753d6SMatthew G. Knepley     ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
44183e9753d6SMatthew G. Knepley     ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
44193e9753d6SMatthew G. Knepley     ierr = PetscFree4(u, u_t, elemVec, a);CHKERRQ(ierr);
44203e9753d6SMatthew G. Knepley   }
44213e9753d6SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
44223e9753d6SMatthew G. Knepley   ierr = DMDestroy(&plexA);CHKERRQ(ierr);
44233e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
44243e9753d6SMatthew G. Knepley }
44253e9753d6SMatthew G. Knepley 
442645480ffeSMatthew G. Knepley PetscErrorCode DMPlexComputeBdResidualSingle(DM dm, PetscReal t, PetscWeakForm wf, DMLabel label, PetscInt numValues, const PetscInt values[], PetscInt field, Vec locX, Vec locX_t, Vec locF)
44273e9753d6SMatthew G. Knepley {
44283e9753d6SMatthew G. Knepley   DMField        coordField;
44293e9753d6SMatthew G. Knepley   DMLabel        depthLabel;
44303e9753d6SMatthew G. Knepley   IS             facetIS;
44313e9753d6SMatthew G. Knepley   PetscInt       dim;
44323e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
44333e9753d6SMatthew G. Knepley 
44343e9753d6SMatthew G. Knepley   PetscFunctionBegin;
44353e9753d6SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
44363e9753d6SMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
44373e9753d6SMatthew G. Knepley   ierr = DMLabelGetStratumIS(depthLabel, dim-1, &facetIS);CHKERRQ(ierr);
44383e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
443945480ffeSMatthew G. Knepley   ierr = DMPlexComputeBdResidual_Single_Internal(dm, t, wf, label, numValues, values, field, locX, locX_t, locF, coordField, facetIS);CHKERRQ(ierr);
44403e9753d6SMatthew G. Knepley   ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
44413e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
44423e9753d6SMatthew G. Knepley }
44433e9753d6SMatthew G. Knepley 
44443e9753d6SMatthew G. Knepley PetscErrorCode DMPlexComputeBdResidual_Internal(DM dm, Vec locX, Vec locX_t, PetscReal t, Vec locF, void *user)
44453e9753d6SMatthew G. Knepley {
44463e9753d6SMatthew G. Knepley   PetscDS        prob;
44473e9753d6SMatthew G. Knepley   PetscInt       numBd, bd;
44483e9753d6SMatthew G. Knepley   DMField        coordField = NULL;
44493e9753d6SMatthew G. Knepley   IS             facetIS    = NULL;
44503e9753d6SMatthew G. Knepley   DMLabel        depthLabel;
44513e9753d6SMatthew G. Knepley   PetscInt       dim;
44523e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
44533e9753d6SMatthew G. Knepley 
44543e9753d6SMatthew G. Knepley   PetscFunctionBegin;
44553e9753d6SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
44563e9753d6SMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
44573e9753d6SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
44583e9753d6SMatthew G. Knepley   ierr = DMLabelGetStratumIS(depthLabel,dim - 1,&facetIS);CHKERRQ(ierr);
44593e9753d6SMatthew G. Knepley   ierr = PetscDSGetNumBoundary(prob, &numBd);CHKERRQ(ierr);
44603e9753d6SMatthew G. Knepley   for (bd = 0; bd < numBd; ++bd) {
446145480ffeSMatthew G. Knepley     PetscWeakForm           wf;
44623e9753d6SMatthew G. Knepley     DMBoundaryConditionType type;
44633e9753d6SMatthew G. Knepley     DMLabel                 label;
44643e9753d6SMatthew G. Knepley     const PetscInt         *values;
44653e9753d6SMatthew G. Knepley     PetscInt                field, numValues;
44663e9753d6SMatthew G. Knepley     PetscObject             obj;
44673e9753d6SMatthew G. Knepley     PetscClassId            id;
44683e9753d6SMatthew G. Knepley 
446945480ffeSMatthew G. Knepley     ierr = PetscDSGetBoundary(prob, bd, &wf, &type, NULL, &label, &numValues, &values, &field, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
44703e9753d6SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr);
44713e9753d6SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
44723e9753d6SMatthew G. Knepley     if ((id != PETSCFE_CLASSID) || (type & DM_BC_ESSENTIAL)) continue;
44733e9753d6SMatthew G. Knepley     if (!facetIS) {
44743e9753d6SMatthew G. Knepley       DMLabel  depthLabel;
44753e9753d6SMatthew G. Knepley       PetscInt dim;
44763e9753d6SMatthew G. Knepley 
44773e9753d6SMatthew G. Knepley       ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
44783e9753d6SMatthew G. Knepley       ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
44793e9753d6SMatthew G. Knepley       ierr = DMLabelGetStratumIS(depthLabel, dim - 1, &facetIS);CHKERRQ(ierr);
44803e9753d6SMatthew G. Knepley     }
44813e9753d6SMatthew G. Knepley     ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
448245480ffeSMatthew G. Knepley     ierr = DMPlexComputeBdResidual_Single_Internal(dm, t, wf, label, numValues, values, field, locX, locX_t, locF, coordField, facetIS);CHKERRQ(ierr);
44833e9753d6SMatthew G. Knepley   }
44843e9753d6SMatthew G. Knepley   ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
44853e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
44863e9753d6SMatthew G. Knepley }
44873e9753d6SMatthew G. Knepley 
44886528b96dSMatthew G. Knepley PetscErrorCode DMPlexComputeResidual_Internal(DM dm, PetscHashFormKey key, IS cellIS, PetscReal time, Vec locX, Vec locX_t, PetscReal t, Vec locF, void *user)
44893e9753d6SMatthew G. Knepley {
44903e9753d6SMatthew G. Knepley   DM_Plex         *mesh       = (DM_Plex *) dm->data;
44913e9753d6SMatthew G. Knepley   const char      *name       = "Residual";
44923e9753d6SMatthew G. Knepley   DM               dmAux      = NULL;
44933e9753d6SMatthew G. Knepley   DM               dmGrad     = NULL;
44943e9753d6SMatthew G. Knepley   DMLabel          ghostLabel = NULL;
44956528b96dSMatthew G. Knepley   PetscDS          ds         = NULL;
44966528b96dSMatthew G. Knepley   PetscDS          dsAux      = NULL;
44973e9753d6SMatthew G. Knepley   PetscSection     section    = NULL;
44983e9753d6SMatthew G. Knepley   PetscBool        useFEM     = PETSC_FALSE;
44993e9753d6SMatthew G. Knepley   PetscBool        useFVM     = PETSC_FALSE;
45003e9753d6SMatthew G. Knepley   PetscBool        isImplicit = (locX_t || time == PETSC_MIN_REAL) ? PETSC_TRUE : PETSC_FALSE;
45013e9753d6SMatthew G. Knepley   PetscFV          fvm        = NULL;
45023e9753d6SMatthew G. Knepley   PetscFVCellGeom *cgeomFVM   = NULL;
45033e9753d6SMatthew G. Knepley   PetscFVFaceGeom *fgeomFVM   = NULL;
45043e9753d6SMatthew G. Knepley   DMField          coordField = NULL;
45053e9753d6SMatthew G. Knepley   Vec              locA, cellGeometryFVM = NULL, faceGeometryFVM = NULL, grad, locGrad = NULL;
45063e9753d6SMatthew G. Knepley   PetscScalar     *u = NULL, *u_t, *a, *uL, *uR;
45073e9753d6SMatthew G. Knepley   IS               chunkIS;
45083e9753d6SMatthew G. Knepley   const PetscInt  *cells;
45093e9753d6SMatthew G. Knepley   PetscInt         cStart, cEnd, numCells;
45103e9753d6SMatthew G. Knepley   PetscInt         Nf, f, totDim, totDimAux, numChunks, cellChunkSize, faceChunkSize, chunk, fStart, fEnd;
45113e9753d6SMatthew G. Knepley   PetscInt         maxDegree = PETSC_MAX_INT;
45123e9753d6SMatthew G. Knepley   PetscQuadrature  affineQuad = NULL, *quads = NULL;
45133e9753d6SMatthew G. Knepley   PetscFEGeom     *affineGeom = NULL, **geoms = NULL;
45143e9753d6SMatthew G. Knepley   PetscErrorCode   ierr;
45153e9753d6SMatthew G. Knepley 
45163e9753d6SMatthew G. Knepley   PetscFunctionBegin;
45173e9753d6SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
45183e9753d6SMatthew G. Knepley   /* TODO The places where we have to use isFE are probably the member functions for the PetscDisc class */
45193e9753d6SMatthew G. Knepley   /* TODO The FVM geometry is over-manipulated. Make the precalc functions return exactly what we need */
45203e9753d6SMatthew G. Knepley   /* FEM+FVM */
45213e9753d6SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
45223e9753d6SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
45233e9753d6SMatthew G. Knepley   /* 1: Get sizes from dm and dmAux */
45243e9753d6SMatthew G. Knepley   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
45253e9753d6SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
45266528b96dSMatthew G. Knepley   ierr = DMGetCellDS(dm, cells ? cells[cStart] : cStart, &ds);CHKERRQ(ierr);
45276528b96dSMatthew G. Knepley   ierr = PetscDSGetNumFields(ds, &Nf);CHKERRQ(ierr);
45286528b96dSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(ds, &totDim);CHKERRQ(ierr);
452904c51a94SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, key.label, key.value, &locA);CHKERRQ(ierr);
45303e9753d6SMatthew G. Knepley   if (locA) {
45313e9753d6SMatthew G. Knepley     PetscInt subcell;
45323e9753d6SMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
45333e9753d6SMatthew G. Knepley     ierr = DMGetEnclosurePoint(dmAux, dm, DM_ENC_UNKNOWN, cStart, &subcell);CHKERRQ(ierr);
45346528b96dSMatthew G. Knepley     ierr = DMGetCellDS(dmAux, subcell, &dsAux);CHKERRQ(ierr);
45356528b96dSMatthew G. Knepley     ierr = PetscDSGetTotalDimension(dsAux, &totDimAux);CHKERRQ(ierr);
45363e9753d6SMatthew G. Knepley   }
45373e9753d6SMatthew G. Knepley   /* 2: Get geometric data */
45383e9753d6SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
45393e9753d6SMatthew G. Knepley     PetscObject  obj;
45403e9753d6SMatthew G. Knepley     PetscClassId id;
45413e9753d6SMatthew G. Knepley     PetscBool    fimp;
45423e9753d6SMatthew G. Knepley 
45436528b96dSMatthew G. Knepley     ierr = PetscDSGetImplicit(ds, f, &fimp);CHKERRQ(ierr);
45443e9753d6SMatthew G. Knepley     if (isImplicit != fimp) continue;
45456528b96dSMatthew G. Knepley     ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
45463e9753d6SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
45473e9753d6SMatthew G. Knepley     if (id == PETSCFE_CLASSID) {useFEM = PETSC_TRUE;}
45483e9753d6SMatthew G. Knepley     if (id == PETSCFV_CLASSID) {useFVM = PETSC_TRUE; fvm = (PetscFV) obj;}
45493e9753d6SMatthew G. Knepley   }
45503e9753d6SMatthew G. Knepley   if (useFEM) {
45513e9753d6SMatthew G. Knepley     ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
45523e9753d6SMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,cellIS,NULL,&maxDegree);CHKERRQ(ierr);
45533e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
45543e9753d6SMatthew G. Knepley       ierr = DMFieldCreateDefaultQuadrature(coordField,cellIS,&affineQuad);CHKERRQ(ierr);
45553e9753d6SMatthew G. Knepley       if (affineQuad) {
45563e9753d6SMatthew G. Knepley         ierr = DMSNESGetFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
45573e9753d6SMatthew G. Knepley       }
45583e9753d6SMatthew G. Knepley     } else {
45593e9753d6SMatthew G. Knepley       ierr = PetscCalloc2(Nf,&quads,Nf,&geoms);CHKERRQ(ierr);
45603e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
45613e9753d6SMatthew G. Knepley         PetscObject  obj;
45623e9753d6SMatthew G. Knepley         PetscClassId id;
45633e9753d6SMatthew G. Knepley         PetscBool    fimp;
45643e9753d6SMatthew G. Knepley 
45656528b96dSMatthew G. Knepley         ierr = PetscDSGetImplicit(ds, f, &fimp);CHKERRQ(ierr);
45663e9753d6SMatthew G. Knepley         if (isImplicit != fimp) continue;
45676528b96dSMatthew G. Knepley         ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
45683e9753d6SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
45693e9753d6SMatthew G. Knepley         if (id == PETSCFE_CLASSID) {
45703e9753d6SMatthew G. Knepley           PetscFE fe = (PetscFE) obj;
45713e9753d6SMatthew G. Knepley 
45723e9753d6SMatthew G. Knepley           ierr = PetscFEGetQuadrature(fe, &quads[f]);CHKERRQ(ierr);
45733e9753d6SMatthew G. Knepley           ierr = PetscObjectReference((PetscObject)quads[f]);CHKERRQ(ierr);
45743e9753d6SMatthew G. Knepley           ierr = DMSNESGetFEGeom(coordField,cellIS,quads[f],PETSC_FALSE,&geoms[f]);CHKERRQ(ierr);
45753e9753d6SMatthew G. Knepley         }
45763e9753d6SMatthew G. Knepley       }
45773e9753d6SMatthew G. Knepley     }
45783e9753d6SMatthew G. Knepley   }
45793e9753d6SMatthew G. Knepley   if (useFVM) {
45803e9753d6SMatthew G. Knepley     ierr = DMPlexGetGeometryFVM(dm, &faceGeometryFVM, &cellGeometryFVM, NULL);CHKERRQ(ierr);
45813e9753d6SMatthew G. Knepley     ierr = VecGetArrayRead(faceGeometryFVM, (const PetscScalar **) &fgeomFVM);CHKERRQ(ierr);
45823e9753d6SMatthew G. Knepley     ierr = VecGetArrayRead(cellGeometryFVM, (const PetscScalar **) &cgeomFVM);CHKERRQ(ierr);
45833e9753d6SMatthew G. Knepley     /* Reconstruct and limit cell gradients */
45843e9753d6SMatthew G. Knepley     ierr = DMPlexGetGradientDM(dm, fvm, &dmGrad);CHKERRQ(ierr);
45853e9753d6SMatthew G. Knepley     if (dmGrad) {
45863e9753d6SMatthew G. Knepley       ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
45873e9753d6SMatthew G. Knepley       ierr = DMGetGlobalVector(dmGrad, &grad);CHKERRQ(ierr);
45883e9753d6SMatthew G. Knepley       ierr = DMPlexReconstructGradients_Internal(dm, fvm, fStart, fEnd, faceGeometryFVM, cellGeometryFVM, locX, grad);CHKERRQ(ierr);
45893e9753d6SMatthew G. Knepley       /* Communicate gradient values */
45903e9753d6SMatthew G. Knepley       ierr = DMGetLocalVector(dmGrad, &locGrad);CHKERRQ(ierr);
45913e9753d6SMatthew G. Knepley       ierr = DMGlobalToLocalBegin(dmGrad, grad, INSERT_VALUES, locGrad);CHKERRQ(ierr);
45923e9753d6SMatthew G. Knepley       ierr = DMGlobalToLocalEnd(dmGrad, grad, INSERT_VALUES, locGrad);CHKERRQ(ierr);
45933e9753d6SMatthew G. Knepley       ierr = DMRestoreGlobalVector(dmGrad, &grad);CHKERRQ(ierr);
45943e9753d6SMatthew G. Knepley     }
45953e9753d6SMatthew G. Knepley     /* Handle non-essential (e.g. outflow) boundary values */
45963e9753d6SMatthew G. Knepley     ierr = DMPlexInsertBoundaryValues(dm, PETSC_FALSE, locX, time, faceGeometryFVM, cellGeometryFVM, locGrad);CHKERRQ(ierr);
45973e9753d6SMatthew G. Knepley   }
45983e9753d6SMatthew G. Knepley   /* Loop over chunks */
45993e9753d6SMatthew G. Knepley   if (useFEM) {ierr = ISCreate(PETSC_COMM_SELF, &chunkIS);CHKERRQ(ierr);}
46003e9753d6SMatthew G. Knepley   numCells      = cEnd - cStart;
46013e9753d6SMatthew G. Knepley   numChunks     = 1;
46023e9753d6SMatthew G. Knepley   cellChunkSize = numCells/numChunks;
46033e9753d6SMatthew G. Knepley   faceChunkSize = (fEnd - fStart)/numChunks;
46043e9753d6SMatthew G. Knepley   numChunks     = PetscMin(1,numCells);
46053e9753d6SMatthew G. Knepley   for (chunk = 0; chunk < numChunks; ++chunk) {
46063e9753d6SMatthew G. Knepley     PetscScalar     *elemVec, *fluxL, *fluxR;
46073e9753d6SMatthew G. Knepley     PetscReal       *vol;
46083e9753d6SMatthew G. Knepley     PetscFVFaceGeom *fgeom;
46093e9753d6SMatthew G. Knepley     PetscInt         cS = cStart+chunk*cellChunkSize, cE = PetscMin(cS+cellChunkSize, cEnd), numCells = cE - cS, c;
46103e9753d6SMatthew G. Knepley     PetscInt         fS = fStart+chunk*faceChunkSize, fE = PetscMin(fS+faceChunkSize, fEnd), numFaces = 0, face;
46113e9753d6SMatthew G. Knepley 
46123e9753d6SMatthew G. Knepley     /* Extract field coefficients */
46133e9753d6SMatthew G. Knepley     if (useFEM) {
46143e9753d6SMatthew G. Knepley       ierr = ISGetPointSubrange(chunkIS, cS, cE, cells);CHKERRQ(ierr);
46153e9753d6SMatthew G. Knepley       ierr = DMPlexGetCellFields(dm, chunkIS, locX, locX_t, locA, &u, &u_t, &a);CHKERRQ(ierr);
46163e9753d6SMatthew G. Knepley       ierr = DMGetWorkArray(dm, numCells*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
46173e9753d6SMatthew G. Knepley       ierr = PetscArrayzero(elemVec, numCells*totDim);CHKERRQ(ierr);
46183e9753d6SMatthew G. Knepley     }
46193e9753d6SMatthew G. Knepley     if (useFVM) {
46203e9753d6SMatthew G. Knepley       ierr = DMPlexGetFaceFields(dm, fS, fE, locX, locX_t, faceGeometryFVM, cellGeometryFVM, locGrad, &numFaces, &uL, &uR);CHKERRQ(ierr);
46213e9753d6SMatthew G. Knepley       ierr = DMPlexGetFaceGeometry(dm, fS, fE, faceGeometryFVM, cellGeometryFVM, &numFaces, &fgeom, &vol);CHKERRQ(ierr);
46223e9753d6SMatthew G. Knepley       ierr = DMGetWorkArray(dm, numFaces*totDim, MPIU_SCALAR, &fluxL);CHKERRQ(ierr);
46233e9753d6SMatthew G. Knepley       ierr = DMGetWorkArray(dm, numFaces*totDim, MPIU_SCALAR, &fluxR);CHKERRQ(ierr);
46243e9753d6SMatthew G. Knepley       ierr = PetscArrayzero(fluxL, numFaces*totDim);CHKERRQ(ierr);
46253e9753d6SMatthew G. Knepley       ierr = PetscArrayzero(fluxR, numFaces*totDim);CHKERRQ(ierr);
46263e9753d6SMatthew G. Knepley     }
46273e9753d6SMatthew G. Knepley     /* TODO We will interlace both our field coefficients (u, u_t, uL, uR, etc.) and our output (elemVec, fL, fR). I think this works */
46283e9753d6SMatthew G. Knepley     /* Loop over fields */
46293e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
46303e9753d6SMatthew G. Knepley       PetscObject  obj;
46313e9753d6SMatthew G. Knepley       PetscClassId id;
46323e9753d6SMatthew G. Knepley       PetscBool    fimp;
46333e9753d6SMatthew G. Knepley       PetscInt     numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset;
46343e9753d6SMatthew G. Knepley 
46356528b96dSMatthew G. Knepley       key.field = f;
46366528b96dSMatthew G. Knepley       ierr = PetscDSGetImplicit(ds, f, &fimp);CHKERRQ(ierr);
46373e9753d6SMatthew G. Knepley       if (isImplicit != fimp) continue;
46386528b96dSMatthew G. Knepley       ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
46393e9753d6SMatthew G. Knepley       ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
46403e9753d6SMatthew G. Knepley       if (id == PETSCFE_CLASSID) {
46413e9753d6SMatthew G. Knepley         PetscFE         fe = (PetscFE) obj;
46423e9753d6SMatthew G. Knepley         PetscFEGeom    *geom = affineGeom ? affineGeom : geoms[f];
46433e9753d6SMatthew G. Knepley         PetscFEGeom    *chunkGeom = NULL;
46443e9753d6SMatthew G. Knepley         PetscQuadrature quad = affineQuad ? affineQuad : quads[f];
46453e9753d6SMatthew G. Knepley         PetscInt        Nq, Nb;
46463e9753d6SMatthew G. Knepley 
46473e9753d6SMatthew G. Knepley         ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
46483e9753d6SMatthew G. Knepley         ierr = PetscQuadratureGetData(quad, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
46493e9753d6SMatthew G. Knepley         ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
46503e9753d6SMatthew G. Knepley         blockSize = Nb;
46513e9753d6SMatthew G. Knepley         batchSize = numBlocks * blockSize;
46523e9753d6SMatthew G. Knepley         ierr      = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
46533e9753d6SMatthew G. Knepley         numChunks = numCells / (numBatches*batchSize);
46543e9753d6SMatthew G. Knepley         Ne        = numChunks*numBatches*batchSize;
46553e9753d6SMatthew G. Knepley         Nr        = numCells % (numBatches*batchSize);
46563e9753d6SMatthew G. Knepley         offset    = numCells - Nr;
46573e9753d6SMatthew G. Knepley         /* Integrate FE residual to get elemVec (need fields at quadrature points) */
46583e9753d6SMatthew G. Knepley         /*   For FV, I think we use a P0 basis and the cell coefficients (for subdivided cells, we can tweak the basis tabulation to be the indicator function) */
46593e9753d6SMatthew G. Knepley         ierr = PetscFEGeomGetChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
46606528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateResidual(ds, key, Ne, chunkGeom, u, u_t, dsAux, a, t, elemVec);CHKERRQ(ierr);
46613e9753d6SMatthew G. Knepley         ierr = PetscFEGeomGetChunk(geom,offset,numCells,&chunkGeom);CHKERRQ(ierr);
46626528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateResidual(ds, key, Nr, chunkGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux, &a[offset*totDimAux], t, &elemVec[offset*totDim]);CHKERRQ(ierr);
46633e9753d6SMatthew G. Knepley         ierr = PetscFEGeomRestoreChunk(geom,offset,numCells,&chunkGeom);CHKERRQ(ierr);
46643e9753d6SMatthew G. Knepley       } else if (id == PETSCFV_CLASSID) {
46653e9753d6SMatthew G. Knepley         PetscFV fv = (PetscFV) obj;
46663e9753d6SMatthew G. Knepley 
46673e9753d6SMatthew G. Knepley         Ne = numFaces;
46683e9753d6SMatthew G. Knepley         /* Riemann solve over faces (need fields at face centroids) */
46693e9753d6SMatthew G. Knepley         /*   We need to evaluate FE fields at those coordinates */
46706528b96dSMatthew G. Knepley         ierr = PetscFVIntegrateRHSFunction(fv, ds, f, Ne, fgeom, vol, uL, uR, fluxL, fluxR);CHKERRQ(ierr);
46713e9753d6SMatthew G. Knepley       } else SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_WRONG, "Unknown discretization type for field %D", f);
46723e9753d6SMatthew G. Knepley     }
46733e9753d6SMatthew G. Knepley     /* Loop over domain */
46743e9753d6SMatthew G. Knepley     if (useFEM) {
46753e9753d6SMatthew G. Knepley       /* Add elemVec to locX */
46763e9753d6SMatthew G. Knepley       for (c = cS; c < cE; ++c) {
46773e9753d6SMatthew G. Knepley         const PetscInt cell = cells ? cells[c] : c;
46783e9753d6SMatthew G. Knepley         const PetscInt cind = c - cStart;
46793e9753d6SMatthew G. Knepley 
46803e9753d6SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellVector(cell, name, totDim, &elemVec[cind*totDim]);CHKERRQ(ierr);}
46813e9753d6SMatthew G. Knepley         if (ghostLabel) {
46823e9753d6SMatthew G. Knepley           PetscInt ghostVal;
46833e9753d6SMatthew G. Knepley 
46843e9753d6SMatthew G. Knepley           ierr = DMLabelGetValue(ghostLabel,cell,&ghostVal);CHKERRQ(ierr);
46853e9753d6SMatthew G. Knepley           if (ghostVal > 0) continue;
46863e9753d6SMatthew G. Knepley         }
46873e9753d6SMatthew G. Knepley         ierr = DMPlexVecSetClosure(dm, section, locF, cell, &elemVec[cind*totDim], ADD_ALL_VALUES);CHKERRQ(ierr);
46883e9753d6SMatthew G. Knepley       }
46893e9753d6SMatthew G. Knepley     }
46903e9753d6SMatthew G. Knepley     if (useFVM) {
46913e9753d6SMatthew G. Knepley       PetscScalar *fa;
46923e9753d6SMatthew G. Knepley       PetscInt     iface;
46933e9753d6SMatthew G. Knepley 
46943e9753d6SMatthew G. Knepley       ierr = VecGetArray(locF, &fa);CHKERRQ(ierr);
46953e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
46963e9753d6SMatthew G. Knepley         PetscFV      fv;
46973e9753d6SMatthew G. Knepley         PetscObject  obj;
46983e9753d6SMatthew G. Knepley         PetscClassId id;
46993e9753d6SMatthew G. Knepley         PetscInt     foff, pdim;
47003e9753d6SMatthew G. Knepley 
47016528b96dSMatthew G. Knepley         ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
47026528b96dSMatthew G. Knepley         ierr = PetscDSGetFieldOffset(ds, f, &foff);CHKERRQ(ierr);
47033e9753d6SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
47043e9753d6SMatthew G. Knepley         if (id != PETSCFV_CLASSID) continue;
47053e9753d6SMatthew G. Knepley         fv   = (PetscFV) obj;
47063e9753d6SMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &pdim);CHKERRQ(ierr);
47073e9753d6SMatthew G. Knepley         /* Accumulate fluxes to cells */
47083e9753d6SMatthew G. Knepley         for (face = fS, iface = 0; face < fE; ++face) {
47093e9753d6SMatthew G. Knepley           const PetscInt *scells;
47103e9753d6SMatthew G. Knepley           PetscScalar    *fL = NULL, *fR = NULL;
47113e9753d6SMatthew G. Knepley           PetscInt        ghost, d, nsupp, nchild;
47123e9753d6SMatthew G. Knepley 
47133e9753d6SMatthew G. Knepley           ierr = DMLabelGetValue(ghostLabel, face, &ghost);CHKERRQ(ierr);
47143e9753d6SMatthew G. Knepley           ierr = DMPlexGetSupportSize(dm, face, &nsupp);CHKERRQ(ierr);
47153e9753d6SMatthew G. Knepley           ierr = DMPlexGetTreeChildren(dm, face, &nchild, NULL);CHKERRQ(ierr);
47163e9753d6SMatthew G. Knepley           if (ghost >= 0 || nsupp > 2 || nchild > 0) continue;
47173e9753d6SMatthew G. Knepley           ierr = DMPlexGetSupport(dm, face, &scells);CHKERRQ(ierr);
47183e9753d6SMatthew G. Knepley           ierr = DMLabelGetValue(ghostLabel,scells[0],&ghost);CHKERRQ(ierr);
47193e9753d6SMatthew G. Knepley           if (ghost <= 0) {ierr = DMPlexPointLocalFieldRef(dm, scells[0], f, fa, &fL);CHKERRQ(ierr);}
47203e9753d6SMatthew G. Knepley           ierr = DMLabelGetValue(ghostLabel,scells[1],&ghost);CHKERRQ(ierr);
47213e9753d6SMatthew G. Knepley           if (ghost <= 0) {ierr = DMPlexPointLocalFieldRef(dm, scells[1], f, fa, &fR);CHKERRQ(ierr);}
47223e9753d6SMatthew G. Knepley           for (d = 0; d < pdim; ++d) {
47233e9753d6SMatthew G. Knepley             if (fL) fL[d] -= fluxL[iface*totDim+foff+d];
47243e9753d6SMatthew G. Knepley             if (fR) fR[d] += fluxR[iface*totDim+foff+d];
47253e9753d6SMatthew G. Knepley           }
47263e9753d6SMatthew G. Knepley           ++iface;
47273e9753d6SMatthew G. Knepley         }
47283e9753d6SMatthew G. Knepley       }
47293e9753d6SMatthew G. Knepley       ierr = VecRestoreArray(locF, &fa);CHKERRQ(ierr);
47303e9753d6SMatthew G. Knepley     }
47313e9753d6SMatthew G. Knepley     /* Handle time derivative */
47323e9753d6SMatthew G. Knepley     if (locX_t) {
47333e9753d6SMatthew G. Knepley       PetscScalar *x_t, *fa;
47343e9753d6SMatthew G. Knepley 
47353e9753d6SMatthew G. Knepley       ierr = VecGetArray(locF, &fa);CHKERRQ(ierr);
47363e9753d6SMatthew G. Knepley       ierr = VecGetArray(locX_t, &x_t);CHKERRQ(ierr);
47373e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
47383e9753d6SMatthew G. Knepley         PetscFV      fv;
47393e9753d6SMatthew G. Knepley         PetscObject  obj;
47403e9753d6SMatthew G. Knepley         PetscClassId id;
47413e9753d6SMatthew G. Knepley         PetscInt     pdim, d;
47423e9753d6SMatthew G. Knepley 
47436528b96dSMatthew G. Knepley         ierr = PetscDSGetDiscretization(ds, f, &obj);CHKERRQ(ierr);
47443e9753d6SMatthew G. Knepley         ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
47453e9753d6SMatthew G. Knepley         if (id != PETSCFV_CLASSID) continue;
47463e9753d6SMatthew G. Knepley         fv   = (PetscFV) obj;
47473e9753d6SMatthew G. Knepley         ierr = PetscFVGetNumComponents(fv, &pdim);CHKERRQ(ierr);
47483e9753d6SMatthew G. Knepley         for (c = cS; c < cE; ++c) {
47493e9753d6SMatthew G. Knepley           const PetscInt cell = cells ? cells[c] : c;
47503e9753d6SMatthew G. Knepley           PetscScalar   *u_t, *r;
47513e9753d6SMatthew G. Knepley 
47523e9753d6SMatthew G. Knepley           if (ghostLabel) {
47533e9753d6SMatthew G. Knepley             PetscInt ghostVal;
47543e9753d6SMatthew G. Knepley 
47553e9753d6SMatthew G. Knepley             ierr = DMLabelGetValue(ghostLabel, cell, &ghostVal);CHKERRQ(ierr);
47563e9753d6SMatthew G. Knepley             if (ghostVal > 0) continue;
47573e9753d6SMatthew G. Knepley           }
47583e9753d6SMatthew G. Knepley           ierr = DMPlexPointLocalFieldRead(dm, cell, f, x_t, &u_t);CHKERRQ(ierr);
47593e9753d6SMatthew G. Knepley           ierr = DMPlexPointLocalFieldRef(dm, cell, f, fa, &r);CHKERRQ(ierr);
47603e9753d6SMatthew G. Knepley           for (d = 0; d < pdim; ++d) r[d] += u_t[d];
47613e9753d6SMatthew G. Knepley         }
47623e9753d6SMatthew G. Knepley       }
47633e9753d6SMatthew G. Knepley       ierr = VecRestoreArray(locX_t, &x_t);CHKERRQ(ierr);
47643e9753d6SMatthew G. Knepley       ierr = VecRestoreArray(locF, &fa);CHKERRQ(ierr);
47653e9753d6SMatthew G. Knepley     }
47663e9753d6SMatthew G. Knepley     if (useFEM) {
47673e9753d6SMatthew G. Knepley       ierr = DMPlexRestoreCellFields(dm, chunkIS, locX, locX_t, locA, &u, &u_t, &a);CHKERRQ(ierr);
47683e9753d6SMatthew G. Knepley       ierr = DMRestoreWorkArray(dm, numCells*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
47693e9753d6SMatthew G. Knepley     }
47703e9753d6SMatthew G. Knepley     if (useFVM) {
47713e9753d6SMatthew G. Knepley       ierr = DMPlexRestoreFaceFields(dm, fS, fE, locX, locX_t, faceGeometryFVM, cellGeometryFVM, locGrad, &numFaces, &uL, &uR);CHKERRQ(ierr);
47723e9753d6SMatthew G. Knepley       ierr = DMPlexRestoreFaceGeometry(dm, fS, fE, faceGeometryFVM, cellGeometryFVM, &numFaces, &fgeom, &vol);CHKERRQ(ierr);
47733e9753d6SMatthew G. Knepley       ierr = DMRestoreWorkArray(dm, numFaces*totDim, MPIU_SCALAR, &fluxL);CHKERRQ(ierr);
47743e9753d6SMatthew G. Knepley       ierr = DMRestoreWorkArray(dm, numFaces*totDim, MPIU_SCALAR, &fluxR);CHKERRQ(ierr);
47753e9753d6SMatthew G. Knepley       if (dmGrad) {ierr = DMRestoreLocalVector(dmGrad, &locGrad);CHKERRQ(ierr);}
47763e9753d6SMatthew G. Knepley     }
47773e9753d6SMatthew G. Knepley   }
47783e9753d6SMatthew G. Knepley   if (useFEM) {ierr = ISDestroy(&chunkIS);CHKERRQ(ierr);}
47793e9753d6SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
47803e9753d6SMatthew G. Knepley 
47813e9753d6SMatthew G. Knepley   if (useFEM) {
47823e9753d6SMatthew G. Knepley     ierr = DMPlexComputeBdResidual_Internal(dm, locX, locX_t, t, locF, user);CHKERRQ(ierr);
47833e9753d6SMatthew G. Knepley 
47843e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
47853e9753d6SMatthew G. Knepley       ierr = DMSNESRestoreFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
47863e9753d6SMatthew G. Knepley       ierr = PetscQuadratureDestroy(&affineQuad);CHKERRQ(ierr);
47873e9753d6SMatthew G. Knepley     } else {
47883e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
47893e9753d6SMatthew G. Knepley         ierr = DMSNESRestoreFEGeom(coordField,cellIS,quads[f],PETSC_FALSE,&geoms[f]);CHKERRQ(ierr);
47903e9753d6SMatthew G. Knepley         ierr = PetscQuadratureDestroy(&quads[f]);CHKERRQ(ierr);
47913e9753d6SMatthew G. Knepley       }
47923e9753d6SMatthew G. Knepley       ierr = PetscFree2(quads,geoms);CHKERRQ(ierr);
47933e9753d6SMatthew G. Knepley     }
47943e9753d6SMatthew G. Knepley   }
47953e9753d6SMatthew G. Knepley 
47963e9753d6SMatthew G. Knepley   /* FEM */
47973e9753d6SMatthew G. Knepley   /* 1: Get sizes from dm and dmAux */
47983e9753d6SMatthew G. Knepley   /* 2: Get geometric data */
47993e9753d6SMatthew G. Knepley   /* 3: Handle boundary values */
48003e9753d6SMatthew G. Knepley   /* 4: Loop over domain */
48013e9753d6SMatthew G. Knepley   /*   Extract coefficients */
48023e9753d6SMatthew G. Knepley   /* Loop over fields */
48033e9753d6SMatthew G. Knepley   /*   Set tiling for FE*/
48043e9753d6SMatthew G. Knepley   /*   Integrate FE residual to get elemVec */
48053e9753d6SMatthew G. Knepley   /*     Loop over subdomain */
48063e9753d6SMatthew G. Knepley   /*       Loop over quad points */
48073e9753d6SMatthew G. Knepley   /*         Transform coords to real space */
48083e9753d6SMatthew G. Knepley   /*         Evaluate field and aux fields at point */
48093e9753d6SMatthew G. Knepley   /*         Evaluate residual at point */
48103e9753d6SMatthew G. Knepley   /*         Transform residual to real space */
48113e9753d6SMatthew G. Knepley   /*       Add residual to elemVec */
48123e9753d6SMatthew G. Knepley   /* Loop over domain */
48133e9753d6SMatthew G. Knepley   /*   Add elemVec to locX */
48143e9753d6SMatthew G. Knepley 
48153e9753d6SMatthew G. Knepley   /* FVM */
48163e9753d6SMatthew G. Knepley   /* Get geometric data */
48173e9753d6SMatthew G. Knepley   /* If using gradients */
48183e9753d6SMatthew G. Knepley   /*   Compute gradient data */
48193e9753d6SMatthew G. Knepley   /*   Loop over domain faces */
48203e9753d6SMatthew G. Knepley   /*     Count computational faces */
48213e9753d6SMatthew G. Knepley   /*     Reconstruct cell gradient */
48223e9753d6SMatthew G. Knepley   /*   Loop over domain cells */
48233e9753d6SMatthew G. Knepley   /*     Limit cell gradients */
48243e9753d6SMatthew G. Knepley   /* Handle boundary values */
48253e9753d6SMatthew G. Knepley   /* Loop over domain faces */
48263e9753d6SMatthew G. Knepley   /*   Read out field, centroid, normal, volume for each side of face */
48273e9753d6SMatthew G. Knepley   /* Riemann solve over faces */
48283e9753d6SMatthew G. Knepley   /* Loop over domain faces */
48293e9753d6SMatthew G. Knepley   /*   Accumulate fluxes to cells */
48303e9753d6SMatthew G. Knepley   /* TODO Change printFEM to printDisc here */
48313e9753d6SMatthew G. Knepley   if (mesh->printFEM) {
48323e9753d6SMatthew G. Knepley     Vec         locFbc;
48333e9753d6SMatthew G. Knepley     PetscInt    pStart, pEnd, p, maxDof;
48343e9753d6SMatthew G. Knepley     PetscScalar *zeroes;
48353e9753d6SMatthew G. Knepley 
48363e9753d6SMatthew G. Knepley     ierr = VecDuplicate(locF,&locFbc);CHKERRQ(ierr);
48373e9753d6SMatthew G. Knepley     ierr = VecCopy(locF,locFbc);CHKERRQ(ierr);
48383e9753d6SMatthew G. Knepley     ierr = PetscSectionGetChart(section,&pStart,&pEnd);CHKERRQ(ierr);
48393e9753d6SMatthew G. Knepley     ierr = PetscSectionGetMaxDof(section,&maxDof);CHKERRQ(ierr);
48403e9753d6SMatthew G. Knepley     ierr = PetscCalloc1(maxDof,&zeroes);CHKERRQ(ierr);
48413e9753d6SMatthew G. Knepley     for (p = pStart; p < pEnd; p++) {
48423e9753d6SMatthew G. Knepley       ierr = VecSetValuesSection(locFbc,section,p,zeroes,INSERT_BC_VALUES);CHKERRQ(ierr);
48433e9753d6SMatthew G. Knepley     }
48443e9753d6SMatthew G. Knepley     ierr = PetscFree(zeroes);CHKERRQ(ierr);
48453e9753d6SMatthew G. Knepley     ierr = DMPrintLocalVec(dm, name, mesh->printTol, locFbc);CHKERRQ(ierr);
48463e9753d6SMatthew G. Knepley     ierr = VecDestroy(&locFbc);CHKERRQ(ierr);
48473e9753d6SMatthew G. Knepley   }
48483e9753d6SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
48493e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
48503e9753d6SMatthew G. Knepley }
48513e9753d6SMatthew G. Knepley 
48526528b96dSMatthew G. Knepley /*
48536528b96dSMatthew G. Knepley   1) Allow multiple kernels for BdResidual for hybrid DS
48546528b96dSMatthew G. Knepley 
48556528b96dSMatthew G. Knepley   DONE 2) Get out dsAux for either side at the same time as cohesive cell dsAux
48566528b96dSMatthew G. Knepley 
48576528b96dSMatthew G. Knepley   DONE 3) Change DMGetCellFields() to get different aux data a[] for each side
48586528b96dSMatthew G. Knepley      - I think I just need to replace a[] with the closure from each face
48596528b96dSMatthew G. Knepley 
48606528b96dSMatthew G. Knepley   4) Run both kernels for each non-hybrid field with correct dsAux, and then hybrid field as before
48616528b96dSMatthew G. Knepley */
48626528b96dSMatthew G. Knepley PetscErrorCode DMPlexComputeResidual_Hybrid_Internal(DM dm, PetscHashFormKey key[], IS cellIS, PetscReal time, Vec locX, Vec locX_t, PetscReal t, Vec locF, void *user)
48633e9753d6SMatthew G. Knepley {
48643e9753d6SMatthew G. Knepley   DM_Plex         *mesh       = (DM_Plex *) dm->data;
48653e9753d6SMatthew G. Knepley   const char      *name       = "Hybrid Residual";
486604c51a94SMatthew G. Knepley   DM               dmAux[3]   = {NULL, NULL, NULL};
48673e9753d6SMatthew G. Knepley   DMLabel          ghostLabel = NULL;
48686528b96dSMatthew G. Knepley   PetscDS          ds         = NULL;
48696528b96dSMatthew G. Knepley   PetscDS          dsAux[3]   = {NULL, NULL, NULL};
487004c51a94SMatthew G. Knepley   Vec              locA[3]    = {NULL, NULL, NULL};
48713e9753d6SMatthew G. Knepley   PetscSection     section    = NULL;
48723e9753d6SMatthew G. Knepley   DMField          coordField = NULL;
48736528b96dSMatthew G. Knepley   PetscScalar     *u = NULL, *u_t, *a[3];
48743e9753d6SMatthew G. Knepley   PetscScalar     *elemVec;
48753e9753d6SMatthew G. Knepley   IS               chunkIS;
48763e9753d6SMatthew G. Knepley   const PetscInt  *cells;
48773e9753d6SMatthew G. Knepley   PetscInt        *faces;
48783e9753d6SMatthew G. Knepley   PetscInt         cStart, cEnd, numCells;
48796528b96dSMatthew G. Knepley   PetscInt         Nf, f, totDim, totDimAux[3], numChunks, cellChunkSize, chunk;
48803e9753d6SMatthew G. Knepley   PetscInt         maxDegree = PETSC_MAX_INT;
48813e9753d6SMatthew G. Knepley   PetscQuadrature  affineQuad = NULL, *quads = NULL;
48823e9753d6SMatthew G. Knepley   PetscFEGeom     *affineGeom = NULL, **geoms = NULL;
48833e9753d6SMatthew G. Knepley   PetscErrorCode   ierr;
48843e9753d6SMatthew G. Knepley 
48853e9753d6SMatthew G. Knepley   PetscFunctionBegin;
48863e9753d6SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
48873e9753d6SMatthew G. Knepley   /* TODO The places where we have to use isFE are probably the member functions for the PetscDisc class */
48883e9753d6SMatthew G. Knepley   /* FEM */
4889148442b3SMatthew G. Knepley   ierr = ISGetLocalSize(cellIS, &numCells);CHKERRQ(ierr);
48903e9753d6SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
48913e9753d6SMatthew G. Knepley   /* 1: Get sizes from dm and dmAux */
48923e9753d6SMatthew G. Knepley   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
48933e9753d6SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
48946528b96dSMatthew G. Knepley   ierr = DMGetCellDS(dm, cStart, &ds);CHKERRQ(ierr);
48956528b96dSMatthew G. Knepley   ierr = PetscDSGetNumFields(ds, &Nf);CHKERRQ(ierr);
48966528b96dSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(ds, &totDim);CHKERRQ(ierr);
489704c51a94SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, key[2].label, key[2].value, &locA[2]);CHKERRQ(ierr);
489804c51a94SMatthew G. Knepley   if (locA[2]) {
489904c51a94SMatthew G. Knepley     ierr = VecGetDM(locA[2], &dmAux[2]);CHKERRQ(ierr);
490004c51a94SMatthew G. Knepley     ierr = DMGetCellDS(dmAux[2], cStart, &dsAux[2]);CHKERRQ(ierr);
49016528b96dSMatthew G. Knepley     ierr = PetscDSGetTotalDimension(dsAux[2], &totDimAux[2]);CHKERRQ(ierr);
49026528b96dSMatthew G. Knepley     {
49036528b96dSMatthew G. Knepley       const PetscInt *cone;
49046528b96dSMatthew G. Knepley       PetscInt        c;
49056528b96dSMatthew G. Knepley 
49066528b96dSMatthew G. Knepley       ierr = DMPlexGetCone(dm, cStart, &cone);CHKERRQ(ierr);
49076528b96dSMatthew G. Knepley       for (c = 0; c < 2; ++c) {
49086528b96dSMatthew G. Knepley         const PetscInt *support;
49096528b96dSMatthew G. Knepley         PetscInt ssize, s;
49106528b96dSMatthew G. Knepley 
49116528b96dSMatthew G. Knepley         ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr);
49126528b96dSMatthew G. Knepley         ierr = DMPlexGetSupportSize(dm, cone[c], &ssize);CHKERRQ(ierr);
49136528b96dSMatthew G. Knepley         if (ssize != 2) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D from cell %D has support size %D != 2", cone[c], cStart, ssize);
49146528b96dSMatthew G. Knepley         if      (support[0] == cStart) s = 1;
49156528b96dSMatthew G. Knepley         else if (support[1] == cStart) s = 0;
49166528b96dSMatthew G. Knepley         else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D does not have cell %D in its support", cone[c], cStart);
491704c51a94SMatthew G. Knepley         ierr = DMGetAuxiliaryVec(dm, key[c].label, key[c].value, &locA[c]);CHKERRQ(ierr);
491804c51a94SMatthew G. Knepley         if (locA[c]) {ierr = VecGetDM(locA[c], &dmAux[c]);CHKERRQ(ierr);}
491904c51a94SMatthew G. Knepley         else         {dmAux[c] = dmAux[2];}
492004c51a94SMatthew G. Knepley         ierr = DMGetCellDS(dmAux[c], support[s], &dsAux[c]);CHKERRQ(ierr);
49216528b96dSMatthew G. Knepley         ierr = PetscDSGetTotalDimension(dsAux[c], &totDimAux[c]);CHKERRQ(ierr);
49226528b96dSMatthew G. Knepley       }
49236528b96dSMatthew G. Knepley     }
49243e9753d6SMatthew G. Knepley   }
49253e9753d6SMatthew G. Knepley   /* 2: Setup geometric data */
49263e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
49273e9753d6SMatthew G. Knepley   ierr = DMFieldGetDegree(coordField, cellIS, NULL, &maxDegree);CHKERRQ(ierr);
49283e9753d6SMatthew G. Knepley   if (maxDegree > 1) {
49293e9753d6SMatthew G. Knepley     ierr = PetscCalloc2(Nf, &quads, Nf, &geoms);CHKERRQ(ierr);
49303e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
49313e9753d6SMatthew G. Knepley       PetscFE fe;
49323e9753d6SMatthew G. Knepley 
49336528b96dSMatthew G. Knepley       ierr = PetscDSGetDiscretization(ds, f, (PetscObject *) &fe);CHKERRQ(ierr);
49343e9753d6SMatthew G. Knepley       if (fe) {
49353e9753d6SMatthew G. Knepley         ierr = PetscFEGetQuadrature(fe, &quads[f]);CHKERRQ(ierr);
49363e9753d6SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) quads[f]);CHKERRQ(ierr);
49373e9753d6SMatthew G. Knepley       }
49383e9753d6SMatthew G. Knepley     }
49393e9753d6SMatthew G. Knepley   }
49403e9753d6SMatthew G. Knepley   /* Loop over chunks */
49413e9753d6SMatthew G. Knepley   cellChunkSize = numCells;
49423e9753d6SMatthew G. Knepley   numChunks     = !numCells ? 0 : PetscCeilReal(((PetscReal) numCells)/cellChunkSize);
49433e9753d6SMatthew G. Knepley   ierr = PetscCalloc1(2*cellChunkSize, &faces);CHKERRQ(ierr);
49443e9753d6SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, cellChunkSize, faces, PETSC_USE_POINTER, &chunkIS);CHKERRQ(ierr);
49453e9753d6SMatthew G. Knepley   /* Extract field coefficients */
49463e9753d6SMatthew G. Knepley   /* NOTE This needs the end cap faces to have identical orientations */
494704c51a94SMatthew G. Knepley   ierr = DMPlexGetCellFields(dm, cellIS, locX, locX_t, locA[2], &u, &u_t, &a[2]);CHKERRQ(ierr);
4948148442b3SMatthew G. Knepley   ierr = DMPlexGetHybridAuxFields(dm, dmAux, dsAux, cellIS, locA, a);CHKERRQ(ierr);
49493e9753d6SMatthew G. Knepley   ierr = DMGetWorkArray(dm, cellChunkSize*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
49503e9753d6SMatthew G. Knepley   for (chunk = 0; chunk < numChunks; ++chunk) {
49513e9753d6SMatthew G. Knepley     PetscInt cS = cStart+chunk*cellChunkSize, cE = PetscMin(cS+cellChunkSize, cEnd), numCells = cE - cS, c;
49523e9753d6SMatthew G. Knepley 
49533e9753d6SMatthew G. Knepley     ierr = PetscMemzero(elemVec, cellChunkSize*totDim * sizeof(PetscScalar));CHKERRQ(ierr);
49543e9753d6SMatthew G. Knepley     /* Get faces */
49553e9753d6SMatthew G. Knepley     for (c = cS; c < cE; ++c) {
49563e9753d6SMatthew G. Knepley       const PetscInt  cell = cells ? cells[c] : c;
49573e9753d6SMatthew G. Knepley       const PetscInt *cone;
49583e9753d6SMatthew G. Knepley       ierr = DMPlexGetCone(dm, cell, &cone);CHKERRQ(ierr);
49593e9753d6SMatthew G. Knepley       faces[(c-cS)*2+0] = cone[0];
49603e9753d6SMatthew G. Knepley       faces[(c-cS)*2+1] = cone[1];
49613e9753d6SMatthew G. Knepley     }
49623e9753d6SMatthew G. Knepley     ierr = ISGeneralSetIndices(chunkIS, cellChunkSize, faces, PETSC_USE_POINTER);CHKERRQ(ierr);
49633e9753d6SMatthew G. Knepley     /* Get geometric data */
49643e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
49653e9753d6SMatthew G. Knepley       if (!affineQuad) {ierr = DMFieldCreateDefaultQuadrature(coordField, chunkIS, &affineQuad);CHKERRQ(ierr);}
49663e9753d6SMatthew G. Knepley       if (affineQuad)  {ierr = DMSNESGetFEGeom(coordField, chunkIS, affineQuad, PETSC_TRUE, &affineGeom);CHKERRQ(ierr);}
49673e9753d6SMatthew G. Knepley     } else {
49683e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
49693e9753d6SMatthew G. Knepley         if (quads[f]) {ierr = DMSNESGetFEGeom(coordField, chunkIS, quads[f], PETSC_TRUE, &geoms[f]);CHKERRQ(ierr);}
49703e9753d6SMatthew G. Knepley       }
49713e9753d6SMatthew G. Knepley     }
49723e9753d6SMatthew G. Knepley     /* Loop over fields */
49733e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
49743e9753d6SMatthew G. Knepley       PetscFE         fe;
49753e9753d6SMatthew G. Knepley       PetscFEGeom    *geom = affineGeom ? affineGeom : geoms[f];
4976148442b3SMatthew G. Knepley       PetscFEGeom    *chunkGeom = NULL, *remGeom = NULL;
49773e9753d6SMatthew G. Knepley       PetscQuadrature quad = affineQuad ? affineQuad : quads[f];
49783e9753d6SMatthew G. Knepley       PetscInt        numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset, Nq, Nb;
49793e9753d6SMatthew G. Knepley 
49806528b96dSMatthew G. Knepley       ierr = PetscDSGetDiscretization(ds, f, (PetscObject *) &fe);CHKERRQ(ierr);
49813e9753d6SMatthew G. Knepley       if (!fe) continue;
49823e9753d6SMatthew G. Knepley       ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
49833e9753d6SMatthew G. Knepley       ierr = PetscQuadratureGetData(quad, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
49843e9753d6SMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
49853e9753d6SMatthew G. Knepley       blockSize = Nb;
49863e9753d6SMatthew G. Knepley       batchSize = numBlocks * blockSize;
49873e9753d6SMatthew G. Knepley       ierr      = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
49883e9753d6SMatthew G. Knepley       numChunks = numCells / (numBatches*batchSize);
49893e9753d6SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
49903e9753d6SMatthew G. Knepley       Nr        = numCells % (numBatches*batchSize);
49913e9753d6SMatthew G. Knepley       offset    = numCells - Nr;
4992148442b3SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
4993148442b3SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(geom,offset,numCells,&remGeom);CHKERRQ(ierr);
49946528b96dSMatthew G. Knepley       if (f == Nf-1) {
49956528b96dSMatthew G. Knepley         key[2].field = f;
49966528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[2], Ne, chunkGeom, u, u_t, dsAux[2], a[2], t, elemVec);CHKERRQ(ierr);
4997148442b3SMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[2], Nr, remGeom,  &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[2], &a[2][offset*totDimAux[2]], t, &elemVec[offset*totDim]);CHKERRQ(ierr);
49986528b96dSMatthew G. Knepley       } else {
49996528b96dSMatthew G. Knepley         key[0].field = f;
50006528b96dSMatthew G. Knepley         key[1].field = f;
50016528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[0], Ne, chunkGeom, u, u_t, dsAux[0], a[0], t, elemVec);CHKERRQ(ierr);
50026528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[1], Ne, chunkGeom, u, u_t, dsAux[1], a[1], t, elemVec);CHKERRQ(ierr);
5003148442b3SMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[0], Nr, remGeom,  &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[0], &a[0][offset*totDimAux[0]], t, &elemVec[offset*totDim]);CHKERRQ(ierr);
5004148442b3SMatthew G. Knepley         ierr = PetscFEIntegrateHybridResidual(ds, key[1], Nr, remGeom,  &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[1], &a[1][offset*totDimAux[1]], t, &elemVec[offset*totDim]);CHKERRQ(ierr);
50056528b96dSMatthew G. Knepley       }
5006148442b3SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(geom,offset,numCells,&remGeom);CHKERRQ(ierr);
5007148442b3SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
50083e9753d6SMatthew G. Knepley     }
50093e9753d6SMatthew G. Knepley     /* Add elemVec to locX */
50103e9753d6SMatthew G. Knepley     for (c = cS; c < cE; ++c) {
50113e9753d6SMatthew G. Knepley       const PetscInt cell = cells ? cells[c] : c;
50123e9753d6SMatthew G. Knepley       const PetscInt cind = c - cStart;
50133e9753d6SMatthew G. Knepley 
50143e9753d6SMatthew G. Knepley       if (mesh->printFEM > 1) {ierr = DMPrintCellVector(cell, name, totDim, &elemVec[cind*totDim]);CHKERRQ(ierr);}
50153e9753d6SMatthew G. Knepley       if (ghostLabel) {
50163e9753d6SMatthew G. Knepley         PetscInt ghostVal;
50173e9753d6SMatthew G. Knepley 
50183e9753d6SMatthew G. Knepley         ierr = DMLabelGetValue(ghostLabel,cell,&ghostVal);CHKERRQ(ierr);
50193e9753d6SMatthew G. Knepley         if (ghostVal > 0) continue;
50203e9753d6SMatthew G. Knepley       }
50213e9753d6SMatthew G. Knepley       ierr = DMPlexVecSetClosure(dm, section, locF, cell, &elemVec[cind*totDim], ADD_ALL_VALUES);CHKERRQ(ierr);
50223e9753d6SMatthew G. Knepley     }
50233e9753d6SMatthew G. Knepley   }
502404c51a94SMatthew G. Knepley   ierr = DMPlexRestoreCellFields(dm, cellIS, locX, locX_t, locA[2], &u, &u_t, &a[2]);CHKERRQ(ierr);
502504c51a94SMatthew G. Knepley   ierr = DMPlexRestoreHybridAuxFields(dmAux, dsAux, cellIS, locA, a);CHKERRQ(ierr);
50263e9753d6SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, numCells*totDim, MPIU_SCALAR, &elemVec);CHKERRQ(ierr);
50273e9753d6SMatthew G. Knepley   ierr = PetscFree(faces);CHKERRQ(ierr);
50283e9753d6SMatthew G. Knepley   ierr = ISDestroy(&chunkIS);CHKERRQ(ierr);
50293e9753d6SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
50303e9753d6SMatthew G. Knepley   if (maxDegree <= 1) {
50313e9753d6SMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
50323e9753d6SMatthew G. Knepley     ierr = PetscQuadratureDestroy(&affineQuad);CHKERRQ(ierr);
50333e9753d6SMatthew G. Knepley   } else {
50343e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
50353e9753d6SMatthew G. Knepley       if (geoms) {ierr = DMSNESRestoreFEGeom(coordField,cellIS,quads[f],PETSC_FALSE,&geoms[f]);CHKERRQ(ierr);}
50363e9753d6SMatthew G. Knepley       if (quads) {ierr = PetscQuadratureDestroy(&quads[f]);CHKERRQ(ierr);}
50373e9753d6SMatthew G. Knepley     }
50383e9753d6SMatthew G. Knepley     ierr = PetscFree2(quads,geoms);CHKERRQ(ierr);
50393e9753d6SMatthew G. Knepley   }
50403e9753d6SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_ResidualFEM,dm,0,0,0);CHKERRQ(ierr);
50413e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
50423e9753d6SMatthew G. Knepley }
50433e9753d6SMatthew G. Knepley 
504445480ffeSMatthew G. Knepley PetscErrorCode DMPlexComputeBdJacobian_Single_Internal(DM dm, PetscReal t, PetscWeakForm wf, DMLabel label, PetscInt numValues, const PetscInt values[], PetscInt fieldI, Vec locX, Vec locX_t, PetscReal X_tShift, Mat Jac, Mat JacP, DMField coordField, IS facetIS)
50453e9753d6SMatthew G. Knepley {
50463e9753d6SMatthew G. Knepley   DM_Plex        *mesh = (DM_Plex *) dm->data;
50473e9753d6SMatthew G. Knepley   DM              plex = NULL, plexA = NULL, tdm;
50483e9753d6SMatthew G. Knepley   DMEnclosureType encAux;
50493e9753d6SMatthew G. Knepley   PetscDS         prob, probAux = NULL;
50503e9753d6SMatthew G. Knepley   PetscSection    section, sectionAux = NULL;
50513e9753d6SMatthew G. Knepley   PetscSection    globalSection, subSection = NULL;
50523e9753d6SMatthew G. Knepley   Vec             locA = NULL, tv;
50533e9753d6SMatthew G. Knepley   PetscScalar    *u = NULL, *u_t = NULL, *a = NULL, *elemMat = NULL;
50543e9753d6SMatthew G. Knepley   PetscInt        v;
50553e9753d6SMatthew G. Knepley   PetscInt        Nf, totDim, totDimAux = 0;
50563e9753d6SMatthew G. Knepley   PetscBool       isMatISP, transform;
50573e9753d6SMatthew G. Knepley   PetscErrorCode  ierr;
50583e9753d6SMatthew G. Knepley 
50593e9753d6SMatthew G. Knepley   PetscFunctionBegin;
50603e9753d6SMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
50613e9753d6SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
50623e9753d6SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
50633e9753d6SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
50643e9753d6SMatthew G. Knepley   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
50653e9753d6SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
50663e9753d6SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
50673e9753d6SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
506804c51a94SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, label, values[0], &locA);CHKERRQ(ierr);
50693e9753d6SMatthew G. Knepley   if (locA) {
50703e9753d6SMatthew G. Knepley     DM dmAux;
50713e9753d6SMatthew G. Knepley 
50723e9753d6SMatthew G. Knepley     ierr = VecGetDM(locA, &dmAux);CHKERRQ(ierr);
50733e9753d6SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
50743e9753d6SMatthew G. Knepley     ierr = DMConvert(dmAux, DMPLEX, &plexA);CHKERRQ(ierr);
50753e9753d6SMatthew G. Knepley     ierr = DMGetDS(plexA, &probAux);CHKERRQ(ierr);
50763e9753d6SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
50773e9753d6SMatthew G. Knepley     ierr = DMGetLocalSection(plexA, &sectionAux);CHKERRQ(ierr);
50783e9753d6SMatthew G. Knepley   }
50793e9753d6SMatthew G. Knepley 
50803e9753d6SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatISP);CHKERRQ(ierr);
50813e9753d6SMatthew G. Knepley   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
50823e9753d6SMatthew G. Knepley   if (isMatISP) {ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr);}
50833e9753d6SMatthew G. Knepley   for (v = 0; v < numValues; ++v) {
50843e9753d6SMatthew G. Knepley     PetscFEGeom     *fgeom;
50853e9753d6SMatthew G. Knepley     PetscInt         maxDegree;
50863e9753d6SMatthew G. Knepley     PetscQuadrature  qGeom = NULL;
50873e9753d6SMatthew G. Knepley     IS               pointIS;
50883e9753d6SMatthew G. Knepley     const PetscInt  *points;
508945480ffeSMatthew G. Knepley     PetscHashFormKey key;
50903e9753d6SMatthew G. Knepley     PetscInt         numFaces, face, Nq;
50913e9753d6SMatthew G. Knepley 
509245480ffeSMatthew G. Knepley     key.label = label;
509345480ffeSMatthew G. Knepley     key.value = values[v];
50943e9753d6SMatthew G. Knepley     ierr = DMLabelGetStratumIS(label, values[v], &pointIS);CHKERRQ(ierr);
50953e9753d6SMatthew G. Knepley     if (!pointIS) continue; /* No points with that id on this process */
50963e9753d6SMatthew G. Knepley     {
50973e9753d6SMatthew G. Knepley       IS isectIS;
50983e9753d6SMatthew G. Knepley 
50993e9753d6SMatthew G. Knepley       /* TODO: Special cases of ISIntersect where it is quick to check a prior if one is a superset of the other */
51003e9753d6SMatthew G. Knepley       ierr = ISIntersect_Caching_Internal(facetIS,pointIS,&isectIS);CHKERRQ(ierr);
51013e9753d6SMatthew G. Knepley       ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
51023e9753d6SMatthew G. Knepley       pointIS = isectIS;
51033e9753d6SMatthew G. Knepley     }
51043e9753d6SMatthew G. Knepley     ierr = ISGetLocalSize(pointIS, &numFaces);CHKERRQ(ierr);
51053e9753d6SMatthew G. Knepley     ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
51063e9753d6SMatthew G. Knepley     ierr = PetscMalloc4(numFaces*totDim, &u, locX_t ? numFaces*totDim : 0, &u_t, numFaces*totDim*totDim, &elemMat, locA ? numFaces*totDimAux : 0, &a);CHKERRQ(ierr);
51073e9753d6SMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,pointIS,NULL,&maxDegree);CHKERRQ(ierr);
51083e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
51093e9753d6SMatthew G. Knepley       ierr = DMFieldCreateDefaultQuadrature(coordField,pointIS,&qGeom);CHKERRQ(ierr);
51103e9753d6SMatthew G. Knepley     }
51113e9753d6SMatthew G. Knepley     if (!qGeom) {
51123e9753d6SMatthew G. Knepley       PetscFE fe;
51133e9753d6SMatthew G. Knepley 
51143e9753d6SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fe);CHKERRQ(ierr);
51153e9753d6SMatthew G. Knepley       ierr = PetscFEGetFaceQuadrature(fe, &qGeom);CHKERRQ(ierr);
51163e9753d6SMatthew G. Knepley       ierr = PetscObjectReference((PetscObject)qGeom);CHKERRQ(ierr);
51173e9753d6SMatthew G. Knepley     }
51183e9753d6SMatthew G. Knepley     ierr = PetscQuadratureGetData(qGeom, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
51193e9753d6SMatthew G. Knepley     ierr = DMSNESGetFEGeom(coordField,pointIS,qGeom,PETSC_TRUE,&fgeom);CHKERRQ(ierr);
51203e9753d6SMatthew G. Knepley     for (face = 0; face < numFaces; ++face) {
5121f15274beSMatthew Knepley       const PetscInt point = points[face], *support;
51223e9753d6SMatthew G. Knepley       PetscScalar   *x     = NULL;
5123f15274beSMatthew Knepley       PetscInt       i;
51243e9753d6SMatthew G. Knepley 
51253e9753d6SMatthew G. Knepley       ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
51263e9753d6SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
51273e9753d6SMatthew G. Knepley       for (i = 0; i < totDim; ++i) u[face*totDim+i] = x[i];
51283e9753d6SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plex, section, locX, support[0], NULL, &x);CHKERRQ(ierr);
51293e9753d6SMatthew G. Knepley       if (locX_t) {
51303e9753d6SMatthew G. Knepley         ierr = DMPlexVecGetClosure(plex, section, locX_t, support[0], NULL, &x);CHKERRQ(ierr);
51313e9753d6SMatthew G. Knepley         for (i = 0; i < totDim; ++i) u_t[face*totDim+i] = x[i];
51323e9753d6SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(plex, section, locX_t, support[0], NULL, &x);CHKERRQ(ierr);
51333e9753d6SMatthew G. Knepley       }
51343e9753d6SMatthew G. Knepley       if (locA) {
51353e9753d6SMatthew G. Knepley         PetscInt subp;
51363e9753d6SMatthew G. Knepley         ierr = DMGetEnclosurePoint(plexA, dm, encAux, support[0], &subp);CHKERRQ(ierr);
51373e9753d6SMatthew G. Knepley         ierr = DMPlexVecGetClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
51383e9753d6SMatthew G. Knepley         for (i = 0; i < totDimAux; ++i) a[face*totDimAux+i] = x[i];
51393e9753d6SMatthew G. Knepley         ierr = DMPlexVecRestoreClosure(plexA, sectionAux, locA, subp, NULL, &x);CHKERRQ(ierr);
51403e9753d6SMatthew G. Knepley       }
51413e9753d6SMatthew G. Knepley     }
51423e9753d6SMatthew G. Knepley     ierr = PetscArrayzero(elemMat, numFaces*totDim*totDim);CHKERRQ(ierr);
51433e9753d6SMatthew G. Knepley     {
51443e9753d6SMatthew G. Knepley       PetscFE         fe;
51453e9753d6SMatthew G. Knepley       PetscInt        Nb;
51463e9753d6SMatthew G. Knepley       /* Conforming batches */
51473e9753d6SMatthew G. Knepley       PetscInt        numChunks, numBatches, numBlocks, Ne, blockSize, batchSize;
51483e9753d6SMatthew G. Knepley       /* Remainder */
51493e9753d6SMatthew G. Knepley       PetscFEGeom    *chunkGeom = NULL;
51503e9753d6SMatthew G. Knepley       PetscInt        fieldJ, Nr, offset;
51513e9753d6SMatthew G. Knepley 
51523e9753d6SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fe);CHKERRQ(ierr);
51533e9753d6SMatthew G. Knepley       ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
51543e9753d6SMatthew G. Knepley       ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
51553e9753d6SMatthew G. Knepley       blockSize = Nb;
51563e9753d6SMatthew G. Knepley       batchSize = numBlocks * blockSize;
51573e9753d6SMatthew G. Knepley       ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
51583e9753d6SMatthew G. Knepley       numChunks = numFaces / (numBatches*batchSize);
51593e9753d6SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
51603e9753d6SMatthew G. Knepley       Nr        = numFaces % (numBatches*batchSize);
51613e9753d6SMatthew G. Knepley       offset    = numFaces - Nr;
51623e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(fgeom,0,offset,&chunkGeom);CHKERRQ(ierr);
51633e9753d6SMatthew G. Knepley       for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
516445480ffeSMatthew G. Knepley         key.field = fieldI*Nf+fieldJ;
516545480ffeSMatthew G. Knepley         ierr = PetscFEIntegrateBdJacobian(prob, wf, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMat);CHKERRQ(ierr);
51663e9753d6SMatthew G. Knepley       }
51673e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(fgeom,offset,numFaces,&chunkGeom);CHKERRQ(ierr);
51683e9753d6SMatthew G. Knepley       for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
516945480ffeSMatthew G. Knepley         key.field = fieldI*Nf+fieldJ;
517045480ffeSMatthew G. Knepley         ierr = PetscFEIntegrateBdJacobian(prob, wf, key, Nr, chunkGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, a ? &a[offset*totDimAux] : NULL, t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
51713e9753d6SMatthew G. Knepley       }
51723e9753d6SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(fgeom,offset,numFaces,&chunkGeom);CHKERRQ(ierr);
51733e9753d6SMatthew G. Knepley     }
51743e9753d6SMatthew G. Knepley     for (face = 0; face < numFaces; ++face) {
51753e9753d6SMatthew G. Knepley       const PetscInt point = points[face], *support;
51763e9753d6SMatthew G. Knepley 
51773e9753d6SMatthew G. Knepley       /* Transform to global basis before insertion in Jacobian */
51783e9753d6SMatthew G. Knepley       ierr = DMPlexGetSupport(plex, point, &support);CHKERRQ(ierr);
51793e9753d6SMatthew G. Knepley       if (transform) {ierr = DMPlexBasisTransformPointTensor_Internal(dm, tdm, tv, support[0], PETSC_TRUE, totDim, &elemMat[face*totDim*totDim]);CHKERRQ(ierr);}
51803e9753d6SMatthew G. Knepley       if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(point, "BdJacobian", totDim, totDim, &elemMat[face*totDim*totDim]);CHKERRQ(ierr);}
51813e9753d6SMatthew G. Knepley       if (!isMatISP) {
51823e9753d6SMatthew G. Knepley         ierr = DMPlexMatSetClosure(plex, section, globalSection, JacP, support[0], &elemMat[face*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
51833e9753d6SMatthew G. Knepley       } else {
51843e9753d6SMatthew G. Knepley         Mat lJ;
51853e9753d6SMatthew G. Knepley 
51863e9753d6SMatthew G. Knepley         ierr = MatISGetLocalMat(JacP, &lJ);CHKERRQ(ierr);
51873e9753d6SMatthew G. Knepley         ierr = DMPlexMatSetClosure(plex, section, subSection, lJ, support[0], &elemMat[face*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
51883e9753d6SMatthew G. Knepley       }
51893e9753d6SMatthew G. Knepley     }
51903e9753d6SMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,pointIS,qGeom,PETSC_TRUE,&fgeom);CHKERRQ(ierr);
51913e9753d6SMatthew G. Knepley     ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
51923e9753d6SMatthew G. Knepley     ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
51933e9753d6SMatthew G. Knepley     ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
51943e9753d6SMatthew G. Knepley     ierr = PetscFree4(u, u_t, elemMat, a);CHKERRQ(ierr);
51953e9753d6SMatthew G. Knepley   }
51963e9753d6SMatthew G. Knepley   if (plex)  {ierr = DMDestroy(&plex);CHKERRQ(ierr);}
51973e9753d6SMatthew G. Knepley   if (plexA) {ierr = DMDestroy(&plexA);CHKERRQ(ierr);}
51983e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
51993e9753d6SMatthew G. Knepley }
52003e9753d6SMatthew G. Knepley 
520145480ffeSMatthew G. Knepley PetscErrorCode DMPlexComputeBdJacobianSingle(DM dm, PetscReal t, PetscWeakForm wf, DMLabel label, PetscInt numValues, const PetscInt values[], PetscInt field, Vec locX, Vec locX_t, PetscReal X_tShift, Mat Jac, Mat JacP)
52023e9753d6SMatthew G. Knepley {
52033e9753d6SMatthew G. Knepley   DMField        coordField;
52043e9753d6SMatthew G. Knepley   DMLabel        depthLabel;
52053e9753d6SMatthew G. Knepley   IS             facetIS;
52063e9753d6SMatthew G. Knepley   PetscInt       dim;
52073e9753d6SMatthew G. Knepley   PetscErrorCode ierr;
52083e9753d6SMatthew G. Knepley 
52093e9753d6SMatthew G. Knepley   PetscFunctionBegin;
52103e9753d6SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
52113e9753d6SMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
52123e9753d6SMatthew G. Knepley   ierr = DMLabelGetStratumIS(depthLabel, dim-1, &facetIS);CHKERRQ(ierr);
52133e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
521445480ffeSMatthew G. Knepley   ierr = DMPlexComputeBdJacobian_Single_Internal(dm, t, wf, label, numValues, values, field, locX, locX_t, X_tShift, Jac, JacP, coordField, facetIS);CHKERRQ(ierr);
52153e9753d6SMatthew G. Knepley   ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
52163e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
52173e9753d6SMatthew G. Knepley }
52183e9753d6SMatthew G. Knepley 
52193e9753d6SMatthew G. Knepley PetscErrorCode DMPlexComputeBdJacobian_Internal(DM dm, Vec locX, Vec locX_t, PetscReal t, PetscReal X_tShift, Mat Jac, Mat JacP, void *user)
52203e9753d6SMatthew G. Knepley {
52213e9753d6SMatthew G. Knepley   PetscDS          prob;
52223e9753d6SMatthew G. Knepley   PetscInt         dim, numBd, bd;
52233e9753d6SMatthew G. Knepley   DMLabel          depthLabel;
52243e9753d6SMatthew G. Knepley   DMField          coordField = NULL;
52253e9753d6SMatthew G. Knepley   IS               facetIS;
52263e9753d6SMatthew G. Knepley   PetscErrorCode   ierr;
52273e9753d6SMatthew G. Knepley 
52283e9753d6SMatthew G. Knepley   PetscFunctionBegin;
52293e9753d6SMatthew G. Knepley   ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
52303e9753d6SMatthew G. Knepley   ierr = DMPlexGetDepthLabel(dm, &depthLabel);CHKERRQ(ierr);
52313e9753d6SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
52323e9753d6SMatthew G. Knepley   ierr = DMLabelGetStratumIS(depthLabel, dim-1, &facetIS);CHKERRQ(ierr);
52333e9753d6SMatthew G. Knepley   ierr = PetscDSGetNumBoundary(prob, &numBd);CHKERRQ(ierr);
52343e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
52353e9753d6SMatthew G. Knepley   for (bd = 0; bd < numBd; ++bd) {
523645480ffeSMatthew G. Knepley     PetscWeakForm           wf;
52373e9753d6SMatthew G. Knepley     DMBoundaryConditionType type;
52383e9753d6SMatthew G. Knepley     DMLabel                 label;
52393e9753d6SMatthew G. Knepley     const PetscInt         *values;
52403e9753d6SMatthew G. Knepley     PetscInt                fieldI, numValues;
52413e9753d6SMatthew G. Knepley     PetscObject             obj;
52423e9753d6SMatthew G. Knepley     PetscClassId            id;
52433e9753d6SMatthew G. Knepley 
524445480ffeSMatthew G. Knepley     ierr = PetscDSGetBoundary(prob, bd, &wf, &type, NULL, &label, &numValues, &values, &fieldI, NULL, NULL, NULL, NULL, NULL);CHKERRQ(ierr);
52453e9753d6SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, fieldI, &obj);CHKERRQ(ierr);
52463e9753d6SMatthew G. Knepley     ierr = PetscObjectGetClassId(obj, &id);CHKERRQ(ierr);
52473e9753d6SMatthew G. Knepley     if ((id != PETSCFE_CLASSID) || (type & DM_BC_ESSENTIAL)) continue;
524845480ffeSMatthew G. Knepley     ierr = DMPlexComputeBdJacobian_Single_Internal(dm, t, wf, label, numValues, values, fieldI, locX, locX_t, X_tShift, Jac, JacP, coordField, facetIS);CHKERRQ(ierr);
52493e9753d6SMatthew G. Knepley   }
52503e9753d6SMatthew G. Knepley   ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
52513e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
52523e9753d6SMatthew G. Knepley }
52533e9753d6SMatthew G. Knepley 
52546528b96dSMatthew G. Knepley PetscErrorCode DMPlexComputeJacobian_Internal(DM dm, PetscHashFormKey key, IS cellIS, PetscReal t, PetscReal X_tShift, Vec X, Vec X_t, Mat Jac, Mat JacP,void *user)
52553e9753d6SMatthew G. Knepley {
52563e9753d6SMatthew G. Knepley   DM_Plex        *mesh  = (DM_Plex *) dm->data;
52573e9753d6SMatthew G. Knepley   const char     *name  = "Jacobian";
52589a2a23afSMatthew G. Knepley   DM              dmAux = NULL, plex, tdm;
52593e9753d6SMatthew G. Knepley   DMEnclosureType encAux;
52603e9753d6SMatthew G. Knepley   Vec             A, tv;
52613e9753d6SMatthew G. Knepley   DMField         coordField;
52623e9753d6SMatthew G. Knepley   PetscDS         prob, probAux = NULL;
52633e9753d6SMatthew G. Knepley   PetscSection    section, globalSection, subSection, sectionAux;
52643e9753d6SMatthew G. Knepley   PetscScalar    *elemMat, *elemMatP, *elemMatD, *u, *u_t, *a = NULL;
52653e9753d6SMatthew G. Knepley   const PetscInt *cells;
52663e9753d6SMatthew G. Knepley   PetscInt        Nf, fieldI, fieldJ;
52673e9753d6SMatthew G. Knepley   PetscInt        totDim, totDimAux, cStart, cEnd, numCells, c;
52683e9753d6SMatthew G. Knepley   PetscBool       isMatIS, isMatISP, hasJac, hasPrec, hasDyn, hasFV = PETSC_FALSE, transform;
52693e9753d6SMatthew G. Knepley   PetscErrorCode  ierr;
52703e9753d6SMatthew G. Knepley 
52713e9753d6SMatthew G. Knepley   PetscFunctionBegin;
52723e9753d6SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
52733e9753d6SMatthew G. Knepley   ierr = ISGetLocalSize(cellIS, &numCells);CHKERRQ(ierr);
52743e9753d6SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
52753e9753d6SMatthew G. Knepley   ierr = DMHasBasisTransform(dm, &transform);CHKERRQ(ierr);
52763e9753d6SMatthew G. Knepley   ierr = DMGetBasisTransformDM_Internal(dm, &tdm);CHKERRQ(ierr);
52773e9753d6SMatthew G. Knepley   ierr = DMGetBasisTransformVec_Internal(dm, &tv);CHKERRQ(ierr);
52783e9753d6SMatthew G. Knepley   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
52793e9753d6SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatISP);CHKERRQ(ierr);
52803e9753d6SMatthew G. Knepley   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
52813e9753d6SMatthew G. Knepley   if (isMatISP) {ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr);}
52823e9753d6SMatthew G. Knepley   ierr = DMGetCellDS(dm, cells ? cells[cStart] : cStart, &prob);CHKERRQ(ierr);
52833e9753d6SMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
52843e9753d6SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
52853e9753d6SMatthew G. Knepley   ierr = PetscDSHasJacobian(prob, &hasJac);CHKERRQ(ierr);
52863e9753d6SMatthew G. Knepley   ierr = PetscDSHasJacobianPreconditioner(prob, &hasPrec);CHKERRQ(ierr);
52873e9753d6SMatthew G. Knepley   /* user passed in the same matrix, avoid double contributions and
52883e9753d6SMatthew G. Knepley      only assemble the Jacobian */
52893e9753d6SMatthew G. Knepley   if (hasJac && Jac == JacP) hasPrec = PETSC_FALSE;
52903e9753d6SMatthew G. Knepley   ierr = PetscDSHasDynamicJacobian(prob, &hasDyn);CHKERRQ(ierr);
52913e9753d6SMatthew G. Knepley   hasDyn = hasDyn && (X_tShift != 0.0) ? PETSC_TRUE : PETSC_FALSE;
529204c51a94SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, key.label, key.value, &A);CHKERRQ(ierr);
52939a2a23afSMatthew G. Knepley   if (A) {
52949a2a23afSMatthew G. Knepley     ierr = VecGetDM(A, &dmAux);CHKERRQ(ierr);
52953e9753d6SMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
52963e9753d6SMatthew G. Knepley     ierr = DMConvert(dmAux, DMPLEX, &plex);CHKERRQ(ierr);
52973e9753d6SMatthew G. Knepley     ierr = DMGetLocalSection(plex, &sectionAux);CHKERRQ(ierr);
52983e9753d6SMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
52993e9753d6SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
53003e9753d6SMatthew G. Knepley   }
53013e9753d6SMatthew G. Knepley   ierr = PetscMalloc5(numCells*totDim,&u,X_t ? numCells*totDim : 0,&u_t,hasJac ? numCells*totDim*totDim : 0,&elemMat,hasPrec ? numCells*totDim*totDim : 0, &elemMatP,hasDyn ? numCells*totDim*totDim : 0, &elemMatD);CHKERRQ(ierr);
53023e9753d6SMatthew G. Knepley   if (dmAux) {ierr = PetscMalloc1(numCells*totDimAux, &a);CHKERRQ(ierr);}
53033e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
53043e9753d6SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
53053e9753d6SMatthew G. Knepley     const PetscInt cell = cells ? cells[c] : c;
53063e9753d6SMatthew G. Knepley     const PetscInt cind = c - cStart;
53073e9753d6SMatthew G. Knepley     PetscScalar   *x = NULL,  *x_t = NULL;
53083e9753d6SMatthew G. Knepley     PetscInt       i;
53093e9753d6SMatthew G. Knepley 
53103e9753d6SMatthew G. Knepley     ierr = DMPlexVecGetClosure(dm, section, X, cell, NULL, &x);CHKERRQ(ierr);
53113e9753d6SMatthew G. Knepley     for (i = 0; i < totDim; ++i) u[cind*totDim+i] = x[i];
53123e9753d6SMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(dm, section, X, cell, NULL, &x);CHKERRQ(ierr);
53133e9753d6SMatthew G. Knepley     if (X_t) {
53143e9753d6SMatthew G. Knepley       ierr = DMPlexVecGetClosure(dm, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
53153e9753d6SMatthew G. Knepley       for (i = 0; i < totDim; ++i) u_t[cind*totDim+i] = x_t[i];
53163e9753d6SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(dm, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
53173e9753d6SMatthew G. Knepley     }
53183e9753d6SMatthew G. Knepley     if (dmAux) {
53193e9753d6SMatthew G. Knepley       PetscInt subcell;
53203e9753d6SMatthew G. Knepley       ierr = DMGetEnclosurePoint(dmAux, dm, encAux, cell, &subcell);CHKERRQ(ierr);
53213e9753d6SMatthew G. Knepley       ierr = DMPlexVecGetClosure(plex, sectionAux, A, subcell, NULL, &x);CHKERRQ(ierr);
53223e9753d6SMatthew G. Knepley       for (i = 0; i < totDimAux; ++i) a[cind*totDimAux+i] = x[i];
53233e9753d6SMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plex, sectionAux, A, subcell, NULL, &x);CHKERRQ(ierr);
53243e9753d6SMatthew G. Knepley     }
53253e9753d6SMatthew G. Knepley   }
53263e9753d6SMatthew G. Knepley   if (hasJac)  {ierr = PetscArrayzero(elemMat,  numCells*totDim*totDim);CHKERRQ(ierr);}
53273e9753d6SMatthew G. Knepley   if (hasPrec) {ierr = PetscArrayzero(elemMatP, numCells*totDim*totDim);CHKERRQ(ierr);}
53283e9753d6SMatthew G. Knepley   if (hasDyn)  {ierr = PetscArrayzero(elemMatD, numCells*totDim*totDim);CHKERRQ(ierr);}
53293e9753d6SMatthew G. Knepley   for (fieldI = 0; fieldI < Nf; ++fieldI) {
53303e9753d6SMatthew G. Knepley     PetscClassId    id;
53313e9753d6SMatthew G. Knepley     PetscFE         fe;
53323e9753d6SMatthew G. Knepley     PetscQuadrature qGeom = NULL;
53333e9753d6SMatthew G. Knepley     PetscInt        Nb;
53343e9753d6SMatthew G. Knepley     /* Conforming batches */
53353e9753d6SMatthew G. Knepley     PetscInt        numChunks, numBatches, numBlocks, Ne, blockSize, batchSize;
53363e9753d6SMatthew G. Knepley     /* Remainder */
53373e9753d6SMatthew G. Knepley     PetscInt        Nr, offset, Nq;
53383e9753d6SMatthew G. Knepley     PetscInt        maxDegree;
53393e9753d6SMatthew G. Knepley     PetscFEGeom     *cgeomFEM, *chunkGeom = NULL, *remGeom = NULL;
53403e9753d6SMatthew G. Knepley 
53413e9753d6SMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fe);CHKERRQ(ierr);
53423e9753d6SMatthew G. Knepley     ierr = PetscObjectGetClassId((PetscObject) fe, &id);CHKERRQ(ierr);
53433e9753d6SMatthew G. Knepley     if (id == PETSCFV_CLASSID) {hasFV = PETSC_TRUE; continue;}
53443e9753d6SMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
53453e9753d6SMatthew G. Knepley     ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
53463e9753d6SMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,cellIS,NULL,&maxDegree);CHKERRQ(ierr);
53473e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
53483e9753d6SMatthew G. Knepley       ierr = DMFieldCreateDefaultQuadrature(coordField,cellIS,&qGeom);CHKERRQ(ierr);
53493e9753d6SMatthew G. Knepley     }
53503e9753d6SMatthew G. Knepley     if (!qGeom) {
53513e9753d6SMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe,&qGeom);CHKERRQ(ierr);
53523e9753d6SMatthew G. Knepley       ierr = PetscObjectReference((PetscObject)qGeom);CHKERRQ(ierr);
53533e9753d6SMatthew G. Knepley     }
53543e9753d6SMatthew G. Knepley     ierr = PetscQuadratureGetData(qGeom, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
53553e9753d6SMatthew G. Knepley     ierr = DMSNESGetFEGeom(coordField,cellIS,qGeom,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
53563e9753d6SMatthew G. Knepley     blockSize = Nb;
53573e9753d6SMatthew G. Knepley     batchSize = numBlocks * blockSize;
53583e9753d6SMatthew G. Knepley     ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
53593e9753d6SMatthew G. Knepley     numChunks = numCells / (numBatches*batchSize);
53603e9753d6SMatthew G. Knepley     Ne        = numChunks*numBatches*batchSize;
53613e9753d6SMatthew G. Knepley     Nr        = numCells % (numBatches*batchSize);
53623e9753d6SMatthew G. Knepley     offset    = numCells - Nr;
53633e9753d6SMatthew G. Knepley     ierr = PetscFEGeomGetChunk(cgeomFEM,0,offset,&chunkGeom);CHKERRQ(ierr);
53643e9753d6SMatthew G. Knepley     ierr = PetscFEGeomGetChunk(cgeomFEM,offset,numCells,&remGeom);CHKERRQ(ierr);
53653e9753d6SMatthew G. Knepley     for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
53666528b96dSMatthew G. Knepley       key.field = fieldI*Nf+fieldJ;
53673e9753d6SMatthew G. Knepley       if (hasJac) {
53686528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMat);CHKERRQ(ierr);
53696528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN, key, Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
53703e9753d6SMatthew G. Knepley       }
53713e9753d6SMatthew G. Knepley       if (hasPrec) {
53726528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_PRE, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMatP);CHKERRQ(ierr);
53736528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_PRE, key, Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, X_tShift, &elemMatP[offset*totDim*totDim]);CHKERRQ(ierr);
53743e9753d6SMatthew G. Knepley       }
53753e9753d6SMatthew G. Knepley       if (hasDyn) {
53766528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_DYN, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMatD);CHKERRQ(ierr);
53776528b96dSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_DYN, key, Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, X_tShift, &elemMatD[offset*totDim*totDim]);CHKERRQ(ierr);
53783e9753d6SMatthew G. Knepley       }
53793e9753d6SMatthew G. Knepley     }
53803e9753d6SMatthew G. Knepley     ierr = PetscFEGeomRestoreChunk(cgeomFEM,offset,numCells,&remGeom);CHKERRQ(ierr);
53813e9753d6SMatthew G. Knepley     ierr = PetscFEGeomRestoreChunk(cgeomFEM,0,offset,&chunkGeom);CHKERRQ(ierr);
53823e9753d6SMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,cellIS,qGeom,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
53833e9753d6SMatthew G. Knepley     ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
53843e9753d6SMatthew G. Knepley   }
53853e9753d6SMatthew G. Knepley   /*   Add contribution from X_t */
53863e9753d6SMatthew G. Knepley   if (hasDyn) {for (c = 0; c < numCells*totDim*totDim; ++c) elemMat[c] += X_tShift*elemMatD[c];}
53873e9753d6SMatthew G. Knepley   if (hasFV) {
53883e9753d6SMatthew G. Knepley     PetscClassId id;
53893e9753d6SMatthew G. Knepley     PetscFV      fv;
53903e9753d6SMatthew G. Knepley     PetscInt     offsetI, NcI, NbI = 1, fc, f;
53913e9753d6SMatthew G. Knepley 
53923e9753d6SMatthew G. Knepley     for (fieldI = 0; fieldI < Nf; ++fieldI) {
53933e9753d6SMatthew G. Knepley       ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fv);CHKERRQ(ierr);
53943e9753d6SMatthew G. Knepley       ierr = PetscDSGetFieldOffset(prob, fieldI, &offsetI);CHKERRQ(ierr);
53953e9753d6SMatthew G. Knepley       ierr = PetscObjectGetClassId((PetscObject) fv, &id);CHKERRQ(ierr);
53963e9753d6SMatthew G. Knepley       if (id != PETSCFV_CLASSID) continue;
53973e9753d6SMatthew G. Knepley       /* Put in the identity */
53983e9753d6SMatthew G. Knepley       ierr = PetscFVGetNumComponents(fv, &NcI);CHKERRQ(ierr);
53993e9753d6SMatthew G. Knepley       for (c = cStart; c < cEnd; ++c) {
54003e9753d6SMatthew G. Knepley         const PetscInt cind    = c - cStart;
54013e9753d6SMatthew G. Knepley         const PetscInt eOffset = cind*totDim*totDim;
54023e9753d6SMatthew G. Knepley         for (fc = 0; fc < NcI; ++fc) {
54033e9753d6SMatthew G. Knepley           for (f = 0; f < NbI; ++f) {
54043e9753d6SMatthew G. Knepley             const PetscInt i = offsetI + f*NcI+fc;
54053e9753d6SMatthew G. Knepley             if (hasPrec) {
54063e9753d6SMatthew G. Knepley               if (hasJac) {elemMat[eOffset+i*totDim+i] = 1.0;}
54073e9753d6SMatthew G. Knepley               elemMatP[eOffset+i*totDim+i] = 1.0;
54083e9753d6SMatthew G. Knepley             } else {elemMat[eOffset+i*totDim+i] = 1.0;}
54093e9753d6SMatthew G. Knepley           }
54103e9753d6SMatthew G. Knepley         }
54113e9753d6SMatthew G. Knepley       }
54123e9753d6SMatthew G. Knepley     }
54133e9753d6SMatthew G. Knepley     /* No allocated space for FV stuff, so ignore the zero entries */
54143e9753d6SMatthew G. Knepley     ierr = MatSetOption(JacP, MAT_IGNORE_ZERO_ENTRIES, PETSC_TRUE);CHKERRQ(ierr);
54153e9753d6SMatthew G. Knepley   }
54163e9753d6SMatthew G. Knepley   /* Insert values into matrix */
54173e9753d6SMatthew G. Knepley   isMatIS = PETSC_FALSE;
54183e9753d6SMatthew G. Knepley   if (hasPrec && hasJac) {
54193e9753d6SMatthew G. Knepley     ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatIS);CHKERRQ(ierr);
54203e9753d6SMatthew G. Knepley   }
54213e9753d6SMatthew G. Knepley   if (isMatIS && !subSection) {
54223e9753d6SMatthew G. Knepley     ierr = DMPlexGetSubdomainSection(dm, &subSection);CHKERRQ(ierr);
54233e9753d6SMatthew G. Knepley   }
54243e9753d6SMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
54253e9753d6SMatthew G. Knepley     const PetscInt cell = cells ? cells[c] : c;
54263e9753d6SMatthew G. Knepley     const PetscInt cind = c - cStart;
54273e9753d6SMatthew G. Knepley 
54283e9753d6SMatthew G. Knepley     /* Transform to global basis before insertion in Jacobian */
54293e9753d6SMatthew G. Knepley     if (transform) {ierr = DMPlexBasisTransformPointTensor_Internal(dm, tdm, tv, cell, PETSC_TRUE, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);}
54303e9753d6SMatthew G. Knepley     if (hasPrec) {
54313e9753d6SMatthew G. Knepley       if (hasJac) {
54323e9753d6SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);}
54333e9753d6SMatthew G. Knepley         if (!isMatIS) {
54343e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(dm, section, globalSection, Jac, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54353e9753d6SMatthew G. Knepley         } else {
54363e9753d6SMatthew G. Knepley           Mat lJ;
54373e9753d6SMatthew G. Knepley 
54383e9753d6SMatthew G. Knepley           ierr = MatISGetLocalMat(Jac,&lJ);CHKERRQ(ierr);
54393e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(dm, section, subSection, lJ, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54403e9753d6SMatthew G. Knepley         }
54413e9753d6SMatthew G. Knepley       }
54423e9753d6SMatthew G. Knepley       if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMatP[cind*totDim*totDim]);CHKERRQ(ierr);}
54433e9753d6SMatthew G. Knepley       if (!isMatISP) {
54443e9753d6SMatthew G. Knepley         ierr = DMPlexMatSetClosure(dm, section, globalSection, JacP, cell, &elemMatP[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54453e9753d6SMatthew G. Knepley       } else {
54463e9753d6SMatthew G. Knepley         Mat lJ;
54473e9753d6SMatthew G. Knepley 
54483e9753d6SMatthew G. Knepley         ierr = MatISGetLocalMat(JacP,&lJ);CHKERRQ(ierr);
54493e9753d6SMatthew G. Knepley         ierr = DMPlexMatSetClosure(dm, section, subSection, lJ, cell, &elemMatP[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54503e9753d6SMatthew G. Knepley       }
54513e9753d6SMatthew G. Knepley     } else {
54523e9753d6SMatthew G. Knepley       if (hasJac) {
54533e9753d6SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);}
54543e9753d6SMatthew G. Knepley         if (!isMatISP) {
54553e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(dm, section, globalSection, JacP, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54563e9753d6SMatthew G. Knepley         } else {
54573e9753d6SMatthew G. Knepley           Mat lJ;
54583e9753d6SMatthew G. Knepley 
54593e9753d6SMatthew G. Knepley           ierr = MatISGetLocalMat(JacP,&lJ);CHKERRQ(ierr);
54603e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(dm, section, subSection, lJ, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
54613e9753d6SMatthew G. Knepley         }
54623e9753d6SMatthew G. Knepley       }
54633e9753d6SMatthew G. Knepley     }
54643e9753d6SMatthew G. Knepley   }
54653e9753d6SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
54663e9753d6SMatthew G. Knepley   if (hasFV) {ierr = MatSetOption(JacP, MAT_IGNORE_ZERO_ENTRIES, PETSC_FALSE);CHKERRQ(ierr);}
54673e9753d6SMatthew G. Knepley   ierr = PetscFree5(u,u_t,elemMat,elemMatP,elemMatD);CHKERRQ(ierr);
54683e9753d6SMatthew G. Knepley   if (dmAux) {
54693e9753d6SMatthew G. Knepley     ierr = PetscFree(a);CHKERRQ(ierr);
54703e9753d6SMatthew G. Knepley     ierr = DMDestroy(&plex);CHKERRQ(ierr);
54713e9753d6SMatthew G. Knepley   }
54723e9753d6SMatthew G. Knepley   /* Compute boundary integrals */
54733e9753d6SMatthew G. Knepley   ierr = DMPlexComputeBdJacobian_Internal(dm, X, X_t, t, X_tShift, Jac, JacP, user);CHKERRQ(ierr);
54743e9753d6SMatthew G. Knepley   /* Assemble matrix */
54753e9753d6SMatthew G. Knepley   if (hasJac && hasPrec) {
54763e9753d6SMatthew G. Knepley     ierr = MatAssemblyBegin(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
54773e9753d6SMatthew G. Knepley     ierr = MatAssemblyEnd(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
54783e9753d6SMatthew G. Knepley   }
54793e9753d6SMatthew G. Knepley   ierr = MatAssemblyBegin(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
54803e9753d6SMatthew G. Knepley   ierr = MatAssemblyEnd(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
54813e9753d6SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
54823e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
54833e9753d6SMatthew G. Knepley }
54843e9753d6SMatthew G. Knepley 
5485148442b3SMatthew G. Knepley PetscErrorCode DMPlexComputeJacobian_Hybrid_Internal(DM dm, PetscHashFormKey key[], IS cellIS, PetscReal t, PetscReal X_tShift, Vec locX, Vec locX_t, Mat Jac, Mat JacP, void *user)
54863e9753d6SMatthew G. Knepley {
54873e9753d6SMatthew G. Knepley   DM_Plex         *mesh          = (DM_Plex *) dm->data;
54883e9753d6SMatthew G. Knepley   const char      *name          = "Hybrid Jacobian";
5489148442b3SMatthew G. Knepley   DM               dmAux[3]      = {NULL, NULL, NULL};
5490148442b3SMatthew G. Knepley   DMLabel          ghostLabel    = NULL;
54913e9753d6SMatthew G. Knepley   DM               plex          = NULL;
54923e9753d6SMatthew G. Knepley   DM               plexA         = NULL;
5493148442b3SMatthew G. Knepley   PetscDS          ds            = NULL;
5494148442b3SMatthew G. Knepley   PetscDS          dsAux[3]      = {NULL, NULL, NULL};
5495148442b3SMatthew G. Knepley   Vec              locA[3]       = {NULL, NULL, NULL};
54963e9753d6SMatthew G. Knepley   PetscSection     section       = NULL;
5497148442b3SMatthew G. Knepley   PetscSection     sectionAux[3] = {NULL, NULL, NULL};
54983e9753d6SMatthew G. Knepley   DMField          coordField    = NULL;
5499148442b3SMatthew G. Knepley   PetscScalar     *u = NULL, *u_t, *a[3];
55003e9753d6SMatthew G. Knepley   PetscScalar     *elemMat, *elemMatP;
5501148442b3SMatthew G. Knepley   PetscSection     globalSection, subSection;
55023e9753d6SMatthew G. Knepley   IS               chunkIS;
55033e9753d6SMatthew G. Knepley   const PetscInt  *cells;
55043e9753d6SMatthew G. Knepley   PetscInt        *faces;
55053e9753d6SMatthew G. Knepley   PetscInt         cStart, cEnd, numCells;
5506148442b3SMatthew G. Knepley   PetscInt         Nf, fieldI, fieldJ, totDim, totDimAux[3], numChunks, cellChunkSize, chunk;
55073e9753d6SMatthew G. Knepley   PetscInt         maxDegree = PETSC_MAX_INT;
55083e9753d6SMatthew G. Knepley   PetscQuadrature  affineQuad = NULL, *quads = NULL;
55093e9753d6SMatthew G. Knepley   PetscFEGeom     *affineGeom = NULL, **geoms = NULL;
5510148442b3SMatthew G. Knepley   PetscBool        repeatKey = PETSC_FALSE, isMatIS = PETSC_FALSE, isMatISP = PETSC_FALSE, hasBdJac, hasBdPrec;
55113e9753d6SMatthew G. Knepley   PetscErrorCode   ierr;
55123e9753d6SMatthew G. Knepley 
55133e9753d6SMatthew G. Knepley   PetscFunctionBegin;
5514148442b3SMatthew G. Knepley   /* If keys are the same, both kernel will be run using the first key */
5515148442b3SMatthew G. Knepley   repeatKey = ((key[0].label == key[1].label) && (key[0].value == key[1].value)) ? PETSC_TRUE : PETSC_FALSE;
55163e9753d6SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
55173e9753d6SMatthew G. Knepley   ierr = ISGetLocalSize(cellIS, &numCells);CHKERRQ(ierr);
55183e9753d6SMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
55193e9753d6SMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
55203e9753d6SMatthew G. Knepley   ierr = DMGetSection(dm, &section);CHKERRQ(ierr);
55213e9753d6SMatthew G. Knepley   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
55223e9753d6SMatthew G. Knepley   ierr = DMGetLabel(dm, "ghost", &ghostLabel);CHKERRQ(ierr);
5523148442b3SMatthew G. Knepley   ierr = DMGetCellDS(dm, cStart, &ds);CHKERRQ(ierr);
5524148442b3SMatthew G. Knepley   ierr = PetscDSGetNumFields(ds, &Nf);CHKERRQ(ierr);
5525148442b3SMatthew G. Knepley   ierr = PetscDSGetTotalDimension(ds, &totDim);CHKERRQ(ierr);
5526148442b3SMatthew G. Knepley   ierr = PetscDSHasBdJacobian(ds, &hasBdJac);CHKERRQ(ierr);
5527148442b3SMatthew G. Knepley   ierr = PetscDSHasBdJacobianPreconditioner(ds, &hasBdPrec);CHKERRQ(ierr);
55283e9753d6SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatISP);CHKERRQ(ierr);
55293e9753d6SMatthew G. Knepley   if (isMatISP)               {ierr = DMPlexGetSubdomainSection(plex, &subSection);CHKERRQ(ierr);}
55303e9753d6SMatthew G. Knepley   if (hasBdPrec && hasBdJac)  {ierr = PetscObjectTypeCompare((PetscObject) JacP, MATIS, &isMatIS);CHKERRQ(ierr);}
55313e9753d6SMatthew G. Knepley   if (isMatIS && !subSection) {ierr = DMPlexGetSubdomainSection(plex, &subSection);CHKERRQ(ierr);}
5532148442b3SMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, key[2].label, key[2].value, &locA[2]);CHKERRQ(ierr);
5533148442b3SMatthew G. Knepley   if (locA[2]) {
5534148442b3SMatthew G. Knepley     ierr = VecGetDM(locA[2], &dmAux[2]);CHKERRQ(ierr);
5535148442b3SMatthew G. Knepley     ierr = DMConvert(dmAux[2], DMPLEX, &plexA);CHKERRQ(ierr);
5536148442b3SMatthew G. Knepley     ierr = DMGetSection(dmAux[2], &sectionAux[2]);CHKERRQ(ierr);
5537148442b3SMatthew G. Knepley     ierr = DMGetCellDS(dmAux[2], cStart, &dsAux[2]);CHKERRQ(ierr);
5538148442b3SMatthew G. Knepley     ierr = PetscDSGetTotalDimension(dsAux[2], &totDimAux[2]);CHKERRQ(ierr);
5539148442b3SMatthew G. Knepley     {
5540148442b3SMatthew G. Knepley       const PetscInt *cone;
5541148442b3SMatthew G. Knepley       PetscInt        c;
5542148442b3SMatthew G. Knepley 
5543148442b3SMatthew G. Knepley       ierr = DMPlexGetCone(dm, cStart, &cone);CHKERRQ(ierr);
5544148442b3SMatthew G. Knepley       for (c = 0; c < 2; ++c) {
5545148442b3SMatthew G. Knepley         const PetscInt *support;
5546148442b3SMatthew G. Knepley         PetscInt ssize, s;
5547148442b3SMatthew G. Knepley 
5548148442b3SMatthew G. Knepley         ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr);
5549148442b3SMatthew G. Knepley         ierr = DMPlexGetSupportSize(dm, cone[c], &ssize);CHKERRQ(ierr);
5550148442b3SMatthew G. Knepley         if (ssize != 2) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D from cell %D has support size %D != 2", cone[c], cStart, ssize);
5551148442b3SMatthew G. Knepley         if      (support[0] == cStart) s = 1;
5552148442b3SMatthew G. Knepley         else if (support[1] == cStart) s = 0;
5553148442b3SMatthew G. Knepley         else SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Face %D does not have cell %D in its support", cone[c], cStart);
5554148442b3SMatthew G. Knepley         ierr = DMGetAuxiliaryVec(dm, key[c].label, key[c].value, &locA[c]);CHKERRQ(ierr);
5555148442b3SMatthew G. Knepley         if (locA[c]) {ierr = VecGetDM(locA[c], &dmAux[c]);CHKERRQ(ierr);}
5556148442b3SMatthew G. Knepley         else         {dmAux[c] = dmAux[2];}
5557148442b3SMatthew G. Knepley         ierr = DMGetCellDS(dmAux[c], support[s], &dsAux[c]);CHKERRQ(ierr);
5558148442b3SMatthew G. Knepley         ierr = PetscDSGetTotalDimension(dsAux[c], &totDimAux[c]);CHKERRQ(ierr);
5559148442b3SMatthew G. Knepley       }
5560148442b3SMatthew G. Knepley     }
55613e9753d6SMatthew G. Knepley   }
55623e9753d6SMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
55633e9753d6SMatthew G. Knepley   ierr = DMFieldGetDegree(coordField, cellIS, NULL, &maxDegree);CHKERRQ(ierr);
55643e9753d6SMatthew G. Knepley   if (maxDegree > 1) {
55653e9753d6SMatthew G. Knepley     PetscInt f;
55663e9753d6SMatthew G. Knepley     ierr = PetscCalloc2(Nf, &quads, Nf, &geoms);CHKERRQ(ierr);
55673e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
55683e9753d6SMatthew G. Knepley       PetscFE fe;
55693e9753d6SMatthew G. Knepley 
5570148442b3SMatthew G. Knepley       ierr = PetscDSGetDiscretization(ds, f, (PetscObject *) &fe);CHKERRQ(ierr);
55713e9753d6SMatthew G. Knepley       if (fe) {
55723e9753d6SMatthew G. Knepley         ierr = PetscFEGetQuadrature(fe, &quads[f]);CHKERRQ(ierr);
55733e9753d6SMatthew G. Knepley         ierr = PetscObjectReference((PetscObject) quads[f]);CHKERRQ(ierr);
55743e9753d6SMatthew G. Knepley       }
55753e9753d6SMatthew G. Knepley     }
55763e9753d6SMatthew G. Knepley   }
55773e9753d6SMatthew G. Knepley   cellChunkSize = numCells;
55783e9753d6SMatthew G. Knepley   numChunks     = !numCells ? 0 : PetscCeilReal(((PetscReal) numCells)/cellChunkSize);
55793e9753d6SMatthew G. Knepley   ierr = PetscCalloc1(2*cellChunkSize, &faces);CHKERRQ(ierr);
55803e9753d6SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, cellChunkSize, faces, PETSC_USE_POINTER, &chunkIS);CHKERRQ(ierr);
5581148442b3SMatthew G. Knepley   ierr = DMPlexGetCellFields(dm, cellIS, locX, locX_t, locA[2], &u, &u_t, &a[2]);CHKERRQ(ierr);
5582148442b3SMatthew G. Knepley   ierr = DMPlexGetHybridAuxFields(dm, dmAux, dsAux, cellIS, locA, a);CHKERRQ(ierr);
55833e9753d6SMatthew G. Knepley   ierr = DMGetWorkArray(dm, hasBdJac  ? cellChunkSize*totDim*totDim : 0, MPIU_SCALAR, &elemMat);CHKERRQ(ierr);
55843e9753d6SMatthew G. Knepley   ierr = DMGetWorkArray(dm, hasBdPrec ? cellChunkSize*totDim*totDim : 0, MPIU_SCALAR, &elemMatP);CHKERRQ(ierr);
55853e9753d6SMatthew G. Knepley   for (chunk = 0; chunk < numChunks; ++chunk) {
55863e9753d6SMatthew G. Knepley     PetscInt cS = cStart+chunk*cellChunkSize, cE = PetscMin(cS+cellChunkSize, cEnd), numCells = cE - cS, c;
55873e9753d6SMatthew G. Knepley 
55883e9753d6SMatthew G. Knepley     if (hasBdJac)  {ierr = PetscMemzero(elemMat,  numCells*totDim*totDim * sizeof(PetscScalar));CHKERRQ(ierr);}
55893e9753d6SMatthew G. Knepley     if (hasBdPrec) {ierr = PetscMemzero(elemMatP, numCells*totDim*totDim * sizeof(PetscScalar));CHKERRQ(ierr);}
55903e9753d6SMatthew G. Knepley     /* Get faces */
55913e9753d6SMatthew G. Knepley     for (c = cS; c < cE; ++c) {
55923e9753d6SMatthew G. Knepley       const PetscInt  cell = cells ? cells[c] : c;
55933e9753d6SMatthew G. Knepley       const PetscInt *cone;
55943e9753d6SMatthew G. Knepley       ierr = DMPlexGetCone(plex, cell, &cone);CHKERRQ(ierr);
55953e9753d6SMatthew G. Knepley       faces[(c-cS)*2+0] = cone[0];
55963e9753d6SMatthew G. Knepley       faces[(c-cS)*2+1] = cone[1];
55973e9753d6SMatthew G. Knepley     }
55983e9753d6SMatthew G. Knepley     ierr = ISGeneralSetIndices(chunkIS, cellChunkSize, faces, PETSC_USE_POINTER);CHKERRQ(ierr);
55993e9753d6SMatthew G. Knepley     if (maxDegree <= 1) {
56003e9753d6SMatthew G. Knepley       if (!affineQuad) {ierr = DMFieldCreateDefaultQuadrature(coordField, chunkIS, &affineQuad);CHKERRQ(ierr);}
56013e9753d6SMatthew G. Knepley       if (affineQuad)  {ierr = DMSNESGetFEGeom(coordField, chunkIS, affineQuad, PETSC_TRUE, &affineGeom);CHKERRQ(ierr);}
56023e9753d6SMatthew G. Knepley     } else {
56033e9753d6SMatthew G. Knepley       PetscInt f;
56043e9753d6SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
56053e9753d6SMatthew G. Knepley         if (quads[f]) {ierr = DMSNESGetFEGeom(coordField, chunkIS, quads[f], PETSC_TRUE, &geoms[f]);CHKERRQ(ierr);}
56063e9753d6SMatthew G. Knepley       }
56073e9753d6SMatthew G. Knepley     }
56083e9753d6SMatthew G. Knepley 
56093e9753d6SMatthew G. Knepley     for (fieldI = 0; fieldI < Nf; ++fieldI) {
56103e9753d6SMatthew G. Knepley       PetscFE         feI;
56113e9753d6SMatthew G. Knepley       PetscFEGeom    *geom = affineGeom ? affineGeom : geoms[fieldI];
56123e9753d6SMatthew G. Knepley       PetscFEGeom    *chunkGeom = NULL, *remGeom = NULL;
56133e9753d6SMatthew G. Knepley       PetscQuadrature quad = affineQuad ? affineQuad : quads[fieldI];
56143e9753d6SMatthew G. Knepley       PetscInt        numChunks, numBatches, batchSize, numBlocks, blockSize, Ne, Nr, offset, Nq, Nb;
56153e9753d6SMatthew G. Knepley 
5616148442b3SMatthew G. Knepley       ierr = PetscDSGetDiscretization(ds, fieldI, (PetscObject *) &feI);CHKERRQ(ierr);
56173e9753d6SMatthew G. Knepley       if (!feI) continue;
56183e9753d6SMatthew G. Knepley       ierr = PetscFEGetTileSizes(feI, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
56193e9753d6SMatthew G. Knepley       ierr = PetscQuadratureGetData(quad, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
56203e9753d6SMatthew G. Knepley       ierr = PetscFEGetDimension(feI, &Nb);CHKERRQ(ierr);
56213e9753d6SMatthew G. Knepley       blockSize = Nb;
56223e9753d6SMatthew G. Knepley       batchSize = numBlocks * blockSize;
56233e9753d6SMatthew G. Knepley       ierr      = PetscFESetTileSizes(feI, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
56243e9753d6SMatthew G. Knepley       numChunks = numCells / (numBatches*batchSize);
56253e9753d6SMatthew G. Knepley       Ne        = numChunks*numBatches*batchSize;
56263e9753d6SMatthew G. Knepley       Nr        = numCells % (numBatches*batchSize);
56273e9753d6SMatthew G. Knepley       offset    = numCells - Nr;
56283e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
56293e9753d6SMatthew G. Knepley       ierr = PetscFEGeomGetChunk(geom,offset,numCells,&remGeom);CHKERRQ(ierr);
56303e9753d6SMatthew G. Knepley       for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
56313e9753d6SMatthew G. Knepley         PetscFE feJ;
56323e9753d6SMatthew G. Knepley 
5633148442b3SMatthew G. Knepley         ierr = PetscDSGetDiscretization(ds, fieldJ, (PetscObject *) &feJ);CHKERRQ(ierr);
56343e9753d6SMatthew G. Knepley         if (!feJ) continue;
5635148442b3SMatthew G. Knepley         if (fieldI == Nf-1) {
5636148442b3SMatthew G. Knepley           key[2].field = fieldI*Nf+fieldJ;
56373e9753d6SMatthew G. Knepley           if (hasBdJac) {
5638148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[2], Ne, chunkGeom, u, u_t, dsAux[2], a[2], t, X_tShift, elemMat);CHKERRQ(ierr);
5639148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[2], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[2], &a[2][offset*totDimAux[2]], t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
56403e9753d6SMatthew G. Knepley           }
56413e9753d6SMatthew G. Knepley           if (hasBdPrec) {
5642148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[2], Ne, chunkGeom, u, u_t, dsAux[2], a[2], t, X_tShift, elemMatP);CHKERRQ(ierr);
5643148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[2], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[2], &a[2][offset*totDimAux[2]], t, X_tShift, &elemMatP[offset*totDim*totDim]);CHKERRQ(ierr);
5644148442b3SMatthew G. Knepley           }
5645148442b3SMatthew G. Knepley         } else {
5646148442b3SMatthew G. Knepley           key[0].field = fieldI*Nf+fieldJ;
5647148442b3SMatthew G. Knepley           key[1].field = fieldI*Nf+fieldJ;
5648148442b3SMatthew G. Knepley           if (hasBdJac) {
5649148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[0], Ne, chunkGeom, u, u_t, dsAux[0], a[0], t, X_tShift, elemMat);CHKERRQ(ierr);
5650148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[0], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[0], &a[0][offset*totDimAux[0]], t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
5651148442b3SMatthew G. Knepley             if (!repeatKey) {
5652148442b3SMatthew G. Knepley               ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[1], Ne, chunkGeom, u, u_t, dsAux[1], a[1], t, X_tShift, elemMat);CHKERRQ(ierr);
5653148442b3SMatthew G. Knepley               ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN, key[1], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[1], &a[1][offset*totDimAux[1]], t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
5654148442b3SMatthew G. Knepley             }
5655148442b3SMatthew G. Knepley           }
5656148442b3SMatthew G. Knepley           if (hasBdPrec) {
5657148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[0], Ne, chunkGeom, u, u_t, dsAux[0], a[0], t, X_tShift, elemMatP);CHKERRQ(ierr);
5658148442b3SMatthew G. Knepley             ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[0], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[0], &a[0][offset*totDimAux[0]], t, X_tShift, &elemMatP[offset*totDim*totDim]);CHKERRQ(ierr);
5659148442b3SMatthew G. Knepley             if (!repeatKey) {
5660148442b3SMatthew G. Knepley               ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[1], Ne, chunkGeom, u, u_t, dsAux[1], a[1], t, X_tShift, elemMatP);CHKERRQ(ierr);
5661148442b3SMatthew G. Knepley               ierr = PetscFEIntegrateHybridJacobian(ds, PETSCFE_JACOBIAN_PRE, key[1], Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, dsAux[1], &a[1][offset*totDimAux[1]], t, X_tShift, &elemMatP[offset*totDim*totDim]);CHKERRQ(ierr);
5662148442b3SMatthew G. Knepley             }
5663148442b3SMatthew G. Knepley           }
56643e9753d6SMatthew G. Knepley         }
56653e9753d6SMatthew G. Knepley       }
56663e9753d6SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(geom,offset,numCells,&remGeom);CHKERRQ(ierr);
56673e9753d6SMatthew G. Knepley       ierr = PetscFEGeomRestoreChunk(geom,0,offset,&chunkGeom);CHKERRQ(ierr);
56683e9753d6SMatthew G. Knepley     }
56693e9753d6SMatthew G. Knepley     /* Insert values into matrix */
56703e9753d6SMatthew G. Knepley     for (c = cS; c < cE; ++c) {
56713e9753d6SMatthew G. Knepley       const PetscInt cell = cells ? cells[c] : c;
56723e9753d6SMatthew G. Knepley       const PetscInt cind = c - cS;
56733e9753d6SMatthew G. Knepley 
56743e9753d6SMatthew G. Knepley       if (hasBdPrec) {
56753e9753d6SMatthew G. Knepley         if (hasBdJac) {
56763e9753d6SMatthew G. Knepley           if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);}
56773e9753d6SMatthew G. Knepley           if (!isMatIS) {
56783e9753d6SMatthew G. Knepley             ierr = DMPlexMatSetClosure(plex, section, globalSection, Jac, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
56793e9753d6SMatthew G. Knepley           } else {
56803e9753d6SMatthew G. Knepley             Mat lJ;
56813e9753d6SMatthew G. Knepley 
56823e9753d6SMatthew G. Knepley             ierr = MatISGetLocalMat(Jac,&lJ);CHKERRQ(ierr);
56833e9753d6SMatthew G. Knepley             ierr = DMPlexMatSetClosure(plex, section, subSection, lJ, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
56843e9753d6SMatthew G. Knepley           }
56853e9753d6SMatthew G. Knepley         }
56863e9753d6SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMatP[cind*totDim*totDim]);CHKERRQ(ierr);}
56873e9753d6SMatthew G. Knepley         if (!isMatISP) {
56883e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(plex, section, globalSection, JacP, cell, &elemMatP[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
56893e9753d6SMatthew G. Knepley         } else {
56903e9753d6SMatthew G. Knepley           Mat lJ;
56913e9753d6SMatthew G. Knepley 
56923e9753d6SMatthew G. Knepley           ierr = MatISGetLocalMat(JacP,&lJ);CHKERRQ(ierr);
56933e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(plex, section, subSection, lJ, cell, &elemMatP[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
56943e9753d6SMatthew G. Knepley         }
56953e9753d6SMatthew G. Knepley       } else if (hasBdJac) {
56963e9753d6SMatthew G. Knepley         if (mesh->printFEM > 1) {ierr = DMPrintCellMatrix(cell, name, totDim, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);}
56973e9753d6SMatthew G. Knepley         if (!isMatISP) {
56983e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(plex, section, globalSection, JacP, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
56993e9753d6SMatthew G. Knepley         } else {
57003e9753d6SMatthew G. Knepley           Mat lJ;
57013e9753d6SMatthew G. Knepley 
57023e9753d6SMatthew G. Knepley           ierr = MatISGetLocalMat(JacP,&lJ);CHKERRQ(ierr);
57033e9753d6SMatthew G. Knepley           ierr = DMPlexMatSetClosure(plex, section, subSection, lJ, cell, &elemMat[cind*totDim*totDim], ADD_VALUES);CHKERRQ(ierr);
57043e9753d6SMatthew G. Knepley         }
57053e9753d6SMatthew G. Knepley       }
57063e9753d6SMatthew G. Knepley     }
57073e9753d6SMatthew G. Knepley   }
5708148442b3SMatthew G. Knepley   ierr = DMPlexRestoreCellFields(dm, cellIS, locX, locX_t, locA[2], &u, &u_t, &a[2]);CHKERRQ(ierr);
5709148442b3SMatthew G. Knepley   ierr = DMPlexRestoreHybridAuxFields(dmAux, dsAux, cellIS, locA, a);CHKERRQ(ierr);
57103e9753d6SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, hasBdJac  ? cellChunkSize*totDim*totDim : 0, MPIU_SCALAR, &elemMat);CHKERRQ(ierr);
57113e9753d6SMatthew G. Knepley   ierr = DMRestoreWorkArray(dm, hasBdPrec ? cellChunkSize*totDim*totDim : 0, MPIU_SCALAR, &elemMatP);CHKERRQ(ierr);
57123e9753d6SMatthew G. Knepley   ierr = PetscFree(faces);CHKERRQ(ierr);
57133e9753d6SMatthew G. Knepley   ierr = ISDestroy(&chunkIS);CHKERRQ(ierr);
57143e9753d6SMatthew G. Knepley   ierr = ISRestorePointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
57153e9753d6SMatthew G. Knepley   if (maxDegree <= 1) {
57163e9753d6SMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,cellIS,affineQuad,PETSC_FALSE,&affineGeom);CHKERRQ(ierr);
57173e9753d6SMatthew G. Knepley     ierr = PetscQuadratureDestroy(&affineQuad);CHKERRQ(ierr);
57183e9753d6SMatthew G. Knepley   } else {
57193e9753d6SMatthew G. Knepley     PetscInt f;
57203e9753d6SMatthew G. Knepley     for (f = 0; f < Nf; ++f) {
57213e9753d6SMatthew G. Knepley       if (geoms) {ierr = DMSNESRestoreFEGeom(coordField,cellIS,quads[f],PETSC_FALSE, &geoms[f]);CHKERRQ(ierr);}
57223e9753d6SMatthew G. Knepley       if (quads) {ierr = PetscQuadratureDestroy(&quads[f]);CHKERRQ(ierr);}
57233e9753d6SMatthew G. Knepley     }
57243e9753d6SMatthew G. Knepley     ierr = PetscFree2(quads,geoms);CHKERRQ(ierr);
57253e9753d6SMatthew G. Knepley   }
5726148442b3SMatthew G. Knepley   if (dmAux[2]) {ierr = DMDestroy(&plexA);CHKERRQ(ierr);}
57273e9753d6SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
57283e9753d6SMatthew G. Knepley   /* Assemble matrix */
57293e9753d6SMatthew G. Knepley   if (hasBdJac && hasBdPrec) {
57303e9753d6SMatthew G. Knepley     ierr = MatAssemblyBegin(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
57313e9753d6SMatthew G. Knepley     ierr = MatAssemblyEnd(Jac, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
57323e9753d6SMatthew G. Knepley   }
57333e9753d6SMatthew G. Knepley   ierr = MatAssemblyBegin(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
57343e9753d6SMatthew G. Knepley   ierr = MatAssemblyEnd(JacP, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
57353e9753d6SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
57363e9753d6SMatthew G. Knepley   PetscFunctionReturn(0);
57373e9753d6SMatthew G. Knepley }
5738*8e3a2eefSMatthew G. Knepley 
5739*8e3a2eefSMatthew G. Knepley /*
5740*8e3a2eefSMatthew G. Knepley   DMPlexComputeJacobian_Action_Internal - Form the local portion of the Jacobian action Z = J(X) Y at the local solution X using pointwise functions specified by the user.
5741*8e3a2eefSMatthew G. Knepley 
5742*8e3a2eefSMatthew G. Knepley   Input Parameters:
5743*8e3a2eefSMatthew G. Knepley + dm - The mesh
5744*8e3a2eefSMatthew G. Knepley . key - The PetscWeakFormKey indcating where integration should happen
5745*8e3a2eefSMatthew G. Knepley . cellIS -
5746*8e3a2eefSMatthew G. Knepley . t  - The time
5747*8e3a2eefSMatthew G. Knepley . X_tShift - The multiplier for the Jacobian with repsect to X_t
5748*8e3a2eefSMatthew G. Knepley . X  - Local solution vector
5749*8e3a2eefSMatthew G. Knepley . X_t  - Time-derivative of the local solution vector
5750*8e3a2eefSMatthew G. Knepley . Y  - Local input vector
5751*8e3a2eefSMatthew G. Knepley - user - The user context
5752*8e3a2eefSMatthew G. Knepley 
5753*8e3a2eefSMatthew G. Knepley   Output Parameter:
5754*8e3a2eefSMatthew G. Knepley . Z - Local output vector
5755*8e3a2eefSMatthew G. Knepley 
5756*8e3a2eefSMatthew G. Knepley   Note:
5757*8e3a2eefSMatthew G. Knepley   We form the residual one batch of elements at a time. This allows us to offload work onto an accelerator,
5758*8e3a2eefSMatthew G. Knepley   like a GPU, or vectorize on a multicore machine.
5759*8e3a2eefSMatthew G. Knepley 
5760*8e3a2eefSMatthew G. Knepley   Level: developer
5761*8e3a2eefSMatthew G. Knepley 
5762*8e3a2eefSMatthew G. Knepley .seealso: FormFunctionLocal()
5763*8e3a2eefSMatthew G. Knepley */
5764*8e3a2eefSMatthew G. Knepley PetscErrorCode DMPlexComputeJacobian_Action_Internal(DM dm, PetscHashFormKey key, IS cellIS, PetscReal t, PetscReal X_tShift, Vec X, Vec X_t, Vec Y, Vec Z, void *user)
5765*8e3a2eefSMatthew G. Knepley {
5766*8e3a2eefSMatthew G. Knepley   DM_Plex        *mesh  = (DM_Plex *) dm->data;
5767*8e3a2eefSMatthew G. Knepley   const char     *name  = "Jacobian";
5768*8e3a2eefSMatthew G. Knepley   DM              dmAux = NULL, plex, plexAux = NULL;
5769*8e3a2eefSMatthew G. Knepley   DMEnclosureType encAux;
5770*8e3a2eefSMatthew G. Knepley   Vec             A;
5771*8e3a2eefSMatthew G. Knepley   DMField         coordField;
5772*8e3a2eefSMatthew G. Knepley   PetscDS         prob, probAux = NULL;
5773*8e3a2eefSMatthew G. Knepley   PetscQuadrature quad;
5774*8e3a2eefSMatthew G. Knepley   PetscSection    section, globalSection, sectionAux;
5775*8e3a2eefSMatthew G. Knepley   PetscScalar    *elemMat, *elemMatD, *u, *u_t, *a = NULL, *y, *z;
5776*8e3a2eefSMatthew G. Knepley   const PetscInt *cells;
5777*8e3a2eefSMatthew G. Knepley   PetscInt        Nf, fieldI, fieldJ;
5778*8e3a2eefSMatthew G. Knepley   PetscInt        totDim, totDimAux = 0, cStart, cEnd, numCells, c;
5779*8e3a2eefSMatthew G. Knepley   PetscBool       hasDyn;
5780*8e3a2eefSMatthew G. Knepley   PetscErrorCode  ierr;
5781*8e3a2eefSMatthew G. Knepley 
5782*8e3a2eefSMatthew G. Knepley   PetscFunctionBegin;
5783*8e3a2eefSMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
5784*8e3a2eefSMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
5785*8e3a2eefSMatthew G. Knepley   if (!cellIS) {
5786*8e3a2eefSMatthew G. Knepley     PetscInt depth;
5787*8e3a2eefSMatthew G. Knepley 
5788*8e3a2eefSMatthew G. Knepley     ierr = DMPlexGetDepth(plex, &depth);CHKERRQ(ierr);
5789*8e3a2eefSMatthew G. Knepley     ierr = DMGetStratumIS(plex, "dim", depth, &cellIS);CHKERRQ(ierr);
5790*8e3a2eefSMatthew G. Knepley     if (!cellIS) {ierr = DMGetStratumIS(plex, "depth", depth, &cellIS);CHKERRQ(ierr);}
5791*8e3a2eefSMatthew G. Knepley   } else {
5792*8e3a2eefSMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) cellIS);CHKERRQ(ierr);
5793*8e3a2eefSMatthew G. Knepley   }
5794*8e3a2eefSMatthew G. Knepley   ierr = ISGetLocalSize(cellIS, &numCells);CHKERRQ(ierr);
5795*8e3a2eefSMatthew G. Knepley   ierr = ISGetPointRange(cellIS, &cStart, &cEnd, &cells);CHKERRQ(ierr);
5796*8e3a2eefSMatthew G. Knepley   ierr = DMGetLocalSection(dm, &section);CHKERRQ(ierr);
5797*8e3a2eefSMatthew G. Knepley   ierr = DMGetGlobalSection(dm, &globalSection);CHKERRQ(ierr);
5798*8e3a2eefSMatthew G. Knepley   ierr = DMGetCellDS(dm, cells ? cells[cStart] : cStart, &prob);CHKERRQ(ierr);
5799*8e3a2eefSMatthew G. Knepley   ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr);
5800*8e3a2eefSMatthew G. Knepley   ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr);
5801*8e3a2eefSMatthew G. Knepley   ierr = PetscDSHasDynamicJacobian(prob, &hasDyn);CHKERRQ(ierr);
5802*8e3a2eefSMatthew G. Knepley   hasDyn = hasDyn && (X_tShift != 0.0) ? PETSC_TRUE : PETSC_FALSE;
5803*8e3a2eefSMatthew G. Knepley   ierr = DMGetAuxiliaryVec(dm, NULL, 0, &A);CHKERRQ(ierr);
5804*8e3a2eefSMatthew G. Knepley   if (A) {
5805*8e3a2eefSMatthew G. Knepley     ierr = VecGetDM(A, &dmAux);CHKERRQ(ierr);
5806*8e3a2eefSMatthew G. Knepley     ierr = DMGetEnclosureRelation(dmAux, dm, &encAux);CHKERRQ(ierr);
5807*8e3a2eefSMatthew G. Knepley     ierr = DMConvert(dmAux, DMPLEX, &plexAux);CHKERRQ(ierr);
5808*8e3a2eefSMatthew G. Knepley     ierr = DMGetLocalSection(plexAux, &sectionAux);CHKERRQ(ierr);
5809*8e3a2eefSMatthew G. Knepley     ierr = DMGetDS(dmAux, &probAux);CHKERRQ(ierr);
5810*8e3a2eefSMatthew G. Knepley     ierr = PetscDSGetTotalDimension(probAux, &totDimAux);CHKERRQ(ierr);
5811*8e3a2eefSMatthew G. Knepley   }
5812*8e3a2eefSMatthew G. Knepley   ierr = VecSet(Z, 0.0);CHKERRQ(ierr);
5813*8e3a2eefSMatthew G. Knepley   ierr = PetscMalloc6(numCells*totDim,&u,X_t ? numCells*totDim : 0,&u_t,numCells*totDim*totDim,&elemMat,hasDyn ? numCells*totDim*totDim : 0, &elemMatD,numCells*totDim,&y,totDim,&z);CHKERRQ(ierr);
5814*8e3a2eefSMatthew G. Knepley   if (dmAux) {ierr = PetscMalloc1(numCells*totDimAux, &a);CHKERRQ(ierr);}
5815*8e3a2eefSMatthew G. Knepley   ierr = DMGetCoordinateField(dm, &coordField);CHKERRQ(ierr);
5816*8e3a2eefSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
5817*8e3a2eefSMatthew G. Knepley     const PetscInt cell = cells ? cells[c] : c;
5818*8e3a2eefSMatthew G. Knepley     const PetscInt cind = c - cStart;
5819*8e3a2eefSMatthew G. Knepley     PetscScalar   *x = NULL,  *x_t = NULL;
5820*8e3a2eefSMatthew G. Knepley     PetscInt       i;
5821*8e3a2eefSMatthew G. Knepley 
5822*8e3a2eefSMatthew G. Knepley     ierr = DMPlexVecGetClosure(plex, section, X, cell, NULL, &x);CHKERRQ(ierr);
5823*8e3a2eefSMatthew G. Knepley     for (i = 0; i < totDim; ++i) u[cind*totDim+i] = x[i];
5824*8e3a2eefSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(plex, section, X, cell, NULL, &x);CHKERRQ(ierr);
5825*8e3a2eefSMatthew G. Knepley     if (X_t) {
5826*8e3a2eefSMatthew G. Knepley       ierr = DMPlexVecGetClosure(plex, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
5827*8e3a2eefSMatthew G. Knepley       for (i = 0; i < totDim; ++i) u_t[cind*totDim+i] = x_t[i];
5828*8e3a2eefSMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plex, section, X_t, cell, NULL, &x_t);CHKERRQ(ierr);
5829*8e3a2eefSMatthew G. Knepley     }
5830*8e3a2eefSMatthew G. Knepley     if (dmAux) {
5831*8e3a2eefSMatthew G. Knepley       PetscInt subcell;
5832*8e3a2eefSMatthew G. Knepley       ierr = DMGetEnclosurePoint(dmAux, dm, encAux, cell, &subcell);CHKERRQ(ierr);
5833*8e3a2eefSMatthew G. Knepley       ierr = DMPlexVecGetClosure(plexAux, sectionAux, A, subcell, NULL, &x);CHKERRQ(ierr);
5834*8e3a2eefSMatthew G. Knepley       for (i = 0; i < totDimAux; ++i) a[cind*totDimAux+i] = x[i];
5835*8e3a2eefSMatthew G. Knepley       ierr = DMPlexVecRestoreClosure(plexAux, sectionAux, A, subcell, NULL, &x);CHKERRQ(ierr);
5836*8e3a2eefSMatthew G. Knepley     }
5837*8e3a2eefSMatthew G. Knepley     ierr = DMPlexVecGetClosure(plex, section, Y, cell, NULL, &x);CHKERRQ(ierr);
5838*8e3a2eefSMatthew G. Knepley     for (i = 0; i < totDim; ++i) y[cind*totDim+i] = x[i];
5839*8e3a2eefSMatthew G. Knepley     ierr = DMPlexVecRestoreClosure(plex, section, Y, cell, NULL, &x);CHKERRQ(ierr);
5840*8e3a2eefSMatthew G. Knepley   }
5841*8e3a2eefSMatthew G. Knepley   ierr = PetscArrayzero(elemMat, numCells*totDim*totDim);CHKERRQ(ierr);
5842*8e3a2eefSMatthew G. Knepley   if (hasDyn)  {ierr = PetscArrayzero(elemMatD, numCells*totDim*totDim);CHKERRQ(ierr);}
5843*8e3a2eefSMatthew G. Knepley   for (fieldI = 0; fieldI < Nf; ++fieldI) {
5844*8e3a2eefSMatthew G. Knepley     PetscFE  fe;
5845*8e3a2eefSMatthew G. Knepley     PetscInt Nb;
5846*8e3a2eefSMatthew G. Knepley     /* Conforming batches */
5847*8e3a2eefSMatthew G. Knepley     PetscInt numChunks, numBatches, numBlocks, Ne, blockSize, batchSize;
5848*8e3a2eefSMatthew G. Knepley     /* Remainder */
5849*8e3a2eefSMatthew G. Knepley     PetscInt Nr, offset, Nq;
5850*8e3a2eefSMatthew G. Knepley     PetscQuadrature qGeom = NULL;
5851*8e3a2eefSMatthew G. Knepley     PetscInt    maxDegree;
5852*8e3a2eefSMatthew G. Knepley     PetscFEGeom *cgeomFEM, *chunkGeom = NULL, *remGeom = NULL;
5853*8e3a2eefSMatthew G. Knepley 
5854*8e3a2eefSMatthew G. Knepley     ierr = PetscDSGetDiscretization(prob, fieldI, (PetscObject *) &fe);CHKERRQ(ierr);
5855*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGetQuadrature(fe, &quad);CHKERRQ(ierr);
5856*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGetDimension(fe, &Nb);CHKERRQ(ierr);
5857*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGetTileSizes(fe, NULL, &numBlocks, NULL, &numBatches);CHKERRQ(ierr);
5858*8e3a2eefSMatthew G. Knepley     ierr = DMFieldGetDegree(coordField,cellIS,NULL,&maxDegree);CHKERRQ(ierr);
5859*8e3a2eefSMatthew G. Knepley     if (maxDegree <= 1) {ierr = DMFieldCreateDefaultQuadrature(coordField,cellIS,&qGeom);CHKERRQ(ierr);}
5860*8e3a2eefSMatthew G. Knepley     if (!qGeom) {
5861*8e3a2eefSMatthew G. Knepley       ierr = PetscFEGetQuadrature(fe,&qGeom);CHKERRQ(ierr);
5862*8e3a2eefSMatthew G. Knepley       ierr = PetscObjectReference((PetscObject)qGeom);CHKERRQ(ierr);
5863*8e3a2eefSMatthew G. Knepley     }
5864*8e3a2eefSMatthew G. Knepley     ierr = PetscQuadratureGetData(qGeom, NULL, NULL, &Nq, NULL, NULL);CHKERRQ(ierr);
5865*8e3a2eefSMatthew G. Knepley     ierr = DMSNESGetFEGeom(coordField,cellIS,qGeom,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
5866*8e3a2eefSMatthew G. Knepley     blockSize = Nb;
5867*8e3a2eefSMatthew G. Knepley     batchSize = numBlocks * blockSize;
5868*8e3a2eefSMatthew G. Knepley     ierr = PetscFESetTileSizes(fe, blockSize, numBlocks, batchSize, numBatches);CHKERRQ(ierr);
5869*8e3a2eefSMatthew G. Knepley     numChunks = numCells / (numBatches*batchSize);
5870*8e3a2eefSMatthew G. Knepley     Ne        = numChunks*numBatches*batchSize;
5871*8e3a2eefSMatthew G. Knepley     Nr        = numCells % (numBatches*batchSize);
5872*8e3a2eefSMatthew G. Knepley     offset    = numCells - Nr;
5873*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGeomGetChunk(cgeomFEM,0,offset,&chunkGeom);CHKERRQ(ierr);
5874*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGeomGetChunk(cgeomFEM,offset,numCells,&remGeom);CHKERRQ(ierr);
5875*8e3a2eefSMatthew G. Knepley     for (fieldJ = 0; fieldJ < Nf; ++fieldJ) {
5876*8e3a2eefSMatthew G. Knepley       key.field = fieldI*Nf + fieldJ;
5877*8e3a2eefSMatthew G. Knepley       ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMat);CHKERRQ(ierr);
5878*8e3a2eefSMatthew G. Knepley       ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN, key, Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, X_tShift, &elemMat[offset*totDim*totDim]);CHKERRQ(ierr);
5879*8e3a2eefSMatthew G. Knepley       if (hasDyn) {
5880*8e3a2eefSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_DYN, key, Ne, chunkGeom, u, u_t, probAux, a, t, X_tShift, elemMatD);CHKERRQ(ierr);
5881*8e3a2eefSMatthew G. Knepley         ierr = PetscFEIntegrateJacobian(prob, PETSCFE_JACOBIAN_DYN, key, Nr, remGeom, &u[offset*totDim], u_t ? &u_t[offset*totDim] : NULL, probAux, &a[offset*totDimAux], t, X_tShift, &elemMatD[offset*totDim*totDim]);CHKERRQ(ierr);
5882*8e3a2eefSMatthew G. Knepley       }
5883*8e3a2eefSMatthew G. Knepley     }
5884*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGeomRestoreChunk(cgeomFEM,offset,numCells,&remGeom);CHKERRQ(ierr);
5885*8e3a2eefSMatthew G. Knepley     ierr = PetscFEGeomRestoreChunk(cgeomFEM,0,offset,&chunkGeom);CHKERRQ(ierr);
5886*8e3a2eefSMatthew G. Knepley     ierr = DMSNESRestoreFEGeom(coordField,cellIS,qGeom,PETSC_FALSE,&cgeomFEM);CHKERRQ(ierr);
5887*8e3a2eefSMatthew G. Knepley     ierr = PetscQuadratureDestroy(&qGeom);CHKERRQ(ierr);
5888*8e3a2eefSMatthew G. Knepley   }
5889*8e3a2eefSMatthew G. Knepley   if (hasDyn) {
5890*8e3a2eefSMatthew G. Knepley     for (c = 0; c < numCells*totDim*totDim; ++c) elemMat[c] += X_tShift*elemMatD[c];
5891*8e3a2eefSMatthew G. Knepley   }
5892*8e3a2eefSMatthew G. Knepley   for (c = cStart; c < cEnd; ++c) {
5893*8e3a2eefSMatthew G. Knepley     const PetscInt     cell = cells ? cells[c] : c;
5894*8e3a2eefSMatthew G. Knepley     const PetscInt     cind = c - cStart;
5895*8e3a2eefSMatthew G. Knepley     const PetscBLASInt M = totDim, one = 1;
5896*8e3a2eefSMatthew G. Knepley     const PetscScalar  a = 1.0, b = 0.0;
5897*8e3a2eefSMatthew G. Knepley 
5898*8e3a2eefSMatthew G. Knepley     PetscStackCallBLAS("BLASgemv", BLASgemv_("N", &M, &M, &a, &elemMat[cind*totDim*totDim], &M, &y[cind*totDim], &one, &b, z, &one));
5899*8e3a2eefSMatthew G. Knepley     if (mesh->printFEM > 1) {
5900*8e3a2eefSMatthew G. Knepley       ierr = DMPrintCellMatrix(c, name, totDim, totDim, &elemMat[cind*totDim*totDim]);CHKERRQ(ierr);
5901*8e3a2eefSMatthew G. Knepley       ierr = DMPrintCellVector(c, "Y",  totDim, &y[cind*totDim]);CHKERRQ(ierr);
5902*8e3a2eefSMatthew G. Knepley       ierr = DMPrintCellVector(c, "Z",  totDim, z);CHKERRQ(ierr);
5903*8e3a2eefSMatthew G. Knepley     }
5904*8e3a2eefSMatthew G. Knepley     ierr = DMPlexVecSetClosure(dm, section, Z, cell, z, ADD_VALUES);CHKERRQ(ierr);
5905*8e3a2eefSMatthew G. Knepley   }
5906*8e3a2eefSMatthew G. Knepley   ierr = PetscFree6(u,u_t,elemMat,elemMatD,y,z);CHKERRQ(ierr);
5907*8e3a2eefSMatthew G. Knepley   if (mesh->printFEM) {
5908*8e3a2eefSMatthew G. Knepley     ierr = PetscPrintf(PetscObjectComm((PetscObject)Z), "Z:\n");CHKERRQ(ierr);
5909*8e3a2eefSMatthew G. Knepley     ierr = VecView(Z, NULL);CHKERRQ(ierr);
5910*8e3a2eefSMatthew G. Knepley   }
5911*8e3a2eefSMatthew G. Knepley   ierr = PetscFree(a);CHKERRQ(ierr);
5912*8e3a2eefSMatthew G. Knepley   ierr = ISDestroy(&cellIS);CHKERRQ(ierr);
5913*8e3a2eefSMatthew G. Knepley   ierr = DMDestroy(&plexAux);CHKERRQ(ierr);
5914*8e3a2eefSMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
5915*8e3a2eefSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_JacobianFEM,dm,0,0,0);CHKERRQ(ierr);
5916*8e3a2eefSMatthew G. Knepley   PetscFunctionReturn(0);
5917*8e3a2eefSMatthew G. Knepley }
5918