OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_ibvel.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_ibvel ../starter/source/restart/ddsplit/w_ibvel.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_ibvel(
32 . IBVEL,LBVEL,NODLOCAL,PROC,LLBVEL_L,LEN_IA)
33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44#include "com04_c.inc"
45#include "param_c.inc"
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 INTEGER PROC, LLBVEL_L, LEN_IA,
50 . ibvel(nbvelp,*), lbvel(*), nodlocal(*)
51C-----------------------------------------------
52C F u n c t i o n
53C-----------------------------------------------
54 INTEGER NLOCAL
55 EXTERNAL nlocal
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER I, J, K, KL, NSNL, NSN, ILP, NLL, NN, M, N,
60 . ibvtmp(nbvelp,nibvel), lbvtmp(llbvel_l)
61C
62 k = 0
63 kl = 0
64 DO i = 1, nibvel
65 nsn = ibvel(3,i)
66 DO j = 1, nbvelp
67 ibvtmp(j,i) = ibvel(j,i)
68 ENDDO
69 nsnl = 0
70 DO j = 1, nsn
71 n = lbvel(k+j)
72 IF (nlocal(n,proc+1)==1)THEN
73 nsnl = nsnl + 1
74 lbvtmp(kl+nsnl) = nodlocal(n)
75 ENDIF
76 ENDDO
77 ibvtmp(3,i) = nsnl
78 m = ibvel(4,i)
79Coptimisation pour ne pas traiter les rb mous sans main et sans noeud secnd
80 IF(nlocal(m,proc+1)==0.AND.nsnl==0)THEN
81 ibvtmp(4,i) = -m
82 ELSE
83 ibvtmp(4,i) = nodlocal(m)
84 ENDIF
85 kl = kl+nsnl
86 k = k + nsn
87 ENDDO
88C
89 CALL write_i_c(ibvtmp,nbvelp*nibvel)
90 CALL write_i_c(lbvtmp,llbvel_l)
91 len_ia = len_ia + nbvelp*nibvel + llbvel_l
92C
93 RETURN
94 END
subroutine w_ibvel(ibvel, lbvel, nodlocal, proc, llbvel_l, len_ia)
Definition w_ibvel.F:33
void write_i_c(int *w, int *len)