Actual source code: ex14f.F

petsc-3.3-p7 2013-05-11
  1: !
  2: !
  3: !  Solves a nonlinear system in parallel with a user-defined
  4: !  Newton method that uses KSP to solve the linearized Newton sytems.  This solver
  5: !  is a very simplistic inexact Newton method.  The intent of this code is to
  6: !  demonstrate the repeated solution of linear sytems with the same nonzero pattern.
  7: !
  8: !  This is NOT the recommended approach for solving nonlinear problems with PETSc!
  9: !  We urge users to employ the SNES component for solving nonlinear problems whenever
 10: !  possible, as it offers many advantages over coding nonlinear solvers independently.
 11: !
 12: !  We solve the  Bratu (SFI - solid fuel ignition) problem in a 2D rectangular
 13: !  domain, using distributed arrays (DMDAs) to partition the parallel grid.
 14: !
 15: !  The command line options include:
 16: !  -par <parameter>, where <parameter> indicates the problem's nonlinearity
 17: !     problem SFI:  <parameter> = Bratu parameter (0 <= par <= 6.81)
 18: !  -mx <xg>, where <xg> = number of grid points in the x-direction
 19: !  -my <yg>, where <yg> = number of grid points in the y-direction
 20: !  -Nx <npx>, where <npx> = number of processors in the x-direction
 21: !  -Ny <npy>, where <npy> = number of processors in the y-direction
 22: !  -mf use matrix free for matrix vector product
 23: !
 24: !/*T
 25: !   Concepts: KSP^writing a user-defined nonlinear solver
 26: !   Concepts: DMDA^using distributed arrays
 27: !   Processors: n
 28: !T*/
 29: !  ------------------------------------------------------------------------
 30: !
 31: !    Solid Fuel Ignition (SFI) problem.  This problem is modeled by
 32: !    the partial differential equation
 33: !
 34: !            -Laplacian u - lambda*exp(u) = 0,  0 < x,y < 1,
 35: !
 36: !    with boundary conditions
 37: !
 38: !             u = 0  for  x = 0, x = 1, y = 0, y = 1.
 39: !
 40: !    A finite difference approximation with the usual 5-point stencil
 41: !    is used to discretize the boundary value problem to obtain a nonlinear
 42: !    system of equations.
 43: !
 44: !    The SNES version of this problem is:  snes/examples/tutorials/ex5f.F
 45: !
 46: !  -------------------------------------------------------------------------

 48:       program main
 49:       implicit none

 51: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 52: !                    Include files
 53: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 54: !
 55: !     petscsys.h       - base PETSc routines   petscvec.h - vectors
 56: !     petscmat.h - matrices
 57: !     petscis.h     - index sets            petscksp.h - Krylov subspace methods
 58: !     petscviewer.h - viewers               petscpc.h  - preconditioners

 60: #include <finclude/petscsys.h>
 61: #include <finclude/petscis.h>
 62: #include <finclude/petscvec.h>
 63: #include <finclude/petscmat.h>
 64: #include <finclude/petscpc.h>
 65: #include <finclude/petscksp.h>
 66: #include <finclude/petscdmda.h>

 68:       MPI_Comm comm
 69:       Vec      X,Y,F,localX,localF
 70:       Mat      J,B
 71:       DM       da
 72:       KSP      ksp

 74:       PetscInt  Nx,Ny,N,mx,my,ifive,ithree
 75:       PetscBool  flg,nooutput,usemf
 76:       common   /mycommon/ mx,my,B,localX,localF,da
 77: !
 78: !
 79: !      This is the routine to use for matrix-free approach
 80: !
 81:       external mymult

 83: !     --------------- Data to define nonlinear solver --------------
 84:       double precision   rtol,ttol
 85:       double precision   fnorm,ynorm,xnorm
 86:       PetscInt            max_nonlin_its,one
 87:       PetscInt            lin_its
 88:       PetscInt           i,m
 89:       PetscScalar        mone
 90:       PetscErrorCode ierr

 92:       mone           = -1.d0
 93:       rtol           = 1.d-8
 94:       max_nonlin_its = 10
 95:       one            = 1
 96:       ifive          = 5
 97:       ithree         = 3

 99:       call PetscInitialize(PETSC_NULL_CHARACTER,ierr)
