source: LMDZ5/trunk/libf/phylmd/rrtm/yoesrta17.F90 @ 1990

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