! ! Description: This example solves a nonlinear system in parallel with SNES. ! We solve the Bratu (SFI - solid fuel ignition) problem in a 2D rectangular ! domain, using distributed arrays (DAs) to partition the parallel grid. ! The command line options include: ! -par , where indicates the nonlinearity of the problem ! problem SFI: = Bratu parameter (0 <= par <= 6.81) ! ! Program usage: mpiexec -np ex5f [-help] [all PETSc options] ! !/*T ! Concepts: SNES^parallel Bratu example ! Concepts: DA^using distributed arrays; ! Processors: n !T*/ ! ! -------------------------------------------------------------------------- ! ! Solid Fuel Ignition (SFI) problem. This problem is modeled by ! the partial differential equation ! ! -Laplacian u - lambda*exp(u) = 0, 0 < x,y < 1, ! ! with boundary conditions ! ! u = 0 for x = 0, x = 1, y = 0, y = 1. ! ! A finite difference approximation with the usual 5-point stencil ! is used to discretize the boundary value problem to obtain a nonlinear ! system of equations. ! ! -------------------------------------------------------------------------- program main implicit none ! ! We place common blocks, variable declarations, and other include files ! needed for this code in the single file ex5f.h. We then need to include ! only this file throughout the various routines in this program. See ! additional comments in the file ex5f.h. ! #include "ex5f.h" ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Variable declarations ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! ! Variables: ! snes - nonlinear solver ! x, r - solution, residual vectors ! J - Jacobian matrix ! its - iterations for convergence ! ! See additional variable declarations in the file ex5f.h ! SNES snes Vec x,r Mat J,A PetscInt its,i1,i4 PetscErrorCode ierr double precision lambda_max,lambda_min PetscTruth flg #if defined(PETSC_HAVE_ADIFOR) ISColoring coloring PetscTruth adifor_jacobian,adiformf_jacobian #endif ! Note: Any user-defined Fortran routines (such as FormJacobianLocal) ! MUST be declared as external. external FormInitialGuess external FormFunctionLocal,FormJacobianLocal #if defined(PETSC_HAVE_ADIFOR) external g_FormFunctionLocal,m_FormFunctionLocal #endif ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Initialize program ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - call PetscInitialize(PETSC_NULL_CHARACTER,ierr) call MPI_Comm_size(PETSC_COMM_WORLD,size,ierr) call MPI_Comm_rank(PETSC_COMM_WORLD,rank,ierr) ! Initialize problem parameters i1 = 1 i4 = -4 lambda_max = 6.81 lambda_min = 0.0 lambda = 6.0 call PetscOptionsGetReal(PETSC_NULL_CHARACTER,'-par',lambda, & & flg,ierr) if (lambda .ge. lambda_max .or. lambda .le. lambda_min) then if (rank .eq. 0) write(6,*) 'Lambda is out of range' SETERRQ(1,' ',ierr) endif ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Create nonlinear solver context ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - call SNESCreate(PETSC_COMM_WORLD,snes,ierr) ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Create vector data structures; set function evaluation routine ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Create distributed array (DA) to manage parallel grid and vectors ! This really needs only the star-type stencil, but we use the box ! stencil temporarily. call DACreate2d(PETSC_COMM_WORLD,DA_NONPERIODIC,DA_STENCIL_STAR, & & i4,i4,PETSC_DECIDE,PETSC_DECIDE,i1,i1,PETSC_NULL_INTEGER, & & PETSC_NULL_INTEGER,da,ierr) ! Extract global and local vectors from DA; then duplicate for remaining ! vectors that are the same types call DACreateGlobalVector(da,x,ierr) call VecDuplicate(x,r,ierr) ! Get local grid boundaries (for 2-dimensional DA) call DAGetInfo(da,PETSC_NULL_INTEGER,mx,my,PETSC_NULL_INTEGER, & & PETSC_NULL_INTEGER,PETSC_NULL_INTEGER, & & PETSC_NULL_INTEGER,PETSC_NULL_INTEGER, & & PETSC_NULL_INTEGER,PETSC_NULL_INTEGER, & & PETSC_NULL_INTEGER,ierr) call DAGetCorners(da,xs,ys,PETSC_NULL_INTEGER,xm,ym, & & PETSC_NULL_INTEGER,ierr) call DAGetGhostCorners(da,gxs,gys,PETSC_NULL_INTEGER,gxm,gym, & & PETSC_NULL_INTEGER,ierr) ! Here we shift the starting indices up by one so that we can easily ! use the Fortran convention of 1-based indices (rather 0-based indices). xs = xs+1 ys = ys+1 gxs = gxs+1 gys = gys+1 ye = ys+ym-1 xe = xs+xm-1 gye = gys+gym-1 gxe = gxs+gxm-1 ! Set function evaluation routine and vector call DASetLocalFunction(da,FormFunctionLocal,ierr) call DASetLocalJacobian(da,FormJacobianLocal,ierr) #if defined(PETSC_HAVE_ADIFOR) call DASetLocalAdiforFunction(da, & & g_FormFunctionLocal,ierr) #endif call SNESSetFunction(snes,r,SNESDAFormFunction,da,ierr) ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Create matrix data structure; set Jacobian evaluation routine ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Set Jacobian matrix data structure and default Jacobian evaluation ! routine. User can override with: ! -snes_mf : matrix-free Newton-Krylov method with no preconditioning ! (unless user explicitly sets preconditioner) ! -snes_mf_operator : form preconditioning matrix as set by the user, ! but use matrix-free approx for Jacobian-vector ! products within Newton-Krylov method ! call DAGetMatrix(da,MATAIJ,J,ierr) #if defined(PETSC_HAVE_ADIFOR) call PetscOptionsGetTruth(PETSC_NULL_CHARACTER & & ,'-adiformf_jacobian', & & adiformf_jacobian,PETSC_NULL_INTEGER,ierr) if (adiformf_jacobian .eq. 1) then call DASetLocalAdiforMFFunction(da, & & m_FormFunctionLocal,ierr) call MatRegisterDAAD(ierr) call MatCreateDAAD(da,A,ierr) call MatDAADSetSNES(A,snes,ierr) else A = J endif #else A = J #endif call SNESSetJacobian(snes,A,J,SNESDAComputeJacobian, & & da,ierr) #if defined(PETSC_HAVE_ADIFOR) call PetscOptionsGetTruth(PETSC_NULL_CHARACTER & & ,'-adifor_jacobian', & & adifor_jacobian,PETSC_NULL_INTEGER,ierr) if (adifor_jacobian .eq. 1) then call DAGetColoring(da,IS_COLORING_GHOSTED, & & coloring,ierr) call MatSetColoring(J,coloring,ierr) call SNESSetJacobian(snes,A,J,SNESDAComputeJacobianWithAdifor, & & da,ierr) call ISColoringDestroy(coloring,ierr) endif #endif ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Customize nonlinear solver; set runtime options ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Set runtime options (e.g., -snes_monitor -snes_rtol -ksp_type ) call SNESSetFromOptions(snes,ierr) ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Evaluate initial guess; then solve nonlinear system. ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Note: The user should initialize the vector, x, with the initial guess ! for the nonlinear solver prior to calling SNESSolve(). In particular, ! to employ an initial guess of zero, the user should explicitly set ! this vector to zero by calling VecSet(). call FormInitialGuess(x,ierr) call SNESSolve(snes,PETSC_NULL_OBJECT,x,ierr) call SNESGetIterationNumber(snes,its,ierr) if (rank .eq. 0) then write(6,100) its endif 100 format('Number of Newton iterations = ',i5) ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ! Free work space. All PETSc objects should be destroyed when they ! are no longer needed. ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (A .ne. J) call MatDestroy(A,ierr) call MatDestroy(J,ierr) call VecDestroy(x,ierr) call VecDestroy(r,ierr) call SNESDestroy(snes,ierr) call DADestroy(da,ierr) call PetscFinalize(ierr) end ! --------------------------------------------------------------------- ! ! FormInitialGuess - Forms initial approximation. ! ! Input Parameters: ! X - vector ! ! Output Parameter: ! X - vector ! ! Notes: ! This routine serves as a wrapper for the lower-level routine ! "ApplicationInitialGuess", where the actual computations are ! done using the standard Fortran style of treating the local ! vector data as a multidimensional array over the local mesh. ! This routine merely handles ghost point scatters and accesses ! the local vector data via VecGetArray() and VecRestoreArray(). ! subroutine FormInitialGuess(X,ierr) implicit none #include "ex5f.h" ! Input/output variables: Vec X PetscErrorCode ierr ! Declarations for use with local arrays: PetscScalar lx_v(0:1) PetscOffset lx_i Vec localX ierr = 0 ! Get a pointer to vector data. ! - For default PETSc vectors, VecGetArray() returns a pointer to ! the data array. Otherwise, the routine is implementation dependent. ! - You MUST call VecRestoreArray() when you no longer need access to ! the array. ! - Note that the Fortran interface to VecGetArray() differs from the ! C version. See the users manual for details. call DAGetLocalVector(da,localX,ierr) call VecGetArray(localX,lx_v,lx_i,ierr) ! Compute initial guess over the locally owned part of the grid call InitialGuessLocal(lx_v(lx_i),ierr) ! Restore vector call VecRestoreArray(localX,lx_v,lx_i,ierr) ! Insert values into global vector call DALocalToGlobal(da,localX,INSERT_VALUES,X,ierr) call DARestoreLocalVector(da,localX,ierr) return end ! --------------------------------------------------------------------- ! ! InitialGuessLocal - Computes initial approximation, called by ! the higher level routine FormInitialGuess(). ! ! Input Parameter: ! x - local vector data ! ! Output Parameters: ! x - local vector data ! ierr - error code ! ! Notes: ! This routine uses standard Fortran-style computations over a 2-dim array. ! subroutine InitialGuessLocal(x,ierr) implicit none #include "ex5f.h" ! Input/output variables: PetscScalar x(gxs:gxe,gys:gye) PetscErrorCode ierr ! Local variables: PetscInt i,j PetscScalar temp1,temp,hx,hy PetscScalar one ! Set parameters ierr = 0 one = 1.0 hx = one/(dble(mx-1)) hy = one/(dble(my-1)) temp1 = lambda/(lambda + one) do 20 j=ys,ye temp = dble(min(j-1,my-j))*hy do 10 i=xs,xe if (i .eq. 1 .or. j .eq. 1 & & .or. i .eq. mx .or. j .eq. my) then x(i,j) = 0.0 else x(i,j) = temp1 * & & sqrt(min(dble(min(i-1,mx-i)*hx),dble(temp))) endif 10 continue 20 continue return end ! --------------------------------------------------------------------- ! ! FormFunctionLocal - Computes nonlinear function, called by ! the higher level routine FormFunction(). ! ! Input Parameter: ! x - local vector data ! ! Output Parameters: ! f - local vector data, f(x) ! ierr - error code ! ! Notes: ! This routine uses standard Fortran-style computations over a 2-dim array. ! ! Process adifor: FormFunctionLocal ! subroutine FormFunctionLocal(info,x,f,dummy,ierr) implicit none #include "ex5f.h" ! Input/output variables: DALocalInfo info(DA_LOCAL_INFO_SIZE) PetscScalar x(gxs:gxe,gys:gye) PetscScalar f(xs:xe,ys:ye) PetscErrorCode ierr PetscObject dummy ! Local variables: PetscScalar two,one,hx,hy PetscScalar hxdhy,hydhx,sc PetscScalar u,uxx,uyy PetscInt i,j xs = info(DA_LOCAL_INFO_XS)+1 xe = xs+info(DA_LOCAL_INFO_XM)-1 ys = info(DA_LOCAL_INFO_YS)+1 ye = ys+info(DA_LOCAL_INFO_YM)-1 mx = info(DA_LOCAL_INFO_MX) my = info(DA_LOCAL_INFO_MY) one = 1.0 two = 2.0 hx = one/dble(mx-1) hy = one/dble(my-1) sc = hx*hy*lambda hxdhy = hx/hy hydhx = hy/hx ! Compute function over the locally owned part of the grid do 20 j=ys,ye do 10 i=xs,xe if (i .eq. 1 .or. j .eq. 1 & & .or. i .eq. mx .or. j .eq. my) then f(i,j) = x(i,j) else u = x(i,j) uxx = hydhx * (two*u & & - x(i-1,j) - x(i+1,j)) uyy = hxdhy * (two*u - x(i,j-1) - x(i,j+1)) f(i,j) = uxx + uyy - sc*exp(u) endif 10 continue 20 continue call PetscLogFlops(11*ym*xm,ierr) return end ! --------------------------------------------------------------------- ! ! FormJacobianLocal - Computes Jacobian matrix, called by ! the higher level routine FormJacobian(). ! ! Input Parameters: ! x - local vector data ! ! Output Parameters: ! jac - Jacobian matrix ! jac_prec - optionally different preconditioning matrix (not used here) ! ierr - error code ! ! Notes: ! This routine uses standard Fortran-style computations over a 2-dim array. ! ! Notes: ! Due to grid point reordering with DAs, we must always work ! with the local grid points, and then transform them to the new ! global numbering with the "ltog" mapping (via DAGetGlobalIndices()). ! We cannot work directly with the global numbers for the original ! uniprocessor grid! ! ! Two methods are available for imposing this transformation ! when setting matrix entries: ! (A) MatSetValuesLocal(), using the local ordering (including ! ghost points!) ! - Use DAGetGlobalIndices() to extract the local-to-global map ! - Associate this map with the matrix by calling ! MatSetLocalToGlobalMapping() once ! - Set matrix entries using the local ordering ! by calling MatSetValuesLocal() ! (B) MatSetValues(), using the global ordering ! - Use DAGetGlobalIndices() to extract the local-to-global map ! - Then apply this map explicitly yourself ! - Set matrix entries using the global ordering by calling ! MatSetValues() ! Option (A) seems cleaner/easier in many cases, and is the procedure ! used in this example. ! subroutine FormJacobianLocal(info,x,jac,ctx,ierr) implicit none #include "ex5f.h" ! Input/output variables: PetscScalar x(gxs:gxe,gys:gye) Mat jac PetscErrorCode ierr integer ctx DALocalInfo info(DA_LOCAL_INFO_SIZE) ! Local variables: PetscInt row,col(5),i,j,i1,i5 PetscScalar two,one,hx,hy,v(5) PetscScalar hxdhy,hydhx,sc ! Set parameters i1 = 1 i5 = 5 one = 1.0 two = 2.0 hx = one/dble(mx-1) hy = one/dble(my-1) sc = hx*hy hxdhy = hx/hy hydhx = hy/hx ! Compute entries for the locally owned part of the Jacobian. ! - Currently, all PETSc parallel matrix formats are partitioned by ! contiguous chunks of rows across the processors. ! - Each processor needs to insert only elements that it owns ! locally (but any non-local elements will be sent to the ! appropriate processor during matrix assembly). ! - Here, we set all entries for a particular row at once. ! - We can set matrix entries either using either ! MatSetValuesLocal() or MatSetValues(), as discussed above. ! - Note that MatSetValues() uses 0-based row and column numbers ! in Fortran as well as in C. do 20 j=ys,ye row = (j - gys)*gxm + xs - gxs - 1 do 10 i=xs,xe row = row + 1 ! boundary points if (i .eq. 1 .or. j .eq. 1 & & .or. i .eq. mx .or. j .eq. my) then ! Some f90 compilers need 4th arg to be of same type in both calls col(1) = row v(1) = one call MatSetValuesLocal(jac,i1,row,i1,col,v, & & INSERT_VALUES,ierr) ! interior grid points else v(1) = -hxdhy v(2) = -hydhx v(3) = two*(hydhx + hxdhy) & & - sc*lambda*exp(x(i,j)) v(4) = -hydhx v(5) = -hxdhy col(1) = row - gxm col(2) = row - 1 col(3) = row col(4) = row + 1 col(5) = row + gxm call MatSetValuesLocal(jac,i1,row,i5,col,v, & & INSERT_VALUES,ierr) endif 10 continue 20 continue call MatAssemblyBegin(jac,MAT_FINAL_ASSEMBLY,ierr) call MatAssemblyEnd(jac,MAT_FINAL_ASSEMBLY,ierr) return end