100:       comm = PETSC_COMM_WORLD

102: !  Initialize problem parameters

104: !
105:       mx = 4
106:       my = 4
107:       call PetscOptionsGetInt(PETSC_NULL_CHARACTER,'-mx',mx,flg,ierr)
108:       call PetscOptionsGetInt(PETSC_NULL_CHARACTER,'-my',my,flg,ierr)
109:       N = mx*my

111:       nooutput = .false.
112:       call PetscOptionsHasName(PETSC_NULL_CHARACTER,'-no_output',       &
113:      &     nooutput,ierr)

115: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
116: !     Create linear solver context
117: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

119:       call KSPCreate(comm,ksp,ierr)

121: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
122: !     Create vector data structures
123: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

125: !
126: !  Create distributed array (DMDA) to manage parallel grid and vectors
127: !
128:       Nx = PETSC_DECIDE
129:       Ny = PETSC_DECIDE
130:       call PetscOptionsGetInt(PETSC_NULL_CHARACTER,'-Nx',Nx,flg,ierr)
131:       call PetscOptionsGetInt(PETSC_NULL_CHARACTER,'-Ny',Ny,flg,ierr)
132:       call DMDACreate2d(comm,DMDA_BOUNDARY_NONE,DMDA_BOUNDARY_NONE,      &
133:      &     DMDA_STENCIL_STAR,mx,my,Nx,Ny,one,one,                        &
134:      &     PETSC_NULL_INTEGER,PETSC_NULL_INTEGER,da,ierr)

136: !
137: !  Extract global and local vectors from DMDA then duplicate for remaining
138: !  vectors that are the same types
139: !
140:        call DMCreateGlobalVector(da,X,ierr)
141:        call DMCreateLocalVector(da,localX,ierr)
142:        call VecDuplicate(X,F,ierr)
143:        call VecDuplicate(X,Y,ierr)
144:        call VecDuplicate(localX,localF,ierr)


147: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
148: !     Create matrix data structure for Jacobian
149: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
150: !
151: !     Note:  For the parallel case, vectors and matrices MUST be partitioned
152: !     accordingly.  When using distributed arrays (DMDAs) to create vectors,
153: !     the DMDAs determine the problem partitioning.  We must explicitly
154: !     specify the local matrix dimensions upon its creation for compatibility
155: !     with the vector distribution.
156: !
157: !     Note: Here we only approximately preallocate storage space for the
158: !     Jacobian.  See the users manual for a discussion of better techniques
159: !     for preallocating matrix memory.
160: !
161:       call VecGetLocalSize(X,m,ierr)
162:       call MatCreateAIJ(comm,m,m,N,N,ifive,PETSC_NULL_INTEGER,ithree,         &
163:      &     PETSC_NULL_INTEGER,B,ierr)

165: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
166: !     if usemf is on then matrix vector product is done via matrix free
167: !     approach. Note this is just an example, and not realistic because
168: !     we still use the actual formed matrix, but in reality one would
169: !     provide their own subroutine that would directly do the matrix
170: !     vector product and not call MatMult()
171: !     Note: we put B into a common block so it will be visible to the
172: !     mymult() routine
173:       usemf = .false.
174:       call PetscOptionsHasName(PETSC_NULL_CHARACTER,'-mf',usemf,ierr)
175:       if (usemf) then
176:          call MatCreateShell(comm,m,m,N,N,PETSC_NULL_INTEGER,J,ierr)
177:          call MatShellSetOperation(J,MATOP_MULT,mymult,ierr)
178:       else
179: !        If not doing matrix free then matrix operator, J,  and matrix used
180: !        to construct preconditioner, B, are the same
181:         J = B
182:       endif

184: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
185: !     Customize linear solver set runtime options
186: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
187: !
188: !     Set runtime options (e.g., -ksp_monitor -ksp_rtol <rtol> -ksp_type <type>)
189: !
190:        call KSPSetFromOptions(ksp,ierr)

192: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
193: !     Evaluate initial guess
194: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

196:        call FormInitialGuess(X,ierr)
197:        call ComputeFunction(X,F,ierr)
198:        call VecNorm(F,NORM_2,fnorm,ierr)
199:        ttol = fnorm*rtol
200:        if (.not. nooutput) then
201:          print*, 'Initial function norm ',fnorm
202:        endif

