ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
DPCGRCV.f
Go to the documentation of this file.
1  SUBROUTINE dpcgrc(IDO,N,X,P,R,Z,RELERR,ITMAX)
2 *
3  REAL*8 x(n),p(n)
4  REAL*8 r(n),z(n)
5  REAL*8 relerr
6  INTEGER ido,n,itmax
7 *
8  common/dpcgr1/iter
9  INTEGER iter
10  common/dpcgr2/rsnorm
11  REAL*8 rsnorm
12  common/dpcgr3/c
13  REAL*8 c
14  REAL*8 alfa,beta,error,c1
15 *
16  IF(ido.EQ.0) THEN
17 * P=X
18  DO i=1,n
19  p(i)=x(i)
20  ENDDO
21 * RSNORM=|Z|
22  rsnorm=0.
23  DO i=1,n
24  rsnorm=rsnorm+r(i)*r(i)
25  ENDDO
26  rsnorm=dsqrt(rsnorm)
27  ido=1
28  iter=0
29  RETURN
30  ELSE IF(ido.EQ.1 .AND. iter.EQ.0) THEN
31 *< Z=A*P
32 * R=R-Z
33  DO i=1,n
34  r(i)=r(i)-z(i)
35  ENDDO
36  error = 0.
37  DO i = 1,n
38  error = error + r(i)*r(i)
39  ENDDO
40  error=dsqrt(error)/rsnorm
41  IF(error.LE.relerr) THEN
42  ido=3
43  RETURN
44  ENDIF
45  ido=2
46  iter=0
47  RETURN
48  ELSE IF(ido.EQ.2 .AND.iter.EQ.0) THEN
49 *< Z=M-1*R
50 * P=Z
51  DO i=1,n
52  p(i)=z(i)
53  ENDDO
54 * C=(Z,R)
55  c=0.
56  DO i=1,n
57  c=c+z(i)*r(i)
58  ENDDO
59  ido=1
60  iter=1
61  RETURN
62  ELSE IF(ido.EQ.1) THEN
63 *< Z=A*P
64 * ALFA=C/(Z,P)
65  alfa=0.
66  DO i=1,n
67  alfa=alfa+z(i)*p(i)
68  ENDDO
69  alfa=c/alfa
70 * X=X+ALFA*P
71  DO i=1,n
72  x(i)=x(i)+alfa*p(i)
73  ENDDO
74 * R=R-ALFA*Z
75  DO i=1,n
76  r(i)=r(i)-alfa*z(i)
77  ENDDO
78  error = 0.
79  DO i = 1,n
80  error = error + r(i)*r(i)
81  ENDDO
82  error=dsqrt(error)/rsnorm
83  IF(error.LE.relerr .OR. iter.GE.itmax) THEN
84  ido=3
85  RETURN
86  ENDIF
87  ido=2
88  iter=iter+1
89  RETURN
90  ELSE IF(ido.EQ.2) THEN
91 *< Z=M-1*R
92 * BETA=(Z,R)/C
93  c1=0.
94  DO i=1,n
95  c1=c1+z(i)*r(i)
96  ENDDO
97  beta=c1/c
98  c=c1
99 * P=Z+BETA*P
100  DO i=1,n
101  p(i)=z(i)+beta*p(i)
102  ENDDO
103  ido=1
104  RETURN
105  ENDIF
106 *
107  RETURN
108  END
109 
110 
111 
112 
113 
114 
real(r8) function p(a, x, xr, xs, yr, ys, psi, psir, F_dia)
subroutine dpcgrc(IDO, N, X, P, R, Z, RELERR, ITMAX)
Definition: DPCGRCV.f:1