Ignore:
Timestamp:
Jul 18, 2013, 10:20:28 AM (11 years ago)
Author:
Ehouarn Millour
Message:

Version testing basee sur la r1794


Testing release based on r1794

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

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

    r1750 r1795  
    1818                       iflag_ratqs,ratqsbas,ratqshaut,tau_ratqs, &
    1919                       ok_ade, ok_aie, ok_cdnc, aerosol_couple, &
    20                        flag_aerosol, new_aod, &
     20                       flag_aerosol, flag_aerosol_strat, new_aod, &
    2121                       bl95_b0, bl95_b1,&
    2222                       read_climoz, &
     
    6060! ok_ade, ok_aie: apply or not aerosol direct and indirect effects
    6161! ok_cdnc, ok cloud droplet number concentration
     62! flag_aerosol_strat : flag pour les aerosols stratos
    6263! bl95_b*: parameters in the formula to link CDNC to aerosol mass conc
    6364!
     
    7273  LOGICAL              :: ok_ade, ok_aie, ok_cdnc, aerosol_couple
    7374  INTEGER              :: flag_aerosol
     75  LOGICAL              :: flag_aerosol_strat
    7476  LOGICAL              :: new_aod
    7577  REAL                 :: bl95_b0, bl95_b1
     
    8789  LOGICAL,SAVE        :: ok_ade_omp, ok_aie_omp, ok_cdnc_omp, aerosol_couple_omp
    8890  INTEGER, SAVE       :: flag_aerosol_omp
     91  LOGICAL, SAVE       :: flag_aerosol_strat_omp
    8992  LOGICAL, SAVE       :: new_aod_omp
    9093  REAL,SAVE           :: bl95_b0_omp, bl95_b1_omp
     
    169172  LOGICAL,SAVE :: ok_orodr_omp, ok_orolf_omp, ok_limitvrai_omp
    170173  INTEGER, SAVE :: nbapp_rad_omp, iflag_con_omp
     174  INTEGER, SAVE :: iflag_ener_conserv_omp
    171175  LOGICAL,SAVE :: ok_strato_omp
    172176  LOGICAL,SAVE :: ok_hines_omp
     
    306310  flag_aerosol_omp = 0
    307311  CALL getin('flag_aerosol',flag_aerosol_omp)
     312!
     313!Config Key  = flag_aerosol_strat
     314!Config Desc = use stratospheric aerosols T/F
     315!Config Def  = false
     316!Config Help = Used in physiq.F
     317!
     318!
     319  flag_aerosol_strat_omp = .false.
     320  CALL getin('flag_aerosol_strat',flag_aerosol_strat_omp)
    308321
    309322! Temporary variable for testing purpose!!
     
    653666       CALL getin('iflag_con',iflag_con_omp)
    654667
     668!Config  Key  = iflag_ener_conserv
     669!Config  Desc = Flag de convection
     670!Config  Def  = 1
     671!Config  Help = Flag  pour la convection les options suivantes existent :
     672!Config         -1 pour Kinetic energy correction
     673!Config         1  conservation kinetic and enthalpy
     674       iflag_ener_conserv_omp = -1
     675       CALL getin('iflag_ener_conserv',iflag_ener_conserv_omp)
     676
     677!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    655678!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    656679!!
     
    16371660    nbapp_rad = nbapp_rad_omp
    16381661    iflag_con = iflag_con_omp
     1662    iflag_ener_conserv = iflag_ener_conserv_omp
    16391663
    16401664    epmax = epmax_omp
     
    17051729    aerosol_couple = aerosol_couple_omp
    17061730    flag_aerosol=flag_aerosol_omp
     1731    flag_aerosol_strat=flag_aerosol_strat_omp
    17071732    new_aod=new_aod_omp
    17081733    aer_type = aer_type_omp
     
    18451870  write(lunout,*)'nbapp_rad=',nbapp_rad
    18461871  write(lunout,*)'iflag_con=',iflag_con
     1872  write(lunout,*)'iflag_ener_conserv=',iflag_ener_conserv
    18471873  write(lunout,*)' epmax = ', epmax
    18481874  write(lunout,*)' ok_adj_ema = ', ok_adj_ema
     
    18881914  write(lunout,*)' aerosol_couple = ', aerosol_couple
    18891915  write(lunout,*)' flag_aerosol = ', flag_aerosol
     1916  write(lunout,*)' flag_aerosol_strat = ', flag_aerosol_strat
    18901917  write(lunout,*)' new_aod = ', new_aod
    18911918  write(lunout,*)' aer_type = ',aer_type
Note: See TracChangeset for help on using the changeset viewer.