OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_iskewsp.F File Reference
#include "implicit_f.inc"
#include "com04_c.inc"
#include "sphcom.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine w_iskewsp (iskew, nodglob, numnod_l, numsph_l, cepsp, proc, len_ia)

Function/Subroutine Documentation

◆ w_iskewsp()

subroutine w_iskewsp ( integer, dimension(*) iskew,
integer, dimension(*) nodglob,
integer, intent(in) numnod_l,
integer, intent(in) numsph_l,
integer, dimension(*) cepsp,
integer proc,
integer len_ia )

Definition at line 30 of file w_iskewsp.F.

31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C C o m m o n B l o c k s
37C-----------------------------------------------
38#include "com04_c.inc"
39#include "sphcom.inc"
40C-----------------------------------------------
41C D u m m y A r g u m e n t s
42C-----------------------------------------------
43 INTEGER ISKEW(*), NODGLOB(*), CEPSP(*), PROC, LEN_IA
44 INTEGER,INTENT(IN) :: NUMSPH_L, NUMNOD_L
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER I, NL, NG, ISK
49 INTEGER, DIMENSION(:), ALLOCATABLE :: ITMP,LOCAL
50C-----------------------------------------------
51C
52! --------------------------------
53! allocate 1d array
54 ALLOCATE( itmp(numnod_l),local(numsph) )
55! --------------------------------
56 nl = 0
57 DO i = 1, numsph
58 IF(cepsp(i)==proc)THEN
59 nl = nl + 1
60 local(i) = nl
61 ELSE
62 local(i) = 0
63 END IF
64 END DO
65C
66 DO i = 1, numnod_l
67 isk = iskew(nodglob(i))
68 IF(isk<=numskw+1)THEN ! no skew classique
69 itmp(i) = isk
70 ELSEIF(isk <= numskw+numsph+1 .AND.nspcond > 0 .AND. numsph > 0 )THEN ! no skew sph
71 ng = isk-numskw-1
72 nl = local(ng)
73 IF(nl==0)print*,'error in sph decomp'
74 itmp(i)=nl+numskw+1
75 ELSE
76 itmp(i) = isk-numskw-numsph+numsph_l
77 END IF
78 END DO
79C
80 CALL write_i_c(itmp,numnod_l)
81 len_ia = len_ia + numnod_l
82C
83! --------------------------------
84! deallocate 1d array
85 DEALLOCATE( itmp,local )
86! --------------------------------
87 RETURN
character *2 function nl()
Definition message.F:2354
void write_i_c(int *w, int *len)