SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_flake_derivedtypes.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 ! File %M% from Library %Q%
6 ! Version %I% from %G% extracted: %H%
7 !------------------------------------------------------------------------------
8 
10 
11 !------------------------------------------------------------------------------
12 !
13 ! Description:
14 !
15 ! Derived type(s) is(are) defined.
16 !
17 !
18 ! Current Code Owner: DWD, Dmitrii Mironov
19 ! Phone: +49-69-8062 2705
20 ! Fax: +49-69-8062 3721
21 ! E-mail: dmitrii.mironov@dwd.de
22 !
23 ! History:
24 ! Version Date Name
25 ! ---------- ---------- ----
26 ! 1.00 2005/11/17 Dmitrii Mironov
27 ! Initial release
28 ! !VERSION! !DATE! <Your name>
29 ! <Modification comments>
30 !
31 ! Code Description:
32 ! Language: Fortran 90.
33 ! Software Standards: "European Standards for Writing and
34 ! Documenting Exchangeable Fortran 90 Code".
35 !==============================================================================
36 !
37 ! Declarations:
38 !
39 ! Modules used:
40 
41 !USE modd_data_parameters , ONLY : &
42 ! ireals , &! KIND-type parameter for real variables
43 ! iintegers ! KIND-type parameter for "normal" integer variables
44 
45 !==============================================================================
46 
47 IMPLICIT NONE
48 
49 !==============================================================================
50 !
51 ! Declarations
52 
53 ! Maximum value of the wave-length bands
54 ! in the exponential decay law for the radiation flux.
55 ! A storage for a ten-band approximation is allocated,
56 ! although a smaller number of bands is actually used.
57 INTEGER , PARAMETER :: &
58  nband_optic_max = 10
59 
60 ! Define TYPE "opticpar_medium"
62  INTEGER :: &
63  nband_optic ! Number of wave-length bands
64  REAL , DIMENSION (nband_optic_max) :: &
65  frac_optic , &! Fractions of total radiation flux
66  extincoef_optic ! Extinction coefficients
67 END TYPE opticpar_medium
68 
69 !==============================================================================
70 
71 END MODULE modd_flake_derivedtypes
72