43 real(rp),
allocatable :: val(:,:)
44 real(rp),
allocatable :: face_val(:,:)
54 procedure :: init => localmeshfield1d_init
55 procedure :: final => localmeshfield1d_final
61 procedure :: init => localmeshfield2d_init
62 procedure :: final => localmeshfield2d_final
68 procedure :: init => localmeshfield3d_init
69 procedure :: final => localmeshfield3d_final
89 private :: localmeshfieldbase_init
90 private :: localmeshfieldbase_final
95 subroutine localmeshfieldbase_init( this, lcmesh, data_type )
96 use scale_prc,
only: prc_abort
100 integer,
intent(in),
optional :: data_type
102 integer :: data_type_
105 if (
present(data_type) )
then
106 data_type_ = data_type
111 select case( data_type_ )
113 allocate( this%val(lcmesh%refElem%Np,lcmesh%NeA) )
115 allocate( this%face_val(lcmesh%refElem%NfpTot,lcmesh%Ne) )
117 log_error(
"LocalMeshFieldBase_Init",*)
"Unexcepted data_type", data_type_
122 end subroutine localmeshfieldbase_init
125 subroutine localmeshfieldbase_final( this )
130 if (
allocated(this%val) )
deallocate( this%val )
131 if (
allocated(this%face_val) )
deallocate( this%face_val )
134 end subroutine localmeshfieldbase_final
139 subroutine localmeshfield1d_init( this, mesh, data_type )
143 integer,
optional,
intent(in) :: data_type
147 call localmeshfieldbase_init( this, mesh, data_type )
150 end subroutine localmeshfield1d_init
153 subroutine localmeshfield1d_final( this )
158 call localmeshfieldbase_final( this )
161 end subroutine localmeshfield1d_final
166 subroutine localmeshfield2d_init( this, mesh, data_type )
170 integer,
optional,
intent(in) :: data_type
174 call localmeshfieldbase_init( this, mesh, data_type )
177 end subroutine localmeshfield2d_init
180 subroutine localmeshfield2d_final( this )
185 call localmeshfieldbase_final( this )
187 end subroutine localmeshfield2d_final
192 subroutine localmeshfield3d_init( this, mesh, data_type )
196 integer,
optional,
intent(in) :: data_type
200 call localmeshfieldbase_init( this, mesh, data_type )
203 end subroutine localmeshfield3d_init
206 subroutine localmeshfield3d_final( this )
211 call localmeshfieldbase_final( this )
213 end subroutine localmeshfield3d_final
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
module FElib / Data / base
integer, parameter, public local_meshfield_type_nodes_faceval
integer, parameter, public local_meshfield_type_nodes_val