OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_h3d_shell_off.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!|| h3d_shell_off ../engine/source/output/h3d/spmd/spmd_h3d_shell_off.F
25!||--- called by ------------------------------------------------------
26!|| genh3d ../engine/source/output/h3d/h3d_results/genh3d.F
27!||--- uses -----------------------------------------------------
28!|| elbufdef_mod ../common_source/modules/mat_elem/elbufdef_mod.F90
29!|| element_mod ../common_source/modules/elements/element_mod.F90
30!||====================================================================
31 SUBROUTINE h3d_shell_off(ELBUF_TAB, IPARG, IXC, IXTG,NUMELC, SHELL_SCALAR, ID_ELEM, ITY_ELEM,
32 . IPART , IPARTC ,IPARTTG)
33C----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE elbufdef_mod
37 use element_mod , only : nixc,nixtg
38C-----------------------------------------------
39C I m p l i c i t T y p e s
40C-----------------------------------------------
41#include "implicit_f.inc"
42C-----------------------------------------------
43C C o m m o n B l o c k s
44C-----------------------------------------------
45#include "com01_c.inc"
46#include "param_c.inc"
47#include "scr17_c.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
51 TYPE (ELBUF_STRUCT_), DIMENSION(NGROUP), TARGET :: ELBUF_TAB
52 INTEGER NUMELC
53 INTEGER IPARG(NPARG,*),IXC(NIXC,*),IXTG(NIXTG,*), ID_ELEM(*), ITY_ELEM(*),
54 . ipart(lipart1,*), ipartc(*), iparttg(*)
56 . shell_scalar(*)
57
58C-----------------------------------------------
59C L O C A L V A R I A B L E S
60C-----------------------------------------------
61 INTEGER OFFSET,ITY,MLW,NEL,NFT,ISOLNOD,NG,I,ILEV,ISEATBELT
62 TYPE(g_bufel_) ,POINTER :: GBUF
63C-----------------------------------------------
64
65 DO ng=1,ngroup
66 mlw =iparg(1,ng)
67 nel =iparg(2,ng)
68 ity =iparg(5,ng)
69 nft =iparg(3,ng)
70 isolnod = iparg(28,ng)
71 ilev =iparg(45,ng)
72 iseatbelt = iparg(91,ng)
73C
74 IF (ity == 3) offset = 0
75 IF (ity == 7) offset = numelc
76c
77 IF(ity == 3 .OR. ity == 7)THEN
78 DO i=1,nel
79 IF (ity == 3) THEN
80 id_elem(offset+nft+i) = ixc(nixc,nft+i)
81 ity_elem(offset+nft+i) = 3
82 ELSEIF (ity == 7) THEN
83 id_elem(offset+nft+i) = ixtg(nixtg,nft+i)
84 ity_elem(offset+nft+i) = 7
85 ENDIF
86 ENDDO
87 ENDIF
88
89 IF(ity == 3 )THEN
90 IF(mlw == 0 .OR. mlw == 13 .or . iseatbelt == 1)THEN
91 DO i=1,nel
92 shell_scalar(offset+nft+i) = one
93 ENDDO
94 ELSE
95 gbuf => elbuf_tab(ng)%GBUF
96 DO i=1,nel
97
98 IF(ipart(10,ipartc(nft+i)) /=0 .AND. nint(min(gbuf%OFF(i),one)) /= one) THEN
99 shell_scalar(offset+nft+i) = zero
100 ELSE
101 shell_scalar(offset+nft+i) = nint(min(gbuf%OFF(i),one))
102 ENDIF
103
104 ENDDO
105 ENDIF
106 ELSEIF(ity == 7 )THEN
107 IF(mlw == 0 .OR. mlw == 13)THEN
108 DO i=1,nel
109 shell_scalar(offset+nft+i) = one
110 ENDDO
111 ELSE
112 gbuf => elbuf_tab(ng)%GBUF
113 DO i=1,nel
114
115 IF(ipart(10,iparttg(nft+i)) /=0 .AND. nint(min(gbuf%OFF(i),one)) /= one) THEN
116 shell_scalar(offset+nft+i) = zero
117 ELSE
118 shell_scalar(offset+nft+i) = nint(min(gbuf%OFF(i),one))
119 ENDIF
120
121 ENDDO
122 ENDIF
123 ENDIF
124 ENDDO
125 RETURN
126 END
#define my_real
Definition cppsort.cpp:32
#define min(a, b)
Definition macros.h:20
subroutine h3d_shell_off(elbuf_tab, iparg, ixc, ixtg, numelc, shell_scalar, id_elem, ity_elem, ipart, ipartc, iparttg)