source: LMDZ6/trunk/libf/phylmd/rrtm/yoesrta28.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.5 KB
Line 
1MODULE YOESRTA28
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9!     -----------------------------------------------------------------
10!*    ** *YOESRTA28* - SRTM COEFFICIENTS FOR INTERVAL 28
11!     BAND 28: 38000-50000 cm-1 (low - O3, O2; high - O3, O2)
12!     -----------------------------------------------------------------
13
14INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG28 = 16
15
16REAL(KIND=JPRB) :: KA(9,5,13,JPG)   
17REAL(KIND=JPRB) :: KB(5,5,13:59,JPG)
18REAL(KIND=JPRB) :: SFLUXREF(JPG,5)
19REAL(KIND=JPRB) :: RAYL              ,STRRAT
20INTEGER(KIND=JPIM) :: LAYREFFR
21
22REAL(KIND=JPRB) :: KAC(9,5,13,NG28)   ,ABSA(585,NG28)
23REAL(KIND=JPRB) :: KBC(5,5,13:59,NG28),ABSB(1175,NG28)
24REAL(KIND=JPRB) :: SFLUXREFC(NG28,5)
25
26!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,1,13,1),ABSB(1,1))
27EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,1,13,1),ABSB(1,1))
28
29!     -----------------------------------------------------------------
30!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION **
31
32!     J.-J. MORCRETTE       E.C.M.W.F.      02/10/29
33!     M. J. IACONO          AER             12/09/03
34
35!  NAME     TYPE     PURPOSE
36!  ----   : ----   : ---------------------------------------------------
37! KA      : REAL
38! KB      : REAL   
39! SFLUXREF: REAL
40! RAYL    : REAL   
41! STRRAT  : REAL
42! LAYREFFR: INTEGER
43! KAC     : REAL     Reduced g-point array for KA
44! KBC     : REAL     Reduced g-point array for KB
45!SFLUXREFC: REAL     Reduced g-point array for SFLUXREF
46!     -----------------------------------------------------------------
47END MODULE YOESRTA28
48
Note: See TracBrowser for help on using the repository browser.