Ignore:
Timestamp:
Mar 22, 2017, 4:18:23 PM (8 years ago)
Author:
sglmd
Message:

Two aerosol kinds added for giant planets: one is a compact (NH3) cloud where the opacity, particle size and bottom pressure level are taken as inputs (a scale height of 0.2 is hard-coded to simulate a compact cloud). Corresponds to option aeronh3. The other one is not generic at all and corresponds to the auroral, stratospheric aerosols observed on Jupiter...(option aeroaurora=.false. by default)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/radii_mod.F90

    r1529 r1677  
    3939      use radinc_h, only: naerkind
    4040      use aerosol_mod, only: iaero_back2lay, iaero_co2, iaero_dust, &
    41                              iaero_h2o, iaero_h2so4
     41                             iaero_h2o, iaero_h2so4,iaero_nh3,iaero_aurora
    4242      Implicit none
    4343
     
    8484            endif
    8585
     86
     87            if(iaer.eq.iaero_nh3)then ! Nh3 cloud
     88               reffrad(1:ngrid,1:nlayer,iaer) = 1e-6
     89               nueffrad(1:ngrid,1:nlayer,iaer) = 0.1
     90            endif
     91
     92            if(iaer.eq.iaero_aurora)then ! Auroral aerosols
     93               reffrad(1:ngrid,1:nlayer,iaer) = 3e-7
     94               nueffrad(1:ngrid,1:nlayer,iaer) = 0.1
     95            endif
    8696
    8797
     
    363373
    364374
    365 
    366375end module radii_mod
    367376!==================================================================
Note: See TracChangeset for help on using the changeset viewer.