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

Go to the source code of this file.

Functions/Subroutines

subroutine c_ibfv (ibfv, nc, nfxvel_l, proc, dd_lagf)

Function/Subroutine Documentation

◆ c_ibfv()

subroutine c_ibfv ( integer, dimension(nifv,*) ibfv,
integer nc,
integer nfxvel_l,
integer proc,
integer, dimension(3,*) dd_lagf )

Definition at line 30 of file c_ibfv.F.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C C o m m o n B l o c k s
41C-----------------------------------------------
42#include "com01_c.inc"
43#include "param_c.inc"
44C-----------------------------------------------
45C D u m m y A r g u m e n t s
46C-----------------------------------------------
47 INTEGER NC, PROC, NFXVEL_L,
48 . IBFV(NIFV,*), DD_LAGF(3,*)
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, N_L, N, ISK, P,NCUV
58C
59 n_l = 0
60 DO i = 1, nc
61 n = iabs(ibfv(1,i))
62 ncuv = ibfv(3,i)
63 IF(nlocal(n,proc+1)==1.AND.ncuv>0)THEN
64 n_l = n_l + 1
65 IF(ibfv(8,i)/=0) THEN ! LAG MULT
66 isk = ibfv(2,i)/10
67 DO p = 1, nspmd
68 IF(nlocal(n,p)==1) THEN
69 IF(p==proc+1) THEN
70 dd_lagf(1,p) = dd_lagf(1,p) + 1
71 IF(isk<=1)THEN
72 dd_lagf(2,p) = dd_lagf(2,p) + 1
73 ELSE
74 dd_lagf(2,p) = dd_lagf(2,p) + 3
75 END IF
76 GO TO 100
77 END IF
78 END IF
79 END DO
80 100 CONTINUE
81 END IF
82 ENDIF
83 ENDDO
84C
85 nfxvel_l = n_l
86C
87 RETURN
integer function nlocal(n, p)
Definition ddtools.F:349