source: LMDZ6/trunk/libf/phylmd/aero_mod.F90 @ 3627

Last change on this file since 3627 was 3319, checked in by jyg, 6 years ago

Adding missing IMPLICIT NONE

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