OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
c_nloads.F File Reference
#include "implicit_f.inc"
#include "com04_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine c_nloads (cep, proc, nloads, nload_l)

Function/Subroutine Documentation

◆ 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.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C C o m m o n B l o c k s
36C-----------------------------------------------
37#include "com04_c.inc"
38C-----------------------------------------------
39C D u m m y A r g u m e n t s
40C-----------------------------------------------
41 INTEGER, INTENT(IN) :: NLOADS,PROC,CEP(*)
42 INTEGER, INTENT(INOUT) :: NLOAD_L
43C-----------------------------------------------
44C L o c a l V a r i a b l e s
45C-----------------------------------------------
46 INTEGER I, NB_L, OFF
47C
48 off = numelc+numeltg+numels+numelq+numelt+numelp+numelr
49 . + numelx
50 nb_l = 0
51C
52 DO i = 1, nloads
53 IF(cep(i+off)==proc) THEN
54 nb_l = nb_l + 1
55 ENDIF
56 ENDDO
57C
58 nload_l = nb_l
59C
60 RETURN