204: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
205: !     Solve nonlinear system with a user-defined method
206: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

208: !  This solver is a very simplistic inexact Newton method, with no
209: !  no damping strategies or bells and whistles. The intent of this code
210: !  is merely to demonstrate the repeated solution with KSP of linear
211: !  sytems with the same nonzero structure.
212: !
213: !  This is NOT the recommended approach for solving nonlinear problems
214: !  with PETSc!  We urge users to employ the SNES component for solving
215: !  nonlinear problems whenever possible with application codes, as it
216: !  offers many advantages over coding nonlinear solvers independently.

218:        do 10 i=0,max_nonlin_its

220: !  Compute the Jacobian matrix.  See the comments in this routine for
221: !  important information about setting the flag mat_flag.

223:          call ComputeJacobian(X,B,ierr)

225: !  Solve J Y = F, where J is the Jacobian matrix.
226: !    - First, set the KSP linear operators.  Here the matrix that
227: !      defines the linear system also serves as the preconditioning
228: !      matrix.
229: !    - Then solve the Newton system.

231:          call KSPSetOperators(ksp,J,B,SAME_NONZERO_PATTERN,ierr)
232:          call KSPSolve(ksp,F,Y,ierr)

234: !  Compute updated iterate

236:          call VecNorm(Y,NORM_2,ynorm,ierr)
237:          call VecAYPX(Y,mone,X,ierr)
238:          call VecCopy(Y,X,ierr)
239:          call VecNorm(X,NORM_2,xnorm,ierr)
240:          call KSPGetIterationNumber(ksp,lin_its,ierr)
241:          if (.not. nooutput) then
242:            print*,'linear solve iterations = ',lin_its,' xnorm = ',     &
243:      &         xnorm,' ynorm = ',ynorm
244:          endif

246: !  Evaluate nonlinear function at new location

248:          call ComputeFunction(X,F,ierr)
249:          call VecNorm(F,NORM_2,fnorm,ierr)
250:          if (.not. nooutput) then
251:            print*, 'Iteration ',i+1,' function norm',fnorm
252:          endif

254: !  Test for convergence

256:        if (fnorm .le. ttol) then
257:          if (.not. nooutput) then
258:            print*,'Converged: function norm ',fnorm,' tolerance ',ttol
259:          endif
260:          goto 20
261:        endif
262:  10   continue
263:  20   continue

265:       write(6,100) i+1
266:  100  format('Number of SNES iterations =',I2)

268: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
269: !     Free work space.  All PETSc objects should be destroyed when they
270: !     are no longer needed.
271: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

273:        call MatDestroy(B,ierr)
274:        if (usemf) then
275:          call MatDestroy(J,ierr)
276:        endif
277:        call VecDestroy(localX,ierr)
278:        call VecDestroy(X,ierr)
279:        call VecDestroy(Y,ierr)
280:        call VecDestroy(localF,ierr)
281:        call VecDestroy(F,ierr)
282:        call KSPDestroy(ksp,ierr)
283:        call DMDestroy(da,ierr)
284:        call PetscFinalize(ierr)
285:        end

287: ! -------------------------------------------------------------------
288: !
289: !   FormInitialGuess - Forms initial approximation.
290: !
291: !   Input Parameters:
292: !   X - vector
293: !
294: !   Output Parameter:
295: !   X - vector
296: !
297:       subroutine FormInitialGuess(X,ierr)
298:       implicit none

300: !     petscsys.h       - base PETSc routines   petscvec.h - vectors
301: !     petscmat.h - matrices
302: !     petscis.h     - index sets            petscksp.h - Krylov subspace methods
303: !     petscviewer.h - viewers               petscpc.h  - preconditioners

305: #include <finclude/petscsys.h>
306: #include <finclude/petscis.h>
307: #include <finclude/petscvec.h>
308: #include <finclude/petscmat.h>
309: #include <finclude/petscpc.h>
310: #include <finclude/petscksp.h>
311: #include <finclude/petscdmda.h>
312:       PetscErrorCode    ierr
313:       PetscOffset      idx
314:       Vec       X,localX,localF
315:       PetscInt  i,j,row,mx
316:       PetscInt  my, xs,ys,xm
317:       PetscInt  ym,gxm,gym,gxs,gys
318:       double precision one,lambda,temp1,temp,hx,hy
319:       PetscScalar      xx(1)
320:       DM               da
321:       Mat              B
322:       common   /mycommon/ mx,my,B,localX,localF,da
323: 
324:       one    = 1.d0
325:       lambda = 6.d0
326:       hx     = one/(mx-1)
327:       hy     = one/(my-1)
328:       temp1  = lambda/(lambda + one)

