#include "implicit_f.inc"
#include "com01_c.inc"
#include "com04_c.inc"
#include "param_c.inc"
Go to the source code of this file.
|
| subroutine | inimu3 (pm, ix, f, df) |
◆ inimu3()
| subroutine inimu3 |
( |
| pm, |
|
|
integer, dimension(nixs,*) | ix, |
|
|
| f, |
|
|
| df ) |
Definition at line 29 of file inimu3.F.
30 use element_mod , only : nixs
31
32
33
34
35#include "implicit_f.inc"
36
37
38
39#include "com01_c.inc"
40#include "com04_c.inc"
41#include "param_c.inc"
42
43
44
45 INTEGER :: IX(NIXS,*)
46 my_real :: pm(npropm,*), f(numnod,*), df(numnod,*)
47
48
49
50 INTEGER :: I, MAT, LAW, M, J, N
52
53
54 DO i=1,numels
55 mat=iabs(ix(1,i))
56 law=int(pm(19,mat))
57 IF(law/=20)cycle
58 DO m=1,nmult
59 alph=pm(30+m,mat)
60 DO j=2,9
61 n=ix(j,i)
62 f(n,m)=f(n,m)+alph
63 df(n,m)=df(n,m) + one
64 END DO
65 END DO
66 END DO
67
68 RETURN