/[lmdze]/trunk/libf/dyn3d/abort_gcm.f90
ViewVC logotype

Contents of /trunk/libf/dyn3d/abort_gcm.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 30 - (show annotations)
Thu Apr 1 09:07:28 2010 UTC (14 years, 1 month ago) by guez
File size: 799 byte(s)
Imported Source files of the external library "IOIPSL_Lionel" into
"libf/IOIPSL".

Split "cray.f90" into "scopy.f90" and "ssum.f90".

Rewrote "leapfrog" in order to have a clearer algorithmic structure.

1 module abort_gcm_m
2
3 implicit none
4
5 contains
6
7 SUBROUTINE abort_gcm(modname, message, ierr)
8
9 ! From abort_gcm.F, version 1.1.1.1 2004/05/19 12:53:05
10
11 ! Stops the simulation cleanly, closing files and printing various
12 ! comments
13
14 ! Input: modname = name of calling program
15 ! message = stuff to print
16 ! ierr = severity of situation ( = 0 normal )
17
18 USE histcom, only: histclo
19
20 character(len=*), intent(in):: modname
21 integer, intent(in):: ierr
22 character(len=*), intent(in):: message
23
24 !-------------------
25
26 print *, 'abort_gcm'
27
28 call histclo
29 print *, 'Stopping in ', modname
30 print *, 'Reason: ', trim(message)
31 print *, 'Houston, we have a problem ', ierr
32 STOP 1
33
34 END SUBROUTINE abort_gcm
35
36 end module abort_gcm_m

  ViewVC Help
Powered by ViewVC 1.1.21