SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modn_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 !!**** *MODN_IDEAL_FLUX - declaration of keys for
10 !!
11 !! PURPOSE
12 !! -------
13 !
14 !!
15 !!** IMPLICIT ARGUMENTS
16 !! ------------------
17 !! None
18 !!
19 !! REFERENCE
20 !! ---------
21 !!
22 !! AUTHOR
23 !! ------
24 !! S. Faroux *Meteo France*
25 !!
26 !! MODIFICATIONS
27 !! -------------
28 !! Original 01/10/10
29 !
30 !* 0. DECLARATIONS
31 ! ------------
32 !
33 USE modd_ideal_flux, ONLY : nforc_max, nforcf, nforct, xsfth_f=>xsfth, xsftq_f=>xsftq, &
34  xsfco2_f=>xsfco2, custartype, xustar_f=>xustar, xz0, xalb, &
35  xemis, xtsrad_t=>xtsrad, xtimef_f=>xtimef, xtimet_t=>xtimet
36 
37 IMPLICIT NONE
38 !
39 REAL, DIMENSION(NFORC_MAX) :: XSFTH
40  CHARACTER(LEN=7) :: CSFTQ ! Unit for the evaporation flux :
41  !'kg/m2/s'
42  !'W/m2 '
43 REAL, DIMENSION(NFORC_MAX) :: XSFTQ
44 REAL, DIMENSION(NFORC_MAX) :: XSFCO2
45 REAL, DIMENSION(NFORC_MAX) :: XUSTAR
46 REAL, DIMENSION(NFORC_MAX) :: XTSRAD
47 REAL, DIMENSION(NFORC_MAX) :: XTIMEF
48 REAL, DIMENSION(NFORC_MAX) :: XTIMET
49 !
50 !
51 namelist/nam_ideal_flux/nforcf, nforct, xtimef, xtimet, xsfth, csftq, xsftq, xsfco2, &
52  custartype, xustar, xz0, xalb, xemis, xtsrad
53 !
54 END MODULE modn_ideal_flux