OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
cndt_ply.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!|| cndt_ply ../engine/source/properties/composite_options/stack/cndt_ply.F
25!||--- called by ------------------------------------------------------
26!|| cbaforc3 ../engine/source/elements/shell/coqueba/cbaforc3.F
27!||====================================================================
28 SUBROUTINE cndt_ply(JFT ,JLT ,NPT,OFF ,ALDT ,AREA ,THK,
29 1 THK_IPLY,A1 ,A1_IPLY,STI ,OFFI,VISCMX)
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
86 END
subroutine cndt_ply(jft, jlt, npt, off, aldt, area, thk, thk_iply, a1, a1_iply, sti, offi, viscmx)
Definition cndt_ply.F:30
#define my_real
Definition cppsort.cpp:32
subroutine area(d1, x, x2, y, y2, eint, stif0)
#define max(a, b)
Definition macros.h:21