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