OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
group_mod.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!|| group_mod ../engine/share/modules/group_mod.F
25!||--- called by ------------------------------------------------------
26!|| group_ini ../engine/source/groups/group_ini.F
27!|| line_ini ../engine/source/groups/line_ini.F
28!|| radioss2 ../engine/source/engine/radioss2.F
29!|| subset_ini ../engine/source/groups/subset_ini.F
30!|| surf_ini ../engine/source/groups/surf_ini.F
31!|| w_group_str ../engine/source/output/restart/w_group_str.F
32!|| wrrestp ../engine/source/output/restart/wrrestp.F
33!||--- uses -----------------------------------------------------
34!|| groupdef_mod ../common_source/modules/groupdef_mod.F
35!||====================================================================
36 MODULE group_mod
37!
38 USE groupdef_mod
39! GROUPS
40 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRNOD ! NGRNOD
41 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRBRIC ! NGRBRIC
42 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRQUAD ! NGRQUAD
43 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRSH4N ! NGRSHEL
44 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRSH3N ! NGRSH3N
45 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRTRUSS ! NGRTRUS
46 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRBEAM ! NGRBEAM
47 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRSPRING ! NGRSPRI
48 TYPE(GROUP_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRPART ! NGRPART
49!
50! OTHER ENTITIES
51!
52 TYPE(SUBSET_) ,TARGET,DIMENSION(:),ALLOCATABLE :: SUBSETS
53 TYPE(SURF_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRSURF ! NSURF ---> old ISURF
54 TYPE(SURF_) ,TARGET,DIMENSION(:),ALLOCATABLE :: IGRSLIN ! NSLIN ---> ISLIN
55!
56 END MODULE group_mod