SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_idealn.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  MODULE modd_ideal_n
7 ! #################
8 !
9 !!**** *MODD_IDEAL_n - declaration of surface parameters for an inland water surface
10 !!
11 !! PURPOSE
12 !! -------
13 ! Declaration of surface parameters
14 !
15 !!
16 !!** IMPLICIT ARGUMENTS
17 !! ------------------
18 !! None
19 !!
20 !! REFERENCE
21 !! ---------
22 !!
23 !! AUTHOR
24 !! ------
25 !! V. Masson *Meteo France*
26 !!
27 !! MODIFICATIONS
28 !! -------------
29 !! Original 01/2004
30 !
31 !* 0. DECLARATIONS
32 ! ------------
33 !
35 !
36 !
37 USE yomhook ,ONLY : lhook, dr_hook
38 USE parkind1 ,ONLY : jprb
39 !
40 IMPLICIT NONE
41 
42 TYPE ideal_t
43 !
44 ! Time-step:
45 !
46  REAL :: XTSTEP ! time step
47 !
48  REAL :: XOUT_TSTEP ! output writing time step
49 !
50 !
51 !
52 END TYPE ideal_t
53 
54 
55 
56  CONTAINS
57 
58 !
59 
60 
61 
62 
63 SUBROUTINE ideal_init(YIDEAL)
64 TYPE(ideal_t), INTENT(INOUT) :: yideal
65 REAL(KIND=JPRB) :: zhook_handle
66 IF (lhook) CALL dr_hook("MODD_IDEAL_N:IDEAL_INIT",0,zhook_handle)
67 yideal%XTSTEP=0.
68 yideal%XOUT_TSTEP=0.
69 IF (lhook) CALL dr_hook("MODD_IDEAL_N:IDEAL_INIT",1,zhook_handle)
70 END SUBROUTINE ideal_init
71 
72 
73 END MODULE modd_ideal_n
subroutine ideal_init(YIDEAL)
Definition: modd_idealn.F90:63