- Timestamp:
- Dec 6, 2011, 2:11:24 PM (13 years ago)
- Location:
- LMDZ4/branches/LMDZ4_AR5/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/ce0l.F90
r1476 r1599 19 19 USE dimphy 20 20 USE comgeomphy 21 USE mod_phys_lmdz_para 21 USE mod_phys_lmdz_para, mpi_root_xx=>mpi_root 22 22 USE mod_const_mpi 23 23 USE infotrac … … 43 43 #include "temps.h" 44 44 #include "logic.h" 45 #ifdef CPP_MPI 46 include 'mpif.h' 47 #endif 48 45 49 INTEGER, PARAMETER :: longcles=20 50 INTEGER :: ierr 46 51 REAL, DIMENSION(longcles) :: clesphy0 47 52 REAL, DIMENSION(iip1,jjp1) :: masque 48 53 CHARACTER(LEN=15) :: calnd 54 49 55 !------------------------------------------------------------------------------- 50 56 CALL conf_gcm( 99, .TRUE. , clesphy0 ) 51 57 58 #ifdef CPP_MPI 52 59 CALL init_mpi 60 #endif 53 61 54 62 CALL Init_Phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) … … 103 111 END IF 104 112 113 #ifdef CPP_MPI 105 114 !$OMP MASTER 106 CALL finalize_parallel 115 CALL MPI_FINALIZE(ierr) 116 IF (ierr /= 0) CALL abort_gcm('ce0l','Error in MPI_FINALIZE',1) 107 117 !$OMP END MASTER 118 #endif 119 108 120 109 121 #endif -
LMDZ4/branches/LMDZ4_AR5/libf/phylmd/phys_output_mod.F90
r1543 r1599 1821 1821 if ( type == 'day'.or.type == 'days'.or.type == 'jours'.or.type == 'jour' ) timestep = ttt * dayseconde 1822 1822 if ( type == 'mounths'.or.type == 'mth'.or.type == 'mois' ) then 1823 print*,'annee_ref,day_ref mon_len',annee_ref,day_ref,ioget_mon_len(annee_ref,day_ref) 1824 !IMbug timestep = ttt * dayseconde * ioget_mon_len(annee_ref,day_ref) 1823 print*,'annee_ref,day_ref mon_len',annee_ref,day_ref,mth_len 1825 1824 timestep = ttt * dayseconde * mth_len 1826 1825 endif
Note: See TracChangeset
for help on using the changeset viewer.