source: LMDZ6/branches/Ocean_skin/libf/phylmd/rrtm/yoesrta19.F90 @ 3628

Last change on this file since 3628 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.7 KB
Line 
1MODULE YOESRTA19
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9!     -----------------------------------------------------------------
10!*    ** *YOESRTA19* - SRTM COEFFICIENTS FOR INTERVAL 19
11!     BAND 19:  4650-5150 cm-1 (low - H2O,CO2; high - CO2)
12!     -----------------------------------------------------------------
13
14INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG19 = 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) :: RAYL            ,STRRAT
21INTEGER(KIND=JPIM) :: LAYREFFR
22
23REAL(KIND=JPRB) :: KAC(9,5,13,NG19) ,ABSA(585,NG19)
24REAL(KIND=JPRB) :: KBC(5,13:59,NG19),ABSB(235,NG19)
25REAL(KIND=JPRB) :: SELFREFC(10,NG19),FORREFC(3,NG19)
26REAL(KIND=JPRB) :: SFLUXREFC(NG19,9)
27
28!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1))
29EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(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 YOESRTA19
53
Note: See TracBrowser for help on using the repository browser.