Last change
on this file since 1477 was
1315,
checked in by milmd, 10 years ago
|
LMDZ.GENERIC. OpenMP directives added in generic physic. When running in pure OpenMP or hybrid OpenMP/MPI, may have some bugs with condense_cloud and wstats routines.
|
File size:
852 bytes
|
Line | |
---|
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 | !$OMP THREADPRIVATE(iaero_co2,iaero_h2o,iaero_dust,iaero_h2so4,noaero,iaero_back2lay) |
---|
19 | |
---|
20 | !================================================================== |
---|
21 | end module aerosol_mod |
---|
22 | !================================================================== |
---|
Note: See
TracBrowser
for help on using the repository browser.