Last change
on this file since 5305 was
3319,
checked in by jyg, 7 years ago
|
Adding missing IMPLICIT NONE
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
|
File size:
684 bytes
|
Line | |
---|
1 | MODULE indice_sol_mod |
---|
2 | |
---|
3 | IMPLICIT NONE |
---|
4 | |
---|
5 | INTEGER, PARAMETER :: nbsrf = 4 ! nombre de sous-fractions pour une maille |
---|
6 | INTEGER, PARAMETER :: is_ter=1, is_lic=2, is_oce = 3, is_sic=4 |
---|
7 | ! terre ! ocean ! glacier continental ! glace de mer |
---|
8 | |
---|
9 | INTEGER, PARAMETER :: is_ave=nbsrf+1 ! valeur moyenne sur l'ensemble des surfaces |
---|
10 | REAL, PARAMETER :: epsfra=1.0E-05 |
---|
11 | |
---|
12 | CHARACTER(len=3), DIMENSION(nbsrf), PARAMETER :: clnsurf = (/'ter', 'lic', 'oce', 'sic'/) |
---|
13 | !FC |
---|
14 | INTEGER, SAVE :: nvm_orch ! Nombre de type de vegetation ds ORCHIDEE |
---|
15 | |
---|
16 | END MODULE indice_sol_mod |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.