330: !  Get a pointer to vector data.
331: !    - VecGetArray() returns a pointer to the data array.
332: !    - You MUST call VecRestoreArray() when you no longer need access to
333: !      the array.
334:        call VecGetArray(localX,xx,idx,ierr)

336: !  Get local grid boundaries (for 2-dimensional DMDA):
337: !    xs, ys   - starting grid indices (no ghost points)
338: !    xm, ym   - widths of local grid (no ghost points)
339: !    gxs, gys - starting grid indices (including ghost points)
340: !    gxm, gym - widths of local grid (including ghost points)

342:        call DMDAGetCorners(da,xs,ys,PETSC_NULL_INTEGER,xm,ym,             &
343:      &      PETSC_NULL_INTEGER,ierr)
344:        call DMDAGetGhostCorners(da,gxs,gys,PETSC_NULL_INTEGER,gxm,gym,    &
345:      &      PETSC_NULL_INTEGER,ierr)

347: !  Compute initial guess over the locally owned part of the grid

349:       do 30 j=ys,ys+ym-1
350:         temp = (min(j,my-j-1))*hy
351:         do 40 i=xs,xs+xm-1
352:           row = i - gxs + (j - gys)*gxm + 1
353:           if (i .eq. 0 .or. j .eq. 0 .or. i .eq. mx-1 .or.              &
354:      &        j .eq. my-1) then
355:             xx(idx+row) = 0.d0
356:             continue
357:           endif
358:           xx(idx+row) = temp1*sqrt(min((min(i,mx-i-1))*hx,temp))
359:  40     continue
360:  30   continue

362: !     Restore vector

364:        call VecRestoreArray(localX,xx,idx,ierr)

366: !     Insert values into global vector

368:        call DMLocalToGlobalBegin(da,localX,INSERT_VALUES,X,ierr)
369:        call DMLocalToGlobalEnd(da,localX,INSERT_VALUES,X,ierr)
370:        return
371:        end

373: ! -------------------------------------------------------------------
374: !
375: !   ComputeFunction - Evaluates nonlinear function, F(x).
376: !
377: !   Input Parameters:
378: !.  X - input vector
379: !
380: !   Output Parameter:
381: !.  F - function vector
382: !
383:       subroutine  ComputeFunction(X,F,ierr)
384:       implicit none

386: !     petscsys.h       - base PETSc routines   petscvec.h - vectors
387: !     petscmat.h - matrices
388: !     petscis.h     - index sets            petscksp.h - Krylov subspace methods
389: !     petscviewer.h - viewers               petscpc.h  - preconditioners

391: #include <finclude/petscsys.h>
392: #include <finclude/petscis.h>
393: #include <finclude/petscvec.h>
394: #include <finclude/petscmat.h>
395: #include <finclude/petscpc.h>
396: #include <finclude/petscksp.h>
397: #include <finclude/petscdmda.h>

399:       Vec              X,F,localX,localF
400:       PetscInt         gys,gxm,gym
401:       PetscOffset      idx,idf
402:       PetscErrorCode ierr
403:       PetscInt i,j,row,mx,my,xs,ys,xm,ym,gxs
404:       double precision two,one,lambda,hx
405:       double precision hy,hxdhy,hydhx,sc
406:       PetscScalar      u,uxx,uyy,xx(1),ff(1)
407:       DM               da
408:       Mat              B
409:       common   /mycommon/ mx,my,B,localX,localF,da

411:       two    = 2.d0
412:       one    = 1.d0
413:       lambda = 6.d0

415:       hx     = one/(mx-1)
416:       hy     = one/(my-1)
417:       sc     = hx*hy*lambda
418:       hxdhy  = hx/hy
419:       hydhx  = hy/hx

