OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
cssp2a11.F File Reference
#include "implicit_f.inc"
#include "mvsiz_p.inc"
#include "com04_c.inc"
#include "param_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine cssp2a11 (pm, imat, ssp, a11, nel, iflag)

Function/Subroutine Documentation

◆ 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.

32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------
37C G l o b a l P a r a m e t e r s
38C-----------------------------------------------
39#include "mvsiz_p.inc"
40C-----------------------------------------------
41C C o m m o n B l o c k s
42C-----------------------------------------------
43#include "com04_c.inc"
44#include "param_c.inc"
45C-----------------------------------------------
46C D u m m y A r g u m e n t s
47C-----------------------------------------------
48 INTEGER , INTENT(IN) :: IFLAG ! 1:from PM 2:from SSP
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
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56 my_real rho0
57C=======================================================================
58 rho0 = pm(1,imat)
59C A11(1:NEL) = RHO0*SSP(1:NEL)*SSP(1:NEL)
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
65C-----------
66 RETURN
#define my_real
Definition cppsort.cpp:32