OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
surf_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!|| surf_mod ../starter/share/modules1/surf_mod.F
25!||--- called by ------------------------------------------------------
26!|| create_surface_from_element ../starter/source/model/sets/create_surface_from_element.F
27!|| deallocate_surf_elm ../starter/source/groups/init_surf_elm.F
28!|| fill_igr ../starter/source/model/sets/fill_igr.F
29!|| hm_read_lines ../starter/source/groups/hm_read_lines.F
30!|| hm_read_sensors ../starter/source/tools/sensor/hm_read_sensors.F
31!|| hm_read_surf ../starter/source/groups/hm_read_surf.F
32!|| init_surf_elm ../starter/source/groups/init_surf_elm.F
33!|| ssurftag ../starter/source/groups/ssurftag.F
34!|| surface_type ../starter/source/model/sets/surface_type.F90
35!|| surftag ../starter/source/groups/surftag.F
36!||====================================================================
37 MODULE surf_mod
38C-----------------------------------------------
39C m y _ r e a l
40C-----------------------------------------------
41#include "my_real.inc"
42 INTEGER, PARAMETER :: ext_surf = 1 !< definition of /EXT surface
43 INTEGER, PARAMETER :: all_surf = 2 !< definition of /ALL surface
44C-----------------------------------------------
45C D e r i v e d T y p e D e f i n i t i o n s
46C-----------------------------------------------
48!--------------------------------------------------------------------
49! NSOL : number of solid (/= solid10) element per part
50! NSOL10 : number of solid10 element per part
51! NSHELL : number of shell element per part
52! NTRI : number of shell3n element per part
53! NTRUSS : number of truss element per part
54! NBEAM : number of beam element per part
55! NSPRING : number of spring element per part
56! SOL_PART : ID of each solid (/=solid10) element in the current part
57! SOL10_PART : ID of each solid10 element in the current part
58! SHELL_PART : ID of each shell element in the current part
59! TRI_PART : ID of each shell3n element in the current part
60! TRUSS_PART : ID of each truss element in the current part
61! BEAM_PART : ID of each beam element in the current part
62! SPRING_PART : ID of each spring element in the current part
63!--------------------------------------------------------------------
64 INTEGER :: nsol,nsol10,nshell,ntri
65 INTEGER :: ntruss,nbeam,nspring
66 INTEGER, DIMENSION(:), ALLOCATABLE :: sol_part
67 INTEGER, DIMENSION(:), ALLOCATABLE :: sol10_part
68 INTEGER, DIMENSION(:), ALLOCATABLE :: shell_part
69 INTEGER, DIMENSION(:), ALLOCATABLE :: tri_part
70 INTEGER, DIMENSION(:), ALLOCATABLE :: truss_part
71 INTEGER, DIMENSION(:), ALLOCATABLE :: beam_part
72 INTEGER, DIMENSION(:), ALLOCATABLE :: spring_part
73
74 END TYPE part_type
75C
76 END MODULE surf_mod
integer, parameter ext_surf
definition of /EXT surface
Definition surf_mod.F:42
integer, parameter all_surf
definition of /ALL surface
Definition surf_mod.F:43