Changeset 22653


Ignore:
Timestamp:
04/02/18 11:12:46 (7 years ago)
Author:
dmenemen
Message:

sending melt rate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/MITgcm/code/cpl_issm.F

    r22640 r22653  
    132132            _END_MASTER( myThid )
    133133         ENDIF
     134
     135C     Send melt rate
     136         print*,'this is yC',yC
     137         DO bj=1,nSy
     138            DO bi=1,nSx
     139               DO j=1,sNy
     140                  DO i=1,sNx
     141                     local(i,j,bi,bj) = shelficeHeatFlux(i,j,bi,bj)
     142                  ENDDO
     143               ENDDO
     144            ENDDO
     145         ENDDO
     146         print*,'this is local shelficeHeatFlux',local
     147         CALL BAR2( myThid )
     148         CALL GATHER_2D_R8( xfer_array, local, Nx, Ny,
     149     &                      .FALSE., .FALSE., myThid )
     150         print*,'this is global shelficeHeatFlux',xfer_array
     151         IF( myProcId .EQ. 0 ) THEN
     152            _BEGIN_MASTER( myThid )
     153            buffsize = Nx*Ny
     154            CALL MPI_SEND(xfer_array,buffsize,MPI_DOUBLE_PRECISION,
     155     &           0,10001007,toissmcomm,mpistatus)
     156            _END_MASTER( myThid )
     157         ENDIF
     158         CALL BAR2( myThid )
     159         print*,'Done Sending shelficeHeatFlux array.'
     160
    134161      ENDIF
    135162
Note: See TracChangeset for help on using the changeset viewer.