11#include "scaleFElib.h"
19 use scale_prc,
only: &
49 integer :: communicator_num
52 procedure :: modelmeshbase_final
53 procedure :: get_communicatorid => modelmeshbase_get_communicatorid
62 class(
meshbase),
pointer,
intent(out) :: ptr_mesh
69 procedure,
public :: modelmeshbase1d_init
70 procedure,
public :: modelmeshbase1d_final
71 procedure,
public :: getmodelmesh => modelmeshbase1d_get_modelmesh
77 procedure,
public :: modelmeshbase2d_init
78 procedure,
public :: modelmeshbase2d_final
79 procedure,
public :: getmodelmesh => modelmeshbase2d_get_modelmesh
86 logical :: initialized_element_operation
88 procedure,
public :: modelmeshbase3d_init
89 procedure,
public :: modelmeshbase3d_final
90 procedure,
public :: prepairelementoperation => modelmeshbase3d_prepair_elementoperation
91 procedure,
public :: getmodelmesh => modelmeshbase3d_get_modelmesh
110 integer,
intent(in) :: nDim
115 this%communicator_num = 0
116 allocate( this%SOptrMat(ndim), this%DOptrMat(ndim) )
122 function modelmeshbase_get_communicatorid( this, max_communicator_num )
result(commid)
125 integer,
intent(in) :: max_communicator_num
129 this%communicator_num = this%communicator_num + 1
130 commid = this%communicator_num
132 if ( commid > max_communicator_num )
then
133 log_error(
'ModelMeshBase_get_communicatorID',*)
'The number of communicator exceeds expectation. Check!'
138 end function modelmeshbase_get_communicatorid
141 subroutine modelmeshbase_final( this )
148 do d = 1,
size(this%DOptrMat)
149 call this%DOptrMat(d)%Final()
150 call this%SOptrMat(d)%Final()
152 deallocate( this%SOptrMat, this%DOptrMat )
154 call this%LiftOptrMat%Final()
157 end subroutine modelmeshbase_final
161 subroutine modelmeshbase1d_init( this, mesh )
167 this%ptr_mesh => mesh
168 call this%ModelMeshBase_Init(1)
171 end subroutine modelmeshbase1d_init
174 subroutine modelmeshbase1d_final( this )
181 nullify( this%ptr_mesh )
182 call this%ModelMeshBase_Final()
185 end subroutine modelmeshbase1d_final
188 subroutine modelmeshbase1d_get_modelmesh( this, ptr_mesh )
191 class(
meshbase),
pointer,
intent(out) :: ptr_mesh
194 ptr_mesh => this%ptr_mesh
197 end subroutine modelmeshbase1d_get_modelmesh
202 subroutine modelmeshbase2d_init( this, mesh )
208 this%ptr_mesh => mesh
209 call this%ModelMeshBase_Init(2)
212 end subroutine modelmeshbase2d_init
215 subroutine modelmeshbase2d_final( this )
220 nullify( this%ptr_mesh )
221 call this%ModelMeshBase_Final()
224 end subroutine modelmeshbase2d_final
227 subroutine modelmeshbase2d_get_modelmesh( this, ptr_mesh )
230 class(
meshbase),
pointer,
intent(out) :: ptr_mesh
233 ptr_mesh => this%ptr_mesh
235 end subroutine modelmeshbase2d_get_modelmesh
240 subroutine modelmeshbase3d_init( this, mesh )
246 this%ptr_mesh => mesh
247 call this%ModelMeshBase_Init(3)
249 this%initialized_element_operation = .false.
252 end subroutine modelmeshbase3d_init
255 subroutine modelmeshbase3d_final( this )
260 if ( this%initialized_element_operation )
then
261 call this%element3D_operation%Final()
264 nullify( this%ptr_mesh )
265 call this%ModelMeshBase_Final()
268 end subroutine modelmeshbase3d_final
271 subroutine modelmeshbase3d_prepair_elementoperation( this, element_operation_type, &
272 SpMV_storage_format_ )
273 use scale_prc,
only: prc_abort
277 character(len=*),
intent(in),
optional :: element_operation_type
278 character(len=*),
intent(in),
optional :: SpMV_storage_format_
280 character(len=H_SHORT) :: element_operation_type_
281 character(len=H_SHORT) :: SpMV_storage_format
286 if (
present(element_operation_type) )
then
287 element_operation_type_ = element_operation_type
289 element_operation_type_ =
"General"
291 spmv_storage_format =
"ELL"
292 elem3d => this%ptr_mesh%refElem3D
293 call this%DOptrMat(1)%Init( elem3d%Dx1, storage_format=spmv_storage_format )
294 call this%DOptrMat(2)%Init( elem3d%Dx2, storage_format=spmv_storage_format )
295 call this%DOptrMat(3)%Init( elem3d%Dx3, storage_format=spmv_storage_format )
297 call this%SOptrMat(1)%Init( elem3d%Sx1, storage_format=spmv_storage_format )
298 call this%SOptrMat(2)%Init( elem3d%Sx2, storage_format=spmv_storage_format )
299 call this%SOptrMat(3)%Init( elem3d%Sx3, storage_format=spmv_storage_format )
301 call this%LiftOptrMat%Init( elem3d%Lift, storage_format=spmv_storage_format )
303 select case(element_operation_type_)
305 call this%element_operation_general%Init( elem3d, this%DOptrMat(1), this%DOptrMat(2), this%DOptrMat(3), this%LiftOptrMat )
306 this%element3D_operation => this%element_operation_general
307 case (
"TensorProd3D")
309 this%element_operation_tensorprod )
310 this%element3D_operation => this%element_operation_tensorprod
312 log_info(
"ModelMeshBase3D_prepair_ElementOperation",*)
"The specified element_operation_type is not supported. Check!", trim(element_operation_type_)
316 this%initialized_element_operation = .true.
319 end subroutine modelmeshbase3d_prepair_elementoperation
322 subroutine modelmeshbase3d_get_modelmesh( this, ptr_mesh )
325 class(
meshbase),
pointer,
intent(out) :: ptr_mesh
328 ptr_mesh => this%ptr_mesh
330 end subroutine modelmeshbase3d_get_modelmesh
332end module scale_model_meshbase_manager
module FElib / Element / Base
module FElib / Element / Operation / Base
module FElib / Element / Operation with arbitary elements
module FElib / Element / Operation with 3D tensor product elements
subroutine, public elementoperationtensorprod3d_create(elem3d, obj)
module FElib / Mesh / Base 1D
module FElib / Mesh / Base 2D
module FElib / Mesh / Base 3D
module FElib / Mesh / Base
FElib / model framework / mesh manager (base)
subroutine modelmeshbase_init(this, ndim)
module common / sparsemat