OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
write_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!|| write_elgroup_param ../engine/source/output/restart/write_elgroup_param.F
25!||--- called by ------------------------------------------------------
26!|| wrrestp ../engine/source/output/restart/wrrestp.F
27!||--- calls -----------------------------------------------------
28!|| write_db ../common_source/tools/input_output/write_db.F
29!||--- uses -----------------------------------------------------
30!|| group_param_mod ../common_source/modules/mat_elem/group_param_mod.f90
31!||====================================================================
32 SUBROUTINE write_elgroup_param(GROUP_PARAM_TAB,NGROUP)
33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE group_param_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 INTEGER NGROUP
45 TYPE(group_param_) ,DIMENSION(NGROUP) :: GROUP_PARAM_TAB
46C-----------------------------------------------
47C L o c a l V a r i a b l e s
48C-----------------------------------------------
49 INTEGER NG,LEN
50 my_real, DIMENSION(:,:), ALLOCATABLE :: rbuf
51C=======================================================================
52 len = 2
53 ALLOCATE(rbuf(ngroup,len))
54c
55 DO ng = 1, ngroup
56 rbuf(ng,1) = group_param_tab(ng)%VISC_DM
57 rbuf(ng,2) = group_param_tab(ng)%VISC_DN
58 ENDDO
59C
60 CALL write_db(rbuf,len*ngroup)
61 DEALLOCATE( rbuf )
62c-----------
63 RETURN
64 END
65
#define my_real
Definition cppsort.cpp:32
subroutine write_elgroup_param(group_param_tab, ngroup)
subroutine write_db(a, n)
Definition write_db.F:140