[2560] | 1 | !================================================================== |
---|
| 2 | module aerosol_mod |
---|
| 3 | implicit none |
---|
| 4 | save |
---|
| 5 | !================================================================== |
---|
| 6 | |
---|
| 7 | ! aerosol indexes: these are initialized to be 0 if the |
---|
| 8 | ! corresponding aerosol was not activated in callphys.def |
---|
| 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. |
---|
| 15 | |
---|
| 16 | ! two-layer simple aerosol model |
---|
| 17 | integer :: iaero_back2lay = 0 |
---|
| 18 | ! NH3 cloud |
---|
| 19 | integer :: iaero_nh3 = 0 |
---|
| 20 | ! N-layer aerosol model (replaces the 2-layer and hard-coded clouds) |
---|
| 21 | integer,dimension(:),allocatable,save :: iaero_nlay |
---|
| 22 | ! Auroral aerosols |
---|
| 23 | integer :: iaero_aurora = 0 |
---|
| 24 | !$OMP THREADPRIVATE(iaero_co2,iaero_h2o,iaero_dust,iaero_h2so4,noaero,iaero_back2lay,iaero_nh3,iaero_nlay,iaero_aurora) |
---|
| 25 | |
---|
| 26 | ! Venus clouds |
---|
| 27 | integer :: iaero_venus1 = 0 |
---|
| 28 | integer :: iaero_venus2 = 0 |
---|
| 29 | integer :: iaero_venus2p = 0 |
---|
| 30 | integer :: iaero_venus3 = 0 |
---|
| 31 | integer :: iaero_venusUV = 0 |
---|
| 32 | !$OMP THREADPRIVATE(iaero_venus1,iaero_venus2,iaero_venus2p,iaero_venus3,iaero_venusUV) |
---|
| 33 | |
---|
| 34 | !================================================================== |
---|
| 35 | end module aerosol_mod |
---|
| 36 | !================================================================== |
---|