OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
m1tot_stab11.F File Reference
#include "implicit_f.inc"
#include "mvsiz_p.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine m1tot_stab11 (sig, g2, g, nel)

Function/Subroutine Documentation

◆ m1tot_stab11()

subroutine m1tot_stab11 ( intent(inout) sig,
intent(in) g2,
intent(inout) g,
integer, intent(in) nel )

Definition at line 28 of file m1tot_stab11.F.

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
44C
45 my_real, INTENT(IN) :: g2
46 my_real, DIMENSION(NEL,6), INTENT(INOUT) :: sig
47 my_real, DIMENSION(MVSIZ), INTENT(INOUT) :: g
48C-----------------------------------------------
49C L o c a l V a r i a b l e s
50C-----------------------------------------------
51 INTEGER I, J,ipr
53 . ff,facg,facc,frho,p,facmax,facd
54C-----------------------------------------------
55C--- only need for Isolid=18
56 facmax=1.5
57 DO i=1,nel
58 ff = -min(sig(i,1),sig(i,2),sig(i,3))
59 IF (ff <=g2 ) cycle
60 facg = max(one,sqrt(ff/g2))
61 facg = min(facmax,facg)
62 p = -third*(sig(i,1)+sig(i,2)+sig(i,3))
63 sig(i,1)=facg*(sig(i,1)+p)-p
64 sig(i,2)=facg*(sig(i,2)+p)-p
65 sig(i,3)=facg*(sig(i,3)+p)-p
66 sig(i,4)=facg*sig(i,4)
67 sig(i,5)=facg*sig(i,5)
68 sig(i,6)=facg*sig(i,6)
69 g(i) = facg*g(i)
70 END DO
71C
72 RETURN
#define my_real
Definition cppsort.cpp:32
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21