FE-Project
Loading...
Searching...
No Matches
scale_localmesh_1d.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
9#include "scaleFElib.h"
11
12 !-----------------------------------------------------------------------------
13 !
14 !++ used modules
15 !
16 use scale_precision
17 use scale_localmesh_base, only: &
20
21 !-----------------------------------------------------------------------------
22 implicit none
23 private
24
25 !-----------------------------------------------------------------------------
26 !
27 !++ Public type & procedure
28 !
29 type, extends(localmeshbase), public :: localmesh1d
30
31 type(elementbase1d), pointer :: refelem1d
32 real(rp) :: xmin, xmax
33 end type localmesh1d
34
36
37 !-----------------------------------------------------------------------------
38 !
39 !++ Public parameters & variables
40 !
41
42 !-----------------------------------------------------------------------------
43 !
44 !++ Private procedure
45 !
46
47 !-----------------------------------------------------------------------------
48 !
49 !++ Private parameters & variables
50 !
51
52contains
53!OCL SERIAL
54 subroutine localmesh1d_init( this, &
55 lcdomID, refElem, myrank )
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
69 end subroutine localmesh1d_init
70
71!OCL SERIAL
72 subroutine localmesh1d_final( this, is_generated )
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
82 end subroutine localmesh1d_final
83
84end module scale_localmesh_1d
module FElib / Element / Base
module FElib / Mesh / Local 1D
subroutine, public localmesh1d_final(this, is_generated)
subroutine, public localmesh1d_init(this, lcdomid, refelem, myrank)
module FElib / Mesh / Local, Base
subroutine, public localmeshbase_final(this, is_generated)
subroutine, public localmeshbase_init(this, lcdomid, refelem, ndim, myrank)