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

Go to the source code of this file.

Functions/Subroutines

subroutine w_ibcscyc (ibcscyc, lbcscyc, nodlocal, proc, llcyc_l, nbcscyc_l, len_ia)

Function/Subroutine Documentation

◆ w_ibcscyc()

subroutine w_ibcscyc ( integer, dimension(4,*) ibcscyc,
integer, dimension(2,*) lbcscyc,
integer, dimension(*) nodlocal,
integer proc,
integer llcyc_l,
integer nbcscyc_l,
integer len_ia )

Definition at line 31 of file w_ibcscyc.F.

33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
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 INTEGER IBCSCYC(4,*),LBCSCYC(2,*),NODLOCAL(*) ,PROC ,LLCYC_L,
48 . NBCSCYC_L,LEN_IA
49C-----------------------------------------------
50C F u n c t i o n
51C-----------------------------------------------
52 INTEGER NLOCAL
53 EXTERNAL nlocal
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57 INTEGER I, J, K, KL, NSNL, NSN, ILP, NLL, NN, M, N,PROC1,
58 . IBVTMP(4,NBCSCYC_L), LBVTMP(2,LLCYC_L),IAD,N1,N2
59C-----------------------------------------------
60C
61 proc1 = proc + 1
62 kl=0
63 nsnl = 0
64 DO i = 1, nbcscyc
65 k = ibcscyc(1,i)
66 nsn = ibcscyc(3,i)
67 iad = nsnl
68 DO j = 1, nsn
69 n1 = lbcscyc(1,k+j)
70 n2 = lbcscyc(2,k+j)
71 IF (nlocal(n1,proc1)==1.AND.nlocal(n2,proc1)==1)THEN
72 nsnl = nsnl + 1
73 lbvtmp(1,nsnl) = nodlocal(n1)
74 lbvtmp(2,nsnl) = nodlocal(n2)
75 ENDIF
76 ENDDO
77 IF (nsnl>iad) THEN
78 kl = kl + 1
79 DO j = 1, 4
80 ibvtmp(j,kl) = ibcscyc(j,i)
81 ENDDO
82 ibvtmp(1,kl) = iad
83 ibvtmp(3,kl) = nsnl-iad
84 ENDIF
85 ENDDO
86C----------------
87 CALL write_i_c(ibvtmp,4*kl)
88 CALL write_i_c(lbvtmp,2*nsnl)
89 len_ia = len_ia + 4*kl + 2*nsnl
90 RETURN
integer function nlocal(n, p)
Definition ddtools.F:349
void write_i_c(int *w, int *len)