Changeset 995


Ignore:
Timestamp:
Jun 21, 2013, 1:07:34 AM (11 years ago)
Author:
aslmd
Message:

LMDZ.GENERIC. Updated saturn 1D files. Added comments around the gluxi problem (will be further investigated). removed abort because Helium rayleigh scattering is missing

Location:
trunk/LMDZ.GENERIC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/deftank/saturn1d/callphys.def

    r976 r995  
    66diurnal   = .false. #.true.
    77# Seasonal cycle ? if season=false, Ls stays constant, to value set in "start"
    8 season    = .false.
     8season    = .true.
    99# Tidally resonant orbit ? must have diurnal=false, correct rotation rate in newstart
    1010tlocked   = .false.
     
    3232callrad    = .true.
    3333# the rad. transfer is computed every "iradia" physical timestep
    34 iradia     = 120 180 60 20 1 160
     34iradia     = 160
    3535# call multilayer correlated-k radiative transfer ?
    3636corrk      = .true.
  • trunk/LMDZ.GENERIC/deftank/saturn1d/rcm1d.def

    r976 r995  
    1818year_day       = 24430. # Read System IIIw
    1919## MIN DIST STAR-PLANET in AU [periastron]
    20 periastr       = 9.04
     20periastr       = 9.02152
    2121## MAX DIST STAR-PLANET in AU [apoastron]
    22 apoastr        = 10.12
     22apoastr        = 10.05448
    2323## DATE OF PERIASTRON in days
    24 peri_day       = 18700.
     24peri_day       = 19280.
    2525## OBLIQUITY in deg
    2626obliquit       = 26.73
    2727## SURFACE PRESSURE in Pa
    2828psurf          = 1.e6
     29
    2930
    3031## Time integration parameters
     
    3738day_step       = 1
    3839# Number of sols to run
    39 ndt            = 293160
     40ndt            = 342020
    4041# Number of steps between each writing in diagfi
    4142ecritphy=5000
  • trunk/LMDZ.GENERIC/libf/phystd/calc_rayleigh.F90

    r869 r995  
    7777               print*,'Helium not ready yet!'
    7878               tauconsti(igas) = 0.0
    79                call abort
     79               !call abort
    8080            else
    8181               print*,'Error in calc_rayleigh: Gas species not recognised!'
  • trunk/LMDZ.GENERIC/libf/phystd/gfluxi.F

    r961 r995  
    101101      LAMDA(L) = ALPHA(L)*(1.0D0-W0(L)*COSBAR(L))/UBARI
    102102
     103      ! Tsurf is used for 1st layer source function
     104      ! -- same results for most thin atmospheres
     105      ! -- and stabilizes integrations
    103106      NT    = int(TLEV(2*L+1)*NTfac) - NTstar+1
     107
     108      !! For deep, opaque, thick first layers (e.g. Saturn)
     109      !! what is below works much better, not unstable, ...
     110      !! ... and actually fully accurate because 1st layer temp (JL)
     111      !NT    = int(TLEV(2*L)*NTfac) - NTstar+1
     112      !! (or this one yields same results
     113      !NT    = int( (TLEV(2*L)+TLEV(2*L+1))*0.5*NTfac ) - NTstar+1
     114
    104115      NT2   = int(TLEV(2*L)*NTfac)   - NTstar+1
    105116      B1(L) = (PLANCKIR(NW,NT)-PLANCKIR(NW,NT2))/DTAU(L)
Note: See TracChangeset for help on using the changeset viewer.