#include "implicit_f.inc"
#include "com01_c.inc"
#include "com04_c.inc"
Go to the source code of this file.
◆ alefvm_accele()
| subroutine alefvm_accele |
( |
dimension(3,numnod), intent(inout) | a, |
|
|
dimension(3,numnod), intent(inout) | ar, |
|
|
integer, intent(in) | nodft, |
|
|
integer, intent(in) | nodlt, |
|
|
integer, dimension(numnod), intent(in) | nale ) |
Definition at line 28 of file alefvm_accele.F.
29
30
31
32
33
34
35
36
37
38
39
40
41#include "implicit_f.inc"
42
43
44
45#include "com01_c.inc"
46#include "com04_c.inc"
47
48
49
50 INTEGER,INTENT(IN) :: NODFT, NODLT, NALE(NUMNOD)
51 my_real,
INTENT(INOUT) :: a(3,numnod), ar
52
53
54
55 INTEGER :: N
56
57
58
59
60
61
62
63
64
65
66#include "vectorize.inc"
67
68 DO n=nodft,nodlt
69 IF(nale(n) == 0)cycle
70 a(1,n) = zero
71 a(2,n) = zero
72 a(3,n) = zero
73 ENDDO
74 IF (iroddl /= 0) THEN
75#include "vectorize.inc"
76
77 DO n=nodft,nodlt
78 IF(nale(n)==0)cycle
79 ar(1,n) = zero
80 ar(2,n) = zero
81 ar(3,n) = zero
82 ENDDO
83 ENDIF
84
85 RETURN