Changeset 704 for LMDZ4/branches/V3_test/libf/phylmd/iniphysiq.F
- Timestamp:
- Aug 17, 2006, 5:41:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/V3_test/libf/phylmd/iniphysiq.F
r703 r704 9 9 $ plat,plon,parea,pcu,pcv, 10 10 $ prad,pg,pr,pcpp) 11 USE dimphy,klon2=>klon,klon=>klon2 12 USE comgeomphy 11 13 IMPLICIT NONE 12 14 c … … 43 45 c ------------- 44 46 45 #include "dimensions.h"46 #include "dimphy.h"47 #include "comgeomphy.h"48 47 cym#include "dimensions.h" 48 cym#include "dimphy.h" 49 cym#include "comgeomphy.h" 50 #include "YOMCST.h" 49 51 REAL prad,pg,pr,pcpp,punjours 50 52 … … 52 54 REAL plat(ngrid),plon(ngrid),parea(klon),pcu(klon),pcv(klon) 53 55 INTEGER pdayref 56 INTEGER :: ibegin,iend 54 57 55 58 REAL ptimestep … … 70 73 STOP 71 74 ENDIF 75 c$OMP PARALLEL PRIVATE(ibegin,iend) 76 c$OMP+ SHARED(parea,pcu,pcv,plon,plat) 77 ibegin=klon_begin+klon_omp_begin(omp_rank)-1 78 iend=ibegin+klon_omp-1 72 79 73 airephy =parea74 cuphy =pcu75 cvphy =pcv76 rlond = plon77 rlatd = plat80 airephy(1:klon_omp)=parea(ibegin:iend) 81 cuphy(1:klon_omp)=pcu(ibegin:iend) 82 cvphy(1:klon_omp)=pcv(ibegin:iend) 83 rlond(1:klon_omp) = plon(ibegin:iend) 84 rlatd(1:klon_omp) = plat(ibegin:iend) 78 85 79 86 call suphec 87 88 c$OMP END PARALLEL 89 80 90 print*,'ATTENTION !!! TRAVAILLER SUR INIPHYSIQ' 81 91 print*,'CONTROLE DES LATITUDES, LONGITUDES, PARAMETRES ...'
Note: See TracChangeset
for help on using the changeset viewer.