OpenRadioss
2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
stack_mod.F
Go to the documentation of this file.
1
Copyright> OpenRadioss
2
Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3
Copyright>
4
Copyright> This program is free software: you can redistribute it and/or modify
5
Copyright> it under the terms of the GNU Affero General Public License as published by
6
Copyright> the Free Software Foundation, either version 3 of the License, or
7
Copyright> (at your option) any later version.
8
Copyright>
9
Copyright> This program is distributed in the hope that it will be useful,
10
Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11
Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
Copyright> GNU Affero General Public License for more details.
13
Copyright>
14
Copyright> You should have received a copy of the GNU Affero General Public License
15
Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16
Copyright>
17
Copyright>
18
Copyright> Commercial Alternative: Altair Radioss Software
19
Copyright>
20
Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21
Copyright> software under a commercial license. Contact Altair to discuss further if the
22
Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23
!||====================================================================
24
!|| stack_mod ../starter/share/modules1/stack_mod.F
25
!||--- called by ------------------------------------------------------
26
!|| brokmann_random ../starter/source/materials/fail/windshield_alter/brokmann_random.F90
27
!|| c3grhead ../starter/source/elements/sh3n/coque3n/c3grhead.F
28
!|| c3grtails ../starter/source/elements/sh3n/coque3n/c3grtails.F
29
!|| c3init3 ../starter/source/elements/sh3n/coque3n/c3init3.F
30
!|| c3inmas ../starter/source/elements/sh3n/coque3n/c3inmas.F
31
!|| cbainit3 ../starter/source/elements/shell/coqueba/cbainit3.F
32
!|| cbufxfe ../starter/source/elements/xfem/cbufxfe.F
33
!|| cdkinit3 ../starter/source/elements/sh3n/coquedk/cdkinit3.F
34
!|| cgrhead ../starter/source/elements/shell/coque/cgrhead.F
35
!|| cgrtails ../starter/source/elements/shell/coque/cgrtails.F
36
!|| check_mat_elem_prop_compatibility ../starter/source/materials/mat/check_mat_elem_prop_compatibility.F
37
!|| check_pthickfail ../starter/source/materials/fail/check_pthickfail.F
38
!|| cinit3 ../starter/source/elements/shell/coque/cinit3.F
39
!|| cinmas ../starter/source/elements/shell/coque/cinmas.F
40
!|| cmaini3 ../starter/source/elements/sh3n/coquedk/cmaini3.F
41
!|| corthdir ../starter/source/elements/shell/coque/corthdir.F
42
!|| corthini ../starter/source/elements/shell/coque/corthini.F
43
!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
44
!|| elbuf_ini ../starter/source/elements/elbuf_init/elbuf_ini.F
45
!|| fractal_element_neighbor ../starter/source/materials/fail/fractal/fractal_element_neighbor.F90
46
!|| hm_read_drape ../starter/source/properties/composite_options/drape/hm_read_drape.F
47
!|| hm_read_inistate_d00 ../starter/source/elements/initia/hm_read_inistate_d00.F
48
!|| hm_read_prop17 ../starter/source/properties/shell/hm_read_prop17.F
49
!|| hm_read_prop51 ../starter/source/properties/shell/hm_read_prop51.F
50
!|| hm_read_properties ../starter/source/properties/hm_read_properties.F
51
!|| hm_read_stack ../starter/source/stack/hm_read_stack.F
52
!|| i2buc1 ../starter/source/interfaces/inter3d1/i2buc1.F
53
!|| i2trivox ../starter/source/interfaces/inter3d1/i2trivox.F90
54
!|| inint3 ../starter/source/interfaces/inter3d1/inint3.F
55
!|| inintr ../starter/source/interfaces/interf1/inintr.F
56
!|| inirig_mat ../starter/source/elements/initia/inirig_mat.F
57
!|| initia ../starter/source/elements/initia/initia.F
58
!|| inivoid ../starter/source/elements/initia/inivoid.F
59
!|| layini1 ../starter/source/elements/shell/coqueba/layini1.F
60
!|| layini_xfe ../starter/source/elements/xfem/cbufxfe.F
61
!|| lec_inistate ../starter/source/elements/initia/lec_inistate.F
62
!|| lecstack_ply ../starter/source/properties/composite_options/stack/lecstack_ply.F
63
!|| lectur ../starter/source/starter/lectur.F
64
!|| pre_stackgroup ../starter/source/stack/pres_stackgroup.F
65
!|| random_walk_dmg ../starter/source/materials/fail/fractal/random_walk_dmg.F90
66
!|| shellthk_upd ../starter/source/properties/composite_options/drape/shellthk_upd.F
67
!|| spmd_anim_ply_init ../starter/source/spmd/spmd_anim_ply_init.F
68
!|| stack_var_mod ../starter/share/modules1/stack_var_mod.F
69
!|| stackgroup ../starter/source/stack/stackgroup.F
70
!|| stackgroup_drape ../starter/source/stack/stackgroup_drape.F
71
!|| t3grhead ../starter/source/elements/solid_2d/tria/t3grhead.F
72
!|| t3grtails ../starter/source/elements/solid_2d/tria/t3grtails.F
73
!|| updfail ../starter/source/materials/updfail.F90
74
!||====================================================================
75
MODULE
stack_mod
76
C-----------------------------------------------
77
C m y _ r e a l
78
C-----------------------------------------------
79
#include "my_real.inc"
80
C---------------------------------------------
81
C Structures needed for stack (PID17) properties
82
C---------------------------------------------
83
C PLY Nodes structures for animations
84
integer
,
parameter
::
stack_s_pm1
= 20
!< first dimension of pm array
85
TYPE
stack_ply
86
integer
:: s_pm2
!< second dimension of pm array
87
INTEGER
,
DIMENSION (:,:)
,
ALLOCATABLE
:: igeo
! IGEO TABLE
88
my_real
,
DIMENSION (:,:)
,
ALLOCATABLE
:: geo , pm
! GEO, PM
89
END TYPE
stack_ply
90
C
91
TYPE
stack_info_
92
INTEGER
,
DIMENSION (:)
,
POINTER
:: pid
93
INTEGER
,
DIMENSION (:)
,
POINTER
:: mid
94
INTEGER
,
DIMENSION (:)
,
POINTER
:: mid_ip
95
INTEGER
,
DIMENSION (:)
,
POINTER
:: sub
96
INTEGER
,
DIMENSION (:)
,
POINTER
:: isub
97
my_real
,
DIMENSION (:)
,
POINTER
:: ang
98
my_real
,
DIMENSION (:)
,
POINTER
:: thk
!
99
my_real
,
DIMENSION (:)
,
POINTER
:: pos
!
100
my_real
,
DIMENSION (:)
,
POINTER
:: thkly
101
my_real
,
DIMENSION (:)
,
POINTER
:: weight
102
my_real
,
DIMENSION (:)
,
POINTER
:: dir
!
103
END TYPE
stack_info_
104
C
105
END MODULE
stack_mod
106
my_real
#define my_real
Definition
cppsort.cpp:32
stack_mod
Definition
stack_mod.F:75
stack_mod::stack_s_pm1
integer, parameter stack_s_pm1
first dimension of pm array
Definition
stack_mod.F:84
stack_mod::stack_info_
Definition
stack_mod.F:91
stack_mod::stack_ply
Definition
stack_mod.F:85
starter
share
modules1
stack_mod.F
Generated by
1.15.0