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

Go to the source code of this file.

Functions/Subroutines

subroutine w_rnloc (rtab, nodglob, numnod_l, len_am)

Function/Subroutine Documentation

◆ w_rnloc()

subroutine w_rnloc ( rtab,
integer, dimension(*) nodglob,
integer numnod_l,
integer len_am )

Definition at line 30 of file w_rnloc.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 NODGLOB(*), NUMNOD_L, LEN_AM
40 . rtab(*)
41C-----------------------------------------------
42C L o c a l V a r i a b l e s
43C-----------------------------------------------
44 INTEGER I
45 my_real, DIMENSION(:), ALLOCATABLE :: rtmp
46C-----------------------------------------------
47! allocate 1d array
48 ALLOCATE( rtmp(numnod_l) )
49! --------------------------------
50C
51 DO i = 1, numnod_l
52 rtmp(i) = rtab(nodglob(i))
53 ENDDO
54C
55 CALL write_db(rtmp,numnod_l)
56 len_am = len_am + numnod_l
57C
58! --------------------------------
59! deallocate 1d array
60 DEALLOCATE( rtmp )
61! --------------------------------
62 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine write_db(a, n)
Definition write_db.F:140