Changeset 707


Ignore:
Timestamp:
Jun 22, 2012, 1:06:09 PM (12 years ago)
Author:
emillour
Message:

Mars GCM:

  • Enforce that imposed TES ice albedo can never be greater than 0.9

EM

Location:
trunk/LMDZ.MARS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/README

    r706 r707  
    17251725  using microphysics) tracer tendencies should be updated after call
    17261726  to watercloud.
     1727
     1728== 22/06/12 == EM
     1729- Enforce that imposed TES ice albedo can never be greater than 0.9
  • trunk/LMDZ.MARS/libf/phymars/albedocaps.F90

    r283 r707  
    159159    write(*,*)'Problem opening npsc_albedo.nc (phymars/albedocaps.F90)'
    160160    write(*,*)'It should be in :',trim(datafile),'/'
    161     write(*,*)'1) You can change this directory address in '
    162     write(*,*)'   file phymars/datafile.h'
     161    write(*,*)'1) You can change this directory address in callfis.def with'
     162    write(*,*)'   datadir=/path/to/datafiles'
    163163    write(*,*)'2) If necessary, npsc_albedo.nc (and other datafiles)'
    164164    write(*,*)'   can be obtained online on:'
     
    200200    write(*,*)'Problem opening spsc_albedo.nc (phymars/albedocaps.F90)'
    201201    write(*,*)'It should be in :',trim(datafile),'/'
    202     write(*,*)'1) You can change this directory address in '
    203     write(*,*)'   file phymars/datafile.h'
     202    write(*,*)'1) You can change this directory address in callfis.def with'
     203    write(*,*)'   datadir=/path/to/datafiles'
    204204    write(*,*)'2) If necessary, spsc_albedo.nc (and other datafiles)'
    205205    write(*,*)'   can be obtained online on:'
     
    379379endif ! of if (icap.eq.1)
    380380
     381! Make sure that returned albedo is never greater than 0.90
     382if (alb.gt.0.90) alb=0.90
     383
    381384end subroutine TES_icecap_albedo
    382385
Note: See TracChangeset for help on using the changeset viewer.