33 real(rp) :: xmin, xmax
34 real(rp) :: ymin, ymax
35 real(rp) :: zmin, zmax
42 real(rp),
allocatable :: sz(:,:)
43 real(rp),
allocatable :: zs(:,:)
44 real(rp),
allocatable :: gi3(:,:,:)
45 real(rp),
allocatable :: gsqrth(:,:)
46 real(rp),
allocatable :: zlev(:,:)
47 real(rp),
allocatable :: gam(:,:)
50 real(rp),
allocatable :: lon2d(:,:)
51 real(rp),
allocatable :: lat2d(:,:)
53 integer,
allocatable :: emap3dto2d(:)
55 procedure :: setlocalmesh2d => localmesh3d_setlocalmesh2d
56 procedure :: getvmapz1d => localmesh3d_getvmapz1d
79 lcdomID, refElem, myrank )
83 integer,
intent(in) :: lcdomid
85 integer,
intent(in),
optional :: myrank
88 this%refElem3D => refelem
89 nullify( this%lcmesh2D )
100 logical,
intent(in) :: is_generated
104 if (is_generated)
then
105 deallocate( this%zS, this%Sz )
106 deallocate( this%GI3, this%GsqrtH )
107 deallocate( this%zlev )
108 deallocate( this%gam )
109 deallocate( this%lon2D, this%lat2D )
110 deallocate( this%EMap3Dto2D )
117 subroutine localmesh3d_setlocalmesh2d( this, lcmesh2D )
123 this%lcmesh2D => lcmesh2d
126 end subroutine localmesh3d_setlocalmesh2d
129 subroutine localmesh3d_getvmapz1d( this, vmapM, vmapP )
133 integer,
intent(out) :: vmapm(this%refelem3d%nfptot,this%nez)
134 integer,
intent(out) :: vmapp(this%refelem3d%nfptot,this%nez)
143 elem => this%refElem3D
146 do f=1, elem%Nfaces_h
147 vs = 1 + (f-1)*elem%Nfp_h
148 ve = vs + elem%Nfp_h - 1
149 vmapm(vs:ve,ke_z) = elem%Fmask_h(:,f) + (ke_z-1)*elem%Np
151 do f=1, elem%Nfaces_v
152 vs = elem%Nfp_h*elem%Nfaces_h + 1 + (f-1)*elem%Nfp_v
153 ve = vs + elem%Nfp_v - 1
154 vmapm(vs:ve,ke_z) = elem%Fmask_v(:,f) + (ke_z-1)*elem%Np
156 vmapp(:,ke_z) = vmapm(:,ke_z)
160 vs = elem%Nfp_h*elem%Nfaces_h + 1
161 ve = vs + elem%Nfp_v - 1
163 vmapp(vs:ve,ke_z) = elem%Fmask_v(:,2) + (ke_z-2)*elem%Np
165 vs = elem%Nfp_h*elem%Nfaces_h + elem%Nfp_v + 1
166 ve = vs + elem%Nfp_v - 1
167 if (ke_z < this%NeZ) &
168 vmapp(vs:ve,ke_z) = elem%Fmask_v(:,1) + ke_z*elem%Np
172 end subroutine localmesh3d_getvmapz1d
174end module scale_localmesh_3d
module FElib / Element / Base
module FElib / Mesh / Local 2D
module FElib / Mesh / Local 3D
subroutine, public localmesh3d_final(this, is_generated)
subroutine, public localmesh3d_init(this, lcdomid, refelem, myrank)
module FElib / Mesh / Local, Base
subroutine, public localmeshbase_final(this, is_generated)
subroutine, public localmeshbase_init(this, lcdomid, refelem, ndim, myrank)