OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
scordef3.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!|| scordef3 ../engine/source/elements/thickshell/solidec/scordef3.F
26!||--- called by ------------------------------------------------------
27!|| s6cforc3 ../engine/source/elements/thickshell/solide6c/s6cforc3.F
28!|| scforc3 ../engine/source/elements/thickshell/solidec/scforc3.F
29!||--- calls -----------------------------------------------------
30!|| scroto ../engine/source/elements/thickshell/solidec/scroto.F
31!||====================================================================
32 SUBROUTINE scordef3(NEL,DXX,DYY,DZZ,D4,D5,D6,DIR)
33C-----------------------------------------------
34C I m p l i c i t T y p e s
35C-----------------------------------------------
36#include "implicit_f.inc"
37C-----------------------------------------------
38C G l o b a l P a r a m e t e r s
39C-----------------------------------------------
40#include "mvsiz_p.inc"
41C-----------------------------------------------
42C D u m m y A r g u m e n t s
43C-----------------------------------------------
44 INTEGER :: NEL
45C
47 . dxx(*),dyy(*),dzz(*),d4(*),d5(*),d6(*), dir(mvsiz,2)
48C-----------------------------------------------
49C L o c a l V a r i a b l e s
50C-----------------------------------------------
51 INTEGER I
53 . def(mvsiz,6),defn(mvsiz,6),dirn(mvsiz,2)
54C-----------------------------------------------
55 DO i=1,nel
56 def(i,1) = dxx(i)
57 def(i,2) = dyy(i)
58 def(i,3) = dzz(i)
59 def(i,4) = half*d4(i)
60 def(i,5) = half*d5(i)
61 def(i,6) = half*d6(i)
62 dirn(i,1)=dir(i,1)
63 dirn(i,2)=-dir(i,2)
64 ENDDO
65 CALL scroto(nel,def,defn,dirn)
66 DO i=1,nel
67 dxx(i) = defn(i,1)
68 dyy(i) = defn(i,2)
69 d4(i) = two*defn(i,4)
70 d5(i) = two*defn(i,5)
71 d6(i) = two*defn(i,6)
72 ENDDO
73C-----------
74 RETURN
75 END
#define my_real
Definition cppsort.cpp:32
subroutine scordef3(nel, dxx, dyy, dzz, d4, d5, d6, dir)
Definition scordef3.F:33
subroutine scroto(nel, sig, sign, dir)
Definition scroto.F:29