Changeset 10425 for NEMO/trunk/src/OFF/nemogcm.F90
- Timestamp:
- 2018-12-19T22:54:16+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/src/OFF/nemogcm.F90
r10222 r10425 95 95 ! check that all process are still there... If some process have an error, 96 96 ! they will never enter in step and other processes will wait until the end of the cpu time! 97 IF( lk_mpp ) CALL mpp_max(nstop )97 CALL mpp_max( 'nemogcm', nstop ) 98 98 99 99 ! !-----------------------! … … 441 441 ierr = ierr + trc_oce_alloc() ! shared TRC / TRA arrays 442 442 ! 443 IF( lk_mpp ) CALL mpp_sum(ierr )443 CALL mpp_sum( 'nemogcm', ierr ) 444 444 IF( ierr /= 0 ) CALL ctl_stop( 'STOP', 'nemo_alloc: unable to allocate standard ocean arrays' ) 445 445 ! … … 481 481 !!---------------------------------------------------------------------- 482 482 ! 483 IF( kt == nit000 .AND. lw p) THEN483 IF( kt == nit000 .AND. lwm ) THEN 484 484 WRITE(numout,*) 485 485 WRITE(numout,*) 'stp_ctl : time-stepping control' … … 489 489 ENDIF 490 490 ! 491 IF(lw p) WRITE ( numstp, '(1x, i8)' ) kt !* save the current time step in numstp492 IF(lw p) REWIND( numstp ) ! --------------------------491 IF(lwm) WRITE ( numstp, '(1x, i8)' ) kt !* save the current time step in numstp 492 IF(lwm) REWIND( numstp ) ! -------------------------- 493 493 ! 494 494 END SUBROUTINE stp_ctl
Note: See TracChangeset
for help on using the changeset viewer.