source: LMDZ6/trunk/libf/phylmd/rrtm/yoesrta18.F90 @ 3981

Last change on this file since 3981 was 1990, checked in by Laurent Fairhead, 10 years ago

Corrections à la version r1989 pour permettre la compilation avec RRTM
Inclusion de la licence CeCILL_V2 pour RRTM


Changes to revision r1989 to enable RRTM code compilation
RRTM part put under CeCILL_V2 licence

  • 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: 1.8 KB
Line 
1MODULE YOESRTA18
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9!     -----------------------------------------------------------------
10!*    ** *YOESRTA18* - SRTM COEFFICIENTS FOR INTERVAL 16
11!     BAND 18:  4000-4650 cm-1 (low - H2O,CH4; high - CH4)
12!     -----------------------------------------------------------------
13
14INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG18 = 16, NGS17=32
15
16REAL(KIND=JPRB) :: KA(9,5,13,JPG)
17REAL(KIND=JPRB) :: KB(5,13:59,JPG)
18REAL(KIND=JPRB) :: SELFREF(10,JPG),FORREF(3,JPG)
19REAL(KIND=JPRB) :: SFLUXREF(JPG,9)
20REAL(KIND=JPRB) :: RAYL            ,STRRAT
21
22INTEGER(KIND=JPIM) :: LAYREFFR
23
24REAL(KIND=JPRB) :: KAC(9,5,13,NG18) ,ABSA(585,NG18)
25REAL(KIND=JPRB) :: KBC(5,13:59,NG18),ABSB(235,NG18)
26REAL(KIND=JPRB) :: SELFREFC(10,NG18),FORREFC(3,NG18)
27REAL(KIND=JPRB) :: SFLUXREFC(NG18,9)
28
29!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1))
30EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,13,1),ABSB(1,1))
31
32!     -----------------------------------------------------------------
33!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION **
34
35!     J.-J. MORCRETTE       E.C.M.W.F.      02/10/29
36!     M. J. IACONO          AER             12/09/03
37
38!  NAME     TYPE     PURPOSE
39!  ----   : ----   : ---------------------------------------------------
40! KA      : REAL
41! KB      : REAL   
42! SELFREF : REAL
43! FORREF  : REAL   
44! SFLUXREF: REAL
45! RAYL    : REAL
46! STRRAT  : REAL
47! LAYREFFR: INTEGER
48! KAC     : REAL     Reduced g-point array for KA
49! KBC     : REAL     Reduced g-point array for KB
50! SELFREFC: REAL     Reduced g-point array for SELFREF
51! FORREFC : REAL     Reduced g-point array for FORREF
52!SFLUXREFC: REAL     Reduced g-point array for SFLUXREF
53!     -----------------------------------------------------------------
54END MODULE YOESRTA18
55
Note: See TracBrowser for help on using the repository browser.