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

module FElib / Mesh / Local, Base More...

Data Types

type  localmeshbase
 

Functions/Subroutines

subroutine, public localmeshbase_init (this, lcdomid, refelem, ndim, myrank)
 
subroutine, public localmeshbase_final (this, is_generated)
 

Variables

integer, parameter, public bctype_interior = 0
 
integer, parameter, public bctype_undefbc = 1
 
integer, parameter, public bctype_periodic = 2
 
integer, parameter, public bctype_dirchlet = 3
 
integer, parameter, public bctype_neuman = 4
 
integer, parameter, public bctype_shoreline = 5
 

Detailed Description

module FElib / Mesh / Local, Base

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

Function/Subroutine Documentation

◆ localmeshbase_init()

subroutine, public scale_localmesh_base::localmeshbase_init ( class(localmeshbase), intent(inout) this,
integer, intent(in) lcdomid,
class(elementbase), intent(in), target refelem,
integer, intent(in) ndim,
integer, intent(in), optional myrank )

Definition at line 100 of file scale_localmesh_base.F90.

101
102 use scale_prc, only: prc_myrank
103 implicit none
104
105 class(LocalMeshBase), intent(inout) :: this
106 integer, intent(in) :: lcdomID
107 class(ElementBase), intent(in), target :: refElem
108 integer, intent(in) :: ndim
109 integer, intent(in), optional :: myrank
110 !-----------------------------------------------------------------------------
111
112 this%lcdomID = lcdomid
113 this%refElem => refelem
114
115 if (present(myrank)) then
116 this%PRC_myrank = myrank
117 else
118 this%PRC_myrank = prc_myrank
119 end if
120
121 return

Referenced by scale_localmesh_1d::localmesh1d_init(), scale_localmesh_2d::localmesh2d_init(), and scale_localmesh_3d::localmesh3d_init().

◆ localmeshbase_final()

subroutine, public scale_localmesh_base::localmeshbase_final ( class(localmeshbase), intent(inout) this,
logical, intent(in) is_generated )

Definition at line 124 of file scale_localmesh_base.F90.

125 implicit none
126
127 class(LocalMeshBase), intent(inout) :: this
128 logical, intent(in) :: is_generated
129 !-----------------------------------------------------------------------------
130
131 if ( is_generated ) then
132 deallocate( this%pos_ev, this%pos_en, this%normal_fn )
133 deallocate( this%sJ, this%J )
134
135 deallocate( this%Escale, this%Fscale )
136
137 deallocate( this%EToV, this%EToE, this%EToF )
138
139 if ( allocated(this%VMapM) ) then
140 deallocate( this%VMapM, this%VMapP, this%MapM, this%MapP )
141 end if
142 if ( allocated(this%VMapB) ) then
143 deallocate( this%BCType )
144 deallocate( this%VMapB, this%MapB )
145 end if
146 if ( allocated(this%G_ij) ) then
147 deallocate( this%G_ij, this%GIJ )
148 deallocate( this%Gsqrt )
149 end if
150 end if
151
152 return

Referenced by scale_localmesh_1d::localmesh1d_final(), scale_localmesh_2d::localmesh2d_final(), and scale_localmesh_3d::localmesh3d_final().

Variable Documentation

◆ bctype_interior

integer, parameter, public scale_localmesh_base::bctype_interior = 0

◆ bctype_undefbc

integer, parameter, public scale_localmesh_base::bctype_undefbc = 1

Definition at line 83 of file scale_localmesh_base.F90.

83 integer, public, parameter :: BCTYPE_UNDEFBC = 1

◆ bctype_periodic

integer, parameter, public scale_localmesh_base::bctype_periodic = 2

Definition at line 84 of file scale_localmesh_base.F90.

84 integer, public, parameter :: BCTYPE_PERIODIC = 2

◆ bctype_dirchlet

integer, parameter, public scale_localmesh_base::bctype_dirchlet = 3

Definition at line 85 of file scale_localmesh_base.F90.

85 integer, public, parameter :: BCTYPE_DIRCHLET = 3

◆ bctype_neuman

integer, parameter, public scale_localmesh_base::bctype_neuman = 4

Definition at line 86 of file scale_localmesh_base.F90.

86 integer, public, parameter :: BCTYPE_NEUMAN = 4

◆ bctype_shoreline

integer, parameter, public scale_localmesh_base::bctype_shoreline = 5

Definition at line 87 of file scale_localmesh_base.F90.

87 integer, public, parameter :: BCTYPE_SHORELINE = 5