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

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

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


Revision 1.6 - (hide annotations) (download)
Sat Jun 15 03:14:53 2002 UTC (21 years, 11 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint46n_post, checkpoint47e_post, checkpoint46l_post, checkpoint46g_pre, checkpoint47c_post, checkpoint50c_post, checkpoint46f_post, checkpoint48e_post, checkpoint50c_pre, checkpoint46b_post, checkpoint48i_post, checkpoint46l_pre, checkpoint50, checkpoint50d_post, checkpoint50b_pre, checkpoint48b_post, checkpoint48c_pre, checkpoint47d_pre, checkpoint47a_post, checkpoint48d_pre, checkpoint47i_post, checkpoint47d_post, checkpoint46d_pre, checkpoint48d_post, checkpoint48f_post, checkpoint45d_post, checkpoint46j_pre, checkpoint48h_post, checkpoint46a_post, checkpoint47g_post, checkpoint46j_post, checkpoint46k_post, checkpoint48a_post, checkpoint50a_post, checkpoint47j_post, branch-exfmods-tag, checkpoint46e_pre, checkpoint48c_post, checkpoint46b_pre, checkpoint46c_pre, checkpoint46, checkpoint47b_post, checkpoint46h_pre, checkpoint46m_post, checkpoint46a_pre, checkpoint46g_post, checkpoint47f_post, checkpoint46i_post, checkpoint46c_post, checkpoint50d_pre, checkpoint46e_post, checkpoint47, checkpoint48, checkpoint49, checkpoint46h_post, checkpoint48g_post, checkpoint47h_post, checkpoint46d_post, checkpoint50b_post
Branch point for: branch-exfmods-curt
Changes since 1.5: +4 -2 lines
* monitor output : add ocean volume output and change definition of KE
  => allow to check conservation of Energy with and without NLFS

1 jmc 1.6 C $Header: /u/gcmpack/MITgcm/pkg/monitor/mon_printstats_rl.F,v 1.5 2001/11/08 16:47:34 jmc Exp $
2 adcroft 1.2 C $Name: $
3 adcroft 1.1
4     #include "CPP_OPTIONS.h"
5    
6     SUBROUTINE MON_PRINTSTATS_RL(
7 jmc 1.5 I myNr, arr, arrName,
8     I arrMask,arrhFac,arrArea,arrDr,
9 adcroft 1.1 I myThid )
10     C /==========================================================\
11     C | SUBROUTINE MON_PRINTSTATS_RL |
12     C | o Prints to STDOUT the bare statistics of global array |
13     C | "_RL arr" with label "arrName" |
14     C |==========================================================|
15     C \==========================================================/
16     IMPLICIT NONE
17    
18     C === Global data ===
19     #include "SIZE.h"
20     #include "EEPARAMS.h"
21 cnh 1.3 #include "MONITOR.h"
22 adcroft 1.1
23     C === Routine arguments ===
24     INTEGER myNr
25     _RL arr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
26 jmc 1.5 _RS arrMask(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
27     _RS arrhFac(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
28     _RS arrArea(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
29     _RS arrDr(myNr)
30 adcroft 1.1 CHARACTER*(*) arrName
31     INTEGER myThid
32    
33     C === Local variables ====
34     _RL theMin
35     _RL theMax
36     _RL theMean
37     _RL theSD
38 jmc 1.5 _RL theDel2
39 jmc 1.6 _RL theVol
40 adcroft 1.1
41     CALL MON_STATS_RL(
42 jmc 1.5 I myNr, arr, arrMask,arrhFac,arrArea,arrDr,
43 jmc 1.6 O theMin,theMax,theMean,theSD,theDel2,theVol,
44 adcroft 1.1 I myThid )
45    
46 adcroft 1.4 CALL MON_OUT_RL( arrName, theMax, mon_foot_max ,myThid)
47     CALL MON_OUT_RL( arrName, theMin, mon_foot_min ,myThid)
48     CALL MON_OUT_RL( arrName, theMean, mon_foot_mean ,myThid)
49     CALL MON_OUT_RL( arrName, theSD, mon_foot_sd ,myThid)
50 jmc 1.5 CALL MON_OUT_RL( arrName, theDel2, mon_foot_del2 ,myThid)
51 jmc 1.6 c CALL MON_OUT_RL( arrName, theVol, mon_foot_vol ,myThid)
52 adcroft 1.1
53     RETURN
54     END

  ViewVC Help
Powered by ViewVC 1.1.22