source: LMDZ6/trunk/libf/phylmd/rrtm/yoesrta24.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: 2.1 KB
Line 
1MODULE YOESRTA24
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9!     -----------------------------------------------------------------
10!*    ** *YOESRTA24* - SRTM COEFFICIENTS FOR INTERVAL 24
11!     BAND 24: 12850-16000 cm-1 (low - H2O,O2; high - O2)
12!     -----------------------------------------------------------------
13
14INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG24 = 16
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) :: ABSO3A(JPG), ABSO3B(JPG), RAYLA(JPG,9), RAYLB(JPG)
21REAL(KIND=JPRB) :: STRRAT
22INTEGER(KIND=JPIM) :: LAYREFFR
23
24REAL(KIND=JPRB) :: KAC(9,5,13,NG24) ,ABSA(585,NG24)
25REAL(KIND=JPRB) :: KBC(5,13:59,NG24),ABSB(235,NG24)
26REAL(KIND=JPRB) :: SELFREFC(10,NG24),FORREFC(3,NG24)
27REAL(KIND=JPRB) :: SFLUXREFC(NG24,9)
28REAL(KIND=JPRB) :: ABSO3AC(NG24), ABSO3BC(NG24), RAYLAC(NG24,9), RAYLBC(NG24)
29
30!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1))
31EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,13,1),ABSB(1,1))
32
33!     -----------------------------------------------------------------
34!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION **
35
36!     J.-J. MORCRETTE       E.C.M.W.F.      02/10/29
37!     M. J. IACONO          AER             12/09/03
38
39!  NAME     TYPE     PURPOSE
40!  ----   : ----   : ---------------------------------------------------
41! KA      : REAL
42! KB      : REAL   
43! SELFREF : REAL
44! FORREF  : REAL
45! SFLUXREF: REAL
46! ABSO3A  : REAL
47! ABSO3B  : REAL
48! RAYLA   : REAL
49! RAYLB   : REAL   
50! STRRAT  : REAL
51! LAYREFFR: INTEGER
52! KAC     : REAL     Reduced g-point array for KA
53! KBC     : REAL     Reduced g-point array for KB
54! SELFREFC: REAL     Reduced g-point array for SELFREF
55! FORREFC : REAL     Reduced g-point array for FORREF
56!SFLUXREFC: REAL     Reduced g-point array for SFLUXREF
57! ABSO3AC : REAL     Reduced g-point array for ABSO3A
58! ABSO3BC : REAL     Reduced g-point array for ABSO3B
59! RAYLAC  : REAL     Reduced g-point array for RAYLA
60! RAYLBC  : REAL     Reduced g-point array for RAYLB
61!     -----------------------------------------------------------------
62END MODULE YOESRTA24
63
Note: See TracBrowser for help on using the repository browser.