421: !  Scatter ghost points to local vector, using the 2-step process
422: !     DMGlobalToLocalBegin(), DMGlobalToLocalEnd().
423: !  By placing code between these two statements, computations can be
424: !  done while messages are in transition.
425: !
426:       call DMGlobalToLocalBegin(da,X,INSERT_VALUES,localX,ierr)
427:       call DMGlobalToLocalEnd(da,X,INSERT_VALUES,localX,ierr)

429: !  Get pointers to vector data

431:       call VecGetArray(localX,xx,idx,ierr)
432:       call VecGetArray(localF,ff,idf,ierr)

434: !  Get local grid boundaries

436:       call DMDAGetCorners(da,xs,ys,PETSC_NULL_INTEGER,xm,ym,              &
437:      &     PETSC_NULL_INTEGER,ierr)
438:       call DMDAGetGhostCorners(da,gxs,gys,PETSC_NULL_INTEGER,gxm,gym,     &
439:      &     PETSC_NULL_INTEGER,ierr)

441: !  Compute function over the locally owned part of the grid

443:       do 50 j=ys,ys+ym-1

445:         row = (j - gys)*gxm + xs - gxs
446:         do 60 i=xs,xs+xm-1
447:           row = row + 1

449:           if (i .eq. 0 .or. j .eq. 0 .or. i .eq. mx-1 .or.              &
450:      &        j .eq. my-1) then
451:             ff(idf+row) = xx(idx+row)
452:             goto 60
453:           endif
454:           u   = xx(idx+row)
455:           uxx = (two*u - xx(idx+row-1) - xx(idx+row+1))*hydhx
456:           uyy = (two*u - xx(idx+row-gxm) - xx(idx+row+gxm))*hxdhy
457:           ff(idf+row) = uxx + uyy - sc*exp(u)
458:  60     continue
459:  50   continue

461: !  Restore vectors

463:        call VecRestoreArray(localX,xx,idx,ierr)
464:        call VecRestoreArray(localF,ff,idf,ierr)

466: !  Insert values into global vector

468:        call DMLocalToGlobalBegin(da,localF,INSERT_VALUES,F,ierr)
469:        call DMLocalToGlobalEnd(da,localF,INSERT_VALUES,F,ierr)
470:        return
471:        end

473: ! -------------------------------------------------------------------
474: !
475: !   ComputeJacobian - Evaluates Jacobian matrix.
476: !
477: !   Input Parameters:
478: !   x - input vector
479: !
480: !   Output Parameters:
481: !   jac - Jacobian matrix
482: !   flag - flag indicating matrix structure
483: !
484: !   Notes:
485: !   Due to grid point reordering with DMDAs, we must always work
486: !   with the local grid points, and then transform them to the new
487: !   global numbering with the 'ltog' mapping (via DMDAGetGlobalIndices()).
488: !   We cannot work directly with the global numbers for the original
489: !   uniprocessor grid!
490: !
491:       subroutine ComputeJacobian(X,jac,ierr)
492:       implicit none

494: !     petscsys.h  - base PETSc routines   petscvec.h - vectors
495: !     petscmat.h - matrices
496: !     petscis.h     - index sets            petscksp.h - Krylov subspace methods
497: !     petscviewer.h - viewers               petscpc.h  - preconditioners

499: #include <finclude/petscsys.h>
500: #include <finclude/petscis.h>
501: #include <finclude/petscvec.h>
502: #include <finclude/petscmat.h>
503: #include <finclude/petscpc.h>
504: #include <finclude/petscksp.h>
505: #include <finclude/petscdmda.h>

507:       Vec         X
508:       Mat         jac
509:       Vec         localX,localF
510:       DM          da
511:       PetscInt     ltog(1)
512:       PetscOffset idltog,idx
513:       PetscErrorCode ierr
514:       PetscInt nloc,xs,ys,xm,ym
515:       PetscInt gxs,gys,gxm,gym
516:       PetscInt grow(1),i,j
517:       PetscInt row,mx,my,ione
518:       PetscInt col(5),ifive
519:       PetscScalar two,one,lambda
520:       PetscScalar v(5),hx,hy,hxdhy
521:       PetscScalar hydhx,sc,xx(1)
522:       Mat         B
523:       common   /mycommon/ mx,my,B,localX,localF,da

525:       ione   = 1
526:       ifive  = 5
527:       one    = 1.d0
528:       two    = 2.d0
529:       hx     = one/(mx-1)
530:       hy     = one/(my-1)
531:       sc     = hx*hy
532:       hxdhy  = hx/hy
533:       hydhx  = hy/hx
534:       lambda = 6.d0

