#include "implicit_f.inc"
#include "param_c.inc"
Go to the source code of this file.
|
| subroutine | i17sti3 (ixs, pm, nme, nmes, nelm, nels, km, ks) |
◆ i17sti3()
| subroutine i17sti3 |
( |
integer, dimension(nixs,*) | ixs, |
|
|
| pm, |
|
|
integer | nme, |
|
|
integer | nmes, |
|
|
integer, dimension(nme) | nelm, |
|
|
integer, dimension(nmes) | nels, |
|
|
| km, |
|
|
| ks ) |
Definition at line 28 of file i17sti3.F.
31
32
33
34#include "implicit_f.inc"
35
36
37
38#include "param_c.inc"
39
40
41
42 INTEGER IXS(NIXS,*),NME ,NMES ,NELM(NME),NELS(NMES)
44 . pm(npropm,*),km(2,*),ks(2,*)
45
46
47
48 INTEGER I,IE,MAT
49
51 . young,nu,c1,rho
52
53
54
55 DO i=1,nme
56 ie = nelm(i)
57 mat = ixs(1,ie)
58 rho = pm(89,mat)
59 young = pm(20,mat)
60 c1 = pm(32,mat)
61 IF(young == zero) young = c1
62 nu = pm(21,mat)
63 km(1,i) = (one-nu*nu) / young
64 km(2,i) = rho
65 ENDDO
66
67 DO i=1,nmes
68 ie = nels(i)
69 mat = ixs(1,ie)
70 rho = pm(89,mat)
71 young = pm(20,mat)
72 c1 = pm(32,mat)
73 IF(young == zero) young = c1
74 nu = pm(21,mat)
75 ks(1,i) = (one-nu*nu) / young
76 ks(2,i) = rho
77 ENDDO
78
79 RETURN