#include "implicit_f.inc"
#include "mvsiz_p.inc"
#include "com04_c.inc"
#include "param_c.inc"
Go to the source code of this file.
|
| subroutine | cssp2a11 (pm, imat, ssp, a11, nel, iflag) |
◆ cssp2a11()
| subroutine cssp2a11 |
( |
intent(in) | pm, |
|
|
integer | imat, |
|
|
intent(in) | ssp, |
|
|
intent(inout) | a11, |
|
|
integer | nel, |
|
|
integer, intent(in) | iflag ) |
Definition at line 31 of file cssp2a11.F.
32
33
34
35#include "implicit_f.inc"
36
37
38
39#include "mvsiz_p.inc"
40
41
42
43#include "com04_c.inc"
44#include "param_c.inc"
45
46
47
48 INTEGER , INTENT(IN) :: IFLAG
49 INTEGER IMAT ,NEL
50 my_real,
DIMENSION(NPROPM,NUMMAT),
INTENT(IN) :: pm
51 my_real,
DIMENSION(MVSIZ),
INTENT(IN) :: ssp
52 my_real,
DIMENSION(MVSIZ),
INTENT(INOUT) :: a11
53
54
55
57
58 rho0 = pm(1,imat)
59
60 IF (iflag .EQ. 2) THEN
61 a11(1:nel) = rho0*ssp(1:nel)*ssp(1:nel)
62 ELSE
63 a11(1:nel) = pm(24,imat)
64 END IF
65
66 RETURN