source: LMDZ5/branches/testing/libf/phylmd/aero_mod.F90 @ 2787

Last change on this file since 2787 was 2594, checked in by Laurent Fairhead, 8 years ago

Merged trunk changes r2545:2589 into testing branch

  • 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
[2056]4! Declaration des indices pour les aerosols
[1181]5
[2056]6! 1/ Total number of aerosols for which an aerosol optical depth is provided
7!--strat aerosols are only prescribed naero_tot = 10 ==> 11
[2160]8!--adding nitrate naero_tot = 14 OB
[2056]9
[2160]10  INTEGER, PARAMETER :: naero_tot = 14
[1181]11
[2056]12! Identification number used in aeropt_2bands and aeropt_5wv
13! corresponding to naero_tot
[2160]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
[2056]29! Corresponding names for the aerosols
30  CHARACTER(len=7),DIMENSION(naero_tot), PARAMETER :: name_aero_tau=(/&
31       "ASBCM  ", &
32       "ASPOMM ", &
[2435]33       "ASSO4M ", &
[2056]34       "CSSO4M ", &
35       "SSSSM  ", &
36       "CSSSM  ", &
37       "ASSSM  ", &
38       "CIDUSTM", &
39       "AIBCM  ", &
40       "AIPOMM ", &
[2160]41       "ASNO3M ", &
42       "CSNO3M ", &
43       "CINO3M ", &
[2056]44       "STRAT  " /)
[1795]45
[2056]46! 2/ Total number of aerosols for which an aerosol mass is provided
[1181]47
[2056]48  INTEGER, PARAMETER :: naero_spc = 10
49
50! Corresponding names for the aerosols
[1795]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  ", &
[2056]61       "AIPOMM " /)
[1181]62
[2056]63! 3/ Number of aerosol groups
[2408]64  INTEGER, PARAMETER :: naero_grp = 12
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   
[2408]74  ! 9 = FNO3   
75  ! 10 = DNO3
76  ! 11 = SNO3
77  ! 12 = empty actually
78  ! else
79  ! 1 = ZERO   
80  ! 2 = AER total   
81  ! 3 = NAT   
82  ! 4 = BC   
83  ! 5 = SO4   
84  ! 6 = POM   
85  ! 7 = DUST   
86  ! 8 = SS   
[1181]87  ! 9 = NO3   
88
[2160]89! Number of diagnostics wavelengths (5 SW + 1 LW @ 10 um)
[2594]90  INTEGER, PARAMETER :: nwave_sw = 5
[2160]91  INTEGER, PARAMETER :: nwave_lw = 1
[2594]92  INTEGER, PARAMETER :: nwave = nwave_sw + nwave_lw
[1181]93
[2056]94! Number of modes spectral bands
[1181]95  INTEGER, parameter :: nbands = 2
[2160]96  INTEGER, parameter :: nbands_sw_rrtm = 6
97  INTEGER, parameter :: nbands_lw_rrtm = 16
[1181]98
[1183]99END MODULE aero_mod
Note: See TracBrowser for help on using the repository browser.