Ignore:
Timestamp:
Apr 6, 2014, 1:31:28 PM (10 years ago)
Author:
fhourdin
Message:

Modification de la spécification de la plage de température pour
la phase mixte liquide/glace des nuages.
Contrôle par les paramètres t_glace_min/max, exposant_glace, iflag_t_glace

Modifying the specification of the mixte liquid/ice phase for cloud water.

Jean-Baptiste Madeleine

File:
1 edited

Legend:

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

    r2000 r2006  
    146146    INTEGER,SAVE :: iflag_pdf_omp
    147147    INTEGER,SAVE :: iflag_ice_thermo_omp
     148    INTEGER,SAVE :: iflag_t_glace_omp
    148149    REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp
    149150    REAL,SAVE :: t_glace_min_omp, t_glace_max_omp
     151    REAL,SAVE :: exposant_glace_omp
    150152    REAL,SAVE :: rei_min_omp, rei_max_omp
    151153    REAL,SAVE :: inertie_sol_omp,inertie_sno_omp,inertie_ice_omp
     
    10061008
    10071009    !
     1010    !Config Key  = exposant_glace
     1011    !Config Desc = 
     1012    !Config Def  = 2.
     1013    !Config Help =
     1014    !
     1015    exposant_glace_omp = 1.
     1016    call getin('exposant_glace',exposant_glace_omp)
     1017
     1018    !
     1019    !Config Key  = iflag_t_glace
     1020    !Config Desc = 
     1021    !Config Def  = 0
     1022    !Config Help =
     1023    !
     1024    iflag_t_glace_omp = 0
     1025    call getin('iflag_t_glace',iflag_t_glace_omp)
     1026
     1027    !
    10081028    !Config Key  = iflag_ice_thermo
    10091029    !Config Desc = 
     
    17641784    t_glace_min = t_glace_min_omp
    17651785    t_glace_max = t_glace_max_omp
     1786    exposant_glace = exposant_glace_omp
     1787    iflag_t_glace = iflag_t_glace_omp
    17661788    iflag_ice_thermo = iflag_ice_thermo_omp
    17671789    rei_min = rei_min_omp
     
    19932015    write(lunout,*)' t_glace_min = ',t_glace_min
    19942016    write(lunout,*)' t_glace_max = ',t_glace_max
     2017    write(lunout,*)' exposant_glace = ',exposant_glace
     2018    write(lunout,*)' iflag_t_glace = ',iflag_t_glace
    19952019    write(lunout,*)' iflag_ice_thermo = ',iflag_ice_thermo
    19962020    write(lunout,*)' rei_min = ',rei_min
Note: See TracChangeset for help on using the changeset viewer.