| 1 | /* ------------------------------------------------------------------------
|
|---|
| 2 |
|
|---|
| 3 | Solid Fuel Ignition (SFI) problem. This problem is modeled by
|
|---|
| 4 | the partial differential equation
|
|---|
| 5 |
|
|---|
| 6 | -Laplacian u - lambda*exp(u) = 0, 0 < x,y < 1,
|
|---|
| 7 |
|
|---|
| 8 | with boundary conditions
|
|---|
| 9 |
|
|---|
| 10 | u = 0 for x = 0, x = 1, y = 0, y = 1.
|
|---|
| 11 |
|
|---|
| 12 | A finite difference approximation with the usual 5-point stencil
|
|---|
| 13 | is used to discretize the boundary value problem to obtain a nonlinear
|
|---|
| 14 | system of equations.
|
|---|
| 15 | ------------------------------------------------------------------------- */
|
|---|
| 16 |
|
|---|
| 17 | #include "petsc.h"
|
|---|
| 18 |
|
|---|
| 19 | typedef struct {
|
|---|
| 20 | PassiveReal param; /* test problem parameter */
|
|---|
| 21 | } AppCtx;
|
|---|
| 22 |
|
|---|
| 23 | PetscScalar FormFunctionPt(PetscScalar,PetscScalar,PetscScalar,PetscScalar,PetscScalar,PetscReal,PetscReal,PetscReal);
|
|---|
| 24 | /* ------------------------------------------------------------------- */
|
|---|
| 25 | #undef __FUNCT__
|
|---|
| 26 | #define __FUNCT__ "FormFunctionLocal"
|
|---|
| 27 | /*
|
|---|
| 28 | FormFunctionLocal - Evaluates nonlinear function, F(x) on local process patch
|
|---|
| 29 | */
|
|---|
| 30 | PetscErrorCode FormFunctionLocal(DMDALocalInfo *info,PetscScalar **x,PetscScalar **f,AppCtx *user)
|
|---|
| 31 | {
|
|---|
| 32 | PetscErrorCode ierr;
|
|---|
| 33 | PetscInt i,j;
|
|---|
| 34 | PetscReal lambda,hx,hy,hxdhy,hydhx,sc;
|
|---|
| 35 | PetscScalar u,uxx,uyy;
|
|---|
| 36 |
|
|---|
| 37 | PetscFunctionBegin;
|
|---|
| 38 |
|
|---|
| 39 | lambda = user->param;
|
|---|
| 40 | hx = 1.0/(PetscReal)(info->mx-1);
|
|---|
| 41 | hy = 1.0/(PetscReal)(info->my-1);
|
|---|
| 42 | sc = hx*hy*lambda;
|
|---|
| 43 | hxdhy = hx/hy;
|
|---|
| 44 | hydhx = hy/hx;
|
|---|
| 45 |
|
|---|
| 46 | /*
|
|---|
| 47 | Compute function over the locally owned part of the grid
|
|---|
| 48 | */
|
|---|
| 49 | for (j=info->ys; j<info->ys+info->ym; j++) {
|
|---|
| 50 | for (i=info->xs; i<info->xs+info->xm; i++) {
|
|---|
| 51 | if (i == 0 || j == 0 || i == info->mx-1 || j == info->my-1) {
|
|---|
| 52 | f[j][i] = 2.0*(hydhx+hxdhy)*x[j][i];
|
|---|
| 53 | ierr = PetscLogFlops(3.0);CHKERRQ(ierr);
|
|---|
| 54 | } else {
|
|---|
| 55 | f[j][i] = FormFunctionPt(x[j][i],x[j-1][i],x[j+1][i],x[j][i-1],x[j][i+1],hxdhy,hydhx,sc);
|
|---|
| 56 | ierr = PetscLogFlops(11.0);CHKERRQ(ierr);
|
|---|
| 57 | }
|
|---|
| 58 | }
|
|---|
| 59 | }
|
|---|
| 60 | PetscFunctionReturn(0);
|
|---|
| 61 | }
|
|---|
| 62 |
|
|---|
| 63 | PetscScalar FormFunctionPt(PetscScalar C,PetscScalar S,PetscScalar N,PetscScalar W,PetscScalar E,PetscReal hxdhy,PetscReal hydhx,PetscReal sc) {
|
|---|
| 64 | PetscScalar uxx,uyy;
|
|---|
| 65 |
|
|---|
| 66 | uxx = (2.0*C - W - E)*hydhx;
|
|---|
| 67 | uyy = (2.0*C - S - N)*hxdhy;
|
|---|
| 68 | return (uxx + uyy - sc*PetscExpScalar(C));
|
|---|
| 69 | }
|
|---|