#include "implicit_f.inc"
#include "com04_c.inc"
Go to the source code of this file.
|
| subroutine | c_nloads (cep, proc, nloads, nload_l) |
◆ c_nloads()
| subroutine c_nloads |
( |
integer, dimension(*), intent(in) | cep, |
|
|
integer, intent(in) | proc, |
|
|
integer, intent(in) | nloads, |
|
|
integer, intent(inout) | nload_l ) |
Definition at line 29 of file c_nloads.F.
30
31
32
33#include "implicit_f.inc"
34
35
36
37#include "com04_c.inc"
38
39
40
41 INTEGER, INTENT(IN) :: NLOADS,PROC,CEP(*)
42 INTEGER, INTENT(INOUT) :: NLOAD_L
43
44
45
46 INTEGER I, NB_L, OFF
47
48 off = numelc+numeltg+numels+numelq+numelt+numelp+numelr
49 . + numelx
50 nb_l = 0
51
52 DO i = 1, nloads
53 IF(cep(i+off)==proc) THEN
54 nb_l = nb_l + 1
55 ENDIF
56 ENDDO
57
58 nload_l = nb_l
59
60 RETURN