FE-Project
Loading...
Searching...
No Matches
scale_mesh_base.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
9#include "scaleFElib.h"
11
12 !-----------------------------------------------------------------------------
13 !
14 !++ used modules
15 !
16 use scale_precision
17 use scale_io
18
21
22 !-----------------------------------------------------------------------------
23 implicit none
24 private
25
26 !-----------------------------------------------------------------------------
27 !
28 !++ Public type & procedure
29 !
30
31 type, public :: meshdiminfo
32 character(len=H_SHORT) :: name
33 character(len=H_MID) :: desc
34 character(len=H_SHORT) :: unit
35 logical :: positive_down
36 end type meshdiminfo
37
38 type, abstract, public :: meshbase
39 integer :: local_mesh_num
40 integer :: prc_num
41 integer :: local_mesh_num_global
42
43 integer, allocatable :: tileid_globalmap(:,:)
44 integer, allocatable :: tilefaceid_globalmap(:,:)
45 integer, allocatable :: tilepanelid_globalmap(:,:)
46 integer, allocatable :: tileid_global2localmap(:)
47 integer, allocatable :: prcrank_globalmap(:)
48
49 class(elementbase), pointer :: refelem
50 type(meshdiminfo), allocatable :: diminfo(:)
51
52 real(rp) :: dom_vol
53
54 logical :: isgenerated
55 contains
56 procedure(meshbase_get_localmesh), deferred :: getlocalmesh
57 procedure :: setdiminfo => meshbase_setdiminfo
58 end type meshbase
59
60 interface
61 subroutine meshbase_get_localmesh( this, id, ptr_lcmesh )
62 import meshbase
63 import localmeshbase
64 class(meshbase), target, intent(in) :: this
65 integer, intent(in) :: id
66 class(localmeshbase), pointer, intent(out) :: ptr_lcmesh
67 end subroutine meshbase_get_localmesh
68 end interface
69
72
73 !-----------------------------------------------------------------------------
74 !
75 !++ Public parameters & variables
76 !
77
78 !-----------------------------------------------------------------------------
79 !
80 !++ Private procedure
81 !
82
83 !-----------------------------------------------------------------------------
84 !
85 !++ Private parameters & variables
86 !
87
88contains
89!OCL SERIAL
90 subroutine meshbase_init( this, &
91 ndimtype, refElem, NLocalMeshPerPrc, NsideTile, &
92 nprocs )
93
94 use scale_prc, only: &
95 prc_nprocs
96 implicit none
97
98 class(meshbase), intent(inout) :: this
99 integer, intent(in) :: ndimtype
100 class(elementbase), intent(in), target :: refelem
101 integer, intent(in) :: nlocalmeshperprc
102 integer, intent(in) :: nsidetile
103 integer, intent(in), optional :: nprocs
104
105 integer :: n
106 !-----------------------------------------------------------------------------
107
108 if (present(nprocs)) then
109 this%PRC_NUM = nprocs
110 else
111 this%PRC_NUM = prc_nprocs
112 end if
113
114 this%LOCAL_MESH_NUM = nlocalmeshperprc
115 this%LOCAL_MESH_NUM_global = this%PRC_NUM * this%LOCAL_MESH_NUM
116
117 this%refElem => refelem
118
119 allocate( this%tileID_globalMap(nsidetile, this%LOCAL_MESH_NUM_global) )
120 allocate( this%tileFaceID_globalMap(nsidetile, this%LOCAL_MESH_NUM_global) )
121 allocate( this%tilePanelID_globalMap(nsidetile, this%LOCAL_MESH_NUM_global) )
122 allocate( this%tileID_global2localMap(this%LOCAL_MESH_NUM_global) )
123 allocate( this%PRCRank_globalMap(this%LOCAL_MESH_NUM_global) )
124 allocate( this%dimInfo(ndimtype) )
125
126 this%isGenerated = .false.
127
128 return
129 end subroutine meshbase_init
130
131!OCL SERIAL
132 subroutine meshbase_final( this )
133 implicit none
134 class(meshbase), intent(inout) :: this
135 !-----------------------------------------------------------------------------
136
137 if ( allocated(this%tileID_globalMap) ) then
138 deallocate( this%tileID_globalMap )
139 deallocate( this%tileFaceID_globalMap )
140 deallocate( this%tilePanelID_globalMap )
141 deallocate( this%tileID_global2localMap )
142 deallocate( this%PRCRank_globalMap )
143 deallocate( this%dimInfo )
144 end if
145
146 return
147 end subroutine meshbase_final
148
149!OCL SERIAL
150 subroutine meshbase_setgeometricinfo( mesh, ndim )
151 implicit none
152
153 class(localmeshbase), intent(inout) :: mesh
154 integer, intent(in) :: ndim
155
156 class(elementbase), pointer :: refelem
157 !-----------------------------------------------------------------------------
158
159 refelem => mesh%refElem
160
161 allocate( mesh%pos_en(refelem%Np,mesh%Ne,ndim) )
162 !allocate( mesh%fx(refElem%Nfaces*refElem%Nfp,mesh%Ne) )
163 !allocate( mesh%fy(refElem%Nfaces*refElem%Nfp,mesh%Ne) )
164 allocate( mesh%normal_fn(refelem%NfpTot,mesh%Ne,ndim) )
165 allocate( mesh%sJ(refelem%NfpTot,mesh%Ne) )
166 allocate( mesh%J(refelem%Np,mesh%Ne) )
167 allocate( mesh%Fscale(refelem%NfpTot,mesh%Ne) )
168 allocate( mesh%Escale(refelem%Np,mesh%Ne,ndim,ndim) )
169 allocate( mesh%Gsqrt(refelem%Np,mesh%Ne) )
170 allocate( mesh%G_ij(refelem%Np,mesh%Ne, ndim,ndim) )
171 allocate( mesh%GIJ (refelem%Np,mesh%Ne, ndim,ndim) )
172
173 return
174 end subroutine meshbase_setgeometricinfo
175
176!OCL SERIAL
177 subroutine meshbase_setdiminfo( this, &
178 dimID, name, unit, desc, positive_down )
179 implicit none
180 class(meshbase), intent(inout) :: this
181 integer, intent(in) :: dimid
182 character(len=*), intent(in) :: name
183 character(len=*), intent(in) :: unit
184 character(len=*), intent(in) :: desc
185 logical, intent(in), optional :: positive_down
186
187 !-----------------------------------------------
188
189 this%dimInfo(dimid)%name = name
190 this%dimInfo(dimid)%unit = unit
191 this%dimInfo(dimid)%desc = desc
192 if ( present(positive_down) ) then
193 this%dimInfo(dimid)%positive_down = positive_down
194 else
195 this%dimInfo(dimid)%positive_down = .false.
196 end if
197
198 return
199 end subroutine meshbase_setdiminfo
200
201end module scale_mesh_base
module FElib / Element / Base
module FElib / Mesh / Local, Base
module FElib / Mesh / Base
subroutine, public meshbase_final(this)
subroutine, public meshbase_setgeometricinfo(mesh, ndim)
subroutine, public meshbase_init(this, ndimtype, refelem, nlocalmeshperprc, nsidetile, nprocs)