OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
agaug3t.F File Reference
#include "implicit_f.inc"
#include "comlock.inc"
#include "com04_c.inc"
#include "vect01_c.inc"
#include "param_c.inc"
#include "tabsiz_c.inc"
#include "lockon.inc"
#include "lockoff.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine agaug3t (lgauge, gauge, phi, ixtg, x, ale_connect)

Function/Subroutine Documentation

◆ agaug3t()

subroutine agaug3t ( integer, dimension(3,nbgauge), intent(inout) lgauge,
dimension(llgauge,nbgauge), intent(inout) gauge,
dimension(sphi), intent(in) phi,
integer, dimension(nixtg,numeltg), intent(in) ixtg,
dimension(3,numnod), intent(in) x,
type(t_ale_connectivity), intent(in) ale_connect )

Definition at line 31 of file agaug3t.F.

33 use element_mod , only : nixtg
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38#include "comlock.inc"
39C-----------------------------------------------
40C C o m m o n B l o c k s
41C-----------------------------------------------
42#include "com04_c.inc"
43#include "vect01_c.inc"
44#include "param_c.inc"
45#include "tabsiz_c.inc"
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 INTEGER ,INTENT (IN) :: IXTG(NIXTG,NUMELTG)
50 INTEGER ,INTENT (INOUT) :: LGAUGE(3,NBGAUGE)
51 my_real, INTENT(IN) :: phi(sphi),x(3,numnod)
52 my_real, INTENT(INOUT) :: gauge(llgauge,nbgauge)
53 TYPE(t_ale_connectivity), INTENT(IN) :: ALE_CONNECT
54C-----------------------------------------------
55C L o c a l V a r i a b l e s
56C-----------------------------------------------
57 INTEGER I,II,J,N,IG,IAD2
58 my_real alpha,xg,yg,zg,
59 . det_12_1p,det_23_2p,det_31_3p,y1,z1,y2,z2,y3,z3
60C-----------------------------------------------
61C S o u r c e L i n e s
62C-----------------------------------------------
63c--------------------------------------------------------------
64c Searching for the new element associated to the gauge
65c--------------------------------------------------------------
66 DO i=1,llt
67 ii=i+nft
68 iad2 = ale_connect%ee_connect%iad_connect(ii)
69 DO j=1,3
70 n= ale_connect%ee_connect%connected(iad2 + j - 1)
71 IF(n<=0)cycle
72 ig=nint(phi(n))
73 IF(ig==0)cycle
74
75!
76 xg = gauge(2,ig)
77 yg = gauge(3,ig)
78 zg = gauge(4,ig)
79!
80! check if gauge is changing of element
81 ! TRIA 2D
82 !
83 y1 = x(2,ixtg(2,ii))
84 z1 = x(3,ixtg(2,ii))
85 y2 = x(2,ixtg(3,ii))
86 z2 = x(3,ixtg(3,ii))
87 y3 = x(2,ixtg(4,ii))
88 z3 = x(3,ixtg(4,ii))
89!
90 det_12_1p = (y2-y1)*(zg-z1)-(z2-z1)*(yg-y1)
91 det_23_2p = (y3-y2)*(zg-z2)-(z3-z2)*(yg-y2)
92 det_31_3p = (y1-y3)*(zg-z3)-(z1-z3)*(yg-y3)
93!
94 alpha = zero
95 IF ( (det_12_1p >=0 .AND. det_23_2p >=0 .AND.
96 . det_31_3p >=0) .OR.
97 . (det_12_1p <=0 .AND. det_23_2p <=0 .AND.
98 . det_31_3p <=0) ) alpha = one
99
100#include "lockon.inc"
101 IF(alpha == one .AND. alpha >= gauge(5,ig))THEN
102c the gauge is changing of element
103c element associated to the gauge
104 lgauge(1,ig)=-ii
105 gauge(5,ig)=alpha
106 ENDIF
107#include "lockoff.inc"
108 ENDDO
109 ENDDO
110
111
112 RETURN
#define my_real
Definition cppsort.cpp:32
#define alpha
Definition eval.h:35