source: LMDZ6/branches/LMDZ-ECRAD/libf/phylmd/ecrad/yoesrta17.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.3 KB
Line 
1MODULE YOESRTA17
2
3USE PARKIND1  ,ONLY : JPIM     ,JPRB,JPRD
4
5IMPLICIT NONE
6
7PUBLIC
8
9SAVE
10
11!     -----------------------------------------------------------------
12!*    ** *YOESRTA17* - SRTM COEFFICIENTS FOR INTERVAL 17
13!     BAND 17:  3250-4000 cm-1 (low - H2O,CO2; high - H2O,CO2)
14!     -----------------------------------------------------------------
15
16INTEGER(KIND=JPIM), PARAMETER ::  JPG = 16, NG17 = 16, NGS16=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) :: SELFREF(10,JPG)  ,FORREF(4,JPG)
23REAL(KIND=JPRB) :: SFLUXREF(JPG,5)
24REAL(KIND=JPRB) :: RAYL              ,STRRAT
25INTEGER(KIND=JPIM) :: LAYREFFR
26
27REAL(KIND=JPRB) :: KAC(9,5,13,NG17),ABSA(585,NG17)
28REAL(KIND=JPRB) :: KBC(5,5,13:59,NG17),ABSB(1175,NG17)
29REAL(KIND=JPRB) :: SELFREFC(10,NG17),FORREFC(4,NG17)
30REAL(KIND=JPRB) :: SFLUXREFC(NG17,5)
31
32!EQUIVALENCE (KA(1,1,1,1),ABSA(1,1)), (KB(1,1,13,1),ABSB(1,1))
33EQUIVALENCE (KAC(1,1,1,1),ABSA(1,1)), (KBC(1,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 YOESRTA17
58
Note: See TracBrowser for help on using the repository browser.