!================================================================== module aerosol_mod implicit none save !================================================================== ! aerosol indexes: these are initialized to be 0 if the ! corresponding aerosol was not activated in callphys.def ! -- otherwise a value is given in iniaerosol integer :: iaero_co2 = 0 integer :: iaero_h2o = 0 integer :: iaero_dust = 0 integer :: iaero_h2so4 = 0 logical :: noaero = .false. !================================================================== end module aerosol_mod !==================================================================