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