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 ../starter/share/modules1/group_mod.F
25!||--- called by ------------------------------------------------------
26!|| lectur ../starter/source/starter/lectur.F
27!|| r2r_exist ../starter/source/coupling/rad2rad/routines_r2r.F
28!|| r2r_group ../starter/source/coupling/rad2rad/r2r_group.F
29!||--- uses -----------------------------------------------------
30!||====================================================================
31 MODULE group_mod
32
33 USE groupdef_mod
34! GROUPS
35 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrnod ! NGRNOD
36 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrbric ! NGRBRIC
37 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrquad ! NGRQUAD
38 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrsh4n ! NGRSHEL
39 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrsh3n ! NGRSH3N
40 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrtruss ! NGRTRUS
41 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrbeam ! NGRBEAM
42 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrspring ! NGRSPRI
43 TYPE(group_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrpart ! NGRPART
44! OTHER ENTITIES
45 TYPE(subset_) ,TARGET,DIMENSION(:),ALLOCATABLE :: subsets ! NSUBS
46 TYPE(SURF_ ) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrsurf ! NSURF ---> old ISURF
47 TYPE(surf_) ,TARGET,DIMENSION(:),ALLOCATABLE :: igrslin ! NSLIN ---> ISLIN
48!
49 END MODULE group_mod
type(group_), dimension(:), allocatable, target igrsh4n
Definition group_mod.F:38
type(group_), dimension(:), allocatable, target igrquad
Definition group_mod.F:37
type(group_), dimension(:), allocatable, target igrbeam
Definition group_mod.F:41
type(surf_), dimension(:), allocatable, target igrsurf
Definition group_mod.F:46
type(group_), dimension(:), allocatable, target igrpart
Definition group_mod.F:43
type(group_), dimension(:), allocatable, target igrtruss
Definition group_mod.F:40
type(group_), dimension(:), allocatable, target igrsh3n
Definition group_mod.F:39
type(group_), dimension(:), allocatable, target igrspring
Definition group_mod.F:42
type(group_), dimension(:), allocatable, target igrbric
Definition group_mod.F:36
type(surf_), dimension(:), allocatable, target igrslin
Definition group_mod.F:47
type(subset_), dimension(:), allocatable, target subsets
Definition group_mod.F:45
type(group_), dimension(:), allocatable, target igrnod
Definition group_mod.F:35