536: !  Scatter ghost points to local vector, using the 2-step process
537: !     DMGlobalToLocalBegin(), DMGlobalToLocalEnd().
538: !  By placing code between these two statements, computations can be
539: !  done while messages are in transition.

541:       call DMGlobalToLocalBegin(da,X,INSERT_VALUES,localX,ierr)
542:       call DMGlobalToLocalEnd(da,X,INSERT_VALUES,localX,ierr)

544: !  Get pointer to vector data

546:       call VecGetArray(localX,xx,idx,ierr)

548: !  Get local grid boundaries

550:       call DMDAGetCorners(da,xs,ys,PETSC_NULL_INTEGER,xm,ym,              &
551:      &     PETSC_NULL_INTEGER,ierr)
552:       call DMDAGetGhostCorners(da,gxs,gys,PETSC_NULL_INTEGER,gxm,gym,     &
553:      &                        PETSC_NULL_INTEGER,ierr)

555: !  Get the global node numbers for all local nodes, including ghost points

557:       call DMDAGetGlobalIndices(da,nloc,ltog,idltog,ierr)

559: !  Compute entries for the locally owned part of the Jacobian.
560: !   - Currently, all PETSc parallel matrix formats are partitioned by
561: !     contiguous chunks of rows across the processors. The 'grow'
562: !     parameter computed below specifies the global row number
563: !     corresponding to each local grid point.
564: !   - Each processor needs to insert only elements that it owns
565: !     locally (but any non-local elements will be sent to the
566: !     appropriate processor during matrix assembly).
567: !   - Always specify global row and columns of matrix entries.
568: !   - Here, we set all entries for a particular row at once.

570:       do 10 j=ys,ys+ym-1
571:         row = (j - gys)*gxm + xs - gxs
572:         do 20 i=xs,xs+xm-1
573:           row = row + 1
574:           grow(1) = ltog(idltog+row)
575:           if (i .eq. 0 .or. j .eq. 0 .or. i .eq. (mx-1) .or.            &
576:      &        j .eq. (my-1)) then
577:              call MatSetValues(jac,ione,grow,ione,grow,one,             &
578:      &                         INSERT_VALUES,ierr)
579:              go to 20
580:           endif
581:           v(1)   = -hxdhy
582:           col(1) = ltog(idltog+row - gxm)
583:           v(2)   = -hydhx
584:           col(2) = ltog(idltog+row - 1)
585:           v(3)   = two*(hydhx + hxdhy) - sc*lambda*exp(xx(idx+row))
586:           col(3) = grow(1)
587:           v(4)   = -hydhx
588:           col(4) = ltog(idltog+row + 1)
589:           v(5)   = -hxdhy
590:           col(5) = ltog(idltog+row + gxm)
591:           call MatSetValues(jac,ione,grow,ifive,col,v,INSERT_VALUES,       &
592:      &                      ierr)
593:  20     continue
594:  10   continue

596: !  Assemble matrix, using the 2-step process:
597: !    MatAssemblyBegin(), MatAssemblyEnd().
598: !  By placing code between these two statements, computations can be
599: !  done while messages are in transition.

601:       call MatAssemblyBegin(jac,MAT_FINAL_ASSEMBLY,ierr)
602:       call VecRestoreArray(localX,xx,idx,ierr)
603:       call MatAssemblyEnd(jac,MAT_FINAL_ASSEMBLY,ierr)
604:       return
605:       end


608: ! -------------------------------------------------------------------
609: !
610: !   MyMult - user provided matrix multiply
611: !
612: !   Input Parameters:
613: !.  X - input vector
614: !
615: !   Output Parameter:
616: !.  F - function vector
617: !
618:       subroutine  MyMult(J,X,F,ierr)
619:       implicit none
620:       Mat     J,B
621:       Vec     X,F
622:       PetscErrorCode ierr
623:       PetscInt mx,my
624:       DM      da
625:       Vec     localX,localF

627:       common   /mycommon/ mx,my,B,localX,localF,da
628: !
629: !       Here we use the actual formed matrix B; users would
630: !     instead write their own matrix vector product routine
631: !
632:       call MatMult(B,X,F,ierr)
633:       return
634:       end