OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s8egetpij.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!|| s8egetpij ../engine/source/elements/solid/solide8e/s8egetpij.F
25!||--- called by ------------------------------------------------------
26!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
27!||====================================================================
28 SUBROUTINE s8egetpij(
29 . PX1, PX2, PX3, PX4,
30 . PX5, PX6, PX7, PX8,
31 . PY1, PY2, PY3, PY4,
32 . PY5, PY6, PY7, PY8,
33 . PZ1, PZ2, PZ3, PZ4,
34 . PZ5, PZ6, PZ7, PZ8,
35 . PIJ,NEL)
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C G l o b a l P a r a m e t e r s
42C-----------------------------------------------
43#include "mvsiz_p.inc"
44C-----------------------------------------------
45C D u m m y A r g u m e n t s
46C-----------------------------------------------
47 INTEGER NEL
48C REAL
49 my_real
50 . PX1(MVSIZ),PX2(MVSIZ),PX3(MVSIZ),PX4(MVSIZ),
51 . PX5(MVSIZ),PX6(MVSIZ),PX7(MVSIZ),PX8(MVSIZ),
52 . PY1(MVSIZ),PY2(MVSIZ),PY3(MVSIZ),PY4(MVSIZ),
53 . PY5(MVSIZ),PY6(MVSIZ),PY7(MVSIZ),PY8(MVSIZ),
54 . pz1(mvsiz),pz2(mvsiz),pz3(mvsiz),pz4(mvsiz),
55 . pz5(mvsiz),pz6(mvsiz),pz7(mvsiz),pz8(mvsiz),
56 . pij(nel,*)
57C-----------------------------------------------
58C L o c a l V a r i a b l e s
59C-----------------------------------------------
60 INTEGER I,J,K
61
62C-----------------------------------------------
63 DO I=1,nel
64 px1(i) = pij(i,1)
65 py1(i) = pij(i,2)
66 pz1(i) = pij(i,3)
67 px2(i) = pij(i,4)
68 py2(i) = pij(i,5)
69 pz2(i) = pij(i,6)
70 px3(i) = pij(i,7)
71 py3(i) = pij(i,8)
72 pz3(i) = pij(i,9)
73 px4(i) = pij(i,10)
74 py4(i) = pij(i,11)
75 pz4(i) = pij(i,12)
76 px5(i) = pij(i,13)
77 py5(i) = pij(i,14)
78 pz5(i) = pij(i,15)
79 px6(i) = pij(i,16)
80 py6(i) = pij(i,17)
81 pz6(i) = pij(i,18)
82 px7(i) = pij(i,19)
83 py7(i) = pij(i,20)
84 pz7(i) = pij(i,21)
85 px8(i) = pij(i,22)
86 py8(i) = pij(i,23)
87 pz8(i) = pij(i,24)
88 END DO
89C-----------
90 RETURN
91 END
subroutine s8egetpij(px1, px2, px3, px4, px5, px6, px7, px8, py1, py2, py3, py4, py5, py6, py7, py8, pz1, pz2, pz3, pz4, pz5, pz6, pz7, pz8, pij, nel)
Definition s8egetpij.F:36