43 procedure,
public :: init => meshfieldcomm1d_init
44 procedure,
public :: put => meshfieldcomm1d_put
45 procedure,
public :: get => meshfieldcomm1d_get
46 procedure,
public :: exchange => meshfieldcomm1d_exchange
47 procedure,
public :: final => meshfieldcomm1d_final
59 private :: push_localsendbuf
68 subroutine meshfieldcomm1d_init( this, &
69 sfield_num, hvfield_num, mesh1d )
74 integer,
intent(in) :: sfield_num
75 integer,
intent(in) :: hvfield_num
76 class(
meshbase1d),
intent(in),
target :: mesh1d
79 integer :: nnode_lcmeshface(
comm_face_num,mesh1d%local_mesh_num)
84 do n=1, this%mesh1d%LOCAL_MESH_NUM
85 nnode_lcmeshface(:,n) = (/ 1, 1 /)
88 call meshfieldcommbase_init( this, sfield_num, hvfield_num, 0, mesh1d%refElem1D%Nfp * 2, 2, nnode_lcmeshface, mesh1d)
91 end subroutine meshfieldcomm1d_init
93 subroutine meshfieldcomm1d_final( this )
102 end subroutine meshfieldcomm1d_final
104 subroutine meshfieldcomm1d_put(this, field_list, varid_s)
108 integer,
intent(in) :: varid_s
115 do i=1,
size(field_list)
116 do n=1, this%mesh%LOCAL_MESH_NUM
117 mesh => this%mesh1d%lcmesh_list(n)
119 this%send_buf(:,varid_s+i-1,n) )
124 end subroutine meshfieldcomm1d_put
126 subroutine meshfieldcomm1d_get(this, field_list, varid_s)
133 integer,
intent(in) :: varid_s
140 if ( this%call_wait_flag_sub_get ) &
143 do i=1,
size(field_list)
144 do n=1, this%mesh1D%LOCAL_MESH_NUM
145 mesh => this%mesh1d%lcmesh_list(n)
147 field_list(i)%field1d%local(n)%val )
152 end subroutine meshfieldcomm1d_get
155 subroutine meshfieldcomm1d_exchange( this, do_wait )
164 logical,
intent(in),
optional :: do_wait
171 do n=1, this%mesh%LOCAL_MESH_NUM
172 do f=1, this%nfaces_comm
173 commdata => this%commdata_list(f,n)
174 call push_localsendbuf( commdata%send_buf(:,:), &
175 this%send_buf(:,:,n), commdata%s_faceID, f, &
176 commdata%Nnode_LCMeshFace, this%field_num_tot)
187 end subroutine meshfieldcomm1d_exchange
191 subroutine push_localsendbuf( lc_send_buf, send_buf, s_faceID, f, Nnode_LCMeshFace, var_num )
194 integer,
intent(in) :: var_num
195 integer,
intent(in) :: nnode_lcmeshface
196 real(rp),
intent(inout) :: lc_send_buf(nnode_lcmeshface,var_num)
197 real(rp),
intent(in) :: send_buf(nnode_lcmeshface*2,var_num)
198 integer,
intent(in) :: s_faceid, f
200 integer :: is, ie, lincrement
203 if ( s_faceid > 0 )
then
204 is = 1 + (f-1)*nnode_lcmeshface
205 ie = is + nnode_lcmeshface - 1
208 is = f*nnode_lcmeshface
209 ie = 1 + (f - 1)*nnode_lcmeshface
212 lc_send_buf(:,:) = send_buf(is:ie:lincrement,:)
215 end subroutine push_localsendbuf
217end module scale_meshfieldcomm_1d
module FElib / Element / Base
module FElib / Mesh / Local 1D
module FElib / Mesh / Base 1D
module FElib / Data / base
module FElib / Data / Communication 1D
integer, parameter comm_face_num
module FElib / Data / Communication base
subroutine, public meshfieldcommbase_extract_bounddata(var, refelem, mesh, buf)
subroutine, public meshfieldcommbase_final(this)
Finalize a base object to manage data communication of fields.
subroutine, public meshfieldcommbase_wait_core(this, commdata_list)
Wait data communication and move tmp data of LocalMeshCommData object to a recv buffer.
subroutine, public meshfieldcommbase_set_bounddata(buf, refelem, mesh, var)
subroutine, public meshfieldcommbase_init(this, sfield_num, hvfield_num, htensorfield_num, bufsize_per_field, comm_face_num, nnode_lcmeshface, mesh)
Initialize a base object to manage data communication of fields.
subroutine, public meshfieldcommbase_exchange_core(this, commdata_list, do_wait)
Exchange halo data.
Derived type to manage data communication between a face of local mesh.
Base derived type to manage data communication.