#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | crk_coord_ini (addcne_crk, inod_crk, nodft, nodlt, x, nodlevxf) |
◆ crk_coord_ini()
| subroutine crk_coord_ini |
( |
integer, dimension(*) | addcne_crk, |
|
|
integer, dimension(*) | inod_crk, |
|
|
integer | nodft, |
|
|
integer | nodlt, |
|
|
| x, |
|
|
integer, dimension(*) | nodlevxf ) |
Definition at line 32 of file crk_coord_ini.F.
33
35
36
37
38#include "implicit_f.inc"
39
40
41
42
43
44
45 INTEGER NODFT,NODLT,ADDCNE_CRK(*),INOD_CRK(*),NODLEVXF(*)
47
48
49
50 INTEGER I,KK,N,NX,NCT,NC,ILEV,NLEV
51
52 DO n = nodft,nodlt
53 nx = inod_crk(n)
54 IF (nx > 0) THEN
55
56 nct = addcne_crk(nx)-1
57 nc = addcne_crk(nx+1)-addcne_crk(nx)
58
59
60
61 nlev = nodlevxf(nx)
62 DO kk = nct+1, nct+nc
63 DO ilev=1,nlev
64 crkavx(ilev)%X(1,kk) = x(1,n)
65 crkavx(ilev)%X(2,kk) = x(2,n)
66 crkavx(ilev)%X(3,kk) = x(3,n)
67 END DO
68 END DO
69 ENDIF
70 ENDDO
71
72 RETURN
type(xfem_avx_), dimension(:), allocatable crkavx