OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
sroto3v.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 12
24!||====================================================================
25!|| sroto3v ../engine/source/elements/solid/solidez/sroto3v.F
26!||--- called by ------------------------------------------------------
27!|| szordef3 ../engine/source/elements/solid/solidez/szordef3.F
28!||====================================================================
29 SUBROUTINE sroto3v(JFT,JLT,SIG,SIGN,
30 . G1X,G1Y,G1Z,G2X,G2Y,G2Z,G3X,G3Y,G3Z)
31!-----------------------------------------------
32! Description
33! vectorized version of SROTO3
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C G l o b a l P a r a m e t e r s
40C-----------------------------------------------
41#include "mvsiz_p.inc"
42C-----------------------------------------------
43C D u m m y A r g u m e n t s
44C-----------------------------------------------
45 INTEGER JFT, JLT
46C REAL
48 . sig(mvsiz,6),sign(mvsiz,6), g1x(*),g1y(*),g1z(*),
49 . g2x(*),g2y(*),g2z(*),g3x(*),g3y(*),g3z(*)
50C-----------------------------------------------
51C L o c a l V a r i a b l e s
52C-----------------------------------------------
53 INTEGER I
54C REAL
56 . sx,sy,sz
57C-----------------------------------------------
58 DO i=jft,jlt
59 sx = sig(i,1)*g1x(i)+sig(i,4)*g1y(i)+sig(i,6)*g1z(i)
60 sy = sig(i,4)*g1x(i)+sig(i,2)*g1y(i)+sig(i,5)*g1z(i)
61 sz = sig(i,6)*g1x(i)+sig(i,5)*g1y(i)+sig(i,3)*g1z(i)
62 sign(i,1) = sx*g1x(i)+sy*g1y(i)+sz*g1z(i)
63 sign(i,4) = sx*g2x(i)+sy*g2y(i)+sz*g2z(i)
64 sign(i,6) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
65 sx = sig(i,1)*g2x(i)+sig(i,4)*g2y(i)+sig(i,6)*g2z(i)
66 sy = sig(i,4)*g2x(i)+sig(i,2)*g2y(i)+sig(i,5)*g2z(i)
67 sz = sig(i,6)*g2x(i)+sig(i,5)*g2y(i)+sig(i,3)*g2z(i)
68 sign(i,2) = sx*g2x(i)+sy*g2y(i)+sz*g2z(i)
69 sign(i,5) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
70 sx = sig(i,1)*g3x(i)+sig(i,4)*g3y(i)+sig(i,6)*g3z(i)
71 sy = sig(i,4)*g3x(i)+sig(i,2)*g3y(i)+sig(i,5)*g3z(i)
72 sz = sig(i,6)*g3x(i)+sig(i,5)*g3y(i)+sig(i,3)*g3z(i)
73 sign(i,3) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
74 ENDDO
75C-----------
76 RETURN
77 END
#define my_real
Definition cppsort.cpp:32
subroutine sroto3v(jft, jlt, sig, sign, g1x, g1y, g1z, g2x, g2y, g2z, g3x, g3y, g3z)
Definition sroto3v.F:31