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

Go to the source code of this file.

Functions/Subroutines

subroutine w_alelag (dflow, vflow, wflow, nodglob, numnod_l, len_am)

Function/Subroutine Documentation

◆ w_alelag()

subroutine w_alelag ( dflow,
vflow,
wflow,
integer, dimension(*) nodglob,
integer numnod_l,
integer len_am )

Definition at line 29 of file w_alelag.F.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C D u m m y A r g u m e n t s
36C-----------------------------------------------
37 INTEGER NODGLOB(*),NUMNOD_L, LEN_AM
39 . dflow(3,*),vflow(3,*),wflow(3,*)
40C-----------------------------------------------
41C L o c a l V a r i a b l e s
42C-----------------------------------------------
43 INTEGER I,N
44 my_real, DIMENSION(:,:), ALLOCATABLE :: rtmp1,rtmp2,rtmp3
45C-----------------------------------------------
46! 2d array
47 ALLOCATE( rtmp1(3,numnod_l),rtmp2(3,numnod_l) )
48 ALLOCATE( rtmp3(3,numnod_l) )
49! ------------------------------------
50C
51 DO i = 1, numnod_l
52 n = nodglob(i)
53 rtmp1(1,i) = dflow(1,n)
54 rtmp1(2,i) = dflow(2,n)
55 rtmp1(3,i) = dflow(3,n)
56C
57 rtmp2(1,i) = vflow(1,n)
58 rtmp2(2,i) = vflow(2,n)
59 rtmp2(3,i) = vflow(3,n)
60C
61 rtmp3(1,i) = wflow(1,n)
62 rtmp3(2,i) = wflow(2,n)
63 rtmp3(3,i) = wflow(3,n)
64 ENDDO
65C displacement
66 CALL write_db(rtmp1,3*numnod_l)
67 len_am = len_am + 3*numnod_l
68C velocity
69 CALL write_db(rtmp2,3*numnod_l)
70 len_am = len_am + 3*numnod_l
71C grille velocity
72 CALL write_db(rtmp3,3*numnod_l)
73 len_am = len_am + 3*numnod_l
74C
75! ------------------------------------
76! 2d array
77 DEALLOCATE( rtmp1,rtmp2 )
78 DEALLOCATE( rtmp3 )
79! ------------------------------------
80 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine write_db(a, n)
Definition write_db.F:140