next up previous contents
Next: map_maparrayl_rev Up: Fortran: Module Interface downscaleMod Previous: map_setptrs   Contents

map_maparrayl_arr


INTERFACE:

   subroutine map_maparrayl_arr(begg_i, endg_i, begg_o, endg_o, nflds, &
                                fld_i, fld_o, map)
DESCRIPTION:

This subroutine maps arrays, local 1d with 1d map type


USES:

ARGUMENTS:
   implicit none
   integer                         :: begg_i,endg_i         !beg,end of input grid
   integer                         :: begg_o,endg_o         !beg,end of output grid
   integer                         :: nflds                 !number of fields being mapped
   real(r8), intent(in)            :: fld_i(begg_i:endg_i,nflds)
   real(r8), intent(out)           :: fld_o(begg_o:endg_o,nflds)
   type(map_type), intent(in)      :: map
REVISION HISTORY:
   2005.11.15  T Craig  Creation.
   2006.3.30   P Worley Restructuring for improved vector performance
LOCAL VARIABLES:




Erik Kluzek 2011-06-15