SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_type_date_surf.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 ! #################
7 ! #################
8 !
9 !!**** *MODD_TYPE_DATE* - declaration of temporal types
10 !!
11 !! PURPOSE
12 !! -------
13 ! The purpose of this declarative module is to define
14 ! the time types.
15 !
16 !!
17 !!** IMPLICIT ARGUMENTS
18 !! ------------------
19 !! NONE
20 !!
21 !! REFERENCE
22 !! ---------
23 !! Book2 of documentation of Meso-NH (module MODD_TYPE_DATE)
24 !!
25 !! AUTHOR
26 !! ------
27 !! P. Jabouille *Meteo France*
28 !!
29 !! MODIFICATIONS
30 !! -------------
31 !! Original 11/08/97
32 !-------------------------------------------------------------------------------
33 !
34 !* 0. DECLARATIONS
35 ! ------------
36 !
37 !
38 IMPLICIT NONE
39 !
40 TYPE date
41 INTEGER :: YEAR = 0
42 INTEGER :: MONTH = 0
43 INTEGER :: DAY = 0
44 END TYPE date
45 !
47 TYPE (date) :: TDATE
48 REAL :: TIME = 0.
49 END TYPE date_time
50 !
51 END MODULE modd_type_date_surf