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

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

Data Types

type  localmesh2d
 

Functions/Subroutines

subroutine, public localmesh2d_init (this, lcdomid, refelem, myrank)
 
subroutine, public localmesh2d_final (this, is_generated)
 

Detailed Description

module FElib / Mesh / Local 2D

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

Function/Subroutine Documentation

◆ localmesh2d_init()

subroutine, public scale_localmesh_2d::localmesh2d_init ( class(localmesh2d), intent(inout) this,
integer, intent(in) lcdomid,
class(elementbase2d), intent(in), target refelem,
integer, intent(in), optional myrank )

Definition at line 59 of file scale_localmesh_2d.F90.

61
62 implicit none
63
64 class(LocalMesh2D), intent(inout) :: this
65 integer, intent(in) :: lcdomID
66 class(ElementBase2D), intent(in), target :: refElem
67 integer, intent(in), optional :: myrank
68 !-------------------------------------------------
69
70 this%refElem2D => refelem
71 call localmeshbase_init(this, lcdomid, refelem, 2, myrank)
72
73 return

References scale_localmesh_base::localmeshbase_init().

Referenced by scale_mesh_base2d::meshbase2d_init().

◆ localmesh2d_final()

subroutine, public scale_localmesh_2d::localmesh2d_final ( type(localmesh2d), intent(inout) this,
logical, intent(in) is_generated )

Definition at line 77 of file scale_localmesh_2d.F90.

78 implicit none
79 type(LocalMesh2D), intent(inout) :: this
80 logical, intent(in) :: is_generated
81 !-------------------------------------------------
82
83 if (is_generated) then
84 deallocate( this%lon, this%lat )
85 end if
86 call localmeshbase_final( this, is_generated )
87
88 return

References scale_localmesh_base::localmeshbase_final().

Referenced by scale_mesh_base2d::meshbase2d_final().