Changeset 3435 for LMDZ6/trunk/libf/dyn3dmem
- Timestamp:
- Jan 22, 2019, 4:21:59 PM (6 years ago)
- Location:
- LMDZ6/trunk/libf/dyn3dmem
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3dmem/caladvtrac_mod.F90
r1907 r3435 44 44 CALL allocate_u(massem,llm,d) 45 45 CALL allocate_u(pbaruc,llm,d) 46 pbaruc(:,:)=0 46 47 CALL allocate_v(pbarvc,llm,d) 48 pbarvc(:,:)=0 47 49 CALL allocate_u(pbarug,llm,d) 48 50 CALL allocate_v(pbarvg,llm,d) -
LMDZ6/trunk/libf/dyn3dmem/call_calfis_mod.F90
r2603 r3435 52 52 CALL allocate_u(p,llmp1,d) 53 53 CALL allocate_u(pks,d) 54 pks(:)=0 54 55 CALL allocate_u(pk,llm,d) 56 pk(:,:)=0 55 57 CALL allocate_u(pkf,llm,d) 56 58 CALL allocate_u(phi,llm,d) -
LMDZ6/trunk/libf/dyn3dmem/call_dissip_mod.F90
r1987 r3435 31 31 32 32 CALL allocate_u(ucov,llm,d) 33 ucov(:,:)=0 33 34 CALL allocate_v(vcov,llm,d) 35 vcov(:,:)=0 34 36 CALL allocate_u(teta,llm,d) 35 37 CALL allocate_u(p,llmp1,d) -
LMDZ6/trunk/libf/dyn3dmem/gcm.F90
r2622 r3435 233 233 'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT' 234 234 if (.not.read_start) then 235 annee_ref=anneeref 235 236 CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0) 236 237 endif … … 368 369 369 370 !----------------------------------------------------------------------- 371 ! Initialisation des I/O : 372 ! ------------------------ 373 374 375 if (nday>=0) then 376 day_end = day_ini + nday 377 else 378 day_end = day_ini - nday/day_step 379 endif 380 381 WRITE(lunout,300)day_ini,day_end 382 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) 383 384 #ifdef CPP_IOIPSL 385 call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure) 386 write (lunout,301)jour, mois, an 387 call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure) 388 write (lunout,302)jour, mois, an 389 301 FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4) 390 302 FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4) 391 #endif 392 393 !----------------------------------------------------------------------- 370 394 ! Initialisation de la physique : 371 395 ! ------------------------------- … … 381 405 ENDIF ! of IF ((iflag_phys==1).or.(iflag_phys>=100)) 382 406 383 384 !-----------------------------------------------------------------------385 ! Initialisation des I/O :386 ! ------------------------387 388 389 if (nday>=0) then390 day_end = day_ini + nday391 else392 day_end = day_ini - nday/day_step393 endif394 395 WRITE(lunout,300)day_ini,day_end396 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//)397 398 #ifdef CPP_IOIPSL399 call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure)400 write (lunout,301)jour, mois, an401 call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure)402 write (lunout,302)jour, mois, an403 301 FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4)404 302 FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4)405 #endif406 407 407 408 ! if (planet_type.eq."earth") then -
LMDZ6/trunk/libf/dyn3dmem/iniacademic_loc.F90
r2622 r3435 101 101 time_0=0. 102 102 day_ref=1 103 annee_ref=0103 ! annee_ref=0 104 104 105 105 im = iim -
LMDZ6/trunk/libf/dyn3dmem/integrd_mod.F90
r1907 r3435 23 23 CALL allocate_u(deltap,llm,d) 24 24 CALL allocate_u(ps,d) 25 ps(:)=0 25 26 26 27 -
LMDZ6/trunk/libf/dyn3dmem/vlsplt_loc.F
r2765 r3435 19 19 include "dimensions.h" 20 20 include "paramet.h" 21 include "iniprint.h" 21 22 c 22 23 c … … 872 873 include "dimensions.h" 873 874 include "paramet.h" 875 include "iniprint.h" 874 876 c 875 877 c … … 1027 1029 ELSE ! countcfl>=1 1028 1030 1029 PRINT*,'vlz passage dans le non local' 1031 IF (prt_level>9) THEN 1032 WRITE(lunout,*)'vlz passage dans le non local' 1033 ENDIF 1030 1034 c --------------------------------------------------------------- 1031 1035 c Debut du traitement du cas ou on viole le CFL : w > masse … … 1059 1063 c le critère 1060 1064 DO WHILE (countcfl>=1) 1061 print*,'On viole le CFL Vertical sur ',countcfl,' pts' 1065 IF (prt_level>9) THEN 1066 WRITE(lunout,*)'On viole le CFL Vertical sur ',countcfl,' pts' 1067 ENDIF 1062 1068 countcfl=0 1063 1069
Note: See TracChangeset
for help on using the changeset viewer.