LMDZ
parcli.F90
Go to the documentation of this file.
1 MODULE parcli
2 
3 
4 #include "tsmbkind.h"
5 
6 IMPLICIT NONE
7 
8 SAVE
9 
10 !------------------------------------------------------------------------------
11 ! JPNAV : Number of latitude of the NAVY grid.
12 ! JPPOCP: Number of latitude of the NAVY grid in polar caps.
13 ! JPAUT : Number of latitude of the N108 grids.
14 ! JPNMOI: Number of months to be processed.
15 ! JPNFIN: Number of fixed fields in the *NAVY* data
16 ! JPNFIS: Number of fixed fields in the *N108* data
17 ! JPNMOS: Number of monthly fields in the *N108* data
18 ! JPNFIF: Number of fixed fields in the final data
19 ! JPNMOF: Number of monthly fields in the final data
20 ! JPNFCS: Number of fixed fields in the *N108* data which are indifferent
21 ! to the land/sea distribution
22 ! JPNFCF: Number of fixed fields in the final data which are indifferent
23 ! to the land/sea distribution
24 ! PPTSHT: Shift (in radians) of the deep yearly temperature wave.
25 ! PPWSHT: Shift (in radians) of the deep yearly water content wave.
26 ! JPLDAT: Dimension of the array *IDATEF*.
27 
28 integer_m, PARAMETER :: jpnav=1080
29 integer_m, PARAMETER :: jppocp=120
30 integer_m, PARAMETER :: jpaut=216
31 integer_m, PARAMETER :: jpint=2*jpaut+4
32 integer_m, PARAMETER :: jpjnt=jpaut+4
33 integer_m, PARAMETER :: jpnfin=7
34 integer_m, PARAMETER :: jpnfis=13
35 integer_m, PARAMETER :: jpnmos=5
36 integer_m, PARAMETER :: jpnfif=11
37 integer_m, PARAMETER :: jpnmof=7
38 integer_m, PARAMETER :: jpnmoi=12
39 integer_m, PARAMETER :: jpnfcs=7
40 integer_m, PARAMETER :: jpnfcf=5
41 real_b , PARAMETER :: pptsht=0.0786_jprb
42 real_b , PARAMETER :: ppwsht=0.1969_jprb
43 integer_m, PARAMETER :: jpldat=11
44 
45 END MODULE parcli
Definition: parcli.F90:1