#include "implicit_f.inc"
#include "com04_c.inc"
Go to the source code of this file.
|
| subroutine | asstifi (volnod, bvolnod, etnod, nshnod, stifint) |
◆ asstifi()
| subroutine asstifi |
( |
| volnod, |
|
|
| bvolnod, |
|
|
| etnod, |
|
|
integer, dimension(*) | nshnod, |
|
|
| stifint ) |
Definition at line 28 of file asstifi.F.
29
30
31
32#include "implicit_f.inc"
33
34
35
36#include "com04_c.inc"
37
38
39
40 INTEGER NSHNOD(*)
42 . volnod(*), bvolnod(*), etnod(*), stifint(*)
43
44
45
46 INTEGER N
47
48 DO n=1,numnod
49 bvolnod(n)=bvolnod(n)/
max(em30,volnod(n))
50 stifint(n)=stifint(n)+bvolnod(n)*(2.*volnod(n))**third
51 IF(nshnod(n)>0)
52 . stifint(n)=stifint(n)+etnod(n)/nshnod(n)
53 ENDDO
54
55 RETURN