New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3000 for branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbaccdata.F90 – NEMO

Ignore:
Timestamp:
2011-10-26T15:44:20+02:00 (13 years ago)
Author:
djlea
Message:

Updated obstools. Addition of headers to programs which explain what each utility does and how to run it. All the programs now build using the naketools utility.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_2802_OBStools/NEMOGCM/TOOLS/OBSTOOLS/src/fbaccdata.F90

    r2945 r3000  
    11MODULE fbaccdata 
    2    INTEGER, DIMENSION(:,:,:,:), ALLOCATABLE :: inum 
    3    REAL, DIMENSION(:,:,:,:), ALLOCATABLE :: zmean,zrms,zsdev 
     2   USE fbacctype 
     3   IMPLICIT NONE 
     4   INTEGER, DIMENSION(:,:,:,:,:), ALLOCATABLE :: inum,inumov,inumbv 
     5   INTEGER, DIMENSION(:,:,:,:), ALLOCATABLE :: inuma 
     6   REAL, DIMENSION(:,:,:,:,:), ALLOCATABLE :: zbias,zrms,zsdev,zomean,zmmean,& 
     7      & zoemea,zovmea,zbemea,zbvmea 
     8   REAL, DIMENSION(:,:,:,:), ALLOCATABLE :: zoamean 
    49   INTEGER, PARAMETER :: maxvars = 10 
    510   REAL, DIMENSION(maxvars) :: zcheck 
    611   REAL, DIMENSION(maxvars) :: zhistmax, zhistmin, zhiststep 
    7    TYPE histtype 
    8       INTEGER :: npoints 
    9       INTEGER, POINTER, DIMENSION(:,:,:,:) :: nhist 
    10    END TYPE histtype 
    1112   TYPE(histtype), DIMENSION(maxvars) :: hist 
    12  
     13   REAL, DIMENSION(maxvars) :: zxymax, zxymin, zxystep 
     14   TYPE(xytype), DIMENSION(maxvars) :: xy 
    1315END MODULE fbaccdata 
    1416 
Note: See TracChangeset for help on using the changeset viewer.