SURFEX v7.3
General documentation of Surfex
 All Classes Files Functions Variables Typedefs
/home/dasprezs/EXPORT_v7_3/src/SURFEX/prep_ver_seaflux.F90
Go to the documentation of this file.
00001 !     #########
00002 SUBROUTINE PREP_VER_SEAFLUX
00003 !     #################################################################################
00004 !
00005 !!****  *PREP_VER_SEAFLUX* - change in SEAFLUX variables due to altitude change
00006 !!
00007 !!    PURPOSE
00008 !!    -------
00009 !
00010 !!**  METHOD
00011 !!    ------
00012 !!
00013 !!    REFERENCE
00014 !!    ---------
00015 !!      
00016 !!
00017 !!    AUTHOR
00018 !!    ------
00019 !!     S. Malardel 
00020 !!
00021 !!    MODIFICATIONS
00022 !!    -------------
00023 !!      Original    01/2004
00024 !!------------------------------------------------------------------
00025 !
00026 !
00027 USE MODD_SEAFLUX_n,   ONLY : XZS, XSST 
00028 USE MODD_PREP,   ONLY : XZS_LS, XT_CLIM_GRAD
00029 !
00030 !
00031 USE YOMHOOK   ,ONLY : LHOOK,   DR_HOOK
00032 USE PARKIND1  ,ONLY : JPRB
00033 !
00034 IMPLICIT NONE
00035 !
00036 !*      0.1    declarations of arguments
00037 !
00038 !
00039 !*      0.2    declarations of local variables
00040 !
00041 !
00042 !-------------------------------------------------------------------------------------
00043 !
00044 !*      1.3    SST
00045 !
00046 
00047 REAL(KIND=JPRB) :: ZHOOK_HANDLE
00048 
00049 IF (LHOOK) CALL DR_HOOK('PREP_VER_SEAFLUX',0,ZHOOK_HANDLE)
00050 XSST = XSST  + XT_CLIM_GRAD  * (XZS - XZS_LS)
00051 IF (LHOOK) CALL DR_HOOK('PREP_VER_SEAFLUX',1,ZHOOK_HANDLE)
00052 !
00053 !-------------------------------------------------------------------------------------
00054 !
00055 END SUBROUTINE PREP_VER_SEAFLUX