source: trunk/LMDZ.TITAN/libf/phytitan/aerosol_mod.F90 @ 1704

Last change on this file since 1704 was 1647, checked in by jvatant, 9 years ago

+ Major clean of the new LMDZ.TITAN from too-generic options and routines (water, co2, ocean, surface type ...)
+ From this revision LMDZ.TITAN begins to be really separated from LMDZ.GENERIC
+ Partial desactivation of aerosols, only the dummy case is still enabled to keep the code running ( new aerosol routines to come in followings commits )

JVO

File size: 681 bytes
Line 
1!==================================================================
2module aerosol_mod
3implicit none
4save
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      logical :: noaero = .false.
11
12! two-layer simple aerosol model
13      integer :: iaero_back2lay = 0
14!$OMP THREADPRIVATE(noaero,iaero_back2lay)
15     
16!==================================================================
17end module aerosol_mod
18!==================================================================
Note: See TracBrowser for help on using the repository browser.