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