OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dichotomy_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!|| mapping_option_mod ../starter/share/modules1/dichotomy_mod.F
25!||--- called by ------------------------------------------------------
26!|| create_map_tables ../starter/source/model/sets/map_tables.F
27!|| hm_read_inistate_d00 ../starter/source/elements/initia/hm_read_inistate_d00.F
28!|| hm_read_lines ../starter/source/groups/hm_read_lines.F
29!|| hm_read_surf ../starter/source/groups/hm_read_surf.F
30!|| hm_read_thgrou ../starter/source/output/th/hm_read_thgrou.F
31!|| hm_set ../starter/source/model/sets/hm_set.F
32!|| lec_inistate ../starter/source/elements/initia/lec_inistate.F
33!|| lectur ../starter/source/starter/lectur.F
34!|| sort_set ../starter/source/model/sets/sort_sets.F
35!||====================================================================
37!$COMMENT
38C-----------------------------------------------
39C Module DESCRIPTION :
40C ===================
41C Structure which hosts all dochotomy Mappting tables.
42C-----------------------------------------------
43C DUMMY ARGUMENTS DESCRIPTION:
44C ===================
45C
46C NAME DESCRIPTION
47C
48C SET_LIST List of sorted SETs
49C===========================================================================================
50
51!$ENDCOMMENT
52C-----------------------------------------------
53C m y _ r e a l
54C-----------------------------------------------
55C-----------------------------------------------
56C D e r i v e d T y p e D e f i n i t i o n s
57C-----------------------------------------------
59 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ipartm
60 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isetm
61 INTEGER :: nset_general
62 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isetcolm
63 INTEGER :: nset_collect
64 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isolm
65 INTEGER, DIMENSION(:,:), ALLOCATABLE :: iquadm
66 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ish4nm
67 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ish3nm
68 INTEGER, DIMENSION(:,:), ALLOCATABLE :: itriam
69 INTEGER, DIMENSION(:,:), ALLOCATABLE :: itrussm
70 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ibeamm
71 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ISPRINGM
72 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isubsm ! subsets
73 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isubmm ! submodels
74 INTEGER, DIMENSION(:,:), ALLOCATABLE :: ielmurm ! Renault element
75 INTEGER, DIMENSION(:,:), ALLOCATABLE :: isphm ! SPH
76 INTEGER, DIMENSION(:,:), ALLOCATABLE :: irivetm ! Rivet
77 INTEGER, DIMENSION(:,:), ALLOCATABLE :: irbodym ! Rbody
78
79 END TYPE mapping_struct_
80c
81c--------------------------
82 END MODULE mapping_option_mod