OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
h3d_constit.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_constit ../engine/source/output/h3d/h3d_build_fortran/h3d_constit.F
25!||--- called by ------------------------------------------------------
26!|| genh3d ../engine/source/output/h3d/h3d_results/genh3d.F
27!||--- calls -----------------------------------------------------
28!|| my_orders ../common_source/tools/sort/my_orders.c
29!||--- uses -----------------------------------------------------
30!|| message_mod ../engine/share/message_module/message_mod.F
31!||====================================================================
32 SUBROUTINE h3d_constit(ITAB,ITABM1,NUMNOD)
33 USE message_mod
34C
35C CONSTITUTION DU TABLEAU INVERSE DES NOEUDS
36C ITABM1(J)=NO USER ITABM1(NUMNOD+J)=NO SYSTEME
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 NUMNOD
45 INTEGER ITAB(*), ITABM1(*)
46C-----------------------------------------------
47C L o c a l V a r i a b l e s
48C-----------------------------------------------
49 INTEGER I
50 INTEGER WORK(70000), INDX(2*NUMNOD)
51C-----------------------------------------------
52C E x t e r n a l F u n c t i o n s
53C-----------------------------------------------
54 INTEGER IREC
55C-----------------------------------------------
56C S o u r c e L i n e s
57C-----------------------------------------------
58 DO i = 1, numnod
59 indx(i) = i
60 END DO
61
62 CALL my_orders(0,work,itab,indx,numnod,1)
63
64 IF(numnod>=1)THEN
65 itabm1(1) = itab(indx(1))
66 itabm1(numnod+1) = indx(1)
67 ENDIF
68
69 DO i = 2, numnod
70 itabm1(i) = itab(indx(i))
71 itabm1(numnod+i) = indx(i)
72 END DO
73
74 RETURN
75 END
subroutine h3d_constit(itab, itabm1, numnod)
Definition h3d_constit.F:33
void my_orders(int *mode, int *iwork, int *data, int *index, int *n, int *irecl)
Definition my_orders.c:82