/[lmdze]/trunk/dyn3d/abort_gcm.f
ViewVC logotype

Diff of /trunk/dyn3d/abort_gcm.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/libf/dyn3d/abort_gcm.f90 revision 12 by guez, Mon Jul 21 16:05:07 2008 UTC trunk/Sources/dyn3d/abort_gcm.f revision 171 by guez, Tue Sep 29 19:48:59 2015 UTC
# Line 4  module abort_gcm_m Line 4  module abort_gcm_m
4    
5  contains  contains
6    
7    SUBROUTINE abort_gcm(modname, message, ierr)    SUBROUTINE abort_gcm(modname, message)
8    
9      ! From abort_gcm.F, version 1.1.1.1 2004/05/19 12:53:05      ! From abort_gcm.F, version 1.1.1.1 2004/05/19 12:53:05
10        ! Stops the simulation, closing files and printing comments.
11    
12      ! Stops the simulation cleanly, closing files and printing various      USE histclo_m, only: histclo
     ! comments  
13    
14      !  Input: modname = name of calling program      character(len=*), intent(in):: modname ! name of calling program
15      !         message = stuff to print      character(len=*), intent(in):: message ! to print
     !         ierr    = severity of situation ( = 0 normal )  
   
     USE IOIPSL, only: histclo  
   
     character(len=*), intent(in):: modname  
     integer, intent(in):: ierr  
     character(len=*), intent(in):: message  
16    
17      !-------------------      !-------------------
18    
19      print *, 'abort_gcm'      print *, 'abort_gcm'
   
20      call histclo      call histclo
21      print *, 'Stopping in ', modname      print *, 'Stopping in ', modname
22      print *, 'Reason = ', trim(message)      print *, 'Reason: ', trim(message)
23      print *, 'Houston, we have a problem ', ierr      print *, 'Houston, we have a problem.'
24      STOP 1      STOP 1
25    
26    END SUBROUTINE abort_gcm    END SUBROUTINE abort_gcm

Legend:
Removed from v.12  
changed lines
  Added in v.171

  ViewVC Help
Powered by ViewVC 1.1.21