source: LMDZ6/branches/IPSLCM6.0.15/libf/phymar/suaerl.F90

Last change on this file was 2089, checked in by Laurent Fairhead, 10 years ago

Inclusion de la physique de MAR


Integration of MAR physics

File size: 3.4 KB
Line 
1SUBROUTINE SUAERL
2
3!**** *SUAERL*   - INITIALIZE COMMON YOEAER
4
5!     PURPOSE.
6!     --------
7!           INITIALIZE YOEAER, THE COMMON THAT CONTAINS THE
8!           RADIATIVE CHARACTERISTICS OF THE AEROSOLS
9
10!**   INTERFACE.
11!     ----------
12!              -----        -----
13
14!        EXPLICIT ARGUMENTS :
15!        --------------------
16!        NONE
17
18!        IMPLICIT ARGUMENTS :
19!        --------------------
20!        COMMON YOEAER
21
22!     METHOD.
23!     -------
24!        SEE DOCUMENTATION
25
26!     EXTERNALS.
27!     ----------
28
29!     REFERENCE.
30!     ----------
31!        ECMWF RESEARCH DEPARTMENT DOCUMENTATION OF THE "IFS MODEL"
32
33!     AUTHOR.
34!     -------
35!        JEAN-JACQUES MORCRETTE *ECMWF*
36
37!     MODIFICATIONS.
38!     --------------
39!        ORIGINAL : 88-02-15
40!        99-05-25   JJMorcrette   Revised Aerosol LW properties (OPAC)
41
42!     ------------------------------------------------------------------
43
44#include "tsmbkind.h"
45
46USE YOESW    , ONLY : RAER
47
48!      ----------------------------------------------------------------
49
50!*       1.    SHORTWAVE COEFFICIENTS
51!              ----------------------
52
53!      Initialised in SUAERSn depending on NSW number of SW spectral
54!      intervals
55
56!      ----------------------------------------------------------------
57
58!*       2.    LONGWAVE COEFFICIENTS
59!              ---------------------
60
61!=======================================================================
62!-- The (old) five aerosol types were respectively:
63
64!  1/ continental average (+desert)       2/ maritime
65!  3/ urban                               4/ volcanic active
66!  5/ stratospheric background
67
68!      RAER  = RESHAPE((/
69!     &          .038520, .037196, .040532, .054934, .038520
70!     &        , .126130, .18313 , .10357 , .064106, .126130
71!     &        , .012579, .013649, .018652, .025181, .012579
72!     &        , .011890, .016142, .021105, .028908, .011890
73!     &        , .013792, .026810, .052203, .066338, .013792 /)
74!     & ,SHAPE=(/5,5/))
75
76!=======================================================================
77
78!-- The six aerosol types are respectively:
79
80!  1/ continental average                 2/ maritime
81!  3/ desert                              4/ urban
82!  5/ volcanic active                     6/ stratospheric background
83
84! The quantities given are:
85! TAU : ratio of average optical thickness in interval to that at 0.55
86!       micron
87! PIZA: average single scattering albedo
88! CGA : average asymmetry factor
89
90! computed from Hess and Koepke (con, mar, des, urb)
91!          from Bonnel et al.   (vol, str)
92
93!-- data are entered for the 6 spectral intervals of the LW scheme (line)
94!   and the different types of aerosols (column)
95
96
97IMPLICIT NONE
98RAER( :, 1)= (/&
99   &.036271_JPRB, .030153_JPRB, .017343_JPRB, .015002_JPRB, .008806_JPRB, .006865_JPRB /)
100RAER( :, 2)= (/&
101   &.026561_JPRB, .032657_JPRB, .017977_JPRB, .014210_JPRB, .016775_JPRB, .022123_JPRB /)
102RAER( :, 3)= (/&
103   &.014897_JPRB, .016359_JPRB, .019789_JPRB, .030777_JPRB, .013341_JPRB, .014321_JPRB /)
104RAER( :, 4)= (/&
105   &.001863_JPRB, .002816_JPRB, .002355_JPRB, .002557_JPRB, .001774_JPRB, .001780_JPRB /)
106RAER( :, 5)= (/&
107   &.011890_JPRB, .016142_JPRB, .021105_JPRB, .028908_JPRB, .011890_JPRB, .011890_JPRB /)
108RAER( :, 6)= (/&
109   &.013792_JPRB, .026810_JPRB, .052203_JPRB, .066338_JPRB, .013792_JPRB, .013792_JPRB /)
110
111!      ----------------------------------------------------------------
112
113RETURN
114END SUBROUTINE SUAERL
Note: See TracBrowser for help on using the repository browser.