/[MITgcm]/MITgcm/model/src/state_summary.F
ViewVC logotype

Annotation of /MITgcm/model/src/state_summary.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.8 - (hide annotations) (download)
Sun Jun 14 21:45:12 2009 UTC (15 years ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62v, checkpoint62u, checkpoint62t, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint62c, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62w, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint63g, checkpoint64, checkpoint65, checkpoint62, checkpoint63, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint65o, checkpoint62b, checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint61q, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61z, checkpoint61x, checkpoint61y, HEAD
Changes since 1.7: +5 -11 lines
remove unnecessary BARRIER

1 jmc 1.8 C $Header: /u/gcmpack/MITgcm/model/src/state_summary.F,v 1.7 2001/09/26 18:09:16 cnh Exp $
2 cnh 1.7 C $Name: $
3 cnh 1.1
4 cnh 1.4 #include "CPP_OPTIONS.h"
5 cnh 1.1
6 cnh 1.7 CBOP
7     C !ROUTINE: STATE_SUMMARY
8     C !INTERFACE:
9 cnh 1.1 SUBROUTINE STATE_SUMMARY( myThid )
10 cnh 1.7
11     C !DESCRIPTION: \bv
12     C *==========================================================*
13     C | SUBROUTINE STATE_SUMMARY
14     C | o Summarize model prognostic variables.
15     C *==========================================================*
16     C | This routine can be called at any time during an
17     C | integration to provide a summary of the model state.
18     C | Note
19     C | 1. Under multi-process parallelism the state summary
20     C | is only given for the per-process data.
21     C | 2. Under multi-threading the summary is produced by
22     C | the master thread. This threads reads data managed by
23     C | other threads.
24     C *==========================================================*
25     C \ev
26    
27     C !USES:
28 adcroft 1.5 IMPLICIT NONE
29 cnh 1.1 C === Global variables ===
30     #include "SIZE.h"
31     #include "EEPARAMS.h"
32     #include "PARAMS.h"
33     #include "GRID.h"
34     #include "DYNVARS.h"
35    
36 cnh 1.7 C !INPUT/OUTPUT PARAMETERS:
37 cnh 1.1 C == Routine arguments ==
38     C myThid - Number of this instance of STATE_SUMMARY
39     INTEGER myThid
40    
41 cnh 1.7 C !LOCAL VARIABLES:
42 cnh 1.1 C == Local variables ==
43     CHARACTER*(MAX_LEN_MBUF) msgBuf
44 cnh 1.7 CEOP
45 cnh 1.1
46     _BEGIN_MASTER(myThid)
47     WRITE(msgBuf,'(A)')
48     &'// ======================================================='
49 cnh 1.3 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
50 jmc 1.8 & SQUEEZE_RIGHT , myThid )
51 cnh 1.1 WRITE(msgBuf,'(A)') '// Model current state'
52 cnh 1.3 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
53 jmc 1.8 & SQUEEZE_RIGHT , myThid )
54 cnh 1.1 WRITE(msgBuf,'(A)')
55     &'// ======================================================='
56     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
57 jmc 1.8 & SQUEEZE_RIGHT , myThid )
58 cnh 1.1 WRITE(msgBuf,'(A)') ' '
59     CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
60 jmc 1.8 & SQUEEZE_RIGHT , myThid )
61 cnh 1.1 _END_MASTER(myThid)
62    
63     RETURN
64     END

  ViewVC Help
Powered by ViewVC 1.1.22