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

Go to the source code of this file.

Functions/Subroutines

subroutine c_eltloc (cep, p, numel, numel_l)

Function/Subroutine Documentation

◆ c_eltloc()

subroutine c_eltloc ( integer, dimension(*) cep,
integer p,
integer numel,
integer numel_l )

Definition at line 29 of file c_eltloc.F.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C D u m m y A r g u m e n t s
36C-----------------------------------------------
37 INTEGER CEP(*), P, NUMEL, NUMEL_L
38C-----------------------------------------------
39C L o c a l V a r i a b l e s
40C-----------------------------------------------
41 INTEGER I
42C
43 numel_l = 0
44 DO i = 1, numel
45 IF(cep(i)==p)THEN
46 numel_l = numel_l + 1
47 ENDIF
48 ENDDO
49C
50 RETURN