OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
m1tot_stab24.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!|| m1tot_stab24 ../engine/source/elements/solid/solidez/m1tot_stab24.F
25!||--- called by ------------------------------------------------------
26!|| m1lawtot ../engine/source/materials/mat/mat001/m1lawtot.F
27!||====================================================================
28 SUBROUTINE m1tot_stab24(SIG,SIGL,G2,G,OFFG,ISMSTR,NEL )
29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33C-----------------------------------------------
34C G l o b a l P a r a m e t e r s
35C-----------------------------------------------
36#include "mvsiz_p.inc"
37C-----------------------------------------------
38C C o m m o n B l o c k s
39C-----------------------------------------------
40C-----------------------------------------------
41C D u m m y A r g u m e n t s
42C-----------------------------------------------
43 INTEGER, INTENT(IN) :: NEL,ISMSTR
44C
45 my_real, INTENT(IN) :: g2
46 my_real, DIMENSION(NEL,6), INTENT(INOUT) :: sig,sigl
47 my_real, DIMENSION(NEL), INTENT(IN) :: offg
48 my_real, DIMENSION(MVSIZ), INTENT(INOUT) :: g
49C-----------------------------------------------
50C L o c a l V a r i a b l e s
51C-----------------------------------------------
52 INTEGER I, J,ipr
54 . ff,facg,facc,frho,p,facmax,facd,dp,sig2(6)
55C-----------------------------------------------
56 DO i=1,nel
57 ff = -min(sig(i,1),sig(i,2),sig(i,3))
58 IF (offg(i)>one .OR. ff <=g2 ) cycle
59 facd = max(one,sqrt(ff/g2))
60 facg = onep2*facd
61 sig(i,4)=facg*sig(i,4)
62 sig(i,5)=facg*sig(i,5)
63 sig(i,6)=facg*sig(i,6)
64 p = -third*(sig(i,1)+sig(i,2)+sig(i,3))
65 sig(i,1)=facd*(sig(i,1)+p)-p
66 sig(i,2)=facd*(sig(i,2)+p)-p
67 sig(i,3)=facd*(sig(i,3)+p)-p
68 g(i) = facg*g(i)
69 END DO
70 IF (ismstr==12) THEN
71 DO i=1,nel
72 ff = -min(sig(i,1),sig(i,2),sig(i,3))
73 IF (ff <=g2 .OR. offg(i)<=one) cycle
74 facd = max(one,ff/g2)
75 IF (facd>one) facd = onep25*facd
76 facg = facd - one
77 sig2(1) = sig(i,1)-sigl(i,1)
78 sig2(2) = sig(i,2)-sigl(i,2)
79 sig2(3) = sig(i,3)-sigl(i,3)
80 sig2(4) = sig(i,4)-sigl(i,4)
81 sig2(5) = sig(i,5)-sigl(i,5)
82 sig2(6) = sig(i,6)-sigl(i,6)
83 sig(i,4)=sig(i,4)+facg*sig2(4)
84 sig(i,5)=sig(i,5)+facg*sig2(5)
85 sig(i,6)=sig(i,6)+facg*sig2(6)
86 facd = half*facg
87 p = -third*(sig2(1)+sig2(2)+sig2(3))
88 sig(i,1)=sig(i,1)+facd*(sig2(1)+p)-p
89 sig(i,2)=sig(i,2)+facd*(sig2(2)+p)-p
90 sig(i,3)=sig(i,3)+facd*(sig2(3)+p)-p
91 g(i) = facg*g(i)
92 END DO
93 END IF !(ISMSTR==12) THEN
94C
95 RETURN
96 END
#define my_real
Definition cppsort.cpp:32
subroutine m1tot_stab24(sig, sigl, g2, g, offg, ismstr, nel)
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21