OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
read_elgroup_param.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!|| read_elgroup_param ../engine/source/output/restart/read_elgroup_param.F
25!||--- called by ------------------------------------------------------
26!|| rdresb ../engine/source/output/restart/rdresb.F
27!||--- calls -----------------------------------------------------
28!|| read_db ../common_source/tools/input_output/read_db.F
29!||--- uses -----------------------------------------------------
30!|| mat_elem_mod ../common_source/modules/mat_elem/mat_elem_mod.F90
31!||====================================================================
32 SUBROUTINE read_elgroup_param(MAT_ELEM)
33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE mat_elem_mod
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C D u m m y A r g u m e n t s
43C-----------------------------------------------
44 TYPE (MAT_ELEM_) ,INTENT(INOUT) :: MAT_ELEM
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER NG,NGROUP,LEN
49 my_real, DIMENSION(:,:), ALLOCATABLE :: rbuf
50C=======================================================================
51c allocation of element group parameters
52 ngroup = mat_elem%NGROUP
53 ALLOCATE (mat_elem%GROUP_PARAM(ngroup) )
54
55 len = 2
56 ALLOCATE(rbuf(ngroup,len))
57 CALL read_db(rbuf, len*ngroup)
58c
59 DO ng = 1, ngroup
60 mat_elem%GROUP_PARAM(ng)%VISC_DM = rbuf(ng,1)
61 mat_elem%GROUP_PARAM(ng)%VISC_DN = rbuf(ng,2)
62 ENDDO
63c
64 DEALLOCATE( rbuf )
65c-----------
66 RETURN
67 END
#define my_real
Definition cppsort.cpp:32
subroutine read_db(a, n)
Definition read_db.F:88
subroutine read_elgroup_param(mat_elem)