source: LMDZ6/branches/LMDZ-ECRAD/libf/phylmd/ecrad/yoesrta28.F90 @ 3880

Last change on this file since 3880 was 3880, checked in by idelkadi, 3 years ago

Online implementation of the radiative transfer code ECRAD in LMDZ.

  • Inclusion of the ecrad directory containing the sources of the ECRAD code
  • Adaptation of compilation scripts (CPP_ECRAD keys)
  • Call of ecrad in radlwsw_m.F90 under the logical key iflag_rrtm = 2
File size: 1.9 KB
Line 
1MODULE YOESRTA28
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD
4
5IMPLICIT NONE
6
7PUBLIC
8
9SAVE
10
11!     -----------------------------------------------------------------
12!*    ** *YOESRTA28* - SRTM COEFFICIENTS FOR INTERVAL 28
13!     BAND 28: 38000-50000 cm-1 (low - O3, O2; high - O3, O2)
14!     -----------------------------------------------------------------
15
16INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG28 = 16
17
18REAL(KIND=JPRB) :: KA(9,5,13,JPG)   
19REAL(KIND=JPRB) :: KB(5,5,13:59,JPG)
20REAL(KIND=JPRD) :: KA_D(9,5,13,JPG)   
21REAL(KIND=JPRD) :: KB_D(5,5,13:59,JPG)
22REAL(KIND=JPRB) :: SFLUXREF(JPG,5)
23REAL(KIND=JPRB) :: RAYL              ,STRRAT
24INTEGER(KIND=JPIM) :: LAYREFFR
25
26REAL(KIND=JPRB) :: KAC(9,5,13,NG28)   ,ABSA(585,NG28)
27REAL(KIND=JPRB) :: KBC(5,5,13:59,NG28),ABSB(1175,NG28)
28REAL(KIND=JPRB) :: SFLUXREFC(NG28,5)
29
30!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,1,13,1),ABSB(1,1))
31EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,1,13,1),ABSB(1,1))
32
33!     -----------------------------------------------------------------
34!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION **
35
36!     J.-J. MORCRETTE       E.C.M.W.F.      02/10/29
37!     M. J. IACONO          AER             12/09/03
38
39!  NAME     TYPE     PURPOSE
40!  ----   : ----   : ---------------------------------------------------
41! KA      : REAL     absorption coefficient of major absorber
42! KB      : REAL     absorption coefficient of secondary absorber
43! SFLUXREF: REAL     Incident solar radiation in the spectral interval
44! RAYL    : REAL     Rayleigh scattering parameter
45! STRRAT  : REAL     weighting factor for the transition between tropospheric
46!                    and stratospheric computations
47! LAYREFFR: INTEGER  reference level for the transition
48! KAC     : REAL     Reduced g-point array for KA
49! KBC     : REAL     Reduced g-point array for KB
50!SFLUXREFC: REAL     Reduced g-point array for SFLUXREF
51!     -----------------------------------------------------------------
52END MODULE YOESRTA28
53
Note: See TracBrowser for help on using the repository browser.