OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s8e_sig.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine s8e_sigp (elbuf_tab, sigp, nel)

Function/Subroutine Documentation

◆ s8e_sigp()

subroutine s8e_sigp ( type (elbuf_struct_), target elbuf_tab,
sigp,
integer, intent(in) nel )

Definition at line 33 of file s8e_sig.F.

35C-----------------------------------------------
36C M o d u l e s
37C-----------------------------------------------
38 USE elbufdef_mod
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 INTEGER, INTENT(IN) :: NEL
50C REAL
52 . sigp(nel,6)
53 TYPE (ELBUF_STRUCT_), TARGET :: ELBUF_TAB
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57 INTEGER ILAY,IP,IR,IS,IT,NPTR,NPTS,NPTT,I,J
58 INTEGER EPSIP(NEL)
59c-----------------------------------------------------
60 my_real
61 . epmin(nel)
62C-----
63 TYPE(G_BUFEL_) ,POINTER :: GBUF
64 TYPE(L_BUFEL_) ,POINTER :: LBUF
65C-----------------------------------------------
66 gbuf => elbuf_tab%GBUF
67 nptr = elbuf_tab%NPTR
68 npts = elbuf_tab%NPTS
69 nptt = elbuf_tab%NPTT
70 epmin(1:nel)=gbuf%PLA(1:nel)
71 epsip(1:nel)=1
72 ilay = 1
73 DO ir=1,nptr
74 DO is=1,npts
75 DO it=1,nptt
76C-----------
77 ip = ir + ( (is-1) + (it-1)*npts )*nptr
78 lbuf => elbuf_tab%BUFLY(ilay)%LBUF(ir,is,it)
79
80 DO i=1,nel
81 IF (lbuf%PLA(i)<=epmin(i).AND.lbuf%PLA(i)>zero) THEN
82 epsip(i) = ip
83 epmin(i) = lbuf%PLA(i)
84 END IF
85 END DO
86C
87 ENDDO ! IT=1,NPTT
88 ENDDO ! IS=1,NPTS
89 ENDDO ! IR=1,NPTR
90C
91 DO ir=1,nptr
92 DO is=1,npts
93 DO it=1,nptt
94C-----------
95 ip = ir + ( (is-1) + (it-1)*npts )*nptr
96 lbuf => elbuf_tab%BUFLY(ilay)%LBUF(ir,is,it)
97
98 CALL s8esigp3i(1 ,nel ,sigp ,lbuf%SIG,epsip,ip,nel )
99C
100 ENDDO ! IT=1,NPTT
101 ENDDO ! IS=1,NPTS
102 ENDDO ! IR=1,NPTR
103C
104 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine s8esigp3i(lft, llt, sigp, sigpi, epsip, ip, nel)
Definition s8esigp3i.F:29