OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
h3d_ini.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!|| h3d_ini ../engine/source/output/h3d/h3d_build_fortran/h3d_ini.F
25!||--- called by ------------------------------------------------------
26!|| freform ../engine/source/input/freform.F
27!||--- uses -----------------------------------------------------
28!|| h3d_mod ../engine/share/modules/h3d_mod.F
29!||====================================================================
30 SUBROUTINE h3d_ini(H3D_DATA,KH3D,NSLASH)
31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34 USE h3d_mod
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 TYPE (H3D_DATABASE) :: H3D_DATA
43 INTEGER KH3D,NSLASH(*)
44C-----------------------------------------------
45C L o c a l V a r i a b l e s
46C-----------------------------------------------
47 INTEGER I,NH3D,KCUR
48
49C=========================================================================
50 kcur = kh3d
51 nh3d = nslash(kcur)
52c
53 IF (nh3d /= 0) THEN
54 ALLOCATE(h3d_data%INPUT_LIST(10000))
55 h3d_data%N_INPUT_H3D = 0
56c
57 ALLOCATE(h3d_data%PARTS(1))
58c
59 ELSE
60 ALLOCATE(h3d_data%INPUT_LIST(1))
61c
62 ALLOCATE(h3d_data%PARTS(1))
63c
64 ENDIF
65c
66 h3d_data%IH3D = 0
67 h3d_data%IH3D_RUN = 0
68 h3d_data%N_INPUT_H3D = 0
69 h3d_data%IPART_SELECT = 0
70 h3d_data%MH3D = 0
71 h3d_data%N_OUTP_H3D = 0
72c
73 h3d_data%N_SCAL_DT = 0
74 h3d_data%N_SCAL_DMAS = 0
75 h3d_data%N_SCAL_DINER = 0
76 h3d_data%N_SCAL_DAMA2 = 0
77 h3d_data%N_SCAL_SKID = 0
78 h3d_data%N_SCAL_STIFR = 0
79 h3d_data%N_SCAL_STIFN = 0
80 h3d_data%N_SCAL_CSE_FRICINT = 0
81 h3d_data%N_SCAL_CSE_FRIC = 0
82c
83 h3d_data%N_VECT_CONT = 0
84 h3d_data%N_VECT_FINT = 0
85 h3d_data%N_VECT_FEXT = 0
86 h3d_data%N_VECT_PCONT = 0
87 h3d_data%N_VECT_CONT2 = 0
88 h3d_data%N_VECT_PCONT2 = 0
89 h3d_data%N_VECT_DROT = 0
90 h3d_data%N_VECT_DXANC = 0
91 h3d_data%N_VECT_FREAC = 0
92 h3d_data%N_VECT_MREAC = 0
93 h3d_data%N_VECT_CLUST_FORCE = 0
94 h3d_data%N_VECT_CLUST_MOM = 0
95 h3d_data%N_VECT_CONT_MAX = 0
96 h3d_data%N_VECT_PCONT_MAX = 0
97 h3d_data%N_VECT_CONT2_MAX = 0
98 h3d_data%N_VECT_PCONT2_MAX = 0
99 h3d_data%N_VECT_CONT2_MIN = 0
100 h3d_data%N_VECT_PCONT2_MIN = 0
101 h3d_data%N_VECT_CONT2M = 0
102 h3d_data%UND_FORC = 0
103c
104 h3d_data%SH_SCAL_ERR_THK = 0
105c
106 h3d_data%RBODY_SINGLE = 0
107 h3d_data%RBE2_SINGLE = 0
108 h3d_data%RBE3_SINGLE = 0
109c
110 h3d_data%TH3D = ep30
111 h3d_data%DTH3D = zero
112 h3d_data%TH3D_STOP = zero
113 h3d_data%TH3D0 = zero
114 h3d_data%DTH3D0 = zero
115 h3d_data%TH3D_STOP0 = ep30
116 h3d_data%PERCENTAGE_ERROR = zero
117 h3d_data%COMP_LEVEL = 7
118 h3d_data%STRAIN = 0
119
120 END
subroutine h3d_ini(h3d_data, kh3d, nslash)
Definition h3d_ini.F:31