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

Go to the source code of this file.

Functions/Subroutines

subroutine dsrgcnt (igrsurf, nsurg, nesrg, nnsrg, nesbw)

Function/Subroutine Documentation

◆ dsrgcnt()

subroutine dsrgcnt ( type (surf_), dimension(nsurf) igrsurf,
integer nsurg,
integer nesrg,
integer nnsrg,
integer nesbw )

Definition at line 29 of file dsrgcnt.F.

30C-----------------------------------------------
31C M o d u l e s
32C-----------------------------------------------
33 USE groupdef_mod
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C C o m m o n B l o c k s
40C-----------------------------------------------
41#include "com04_c.inc"
42C-----------------------------------------------
43C D u m m y A r g u m e n t s
44C-----------------------------------------------
45 INTEGER NSURG,NESRG, NNSRG, NESBW
46 TYPE (SURF_) , DIMENSION(NSURF) :: IGRSURF
47C-----------------------------------------------
48C L o c a l V a r i a b l e s
49C-----------------------------------------------
50 INTEGER ISU
51C-----------------------------------------------
52 nsurg=0
53 DO isu=1,nsurf
54 IF (igrsurf(isu)%TYPE==101) THEN
55 nsurg=nsurg+1
56 nesrg = nesrg + 294
57 nnsrg = nnsrg + 384
58 END IF
59 END DO
60 nesbw = nesbw + nesrg
61C-----------------------------------------------
62 RETURN