#include "implicit_f.inc"
#include "mvsiz_p.inc"
Go to the source code of this file.
|
| subroutine | a4mass3p (fskym, rho, volu, iads, off, nel, nft) |
◆ a4mass3p()
| subroutine a4mass3p |
( |
| fskym, |
|
|
| rho, |
|
|
| volu, |
|
|
integer, dimension(8,*) | iads, |
|
|
| off, |
|
|
integer, intent(in) | nel, |
|
|
integer, intent(in) | nft ) |
Definition at line 29 of file a4mass3p.F.
32
33
34#include "implicit_f.inc"
35
36
37
38#include "mvsiz_p.inc"
39
40
41
42 INTEGER, INTENT(IN) :: NEL
43 INTEGER, INTENT(IN) :: NFT
44
46 . fskym(*), rho(*),volu(*),off(*)
47 INTEGER IADS(8,*)
48
49
50
51
52
53
54 INTEGER I, II,
55
57 . dmass(mvsiz)
58
59 DO i=1,nel
60 dmass(i)=fourth*rho(i)*volu(i)*off(i)
61 ENDDO
62
63 DO i=1,nel
64 ii = i +nft
65 k = iads(1,ii)
66 fskym(k)= dmass(i)
67 k = iads(3,ii)
68 fskym(k)= dmass(i)
69 k = iads(6,ii)
70 fskym(k)= dmass(i)
71 k = iads(5,ii)
72 fskym(k)= dmass(i)
73 ENDDO
74
75 RETURN