Changeset 766 for LMDZ4/trunk/libf/phylmd/plevel.F
- Timestamp:
- Jun 4, 2007, 4:34:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/phylmd/plevel.F
r524 r766 7 7 c================================================================ 8 8 c================================================================ 9 9 USE dimphy 10 10 IMPLICIT none 11 11 12 #include "dimensions.h"13 #include "dimphy.h"12 cym#include "dimensions.h" 13 cy#include "dimphy.h" 14 14 15 15 c================================================================ … … 42 42 c ------- 43 43 44 INTEGER lt(klon), lb(klon)45 REAL ptop, pbot, aist(klon), aisb(klon)44 cym INTEGER lt(klon), lb(klon) 45 cym REAL ptop, pbot, aist(klon), aisb(klon) 46 46 47 save lt,lb,ptop,pbot,aist,aisb 48 47 cym save lt,lb,ptop,pbot,aist,aisb 48 INTEGER,ALLOCATABLE,SAVE,DIMENSION(:) :: lt,lb,aist,aisb 49 c$OMP THREADPRIVATE(lt,lb,aist,aisb) 50 REAL,SAVE :: ptop, pbot 51 c$OMP THREADPRIVATE(ptop, pbot) 52 LOGICAL,SAVE :: first = .true. 53 c$OMP THREADPRIVATE(first) 49 54 INTEGER i, k 50 55 c 51 56 if (first) then 57 allocate(lt(klon),lb(klon),aist(klon),aisb(klon)) 58 first=.false. 59 endif 60 52 61 c===================================================================== 53 62 if (lnew) then 54 c on r éinitialise les réindicages et les poids63 c on r�nitialise les r�ndicages et les poids 55 64 c===================================================================== 56 65 … … 87 96 c 88 97 c ... Modif . P. Le Van ( 20/01/98) .... 89 c Modif Fr édéric Hourdin (3/01/02)98 c Modif Fr��ic Hourdin (3/01/02) 90 99 91 100 aist(i) = LOG( pgcm(i,lb(i))/ pres )
Note: See TracChangeset
for help on using the changeset viewer.