SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
get_surf_atm_sso_rough.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 ! ########################################################################
6  SUBROUTINE get_surf_atm_sso_rough(HROUGH)
7 ! ########################################################################
8 !
9 !!**** *DEFAULT_ISBA* - routine to get value of the
10 ! main logical switch for orographic roughness
11 !!
12 !! PURPOSE
13 !! -------
14 !!
15 !!** METHOD
16 !! ------
17 !!
18 !! EXTERNAL
19 !! --------
20 !!
21 !!
22 !! IMPLICIT ARGUMENTS
23 !! ------------------
24 !!
25 !! REFERENCE
26 !! ---------
27 !!
28 !!
29 !! AUTHOR
30 !! ------
31 !! V. Masson *Meteo France*
32 !!
33 !! MODIFICATIONS
34 !! -------------
35 !! Original 10/2010
36 !-------------------------------------------------------------------------------
37 !
38 !* 0. DECLARATIONS
39 ! ------------
40 !
41 USE modn_sso_n, ONLY : crough
42 !
43 USE yomhook ,ONLY : lhook, dr_hook
44 USE parkind1 ,ONLY : jprb
45 !
46 IMPLICIT NONE
47  CHARACTER(LEN=4), INTENT(OUT) :: hrough
48 REAL(KIND=JPRB) :: zhook_handle
49 !
50 !* 0.1 Declarations of arguments
51 !-------------------------------------------------------------------------------
52 !
53 ! General switch
54 !
55 IF (lhook) CALL dr_hook('GET_SURF_ATM_SSO_ROUGH',0,zhook_handle)
56 hrough = crough
57 IF (lhook) CALL dr_hook('GET_SURF_ATM_SSO_ROUGH',1,zhook_handle)
58 !
59 END SUBROUTINE get_surf_atm_sso_rough
subroutine get_surf_atm_sso_rough(HROUGH)