OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
sktvonm4.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!|| sktvonm4 ../engine/source/elements/solid/solide8z/sktvonm4.F
25!||--- called by ------------------------------------------------------
26!|| sktcons2 ../engine/source/elements/solid/solide8z/sktcons2.F
27!||====================================================================
28 SUBROUTINE sktvonm4(LFT ,LLT ,DD ,SIG ,DD1 ,
29 . GT ,R )
30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C G l o b a l P a r a m e t e r s
36C-----------------------------------------------
37#include "mvsiz_p.inc"
38C-----------------------------------------------
39C D u m m y A r g u m e n t s
40C-----------------------------------------------
41 INTEGER LFT,LLT
42C REAL
44 . dd(3,3,*),sig(6,*),dd1(3,3,*),gt(3,3,*),r(*)
45C-----------------------------------------------
46C L o c a l V a r i a b l e s
47C-----------------------------------------------
48C---------deviatoric normalized stress: sig
49 INTEGER I,J,K
50C REAL
52 . ss(3,mvsiz),st(3,mvsiz)
53C---------- verifier-------------------------------------
54C----------HT(i)>0
55 DO i=lft,llt
56c .....(R(I) is the alpha parameter of the radial return ..
57 IF (r(i)/=one) THEN
58c ..... SS(), ST() contain deviatoric stresses ..
59 ss(1,i)=sig(1,i)
60 ss(2,i)=sig(2,i)
61 ss(3,i)=sig(3,i)
62 st(1,i)=sig(4,i)
63 st(2,i)=sig(5,i)
64 st(3,i)=sig(6,i)
65c print *,'DS,ST='
66c print *,SS(1,I),SS(2,I),SS(3,I)
67c print *,ST(1,I),ST(2,I),ST(3,I)
68 ENDIF
69 ENDDO
70C-----------GT->u--------
71 DO i=lft,llt
72c .....(R(I) is the alpha parameter of the radial return ..
73c print *,'[Ce]='
74c print *,DD(1,1,I),DD(1,2,I),GT(1,1,I)
75 IF (r(i)/=one) THEN
76 DO j=1,3
77 DO k=j,3
78 dd(j,k,i)=dd(j,k,i)-ss(j,i)*ss(k,i)
79 gt(j,k,i)=gt(j,k,i)-st(j,i)*st(k,i)
80 dd(k,j,i)=dd(j,k,i)
81 gt(k,j,i)=gt(j,k,i)
82 ENDDO
83C IF (DD(J,J,I)<EM10.OR.GT(J,J,I)<EM10) THEN
84C print *,'GT(J,J,I)=',GT(J,J,I)
85 dd(j,j,i)=max(em10,dd(j,j,i))
86 gt(j,j,i)=max(em10,gt(j,j,i))
87C ENDIF
88 ENDDO
89 DO j=1,3
90 DO k=1,3
91 dd1(j,k,i)=-ss(j,i)*st(k,i)
92 ENDDO
93 ENDDO
94c print *,'[Ct]='
95c print *,DD(1,1,I),DD(1,2,I),GT(1,1,I)
96c print *,DD1(1,1,I),DD1(2,1,I)
97 ENDIF
98 ENDDO
99C
100 RETURN
101 END
#define my_real
Definition cppsort.cpp:32
#define max(a, b)
Definition macros.h:21
subroutine sktvonm4(lft, llt, dd, sig, dd1, gt, r)
Definition sktvonm4.F:30