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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
C Copyright 1981-2007 ECMWF
C
C Licensed under the GNU Lesser General Public License which
C incorporates the terms and conditions of version 3 of the GNU
C General Public License.
C See LICENSE and gpl-3.0.txt for details.
C
#define INT_MISSING -2147483647
SUBROUTINE CLEAR_C( )
C
C---->
C**** CLEAR_C
C
C Purpose
C -------
C
C Sets start values for parameters in common block.
C
C
C Interface
C ---------
C
C CALL CLEAR_C()
C
C
C Method
C ------
C
C Hard coded defaults.
C
C
C Externals
C ---------
C
C None.
C
C
C Author
C ------
C
C J.D.Chambers ECMWF August 1994.
C
C----<
C
IMPLICIT NONE
C
C
#include "parim.h"
#include "nifld.common"
#include "nofld.common"
#include "grfixed.h"
#include "current.h"
C
C Local variables
C
INTEGER IRET, LOOP
C
C ------------------------------------------------------------------
C* Section 1. Initialise
C ------------------------------------------------------------------
C
100 CONTINUE
C
C Set default processing flag settings.
C
LCHANGE = .TRUE.
LSMCHNG = .TRUE.
LSM = .TRUE.
LPREC = .FALSE.
LWIND = .FALSE.
C
C Set default area indexes.
C
NINS = 0
NIWE = 0
NO1NS = 0
NO1WE = 0
NONS = 0
NOWE = 0
C
C Defaults for output GRIB record ..
C .. ECMWF local code table 128
C .. level 500 hPa
C
NOPARAM = 0
NOTABLE = 128
NOLEVT = 100
NOLEVEL = 500
NOHFUNC = 'A'
C
C Turn off all flags indicating that user has given a value.
C
LSMPARSET = .FALSE.
LSMSET = .FALSE.
LPRECSET = .FALSE.
LWINDSET = .FALSE.
LNIGAUS = .FALSE.
LNGSPEC = .FALSE.
LIGIVEL = .FALSE.
LIGIVEP = .FALSE.
LOGIVEL = .FALSE.
LOGIVEP = .FALSE.
LNOAREA = .FALSE.
LNORESO = .FALSE.
LNOGAUS = .FALSE.
LNOACC = .FALSE.
LNOREPR = .FALSE.
LNOTABL = .FALSE.
LNOPARA = .FALSE.
LNOLEVL = .FALSE.
LNOLEVT = .FALSE.
LNOGRID = .FALSE.
LNOFRAME = .FALSE.
LNOSTYLE = .FALSE.
LARESOL = .FALSE.
LINTOUT = .FALSE.
LIMISSV = .FALSE.
cs double interpolation
LDOUBLE = .FALSE.
C
RMISSGV = REAL(INT_MISSING)
C
C Clear input and output gaussian grid definitions
C
NIGAUSS = 0
NOGAUSS = 0
DO 110 LOOP = 1, JPLAT
RIGAUSS(LOOP) = 0.0
MILLEN(LOOP) = 0
110 CONTINUE
C
DO 120 LOOP = 1, JPLAT
ROGAUSS(LOOP) = 0.0
NOLPTS(LOOP) = 0
120 CONTINUE
C
C Clear information about gaussian field definitions
C
NGSPEC = 0
NIGAUSO = 0
NOGAUSO = 0
HIGAUST = 'X'
HOGAUST = 'X'
C
C Clear rotation angle values.
C
NOROTA(1) = 0
NOROTA(2) = 0
LNOROTA = .FALSE.
LO12PT = .TRUE.
LMETHOD = .FALSE.
C
C Clear style and frame values
C
NOFRAME = 0
NOSTYLE = JPSMARS
C
C Clear flags showing how to deal with legendre coefficients
C
LFILEIO = .FALSE.
LMEMORY = .FALSE.
LSHARED = .FALSE.
LON_FLY = .FALSE.
LMAPPED = .FALSE.
LIFIRST = .TRUE.
C
C Clear fields for ISLSCP processing
C
IF( LNIISCL ) THEN
CALL JFREE(NIPOGRB)
CALL JFREE(NIPNGRB)
ENDIF
LNIISCL = .FALSE.
C
C ------------------------------------------------------------------
C* Section 9. Closedown.
C ------------------------------------------------------------------
C
900 CONTINUE
C
RETURN
END
|