OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_ibcscyc.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23C
24!||====================================================================
25!|| w_ibcscyc ../starter/source/restart/ddsplit/w_ibcscyc.F
26!||--- called by ------------------------------------------------------
27!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
28!||--- calls -----------------------------------------------------
29!|| nlocal ../starter/source/spmd/node/ddtools.F
30!||====================================================================
31 SUBROUTINE w_ibcscyc(IBCSCYC,LBCSCYC,NODLOCAL ,PROC ,LLCYC_L,
32 . NBCSCYC_L,LEN_IA )
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
91 END
subroutine w_ibcscyc(ibcscyc, lbcscyc, nodlocal, proc, llcyc_l, nbcscyc_l, len_ia)
Definition w_ibcscyc.F:33
void write_i_c(int *w, int *len)