C $Header: /u/gcmpack/MITgcm/pkg/compon_communic/comprecv_r4.F,v 1.2 2007/10/08 23:58:20 jmc Exp $
C $Name: $
!=======================================================================
subroutine COMPRECV_R4( dataname, Ni,Oi,Nj,Oj, arr )
implicit none
! Arguments
character*(*) dataname
integer Ni,Oi,Nj,Oj,Io,Jo
real*4 arr(1-Oi:Ni+Oi,1-Oj:Nj+Oj)
! Predefined constants/arrays
#include "CPLR_SIG.h"
! MPI variables
#include "mpif.h"
integer count,dtype,rank,tag,comm,ierr
integer stat(MPI_STATUS_SIZE)
! Functions
integer generate_tag
! Local
integer i,j,ij,nx,ny
character*(MAXLEN_COMP_NAME) recvdname
! ------------------------------------------------------------------
if (HEADER_SIZE+Ni*Nj.gt.MAX_R4_BUFLEN)
& stop 'comprecv_r4: Nx*Ny too big'
! Receive message
count=HEADER_SIZE+MAX_R4_BUFLEN
dtype=MPI_REAL
tag=generate_tag(121,my_rank_in_global,dataname)
rank=my_coupler_rank
comm=MPI_COMM_myglobal
if (VERB) then
write(LogUnit,*) 'comprecv_r4: calling MPI_Recv rank=',rank
write(LogUnit,*) 'comprecv_r4: dataname=',dataname
call FLUSH(LogUnit)
endif
call MPI_RECV(r4buf, count, dtype, rank, tag, comm, stat, ierr)
if (VERB) then
write(LogUnit,*) 'comprecv_r4: returned ierr=',ierr
call FLUSH(LogUnit)
endif
if (ierr.ne.0) then
write(LogUnit,*) 'comprecv_r4tiles: rank(W,G)=',
& my_rank_in_world,my_rank_in_global,
& ' ierr=',ierr
stop 'comprecv_r4: MPI_Recv failed'
endif
! Extract buffer
Io=int(0.5+r4buf(1))
Jo=int(0.5+r4buf(2))
nx=int(0.5+r4buf(3))
ny=int(0.5+r4buf(4))
call MITCPLR_REAL2CHAR( r4buf(9), recvdname )
if (Io.ne.my_tile_i0(1)) stop 'comprecv_r4: bad Io'
if (Jo.ne.my_tile_j0(1)) stop 'comprecv_r4: bad Jo'
if (nx.ne.my_tile_nx(1)) stop 'comprecv_r4: bad nx'
if (ny.ne.my_tile_ny(1)) stop 'comprecv_r4: bad ny'
if (recvdname .ne. dataname) then
write(LogUnit,*) 'comprecv_r4: recvdname = ',recvdname
write(LogUnit,*) 'comprecv_r4: dataname = ',dataname
stop 'comprecv_r4: recvdname != dataname'
endif
! Copy buffer to interior of tile
do j=1,Nj
do i=1,Ni
ij=HEADER_SIZE+i+Ni*(j-1)
arr(i,j)=r4buf(ij)
enddo
enddo
! ------------------------------------------------------------------
return
end
!=======================================================================