OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
s8savsr3.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!|| s8savsr3 ../engine/source/elements/solid/solide/s8savsr3.F
25!||--- called by ------------------------------------------------------
26!|| s8eforc3 ../engine/source/elements/solid/solide8e/s8eforc3.F
27!|| sforc3 ../engine/source/elements/solid/solide/sforc3.F
28!||====================================================================
29 SUBROUTINE s8savsr3(
30 1 OFFG, SAV, XD, YD,
31 2 ZD, NEL)
32C-----------------------------------------------
33C I m p l i c i t T y p e s
34C-----------------------------------------------
35#include "implicit_f.inc"
36C-----------------------------------------------
37C G l o b a l P a r a m e t e r s
38C-----------------------------------------------
39#include "mvsiz_p.inc"
40C-----------------------------------------------
41C C o m m o n B l o c k s
42C-----------------------------------------------
43C-----------------------------------------------
44C D u m m y A r g u m e n t s
45C-----------------------------------------------
46 INTEGER NEL
47C REAL
49 . offg(*)
50
51 DOUBLE PRECISION
52 . XD(MVSIZ,8),YD(MVSIZ,8),ZD(MVSIZ,8), SAV(NEL,21)
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56 INTEGER I
57C=======================================================================
58 DO i=1,nel
59 IF(abs(offg(i)) <= one )THEN
60 sav(i,1)=xd(i,1)-xd(i,8)
61 sav(i,2)=yd(i,1)-yd(i,8)
62 sav(i,3)=zd(i,1)-zd(i,8)
63 sav(i,4)=xd(i,2)-xd(i,8)
64 sav(i,5)=yd(i,2)-yd(i,8)
65 sav(i,6)=zd(i,2)-zd(i,8)
66 sav(i,7)=xd(i,3)-xd(i,8)
67 sav(i,8)=yd(i,3)-yd(i,8)
68 sav(i,9)=zd(i,3)-zd(i,8)
69 sav(i,10)=xd(i,4)-xd(i,8)
70 sav(i,11)=yd(i,4)-yd(i,8)
71 sav(i,12)=zd(i,4)-zd(i,8)
72 sav(i,13)=xd(i,5)-xd(i,8)
73 sav(i,14)=yd(i,5)-yd(i,8)
74 sav(i,15)=zd(i,5)-zd(i,8)
75 sav(i,16)=xd(i,6)-xd(i,8)
76 sav(i,17)=yd(i,6)-yd(i,8)
77 sav(i,18)=zd(i,6)-zd(i,8)
78 sav(i,19)=xd(i,7)-xd(i,8)
79 sav(i,20)=yd(i,7)-yd(i,8)
80 sav(i,21)=zd(i,7)-zd(i,8)
81 ENDIF
82 ENDDO
83C-----------
84 RETURN
85 END
#define my_real
Definition cppsort.cpp:32
subroutine s8savsr3(offg, sav, xd, yd, zd, nel)
Definition s8savsr3.F:32