PROGRAM f11brfe ! F11BRF Example Program Text ! Mark 23 Release. NAG Copyright 2011. ! .. Use Statements .. USE nag_library, ONLY : f11brf, f11bsf, f11btf, f11dnf, f11dpf, f11xnf, & nag_wp ! .. Implicit None Statement .. IMPLICIT NONE ! .. Parameters .. INTEGER, PARAMETER :: nin = 5, nout = 6 ! .. Local Scalars .. REAL (KIND=nag_wp) :: anorm, dtol, sigmax, stplhs, stprhs, & tol INTEGER :: i, ifail, ifail1, irevcm, iterm, & itn, la, lfill, liwork, lwork, & lwreq, m, maxitn, monit, n, nnz, & nnzc, npivm CHARACTER (8) :: method CHARACTER (1) :: milu, norm, precon, pstrat, weight ! .. Local Arrays .. COMPLEX (KIND=nag_wp), ALLOCATABLE :: a(:), b(:), work(:), x(:) REAL (KIND=nag_wp), ALLOCATABLE :: wgt(:) INTEGER, ALLOCATABLE :: icol(:), idiag(:), ipivp(:), & ipivq(:), irow(:), istr(:), iwork(:) ! .. Executable Statements .. WRITE (nout,*) 'F11BRF Example Program Results' ! Skip heading in data file READ (nin,*) READ (nin,*) n READ (nin,*) nnz la = 2*nnz liwork = 7*n + 2 lwork = 200 ALLOCATE (a(la),b(n),work(lwork),x(n),wgt(n),icol(la),idiag(n), & ipivp(n),ipivq(n),irow(la),istr(n+1),iwork(liwork)) ! Read or initialize the parameters for the iterative solver READ (nin,*) method READ (nin,*) precon, norm, weight, iterm READ (nin,*) m, tol, maxitn READ (nin,*) monit anorm = 0.0E0_nag_wp sigmax = 0.0E0_nag_wp ! Read the parameters for the preconditioner READ (nin,*) lfill, dtol READ (nin,*) milu, pstrat ! Read the non-zero elements of the matrix A DO i = 1, nnz READ (nin,*) a(i), irow(i), icol(i) END DO ! Read right-hand side vector b and initial approximate ! solution x READ (nin,*) b(1:n) READ (nin,*) x(1:n) ! Calculate incomplete LU factorization ! ifail: behaviour on error exit ! =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft ifail = 0 CALL f11dnf(n,nnz,a,la,irow,icol,lfill,dtol,pstrat,milu,ipivp,ipivq, & istr,idiag,nnzc,npivm,iwork,liwork,ifail) ! Call F11BRF to initialize the solver ifail = 0 CALL f11brf(method,precon,norm,weight,iterm,n,m,tol,maxitn,anorm, & sigmax,monit,lwreq,work,lwork,ifail) ! Call repeatedly F11BSF to solve the equations ! Note that the arrays B and X are overwritten ! On final exit, X will contain the solution and B the residual ! vector irevcm = 0 lwreq = lwork ifail = 1 LOOP: DO CALL f11bsf(irevcm,x,b,wgt,work,lwreq,ifail) IF (irevcm/=4) THEN ifail1 = -1 SELECT CASE (irevcm) CASE (-1) CALL f11xnf('Transpose',n,nnz,a,irow,icol,'No checking',x,b, & ifail1) CASE (1) CALL f11xnf('No transpose',n,nnz,a,irow,icol,'No checking',x, & b,ifail1) CASE (2) CALL f11dpf('No transpose',n,a,la,irow,icol,ipivp,ipivq,istr, & idiag,'No checking',x,b,ifail1) CASE (3) ifail1 = 0 CALL f11btf(itn,stplhs,stprhs,anorm,sigmax,work,lwreq,ifail1) WRITE (nout,99999) itn, stplhs WRITE (nout,99998) WRITE (nout,99996) x(1:n) WRITE (nout,99997) WRITE (nout,99996) b(1:n) END SELECT IF (ifail1/=0) irevcm = 6 ELSE IF (ifail/=0) THEN WRITE (nout,99992) ifail GO TO 20 ELSE EXIT LOOP END IF END DO LOOP ! Obtain information about the computation ifail1 = 0 CALL f11btf(itn,stplhs,stprhs,anorm,sigmax,work,lwreq,ifail1) ! Print the output data WRITE (nout,99995) WRITE (nout,99994) 'Number of iterations for convergence: ', itn WRITE (nout,99993) 'Residual norm: ', stplhs WRITE (nout,99993) 'Right-hand side of termination criterion:', stprhs WRITE (nout,99993) '1-norm of matrix A: ', anorm ! Output x WRITE (nout,99998) WRITE (nout,99996) x(1:n) WRITE (nout,99997) WRITE (nout,99996) b(1:n) 20 CONTINUE 99999 FORMAT (/1X,'Monitoring at iteration no.',I4/1X,1P,'residual no', & 'rm: ',E14.4) 99998 FORMAT (/2X,' Solution vector') 99997 FORMAT (/2X,' Residual vector') 99996 FORMAT (1X,'(',1P,E16.4,',',1P,E16.4,')') 99995 FORMAT (/1X,'Final Results') 99994 FORMAT (1X,A,I4) 99993 FORMAT (1X,A,1P,E14.4) 99992 FORMAT (1X/1X,' ** F11BSF returned with IFAIL = ',I5) END PROGRAM f11brfe