next up previous contents
Next: Fortran: Module Interface fileutils Up: Fortran: Module Interface dynlandMod Previous: Fortran: Module Interface dynlandMod   Contents

dynland_hwcontent (Source File: dynlandMod.F90)


INTERFACE:

 
    subroutine dynland_hwcontent(begg,endg,gcell_liq,gcell_ice,gcell_heat)
DESCRIPTION:

Compute grid-level heat and water content


REVISION HISTORY:

      2009-feb-20 B. Kauffman, created by
USES:
 
    use clm_varcon, only : istsoil,istice,istwet,istdlak,istslak,isturb,istice_mec
    use clm_varcon, only : istcrop
    use clm_varcon, only : icol_road_perv,icol_road_imperv,icol_roof
    use clm_varcon, only : icol_sunwall,icol_shadewall
    use clm_varcon, only : cpice,  cpliq
    use clm_varpar, only : nlevsno, nlevgrnd
 
    implicit none
ARGUMENTS:
 
    integer , intent(in)  :: begg, endg              ! proc beg & end gridcell indices
    real(r8), intent(out) :: gcell_liq(begg:endg)
    real(r8), intent(out) :: gcell_ice  (begg:endg)
    real(r8), intent(out) :: gcell_heat (begg:endg)
LOCAL VARIABLES:




Erik Kluzek 2011-06-15