/[MITgcm]/MITgcm/pkg/monitor/mon_printstats_rl.F
ViewVC logotype

Contents of /MITgcm/pkg/monitor/mon_printstats_rl.F

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


Revision 1.8 - (show annotations) (download)
Sat Apr 3 21:17:10 2004 UTC (20 years, 2 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint54d_post, checkpoint54e_post, checkpoint55, checkpoint54, checkpoint53, checkpoint54f_post, checkpoint55i_post, checkpoint55c_post, checkpoint53d_post, checkpoint54b_post, checkpoint52m_post, checkpoint55g_post, checkpoint55d_post, checkpoint54a_pre, checkpoint53c_post, checkpoint55d_pre, checkpoint55j_post, checkpoint54a_post, checkpoint55h_post, checkpoint55b_post, checkpoint53a_post, checkpoint55f_post, checkpoint53g_post, checkpoint53f_post, checkpoint52n_post, checkpoint53b_pre, checkpoint55a_post, checkpoint53b_post, checkpoint53d_pre, checkpoint55e_post, checkpoint54c_post
Changes since 1.7: +22 -23 lines
 o removing duplicate code in mon_out.F in preparation for MNC output
 o convert all monitor files to protex-style comments

1 C $Header: /u/gcmpack/MITgcm/pkg/monitor/mon_printstats_rl.F,v 1.7 2003/05/13 18:18:05 adcroft Exp $
2 C $Name: $
3
4 #include "MONITOR_OPTIONS.h"
5
6 C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
7 CBOP
8 C !ROUTINE: MON_KE
9
10 C !INTERFACE:
11 SUBROUTINE MON_PRINTSTATS_RL(
12 I myNr, arr, arrName,
13 I arrMask,arrhFac,arrArea,arrDr,
14 I myThid )
15
16 C !DESCRIPTION:
17 C Prints to STDOUT the bare statistics of global array "\_RL arr"
18 C with label "arrName".
19
20 C !USES:
21 IMPLICIT NONE
22 #include "SIZE.h"
23 #include "EEPARAMS.h"
24 #include "MONITOR.h"
25
26 C !INPUT PARAMETERS:
27 INTEGER myNr
28 _RL arr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
29 _RS arrMask(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
30 _RS arrhFac(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
31 _RS arrArea(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
32 _RS arrDr(myNr)
33 CHARACTER*(*) arrName
34 INTEGER myThid
35 CEOP
36
37 C !LOCAL VARIABLES:
38 _RL theMin, theMax, theMean, theSD, theDel2, theVol
39
40 CALL MON_STATS_RL(
41 I myNr, arr, arrMask, arrhFac, arrArea, arrDr,
42 O theMin, theMax, theMean, theSD, theDel2, theVol,
43 I myThid )
44
45 CALL MON_OUT_RL( arrName, theMax, mon_foot_max ,myThid)
46 CALL MON_OUT_RL( arrName, theMin, mon_foot_min ,myThid)
47 CALL MON_OUT_RL( arrName, theMean, mon_foot_mean ,myThid)
48 CALL MON_OUT_RL( arrName, theSD, mon_foot_sd ,myThid)
49 CALL MON_OUT_RL( arrName, theDel2, mon_foot_del2 ,myThid)
50 c CALL MON_OUT_RL( arrName, theVol, mon_foot_vol ,myThid)
51
52 RETURN
53 END

  ViewVC Help
Powered by ViewVC 1.1.22