OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_inloc.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine w_inloc (itab, nodglob, numnod_l, len_ia)

Function/Subroutine Documentation

◆ w_inloc()

subroutine w_inloc ( integer, dimension(*) itab,
integer, dimension(*) nodglob,
integer numnod_l,
integer len_ia )

Definition at line 30 of file w_inloc.F.

31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C D u m m y A r g u m e n t s
37C-----------------------------------------------
38 INTEGER ITAB(*), NODGLOB(*), NUMNOD_L, LEN_IA
39C-----------------------------------------------
40C L o c a l V a r i a b l e s
41C-----------------------------------------------
42 INTEGER I
43 INTEGER, DIMENSION(:), ALLOCATABLE :: ITMP
44C
45! --------------------------
46! allocate 1d array
47 ALLOCATE( itmp(numnod_l) )
48! --------------------------
49 DO i = 1, numnod_l
50 itmp(i) = itab(nodglob(i))
51 ENDDO
52C
53 CALL write_i_c(itmp,numnod_l)
54 len_ia = len_ia + numnod_l
55C
56! --------------------------
57! deallocate 1d array
58 DEALLOCATE( itmp )
59! --------------------------
60 RETURN
void write_i_c(int *w, int *len)