OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
i3gap3.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!|| i3gap3 ../engine/source/interfaces/inter3d/i3gap3.F
25!||--- called by ------------------------------------------------------
26!|| i5ke3 ../engine/source/interfaces/inter3d/i5ke3.F
27!|| i6main ../engine/source/interfaces/inter3d/i6main.F
28!|| i9main3 ../engine/source/interfaces/int09/i9main3.F
29!|| intvo3 ../engine/source/interfaces/inter3d/intvo3.F
30!|| ud_int5 ../engine/source/implicit/upd_glob_k.F
31!||====================================================================
32 SUBROUTINE i3gap3(
33 1 GAP, AREA, THK, ALP,
34 2 LFT, LLT)
35C-----------------------------------------------
36C I m p l i c i t T y p e s
37C-----------------------------------------------
38#include "implicit_f.inc"
39C-----------------------------------------------
40C G l o b a l P a r a m e t e r s
41C-----------------------------------------------
42#include "mvsiz_p.inc"
43C-----------------------------------------------
44C D u m m y A r g u m e n t s
45C-----------------------------------------------
46 INTEGER, INTENT(INOUT) :: LFT
47 INTEGER, INTENT(INOUT) :: LLT
49 . gap
50 my_real, DIMENSION(MVSIZ), INTENT(IN) :: area
51 my_real, DIMENSION(MVSIZ), INTENT(OUT) :: thk,alp
52C-----------------------------------------------
53C C o m m o n B l o c k s
54C-----------------------------------------------
55C-----------------------------------------------
56C L o c a l V a r i a b l e s
57C-----------------------------------------------
58 INTEGER I
59 my_real
60 . var
61C-----------------------------------------------
62C
63 DO i=lft,llt
64 thk(i) = gap
65 alp(i) = abs(two*gap/sqrt(area(i)))
66 var = fiveem2
67 alp(i) = max(var,alp(i))
68 var = one_fifth
69 alp(i) = min(var,alp(i))
70 ENDDO
71C
72 RETURN
73 END
#define my_real
Definition cppsort.cpp:32
subroutine area(d1, x, x2, y, y2, eint, stif0)
subroutine i3gap3(gap, area, thk, alp, lft, llt)
Definition i3gap3.F:35
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21