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