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

Go to the source code of this file.

Functions/Subroutines

subroutine sphonf0 (kxsp, ixsp, nod2sp, ipart, ipartsp, lprtsph, lonfsph)

Function/Subroutine Documentation

◆ sphonf0()

subroutine sphonf0 ( integer, dimension(nisp,*) kxsp,
integer, dimension(kvoisph,*) ixsp,
integer, dimension(*) nod2sp,
integer, dimension(lipart1,*) ipart,
integer, dimension(*) ipartsp,
integer, dimension(2,0:npart) lprtsph,
integer, dimension(*) lonfsph )

Definition at line 28 of file sphonf0.F.

30C-----------------------------------------------
31C LONFSPH(3,NUMSPH) :
32C LIST OF PARTICLES SORTED FROM IPRT=1 TO NPART AND INSIDE EACH PART,
33C PARTICLES ARE SPLITED IN ACTIVE AND INACTIVE PARTICLES.
34C LONFSPH(K) : PARTICLE NUMBER (1<= ... <=NUMSPH)
35C-----------------------------------------------
36C LPRTSPH(2,0:NPART) :
37C LPRTSPH(1,IPRT) : LAST ACTIVE PARTICLE RECORD IN LONFSPH
38C RELATED TO PART IPRT
39C LPRTSPH(2,IPRT) : LAST INACTIVE PARTICLE RECORD IN LONFSPH
40C RELATED TO PART IPRT
41C-----------------------------------------------
42C I m p l i c i t T y p e s
43C-----------------------------------------------
44#include "implicit_f.inc"
45C-----------------------------------------------
46C C o m m o n B l o c k s
47C-----------------------------------------------
48#include "com04_c.inc"
49#include "sphcom.inc"
50#include "scr17_c.inc"
51C-----------------------------------------------
52C D u m m y A r g u m e n t s
53C-----------------------------------------------
54 INTEGER KXSP(NISP,*),IXSP(KVOISPH,*),NOD2SP(*),IPARTSP(*),
55 . IPART(LIPART1,*),LPRTSPH(2,0:NPART),LONFSPH(*)
56C REAL
57C-----------------------------------------------
58C L o c a l V a r i a b l e s
59C-----------------------------------------------
60 INTEGER IPRT,SUIVSPH,N
61C-----------------------------------------------
62 suivsph=0
63 DO iprt=1,npart
64 DO n=1,numsph
65 IF(ipartsp(n)==iprt.AND.(kxsp(2,n) > 0 .OR. (kxsp(2,n)/=0.AND.
66 . n >= first_sphsol .AND. n < first_sphsol+nsphsol)))THEN
67 suivsph=suivsph+1
68 lonfsph(suivsph)=n
69 ENDIF
70 ENDDO
71 lprtsph(1,iprt)=suivsph
72 DO n=1,numsph
73 IF(ipartsp(n)==iprt.AND.(kxsp(2,n) < 0 .AND.
74 . (n < first_sphsol .OR. n >= first_sphsol+nsphsol)))THEN
75 suivsph=suivsph+1
76 lonfsph(suivsph)=n
77 ENDIF
78 ENDDO
79 lprtsph(2,iprt)=suivsph
80 ENDDO
81C--------------------------------------------------
82 RETURN