Ignore:
Timestamp:
Mar 12, 2015, 12:07:43 PM (9 years ago)
Author:
Laurent Fairhead
Message:

New ocean albedo.

To activate the new scheme, put iflag_albedo=1 in physiq.def

To activate chlorophyll concentration effect on albedo,
put ok_chlorophyll=y in def file

and download file named chlorophyll.nc
chlorophyll.nc has the same dimension as the model grid with 12 months data,
(i=lon, j=lat, L=1:12) and can be degraded from the original file of dimension
i=1:4320 , j=1:2160 , L=1:12
ada:/workgpfs/rech/psl/rpsl949/clima/chlor_seasonal_clim_seawifs.nc

For 96X96 resolution, chlorophyll.nc file is in
ada:/workgpfs/rech/psl/rpsl949/clima/chlorophyll.nc

  1. Baek
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/conf_phys_m.F90

    r2205 r2227  
    110110    integer,SAVE        :: iflag_radia_omp
    111111    integer,SAVE        :: iflag_rrtm_omp
     112    integer,SAVE        :: iflag_albedo_omp !albedo SB
     113    logical,save        :: ok_chlorophyll_omp ! albedo SB 
    112114    integer,SAVE        :: NSW_omp
    113115    integer,SAVE        :: iflag_cldth_omp, ip_ebil_phy_omp
     
    889891    NSW_omp = 6
    890892    call getin('NSW',NSW_omp)
     893!albedo SB >>>
     894    iflag_albedo_omp = 0
     895    call getin('iflag_albedo',iflag_albedo_omp)
     896
     897    ok_chlorophyll_omp=.false.
     898    call getin('ok_chlorophyll',ok_chlorophyll_omp)
     899!albedo SB <<<
    891900
    892901    !
     
    21352144    write(lunout,*)' iflag_rrtm = ', iflag_rrtm
    21362145    write(lunout,*)' NSW = ', NSW
     2146    write(lunout,*)' iflag_albedo = ', iflag_albedo !albedo SB
     2147    write(lunout,*)' ok_chlorophyll =',ok_chlorophyll ! albedo SB
    21372148    write(lunout,*)' iflag_ratqs = ', iflag_ratqs
    21382149    write(lunout,*)' seuil_inversion = ', seuil_inversion
Note: See TracChangeset for help on using the changeset viewer.