37
38
39
41 USE elbufdef_mod
42 use element_mod , only : nixs
43
44
45
46#include "implicit_f.inc"
47
48
49
50#include "vect01_c.inc"
51#include "mvsiz_p.inc"
52#include "com01_c.inc"
53#include "com04_c.inc"
54#include "sphcom.inc"
55#include "scr17_c.inc"
56#include "param_c.inc"
57#include "task_c.inc"
58
59
60
61
63 . mas(*) ,pm(npropm,*),geo(npropg,*),x(3,*),d(3,*)
64 INTEGER IPARG(NPARG,*),IXS(NIXS,*),EL2FA(*),NBF,IPART(LIPART1,*),
65 . IPARTSP(*),ISPH3D
66 TYPE (ELBUF_STRUCT_), DIMENSION(NGROUP), TARGET :: ELBUF_TAB
67
68
69
70
72 . evar(mvsiz),
73 . off, p, vonm2, vonm, s1, s2, s12, s3, VALUE,thk0,a0,al0,
74 . rho0,xx1,xx2,xx3,yy1,yy2,yy3,zz1,zz2,zz3
75 INTEGER I, NG, NEL,
76 . IADD, N, J, MLW,
77 . ISTRAIN,NN, K1, K2,JTURB,MT,IMID, IALEL,IPID,
78 . N1,N2,N3,N4,
79 . NN1,NN2,NN3,NN4,NN5,NN6,NN7,NN8,NN9,NN10,
80 . OFFSET,NEL_OLD,ITY_OLD,NFT_FA,N_FA,
81 . INOD, ISOLNOD, IPRT
82 TYPE(G_BUFEL_) ,POINTER :: GBUF
83
84 nn1 = 1
85 nn2 = 1
86 nn3 = nn2 + numels
87 nn4 = nn3 + isph3d*(numsph+maxpjet)
88
89
90
91 nel_old = 0
92 ity_old = 0
93 DO 490 ng=1,ngroup
95 2 mlw ,nel ,nft ,iad ,ity ,
96 3 npt ,jale ,ismstr ,jeul ,jtur ,
97 4 jthe ,jlag ,jmult ,jhbe ,jivf ,
98 5 nvaux ,jpor ,jcvt ,jclose ,jplasol ,
99 6 irep ,iint ,igtyp ,israt ,isrot
100 7 icsen ,isorth ,isorthg ,ifailure,jsms
101 isolnod = iparg(28,ng)
102 IF (ispmd == 0) THEN
103 IF (ity/=ity_old) THEN
104 nel_old = 0
105 ity_old
106 ENDIF
107 nft_fa = nel_old
108 nel_old = nel_old + nel
109 ENDIF
110 DO offset = 0,nel-1,nvsiz
111 nft =iparg(3,ng) + offset
112 iad =iparg(4,ng)
113 lft=1
114 llt=
min(nvsiz,nel-offset)
115 IF (ispmd == 0) THEN
116 nft_fa = nel_old - nel + offset
117 ELSE
118 nft_fa = nft
119 ENDIF
120
121
122
123 IF(ity == 1)THEN
124 gbuf => elbuf_tab(ng)%GBUF
125 ialel=iparg(7,ng)+iparg(11,ng)
126 DO 130 i=lft,llt
127 n = i + nft
128 n_fa = i + nft_fa
129 IF(el2fa(nn2+n_fa)/=0)THEN
130 IF (mlw == 0 .or. mlw == 13 .or. igtyp == 0) THEN
131 VALUE = zero
132 ELSEIF(ialel == 0)THEN
133 mt=ixs(1,n)
134 VALUE=pm(89,mt)*gbuf%VOL(i)
135 ELSE
136 off =
min(gbuf%OFF(i),one)
137 VALUE=gbuf%RHO(i)*gbuf%VOL(i)*off
138 ENDIF
139 IF( nfilsol /= 0 .AND. gbuf%G_FILL /= 0 )
140 . VALUE = VALUE * gbuf%FILL(i)
141 IF (isolnod == 16) THEN
142 VALUE = fourth*VALUE
143 mas(el2fa(nn2+n_fa)) = VALUE
144 mas(el2fa(nn2+n_fa)+1) = VALUE
145 mas(el2fa(nn2+n_fa)+2) = VALUE
146 mas(el2fa(nn2+n_fa)+3) = VALUE
147 ELSE
148 mas(el2fa(nn2+n_fa)) = VALUE
149 ENDIF
150 ENDIF
151 130 CONTINUE
152
153 ELSEIF(isph3d == 1 .AND. ity == 51)THEN
154
155
156
157 gbuf => elbuf_tab(ng)%GBUF
158 ialel=iparg(7,ng)+iparg(11,ng)
159 DO 140 i=lft,llt
160 n
161 n_fa = i + nft_fa
162 IF(el2fa(nn3+n_fa)/=0)THEN
163 IF(ialel == 0)THEN
164 iprt=ipartsp(n)
165 mt =ipart(1,iprt)
166 VALUE=pm(89,mt)*gbuf%VOL(i)
167 ELSE
168 off =
min(gbuf%OFF(i),one)
169 VALUE=gbuf%RHO(i)*gbuf%VOL(i)*off
170 ENDIF
171 mas(el2fa(nn3+n_fa)) = VALUE
172 ENDIF
173 140 CONTINUE
174
175 ELSE
176 ENDIF
177
178
179
180 END DO
181 490 CONTINUE
182
183
184 RETURN
subroutine initbuf(iparg, ng, mtn, llt, nft, iad, ity, npt, jale, ismstr, jeul, jtur, jthe, jlag, jmult, jhbe, jivf, mid, jpor, jcvt, jclose, jpla, irep, iint, igtyp, israt, isrot, icsen, isorth, isorthg, ifailure, jsms)