OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
is_sup_face_id.F File Reference

Go to the source code of this file.

Functions/Subroutines

integer function is_sup_face_id (a, b)

Function/Subroutine Documentation

◆ is_sup_face_id()

integer function is_sup_face_id ( integer, dimension(4) a,
integer, dimension(4) b )

Definition at line 30 of file is_sup_face_id.F.

31C-----------------------------------------------
32C I n f o r m a t i o n s
33C-----------------------------------------------
34C Comparison of the User ID of two faces.
35C This UID is defined by four User ID of the nodes
36C-----------------------------------------------
37C Dummy Arguments
38C-----------------------------------------------
39 INTEGER :: A(4),B(4)
40 INTEGER :: IS_SUP_FACE_ID
42 IF( a(1) > b(1) .OR.
43 . a(1) == b(1) .AND. ( a(2) > b(2) .OR.
44 . a(2) == b(2) .AND. ( a(3) > b(3) .OR.
45 . a(3) == b(3) .AND. a(4) > b(4)))) THEN
47 ENDIF
48 RETURN
integer function is_sup_face_id(a, b)