43 procedure,
public :: init => meshfieldcommrectdom2d_init
44 procedure,
public :: put => meshfieldcommrectdom2d_put
45 procedure,
public :: get => meshfieldcommrectdom2d_get
46 procedure,
public :: exchange => meshfieldcommrectdom2d_exchange
47 procedure,
public :: final => meshfieldcommrectdom2d_final
59 private :: push_localsendbuf
66 integer,
parameter :: comm_face_num = 4
69 subroutine meshfieldcommrectdom2d_init( this, &
70 sfield_num, hvfield_num, htensorfield_num, mesh2d )
74 integer,
intent(in) :: sfield_num
75 integer,
intent(in) :: hvfield_num
76 integer,
intent(in) :: htensorfield_num
81 integer :: nnode_lcmeshface(comm_face_num,mesh2d%local_mesh_num)
85 lcmesh => mesh2d%lcmesh_list(1)
88 do n=1, this%mesh2d%LOCAL_MESH_NUM
89 lcmesh => this%mesh2d%lcmesh_list(n)
90 nnode_lcmeshface(:,n) = (/ lcmesh%NeX, lcmesh%NeY, lcmesh%NeX, lcmesh%NeY /) * lcmesh%refElem2D%Nfp
96 end subroutine meshfieldcommrectdom2d_init
98 subroutine meshfieldcommrectdom2d_final( this )
107 end subroutine meshfieldcommrectdom2d_final
109 subroutine meshfieldcommrectdom2d_put(this, field_list, varid_s)
113 integer,
intent(in) :: varid_s
120 do i=1,
size(field_list)
121 do n=1, this%mesh%LOCAL_MESH_NUM
122 lcmesh => this%mesh2d%lcmesh_list(n)
124 this%send_buf(:,varid_s+i-1,n) )
129 end subroutine meshfieldcommrectdom2d_put
131 subroutine meshfieldcommrectdom2d_get(this, field_list, varid_s)
138 integer,
intent(in) :: varid_s
146 if ( this%call_wait_flag_sub_get ) &
149 do i=1,
size(field_list)
150 do n=1, this%mesh2d%LOCAL_MESH_NUM
151 lcmesh => this%mesh2d%lcmesh_list(n)
153 field_list(i)%field2d%local(n)%val )
158 end subroutine meshfieldcommrectdom2d_get
161 subroutine meshfieldcommrectdom2d_exchange( this, do_wait )
169 logical,
intent(in),
optional :: do_wait
175 do n=1, this%mesh%LOCAL_MESH_NUM
176 do f=1, this%nfaces_comm
177 commdata => this%commdata_list(f,n)
178 call push_localsendbuf( commdata%send_buf(:,:), &
179 this%send_buf(:,:,n), commdata%s_faceID, this%is_f(f,n), &
180 commdata%Nnode_LCMeshFace, this%field_num_tot)
191 end subroutine meshfieldcommrectdom2d_exchange
196 subroutine push_localsendbuf( lc_send_buf, send_buf, s_faceID, is, Nnode_LCMeshFace, var_num )
199 integer,
intent(in) :: var_num
200 integer,
intent(in) :: nnode_lcmeshface
201 real(rp),
intent(inout) :: lc_send_buf(nnode_lcmeshface,var_num)
203 integer,
intent(in) :: s_faceid, is
208 ie = is + nnode_lcmeshface - 1
209 if ( s_faceid > 0 )
then
210 lc_send_buf(:,:) = send_buf(is:ie,:)
212 lc_send_buf(:,:) = send_buf(ie:is:-1,:)
216 end subroutine push_localsendbuf
218end module scale_meshfieldcomm_rectdom2d
module FElib / Element / Base
module FElib / Mesh / Local 2D
module FElib / Mesh / Rectangle 2D domain
module FElib / Data / base
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.
module FElib / Data / Communication 2D rectangle domain
integer bufsize_per_field
Derived type to manage data communication between a face of local mesh.
Base derived type to manage data communication.