OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_poro.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_poro ../starter/source/restart/ddsplit/w_poro.F
26!||--- called by ------------------------------------------------------
27!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
28!||--- calls -----------------------------------------------------
29!|| nlocal ../starter/source/spmd/node/ddtools.F
30!||====================================================================
31 SUBROUTINE w_poro(PORNOD,PROC,NUMPOR_L,GEO,NODLOCAL,LEN_IA)
32C-----------------------------------------------
33C M o d u l e s
34C-----------------------------------------------
35
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C C o m m o n B l o c k s
42C-----------------------------------------------
43#include "com04_c.inc"
44#include "param_c.inc"
45C-----------------------------------------------
46C D u m m y A r g u m e n t s
47C-----------------------------------------------
48 INTEGER PROC, NUMPOR_L, LEN_IA,
49 . PORNOD(*),NODLOCAL(*)
51 . geo(npropg,*)
52C-----------------------------------------------
53C F u n c t i o n
54C-----------------------------------------------
55 INTEGER NLOCAL
56 EXTERNAL nlocal
57C-----------------------------------------------
58C L o c a l V a r i a b l e s
59C-----------------------------------------------
60 INTEGER N, NN, NAD, IG, J, N_L, PORNOD_L(NUMPOR_L)
61C
62 nad=0
63 n_l = 0
64 DO ig = 1, numgeo
65 IF(int(geo(12,ig))==15)THEN
66 n=int(geo(31,ig))
67 IF(n>0)THEN
68 DO j = nad+1, nad+n
69 nn = pornod(j)
70 IF(nlocal(nn,proc+1)==1)THEN
71 n_l = n_l + 1
72 pornod_l(n_l)=nodlocal(nn)
73 END IF
74 END DO
75 nad = nad + n
76 END IF
77 END IF
78 END DO
79 if(n_l/=numpor_l)print*,'error decomp porosity :',n_l,numpor_l
80C
81 CALL write_i_c(pornod_l,numpor_l)
82 len_ia = len_ia + numpor_l
83C
84 RETURN
85 END
#define my_real
Definition cppsort.cpp:32
subroutine w_poro(pornod, proc, numpor_l, geo, nodlocal, len_ia)
Definition w_poro.F:32
void write_i_c(int *w, int *len)