OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_iskewsp.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_iskewsp ../starter/source/restart/ddsplit/w_iskewsp.F
26!||--- called by ------------------------------------------------------
27!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
28!||--- calls -----------------------------------------------------
29!||====================================================================
30 SUBROUTINE w_iskewsp(ISKEW,NODGLOB,NUMNOD_L,NUMSPH_L,CEPSP,PROC,LEN_IA)
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
88 END
subroutine w_iskewsp(iskew, nodglob, numnod_l, numsph_l, cepsp, proc, len_ia)
Definition w_iskewsp.F:31
void write_i_c(int *w, int *len)