SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
default_agri.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 default_agri(OAGRIP)
7 ! ########################################################################
8 !
9 !!**** *DEFAULT_ISBA* - routine to set default values for
10 ! main logical switch for irrigation
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 !! L. Jarlan *Meteo France*
32 !!
33 !! MODIFICATIONS
34 !! -------------
35 !! Original 10/2005
36 !! Modified by P. Le Moigne (06/2006): seeding and irrigation
37 !-------------------------------------------------------------------------------
38 !
39 !* 0. DECLARATIONS
40 ! ------------
41 !
42 !
43 USE yomhook ,ONLY : lhook, dr_hook
44 USE parkind1 ,ONLY : jprb
45 !
46 IMPLICIT NONE
47 LOGICAL, INTENT(OUT) :: oagrip
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('DEFAULT_AGRI',0,zhook_handle)
56 oagrip = .false.
57 IF (lhook) CALL dr_hook('DEFAULT_AGRI',1,zhook_handle)
58 !
59 END SUBROUTINE default_agri
subroutine default_agri(OAGRIP)
Definition: default_agri.F90:6