- Timestamp:
- Nov 12, 2010, 4:13:39 PM (14 years ago)
- Location:
- LMDZ4/branches/LMDZ4_AR5/libf
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/fluxstokenc_p.F
r1279 r1451 57 57 58 58 c AC initialisations 59 cympbarug(:,:) = 0.59 pbarug(:,:) = 0. 60 60 cym pbarvg(:,:,:) = 0. 61 61 cym wg(:,:) = 0. -
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/initfluxsto_p.F
r1279 r1451 203 203 . llm, nivsigs, zvertiid) 204 204 c pour le fichier def 205 nivd(1) = 1 206 call histvert(filedid, 'sig_s', 'Niveaux sigma', 207 . 'sigma_level', 208 . 1, nivd, dvertiid) 209 205 if (mpi_rank==0) then 206 nivd(1) = 1 207 call histvert(filedid, 'sig_s', 'Niveaux sigma', 208 . 'sigma_level', 209 . 1, nivd, dvertiid) 210 endif 210 211 C 211 212 C Appels a histdef pour la definition des variables a sauvegarder … … 282 283 call histend(fileid) 283 284 call histend(filevid) 284 call histend(filedid)285 if (mpi_rank==0) call histend(filedid) 285 286 if (ok_sync) then 286 287 call histsync(fileid) 287 288 call histsync(filevid) 288 call histsync(filedid)289 if (mpi_rank==0) call histsync(filedid) 289 290 endif 290 291 -
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/leapfrog_p.F
r1286 r1451 588 588 . flxw,pk, iapptrac) 589 589 590 IF (offline ) THEN590 IF (offline .AND. .NOT. adjust) THEN 591 591 Cmaf stokage du flux de masse pour traceurs OFF-LINE 592 592 -
LMDZ4/branches/LMDZ4_AR5/libf/phylmd/calcul_divers.h
r1398 r1451 3 3 c 4 4 c 5 c initialisations diverses au "debut" du mois5 c initialisations diverses au "debut" du simulation 6 6 c 7 IF( MOD(itap,INT(ecrit_mth/dtime)).EQ.1) THEN7 IF(debut) THEN 8 8 DO i=1, klon 9 9 nday_rain(i)=0. … … 17 17 ENDDO 18 18 c 19 ENDIF !MOD(itap,INT(ecrit_mth)).EQ.119 ENDIF 20 20 c 21 IF(MOD(itap,INT( ecrit_day/dtime)).EQ.0) THEN21 IF(MOD(itap,INT(un_jour/dtime)).EQ.0) THEN 22 22 c 23 cIM calcul total_rain, nday_rain23 cIM calcul une fois par jour : total_rain, nday_rain 24 24 c 25 25 DO i = 1, klon … … 27 27 IF(total_rain(i).GT.0.) nday_rain(i)=nday_rain(i)+1. 28 28 ENDDO 29 ENDIF !itap.EQ.ecrit_mth29 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.