source: LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/aero_mod.F90 @ 3230

Last change on this file since 3230 was 3230, checked in by acozic, 6 years ago

Modify number of aerosol groups to be use with INCA SOA configuration

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 2.6 KB
RevLine 
[1181]1! $Id$
2!
[1183]3MODULE aero_mod
[2003]4! Declaration des indices pour les aerosols
[1181]5
[2003]6! 1/ Total number of aerosols for which an aerosol optical depth is provided
7!--strat aerosols are only prescribed naero_tot = 10 ==> 11
[2146]8!--adding nitrate naero_tot = 14 OB
[2003]9
[2146]10  INTEGER, PARAMETER :: naero_tot = 14
[1181]11
[2003]12! Identification number used in aeropt_2bands and aeropt_5wv
13! corresponding to naero_tot
[2146]14  INTEGER, PARAMETER :: id_ASBCM_phy    = 1
15  INTEGER, PARAMETER :: id_ASPOMM_phy   = 2
16  INTEGER, PARAMETER :: id_ASSO4M_phy   = 3
17  INTEGER, PARAMETER :: id_CSSO4M_phy   = 4
18  INTEGER, PARAMETER :: id_SSSSM_phy    = 5
19  INTEGER, PARAMETER :: id_CSSSM_phy    = 6
20  INTEGER, PARAMETER :: id_ASSSM_phy    = 7
21  INTEGER, PARAMETER :: id_CIDUSTM_phy  = 8
22  INTEGER, PARAMETER :: id_AIBCM_phy    = 9
23  INTEGER, PARAMETER :: id_AIPOMM_phy   = 10
24  INTEGER, PARAMETER :: id_ASNO3M_phy   = 11
25  INTEGER, PARAMETER :: id_CSNO3M_phy   = 12
26  INTEGER, PARAMETER :: id_CINO3M_phy   = 13
27  INTEGER, PARAMETER :: id_STRAT_phy    = 14
[1181]28
[2003]29! Corresponding names for the aerosols
30  CHARACTER(len=7),DIMENSION(naero_tot), PARAMETER :: name_aero_tau=(/&
31       "ASBCM  ", &
32       "ASPOMM ", &
[2423]33       "ASSO4M ", &
[2003]34       "CSSO4M ", &
35       "SSSSM  ", &
36       "CSSSM  ", &
37       "ASSSM  ", &
38       "CIDUSTM", &
39       "AIBCM  ", &
40       "AIPOMM ", &
[2146]41       "ASNO3M ", &
42       "CSNO3M ", &
43       "CINO3M ", &
[2003]44       "STRAT  " /)
[1764]45
[2003]46! 2/ Total number of aerosols for which an aerosol mass is provided
[1181]47
[2003]48  INTEGER, PARAMETER :: naero_spc = 10
49
50! Corresponding names for the aerosols
[1791]51  CHARACTER(len=7),DIMENSION(naero_spc), PARAMETER :: name_aero=(/&
[1181]52       "ASBCM  ", &
53       "ASPOMM ", &
54       "SO4    ", &
[1221]55       "CSSO4M ", &
56       "SSSSM  ", &
57       "CSSSM  ", &
58       "ASSSM  ", &
[1181]59       "CIDUSTM", &
60       "AIBCM  ", &
[2003]61       "AIPOMM " /)
[1181]62
[2003]63! 3/ Number of aerosol groups
[3230]64  INTEGER, PARAMETER :: naero_grp = 13
[2394]65  ! if info_trac = inca
[1181]66  ! 1 = ZERO   
67  ! 2 = AER total   
68  ! 3 = NAT   
69  ! 4 = BC   
70  ! 5 = SO4   
71  ! 6 = POM   
72  ! 7 = DUST   
73  ! 8 = SS   
[2394]74  ! 9 = FNO3   
75  ! 10 = DNO3
76  ! 11 = SNO3
[3230]77  ! 12 = SOAA
78  ! 13 = SOAA
[2394]79  ! else
80  ! 1 = ZERO   
81  ! 2 = AER total   
82  ! 3 = NAT   
83  ! 4 = BC   
84  ! 5 = SO4   
85  ! 6 = POM   
86  ! 7 = DUST   
87  ! 8 = SS   
[1181]88  ! 9 = NO3   
89
[2146]90! Number of diagnostics wavelengths (5 SW + 1 LW @ 10 um)
[2550]91  INTEGER, PARAMETER :: nwave_sw = 5
[2146]92  INTEGER, PARAMETER :: nwave_lw = 1
[2550]93  INTEGER, PARAMETER :: nwave = nwave_sw + nwave_lw
[1181]94
[2003]95! Number of modes spectral bands
[1181]96  INTEGER, parameter :: nbands = 2
[2146]97  INTEGER, parameter :: nbands_sw_rrtm = 6
98  INTEGER, parameter :: nbands_lw_rrtm = 16
[1181]99
[1183]100END MODULE aero_mod
Note: See TracBrowser for help on using the repository browser.