Ignore:
Timestamp:
Aug 17, 2006, 5:41:51 PM (18 years ago)
Author:
Laurent Fairhead
Message:

Inclusion des modifs de Y. Meurdesoif pour la version V3
LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/V3_test/libf/phylmd/conemav.F

    r703 r704  
    99 
    1010c
     11      USE dimphy
    1112      IMPLICIT none
    1213c======================================================================
     
    4344c
    4445#include "dimensions.h"
    45 #include "dimphy.h"
     46cym#include "dimphy.h"
    4647c
    4748      integer NTRAC
     
    7374       INTEGER i,k,itra
    7475       REAL qs(klon,klev)
    75        REAL cbmf(klon)
    76        SAVE cbmf
     76cym       REAL cbmf(klon)
     77cym       SAVE cbmf
     78       REAL,ALLOCATABLE,SAVE :: cbmf(:)
     79c$OMP THREADPRIVATE(cbmf)
    7780       INTEGER ifrst
    7881       SAVE ifrst
    7982       DATA ifrst /0/
     83c$OMP THREADPRIVATE(ifrst)
    8084#include "YOMCST.h"
    8185#include "YOETHF.h"
     
    8589      IF (ifrst .EQ. 0) THEN
    8690         ifrst = 1
     91         allocate(cbmf(klon))
    8792         DO i = 1, klon
    8893          cbmf(i) = 0.
Note: See TracChangeset for help on using the changeset viewer.