- Timestamp:
- Feb 18, 2026, 10:28:23 AM (6 weeks ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phygeneric/aerosol_global_variables.F90
r4076 r4077 1 1 !================================================================== 2 module aerosol_ mod2 module aerosol_global_variables 3 3 implicit none 4 4 … … 7 7 ! aerosol indexes: these are initialized to be 0 if the 8 8 ! corresponding aerosol was not activated in callphys.def 9 ! -- otherwise a value is set via iniaerosol9 ! -- otherwise a value is set via aerosol_init 10 10 integer, save, protected :: iaero_co2 = 0 11 11 integer, save, protected :: iaero_h2o = 0 … … 43 43 contains 44 44 45 SUBROUTINE iniaerosol45 SUBROUTINE aerosol_init 46 46 47 47 use mod_phys_lmdz_para, only : is_master … … 181 181 182 182 ! For the zero aerosol case, we currently make a dummy co2 aerosol which is zero everywhere. 183 ! (See aero pacity.F90 for how this works). A better solution would be to turn off the183 ! (See aerosol_opacity.F90 for how this works). A better solution would be to turn off the 184 184 ! aerosol machinery in the no aerosol case, but this would be complicated. LK 185 185 … … 197 197 print*, 'according to current options in callphys.def' 198 198 print*, 'or change/correct incompatible options there' 199 print*, 'Abort in iniaerosol'199 print*, 'Abort in aerosol_init' 200 200 endif 201 201 call abort_physic("iniaerosl",'wrong number of aerosols',1) 202 202 endif ! of if (ia.ne.naerkind) 203 203 204 END SUBROUTINE iniaerosol205 206 end module aerosol_ mod207 !================================================================== 204 END SUBROUTINE aerosol_init 205 206 end module aerosol_global_variables 207 !==================================================================
Note: See TracChangeset
for help on using the changeset viewer.
