[726] | 1 | !================================================================== |
---|
| 2 | module aerosol_mod |
---|
[747] | 3 | implicit none |
---|
| 4 | save |
---|
[726] | 5 | !================================================================== |
---|
| 6 | |
---|
[747] | 7 | ! aerosol indexes: these are initialized to be 0 if the |
---|
[726] | 8 | ! corresponding aerosol was not activated in callphys.def |
---|
[747] | 9 | ! -- otherwise a value is given in iniaerosol |
---|
| 10 | integer :: iaero_co2 = 0 |
---|
| 11 | integer :: iaero_h2o = 0 |
---|
| 12 | integer :: iaero_dust = 0 |
---|
| 13 | integer :: iaero_h2so4 = 0 |
---|
| 14 | logical :: noaero = .false. |
---|
[2831] | 15 | !$OMP THREADPRIVATE(iaero_co2,iaero_h2o,iaero_dust,iaero_h2so4,noaero) |
---|
[1026] | 16 | |
---|
| 17 | ! two-layer simple aerosol model |
---|
| 18 | integer :: iaero_back2lay = 0 |
---|
[1677] | 19 | ! NH3 cloud |
---|
| 20 | integer :: iaero_nh3 = 0 |
---|
[2297] | 21 | ! N-layer aerosol model (replaces the 2-layer and hard-coded clouds) |
---|
| 22 | integer,dimension(:),allocatable,save :: iaero_nlay |
---|
| 23 | ! Auroral aerosols |
---|
[1677] | 24 | integer :: iaero_aurora = 0 |
---|
[2831] | 25 | !$OMP THREADPRIVATE(iaero_back2lay,iaero_nh3,iaero_nlay,iaero_aurora) |
---|
| 26 | |
---|
[2803] | 27 | ! Generic aerosols |
---|
| 28 | integer, dimension(:),allocatable,save :: iaero_generic |
---|
[2804] | 29 | integer,dimension(:),allocatable,save :: i_rgcs_ice |
---|
[2831] | 30 | !$OMP THREADPRIVATE(iaero_generic,i_rgcs_ice) |
---|
| 31 | |
---|
| 32 | ! Venus clouds |
---|
| 33 | integer :: iaero_venus1 = 0 |
---|
| 34 | integer :: iaero_venus2 = 0 |
---|
| 35 | integer :: iaero_venus2p = 0 |
---|
| 36 | integer :: iaero_venus3 = 0 |
---|
| 37 | integer :: iaero_venusUV = 0 |
---|
| 38 | !$OMP THREADPRIVATE(iaero_venus1,iaero_venus2,iaero_venus2p) |
---|
| 39 | !$OMP THREADPRIVATE(iaero_venus3,iaero_venusUV) |
---|
| 40 | |
---|
[741] | 41 | |
---|
[726] | 42 | !================================================================== |
---|
| 43 | end module aerosol_mod |
---|
| 44 | !================================================================== |
---|