/[MITgcm]/MITgcm/pkg/debug/debug_stats_rl.F
ViewVC logotype

Contents of /MITgcm/pkg/debug/debug_stats_rl.F

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


Revision 1.1.2.1 - (show annotations) (download)
Tue Feb 26 16:04:48 2002 UTC (22 years, 2 months ago) by adcroft
Branch: release1
CVS Tags: release1_p13_pre, release1_p13, release1_p8, release1_p9, release1_p1, release1_p2, release1_p3, release1_p4, release1_p5, release1_p6, release1_p7, release1_chkpt44d_post, release1_p11, release1_p12, release1_p10, release1_p16, release1_p17, release1_p14, release1_p15, release1_p12_pre
Branch point for: release1_50yr
Changes since 1.1: +3 -3 lines
Merging changes on MAIN between checkpoint43 and checkpoint43a-release1mods
Command: cvs -q update -jcheckpoint43 -jcheckpoint43a-release1mods -d -P

These changes are most of the changes between c43 and c44 except those
that occured after "12:45 11 Jan 2002". As far as I can tell it is
checkpoint43 with the following mods:

  o fix bug in mom_vi_del2uv
  o select when filters are applied ; add options to zonal_filter (data.zonfilt)  o gmredi: fix Pb in the adiabatic form ; add options (.e.g. Bolus advection)
  o update AIM experiments (NCEP input files)
  o improve and extend diagnostics (Monitor, TimeAve with NonLin-FrSurf)
  o added some stuff for AD
  o Jamar wet-points

This update does not contain the following mods that are in checkpoint44

  o bug fix in pkg/generic_advdiff/
    - thread related bug, bi,bj arguments in vertical advection routines
  o some changes to pkg/autodiff, pkg/cost, pkg/exf, pkg/ecco,
    verification/carbon and model/src/ related to adjoint
  o some new Matlab scripts for diagnosing model density
    - utils/matlab/dens_poly3.m and ini_poly3.m

The list of exclusions is accurate based on a "cvs diff". The list of
inclusions is based on the record in doc/tag-index which may not be complete.

1 C $Header: /u/gcmpack/MITgcm/pkg/debug/debug_stats_rl.F,v 1.2 2001/11/08 16:25:58 jmc Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 SUBROUTINE DEBUG_STATS_RL(
7 I myNr, arr, arrName,
8 I myThid )
9 C /==========================================================\
10 C | SUBROUTINE DEBUG_STATS_RL |
11 C | o Prints to STDOUT the bare statistics of global array |
12 C | "_RL arr" with label "arrName" |
13 C | o This is an exact copy of MON_PRINTSTATS_RL but with |
14 C | a different label at left of screen |
15 C |==========================================================|
16 C \==========================================================/
17 IMPLICIT NONE
18
19 C === Global data ===
20 #include "SIZE.h"
21 #include "EEPARAMS.h"
22
23 C === Routine arguments ===
24 INTEGER myNr
25 _RL arr(1-OLx:sNx+OLx,1-OLy:sNy+OLy,myNr,nSx,nSy)
26 CHARACTER*(*) arrName
27 INTEGER myThid
28
29 C === Local variables ====
30 _RL theMin
31 _RL theMax
32 _RL theMean
33 _RL theSD
34
35 CALL DEBUG_FLD_STATS_RL(
36 I myNr, arr,
37 O theMin,theMax,theMean,theSD,
38 I myThid )
39
40 _BEGIN_MASTER( myThid )
41 WRITE(*,'(A,A30,A,1PE22.14)')
42 & 'DEBUG_STATS_RL: ',arrName,' min=',theMin
43 WRITE(*,'(A,A30,A,1PE22.14)')
44 & 'DEBUG_STATS_RL: ',arrName,' max=',theMax
45 WRITE(*,'(A,A30,A,1PE22.14)')
46 & 'DEBUG_STATS_RL: ',arrName,' mean=',theMean
47 WRITE(*,'(A,A30,A,1PE22.14)')
48 & 'DEBUG_STATS_RL: ',arrName,' S.D.=',theSD
49 _END_MASTER( )
50
51 RETURN
52 END

  ViewVC Help
Powered by ViewVC 1.1.22