#include "implicit_f.inc"
#include "vect01_c.inc"
#include "param_c.inc"
Go to the source code of this file.
|
| subroutine | bulkige3 (volu, nctrl, mat, pm, vnige, bnige, px, py, pz, nctrlmax) |
◆ bulkige3()
| subroutine bulkige3 |
( |
| volu, |
|
|
integer | nctrl, |
|
|
integer, dimension(*) | mat, |
|
|
| pm, |
|
|
| vnige, |
|
|
| bnige, |
|
|
integer | px, |
|
|
integer | py, |
|
|
integer | pz, |
|
|
integer | nctrlmax ) |
Definition at line 28 of file bulkigeo3.F.
31
32
33
34#include "implicit_f.inc"
35
36
37
38#include "vect01_c.inc"
39#include "param_c.inc"
40
41
42
43 INTEGER NCTRL, NCTRLMAX, MAT(*), PX,PY,PZ
44
46 . vnige(nctrlmax,*),bnige(nctrlmax,*),volu(*),
47 . pm(npropm,*)
48
49
50
51 INTEGER I, J, N
52
54 . av1,cv1
55
56
57 IF(nctrl==0) RETURN
58
59
60 DO i=lft,llt
61 av1 = volu(i)/nctrl
62 cv1 = pm(32,mat(i))*av1
63 DO n=1,nctrl
64 vnige(n,i)=av1
65 bnige(n,i)=cv1
66 ENDDO
67 ENDDO
68
69
70
71
72
73 RETURN