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

Go to the source code of this file.

Functions/Subroutines

subroutine check_surf (igrsurf)

Function/Subroutine Documentation

◆ check_surf()

subroutine check_surf ( type (surf_), dimension(nsurf) igrsurf)

Definition at line 30 of file check_surf.F.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34 USE message_mod
35 USE groupdef_mod
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C C o m m o n B l o c k s
42C-----------------------------------------------
43#include "com04_c.inc"
44C-----------------------------------------------
45C D u m m y A r g u m e n t s
46C-----------------------------------------------
47 TYPE (SURF_) , DIMENSION(NSURF) :: IGRSURF
48C-----------------------------------------------
49C L o c a l V a r i a b l e s
50C-----------------------------------------------
51 INTEGER I, J, K, NSEG
52C-----------------------------------------------
53C S o u r c e L i n e s
54C-----------------------------------------------
55 ! IGRSURF(I)%ISH4N3N = 1 FOR SURFACE COMPOSED OF SHELL ELEMS
56 DO i=1,nsurf
57 nseg = igrsurf(i)%NSEG
58 igrsurf(i)%ISH4N3N = 1
59 DO j = 1,nseg
60 k = igrsurf(i)%ELTYP(j)
61 IF(k /= 3 .AND. k /= 7) THEN
62 igrsurf(i)%ISH4N3N = 0
63 cycle
64 ENDIF
65 ENDDO
66 ENDDO
67C-----------------------------------------------
68 RETURN