Changeset 2295


Ignore:
Timestamp:
Jun 12, 2015, 6:44:36 AM (9 years ago)
Author:
fhourdin
Message:

Correction du seuil sur la probabilite de non declenchement.
Changement de priorite de sortie sur deux variables.

Location:
LMDZ5/trunk/libf/phylmd
Files:
2 edited

Legend:

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

    r2271 r2295  
    10851085  TYPE(ctrl_out), SAVE :: o_wake_omg = ctrl_out((/ 4, 5, 10, 10, 10, 10, 11, 11, 11 /), &
    10861086    'wake_omg', 'wake_omg', ' ', (/ ('', i=1, 9) /))
    1087   TYPE(ctrl_out), SAVE :: o_wdtrainA = ctrl_out((/ 4, 1, 10,  4,  1, 10, 11, 11, 110 /), &
     1087  TYPE(ctrl_out), SAVE :: o_wdtrainA = ctrl_out((/ 4, 5, 10,  4,  1, 10, 11, 11, 110 /), &
    10881088    'wdtrainA', 'precipitation from AA', '-', (/ ('', i=1, 9) /))
    1089   TYPE(ctrl_out), SAVE :: o_wdtrainM = ctrl_out((/ 4, 1, 10,  4,  1, 10, 11, 11, 110 /), &
     1089  TYPE(ctrl_out), SAVE :: o_wdtrainM = ctrl_out((/ 4, 5, 10,  4,  1, 10, 11, 11, 110 /), &
    10901090    'wdtrainM', 'precipitation from mixture', '-', (/ ('', i=1, 9) /))
    10911091  TYPE(ctrl_out), SAVE :: o_Vprecip = ctrl_out((/ 10, 10, 10, 10, 10, 10, 11, 11, 11 /), &
  • LMDZ5/trunk/libf/phylmd/physiq.F90

    r2294 r2295  
    442442  integer :: tau_trig(klon)
    443443
    444   REAL,SAVE :: random_notrig_max=1.01
     444  REAL,SAVE :: random_notrig_max=1.
    445445  !$OMP THREADPRIVATE(random_notrig_max)
    446446
     
    27402740              proba_notrig(i)=1.
    27412741              random_notrig(i)=1e6*ale_bl_stat(i)-int(1e6*ale_bl_stat(i))
    2742               if ( random_notrig(i) > random_notrig_max ) random_notrig(i)=1.1
     2742              if ( random_notrig(i) > random_notrig_max ) random_notrig(i)=0.
    27432743              if ( ale_bl_trig(i) .lt. abs(cin(i))+1.e-10 ) then
    27442744                 tau_trig(i)=tau_trig_shallow
Note: See TracChangeset for help on using the changeset viewer.