OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
xfecut.F File Reference
#include "implicit_f.inc"
#include "param_c.inc"
#include "com01_c.inc"
#include "com04_c.inc"
#include "com_xfem1.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine xfecut (iparg, ixc, ixtg, ilev, elcutc, iel_crk, iadc_crk, nodedge, crkedge, xedge4n, xedge3n)

Function/Subroutine Documentation

◆ xfecut()

subroutine xfecut ( integer, dimension(nparg,*) iparg,
integer, dimension(nixc,*) ixc,
integer, dimension(nixtg,*) ixtg,
integer ilev,
integer, dimension(2,*) elcutc,
integer, dimension(*) iel_crk,
integer, dimension(*) iadc_crk,
integer, dimension(2,*) nodedge,
type (xfem_edge_), dimension(*) crkedge,
integer, dimension(4,*) xedge4n,
integer, dimension(3,*) xedge3n )

Definition at line 34 of file xfecut.F.

37C-----------------------------------------------
39 use element_mod , only : nixc,nixtg
40C-----------------------------------------------
41C I m p l i c i t T y p e s
42C-----------------------------------------------
43#include "implicit_f.inc"
44C-----------------------------------------------
45C C o m m o n B l o c k s
46C-----------------------------------------------
47#include "param_c.inc"
48#include "com01_c.inc"
49#include "com04_c.inc"
50#include "com_xfem1.inc"
51C-----------------------------------------------
52C D u m m y A r g u m e n t s
53C-----------------------------------------------
54 INTEGER ILEV,IPARG(NPARG,*),IXC(NIXC,*),ELCUTC(2,*),IEL_CRK(*),
55 . IADC_CRK(*),IXTG(NIXTG,*),NODEDGE(2,*),XEDGE4N(4,*),XEDGE3N(3,*)
56 TYPE (XFEM_EDGE_) , DIMENSION(*) :: CRKEDGE
57C-----------------------------------------------
58C L o c a l V a r i a b l e s
59C-----------------------------------------------
60 INTEGER NG,NEL,JFT,JLT,NFT,IXFEM,ITY,ITG1,ITG2,ACTIFXFEM
61C=======================================================================
62 IF (nlevset > 0) THEN
63C---
64 itg1 = 1+numelc
65 itg2 = 1+4*ecrkxfec
66C
67 DO ng=1,ngroup
68 nel = iparg(2,ng)
69 nft = iparg(3,ng)
70 ity = iparg(5,ng)
71 ixfem = iparg(54,ng)
72 actifxfem = iparg(70,ng)
73 IF (ity/=3 .and. ity/=7) cycle
74 IF (ixfem == 0) cycle
75 IF (actifxfem == 0) cycle
76 jft = 1
77 jlt = nel
78C
79 IF (ity == 3) THEN
80 CALL xfeconnec4n(
81 . jft ,jlt ,nft ,ixc ,elcutc ,
82 . iel_crk ,iadc_crk,ilev ,nodedge ,crkedge ,
83 . xedge4n )
84 ELSE IF (ity == 7) THEN
85 CALL xfeconnec3n(
86 . jft ,jlt ,nft ,ixtg ,elcutc(1,itg1),
87 . iel_crk(itg1),iadc_crk(itg2),ilev ,nodedge,crkedge,
88 . xedge3n )
89 END IF
90 ENDDO
91 ENDIF
92C-----------
93 RETURN
subroutine xfeconnec3n(jft, jlt, nft, ixtg, elcutc, iel_crktg, iad_crktg, ilev, nodedge, crkedge, xedge3n)
Definition xfeconnec3n.F:35
subroutine xfeconnec4n(jft, jlt, nft, ixc, elcutc, iel_crk, iadc_crk, ilev, nodedge, crkedge, xedge4n)
Definition xfeconnec4n.F:34