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

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

Data Types

type  localmesh1d
 

Functions/Subroutines

subroutine, public localmesh1d_init (this, lcdomid, refelem, myrank)
 
subroutine, public localmesh1d_final (this, is_generated)
 

Detailed Description

module FElib / Mesh / Local 1D

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

Function/Subroutine Documentation

◆ localmesh1d_init()

subroutine, public scale_localmesh_1d::localmesh1d_init ( type(localmesh1d), intent(inout) this,
integer, intent(in) lcdomid,
class(elementbase1d), intent(in), target refelem,
integer, intent(in), optional myrank )

Definition at line 54 of file scale_localmesh_1d.F90.

56
57 implicit none
58
59 type(LocalMesh1D), intent(inout) :: this
60 integer, intent(in) :: lcdomID
61 class(ElementBase1D), intent(in), target :: refElem
62 integer, intent(in), optional :: myrank
63 !-------------------------------------------------
64
65 this%refElem1D => refelem
66 call localmeshbase_init(this, lcdomid, refelem, 1, myrank)
67
68 return

References scale_localmesh_base::localmeshbase_init().

Referenced by scale_mesh_base1d::meshbase1d_init().

◆ localmesh1d_final()

subroutine, public scale_localmesh_1d::localmesh1d_final ( type(localmesh1d), intent(inout) this,
logical, intent(in) is_generated )

Definition at line 72 of file scale_localmesh_1d.F90.

73 implicit none
74
75 type(LocalMesh1D), intent(inout) :: this
76 logical, intent(in) :: is_generated
77 !-------------------------------------------------
78
79 call localmeshbase_final( this, is_generated )
80
81 return

References scale_localmesh_base::localmeshbase_final().

Referenced by scale_mesh_base1d::meshbase1d_final().