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

Contents of /MITgcm/model/src/config_summary.F

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


Revision 1.3 - (show annotations) (download)
Fri Apr 24 02:06:06 1998 UTC (26 years, 1 month ago) by cnh
Branch: MAIN
Changes since 1.2: +2 -2 lines
*** empty log message ***

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/config_summary.F,v 1.2 1998/04/24 02:05:40 cnh Exp $
2
3 #include "CPP_EEOPTIONS.h"
4
5 CStartOfInterface
6 SUBROUTINE CONFIG_SUMMARY( myThid )
7 C /==========================================================\
8 C | SUBROUTINE CONFIG_SUMMARY |
9 C | o Summarize model prognostic variables. |
10 C |==========================================================|
11 C | This routine writes a tabulated summary of the model |
12 C | configuration. |
13 C | Note |
14 C | 1. Under multi-process parallelism the summary |
15 C | is only given for the per-process data. |
16 C | 2. Under multi-threading the summary is produced by |
17 C | the master thread. This threads reads data managed by|
18 C | other threads. |
19 C \==========================================================/
20
21 C === Global variables ===
22 #include "SIZE.h"
23 #include "EEPARAMS.h"
24 #include "PARAMS.h"
25 #include "GRID.h"
26 #include "DYNVARS.h"
27
28 C == Routine arguments ==
29 C myThid - Number of this instance of CONFIG_SUMMARY
30 INTEGER myThid
31 CEndOfInterface
32
33 C == Local variables ==
34 CHARACTER*(MAX_LEN_MBUF) msgBuf
35
36 _BARRIER
37
38 _BEGIN_MASTER(myThid)
39 WRITE(msgBuf,100) '// '
40 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit, SQUEEZE_RIGHT , 1)
41 WRITE(msgBuf,'(A)')
42 &'// ======================================================='
43 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit, SQUEEZE_RIGHT , 1)
44 WRITE(msgBuf,'(A)') '// Model configuration'
45 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit, SQUEEZE_RIGHT , 1)
46 WRITE(msgBuf,'(A)')
47 &'// ======================================================='
48 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
49 & SQUEEZE_RIGHT , 1)
50 WRITE(msgBuf,'(A)') ' '
51 CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
52 & SQUEEZE_RIGHT , 1)
53 _END_MASTER(myThid)
54
55 _BARRIER
56
57
58 RETURN
59 100 FORMAT(A,
60 &'$Name: config_summary.F,v 1.2 1998/04/24 02:05:40 cnh Exp $'
61 &)
62 END
63

  ViewVC Help
Powered by ViewVC 1.1.22