OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
sroto12_sig.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_sig ../engine/source/elements/solid/solidez/sroto12_sig.F
25!||--- called by ------------------------------------------------------
26!|| s10forc3 ../engine/source/elements/solid/solide10/s10forc3.F
27!|| s4forc3 ../engine/source/elements/solid/solide4/s4forc3.F
28!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
29!|| sforc3 ../engine/source/elements/solid/solide/sforc3.F
30!||====================================================================
31 SUBROUTINE sroto12_sig(JFT,JLT,SIG,NEL,
32 . G1X,G1Y,G1Z,G2X,G2Y,G2Z,G3X,G3Y,G3Z,OFF)
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), g1x(*),g1y(*),g1z(*),
44 . g2x(*),g2y(*),g2z(*),g3x(*),g3y(*),g3z(*),off(*)
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,sign(nel,6)
52C-----------------------------------------------
53 DO i=jft,jlt
54 IF (off(i) <=one) cycle
55 sx = sig(i,1)*g1x(i)+sig(i,4)*g1y(i)+sig(i,6)*g1z(i)
56 sy = sig(i,4)*g1x(i)+sig(i,2)*g1y(i)+sig(i,5)*g1z(i)
57 sz = sig(i,6)*g1x(i)+sig(i,5)*g1y(i)+sig(i,3)*g1z(i)
58 sign(i,1) = sx*g1x(i)+sy*g1y(i)+sz*g1z(i)
59 sign(i,4) = sx*g2x(i)+sy*g2y(i)+sz*g2z(i)
60 sign(i,6) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
61 sx = sig(i,1)*g2x(i)+sig(i,4)*g2y(i)+sig(i,6)*g2z(i)
62 sy = sig(i,4)*g2x(i)+sig(i,2)*g2y(i)+sig(i,5)*g2z(i)
63 sz = sig(i,6)*g2x(i)+sig(i,5)*g2y(i)+sig(i,3)*g2z(i)
64 sign(i,2) = sx*g2x(i)+sy*g2y(i)+sz*g2z(i)
65 sign(i,5) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
66 sx = sig(i,1)*g3x(i)+sig(i,4)*g3y(i)+sig(i,6)*g3z(i)
67 sy = sig(i,4)*g3x(i)+sig(i,2)*g3y(i)+sig(i,5)*g3z(i)
68 sz = sig(i,6)*g3x(i)+sig(i,5)*g3y(i)+sig(i,3)*g3z(i)
69 sign(i,3) = sx*g3x(i)+sy*g3y(i)+sz*g3z(i)
70 sig(i,1) = sign(i,1)
71 sig(i,2) = sign(i,2)
72 sig(i,3) = sign(i,3)
73 sig(i,4) = sign(i,4)
74 sig(i,5) = sign(i,5)
75 sig(i,6) = sign(i,6)
76 ENDDO
77C-----------
78 RETURN
79 END
#define my_real
Definition cppsort.cpp:32
subroutine sroto12_sig(jft, jlt, sig, nel, g1x, g1y, g1z, g2x, g2y, g2z, g3x, g3y, g3z, off)
Definition sroto12_sig.F:33