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