source: LMDZ6/branches/Ocean_skin/libf/phylmd/rrtm/yoesrta20.F90 @ 3627

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