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

Go to the source code of this file.

Functions/Subroutines

subroutine findgroupc (iparg, igrouc, ngrouc, igroupc, igrouptg)
subroutine findgroups (iparg, igroups)

Function/Subroutine Documentation

◆ findgroupc()

subroutine findgroupc ( integer, dimension(nparg,*) iparg,
integer, dimension(*) igrouc,
integer ngrouc,
integer, dimension(numelc) igroupc,
integer, dimension(numeltg) igrouptg )

Definition at line 28 of file findgroup.F.

30C----6---------------------------------------------------------------7---------8
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C C o m m o n B l o c k s
36C-----------------------------------------------
37#include "com04_c.inc"
38#include "param_c.inc"
39C-----------------------------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER IPARG(NPARG,*), NGROUC, IGROUC(*)
43 INTEGER IGROUPC(NUMELC), IGROUPTG(NUMELTG)
44C-----------------------------------------------
45C L o c a l V a r i a b l e s
46C-----------------------------------------------
47 INTEGER I, IG, NG, NEL, NFT, ITY
48C-----------------------------------------------
49C
50 DO ig = 1, ngrouc
51 ng =igrouc(ig)
52 nel =iparg(2,ng)
53 nft =iparg(3,ng)
54 ity =iparg(5,ng)
55 IF(ity==3) THEN
56 DO i=1,nel
57 igroupc(i+nft)=ng
58 ENDDO
59 ELSEIF(ity==7) THEN
60 DO i=1,nel
61 igrouptg(i+nft)=ng
62 ENDDO
63 ENDIF
64 ENDDO
65C
66 RETURN

◆ findgroups()

subroutine findgroups ( integer, dimension(nparg,*) iparg,
integer, dimension(numels) igroups )

Definition at line 73 of file findgroup.F.

74C----6---------------------------------------------------------------7---------8
75C I m p l i c i t T y p e s
76C-----------------------------------------------
77#include "implicit_f.inc"
78C-----------------------------------------------
79C C o m m o n B l o c k s
80C-----------------------------------------------
81#include "com01_c.inc"
82#include "com04_c.inc"
83#include "param_c.inc"
84C-----------------------------------------------------------------
85C D u m m y A r g u m e n t s
86C-----------------------------------------------
87 INTEGER IPARG(NPARG,*)
88 INTEGER IGROUPS(NUMELS)
89C-----------------------------------------------
90C L o c a l V a r i a b l e s
91C-----------------------------------------------
92 INTEGER I, NG, NEL, NFT, ITY
93C-----------------------------------------------
94C
95 DO ng = 1, ngroup
96 nel =iparg(2,ng)
97 nft =iparg(3,ng)
98 ity =iparg(5,ng)
99 IF(ity == 1) THEN
100 DO i=1,nel
101 igroups(i+nft)=ng
102 ENDDO
103 ENDIF
104 ENDDO
105C
106 RETURN