OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s8e_sig.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| s8e_sigp ../engine/source/elements/solid/solide8e/s8e_sig.F
25!||--- called by ------------------------------------------------------
26!|| s10forc3 ../engine/source/elements/solid/solide10/s10forc3.F
27!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
28!||--- calls -----------------------------------------------------
29!|| s8esigp3i ../engine/source/elements/solid/solide8e/s8esigp3i.F
30!||--- uses -----------------------------------------------------
31!|| elbufdef_mod ../common_source/modules/mat_elem/elbufdef_mod.F90
32!||====================================================================
33 SUBROUTINE s8e_sigp(
34 1 ELBUF_TAB,SIGP,NEL)
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
105 END SUBROUTINE s8e_sigp
#define my_real
Definition cppsort.cpp:32
subroutine s8e_sigp(elbuf_tab, sigp, nel)
Definition s8e_sig.F:35
subroutine s8esigp3i(lft, llt, sigp, sigpi, epsip, ip, nel)
Definition s8esigp3i.F:29