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