Ignore:
Timestamp:
Jul 12, 2017, 4:20:24 PM (7 years ago)
Author:
jbmadeleine
Message:
  • Added a new output called rneblsvol which is the cloud fraction by volume

computed in the thermals (see cloudth_vert in cloudth_mod.F90)

  • Added an option called iflag_rain_incloud_vol that computes the conversion

of cloud water to rain using the cloud fraction by volume instead of the cloud
fraction by area, which is larger and otherwise erroneously reduces the in-cloud
water content; iflag_rain_incloud_vol can only be used for iflag_cloudth_vert>=3

File:
1 edited

Legend:

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

    r2915 r2945  
    169169    INTEGER,SAVE :: iflag_t_glace_omp
    170170    INTEGER,SAVE :: iflag_cloudth_vert_omp
     171    INTEGER,SAVE :: iflag_rain_incloud_vol_omp
    171172    REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp
    172173    REAL,SAVE :: t_glace_min_omp, t_glace_max_omp
     
    12481249
    12491250    !
     1251    !Config Key  = iflag_rain_incloud_vol
     1252    !Config Desc = 
     1253    !Config Def  = 0
     1254    !Config Help =
     1255    !
     1256    iflag_rain_incloud_vol_omp = 0
     1257    CALL getin('iflag_rain_incloud_vol',iflag_rain_incloud_vol_omp)
     1258
     1259    !
    12501260    !Config Key  = iflag_ice_thermo
    12511261    !Config Desc = 
     
    21632173    iflag_t_glace = iflag_t_glace_omp
    21642174    iflag_cloudth_vert=iflag_cloudth_vert_omp
     2175    iflag_rain_incloud_vol=iflag_rain_incloud_vol_omp
    21652176    iflag_ice_thermo = iflag_ice_thermo_omp
    21662177    rei_min = rei_min_omp
     
    25112522    write(lunout,*)' iflag_t_glace = ',iflag_t_glace
    25122523    write(lunout,*)' iflag_cloudth_vert = ',iflag_cloudth_vert
     2524    write(lunout,*)' iflag_rain_incloud_vol = ',iflag_rain_incloud_vol
    25132525    write(lunout,*)' iflag_ice_thermo = ',iflag_ice_thermo
    25142526    write(lunout,*)' rei_min = ',rei_min
Note: See TracChangeset for help on using the changeset viewer.