Ignore:
Timestamp:
May 25, 2011, 12:55:27 PM (13 years ago)
Author:
idelkadi
Message:

Modifications concerning the cloud scheme:

  1. In newmicro, it now possible to read a min and max effective radius of ice particles from physiq.def : rei_min and rei_max which were initially set to 3.5 and 61.29 microns in the code.

concerns : conf_phys.F90, nuage.h, newmicro.F

  1. In physiq.F, in case of combination of iflag_cldcon>=5 (A. Jam cloud scheme) and iflag_coupl=5

concerns : physiq.F and thermcell_main.F90

File:
1 edited

Legend:

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

    r1496 r1525  
    129129  REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp
    130130  REAL,SAVE :: t_glace_min_omp, t_glace_max_omp
     131  REAL,SAVE :: rei_min_omp, rei_max_omp
    131132  REAL,SAVE :: inertie_sol_omp,inertie_sno_omp,inertie_ice_omp
    132133  REAL,SAVE :: qsol0_omp
     
    858859  call getin('t_glace_max',t_glace_max_omp)
    859860
     861!Config Key  = rei_min
     862!Config Desc = 
     863!Config Def  = 3.5
     864!Config Help =
     865!
     866  rei_min_omp = 3.5
     867  call getin('rei_min',rei_min_omp)
     868
     869!
     870!Config Key  = rei_max
     871!Config Desc = 
     872!Config Def  = 61.29
     873!Config Help =
     874!
     875  rei_max_omp = 61.29
     876  call getin('rei_max',rei_max_omp)
     877
    860878!
    861879!Config Key  = top_height
     
    15031521    t_glace_min = t_glace_min_omp
    15041522    t_glace_max = t_glace_max_omp
     1523    rei_min = rei_min_omp
     1524    rei_max = rei_max_omp
    15051525    top_height = top_height_omp
    15061526    overlap = overlap_omp
     
    16881708  write(numout,*)' t_glace_min = ',t_glace_min
    16891709  write(numout,*)' t_glace_max = ',t_glace_max
     1710  write(numout,*)' rei_min = ',rei_min
     1711  write(numout,*)' rei_max = ',rei_max
    16901712  write(numout,*)' overlap = ',overlap
    16911713  write(numout,*)' cdmmax = ',cdmmax
Note: See TracChangeset for help on using the changeset viewer.