Ignore:
Timestamp:
Jan 27, 2014, 11:29:29 AM (12 years ago)
Author:
idelkadi
Message:
  • Option pour tourner sans thermiques ni ajustement sec si ifalg_thermals<0 (phylmd/physiq.F90)
  • Modifications permettant d'imposer des profils initiaux de traceurs

lus dans un tracer.inp.001 (phylmd/1DUTILS.h, 1D_read_forc_cases.h et lmdz1d.F)

File:
1 edited

Legend:

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

    r1938 r1948  
    22962296       'AVANT LA CONVECTION SECHE , iflag_thermals=' &
    22972297       ,iflag_thermals,'   nsplit_thermals=',nsplit_thermals
    2298   if(iflag_thermals.lt.0) then
     2298  if(iflag_thermals<=0) then
    22992299     !  Rien
    23002300     !  ====
    2301      IF(prt_level>9)WRITE(lunout,*)'pas de convection'
     2301     IF(prt_level>9)WRITE(lunout,*)'pas de modele de panache thermique'
     2302     IF(prt_level>9.and.iflag_thermals<0)WRITE(lunout,*)'pas d ajustement convectif'
    23022303
    23032304
     
    24462447     ! Dans le cas contraire, on demarre au niveau 1.
    24472448
    2448      if (iflag_thermals.ge.13.or.iflag_thermals.eq.0) then
     2449     if (iflag_thermals>=13.or.iflag_thermals<=0) then
    24492450
    24502451        if(iflag_thermals.eq.0) then
     
    24612462        ! non nulles numeriquement pour des mailles non concernees.
    24622463
    2463         if (iflag_thermals.eq.0) then
     2464        if (iflag_thermals==0) then
    24642465           CALL ajsec_convV2(paprs, pplay, t_seri,q_seri &
    24652466                , d_t_ajsb, d_q_ajsb)
    2466         else
     2467        else if (iflag_thermals>0) then
    24672468           CALL ajsec(paprs, pplay, t_seri,q_seri,limbas &
    24682469                , d_t_ajsb, d_q_ajsb)
Note: See TracChangeset for help on using the changeset viewer.