OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
c_pxfem.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/.
23!||====================================================================
24!|| c_pxfem ../starter/source/restart/ddsplit/c_pxfem.F
25!||--- called by ------------------------------------------------------
26!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
27!||====================================================================
28 SUBROUTINE c_pxfem(CEP,P ,NODGLOB , IELPXFEM ,INODPXFEM,
29 . IEL_L,INOD_L , NUMELC ,NUMNOD_L,NUMELC_L,
30 . NELPXFE_L,NUMNODPXFE_L,INDEX)
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 "param_c.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER CEP(*), P,NELPXFE_L ,NUMNODPXFE_L,NODGLOB(*),
43 . NUMELC ,NUMNOD_L ,IELPXFEM(*),INODPXFEM(*),
44 . iel_l(*),inod_l(*),index(*),numelc_l
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48 INTEGER I, J, NL_L, N,II,NEL_L,NEL1_L,JJ
49C
50ccc CEL_PXFEM(1:EPLYXFE) = 0
51C
52 iel_l(1:numelc_l) = 0
53 inod_l(1:numnod_l) = 0
54 nel_l = 0
55 nel1_l = 1
56 ii = 0
57C
58 DO i = 1, numelc
59 IF(cep(i)==p)THEN
60cc IEL_L(NEL1_L) = 0
61 ii = ielpxfem(i)
62 IF(ii > 0) THEN
63 nel_l = nel_l + 1
64cc CEL_PXFEM(II) = NEL_L
65 iel_l(nel1_l) = nel_l
66 ENDIF
67 nel1_l = nel1_l + 1
68 ENDIF
69 ENDDO
70C
71 nelpxfe_l = nel_l
72C
73 nl_l = 0
74 index(1:nplyxfe) = 0
75 DO i = 1, numnod_l
76 ii = nodglob(i)
77 jj = inodpxfem(ii)
78 IF(jj > 0)THEN
79 nl_l = nl_l + 1
80 inod_l(i) = nl_l
81 index(nl_l) = jj
82 ENDIF
83 END DO
84C
85 numnodpxfe_l = nl_l
86 RETURN
87 END
subroutine c_pxfem(cep, p, nodglob, ielpxfem, inodpxfem, iel_l, inod_l, numelc, numnod_l, numelc_l, nelpxfe_l, numnodpxfe_l, index)
Definition c_pxfem.F:31