/[MITgcm]/MITgcm/model/inc/PARAMS.h
ViewVC logotype

Diff of /MITgcm/model/inc/PARAMS.h

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

revision 1.3 by cnh, Sun Apr 26 23:41:54 1998 UTC revision 1.29 by cnh, Sun Sep 6 14:45:10 1998 UTC
# Line 9  C     | stored into the variables held h Line 9  C     | stored into the variables held h
9  C     | the parameters can also be found here.                   |  C     | the parameters can also be found here.                   |
10  C     \==========================================================/  C     \==========================================================/
11    
12    C     Macros for special grid options
13    #include "PARAMS_MACROS.h"
14    
15  C--   Contants  C--   Contants
 C     nOBands - No. of offline data time bands  
       INTEGER nOBands  
       PARAMETER ( nOBands = 12 )  
16  C     Useful physical values  C     Useful physical values
17        Real*8 PI        Real*8 PI
18        PARAMETER ( PI    = 3.14159265358979323844D0   )        PARAMETER ( PI    = 3.14159265358979323844D0   )
19        Real*8 deg2rad        Real*8 deg2rad
20        PARAMETER ( deg2rad = 2.D0*PI/360.D0           )        PARAMETER ( deg2rad = 2.D0*PI/360.D0           )
21    
22    C     Symbolic values
23    C     precXXXX - Used to indicate what precision to use for
24    C                dumping model state.
25          INTEGER precFloat32
26          PARAMETER ( precFloat32 = 0 )
27          INTEGER precFloat64
28          PARAMETER ( precFloat64 = 1 )
29    C     UNSET_xxx - Used to indicate variables that have not been given a value
30          Real*8 UNSET_FLOAT8
31          PARAMETER ( UNSET_FLOAT8 = 1.234567D5 )
32          Real*4 UNSET_FLOAT4
33          PARAMETER ( UNSET_FLOAT4 = 1.234567E5 )
34          _RL    UNSET_RL    
35          PARAMETER ( UNSET_RL     = 1.234567D5 )
36          _RS    UNSET_RS    
37          PARAMETER ( UNSET_RS     = 1.234567E5 )
38          INTEGER UNSET_I
39          PARAMETER ( UNSET_I      = 123456789  )
40    
41    C     Checkpoint data
42          INTEGER maxNoChkptLev
43          PARAMETER ( maxNoChkptLev = 2 )
44    
45  C--   COMMON /PARM_C/ Character valued parameters used by the model.  C--   COMMON /PARM_C/ Character valued parameters used by the model.
46  C     oBandId  - Offline dataset identifiers for different periods.  C     checkPtSuff - List of checkpoint file suffices
47        COMMON /PARM_C/ oBandId  C     bathyFile   - File containing bathymetry. If not defined bathymetry
48        CHARACTER*3 oBandId(nOBands)  C                   is taken from inline function.
49    C     hydrogThetaFile - File containing initial hydrographic data for potential
50    C                       temperature.
51    C     hydrogSaltFile  - File containing initial hydrographic data for salinity.
52    C     zonalWindFile   - File containing zonal wind data
53    C     meridWindFile   - File containing meridional wind data
54    C     thetaClimFile   - File containing theta climataology used
55    C                       in relaxation term -lambda(theta-theta*)
56    C     saltClimFile    - File containing salt climataology used
57    C                       in relaxation term -lambda(salt-salt*)
58    C     buoyancyRelation - Flag used to indicate which relation to use to
59    C                        get buoyancy.
60          COMMON /PARM_C/ checkPtSuff,
61         &                bathyFile, hydrogThetaFile, hydrogSaltFile,
62         &                zonalWindFile, meridWindFile, thetaClimFile,
63         &                saltClimFile, buoyancyRelation
64          CHARACTER*(5) checkPtSuff(maxNoChkptLev)
65          CHARACTER*(MAX_LEN_FNAM) bathyFile
66          CHARACTER*(MAX_LEN_FNAM) hydrogThetaFile
67          CHARACTER*(MAX_LEN_FNAM) hydrogSaltFile
68          CHARACTER*(MAX_LEN_FNAM) zonalWindFile
69          CHARACTER*(MAX_LEN_FNAM) meridWindFile
70          CHARACTER*(MAX_LEN_FNAM) thetaClimFile
71          CHARACTER*(MAX_LEN_FNAM) saltClimFile
72          CHARACTER*(MAX_LEN_FNAM) buoyancyRelation
73    
74  C--   COMMON /PARM_I/ Integer valued parameters used by the model.  C--   COMMON /PARM_I/ Integer valued parameters used by the model.
75  C     cg2dMaxIters        - Maximum number of iterations in the  C     cg2dMaxIters        - Maximum number of iterations in the
76  C                           two-dimensional con. grad solver.  C                           two-dimensional con. grad solver.
# Line 32  C     nIter0              - Start time-s Line 80  C     nIter0              - Start time-s
80  C     nTimeSteps          - Number of timesteps to execute  C     nTimeSteps          - Number of timesteps to execute
81  C     numStepsPerPickup   - For offline setup. Frequency of pickup  C     numStepsPerPickup   - For offline setup. Frequency of pickup
82  C                           of flow fields.  C                           of flow fields.
83    C     writeStatePrec      - Precision used for writing model state.
84    C     writeBinaryPrec     - Precision used for writing binary files
85    C     readBinaryPrec      - Precision used for reading binary files
86    C     nCheckLev           - Holds current checkpoint level
87        COMMON /PARM_I/        COMMON /PARM_I/
88       &        cg2dMaxIters,       &        cg2dMaxIters,
89       &        cg2dChkResFreq,       &        cg2dChkResFreq,
90       &        nIter0, nTimeSteps,       &        nIter0, nTimeSteps,
91       &        numStepsPerPickup       &        numStepsPerPickup,
92         &        writeStatePrec, nCheckLev,
93         &        writeBinaryPrec, readBinaryPrec
94        INTEGER cg2dMaxIters        INTEGER cg2dMaxIters
95        INTEGER cg2dChkResFreq        INTEGER cg2dChkResFreq
96        INTEGER nIter0        INTEGER nIter0
97        INTEGER nTimeSteps        INTEGER nTimeSteps
98        INTEGER numStepsPerPickup        INTEGER numStepsPerPickup
99          INTEGER writeStatePrec
100          INTEGER writeBinaryPrec
101          INTEGER readBinaryPrec
102          INTEGER nCheckLev
103    
104  C--   COMMON /PARM_L/ Logical valued parameters used by the model.  C--   COMMON /PARM_L/ Logical valued parameters used by the model.
105  C     usingCartesianGrid - If TRUE grid generation will be in a cartesian  C     usingCartesianGrid - If TRUE grid generation will be in a cartesian
# Line 52  C     momViscosity  - Flag which turns m Line 110  C     momViscosity  - Flag which turns m
110  C     momAdvection  - Flag which turns advection of momentum on and off.  C     momAdvection  - Flag which turns advection of momentum on and off.
111  C     momForcing    - Flag which turns external forcing of momentum on  C     momForcing    - Flag which turns external forcing of momentum on
112  C                     and off.  C                     and off.
113    C     momPressureForcing - Flag which turns pressure term in momentum equation
114    C                          on and off.
115    C     metricTerms   - Flag which turns metric terms on or off.
116    C     usingSphericalPolarMTerms - If TRUE use spherical polar metric terms.
117  C     useCoriolis   - Flag which turns the coriolis terms on and off.  C     useCoriolis   - Flag which turns the coriolis terms on and off.
118  C     tempDiffusion - Flag which turns diffusion of temperature on  C     tempDiffusion - Flag which turns diffusion of temperature on
119  C                     and off.  C                     and off.
# Line 65  C     saltAdvection - Flag which turns a Line 127  C     saltAdvection - Flag which turns a
127  C                     and off.  C                     and off.
128  C     saltForcing   - Flag which turns external forcing of salinit on  C     saltForcing   - Flag which turns external forcing of salinit on
129  C                     and off.  C                     and off.
130    C     implicitFreeSurface - Set to true to use implcit free surface
131    C     rigidLid            - Set to true to use rigid lid
132    C     momStepping   - Turns momentum equation time-stepping off
133    C     tempStepping  - Turns temperature equation time-stepping off
134    C     saltStepping  - Turns salinity equation time-stepping off
135    C     useConstantF  - Coriolis parameter set to f0
136    C     useBetaPlaneF - Coriolis parameter set to f0 + beta.y
137    C     useSphereF    - Coriolis parameter set to 2.omega.sin(phi)
138    C     implicitDiffusion - Turns implicit vertical diffusion on
139    C     doThetaClimRelax - Set true if relaxation to temperature
140    C                        climatology is required.
141    C     doSaltClimRelax  - Set true if relaxation to salinity
142    C                        climatology is required.
143    C     periodicExternalForcing - Set true if forcing is time-dependant
144    C     usingPCoords     - Set to indicate that we are working in pressure
145    C                        coords.
146    C     usingZCoords     - Set to indicate that we are working in height
147    C                        coords.
148        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,
149       & momViscosity, momAdvection, momForcing, useCoriolis,       & momViscosity, momAdvection, momForcing, useCoriolis, momPressureForcing,
150       & tempDiffusion, tempAdvection, tempForcing,       & tempDiffusion, tempAdvection, tempForcing,
151       & saltDiffusion, saltAdvection, saltForcing       & saltDiffusion, saltAdvection, saltForcing,
152         & implicitFreeSurface, rigidLid,
153         & momStepping, tempStepping, saltStepping,
154         & metricTerms, usingSphericalPolarMTerms,
155         & useConstantF, useBetaPlaneF, useSphereF,
156         & implicitDiffusion, doThetaClimRelax, doSaltClimRelax,
157         & periodicExternalForcing, usingPCoords, usingZCoords
158        LOGICAL usingCartesianGrid        LOGICAL usingCartesianGrid
159        LOGICAL usingSphericalPolarGrid        LOGICAL usingSphericalPolarGrid
160          LOGICAL usingSphericalPolarMTerms
161        LOGICAL momViscosity        LOGICAL momViscosity
162        LOGICAL momAdvection        LOGICAL momAdvection
163        LOGICAL momForcing        LOGICAL momForcing
164          LOGICAL momPressureForcing
165        LOGICAL useCoriolis        LOGICAL useCoriolis
166        LOGICAL tempDiffusion        LOGICAL tempDiffusion
167        LOGICAL tempAdvection        LOGICAL tempAdvection
# Line 81  C                     and off. Line 169  C                     and off.
169        LOGICAL saltDiffusion        LOGICAL saltDiffusion
170        LOGICAL saltAdvection        LOGICAL saltAdvection
171        LOGICAL saltForcing        LOGICAL saltForcing
172          LOGICAL implicitFreeSurface
173          LOGICAL rigidLid
174          LOGICAL momStepping
175          LOGICAL tempStepping
176          LOGICAL saltStepping
177          LOGICAL metricTerms
178          LOGICAL useConstantF
179          LOGICAL useBetaPlaneF
180          LOGICAL useSphereF
181          LOGICAL implicitDiffusion
182          LOGICAL doThetaClimRelax
183          LOGICAL doSaltClimRelax
184          LOGICAL periodicExternalForcing
185          LOGICAL usingPCoords
186          LOGICAL usingZCoords
187    
188  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.
189  C     cg2dTargetResidual  C     cg2dTargetResidual
190  C               - Target residual for cg2d solver.  C               - Target residual for cg2d solver.
191  C     delZ      - Vertical grid spacing ( m ) - delZ is the distance  C     cg2dpcOffDFac - Averaging weight for preconditioner off-diagonal.
192  C                 between "w" surfaces.  C     Note. 20th May 1998
193    C           I made a weird discovery! In the model paper we argue
194    C           for the form of the preconditioner used here ( see
195    C           A Finite-volume, Incompressible Navier-Stokes Model
196    C           ...., Marshall et. al ). The algebra gives a simple
197    C           0.5 factor for the averaging of ac and aCw to get a
198    C           symmettric pre-conditioner. By using a factor of 0.51
199    C           i.e. scaling the off-diagonal terms in the
200    C           preconditioner down slightly I managed to get the
201    C           number of iterations for convergence in a test case to
202    C           drop form 192 -> 134! Need to investigate this further!
203    C           For now I have introduced a parameter cg2dpcOffDFac which
204    C           defaults to 0.51 but can be set at runtime.
205    C     delP      - Vertical grid spacing ( Pa ).
206    C     delZ      - Vertical grid spacing ( m  ).
207    C     delR      - Vertical grid spacing ( units of r ).
208  C     delX      - Separation between cell faces (m) or (deg), depending  C     delX      - Separation between cell faces (m) or (deg), depending
209  C     delY        on input flags.  C     delY        on input flags.
210  C     gravity   - Accel. due to gravity ( m/s^2 )  C     gravity   - Accel. due to gravity ( m/s^2 )
211    C     gBaro     - Accel. due to gravity used in barotropic equation ( m/s^2 )
212  C     ronil     - Reference density  C     ronil     - Reference density
213    C     rhoConst  - Vertically constant reference density
214  C     startTime - Start time for model ( s )  C     startTime - Start time for model ( s )
215  C     phiMin    - Latitude of southern most cell face.  C     phiMin    - Latitude of southern most cell face.
216  C     thetaMin  - Longitude of western most cell face (this  C     thetaMin  - Longitude of western most cell face (this
217  C                 is an "inert" parameter but it is included  C                 is an "inert" parameter but it is included
218  C                 to make geographical references simple.)  C                 to make geographical references simple.)
219  C     rSphere   - Radius of sphere for a spherical polar grid ( m ).  C     rSphere   - Radius of sphere for a spherical polar grid ( m ).
220    C     recip_RSphere  - Reciprocal radius of sphere ( m ).
221  C     f0        - Reference coriolis parameter ( 1/s )  C     f0        - Reference coriolis parameter ( 1/s )
222  C                 ( Southern edge f for beta plane )  C                 ( Southern edge f for beta plane )
223  C     beta      - df/dy ( s^-1.m^-1 )  C     beta      - df/dy ( s^-1.m^-1 )
224    C     omega     - Angular velocity ( rad/s )
225  C     viscAh    - Eddy viscosity coeff. for mixing of  C     viscAh    - Eddy viscosity coeff. for mixing of
226  C                 momentum laterally ( m^2/s )  C                 momentum laterally ( m^2/s )
227  C     viscAz    - Eddy viscosity coeff. for mixing of  C     viscAz    - Eddy viscosity coeff. for mixing of
228  C                 momentum vertically ( m^2/s )  C                 momentum vertically ( m^2/s )
229    C     viscAp    - Eddy viscosity coeff. for mixing of
230    C                 momentum vertically ( Pa^2/s )
231    C     viscAr    - Eddy viscosity coeff. for mixing of
232    C                 momentum vertically ( units of r^2/s )
233  C     viscA4    - Biharmonic viscosity coeff. for mixing of  C     viscA4    - Biharmonic viscosity coeff. for mixing of
234  C                 momentum laterally ( m^4/s )  C                 momentum laterally ( m^4/s )
235  C     diffKhT   - Laplacian diffusion coeff. for mixing of  C     diffKhT   - Laplacian diffusion coeff. for mixing of
236  C                 heat laterally ( m^2/s )  C                 heat laterally ( m^2/s )
237  C     diffKzT   - Laplacian diffusion coeff. for mixing of  C     diffKzT   - Laplacian diffusion coeff. for mixing of
238  C                 heat vertically ( m^2/s )  C                 heat vertically ( m^2/s )
239    C     diffKpT   - Laplacian diffusion coeff. for mixing of
240    C                 heat vertically ( Pa^2/s )
241    C     diffKrT   - Laplacian diffusion coeff. for mixing of
242    C                 heat vertically ( units of r^2/s )
243  C     diffK4T   - Biharmonic diffusion coeff. for mixing of  C     diffK4T   - Biharmonic diffusion coeff. for mixing of
244  C                 heat laterally ( m^4/s )  C                 heat laterally ( m^4/s )
245  C     diffKhS  -  Laplacian diffusion coeff. for mixing of  C     diffKhS  -  Laplacian diffusion coeff. for mixing of
246  C                 salt laterally ( m^2/s )  C                 salt laterally ( m^2/s )
247  C     diffKzS   - Laplacian diffusion coeff. for mixing of  C     diffKzS   - Laplacian diffusion coeff. for mixing of
248  C                 salt vertically ( m^2/s )  C                 salt vertically ( m^2/s )
249    C     diffKpS   - Laplacian diffusion coeff. for mixing of
250    C                 salt vertically ( Pa^2/s )
251    C     diffKrS   - Laplacian diffusion coeff. for mixing of
252    C                 salt vertically ( units of r^2/s )
253  C     diffK4S   - Biharmonic diffusion coeff. for mixing of  C     diffK4S   - Biharmonic diffusion coeff. for mixing of
254  C                 salt laterally ( m^4/s )  C                 salt laterally ( m^4/s )
255  C     deltaT    - Default timestep ( s )  C     deltaT    - Default timestep ( s )
256    C     deltaTClock  - Timestep used as model "clock". This determines the
257    C                    IO frequencies and is used in tagging output. It can
258    C                    be totally different to the dynamical time. Typically
259    C                    it will be the deep-water timestep for accelerated runs.
260    C                    Frequency of checkpointing and dumping of the model state
261    C                    are referenced to this clock. ( s )
262  C     deltaTMom    - Timestep for momemtum equations ( s )  C     deltaTMom    - Timestep for momemtum equations ( s )
263  C     deltaTtracer - Timestep for tracer equations ( s )  C     deltaTtracer - Timestep for tracer equations ( s )
264  C     tauCD     - CD scheme coupling timescale ( 1/s )  C     freesurfFac  - Parameter to turn implicit free surface term on or off
265  C     rCD       - CD scheme normalised coupling parameter ( 0-1 )  C                    freesurfac = 1. uses implicit free surface
266  C     startTime - Starting time for this integration ( s ).  C                    freesurfac = 0. uses rigid lid
267  C     endTime   - Ending time for this integration ( s ).  C     hFacMin      - Minimum fraction size of a cell (affects hFacC etc...)
268  C     chkPtFreq - Frequency of check pointing ( s ).  C     hFacMinDz    - Minimum dimesional size of a cell (affects hFacC etc..., m)
269  C     dumpFreq  - Frequency with which model state is written to  C     hFacMinDp    - Minimum dimesional size of a cell (affects hFacC etc..., Pa)
270  C                 post-processing files ( s ).  C     hFacMinDr    - Minimum dimesional size of a cell (affects hFacC etc..., units of r)
271        COMMON /PARM_R/ cg2dTargetResidual, delZ, delX, delY, deltaT,  C     tauCD        - CD scheme coupling timescale ( 1/s )
272       & deltaTmom, deltaTtracer, abeps, startTime, phiMin, thetaMin,  C     rCD          - CD scheme normalised coupling parameter ( 0-1 )
273       & rSphere, f0, fCori, beta, viscAh, viscAz, viscA4, diffKhT, diffKzT,  C     GMmaxslope    - max. slope allowed in GM/Redi tensor
274       & diffK4T, diffKhS, diffKzS, diffK4S, delT, tauCD, rCD,  C     GMlength      - Length to use in Visbeck et al. formula for K (m)
275       & tAlpha, sBeta, gravity, rhonil, tRef, sRef,  C     GMalpha       - alpha to use in Visbeck et al. formula for K
276       & endTime, chkPtFreq, dumpFreq  C     GMdepth       - Depth over which to integrate Richardson # (Visbeck et al.)
277        REAL cg2dTargetResidual  C     GMkbackground - background value of GM/Redi diffusion coefficient ( m^2/s )
278        REAL delZ(Nz)  C     GMmaxval      - max. value of KapGM allowed in GM/Redi scheme ( m^2/s )
279        REAL delX(Nx)  C     startTime     - Starting time for this integration ( s ).
280        REAL delY(Ny)  C     endTime       - Ending time for this integration ( s ).
281        REAL deltaT  C     chkPtFreq     - Frequency of rolling check pointing ( s ).
282        REAL deltaTmom  C     pChkPtFreq    - Frequency of permanent check pointing ( s ).
283        REAL deltaTtracer  C     dumpFreq      - Frequency with which model state is written to
284        REAL abeps  C                     post-processing files ( s ).
285        REAL phiMin  C     afFacMom      - Advection of momentum term tracer parameter
286        REAL thetaMin  C     vfFacMom      - Momentum viscosity tracer parameter
287        REAL rSphere  C     pfFacMom      - Momentum pressure forcing tracer parameter
288        REAL f0  C     cfFacMom      - Coriolis term tracer parameter
289        _RL  beta  C     foFacMom      - Momentum forcing tracer parameter
290        REAL viscAh  C     mtFacMom      - Metric terms tracer parameter
291        REAL viscAz  C     cAdjFreq      - Frequency of convective adjustment
292        REAL viscA4  C
293        REAL diffKhT  C     taveFreq      - Frequency with which time-averaged model state is written to
294        REAL diffKzT  C                     post-processing files ( s ).
295        REAL diffK4T  C     tauThetaClimRelax - Relaxation to climatology time scale ( s ).
296        REAL diffKhS  C     lambdaThetaClimRelax - Inverse time scale for relaxation ( 1/s ).
297        REAL diffKzS  C     tauSaltClimRelax - Relaxation to climatology time scale ( s ).
298        REAL diffK4S  C     lambdaSaltClimRelax - Inverse time scale for relaxation ( 1/s ).
299        REAL delt  C     externForcingPeriod - Is the period of which forcing varies (eg. 1 month)
300        REAL tauCD  C     externForcingCycle - Is the repeat time of the forcing (eg. 1 year)
301        REAL rCD  C                          (note: externForcingCycle must be an integer
302        REAL tAlpha  C                           number times externForcingPeriod)
303        REAL sBeta        COMMON /PARM_R/ cg2dTargetResidual, cg2dpcOffDFac,
304        REAL gravity       & delP, delZ, delR, delX, delY,
305        REAL rhonil       & deltaT,deltaTmom, deltaTtracer, deltaTClock,abeps, startTime, phiMin,
306        REAL tRef(Nz)       & thetaMin, rSphere, recip_RSphere, f0, fCori, beta,
307        REAL sRef(Nz)       & viscAh,  viscAz,  viscA4,  viscAr,
308        real Fcori(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)       & diffKhT, diffKzT, diffK4T, diffKrT,
309        REAL startTime       & diffKhS, diffKzS, diffK4S, diffKrS,
310        REAL endTime       & delT, tauCD, rCD, freeSurfFac, hFacMin, hFacMinDz,
311        REAL chkPtFreq       & GMmaxslope,GMlength,GMalpha,GMdepth,GMkbackground,GMmaxval,
312        REAL dumpFreq       & gravity, gBaro, rhonil, recip_rhonil,
313         & recip_rhoConst, rhoConst, tRef, sRef,
314         & endTime, chkPtFreq, pchkPtFreq, dumpFreq, taveFreq,
315         & afFacMom, vfFacMom, pfFacMom, cfFacMom, foFacMom, mtFacMom,
316         & cAdjFreq, omega, tauThetaClimRelax, lambdaThetaClimRelax,
317         & tauSaltClimRelax, lambdaSaltClimRelax,
318         & externForcingCycle, externForcingPeriod,
319         & viscAp, diffKpT, diffKpS, hFacMinDr, hFacMinDp,
320         & theta_S, specVol_S
321    
322          _RL cg2dTargetResidual
323          _RL cg2dpcOffDFac
324          _RL delZ(Nr)
325          _RL delP(Nr)
326          _RL delR(Nr)
327          _RL delX(Nx)
328          _RL delY(Ny)
329          _RL deltaT
330          _RL deltaTClock
331          _RL deltaTmom
332          _RL deltaTtracer
333          _RL abeps
334          _RL phiMin
335          _RL thetaMin
336          _RL rSphere
337          _RL recip_RSphere
338          _RL f0
339          _RL freeSurfFac
340          _RL hFacMin
341          _RL hFacMinDz
342          _RL hFacMinDp
343          _RL hFacMinDr
344          _RL beta
345          _RL viscAh
346          _RL viscAz
347          _RL viscAp
348          _RL viscAr
349          _RL viscA4
350          _RL diffKhT
351          _RL diffKrT
352          _RL diffKzT
353          _RL diffKpT
354          _RL diffK4T
355          _RL diffKhS
356          _RL diffKrS
357          _RL diffKzS
358          _RL diffKpS
359          _RL diffK4S
360          _RL delt
361          _RL tauCD
362          _RL rCD
363          _RL GMmaxslope
364          _RL GMlength
365          _RL GMalpha
366          _RL GMdepth
367          _RL GMkbackground
368          _RL GMmaxval
369          _RL gravity
370          _RL gBaro
371          _RL rhonil
372          _RL recip_rhonil
373          _RL rhoConst
374          _RL recip_rhoConst
375          _RL specVol_S(Nr)
376          _RL tRef(Nr)
377          _RL theta_S(Nr)
378          _RL sRef(Nr)
379          _RS Fcori(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
380          _RL startTime
381          _RL endTime
382          _RL chkPtFreq
383          _RL pChkPtFreq
384          _RL dumpFreq
385          _RL taveFreq
386          _RL afFacMom
387          _RL vfFacMom
388          _RL pfFacMom
389          _RL cfFacMom
390          _RL foFacMom
391          _RL mTFacMom
392          _RL cAdjFreq
393          _RL omega
394          _RL tauThetaClimRelax
395          _RL lambdaThetaClimRelax
396          _RL tauSaltClimRelax
397          _RL lambdaSaltClimRelax
398          _RL externForcingCycle
399          _RL externForcingPeriod
400    
401        COMMON /PARM_A/ HeatCapacity_Cp,        COMMON /PARM_A/ HeatCapacity_Cp,
402       &                Lamba_theta       &                Lamba_theta
403        REAL HeatCapacity_Cp        _RL HeatCapacity_Cp
404        REAL Lamba_theta        _RL Lamba_theta
405    
406    C Equation of State (polynomial coeffients)
407          COMMON /PARM_EOS_NL/ eosC,eosSig0,eosRefT,eosRefS
408          _RL eosC(9,Nr+1),eosSig0(Nr+1),eosRefT(Nr+1),eosRefS(Nr+1)
409    C Linear equation of state
410    C     tAlpha    - Linear EOS thermal expansion coefficient ( 1/degree ).
411    C     sBeta     - Linear EOS haline contraction coefficient.
412          COMMON /PARM_EOS_LIN/ tAlpha,sBeta,eosType
413          _RL tAlpha
414          _RL sBeta
415          character*(6) eosType
416    

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.29

  ViewVC Help
Powered by ViewVC 1.1.22