Changeset 707 for trunk/LMDZ.MARS/libf


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

Mars GCM:

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

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.