source: LMDZ6/branches/LMDZ-ECRAD/libf/phylmd/ecrad/yoesrta19.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: 2.2 KB
Line 
1MODULE YOESRTA19
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD
4
5IMPLICIT NONE
6
7PUBLIC
8
9SAVE
10
11!     -----------------------------------------------------------------
12!*    ** *YOESRTA19* - SRTM COEFFICIENTS FOR INTERVAL 19
13!     BAND 19:  4650-5150 cm-1 (low - H2O,CO2; high - CO2)
14!     -----------------------------------------------------------------
15
16INTEGER(KIND=JPIM), PARAMETER :: JPG = 16, NG19 = 16
17
18REAL(KIND=JPRB) :: KA(9,5,13,JPG)
19REAL(KIND=JPRB) :: KB(5,13:59,JPG)
20REAL(KIND=JPRD) :: KA_D(9,5,13,JPG)
21REAL(KIND=JPRD) :: KB_D(5,13:59,JPG)
22REAL(KIND=JPRB) :: SELFREF(10,JPG),FORREF(3,JPG)
23REAL(KIND=JPRB) :: SFLUXREF(JPG,9)
24REAL(KIND=JPRB) :: RAYL            ,STRRAT
25INTEGER(KIND=JPIM) :: LAYREFFR
26
27REAL(KIND=JPRB) :: KAC(9,5,13,NG19) ,ABSA(585,NG19)
28REAL(KIND=JPRB) :: KBC(5,13:59,NG19),ABSB(235,NG19)
29REAL(KIND=JPRB) :: SELFREFC(10,NG19),FORREFC(3,NG19)
30REAL(KIND=JPRB) :: SFLUXREFC(NG19,9)
31
32!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,13,1),ABSB(1,1))
33EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,13,1),ABSB(1,1))
34!     -----------------------------------------------------------------
35!        * E.C.M.W.F. PHYSICS PACKAGE ** RRTM SW RADIATION **
36
37!     J.-J. MORCRETTE       E.C.M.W.F.      02/10/29
38!     M. J. IACONO          AER             12/09/03
39
40!  NAME     TYPE     PURPOSE
41!  ----   : ----   : ---------------------------------------------------
42! KA      : REAL     absorption coefficient of major absorber
43! KB      : REAL     absorption coefficient of secondary absorber
44! SELFREF : REAL     self brodening coefficient for water vapour
45! FORREF  : REAL     foreign broadening coefficient for water vapour
46! SFLUXREF: REAL     Incident solar radiation in the spectral interval
47! RAYL    : REAL     Rayleigh scattering parameter
48! STRRAT  : REAL     weighting factor for the transition between tropospheric
49!                    and stratospheric computations
50! LAYREFFR: INTEGER  reference level for the transition
51! KAC     : REAL     Reduced g-point array for KA
52! KBC     : REAL     Reduced g-point array for KB
53! SELFREFC: REAL     Reduced g-point array for SELFREF
54! FORREFC : REAL     Reduced g-point array for FORREF
55!SFLUXREFC: REAL     Reduced g-point array for SFLUXREF
56!     -----------------------------------------------------------------
57END MODULE YOESRTA19
58
Note: See TracBrowser for help on using the repository browser.