Ignore:
Timestamp:
Sep 11, 2013, 11:45:01 AM (11 years ago)
Author:
Laurent Fairhead
Message:

Création d'une nouvelle testing:

merge des modifications du trunk entre r1796 et r1860


New testing version

merged modifications between r1796 and r1860 from the trunk

i.e.
svn merge -r1796:1860 http://svn.lmd.jussieu.fr/LMDZ/LMDZ5/trunk

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/conf_phys_m.F90

    r1795 r1864  
    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
     
    155156  Integer, save :: lev_histins_omp, lev_histLES_omp
    156157  INTEGER, SAVE :: lev_histdayNMC_omp
     158  INTEGER, SAVE :: levout_histNMC_omp(3)
    157159  LOGICAL, SAVE :: ok_histNMC_omp(3)
    158160  REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3)
     
    966968  call getin('t_glace_max',t_glace_max_omp)
    967969
     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)
     978
    968979!Config Key  = rei_min
    969980!Config Desc = 
     
    12671278  lev_histLES_omp = 1
    12681279  call getin('lev_histLES',lev_histLES_omp)
    1269 !
     1280! 
    12701281!Config Key  = lev_histdayNMC
    12711282!Config Desc =
     
    12751286  lev_histdayNMC_omp = 8
    12761287  call getin('lev_histdayNMC',lev_histdayNMC_omp)
     1288!
     1289!Config Key  = levout_histNMC
     1290!Config Desc =
     1291!Config Def  = 5
     1292!Config Help =
     1293!
     1294  levout_histNMC_omp(1) = 5
     1295  levout_histNMC_omp(2) = 5
     1296  levout_histNMC_omp(3) = 5
     1297  call getin('levout_histNMC',levout_histNMC_omp)
    12771298!
    12781299!histNMC BEG
     
    12961317!Config Help =
    12971318!
    1298 ! freq_outNMC_omp(1) = 2592000.
    12991319  freq_outNMC_omp(1) = mth_len*86400.
    13001320  freq_outNMC_omp(2) = 86400.
     
    16841704    t_glace_min = t_glace_min_omp
    16851705    t_glace_max = t_glace_max_omp
     1706    iflag_ice_thermo = iflag_ice_thermo_omp
    16861707    rei_min = rei_min_omp
    16871708    rei_max = rei_max_omp
     
    17021723    lev_histLES = lev_histLES_omp
    17031724    lev_histdayNMC = lev_histdayNMC_omp
     1725    levout_histNMC = levout_histNMC_omp
    17041726    ok_histNMC(:) = ok_histNMC_omp(:)
    17051727    freq_outNMC(:) = freq_outNMC_omp(:)
     
    19001922  write(lunout,*)' t_glace_min = ',t_glace_min
    19011923  write(lunout,*)' t_glace_max = ',t_glace_max
     1924  write(lunout,*)' iflag_ice_thermo = ',iflag_ice_thermo
    19021925  write(lunout,*)' rei_min = ',rei_min
    19031926  write(lunout,*)' rei_max = ',rei_max
     
    19251948  write(lunout,*)' lev_histLES = ',lev_histLES
    19261949  write(lunout,*)' lev_histdayNMC = ',lev_histdayNMC
     1950  write(lunout,*)' levout_histNMC = ',levout_histNMC
    19271951  write(lunout,*)' ok_histNMC = ',ok_histNMC
    19281952  write(lunout,*)' freq_outNMC = ',freq_outNMC
Note: See TracChangeset for help on using the changeset viewer.