LMDZ
yomaer15.F90
Go to the documentation of this file.
1 MODULE yomaer15
2 
3 USE parkind1 ,ONLY : jpim ,jprb
4 
5 IMPLICIT NONE
6 
7 SAVE
8 
9 ! -----------------------------------------------------------------
10 !* ** *YOMAER15* - RADIATIVE CHARACTERISTICS OF THE AEROSOLS
11 !* FROZEN VERSION (CYCLE 15) OF YOEAER
12 ! -----------------------------------------------------------------
13 
14 ! * E.C.M.W.F. PHYSICS PACKAGE *
15 
16 ! 96-11: Ph. Dandin. Meteo-France
17 ! J.-J. MORCRETTE E.C.M.W.F. 89/07/14
18 ! 04-06: F. Bouyssel. Initialisation done in suaer15
19 ! 05-09: A. Alias Sulfate aerosol (Hu Ron Ming)
20 
21 ! NAME TYPE PURPOSE
22 ! ---- : ---- : -------
23 ! TAUA15 : REAL S.W. NORMALIZED OPTICAL THICKNESS AT 0.55 MICRON
24 ! RPIZA15: REAL S.W. SINGLE SCATTERING ALBEDO
25 ! RCGA15 : REAL S.W. ASSYMETRY FACTOR
26 ! RAER15 : REAL L.W. ABSORPTION COEFFICIENTS
27 ! -----------------------------------------------------------------
28 
29 REAL(KIND=JPRB) :: taua15 (2,6)
30 REAL(KIND=JPRB) :: rpiza15(2,6)
31 REAL(KIND=JPRB) :: rcga15 (2,6)
32 REAL(KIND=JPRB) :: raer15 (5,6)
33 
34 !$OMP THREADPRIVATE(raer15,rcga15,rpiza15,taua15)
35 END MODULE yomaer15
real(kind=jprb), dimension(2, 6) taua15
Definition: yomaer15.F90:29
real(kind=jprb), dimension(2, 6) rpiza15
Definition: yomaer15.F90:30
real(kind=jprb), dimension(2, 6) rcga15
Definition: yomaer15.F90:31
integer, parameter jprb
Definition: parkind1.F90:31
integer, parameter jpim
Definition: parkind1.F90:13
real(kind=jprb), dimension(5, 6) raer15
Definition: yomaer15.F90:32