source: LMDZ6/branches/Ocean_skin/libf/phylmd/rrtm/yoesrta16.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 YOESRTA16
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB
4
5IMPLICIT NONE
6
7SAVE
8
9!     -----------------------------------------------------------------
10!*    ** *YOESRTA16* - SRTM COEFFICIENTS FOR INTERVAL 16
11!     BAND 16:  2600-3250 cm-1 (low - H2O,CH4; high - CH4)
12!     -----------------------------------------------------------------
13
14INTEGER(KIND=JPIM), PARAMETER :: JPG=16, NG16 = 16, NGS15 = 0
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)
20REAL(KIND=JPRB) :: RAYL            ,STRRAT1
21INTEGER(KIND=JPIM) :: LAYREFFR
22
23REAL(KIND=JPRB) :: KAC(9,5,13,NG16),ABSA(585,NG16)
24REAL(KIND=JPRB) :: KBC(5,13:59,NG16),ABSB(235,NG16)
25REAL(KIND=JPRB) :: SELFREFC(10,NG16),FORREFC(3,NG16)
26REAL(KIND=JPRB) :: SFLUXREFC(NG16)
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!     -----------------------------------------------------------------
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! RAYL    : REAL
45! STRRAT1 : 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!     -----------------------------------------------------------------
53END MODULE YOESRTA16
54
Note: See TracBrowser for help on using the repository browser.