FE-Project
Loading...
Searching...
No Matches
scale_localmeshfield_base.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_io
18
19 use scale_localmesh_base, only: &
21
22 use scale_localmesh_1d, only: &
24
25 use scale_localmesh_2d, only: &
27
28 use scale_localmesh_3d, only: &
30
32
33 !-----------------------------------------------------------------------------
34 implicit none
35 private
36
37 !-----------------------------------------------------------------------------
38 !
39 !++ Public type & procedure
40 !
41
42 type, public :: localmeshfieldbase
43 real(rp), allocatable :: val(:,:)
44 real(rp), allocatable :: face_val(:,:)
45 end type localmeshfieldbase
46
47 type, public :: localmeshfieldbaselist
48 class(localmeshfieldbase), pointer :: ptr
50
51 type, extends(localmeshfieldbase), public :: localmeshfield1d
52 type(localmesh1d), pointer :: mesh => null()
53 contains
54 procedure :: init => localmeshfield1d_init
55 procedure :: final => localmeshfield1d_final
56 end type localmeshfield1d
57
58 type, extends(localmeshfieldbase), public :: localmeshfield2d
59 type(localmesh2d), pointer :: mesh => null()
60 contains
61 procedure :: init => localmeshfield2d_init
62 procedure :: final => localmeshfield2d_final
63 end type localmeshfield2d
64
65 type, extends(localmeshfieldbase), public :: localmeshfield3d
66 type(localmesh3d), pointer :: mesh => null()
67 contains
68 procedure :: init => localmeshfield3d_init
69 procedure :: final => localmeshfield3d_final
70 end type localmeshfield3d
71
72 !-----------------------------------------------------------------------------
73 !
74 !++ Public parameters & variables
75 !
76 integer, public, parameter :: local_meshfield_type_nodes_val = 1
77 integer, public, parameter :: local_meshfield_type_nodes_faceval = 2
78
79 !-----------------------------------------------------------------------------
80 !
81 !++ Private procedure
82 !
83
84 !-----------------------------------------------------------------------------
85 !
86 !++ Private parameters & variables
87 !
88
89 private :: localmeshfieldbase_init
90 private :: localmeshfieldbase_final
91
92contains
93
94!OCL SERIAL
95 subroutine localmeshfieldbase_init( this, lcmesh, data_type )
96 use scale_prc, only: prc_abort
97 implicit none
98 class(localmeshfieldbase), intent(inout) :: this
99 class(localmeshbase), intent(in) :: lcmesh
100 integer, intent(in), optional :: data_type
101
102 integer :: data_type_
103 !-----------------------------------------------------------------------------
104
105 if ( present(data_type) ) then
106 data_type_ = data_type
107 else
109 end if
110
111 select case( data_type_ )
113 allocate( this%val(lcmesh%refElem%Np,lcmesh%NeA) )
115 allocate( this%face_val(lcmesh%refElem%NfpTot,lcmesh%Ne) )
116 case default
117 log_error("LocalMeshFieldBase_Init",*) "Unexcepted data_type", data_type_
118 call prc_abort
119 end select
120
121 return
122 end subroutine localmeshfieldbase_init
123
124!OCL SERIAL
125 subroutine localmeshfieldbase_final( this )
126 implicit none
127 class(localmeshfieldbase), intent(inout) :: this
128 !-----------------------------------------------------------------------------
129
130 if ( allocated(this%val) ) deallocate( this%val )
131 if ( allocated(this%face_val) ) deallocate( this%face_val )
132
133 return
134 end subroutine localmeshfieldbase_final
135
136 !* 1D *********
137
138!OCL SERIAL
139 subroutine localmeshfield1d_init( this, mesh, data_type )
140 implicit none
141 class(localmeshfield1d), intent(inout) :: this
142 class(localmesh1d), target, intent(in) :: mesh
143 integer, optional, intent(in) :: data_type
144 !-----------------------------------------------------------------------------
145
146 this%mesh => mesh
147 call localmeshfieldbase_init( this, mesh, data_type )
148
149 return
150 end subroutine localmeshfield1d_init
151
152!OCL SERIAL
153 subroutine localmeshfield1d_final( this )
154 implicit none
155 class(localmeshfield1d), intent(inout) :: this
156 !-----------------------------------------------------------------------------
157
158 call localmeshfieldbase_final( this )
159
160 return
161 end subroutine localmeshfield1d_final
162
163 !* 2D *********
164
165!OCL SERIAL
166 subroutine localmeshfield2d_init( this, mesh, data_type )
167 implicit none
168 class(localmeshfield2d), intent(inout) :: this
169 class(localmesh2d), target, intent(in) :: mesh
170 integer, optional, intent(in) :: data_type
171 !-----------------------------------------------------------------------------
172
173 this%mesh => mesh
174 call localmeshfieldbase_init( this, mesh, data_type )
175
176 return
177 end subroutine localmeshfield2d_init
178
179!OCL SERIAL
180 subroutine localmeshfield2d_final( this )
181 implicit none
182 class(localmeshfield2d), intent(inout) :: this
183 !-----------------------------------------------------------------------------
184
185 call localmeshfieldbase_final( this )
186 return
187 end subroutine localmeshfield2d_final
188
189 !* 3D *********
190
191!OCL SERIAL
192 subroutine localmeshfield3d_init( this, mesh, data_type )
193 implicit none
194 class(localmeshfield3d), intent(inout) :: this
195 class(localmesh3d), target, intent(in) :: mesh
196 integer, optional, intent(in) :: data_type
197 !-----------------------------------------------------------------------------
198
199 this%mesh => mesh
200 call localmeshfieldbase_init( this, mesh, data_type )
201
202 return
203 end subroutine localmeshfield3d_init
204
205!OCL SERIAL
206 subroutine localmeshfield3d_final( this )
207 implicit none
208 class(localmeshfield3d), intent(inout) :: this
209 !-----------------------------------------------------------------------------
210
211 call localmeshfieldbase_final( this )
212 return
213 end subroutine localmeshfield3d_final
214
215end module scale_localmeshfield_base
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 2D
subroutine, public localmesh2d_final(this, is_generated)
subroutine, public localmesh2d_init(this, lcdomid, refelem, myrank)
module FElib / Mesh / Local 3D
subroutine, public localmesh3d_final(this, is_generated)
subroutine, public localmesh3d_init(this, lcdomid, refelem, myrank)
module FElib / Mesh / Local, Base
integer, parameter, public local_meshfield_type_nodes_faceval
integer, parameter, public local_meshfield_type_nodes_val