FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines
scale_mesh_base Module Reference

module FElib / Mesh / Base More...

Data Types

type  meshbase
 
interface  meshbase_get_localmesh
 
type  meshdiminfo
 

Functions/Subroutines

subroutine, public meshbase_init (this, ndimtype, refelem, nlocalmeshperprc, nsidetile, nprocs)
 
subroutine, public meshbase_final (this)
 
subroutine, public meshbase_setgeometricinfo (mesh, ndim)
 

Detailed Description

module FElib / Mesh / Base

Description
Base module to mangage meshes for element-based methods
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ meshbase_init()

subroutine, public scale_mesh_base::meshbase_init ( class(meshbase), intent(inout) this,
integer, intent(in) ndimtype,
class(elementbase), intent(in), target refelem,
integer, intent(in) nlocalmeshperprc,
integer, intent(in) nsidetile,
integer, intent(in), optional nprocs )

Definition at line 90 of file scale_mesh_base.F90.

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

Referenced by scale_mesh_base1d::meshbase1d_init(), scale_mesh_base2d::meshbase2d_init(), scale_mesh_base3d::meshbase3d_init(), and scale_mesh_base::meshbase_get_localmesh::meshbase_get_localmesh().

◆ meshbase_final()

subroutine, public scale_mesh_base::meshbase_final ( class(meshbase), intent(inout) this)

Definition at line 132 of file scale_mesh_base.F90.

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

Referenced by scale_mesh_base1d::meshbase1d_final(), scale_mesh_base2d::meshbase2d_final(), scale_mesh_base3d::meshbase3d_final(), and scale_mesh_base::meshbase_get_localmesh::meshbase_get_localmesh().

◆ meshbase_setgeometricinfo()

subroutine, public scale_mesh_base::meshbase_setgeometricinfo ( class(localmeshbase), intent(inout) mesh,
integer, intent(in) ndim )

Definition at line 150 of file scale_mesh_base.F90.

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

Referenced by scale_mesh_base1d::meshbase1d_setgeometricinfo(), and scale_mesh_base::meshbase_get_localmesh::meshbase_get_localmesh().