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

Go to the source code of this file.

Functions/Subroutines

subroutine cndt_ply (jft, jlt, npt, off, aldt, area, thk, thk_iply, a1, a1_iply, sti, offi, viscmx)

Function/Subroutine Documentation

◆ cndt_ply()

subroutine cndt_ply ( integer jft,
integer jlt,
integer npt,
off,
aldt,
area,
thk,
thk_iply,
a1,
a1_iply,
sti,
offi,
viscmx )

Definition at line 28 of file cndt_ply.F.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34#include "comlock.inc"
35C-----------------------------------------------
36C G l o b a l P a r a m e t e r s
37C-----------------------------------------------
38#include "mvsiz_p.inc"
39C-----------------------------------------------
40C D u m m y A r g u m e n t s
41C-----------------------------------------------
42 INTEGER JFT, JLT,NPT
44 . off(*),sti(mvsiz,*),
45 . aldt(*), a1(mvsiz,*), thk(mvsiz,*),
46 . area(*),a1_iply(mvsiz,*),thk_iply(mvsiz,*),
47 . offi(mvsiz,*),viscmx(*)
48C-----------------------------------------------
49C L o c a l V a r i a b l e s
50C-----------------------------------------------
51 INTEGER INDXOF(MVSIZ),
52 . I, J, JINF,JSUP
53C REAL
55 . divm ,fac,vol
56C-----------------------------------------------
57 DO i=jft,jlt
58 divm=aldt(i)*viscmx(i)
59 divm= max(divm*divm, em20)
60 DO j=1,npt
61 vol = area(i)*thk(i,j)
62 sti(i,j) = half*vol * a1(i,j)* off(i) / divm
63 ENDDO
64 ENDDO
65C
66 DO i=jft,jlt
67 divm=max(aldt(i)*aldt(i),em20)
68 DO j=1,npt - 1
69 jinf = j
70 jsup = j + 1
71C sti = vol*E/lc*lc
72C lc = (vol)**0.3333
73C here we take lc = hi
74C la rigidit est surestim , dans le cas ou hi<lc
75cc FAC = OFF(I)*ONE_OVER_8*AREA(I)/THK_IPLY(I,J)
76cc FAC = OFFI(I,J)*AREA(I)/THK_IPLY(I,J)
77 IF(off(i)/=zero)THEN
78 fac = area(i)*four
79 sti(i,jinf) = sti(i,jinf) + fac * a1_iply(i,j)
80 sti(i,jsup) = sti(i,jsup) + fac * a1_iply(i,j)
81 END IF
82 ENDDO
83 ENDDO
84C
85 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine area(d1, x, x2, y, y2, eint, stif0)
#define max(a, b)
Definition macros.h:21