xref: /petsc/src/dm/dt/interface/dt.c (revision 0bfcf5a500b4ee297dabdee5a2f1b1964531a9e0)
137045ce4SJed Brown /* Discretization tools */
237045ce4SJed Brown 
3a6fc04d9SSatish Balay #include <petscconf.h>
4a6fc04d9SSatish Balay #if defined(PETSC_HAVE_MATHIMF_H)
5a6fc04d9SSatish Balay #include <mathimf.h>           /* this needs to be included before math.h */
6a6fc04d9SSatish Balay #endif
7a6fc04d9SSatish Balay 
80c35b76eSJed Brown #include <petscdt.h>            /*I "petscdt.h" I*/
937045ce4SJed Brown #include <petscblaslapack.h>
10194825f6SJed Brown #include <petsc-private/petscimpl.h>
1121454ff5SMatthew G. Knepley #include <petsc-private/dtimpl.h>
12665c2dedSJed Brown #include <petscviewer.h>
1359804f93SMatthew G. Knepley #include <petscdmplex.h>
1459804f93SMatthew G. Knepley #include <petscdmshell.h>
1537045ce4SJed Brown 
16*0bfcf5a5SMatthew G. Knepley static PetscBool GaussCite       = PETSC_FALSE;
17*0bfcf5a5SMatthew G. Knepley const char       GaussCitation[] = "@article{GolubWelsch1969,\n"
18*0bfcf5a5SMatthew G. Knepley                                    "  author  = {Golub and Welsch},\n"
19*0bfcf5a5SMatthew G. Knepley                                    "  title   = {Calculation of Quadrature Rules},\n"
20*0bfcf5a5SMatthew G. Knepley                                    "  journal = {Math. Comp.},\n"
21*0bfcf5a5SMatthew G. Knepley                                    "  volume  = {23},\n"
22*0bfcf5a5SMatthew G. Knepley                                    "  number  = {106},\n"
23*0bfcf5a5SMatthew G. Knepley                                    "  pages   = {221--230},\n"
24*0bfcf5a5SMatthew G. Knepley                                    "  year    = {1969}\n}\n";
25*0bfcf5a5SMatthew G. Knepley 
2637045ce4SJed Brown #undef __FUNCT__
2721454ff5SMatthew G. Knepley #define __FUNCT__ "PetscQuadratureCreate"
2821454ff5SMatthew G. Knepley PetscErrorCode PetscQuadratureCreate(MPI_Comm comm, PetscQuadrature *q)
2921454ff5SMatthew G. Knepley {
3021454ff5SMatthew G. Knepley   PetscErrorCode ierr;
3121454ff5SMatthew G. Knepley 
3221454ff5SMatthew G. Knepley   PetscFunctionBegin;
3321454ff5SMatthew G. Knepley   PetscValidPointer(q, 2);
3421454ff5SMatthew G. Knepley   ierr = DMInitializePackage();CHKERRQ(ierr);
3521454ff5SMatthew G. Knepley   ierr = PetscHeaderCreate(*q,_p_PetscQuadrature,int,PETSC_OBJECT_CLASSID,"PetscQuadrature","Quadrature","DT",comm,PetscQuadratureDestroy,PetscQuadratureView);CHKERRQ(ierr);
3621454ff5SMatthew G. Knepley   (*q)->dim       = -1;
3721454ff5SMatthew G. Knepley   (*q)->numPoints = 0;
3821454ff5SMatthew G. Knepley   (*q)->points    = NULL;
3921454ff5SMatthew G. Knepley   (*q)->weights   = NULL;
4021454ff5SMatthew G. Knepley   PetscFunctionReturn(0);
4121454ff5SMatthew G. Knepley }
4221454ff5SMatthew G. Knepley 
4321454ff5SMatthew G. Knepley #undef __FUNCT__
44bfa639d9SMatthew G. Knepley #define __FUNCT__ "PetscQuadratureDestroy"
45bfa639d9SMatthew G. Knepley PetscErrorCode PetscQuadratureDestroy(PetscQuadrature *q)
46bfa639d9SMatthew G. Knepley {
47bfa639d9SMatthew G. Knepley   PetscErrorCode ierr;
48bfa639d9SMatthew G. Knepley 
49bfa639d9SMatthew G. Knepley   PetscFunctionBegin;
5021454ff5SMatthew G. Knepley   if (!*q) PetscFunctionReturn(0);
5121454ff5SMatthew G. Knepley   PetscValidHeaderSpecific((*q),PETSC_OBJECT_CLASSID,1);
5221454ff5SMatthew G. Knepley   if (--((PetscObject)(*q))->refct > 0) {
5321454ff5SMatthew G. Knepley     *q = NULL;
5421454ff5SMatthew G. Knepley     PetscFunctionReturn(0);
5521454ff5SMatthew G. Knepley   }
5621454ff5SMatthew G. Knepley   ierr = PetscFree((*q)->points);CHKERRQ(ierr);
5721454ff5SMatthew G. Knepley   ierr = PetscFree((*q)->weights);CHKERRQ(ierr);
5821454ff5SMatthew G. Knepley   ierr = PetscHeaderDestroy(q);CHKERRQ(ierr);
5921454ff5SMatthew G. Knepley   PetscFunctionReturn(0);
6021454ff5SMatthew G. Knepley }
6121454ff5SMatthew G. Knepley 
6221454ff5SMatthew G. Knepley #undef __FUNCT__
6321454ff5SMatthew G. Knepley #define __FUNCT__ "PetscQuadratureGetData"
6421454ff5SMatthew G. Knepley PetscErrorCode PetscQuadratureGetData(PetscQuadrature q, PetscInt *dim, PetscInt *npoints, const PetscReal *points[], const PetscReal *weights[])
6521454ff5SMatthew G. Knepley {
6621454ff5SMatthew G. Knepley   PetscFunctionBegin;
6721454ff5SMatthew G. Knepley   PetscValidHeaderSpecific(q, PETSC_OBJECT_CLASSID, 1);
6821454ff5SMatthew G. Knepley   if (dim) {
6921454ff5SMatthew G. Knepley     PetscValidPointer(dim, 2);
7021454ff5SMatthew G. Knepley     *dim = q->dim;
7121454ff5SMatthew G. Knepley   }
7221454ff5SMatthew G. Knepley   if (npoints) {
7321454ff5SMatthew G. Knepley     PetscValidPointer(npoints, 3);
7421454ff5SMatthew G. Knepley     *npoints = q->numPoints;
7521454ff5SMatthew G. Knepley   }
7621454ff5SMatthew G. Knepley   if (points) {
7721454ff5SMatthew G. Knepley     PetscValidPointer(points, 4);
7821454ff5SMatthew G. Knepley     *points = q->points;
7921454ff5SMatthew G. Knepley   }
8021454ff5SMatthew G. Knepley   if (weights) {
8121454ff5SMatthew G. Knepley     PetscValidPointer(weights, 5);
8221454ff5SMatthew G. Knepley     *weights = q->weights;
8321454ff5SMatthew G. Knepley   }
8421454ff5SMatthew G. Knepley   PetscFunctionReturn(0);
8521454ff5SMatthew G. Knepley }
8621454ff5SMatthew G. Knepley 
8721454ff5SMatthew G. Knepley #undef __FUNCT__
8821454ff5SMatthew G. Knepley #define __FUNCT__ "PetscQuadratureSetData"
8921454ff5SMatthew G. Knepley PetscErrorCode PetscQuadratureSetData(PetscQuadrature q, PetscInt dim, PetscInt npoints, const PetscReal points[], const PetscReal weights[])
9021454ff5SMatthew G. Knepley {
9121454ff5SMatthew G. Knepley   PetscFunctionBegin;
9221454ff5SMatthew G. Knepley   PetscValidHeaderSpecific(q, PETSC_OBJECT_CLASSID, 1);
9321454ff5SMatthew G. Knepley   if (dim >= 0)     q->dim       = dim;
9421454ff5SMatthew G. Knepley   if (npoints >= 0) q->numPoints = npoints;
9521454ff5SMatthew G. Knepley   if (points) {
9621454ff5SMatthew G. Knepley     PetscValidPointer(points, 4);
9721454ff5SMatthew G. Knepley     q->points = points;
9821454ff5SMatthew G. Knepley   }
9921454ff5SMatthew G. Knepley   if (weights) {
10021454ff5SMatthew G. Knepley     PetscValidPointer(weights, 5);
10121454ff5SMatthew G. Knepley     q->weights = weights;
10221454ff5SMatthew G. Knepley   }
103f9fd7fdbSMatthew G. Knepley   PetscFunctionReturn(0);
104f9fd7fdbSMatthew G. Knepley }
105f9fd7fdbSMatthew G. Knepley 
106f9fd7fdbSMatthew G. Knepley #undef __FUNCT__
107f9fd7fdbSMatthew G. Knepley #define __FUNCT__ "PetscQuadratureView"
108f9fd7fdbSMatthew G. Knepley PetscErrorCode PetscQuadratureView(PetscQuadrature quad, PetscViewer viewer)
109f9fd7fdbSMatthew G. Knepley {
110f9fd7fdbSMatthew G. Knepley   PetscInt       q, d;
111f9fd7fdbSMatthew G. Knepley   PetscErrorCode ierr;
112f9fd7fdbSMatthew G. Knepley 
113f9fd7fdbSMatthew G. Knepley   PetscFunctionBegin;
11421454ff5SMatthew G. Knepley   ierr = PetscViewerASCIIPrintf(viewer, "Quadrature on %d points\n  (", quad->numPoints);CHKERRQ(ierr);
11521454ff5SMatthew G. Knepley   for (q = 0; q < quad->numPoints; ++q) {
11621454ff5SMatthew G. Knepley     for (d = 0; d < quad->dim; ++d) {
117f9fd7fdbSMatthew G. Knepley       if (d) ierr = PetscViewerASCIIPrintf(viewer, ", ");CHKERRQ(ierr);
118ab15ae43SMatthew G. Knepley       ierr = PetscViewerASCIIPrintf(viewer, "%g\n", (double)quad->points[q*quad->dim+d]);CHKERRQ(ierr);
119f9fd7fdbSMatthew G. Knepley     }
120ab15ae43SMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, ") %g\n", (double)quad->weights[q]);CHKERRQ(ierr);
121f9fd7fdbSMatthew G. Knepley   }
122bfa639d9SMatthew G. Knepley   PetscFunctionReturn(0);
123bfa639d9SMatthew G. Knepley }
124bfa639d9SMatthew G. Knepley 
125bfa639d9SMatthew G. Knepley #undef __FUNCT__
12637045ce4SJed Brown #define __FUNCT__ "PetscDTLegendreEval"
12737045ce4SJed Brown /*@
12837045ce4SJed Brown    PetscDTLegendreEval - evaluate Legendre polynomial at points
12937045ce4SJed Brown 
13037045ce4SJed Brown    Not Collective
13137045ce4SJed Brown 
13237045ce4SJed Brown    Input Arguments:
13337045ce4SJed Brown +  npoints - number of spatial points to evaluate at
13437045ce4SJed Brown .  points - array of locations to evaluate at
13537045ce4SJed Brown .  ndegree - number of basis degrees to evaluate
13637045ce4SJed Brown -  degrees - sorted array of degrees to evaluate
13737045ce4SJed Brown 
13837045ce4SJed Brown    Output Arguments:
1390298fd71SBarry Smith +  B - row-oriented basis evaluation matrix B[point*ndegree + degree] (dimension npoints*ndegrees, allocated by caller) (or NULL)
1400298fd71SBarry Smith .  D - row-oriented derivative evaluation matrix (or NULL)
1410298fd71SBarry Smith -  D2 - row-oriented second derivative evaluation matrix (or NULL)
14237045ce4SJed Brown 
14337045ce4SJed Brown    Level: intermediate
14437045ce4SJed Brown 
14537045ce4SJed Brown .seealso: PetscDTGaussQuadrature()
14637045ce4SJed Brown @*/
14737045ce4SJed Brown PetscErrorCode PetscDTLegendreEval(PetscInt npoints,const PetscReal *points,PetscInt ndegree,const PetscInt *degrees,PetscReal *B,PetscReal *D,PetscReal *D2)
14837045ce4SJed Brown {
14937045ce4SJed Brown   PetscInt i,maxdegree;
15037045ce4SJed Brown 
15137045ce4SJed Brown   PetscFunctionBegin;
15237045ce4SJed Brown   if (!npoints || !ndegree) PetscFunctionReturn(0);
15337045ce4SJed Brown   maxdegree = degrees[ndegree-1];
15437045ce4SJed Brown   for (i=0; i<npoints; i++) {
15537045ce4SJed Brown     PetscReal pm1,pm2,pd1,pd2,pdd1,pdd2,x;
15637045ce4SJed Brown     PetscInt  j,k;
15737045ce4SJed Brown     x    = points[i];
15837045ce4SJed Brown     pm2  = 0;
15937045ce4SJed Brown     pm1  = 1;
16037045ce4SJed Brown     pd2  = 0;
16137045ce4SJed Brown     pd1  = 0;
16237045ce4SJed Brown     pdd2 = 0;
16337045ce4SJed Brown     pdd1 = 0;
16437045ce4SJed Brown     k    = 0;
16537045ce4SJed Brown     if (degrees[k] == 0) {
16637045ce4SJed Brown       if (B) B[i*ndegree+k] = pm1;
16737045ce4SJed Brown       if (D) D[i*ndegree+k] = pd1;
16837045ce4SJed Brown       if (D2) D2[i*ndegree+k] = pdd1;
16937045ce4SJed Brown       k++;
17037045ce4SJed Brown     }
17137045ce4SJed Brown     for (j=1; j<=maxdegree; j++,k++) {
17237045ce4SJed Brown       PetscReal p,d,dd;
17337045ce4SJed Brown       p    = ((2*j-1)*x*pm1 - (j-1)*pm2)/j;
17437045ce4SJed Brown       d    = pd2 + (2*j-1)*pm1;
17537045ce4SJed Brown       dd   = pdd2 + (2*j-1)*pd1;
17637045ce4SJed Brown       pm2  = pm1;
17737045ce4SJed Brown       pm1  = p;
17837045ce4SJed Brown       pd2  = pd1;
17937045ce4SJed Brown       pd1  = d;
18037045ce4SJed Brown       pdd2 = pdd1;
18137045ce4SJed Brown       pdd1 = dd;
18237045ce4SJed Brown       if (degrees[k] == j) {
18337045ce4SJed Brown         if (B) B[i*ndegree+k] = p;
18437045ce4SJed Brown         if (D) D[i*ndegree+k] = d;
18537045ce4SJed Brown         if (D2) D2[i*ndegree+k] = dd;
18637045ce4SJed Brown       }
18737045ce4SJed Brown     }
18837045ce4SJed Brown   }
18937045ce4SJed Brown   PetscFunctionReturn(0);
19037045ce4SJed Brown }
19137045ce4SJed Brown 
19237045ce4SJed Brown #undef __FUNCT__
19337045ce4SJed Brown #define __FUNCT__ "PetscDTGaussQuadrature"
19437045ce4SJed Brown /*@
19537045ce4SJed Brown    PetscDTGaussQuadrature - create Gauss quadrature
19637045ce4SJed Brown 
19737045ce4SJed Brown    Not Collective
19837045ce4SJed Brown 
19937045ce4SJed Brown    Input Arguments:
20037045ce4SJed Brown +  npoints - number of points
20137045ce4SJed Brown .  a - left end of interval (often-1)
20237045ce4SJed Brown -  b - right end of interval (often +1)
20337045ce4SJed Brown 
20437045ce4SJed Brown    Output Arguments:
20537045ce4SJed Brown +  x - quadrature points
20637045ce4SJed Brown -  w - quadrature weights
20737045ce4SJed Brown 
20837045ce4SJed Brown    Level: intermediate
20937045ce4SJed Brown 
21037045ce4SJed Brown    References:
21137045ce4SJed Brown    Golub and Welsch, Calculation of Quadrature Rules, Math. Comp. 23(106), 221--230, 1969.
21237045ce4SJed Brown 
21337045ce4SJed Brown .seealso: PetscDTLegendreEval()
21437045ce4SJed Brown @*/
21537045ce4SJed Brown PetscErrorCode PetscDTGaussQuadrature(PetscInt npoints,PetscReal a,PetscReal b,PetscReal *x,PetscReal *w)
21637045ce4SJed Brown {
21737045ce4SJed Brown   PetscErrorCode ierr;
21837045ce4SJed Brown   PetscInt       i;
21937045ce4SJed Brown   PetscReal      *work;
22037045ce4SJed Brown   PetscScalar    *Z;
22137045ce4SJed Brown   PetscBLASInt   N,LDZ,info;
22237045ce4SJed Brown 
22337045ce4SJed Brown   PetscFunctionBegin;
224*0bfcf5a5SMatthew G. Knepley   ierr = PetscCitationsRegister(GaussCitation, &GaussCite);CHKERRQ(ierr);
22537045ce4SJed Brown   /* Set up the Golub-Welsch system */
22637045ce4SJed Brown   for (i=0; i<npoints; i++) {
22737045ce4SJed Brown     x[i] = 0;                   /* diagonal is 0 */
22837045ce4SJed Brown     if (i) w[i-1] = 0.5 / PetscSqrtReal(1 - 1./PetscSqr(2*i));
22937045ce4SJed Brown   }
230dcca6d9dSJed Brown   ierr = PetscMalloc2(npoints*npoints,&Z,PetscMax(1,2*npoints-2),&work);CHKERRQ(ierr);
231c5df96a5SBarry Smith   ierr = PetscBLASIntCast(npoints,&N);CHKERRQ(ierr);
23237045ce4SJed Brown   LDZ  = N;
23337045ce4SJed Brown   ierr = PetscFPTrapPush(PETSC_FP_TRAP_OFF);CHKERRQ(ierr);
2348b83055fSJed Brown   PetscStackCallBLAS("LAPACKsteqr",LAPACKsteqr_("I",&N,x,w,Z,&LDZ,work,&info));
23537045ce4SJed Brown   ierr = PetscFPTrapPop();CHKERRQ(ierr);
2361c3d6f74SJed Brown   if (info) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"xSTEQR error");
23737045ce4SJed Brown 
23837045ce4SJed Brown   for (i=0; i<(npoints+1)/2; i++) {
23937045ce4SJed Brown     PetscReal y = 0.5 * (-x[i] + x[npoints-i-1]); /* enforces symmetry */
24037045ce4SJed Brown     x[i]           = (a+b)/2 - y*(b-a)/2;
24137045ce4SJed Brown     x[npoints-i-1] = (a+b)/2 + y*(b-a)/2;
2420d644c17SKarl Rupp 
24337045ce4SJed Brown     w[i] = w[npoints-1-i] = (b-a)*PetscSqr(0.5*PetscAbsScalar(Z[i*npoints] + Z[(npoints-i-1)*npoints]));
24437045ce4SJed Brown   }
24537045ce4SJed Brown   ierr = PetscFree2(Z,work);CHKERRQ(ierr);
24637045ce4SJed Brown   PetscFunctionReturn(0);
24737045ce4SJed Brown }
248194825f6SJed Brown 
249194825f6SJed Brown #undef __FUNCT__
250494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTFactorial_Internal"
251494e7359SMatthew G. Knepley /* Evaluates the nth jacobi polynomial with weight parameters a,b at a point x.
252494e7359SMatthew G. Knepley    Recurrence relations implemented from the pseudocode given in Karniadakis and Sherwin, Appendix B */
253494e7359SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode PetscDTFactorial_Internal(PetscInt n, PetscReal *factorial)
254494e7359SMatthew G. Knepley {
255494e7359SMatthew G. Knepley   PetscReal f = 1.0;
256494e7359SMatthew G. Knepley   PetscInt  i;
257494e7359SMatthew G. Knepley 
258494e7359SMatthew G. Knepley   PetscFunctionBegin;
259494e7359SMatthew G. Knepley   for (i = 1; i < n+1; ++i) f *= i;
260494e7359SMatthew G. Knepley   *factorial = f;
261494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
262494e7359SMatthew G. Knepley }
263494e7359SMatthew G. Knepley 
264494e7359SMatthew G. Knepley #undef __FUNCT__
265494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTComputeJacobi"
266494e7359SMatthew G. Knepley /* Evaluates the nth jacobi polynomial with weight parameters a,b at a point x.
267494e7359SMatthew G. Knepley    Recurrence relations implemented from the pseudocode given in Karniadakis and Sherwin, Appendix B */
268494e7359SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode PetscDTComputeJacobi(PetscReal a, PetscReal b, PetscInt n, PetscReal x, PetscReal *P)
269494e7359SMatthew G. Knepley {
270494e7359SMatthew G. Knepley   PetscReal apb, pn1, pn2;
271494e7359SMatthew G. Knepley   PetscInt  k;
272494e7359SMatthew G. Knepley 
273494e7359SMatthew G. Knepley   PetscFunctionBegin;
274494e7359SMatthew G. Knepley   if (!n) {*P = 1.0; PetscFunctionReturn(0);}
275494e7359SMatthew G. Knepley   if (n == 1) {*P = 0.5 * (a - b + (a + b + 2.0) * x); PetscFunctionReturn(0);}
276494e7359SMatthew G. Knepley   apb = a + b;
277494e7359SMatthew G. Knepley   pn2 = 1.0;
278494e7359SMatthew G. Knepley   pn1 = 0.5 * (a - b + (apb + 2.0) * x);
279494e7359SMatthew G. Knepley   *P  = 0.0;
280494e7359SMatthew G. Knepley   for (k = 2; k < n+1; ++k) {
281494e7359SMatthew G. Knepley     PetscReal a1 = 2.0 * k * (k + apb) * (2.0*k + apb - 2.0);
282494e7359SMatthew G. Knepley     PetscReal a2 = (2.0 * k + apb - 1.0) * (a*a - b*b);
283494e7359SMatthew G. Knepley     PetscReal a3 = (2.0 * k + apb - 2.0) * (2.0 * k + apb - 1.0) * (2.0 * k + apb);
284494e7359SMatthew G. Knepley     PetscReal a4 = 2.0 * (k + a - 1.0) * (k + b - 1.0) * (2.0 * k + apb);
285494e7359SMatthew G. Knepley 
286494e7359SMatthew G. Knepley     a2  = a2 / a1;
287494e7359SMatthew G. Knepley     a3  = a3 / a1;
288494e7359SMatthew G. Knepley     a4  = a4 / a1;
289494e7359SMatthew G. Knepley     *P  = (a2 + a3 * x) * pn1 - a4 * pn2;
290494e7359SMatthew G. Knepley     pn2 = pn1;
291494e7359SMatthew G. Knepley     pn1 = *P;
292494e7359SMatthew G. Knepley   }
293494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
294494e7359SMatthew G. Knepley }
295494e7359SMatthew G. Knepley 
296494e7359SMatthew G. Knepley #undef __FUNCT__
297494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTComputeJacobiDerivative"
298494e7359SMatthew G. Knepley /* Evaluates the first derivative of P_{n}^{a,b} at a point x. */
299494e7359SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode PetscDTComputeJacobiDerivative(PetscReal a, PetscReal b, PetscInt n, PetscReal x, PetscReal *P)
300494e7359SMatthew G. Knepley {
301494e7359SMatthew G. Knepley   PetscReal      nP;
302494e7359SMatthew G. Knepley   PetscErrorCode ierr;
303494e7359SMatthew G. Knepley 
304494e7359SMatthew G. Knepley   PetscFunctionBegin;
305494e7359SMatthew G. Knepley   if (!n) {*P = 0.0; PetscFunctionReturn(0);}
306494e7359SMatthew G. Knepley   ierr = PetscDTComputeJacobi(a+1, b+1, n-1, x, &nP);CHKERRQ(ierr);
307494e7359SMatthew G. Knepley   *P   = 0.5 * (a + b + n + 1) * nP;
308494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
309494e7359SMatthew G. Knepley }
310494e7359SMatthew G. Knepley 
311494e7359SMatthew G. Knepley #undef __FUNCT__
312494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTMapSquareToTriangle_Internal"
313494e7359SMatthew G. Knepley /* Maps from [-1,1]^2 to the (-1,1) reference triangle */
314494e7359SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode PetscDTMapSquareToTriangle_Internal(PetscReal x, PetscReal y, PetscReal *xi, PetscReal *eta)
315494e7359SMatthew G. Knepley {
316494e7359SMatthew G. Knepley   PetscFunctionBegin;
317494e7359SMatthew G. Knepley   *xi  = 0.5 * (1.0 + x) * (1.0 - y) - 1.0;
318494e7359SMatthew G. Knepley   *eta = y;
319494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
320494e7359SMatthew G. Knepley }
321494e7359SMatthew G. Knepley 
322494e7359SMatthew G. Knepley #undef __FUNCT__
323494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTMapCubeToTetrahedron_Internal"
324494e7359SMatthew G. Knepley /* Maps from [-1,1]^2 to the (-1,1) reference triangle */
325494e7359SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode PetscDTMapCubeToTetrahedron_Internal(PetscReal x, PetscReal y, PetscReal z, PetscReal *xi, PetscReal *eta, PetscReal *zeta)
326494e7359SMatthew G. Knepley {
327494e7359SMatthew G. Knepley   PetscFunctionBegin;
328494e7359SMatthew G. Knepley   *xi   = 0.25 * (1.0 + x) * (1.0 - y) * (1.0 - z) - 1.0;
329494e7359SMatthew G. Knepley   *eta  = 0.5  * (1.0 + y) * (1.0 - z) - 1.0;
330494e7359SMatthew G. Knepley   *zeta = z;
331494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
332494e7359SMatthew G. Knepley }
333494e7359SMatthew G. Knepley 
334494e7359SMatthew G. Knepley #undef __FUNCT__
335494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTGaussJacobiQuadrature1D_Internal"
336494e7359SMatthew G. Knepley static PetscErrorCode PetscDTGaussJacobiQuadrature1D_Internal(PetscInt npoints, PetscReal a, PetscReal b, PetscReal *x, PetscReal *w)
337494e7359SMatthew G. Knepley {
338494e7359SMatthew G. Knepley   PetscInt       maxIter = 100;
339494e7359SMatthew G. Knepley   PetscReal      eps     = 1.0e-8;
340a8291ba1SSatish Balay   PetscReal      a1, a2, a3, a4, a5, a6;
341494e7359SMatthew G. Knepley   PetscInt       k;
342494e7359SMatthew G. Knepley   PetscErrorCode ierr;
343494e7359SMatthew G. Knepley 
344494e7359SMatthew G. Knepley   PetscFunctionBegin;
345a8291ba1SSatish Balay 
3468b49ba18SBarry Smith   a1      = PetscPowReal(2.0, a+b+1);
347a8291ba1SSatish Balay #if defined(PETSC_HAVE_TGAMMA)
3480646a658SBarry Smith   a2      = PetscTGamma(a + npoints + 1);
3490646a658SBarry Smith   a3      = PetscTGamma(b + npoints + 1);
3500646a658SBarry Smith   a4      = PetscTGamma(a + b + npoints + 1);
351a8291ba1SSatish Balay #else
352a8291ba1SSatish Balay   SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"tgamma() - math routine is unavailable.");
353a8291ba1SSatish Balay #endif
354a8291ba1SSatish Balay 
355494e7359SMatthew G. Knepley   ierr = PetscDTFactorial_Internal(npoints, &a5);CHKERRQ(ierr);
356494e7359SMatthew G. Knepley   a6   = a1 * a2 * a3 / a4 / a5;
357494e7359SMatthew G. Knepley   /* Computes the m roots of P_{m}^{a,b} on [-1,1] by Newton's method with Chebyshev points as initial guesses.
358494e7359SMatthew G. Knepley    Algorithm implemented from the pseudocode given by Karniadakis and Sherwin and Python in FIAT */
359494e7359SMatthew G. Knepley   for (k = 0; k < npoints; ++k) {
3608b49ba18SBarry Smith     PetscReal r = -PetscCosReal((2.0*k + 1.0) * PETSC_PI / (2.0 * npoints)), dP;
361494e7359SMatthew G. Knepley     PetscInt  j;
362494e7359SMatthew G. Knepley 
363494e7359SMatthew G. Knepley     if (k > 0) r = 0.5 * (r + x[k-1]);
364494e7359SMatthew G. Knepley     for (j = 0; j < maxIter; ++j) {
365494e7359SMatthew G. Knepley       PetscReal s = 0.0, delta, f, fp;
366494e7359SMatthew G. Knepley       PetscInt  i;
367494e7359SMatthew G. Knepley 
368494e7359SMatthew G. Knepley       for (i = 0; i < k; ++i) s = s + 1.0 / (r - x[i]);
369494e7359SMatthew G. Knepley       ierr = PetscDTComputeJacobi(a, b, npoints, r, &f);CHKERRQ(ierr);
370494e7359SMatthew G. Knepley       ierr = PetscDTComputeJacobiDerivative(a, b, npoints, r, &fp);CHKERRQ(ierr);
371494e7359SMatthew G. Knepley       delta = f / (fp - f * s);
372494e7359SMatthew G. Knepley       r     = r - delta;
373001a771dSBarry Smith       if (PetscAbs(delta) < eps) break;
374494e7359SMatthew G. Knepley     }
375494e7359SMatthew G. Knepley     x[k] = r;
376494e7359SMatthew G. Knepley     ierr = PetscDTComputeJacobiDerivative(a, b, npoints, x[k], &dP);CHKERRQ(ierr);
377494e7359SMatthew G. Knepley     w[k] = a6 / (1.0 - PetscSqr(x[k])) / PetscSqr(dP);
378494e7359SMatthew G. Knepley   }
379494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
380494e7359SMatthew G. Knepley }
381494e7359SMatthew G. Knepley 
382494e7359SMatthew G. Knepley #undef __FUNCT__
383494e7359SMatthew G. Knepley #define __FUNCT__ "PetscDTGaussJacobiQuadrature"
384fd9d31fbSMatthew G. Knepley /*@C
385494e7359SMatthew G. Knepley   PetscDTGaussJacobiQuadrature - create Gauss-Jacobi quadrature for a simplex
386494e7359SMatthew G. Knepley 
387494e7359SMatthew G. Knepley   Not Collective
388494e7359SMatthew G. Knepley 
389494e7359SMatthew G. Knepley   Input Arguments:
390494e7359SMatthew G. Knepley + dim - The simplex dimension
391552aa4f7SMatthew G. Knepley . order - The quadrature order
392494e7359SMatthew G. Knepley . a - left end of interval (often-1)
393494e7359SMatthew G. Knepley - b - right end of interval (often +1)
394494e7359SMatthew G. Knepley 
395494e7359SMatthew G. Knepley   Output Arguments:
396552aa4f7SMatthew G. Knepley . q - A PetscQuadrature object
397494e7359SMatthew G. Knepley 
398494e7359SMatthew G. Knepley   Level: intermediate
399494e7359SMatthew G. Knepley 
400494e7359SMatthew G. Knepley   References:
401494e7359SMatthew G. Knepley   Karniadakis and Sherwin.
402494e7359SMatthew G. Knepley   FIAT
403494e7359SMatthew G. Knepley 
404494e7359SMatthew G. Knepley .seealso: PetscDTGaussQuadrature()
405494e7359SMatthew G. Knepley @*/
406552aa4f7SMatthew G. Knepley PetscErrorCode PetscDTGaussJacobiQuadrature(PetscInt dim, PetscInt order, PetscReal a, PetscReal b, PetscQuadrature *q)
407494e7359SMatthew G. Knepley {
408552aa4f7SMatthew G. Knepley   PetscInt       npoints = dim > 1 ? dim > 2 ? order*PetscSqr(order) : PetscSqr(order) : order;
409494e7359SMatthew G. Knepley   PetscReal     *px, *wx, *py, *wy, *pz, *wz, *x, *w;
410494e7359SMatthew G. Knepley   PetscInt       i, j, k;
411494e7359SMatthew G. Knepley   PetscErrorCode ierr;
412494e7359SMatthew G. Knepley 
413494e7359SMatthew G. Knepley   PetscFunctionBegin;
414494e7359SMatthew G. Knepley   if ((a != -1.0) || (b != 1.0)) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Must use default internal right now");
415785e854fSJed Brown   ierr = PetscMalloc1(npoints*dim, &x);CHKERRQ(ierr);
416785e854fSJed Brown   ierr = PetscMalloc1(npoints, &w);CHKERRQ(ierr);
417494e7359SMatthew G. Knepley   switch (dim) {
418707aa5c5SMatthew G. Knepley   case 0:
419707aa5c5SMatthew G. Knepley     ierr = PetscFree(x);CHKERRQ(ierr);
420707aa5c5SMatthew G. Knepley     ierr = PetscFree(w);CHKERRQ(ierr);
421785e854fSJed Brown     ierr = PetscMalloc1(1, &x);CHKERRQ(ierr);
422785e854fSJed Brown     ierr = PetscMalloc1(1, &w);CHKERRQ(ierr);
423707aa5c5SMatthew G. Knepley     x[0] = 0.0;
424707aa5c5SMatthew G. Knepley     w[0] = 1.0;
425707aa5c5SMatthew G. Knepley     break;
426494e7359SMatthew G. Knepley   case 1:
427552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 0.0, 0.0, x, w);CHKERRQ(ierr);
428494e7359SMatthew G. Knepley     break;
429494e7359SMatthew G. Knepley   case 2:
430dcca6d9dSJed Brown     ierr = PetscMalloc4(order,&px,order,&wx,order,&py,order,&wy);CHKERRQ(ierr);
431552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 0.0, 0.0, px, wx);CHKERRQ(ierr);
432552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 1.0, 0.0, py, wy);CHKERRQ(ierr);
433552aa4f7SMatthew G. Knepley     for (i = 0; i < order; ++i) {
434552aa4f7SMatthew G. Knepley       for (j = 0; j < order; ++j) {
435552aa4f7SMatthew G. Knepley         ierr = PetscDTMapSquareToTriangle_Internal(px[i], py[j], &x[(i*order+j)*2+0], &x[(i*order+j)*2+1]);CHKERRQ(ierr);
436552aa4f7SMatthew G. Knepley         w[i*order+j] = 0.5 * wx[i] * wy[j];
437494e7359SMatthew G. Knepley       }
438494e7359SMatthew G. Knepley     }
439494e7359SMatthew G. Knepley     ierr = PetscFree4(px,wx,py,wy);CHKERRQ(ierr);
440494e7359SMatthew G. Knepley     break;
441494e7359SMatthew G. Knepley   case 3:
442dcca6d9dSJed Brown     ierr = PetscMalloc6(order,&px,order,&wx,order,&py,order,&wy,order,&pz,order,&wz);CHKERRQ(ierr);
443552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 0.0, 0.0, px, wx);CHKERRQ(ierr);
444552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 1.0, 0.0, py, wy);CHKERRQ(ierr);
445552aa4f7SMatthew G. Knepley     ierr = PetscDTGaussJacobiQuadrature1D_Internal(order, 2.0, 0.0, pz, wz);CHKERRQ(ierr);
446552aa4f7SMatthew G. Knepley     for (i = 0; i < order; ++i) {
447552aa4f7SMatthew G. Knepley       for (j = 0; j < order; ++j) {
448552aa4f7SMatthew G. Knepley         for (k = 0; k < order; ++k) {
449552aa4f7SMatthew G. Knepley           ierr = PetscDTMapCubeToTetrahedron_Internal(px[i], py[j], pz[k], &x[((i*order+j)*order+k)*3+0], &x[((i*order+j)*order+k)*3+1], &x[((i*order+j)*order+k)*3+2]);CHKERRQ(ierr);
450552aa4f7SMatthew G. Knepley           w[(i*order+j)*order+k] = 0.125 * wx[i] * wy[j] * wz[k];
451494e7359SMatthew G. Knepley         }
452494e7359SMatthew G. Knepley       }
453494e7359SMatthew G. Knepley     }
454494e7359SMatthew G. Knepley     ierr = PetscFree6(px,wx,py,wy,pz,wz);CHKERRQ(ierr);
455494e7359SMatthew G. Knepley     break;
456494e7359SMatthew G. Knepley   default:
457494e7359SMatthew G. Knepley     SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Cannot construct quadrature rule for dimension %d", dim);
458494e7359SMatthew G. Knepley   }
45921454ff5SMatthew G. Knepley   ierr = PetscQuadratureCreate(PETSC_COMM_SELF, q);CHKERRQ(ierr);
46021454ff5SMatthew G. Knepley   ierr = PetscQuadratureSetData(*q, dim, npoints, x, w);CHKERRQ(ierr);
461494e7359SMatthew G. Knepley   PetscFunctionReturn(0);
462494e7359SMatthew G. Knepley }
463494e7359SMatthew G. Knepley 
464494e7359SMatthew G. Knepley #undef __FUNCT__
465194825f6SJed Brown #define __FUNCT__ "PetscDTPseudoInverseQR"
466194825f6SJed Brown /* Overwrites A. Can only handle full-rank problems with m>=n
467194825f6SJed Brown  * A in column-major format
468194825f6SJed Brown  * Ainv in row-major format
469194825f6SJed Brown  * tau has length m
470194825f6SJed Brown  * worksize must be >= max(1,n)
471194825f6SJed Brown  */
472194825f6SJed Brown static PetscErrorCode PetscDTPseudoInverseQR(PetscInt m,PetscInt mstride,PetscInt n,PetscReal *A_in,PetscReal *Ainv_out,PetscScalar *tau,PetscInt worksize,PetscScalar *work)
473194825f6SJed Brown {
474194825f6SJed Brown   PetscErrorCode ierr;
475194825f6SJed Brown   PetscBLASInt   M,N,K,lda,ldb,ldwork,info;
476194825f6SJed Brown   PetscScalar    *A,*Ainv,*R,*Q,Alpha;
477194825f6SJed Brown 
478194825f6SJed Brown   PetscFunctionBegin;
479194825f6SJed Brown #if defined(PETSC_USE_COMPLEX)
480194825f6SJed Brown   {
481194825f6SJed Brown     PetscInt i,j;
482dcca6d9dSJed Brown     ierr = PetscMalloc2(m*n,&A,m*n,&Ainv);CHKERRQ(ierr);
483194825f6SJed Brown     for (j=0; j<n; j++) {
484194825f6SJed Brown       for (i=0; i<m; i++) A[i+m*j] = A_in[i+mstride*j];
485194825f6SJed Brown     }
486194825f6SJed Brown     mstride = m;
487194825f6SJed Brown   }
488194825f6SJed Brown #else
489194825f6SJed Brown   A = A_in;
490194825f6SJed Brown   Ainv = Ainv_out;
491194825f6SJed Brown #endif
492194825f6SJed Brown 
493194825f6SJed Brown   ierr = PetscBLASIntCast(m,&M);CHKERRQ(ierr);
494194825f6SJed Brown   ierr = PetscBLASIntCast(n,&N);CHKERRQ(ierr);
495194825f6SJed Brown   ierr = PetscBLASIntCast(mstride,&lda);CHKERRQ(ierr);
496194825f6SJed Brown   ierr = PetscBLASIntCast(worksize,&ldwork);CHKERRQ(ierr);
497194825f6SJed Brown   ierr = PetscFPTrapPush(PETSC_FP_TRAP_OFF);CHKERRQ(ierr);
498001a771dSBarry Smith   PetscStackCallBLAS("LAPACKgeqrf",LAPACKgeqrf_(&M,&N,A,&lda,tau,work,&ldwork,&info));
499194825f6SJed Brown   ierr = PetscFPTrapPop();CHKERRQ(ierr);
500194825f6SJed Brown   if (info) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"xGEQRF error");
501194825f6SJed Brown   R = A; /* Upper triangular part of A now contains R, the rest contains the elementary reflectors */
502194825f6SJed Brown 
503194825f6SJed Brown   /* Extract an explicit representation of Q */
504194825f6SJed Brown   Q = Ainv;
505194825f6SJed Brown   ierr = PetscMemcpy(Q,A,mstride*n*sizeof(PetscScalar));CHKERRQ(ierr);
506194825f6SJed Brown   K = N;                        /* full rank */
507001a771dSBarry Smith   PetscStackCallBLAS("LAPACKungqr",LAPACKungqr_(&M,&N,&K,Q,&lda,tau,work,&ldwork,&info));
508194825f6SJed Brown   if (info) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"xORGQR/xUNGQR error");
509194825f6SJed Brown 
510194825f6SJed Brown   /* Compute A^{-T} = (R^{-1} Q^T)^T = Q R^{-T} */
511194825f6SJed Brown   Alpha = 1.0;
512194825f6SJed Brown   ldb = lda;
513001a771dSBarry Smith   PetscStackCallBLAS("BLAStrsm",BLAStrsm_("Right","Upper","ConjugateTranspose","NotUnitTriangular",&M,&N,&Alpha,R,&lda,Q,&ldb));
514194825f6SJed Brown   /* Ainv is Q, overwritten with inverse */
515194825f6SJed Brown 
516194825f6SJed Brown #if defined(PETSC_USE_COMPLEX)
517194825f6SJed Brown   {
518194825f6SJed Brown     PetscInt i;
519194825f6SJed Brown     for (i=0; i<m*n; i++) Ainv_out[i] = PetscRealPart(Ainv[i]);
520194825f6SJed Brown     ierr = PetscFree2(A,Ainv);CHKERRQ(ierr);
521194825f6SJed Brown   }
522194825f6SJed Brown #endif
523194825f6SJed Brown   PetscFunctionReturn(0);
524194825f6SJed Brown }
525194825f6SJed Brown 
526194825f6SJed Brown #undef __FUNCT__
527194825f6SJed Brown #define __FUNCT__ "PetscDTLegendreIntegrate"
528194825f6SJed Brown /* Computes integral of L_p' over intervals {(x0,x1),(x1,x2),...} */
529194825f6SJed Brown static PetscErrorCode PetscDTLegendreIntegrate(PetscInt ninterval,const PetscReal *x,PetscInt ndegree,const PetscInt *degrees,PetscBool Transpose,PetscReal *B)
530194825f6SJed Brown {
531194825f6SJed Brown   PetscErrorCode ierr;
532194825f6SJed Brown   PetscReal      *Bv;
533194825f6SJed Brown   PetscInt       i,j;
534194825f6SJed Brown 
535194825f6SJed Brown   PetscFunctionBegin;
536785e854fSJed Brown   ierr = PetscMalloc1((ninterval+1)*ndegree,&Bv);CHKERRQ(ierr);
537194825f6SJed Brown   /* Point evaluation of L_p on all the source vertices */
538194825f6SJed Brown   ierr = PetscDTLegendreEval(ninterval+1,x,ndegree,degrees,Bv,NULL,NULL);CHKERRQ(ierr);
539194825f6SJed Brown   /* Integral over each interval: \int_a^b L_p' = L_p(b)-L_p(a) */
540194825f6SJed Brown   for (i=0; i<ninterval; i++) {
541194825f6SJed Brown     for (j=0; j<ndegree; j++) {
542194825f6SJed Brown       if (Transpose) B[i+ninterval*j] = Bv[(i+1)*ndegree+j] - Bv[i*ndegree+j];
543194825f6SJed Brown       else           B[i*ndegree+j]   = Bv[(i+1)*ndegree+j] - Bv[i*ndegree+j];
544194825f6SJed Brown     }
545194825f6SJed Brown   }
546194825f6SJed Brown   ierr = PetscFree(Bv);CHKERRQ(ierr);
547194825f6SJed Brown   PetscFunctionReturn(0);
548194825f6SJed Brown }
549194825f6SJed Brown 
550194825f6SJed Brown #undef __FUNCT__
551194825f6SJed Brown #define __FUNCT__ "PetscDTReconstructPoly"
552194825f6SJed Brown /*@
553194825f6SJed Brown    PetscDTReconstructPoly - create matrix representing polynomial reconstruction using cell intervals and evaluation at target intervals
554194825f6SJed Brown 
555194825f6SJed Brown    Not Collective
556194825f6SJed Brown 
557194825f6SJed Brown    Input Arguments:
558194825f6SJed Brown +  degree - degree of reconstruction polynomial
559194825f6SJed Brown .  nsource - number of source intervals
560194825f6SJed Brown .  sourcex - sorted coordinates of source cell boundaries (length nsource+1)
561194825f6SJed Brown .  ntarget - number of target intervals
562194825f6SJed Brown -  targetx - sorted coordinates of target cell boundaries (length ntarget+1)
563194825f6SJed Brown 
564194825f6SJed Brown    Output Arguments:
565194825f6SJed Brown .  R - reconstruction matrix, utarget = sum_s R[t*nsource+s] * usource[s]
566194825f6SJed Brown 
567194825f6SJed Brown    Level: advanced
568194825f6SJed Brown 
569194825f6SJed Brown .seealso: PetscDTLegendreEval()
570194825f6SJed Brown @*/
571194825f6SJed Brown PetscErrorCode PetscDTReconstructPoly(PetscInt degree,PetscInt nsource,const PetscReal *sourcex,PetscInt ntarget,const PetscReal *targetx,PetscReal *R)
572194825f6SJed Brown {
573194825f6SJed Brown   PetscErrorCode ierr;
574194825f6SJed Brown   PetscInt       i,j,k,*bdegrees,worksize;
575194825f6SJed Brown   PetscReal      xmin,xmax,center,hscale,*sourcey,*targety,*Bsource,*Bsinv,*Btarget;
576194825f6SJed Brown   PetscScalar    *tau,*work;
577194825f6SJed Brown 
578194825f6SJed Brown   PetscFunctionBegin;
579194825f6SJed Brown   PetscValidRealPointer(sourcex,3);
580194825f6SJed Brown   PetscValidRealPointer(targetx,5);
581194825f6SJed Brown   PetscValidRealPointer(R,6);
582194825f6SJed Brown   if (degree >= nsource) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"Reconstruction degree %D must be less than number of source intervals %D",degree,nsource);
583194825f6SJed Brown #if defined(PETSC_USE_DEBUG)
584194825f6SJed Brown   for (i=0; i<nsource; i++) {
58557622a8eSBarry Smith     if (sourcex[i] >= sourcex[i+1]) SETERRQ3(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Source interval %D has negative orientation (%g,%g)",i,(double)sourcex[i],(double)sourcex[i+1]);
586194825f6SJed Brown   }
587194825f6SJed Brown   for (i=0; i<ntarget; i++) {
58857622a8eSBarry Smith     if (targetx[i] >= targetx[i+1]) SETERRQ3(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Target interval %D has negative orientation (%g,%g)",i,(double)targetx[i],(double)targetx[i+1]);
589194825f6SJed Brown   }
590194825f6SJed Brown #endif
591194825f6SJed Brown   xmin = PetscMin(sourcex[0],targetx[0]);
592194825f6SJed Brown   xmax = PetscMax(sourcex[nsource],targetx[ntarget]);
593194825f6SJed Brown   center = (xmin + xmax)/2;
594194825f6SJed Brown   hscale = (xmax - xmin)/2;
595194825f6SJed Brown   worksize = nsource;
596dcca6d9dSJed Brown   ierr = PetscMalloc4(degree+1,&bdegrees,nsource+1,&sourcey,nsource*(degree+1),&Bsource,worksize,&work);CHKERRQ(ierr);
597dcca6d9dSJed Brown   ierr = PetscMalloc4(nsource,&tau,nsource*(degree+1),&Bsinv,ntarget+1,&targety,ntarget*(degree+1),&Btarget);CHKERRQ(ierr);
598194825f6SJed Brown   for (i=0; i<=nsource; i++) sourcey[i] = (sourcex[i]-center)/hscale;
599194825f6SJed Brown   for (i=0; i<=degree; i++) bdegrees[i] = i+1;
600194825f6SJed Brown   ierr = PetscDTLegendreIntegrate(nsource,sourcey,degree+1,bdegrees,PETSC_TRUE,Bsource);CHKERRQ(ierr);
601194825f6SJed Brown   ierr = PetscDTPseudoInverseQR(nsource,nsource,degree+1,Bsource,Bsinv,tau,nsource,work);CHKERRQ(ierr);
602194825f6SJed Brown   for (i=0; i<=ntarget; i++) targety[i] = (targetx[i]-center)/hscale;
603194825f6SJed Brown   ierr = PetscDTLegendreIntegrate(ntarget,targety,degree+1,bdegrees,PETSC_FALSE,Btarget);CHKERRQ(ierr);
604194825f6SJed Brown   for (i=0; i<ntarget; i++) {
605194825f6SJed Brown     PetscReal rowsum = 0;
606194825f6SJed Brown     for (j=0; j<nsource; j++) {
607194825f6SJed Brown       PetscReal sum = 0;
608194825f6SJed Brown       for (k=0; k<degree+1; k++) {
609194825f6SJed Brown         sum += Btarget[i*(degree+1)+k] * Bsinv[k*nsource+j];
610194825f6SJed Brown       }
611194825f6SJed Brown       R[i*nsource+j] = sum;
612194825f6SJed Brown       rowsum += sum;
613194825f6SJed Brown     }
614194825f6SJed Brown     for (j=0; j<nsource; j++) R[i*nsource+j] /= rowsum; /* normalize each row */
615194825f6SJed Brown   }
616194825f6SJed Brown   ierr = PetscFree4(bdegrees,sourcey,Bsource,work);CHKERRQ(ierr);
617194825f6SJed Brown   ierr = PetscFree4(tau,Bsinv,targety,Btarget);CHKERRQ(ierr);
618194825f6SJed Brown   PetscFunctionReturn(0);
619194825f6SJed Brown }
620