OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s10mallb3.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!|| s10mallb3 ../engine/source/elements/solid/solide10/s10mallb3.F
25!||--- called by ------------------------------------------------------
26!|| s10forc3 ../engine/source/elements/solid/solide10/s10forc3.F
27!||====================================================================
28 SUBROUTINE s10mallb3(
29 1 SAV, OFFG, WXX, WYY,
30 2 WZZ, NEL, ISMSTR, JLAG)
31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C C o m m o n B l o c k s
37C-----------------------------------------------
38#include "impl1_c.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER, INTENT(IN) :: ISMSTR
43 INTEGER, INTENT(IN) :: JLAG
44 INTEGER NEL
46 . offg(*),wxx(*),wyy(*),wzz(*)
47 DOUBLE PRECISION
48 . SAV(NEL,30)
49C-----------------------------------------------
50C L o c a l V a r i a b l e s
51C-----------------------------------------------
52 INTEGER I, N
53C REAL
54 DOUBLE PRECISION
55 . X , Y, Z
56C-----------------------------------------------
57C-----------------------------
58C ROTATION RBY DES COORDONNEES POUR SMALL STRAIN
59C-----------------------------
60C-----------------implicit sm disp option---
61 IF (ismdisp>0) THEN
62 ELSEIF(ismstr<=4.AND.ismstr/=3.AND.jlag>0)THEN
63 DO i=1,nel
64 IF(offg(i)>one)THEN
65C-----------------------------------------------
66 DO n=1,10
67 x=sav(i,n)
68 y=sav(i,n+10)
69 z=sav(i,n+20)
70 sav(i,n) = x - y*wzz(i) + z*wyy(i)
71 sav(i,n+10) = y - z*wxx(i) + x*wzz(i)
72 sav(i,n+20) = z - x*wyy(i) + y*wxx(i)
73 END DO
74 ENDIF
75 END DO
76 ELSEIF(ismstr==11)THEN
77 DO i=1,nel
78 IF(offg(i)>zero) THEN
79 DO n=1,10
80 x=sav(i,n)
81 y=sav(i,n+10)
82 z=sav(i,n+20)
83 sav(i,n) = x - y*wzz(i) + z*wyy(i)
84 sav(i,n+10) = y - z*wxx(i) + x*wzz(i)
85 sav(i,n+20) = z - x*wyy(i) + y*wxx(i)
86 END DO
87 END if!(OFFG(I)>ZERO) THEN
88 END DO
89 ENDIF
90C
91 RETURN
92 END
#define my_real
Definition cppsort.cpp:32
if(complex_arithmetic) id
subroutine s10mallb3(sav, offg, wxx, wyy, wzz, nel, ismstr, jlag)
Definition s10mallb3.F:31