#include "implicit_f.inc"
#include "com04_c.inc"
Go to the source code of this file.
|
| subroutine | wlag (v, w, nale) |
◆ wlag()
| subroutine wlag |
( |
| v, |
|
|
| w, |
|
|
integer, dimension(numnod) | nale ) |
Definition at line 28 of file wlag.F.
29
30
31
32#include "implicit_f.inc"
33
34
35
36 INTEGER NALE(NUMNOD)
37 my_real v(3,numnod), w(3,numnod)
38
39
40
41#include "com04_c.inc"
42
43
44
45 INTEGER I
46
47
48
49 DO i=1,numnod
50 IF(nale(i) == 0)THEN
51 w(1,i)=v(1,i)
52 w(2,i)=v(2,i)
53 w(3,i)=v(3,i)
54 ENDIF
55 ENDDO
56
57 RETURN