OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
m25delam.F File Reference
#include "implicit_f.inc"
#include "comlock.inc"
#include "mvsiz_p.inc"
#include "units_c.inc"
#include "param_c.inc"
#include "com08_c.inc"
#include "impl1_c.inc"
#include "lockon.inc"
#include "lockoff.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine m25delam (jft, jlt, pm, gstr, damdl, mat, ngl, nel)

Function/Subroutine Documentation

◆ m25delam()

subroutine m25delam ( integer jft,
integer jlt,
pm,
gstr,
damdl,
integer, dimension(mvsiz) mat,
integer, dimension(mvsiz) ngl,
integer nel )

Definition at line 28 of file m25delam.F.

29C-----------------------------------------------
30C I m p l i c i t T y p e s
31C-----------------------------------------------
32#include "implicit_f.inc"
33#include "comlock.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 C o m m o n B l o c k s
40C-----------------------------------------------
41#include "units_c.inc"
42#include "param_c.inc"
43#include "com08_c.inc"
44#include "impl1_c.inc"
45C-----------------------------------------------
46C D u m m y A r g u m e n t s
47C-----------------------------------------------
48 INTEGER JFT, JLT,NEL
49 INTEGER MAT(MVSIZ),NGL(MVSIZ)
50C REAL
52 . pm(npropm,*), damdl(*), gstr(nel,8)
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56 INTEGER I,MX
57C REAL
59 . shear, dam1, dam2
60C REAL
62 . shrdam_1,shrmax_1,shrdmax_1
63C--------------------------------------------------
64C E q u i v a l e n c e
65C--------------------------------------------------
66 mx = mat(jft)
67 shrdam_1 =pm(65,mx)
68 shrmax_1 =pm(66,mx)
69 shrdmax_1 =pm(67,mx)
70C
71C shrdam=0.0655/1.3
72C shrmax=shrdam+0.01
73C igr=1+nft/mvsiz
74C
75 DO 100 i=jft,jlt
76 IF(damdl(i)>zero) THEN
77 shear=three_half*sqrt(gstr(i,4)**2+gstr(i,5)**2)
78 dam1=(shear-shrdam_1)/(shrmax_1-shrdam_1)
79 dam2=dam1*shrmax_1/shear
80 damdl(i)=max(dam2,damdl(i))
81 damdl(i)=min(shrdmax_1,damdl(i))
82 ENDIF
83 100 CONTINUE
84C
85 DO 110 i=jft,jlt
86 IF(damdl(i)==zero) THEN
87 shear=three_half*sqrt(gstr(i,4)**2+gstr(i,5)**2)
88 IF(shear>shrdam_1) THEN
89 dam1=(shear-shrdam_1)/(shrmax_1-shrdam_1)
90 dam2=dam1*shrmax_1/shear
91 damdl(i)=min(shrdmax_1,dam2)
92 IF(imconv==1)THEN
93#include "lockon.inc"
94 WRITE(iout, 1200) ngl(i)
95 WRITE(istdo,1300) ngl(i),tt
96#include "lockoff.inc"
97 ENDIF
98 ENDIF
99 ENDIF
100 110 CONTINUE
101C
102 1200 FORMAT('- DELAMINATION OF SHELL ELEMENT NUMBER ',i10)
103 1300 FORMAT('- DELAMINATION OF SHELL ELEMENT :',i10,' AT TIME :',g11.4)
104C---+----1----+----2----+----3----+----4----+----5----+----6----+----7--
105 RETURN
#define my_real
Definition cppsort.cpp:32
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21