Ignore:
Timestamp:
Jun 23, 2014, 4:53:24 PM (10 years ago)
Author:
lguez
Message:

Chose more specific variable names.

File:
1 edited

Legend:

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

    r2057 r2072  
    186186    LOGICAL,SAVE :: ok_strato_omp
    187187    LOGICAL,SAVE :: ok_hines_omp, ok_gwd_rando_omp
    188     real, SAVE:: RUWMAX_omp, sat_omp
     188    real, SAVE:: GWD_RANDO_RUWMAX_omp, gwd_rando_sat_omp
    189189    LOGICAL,SAVE      :: carbon_cycle_tr_omp
    190190    LOGICAL,SAVE      :: carbon_cycle_cpl_omp
     
    16871687    CALL getin('ok_gwd_rando', ok_gwd_rando_omp)
    16881688
    1689     RUWMAX_omp = 0.01
    1690     CALL getin('ruwmax', RUWMAX_omp)
    1691 
    1692     sat_omp = 0.25
    1693     CALL getin('sat', sat_omp)
     1689    GWD_RANDO_RUWMAX_omp = 0.01
     1690    CALL getin('gwd_rando_ruwmax', GWD_RANDO_RUWMAX_omp)
     1691
     1692    gwd_rando_sat_omp = 0.25
     1693    CALL getin('gwd_rando_sat', gwd_rando_sat_omp)
    16941694
    16951695    !Config Key  = OK_LES                                               
     
    19171917    ok_hines = ok_hines_omp
    19181918    ok_gwd_rando = ok_gwd_rando_omp
    1919     RUWMAX = RUWMAX_omp
    1920     sat = sat_omp
     1919    GWD_RANDO_RUWMAX = GWD_RANDO_RUWMAX_omp
     1920    gwd_rando_sat = gwd_rando_sat_omp
    19211921    ok_LES = ok_LES_omp
    19221922    callstats = callstats_omp
     
    21092109    write(lunout,*) 'ok_hines = ',  ok_hines
    21102110    write(lunout,*) 'ok_gwd_rando = ',  ok_gwd_rando
    2111     write(lunout,*) 'RUWMAX = ', RUWMAX
    2112     write(lunout,*) 'sat = ', sat
     2111    write(lunout,*) 'GWD_RANDO_RUWMAX = ', GWD_RANDO_RUWMAX
     2112    write(lunout,*) 'gwd_rando_sat = ', gwd_rando_sat
    21132113    write(lunout,*) 'read_climoz = ', read_climoz
    21142114    write(lunout,*) 'carbon_cycle_tr = ', carbon_cycle_tr
Note: See TracChangeset for help on using the changeset viewer.