#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | w_r3nloc (rtab, nodglob, numnod_l, len_am) |
◆ w_r3nloc()
| subroutine w_r3nloc |
( |
| rtab, |
|
|
integer, dimension(*) | nodglob, |
|
|
integer | numnod_l, |
|
|
integer | len_am ) |
Definition at line 30 of file w_r3nloc.F.
31
32
33
34#include "implicit_f.inc"
35
36
37
38 INTEGER NODGLOB(*), NUMNOD_L, LEN_AM
40 . rtab(3,*)
41
42
43
44 INTEGER I, N
45 my_real,
DIMENSION(:,:),
ALLOCATABLE :: rtmp
46
47
48 ALLOCATE( rtmp(3,numnod_l) )
49
50
51 DO i = 1, numnod_l
52 n = nodglob(i)
53 rtmp(1,i) = rtab(1,n)
54 rtmp(2,i) = rtab(2,n)
55 rtmp(3,i) = rtab(3,n)
56 ENDDO
57
59 len_am = len_am + 3*numnod_l
60
61
62 DEALLOCATE( rtmp )
63
64 RETURN
subroutine write_db(a, n)