Ignore:
Timestamp:
Jun 4, 2007, 4:34:47 PM (17 years ago)
Author:
Laurent Fairhead
Message:

Merge entre la version V3_conv et le HEAD
YM, JG, LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk/libf/phylmd/plevel.F

    r524 r766  
    77c================================================================
    88c================================================================
    9 
     9      USE dimphy
    1010      IMPLICIT none
    1111
    12 #include "dimensions.h"
    13 #include "dimphy.h"
     12cym#include "dimensions.h"
     13cy#include "dimphy.h"
    1414
    1515c================================================================
     
    4242c   -------
    4343
    44       INTEGER lt(klon), lb(klon)
    45       REAL ptop, pbot, aist(klon), aisb(klon)
     44cym      INTEGER lt(klon), lb(klon)
     45cym      REAL ptop, pbot, aist(klon), aisb(klon)
    4646
    47       save lt,lb,ptop,pbot,aist,aisb
    48 
     47cym      save lt,lb,ptop,pbot,aist,aisb
     48      INTEGER,ALLOCATABLE,SAVE,DIMENSION(:) :: lt,lb,aist,aisb
     49c$OMP THREADPRIVATE(lt,lb,aist,aisb)     
     50      REAL,SAVE :: ptop, pbot
     51c$OMP THREADPRIVATE(ptop, pbot)     
     52      LOGICAL,SAVE :: first = .true.
     53c$OMP THREADPRIVATE(first)
    4954      INTEGER i, k
    5055c
    51 
     56      if (first) then
     57        allocate(lt(klon),lb(klon),aist(klon),aisb(klon))
     58        first=.false.
     59      endif
     60     
    5261c=====================================================================
    5362      if (lnew) then
    54 c   on réinitialise les réindicages et les poids
     63c   on r�nitialise les r�ndicages et les poids
    5564c=====================================================================
    5665
     
    8796c
    8897c ...   Modif . P. Le Van    ( 20/01/98) ....
    89 c       Modif Frédéric Hourdin (3/01/02)
     98c       Modif Fr��ic Hourdin (3/01/02)
    9099
    91100        aist(i) = LOG( pgcm(i,lb(i))/ pres )
Note: See TracChangeset for help on using the changeset viewer.