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

Go to the source code of this file.

Functions/Subroutines

subroutine w_ibfv (ibfv, nc, nodlocal, len_ia, nfxvel_l, proc)

Function/Subroutine Documentation

◆ w_ibfv()

subroutine w_ibfv ( integer, dimension(nifv,*) ibfv,
integer nc,
integer, dimension(*) nodlocal,
integer len_ia,
integer nfxvel_l,
integer proc )

Definition at line 31 of file w_ibfv.F.

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 "param_c.inc"
45C-----------------------------------------------
46C D u m m y A r g u m e n t s
47C-----------------------------------------------
48 INTEGER NC, LEN_IA, PROC, NFXVEL_L,
49 . IBFV(NIFV,*), NODLOCAL(*)
50C-----------------------------------------------
51C F u n c t i o n
52C-----------------------------------------------
53 INTEGER NLOCAL
54 EXTERNAL nlocal
55C-----------------------------------------------
56C L o c a l V a r i a b l e s
57C-----------------------------------------------
58 INTEGER I, J, IBTMP(NIFV,NFXVEL_L), N_L, N,NCUR
59C
60 n_l = 0
61 DO i = 1, nc
62 n = iabs(ibfv(1,i))
63 ncur = ibfv(3,i)
64 IF(nlocal(n,proc+1)==1.AND.ncur>0)THEN
65 n_l = n_l + 1
66 ibtmp(1,n_l) = sign(nodlocal(n),ibfv(1,i))
67 DO j = 2, nifv
68 ibtmp(j,n_l) = ibfv(j,i)
69 ENDDO
70
71 IF(ibfv(13,i) == 2) THEN ! IBFV(13,I)=FINGEO, /IMPVEL/FGEO option
72 ibtmp(14,n_l) = nodlocal( ibfv(14,i) ) ! IBFV(14,I)= Second Node
73 ENDIF
74
75 ENDIF
76 ENDDO
77C
78 CALL write_i_c(ibtmp,nifv*nfxvel_l)
79 len_ia = len_ia + nifv*nfxvel_l
80C
81 RETURN
integer function nlocal(n, p)
Definition ddtools.F:349
void write_i_c(int *w, int *len)