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

Go to the source code of this file.

Functions/Subroutines

subroutine i3gap3 (gap, area, thk, alp, lft, llt)

Function/Subroutine Documentation

◆ i3gap3()

subroutine i3gap3 ( gap,
intent(in) area,
intent(out) thk,
intent(out) alp,
integer, intent(inout) lft,
integer, intent(inout) llt )

Definition at line 32 of file i3gap3.F.

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
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
#define my_real
Definition cppsort.cpp:32
subroutine area(d1, x, x2, y, y2, eint, stif0)
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21