next up previous contents
Next: celledge_regional Up: Fortran: Module Interface areaMod Previous: cellarea_regional   Contents

cellarea_global


INTERFACE:

   subroutine cellarea_global (nlat , nlon, numlon, lats, lonw, area)
DESCRIPTION:

   Area of grid cells (square kilometers)- global grid
ARGUMENTS:
     implicit none
     integer , intent(in) :: nlat             !dimension: number of latitude points
     integer , intent(in) :: nlon             !dimension: number of longitude points
     integer , intent(in) :: numlon(nlat)     !number of grid cells per latitude strip
     real(r8), intent(in) :: lats(nlat+1)     !grid cell latitude, southern edge (degrees)
     real(r8), intent(in) :: lonw(nlon+1,nlat)!grid cell longitude, western edge (degrees)
     real(r8), intent(out):: area(nlon,nlat)  !cell area (km**2)
REVISION HISTORY:
   Created by Mariana Vertenstein



Mariana Vertenstein 2003-01-14