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

Go to the source code of this file.

Functions/Subroutines

subroutine activ_xfem (iparg, nft, jft, jlt, nxlay, ng, elcutc, iel_crk, ity, crkedge)

Function/Subroutine Documentation

◆ activ_xfem()

subroutine activ_xfem ( integer, dimension(nparg,*) iparg,
integer nft,
integer jft,
integer jlt,
integer nxlay,
integer ng,
integer, dimension(2,*) elcutc,
integer, dimension(*) iel_crk,
integer ity,
type (xfem_edge_), dimension(*) crkedge )

Definition at line 30 of file activ_xfem.F.

32C-----------------------------------------------
34C-----------------------------------------------
35C I m p l i c i t T y p e s
36C-----------------------------------------------
37#include "implicit_f.inc"
38C-----------------------------------------------
39C G l o b a l P a r a m e t e r s
40C-----------------------------------------------
41#include "mvsiz_p.inc"
42C-----------------------------------------------
43C C o m m o n B l o c k s
44C-----------------------------------------------
45#include "com_xfem1.inc"
46#include "param_c.inc"
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50 INTEGER NFT,JFT,JLT,NXLAY,IPARG(NPARG,*),NG,
51 . IEL_CRK(*),ELCUTC(2,*),ITY
52 TYPE (XFEM_EDGE_) , DIMENSION(*) :: CRKEDGE
53C-----------------------------------------------
54C L o c a l V a r i a b l e s
55C-----------------------------------------------
56 INTEGER I,ELCRK,IELCUT,ILAYCUT,ILAY,IGON
57 INTEGER ISHEON(MVSIZ)
58C=======================================================================
59 DO i=jft,jlt
60 ielcut = elcutc(1,i+nft)
61 isheon(i) = 0
62 IF (ielcut /= 0) THEN
63 elcrk = iel_crk(i+nft)
64 IF (ity == 7) elcrk = elcrk + ecrkxfec
65 DO ilay = 1,nxlay
66 ilaycut = crkedge(ilay)%LAYCUT(elcrk)
67 IF (abs(ilaycut) == 1) isheon(i) = 1
68 ENDDO
69 ENDIF
70 ENDDO
71C
72 igon = 0
73 DO i=jft,jlt
74 IF (isheon(i) > 0) THEN
75 igon = 1
76 ENDIF
77 ENDDO
78C----------------------------------------
79C TEST FOR NEW GROUP ACTIVATION
80C----------------------------------------
81 IF (igon == 1) iparg(70,ng) = igon
82C-----------
83 RETURN