Page MenuHomec4science

CtoA.F
No OneTemporary

File Metadata

Created
Thu, Jul 17, 13:40
C $Header: /u/gcmpack/MITgcm/pkg/fizhi/CtoA.F,v 1.6 2005/02/24 16:44:25 jmc Exp $
C $Name: $
#include "FIZHI_OPTIONS.h"
subroutine CtoA(myThid,fieldin1,fieldin2,mask1,mask2,idim1,idim2,
. jdim1,jdim2,numlevs,Nsx,Nsy,im1,im2,jm1,jm2,fieldout1,fieldout2)
c----------------------------------------------------------------------
c Subroutine CtoA - Routine to map a velocity component quantity
c from the C-Grid to the A-Grid.
c This includes doing an exchange to fill the halo region, and
c then a linear average with the appropriate topography mask.
c Also: Set up "bi, bj loop" here.
c
c Input: myThid
c fieldin1 Field on c-grid to move to a-grid (1st component)
c fieldin2 Field on c-grid to move to a-grid (2nd component)
c mask1 Topography [0,1] mask - 1 to indicate above ground
c mask2 Topography [0,1] mask - 1 to indicate above ground
c idim1,idim2,jdim1,jdim2 Indeces in x and y for computations
c numlevs Number of vertical levels
c Nsx, Nsy
c im1,im2,jm1,jm2 Span of fields in x and y
c
c Output: fieldout1 Field mapped to A-Grid (1st component)
c fieldout2 Field mapped to A-Grid (2nd component)
c
c Call: exchange on c-grid
c-----------------------------------------------------------------------
implicit none
#include "EEPARAMS.h"
integer myThid, numlevs
integer idim1, idim2, jdim1, jdim2, im1, im2, jm1, jm2
integer Nsx, Nsy
_RS mask1(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
_RS mask2(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
_RL fieldin1(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
_RL fieldin2(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
_RL fieldout1(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
_RL fieldout2(idim1:idim2,jdim1:jdim2,numlevs,Nsx,Nsy)
integer i, j, L, bi, bj
logical withSigns
data withSigns/.TRUE./
_RL tmpfld1(idim1:idim2,jdim1:jdim2)
_RL tmpfld2(idim1:idim2,jdim1:jdim2)
c Call the c-grid exchange routine to fill in the halo regions
call exch_uv_xyz_RL(fieldin1,fieldin2,withSigns,myThid)
c Now take average
do bj = myByLo(myThid), myByHi(myThid)
do bi = myBxLo(myThid), myBxHi(myThid)
do L = 1,numlevs
do j = jdim1,jdim2
do i = idim1,idim2
tmpfld1(i,j) = fieldin1(i,j,L,bi,bj)*mask1(i,j,L,bi,bj)
tmpfld2(i,j) = fieldin2(i,j,L,bi,bj)*mask2(i,j,L,bi,bj)
enddo
enddo
do j = jm1,jm2
do i = im1,im2
if( (mask1(i,j,L,bi,bj).ne.0.) .or.
. (mask1(i+1,j,L,bi,bj).ne.0.) ) then
c fieldout1(i,j,L,bi,bj) =
c . ( fieldin1(i,j,L,bi,bj)*mask1(i,j,L,bi,bj) +
c . fieldin1(i+1,j,L,bi,bj)*mask1(i+1,j,L,bi,bj) ) /
c . ( mask1(i,j,L,bi,bj) + mask1(i+1,j,L,bi,bj) )
fieldout1(i,j,L,bi,bj) =
. ( tmpfld1(i,j) + tmpfld1(i+1,j) ) /
. ( mask1(i,j,L,bi,bj) + mask1(i+1,j,L,bi,bj) )
else
fieldout1(i,j,L,bi,bj) = 0.
endif
if( (mask2(i,j,L,bi,bj).ne.0.) .or.
. (mask2(i,j+1,L,bi,bj).ne.0.) ) then
c fieldout2(i,j,L,bi,bj) =
c . ( fieldin2(i,j,L,bi,bj)*mask2(i,j,L,bi,bj) +
c . fieldin2(i,j+1,L,bi,bj)*mask2(i,j+1,L,bi,bj) ) /
c . ( mask2(i,j,L,bi,bj) + mask2(i,j+1,L,bi,bj) )
fieldout2(i,j,L,bi,bj) =
. ( tmpfld2(i,j) + tmpfld2(i,j+1) ) /
. ( mask2(i,j,L,bi,bj) + mask2(i,j+1,L,bi,bj) )
else
fieldout2(i,j,L,bi,bj) = 0.
endif
enddo
enddo
enddo
enddo
enddo
return
end

Event Timeline