! $Id: $ SUBROUTINE abort_physic(modname, message, ierr) USE IOIPSL USE mod_phys_lmdz_para USE print_control_mod, ONLY: lunout IMPLICIT NONE ! Stops the simulation cleanly, closing files and printing various ! comments ! Input: modname = name of calling program ! message = stuff to print ! ierr = severity of situation ( = 0 normal ) character(len=*), intent(in):: modname integer ierr, ierror_mpi character(len=*), intent(in):: message write(lunout,*) 'in abort_physic' !$OMP MASTER CALL histclo CALL restclo if (mpi_rank .eq. 0) then CALL getin_dump endif !$OMP END MASTER write(lunout,*) 'Stopping in ', modname write(lunout,*) 'Reason = ',message if (ierr == 0) then write(lunout,*) 'Everything is cool' if (using_mpi) then !$OMP CRITICAL (MPI_ABORT_PHYSIC) CALL MPI_ABORT(COMM_LMDZ_PHY, 0, ierror_mpi) !$OMP END CRITICAL (MPI_ABORT_PHYSIC) else stop 0 endif else write(lunout,*) 'Houston, we have a problem, ierr = ', ierr if (using_mpi) then !$OMP CRITICAL (MPI_ABORT_PHYSIC) CALL MPI_ABORT(COMM_LMDZ_PHY, 1, ierror_mpi) !$OMP END CRITICAL (MPI_ABORT_PHYSIC) else stop 1 endif endif END