File: ouspace.h

package info (click to toggle)
emoslib 000380%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 47,712 kB
  • ctags: 11,551
  • sloc: fortran: 89,643; ansic: 24,200; makefile: 370; sh: 355
file content (75 lines) | stat: -rwxr-xr-x 1,571 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
C
C**** "ouspace.h"
C
C     PURPOSE
C     _______
C
C     This file contains the work space array definitions for the
C     arrays to hold the unpacked real data from GRIB fields.
C
C     INTERFACE
C     _________
C
C     #include "ouspace.h"
C
C     Common block usage
C     __________________
C
C     GRIB_SPACE
C
C     NIFELD       - POINTER to array RIFELD.
C     NOFELD       - POINTER to array ROFELD.
C
C     RIFELD       - Dynamic array of length (NIWE * NINS)
C                    (see nifld.common) which holds the expanded
C                    input field.
C     ROFELD       - Dynamic array of length (NOWE * NONS)
C                    (see nofld.common) which holds the expanded
C                    output field.
C
C     METHOD
C     ______
C
C     NONE
C
C     REFERENCE
C     _________
C
C     NONE
C
C     COMMENTS
C     ________
C
C     Contains sections 1
C
C     AUTHOR
C     ______
C
C     K. Fielding      *ECMWF*      Apr 1994
C
C     MODIFICATIONS
C     _____________
C
C     NONE
C
C
C     _______________________________________________________
C
C
C*    Section 1. Pointer and array combination
C                Array dimensions are in nifld.common and
C                nofld.common
C     _______________________________________________________
C
      COMMON /GRIB_SPACE/
     1   NIFELD, NOFELD
C
      SAVE /GRIB_SPACE/
C
      REAL RIFELD, ROFELD
C
C     RIFELD is actually only the accumulated field length for a
C     quasi regular input field
C
      POINTER (NIFELD, RIFELD (NIWE * NINS) )
      POINTER (NOFELD, ROFELD (NOWE * NONS) )