SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_ideal_flux.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_IDEAL_FLUX * - Defines the quantities for ideal surface fluxes.
10 !!
11 !! PURPOSE
12 !! -------
13 !
14 !!** METHOD
15 !! ------
16 !!
17 !! EXTERNAL
18 !! --------
19 !!
20 !!
21 !! IMPLICIT ARGUMENTS
22 !! ------------------
23 !!
24 !!
25 !! REFERENCE
26 !! ---------
27 !!
28 !!
29 !! AUTHOR
30 !! ------
31 !! V. Masson * Meteo France *
32 !!
33 !! MODIFICATIONS
34 !! -------------
35 !! Original 02/2003
36 !-------------------------------------------------------------------------------
37 !
38 !* 0. DECLARATIONS
39 ! ------------
40 !
41 IMPLICIT NONE
42 !
43 REAL, DIMENSION(:), ALLOCATABLE :: XTIMEF
44 REAL, DIMENSION(:), ALLOCATABLE :: XTIMET
45 INTEGER, PARAMETER :: NFORC_MAX = 800
46 INTEGER :: NFORCF ! number of surface forcing instants
47 INTEGER :: NFORCT
48 !
49 REAL, DIMENSION(:), ALLOCATABLE :: XSFTH ! hourly data of heat surface flux (W/m2)
50 REAL, DIMENSION(:), ALLOCATABLE :: XSFTQ ! hourly data of water vapor surface flux (kg/m2/s) or (W/m2)
51 REAL, DIMENSION(:,:), ALLOCATABLE :: XSFTS ! hourly data of scalar surface flux (kg/m2/s)
52 REAL, DIMENSION(:), ALLOCATABLE :: XSFCO2 ! hourly data of CO2 surface flux (m/s*kg_CO2/kg_air)
53  CHARACTER(LEN=5) :: CUSTARTYPE ! type of computation for friction
54  ! 'USTAR'
55  ! 'Z0 '
56 REAL, DIMENSION(:), ALLOCATABLE :: XUSTAR ! hourly data of friction (m2/s2)
57 REAL :: XZ0 ! roughness length (m)
58 REAL :: XALB ! albedo (-)
59 REAL :: XEMIS ! emissivity (-)
60 REAL, DIMENSION(:), ALLOCATABLE :: XTSRAD ! radiative temperature (K)
61 !
62 !-------------------------------------------------------------------------------
63 !
64 END MODULE modd_ideal_flux