OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
w_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!|| w_pxfem ../starter/source/restart/ddsplit/w_pxfem.F
25!||--- called by ------------------------------------------------------
26!|| ddsplit ../starter/source/restart/ddsplit/ddsplit.F
27!||--- calls -----------------------------------------------------
28!||====================================================================
29 SUBROUTINE w_pxfem(IEL_L ,INOD_L ,INDEX,VEL1 ,VEL2 ,
30 . NUMELC_L,NUMNOD_L,NELPXFE_L,NNODPXFE_L,
31 . LEN_AM,LEN_IA,VEL3)
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 NELPXFE_L ,NNODPXFE_L,
44 . LEN_AM,LEN_IA,NUMELC_L ,NUMNOD_L ,IEL_L(*),INOD_L(*),
45 . index(*)
47 . vel1(nplyxfe,*), vel2(nplyxfe,*),vel3(*)
48C-----------------------------------------------
49C L o c a l V a r i a b l e s
50C-----------------------------------------------
51 INTEGER I, J, N_L, N,II,NEL_L,NEL1_L,JJ
52 my_real
53 . veltmp1(nnodpxfe_l,nplymax), veltmp2(nnodpxfe_l,nplymax),
54 . veltmp3(nnodpxfe_l)
55C
56 DO i = 1, nnodpxfe_l
57 jj = index(i)
58 veltmp3(i) = vel3(jj)
59 DO j = 1, nplymax
60 veltmp1(i,j) = vel1(jj,j)
61 veltmp2(i,j) = vel2(jj,j)
62 ENDDO
63 ENDDO
64C
65 CALL write_db(veltmp1,nplymax*nnodpxfe_l)
66 len_am = len_am + nplymax*nnodpxfe_l
67 CALL write_db(veltmp2,nplymax*nnodpxfe_l)
68 len_am = len_am + nplymax*nnodpxfe_l
69C +1
70 CALL write_db(veltmp3,nnodpxfe_l)
71 len_am = len_am + nnodpxfe_l
72C
73 CALL write_i_c(inod_l,numnod_l)
74 len_ia = len_ia + numnod_l
75C
76 CALL write_i_c(iel_l,numelc_l)
77 len_ia = len_ia + numelc_l
78C
79 RETURN
80 END
#define my_real
Definition cppsort.cpp:32
subroutine w_pxfem(iel_l, inod_l, index, vel1, vel2, numelc_l, numnod_l, nelpxfe_l, nnodpxfe_l, len_am, len_ia, vel3)
Definition w_pxfem.F:32
subroutine write_db(a, n)
Definition write_db.F:140
void write_i_c(int *w, int *len)