Ignore:
Timestamp:
Aug 27, 2013, 12:55:18 PM (11 years ago)
Author:
Ehouarn Millour
Message:

Including the thermodynamics of ice in the convection scheme (iactive only if iflag_ice_thermo==1).
CR+JYG

File:
1 edited

Legend:

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

    r1843 r1849  
    141141  LOGICAL,SAVE :: reevap_ice_omp
    142142  INTEGER,SAVE :: iflag_pdf_omp
     143  INTEGER,SAVE :: iflag_ice_thermo_omp
    143144  REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp
    144145  REAL,SAVE :: t_glace_min_omp, t_glace_max_omp
     
    966967  t_glace_max_omp = 273.13
    967968  call getin('t_glace_max',t_glace_max_omp)
     969
     970!
     971!Config Key  = iflag_ice_thermo
     972!Config Desc = 
     973!Config Def  = 0
     974!Config Help =
     975!
     976  iflag_ice_thermo_omp = 0
     977  call getin('iflag_ice_thermo',iflag_ice_thermo_omp)
    968978
    969979!Config Key  = rei_min
     
    16941704    t_glace_min = t_glace_min_omp
    16951705    t_glace_max = t_glace_max_omp
     1706    iflag_ice_thermo = iflag_ice_thermo_omp
    16961707    rei_min = rei_min_omp
    16971708    rei_max = rei_max_omp
     
    19111922  write(lunout,*)' t_glace_min = ',t_glace_min
    19121923  write(lunout,*)' t_glace_max = ',t_glace_max
     1924  write(lunout,*)' iflag_ice_thermo = ',iflag_ice_thermo
    19131925  write(lunout,*)' rei_min = ',rei_min
    19141926  write(lunout,*)' rei_max = ',rei_max
Note: See TracChangeset for help on using the changeset viewer.