FE-Project
Loading...
Searching...
No Matches
scale_localmesh_2d.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 :: localmesh2d
30
31 type(elementbase2d), pointer :: refelem2d
32 real(rp) :: xmin, xmax
33 real(rp) :: ymin, ymax
34 integer :: nex, ney
35
36 real(rp), allocatable :: lon(:,:)
37 real(rp), allocatable :: lat(:,:)
38 end type localmesh2d
39
41
42 !-----------------------------------------------------------------------------
43 !
44 !++ Public parameters & variables
45 !
46
47 !-----------------------------------------------------------------------------
48 !
49 !++ Private procedure
50 !
51
52 !-----------------------------------------------------------------------------
53 !
54 !++ Private parameters & variables
55 !
56
57contains
58!OCL SERIAL
59 subroutine localmesh2d_init( this, &
60 lcdomID, refElem, myrank )
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
74 end subroutine localmesh2d_init
75
76!OCL SERIAL
77 subroutine localmesh2d_final( this, is_generated )
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
89 end subroutine localmesh2d_final
90
91end module scale_localmesh_2d
module FElib / Element / Base
module FElib / Mesh / Local 2D
subroutine, public localmesh2d_final(this, is_generated)
subroutine, public localmesh2d_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)