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

Go to the source code of this file.

Functions/Subroutines

subroutine fvthsurf (nseg, ntgi, surf_eltyp, eltg, itag, surf_elem)

Function/Subroutine Documentation

◆ fvthsurf()

subroutine fvthsurf ( integer nseg,
integer ntgi,
integer, dimension(*) surf_eltyp,
integer, dimension(*) eltg,
integer, dimension(*) itag,
integer, dimension(*) surf_elem )

Definition at line 28 of file fvthsurf.F.

29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33C-----------------------------------------------
34C C o m m o n B l o c k s
35C-----------------------------------------------
36#include "com04_c.inc"
37C-----------------------------------------------
38C D u m m y A r g u m e n t s
39C-----------------------------------------------
40 INTEGER NSEG, NTGI, ELTG(*),SURF_ELTYP(*),SURF_ELEM(*)
41 INTEGER ITAG(*)
42C-----------------------------------------------
43C L o c a l V a r i a b l e s
44C-----------------------------------------------
45 INTEGER I, J, K, N, ITY
46C
47 itag(1:ntgi+1)=0
48 DO i=1,nseg
49 ity=surf_eltyp(i)
50 n =surf_elem(i)
51 IF(ity == 7) n=n+numelc
52 DO j=1,ntgi
53 k=eltg(j)
54 IF(k == n) THEN
55 itag(1)=itag(1)+1
56 itag(j+1)=1
57 ENDIF
58 ENDDO
59 ENDDO
60C
61 RETURN