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

module FElib / Mesh / Local 3D More...

Data Types

type  localmesh3d
 

Functions/Subroutines

subroutine, public localmesh3d_init (this, lcdomid, refelem, myrank)
 
subroutine, public localmesh3d_final (this, is_generated)
 

Detailed Description

module FElib / Mesh / Local 3D

Description
Module to manage 3D local mesh for element-based methods
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ localmesh3d_init()

subroutine, public scale_localmesh_3d::localmesh3d_init ( class(localmesh3d), intent(inout) this,
integer, intent(in) lcdomid,
class(elementbase3d), intent(in), target refelem,
integer, intent(in), optional myrank )

Definition at line 78 of file scale_localmesh_3d.F90.

80 implicit none
81
82 class(LocalMesh3D), intent(inout) :: this
83 integer, intent(in) :: lcdomID
84 class(ElementBase3D), intent(in), target :: refElem
85 integer, intent(in), optional :: myrank
86 !-------------------------------------------------
87
88 this%refElem3D => refelem
89 nullify( this%lcmesh2D )
90
91 call localmeshbase_init( this, lcdomid, refelem, 3, myrank )
92
93 return

References scale_localmesh_base::localmeshbase_init().

Referenced by scale_localmesh_3d::localmesh3d::getvmapz1d(), and scale_mesh_base3d::meshbase3d_init().

◆ localmesh3d_final()

subroutine, public scale_localmesh_3d::localmesh3d_final ( type(localmesh3d), intent(inout) this,
logical, intent(in) is_generated )

Definition at line 97 of file scale_localmesh_3d.F90.

98 implicit none
99 type(LocalMesh3D), intent(inout) :: this
100 logical, intent(in) :: is_generated
101 !-------------------------------------------------
102
103 call localmeshbase_final( this, 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 )
111 end if
112
113 return

References scale_localmesh_base::localmeshbase_final().

Referenced by scale_localmesh_3d::localmesh3d::getvmapz1d(), and scale_mesh_base3d::meshbase3d_final().