OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
scoor_cp2sp.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!|| scoor_cp2sp ../engine/source/elements/solid/solidez/scoor_cp2sp.F
25!||--- called by ------------------------------------------------------
26!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
27!|| s8zforc3 ../engine/source/elements/solid/solide8z/s8zforc3.F
28!|| sforc3 ../engine/source/elements/solid/solide/sforc3.F
29!|| szforc3 ../engine/source/elements/solid/solidez/szforc3.F
30!||====================================================================
31 SUBROUTINE scoor_cp2sp(
32 1 X0, Y0, Z0, X1,
33 2 X2, X3, X4, X5,
34 3 X6, X7, X8, Y1,
35 4 Y2, Y3, Y4, Y5,
36 5 Y6, Y7, Y8, Z1,
37 6 Z2, Z3, Z4, Z5,
38 7 Z6, Z7, Z8, NEL)
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C G l o b a l P a r a m e t e r s
45C-----------------------------------------------
46#include "mvsiz_p.inc"
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50 INTEGER, INTENT(IN) :: NEL
51C REAL
52 my_real
53 . X1(*), X2(*), X3(*), X4(*), X5(*), X6(*), X7(*), X8(*),
54 . Y1(*), Y2(*), Y3(*), Y4(*), Y5(*), Y6(*), Y7(*), Y8(*),
55 . Z1(*), Z2(*), Z3(*), Z4(*), Z5(*), Z6(*), Z7(*), Z8(*)
56 DOUBLE PRECISION
57 . x0(mvsiz,8),y0(mvsiz,8),z0(mvsiz,8)
58C-----------------------------------------------
59C C o m m o n B l o c k s
60C-----------------------------------------------
61C-----------------------------------------------
62C L o c a l V a r i a b l e s
63C-----------------------------------------------
64 INTEGER I, IPT
65C-----------------------------------------------
66 DO I=1,nel
67 x1(i)= x0(i,1)
68 y1(i)= y0(i,1)
69 z1(i)= z0(i,1)
70 x2(i)= x0(i,2)
71 y2(i)= y0(i,2)
72 z2(i)= z0(i,2)
73 x3(i)= x0(i,3)
74 y3(i)= y0(i,3)
75 z3(i)= z0(i,3)
76 x4(i)= x0(i,4)
77 y4(i)= y0(i,4)
78 z4(i)= z0(i,4)
79 x5(i)= x0(i,5)
80 y5(i)= y0(i,5)
81 z5(i)= z0(i,5)
82 x6(i)= x0(i,6)
83 y6(i)= y0(i,6)
84 z6(i)= z0(i,6)
85 x7(i)= x0(i,7)
86 y7(i)= y0(i,7)
87 z7(i)= z0(i,7)
88 x8(i)= x0(i,8)
89 y8(i)= y0(i,8)
90 z8(i)= z0(i,8)
91 ENDDO
92C-----------
93 RETURN
94 END
subroutine scoor_cp2sp(x0, y0, z0, x1, x2, x3, x4, x5, x6, x7, x8, y1, y2, y3, y4, y5, y6, y7, y8, z1, z2, z3, z4, z5, z6, z7, z8, nel)
Definition scoor_cp2sp.F:39