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

Go to the source code of this file.

Functions/Subroutines

subroutine w_ibft (ibft, nc, nodlocal, len_ia, nfxtemp_l, proc, nift)

Function/Subroutine Documentation

◆ w_ibft()

subroutine w_ibft ( integer, dimension(nift,*) ibft,
integer nc,
integer, dimension(*) nodlocal,
integer len_ia,
integer nfxtemp_l,
integer proc,
integer, intent(in) nift )

Definition at line 30 of file w_ibft.F.

32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------
37C C o m m o n B l o c k s
38C-----------------------------------------------
39#include "param_c.inc"
40C-----------------------------------------------
41C D u m m y A r g u m e n t s
42C-----------------------------------------------
43 INTEGER ,INTENT(IN) :: NIFT
44 INTEGER NC, LEN_IA, PROC, NFXTEMP_L,
45 . IBFT(NIFT,*), NODLOCAL(*)
46C-----------------------------------------------
47C F u n c t i o n
48C-----------------------------------------------
49 INTEGER NLOCAL
50 EXTERNAL nlocal
51C-----------------------------------------------
52C L o c a l V a r i a b l e s
53C-----------------------------------------------
54 INTEGER I, J, IBTMP(NIFT,NFXTEMP_L), N_L, N
55C
56 n_l = 0
57 DO i = 1, nc
58 n = iabs(ibft(1,i))
59 IF(nlocal(n,proc+1)==1)THEN
60 n_l = n_l + 1
61 ibtmp(1,n_l) = sign(nodlocal(n),ibft(1,i))
62 DO j = 2, nift
63 ibtmp(j,n_l) = ibft(j,i)
64 ENDDO
65 ENDIF
66 ENDDO
67C
68 CALL write_i_c(ibtmp,nift*nfxtemp_l)
69 len_ia = len_ia + nift*nfxtemp_l
70C
71 RETURN
integer function nlocal(n, p)
Definition ddtools.F:349
void write_i_c(int *w, int *len)