ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
Matrix.f
Go to the documentation of this file.
1  !subroutine matrix_ffs
2  subroutine matrix
3 
4  include 'double.inc'
5  include 'param.inc'
6  include 'comblc.inc'
7 
8  common /comffs/ axm(nip),ax0(nip),axp(nip)
9 
10 !matrix pakage for fourier solver
11 
12  do i=2,ni1
13 
14  ri=r(i)
15  drpl=dr(i)
16  drmn=dr(i-1)
17  rpl=r12(i)
18  rmn=r12(i-1)
19 
20  do j=2,nj1
21 
22  dzpl=dz(j)
23  dzmn=dz(j-1)
24 
25 
26  axm(i)=ri/(drmn*rmn*dri(i))
27  axp(i)=ri/(drpl*rpl*dri(i))
28  ax0(i)=axm(i)+axp(i)
29 
30  enddo
31  enddo
32 
33  return
34  end
35 !****************************************************************
36  subroutine matrix_spar
37  !subroutine matrix
38 
39  include 'double.inc'
40  include 'param.inc'
41  include 'comblc.inc'
42 
43 
44 
45 c initialization of arrays ia(il),ja(im),a(im)
46 c
47 c il - number of the matrix line(equation number)
48 c im - number of an element in the array a(im)
49 c ia(il) - number of the first nonzero element in the line il
50 c ja(im) - column number of a(im)
51 
52 
53  il=0
54  im=0
55 
56 
57 
58  do 100 j=2,nj1
59 
60  do 100 i=2,ni1
61 
62  il=il+1
63 
64  ia(il)=im+1
65 
66 
67  dzpl=dz(j)
68  dzmn=dz(j-1)
69 
70  ri=r(i)
71  drpl=dr(i)
72  drmn=dr(i-1)
73  rpl=r12(i)
74  rmn=r12(i-1)
75 
76  a1=dri(i)/(dzmn*ri)
77  a2=dzj(j)/(drmn*rmn)
78  a4=dzj(j)/(drpl*rpl)
79  a5=dri(i)/(dzpl*ri)
80 
81  a3=-(a1+a2+a4+a5)
82 
83  if(j.eq.2) go to 10
84 
85 c--1---cof to u(i,j-1)
86 
87  im=im+1
88 
89  ja(im)=nlin(i,j-1)
90 
91  a(im)=a1
92 
93  10 continue
94 
95  if(i.eq.2) go to 20
96 
97 c--2---cof to u(i-1,j)
98 
99  im=im+1
100 
101  ja(im)=nlin(i-1,j)
102 
103  a(im)=a2
104 
105  20 continue
106 
107 c--3---cof to u(i,j)
108 
109  im=im+1
110 
111  ja(im)=nlin(i,j)
112 
113  a(im)=a3
114 
115  if(i.eq.ni1) go to 30
116 
117 c--4---cof to u(i+1,j)
118 
119  im=im+1
120 
121  ja(im)=nlin(i+1,j)
122 
123  a(im)=a4
124 
125  30 continue
126 
127  if(j.eq.nj1) go to 40
128 
129 c--5---cof to u(i,j+1)
130 
131  im=im+1
132 
133  ja(im)=nlin(i,j+1)
134 
135  a(im)=a5
136 
137  40 continue
138 
139  100 continue
140 
141  nnz=im
142  neq=il
143 
144  !write(6,*) 'matrix:neq,nnz',neq,nnz
145  !write(6,*) 'matrix:neqp,lp',neqp,lp
146 
147  il=il+1
148  ia(il)=im+1
149 
150  neqer=neqp-neq
151 
152  if(neqer.lt.0) then
153  !write(6,*) '******error in subr. matrix:'
154  !write(6,*) 'number of equations gt. then array dimension'
155  !write(6,*) 'matrix:neqp,neq',neqp,neq
156  stop
157  endif
158 
159  lper=lp-nnz
160 
161  if( lper.lt.0) then
162  !write(6,*) '******error in subr. matrix:'
163  !write(6,*) 'number of nonzero el. gt. then array dimension'
164  !write(6,*) 'matrix:lp,nnz',lp,nnz
165  stop
166  endif
167 
168 
169  return
170  end
171 
172 
173  function nlin(i,j)
174 
175  include 'double.inc'
176  include 'param.inc'
177  include 'comblc.inc'
178 
179 c number of u(i,j)
180 
181  nlin=(j-2)*ni2+(i-1)
182 
183  return
184  end
function nlin(i, j)
Definition: Matrix.f:173
subroutine matrix_spar
Definition: Matrix.f:36
subroutine matrix
Definition: Matrix.f:2