Ignore:
Timestamp:
Oct 27, 2014, 6:47:03 PM (10 years ago)
Author:
lguez
Message:

Add the module from ecmwf model for water production by methane oxydation
and photolysis. Activated if def file option: ok_qch4=y.
LG, D.Cugnet

File:
1 edited

Legend:

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

    r2126 r2136  
    189189    LOGICAL,SAVE :: ok_hines_omp, ok_gwd_rando_omp
    190190    real, SAVE:: GWD_RANDO_RUWMAX_omp, gwd_rando_sat_omp
     191    LOGICAL,SAVE :: ok_qch4_omp
    191192    LOGICAL,SAVE      :: carbon_cycle_tr_omp
    192193    LOGICAL,SAVE      :: carbon_cycle_cpl_omp
     
    17251726    gwd_rando_sat_omp = 0.25
    17261727    CALL getin('gwd_rando_sat', gwd_rando_sat_omp)
     1728
     1729    !Config  key = ok_qch4
     1730    !Config  Desc = activation de la parametrisation du methane
     1731    !Config  Def  = .FALSE.
     1732    !Config  Help = Clef controlant l'activation de la parametrisation
     1733    !               de l'humidite due a oxydation+photolyse du methane strato
     1734
     1735    ok_qch4_omp=.FALSE.
     1736    CALL getin('ok_qch4',ok_qch4_omp)
    17271737
    17281738    !Config Key  = OK_LES                                               
     
    19551965    GWD_RANDO_RUWMAX = GWD_RANDO_RUWMAX_omp
    19561966    gwd_rando_sat = gwd_rando_sat_omp
     1967    ok_qch4 = ok_qch4_omp
    19571968    ok_LES = ok_LES_omp
    19581969    callstats = callstats_omp
     
    21472158    write(lunout,*) 'ok_hines = ',  ok_hines
    21482159    write(lunout,*) 'ok_gwd_rando = ',  ok_gwd_rando
     2160    write(lunout,*) 'ok_qch4 = ',  ok_qch4
    21492161    write(lunout,*) 'GWD_RANDO_RUWMAX = ', GWD_RANDO_RUWMAX
    21502162    write(lunout,*) 'gwd_rando_sat = ', gwd_rando_sat
Note: See TracChangeset for help on using the changeset viewer.