OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
joint_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!|| joint_mod ../starter/share/modules1/joint_mod.F
25!||--- called by ------------------------------------------------------
26!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
27!|| deallocate_joint ../starter/source/constraints/general/cyl_joint/deallocate_joint.F
28!|| hm_read_cyljoint ../starter/source/constraints/general/cyl_joint/hm_read_cyljoint.F
29!|| init_joint ../starter/source/constraints/general/cyl_joint/init_joint.F
30!|| lectur ../starter/source/starter/lectur.F
31!|| print_joint ../starter/source/constraints/general/cyl_joint/split_joint.F
32!|| split_joint ../starter/source/constraints/general/cyl_joint/split_joint.f
33!|| write_joint ../starter/source/constraints/general/cyl_joint/write_joint.F
34!||====================================================================
35 MODULE joint_mod
36!$COMMENT
37! JOINT_MOD description
38! module for /CYL_JOINT option
39!
40! JOINT_MOD organization :
41! the main /CYL_JOINT structure is CYL_JOINT
42! the type(joint_node) proc structure is used for the restart writing
43! the type(joint_main_node) structure is not really useful :)
44!$ENDCOMMENT
46 INTEGER, DIMENSION(:), ALLOCATABLE :: node ! list of node
47 INTEGER :: nb_node_weight ! number of node with weight =1
48 INTEGER, DIMENSION(:), ALLOCATABLE :: weight ! weight array (1 or 0)
49 END TYPE joint_node
51 INTEGER :: proc_main
52 INTEGER :: number_proc
53 INTEGER, DIMENSION(:), ALLOCATABLE :: main_node ! main node
54 INTEGER, DIMENSION(:), ALLOCATABLE :: list_proc ! list of processor
55 INTEGER, DIMENSION(:), ALLOCATABLE :: nb_node ! number of node on
56 TYPE(joint_node), DIMENSION(:), ALLOCATABLE :: proc
57 INTEGER :: nb_secondary_node ! number of secondary node
58 INTEGER, DIMENSION(:),ALLOCATABLE :: secondary_node ! list of secondary node
59 END TYPE joint_type
60
61 TYPE(joint_type), DIMENSION(:), ALLOCATABLE :: cyl_join
62 LOGICAL :: joint_sms
63
65 INTEGER :: id_joint
66 INTEGER :: nb_proc
67 INTEGER, DIMENSION(:), ALLOCATABLE :: proc_list
68 END TYPE joint_main_node
69 END MODULE joint_mod
logical joint_sms
Definition joint_mod.F:62
type(joint_type), dimension(:), allocatable cyl_join
Definition joint_mod.F:61
subroutine split_joint()
Definition split_joint.F:35
program starter
Definition starter.F:39