Ignore:
Timestamp:
Feb 18, 2026, 10:28:23 AM (6 weeks ago)
Author:
mturbet
Message:

renaming and merging of radiative routines in phygeneric

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phygeneric/aerosol_global_variables.F90

    r4076 r4077  
    11!==================================================================
    2 module aerosol_mod
     2module aerosol_global_variables
    33implicit none
    44
     
    77!  aerosol indexes: these are initialized to be 0 if the
    88!                 corresponding aerosol was not activated in callphys.def
    9 !                 -- otherwise a value is set via iniaerosol
     9!                 -- otherwise a value is set via aerosol_init
    1010      integer, save, protected :: iaero_co2 = 0
    1111      integer, save, protected :: iaero_h2o = 0
     
    4343contains
    4444
    45   SUBROUTINE iniaerosol
     45  SUBROUTINE aerosol_init
    4646
    4747  use mod_phys_lmdz_para, only : is_master
     
    181181
    182182! For the zero aerosol case, we currently make a dummy co2 aerosol which is zero everywhere.
    183 ! (See aeropacity.F90 for how this works). A better solution would be to turn off the
     183! (See aerosol_opacity.F90 for how this works). A better solution would be to turn off the
    184184! aerosol machinery in the no aerosol case, but this would be complicated. LK
    185185
     
    197197      print*, 'according to current options in callphys.def'
    198198      print*, 'or change/correct incompatible options there'
    199       print*, 'Abort in iniaerosol'
     199      print*, 'Abort in aerosol_init'
    200200    endif
    201201    call abort_physic("iniaerosl",'wrong number of aerosols',1)
    202202  endif ! of if (ia.ne.naerkind)
    203203
    204   END SUBROUTINE iniaerosol
    205 
    206 end module aerosol_mod
    207 !==================================================================
     204  END SUBROUTINE aerosol_init
     205
     206end module aerosol_global_variables
     207!==================================================================
Note: See TracChangeset for help on using the changeset viewer.