/[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.37 by adcroft, Mon Mar 22 15:54:03 1999 UTC revision 1.42 by adcroft, Mon Aug 30 18:29:21 1999 UTC
# Line 63  C                        get buoyancy. Line 63  C                        get buoyancy.
63       &                bathyFile, hydrogThetaFile, hydrogSaltFile,       &                bathyFile, hydrogThetaFile, hydrogSaltFile,
64       &                zonalWindFile, meridWindFile, thetaClimFile,       &                zonalWindFile, meridWindFile, thetaClimFile,
65       &                saltClimFile, buoyancyRelation,       &                saltClimFile, buoyancyRelation,
66       &                EmPmRfile,surfQfile       &                EmPmRfile, surfQfile,
67         &                uVelInitFile, vVelInitFile
68        CHARACTER*(5) checkPtSuff(maxNoChkptLev)        CHARACTER*(5) checkPtSuff(maxNoChkptLev)
69        CHARACTER*(MAX_LEN_FNAM) bathyFile        CHARACTER*(MAX_LEN_FNAM) bathyFile
70        CHARACTER*(MAX_LEN_FNAM) hydrogThetaFile        CHARACTER*(MAX_LEN_FNAM) hydrogThetaFile
# Line 75  C                        get buoyancy. Line 76  C                        get buoyancy.
76        CHARACTER*(MAX_LEN_FNAM) surfQfile        CHARACTER*(MAX_LEN_FNAM) surfQfile
77        CHARACTER*(MAX_LEN_FNAM) EmPmRfile        CHARACTER*(MAX_LEN_FNAM) EmPmRfile
78        CHARACTER*(MAX_LEN_FNAM) buoyancyRelation        CHARACTER*(MAX_LEN_FNAM) buoyancyRelation
79          CHARACTER*(MAX_LEN_FNAM) uVelInitFile
80          CHARACTER*(MAX_LEN_FNAM) vVelInitFile
81    
82  C--   COMMON /PARM_I/ Integer valued parameters used by the model.  C--   COMMON /PARM_I/ Integer valued parameters used by the model.
83  C     cg2dMaxIters        - Maximum number of iterations in the  C     cg2dMaxIters        - Maximum number of iterations in the
# Line 105  C                           etc... Line 108  C                           etc...
108       &        cg2dChkResFreq,       &        cg2dChkResFreq,
109       &        cg3dMaxIters,       &        cg3dMaxIters,
110       &        cg3dChkResFreq,       &        cg3dChkResFreq,
111       &        nIter0, nTimeSteps,       &        nIter0, nTimeSteps, nEndIter,
112       &        numStepsPerPickup,       &        numStepsPerPickup,
113       &        writeStatePrec, nCheckLev,       &        writeStatePrec, nCheckLev,
114       &        writeBinaryPrec, readBinaryPrec,       &        writeBinaryPrec, readBinaryPrec,
# Line 116  C                           etc... Line 119  C                           etc...
119        INTEGER cg3dChkResFreq        INTEGER cg3dChkResFreq
120        INTEGER nIter0        INTEGER nIter0
121        INTEGER nTimeSteps        INTEGER nTimeSteps
122          INTEGER nEndIter
123        INTEGER numStepsPerPickup        INTEGER numStepsPerPickup
124        INTEGER writeStatePrec        INTEGER writeStatePrec
125        INTEGER writeBinaryPrec        INTEGER writeBinaryPrec
# Line 160  C     useConstantF  - Coriolis parameter Line 164  C     useConstantF  - Coriolis parameter
164  C     useBetaPlaneF - Coriolis parameter set to f0 + beta.y  C     useBetaPlaneF - Coriolis parameter set to f0 + beta.y
165  C     useSphereF    - Coriolis parameter set to 2.omega.sin(phi)  C     useSphereF    - Coriolis parameter set to 2.omega.sin(phi)
166  C     implicitDiffusion - Turns implicit vertical diffusion on  C     implicitDiffusion - Turns implicit vertical diffusion on
167    C     implicitViscosity - Turns implicit vertical viscosity on
168  C     doThetaClimRelax - Set true if relaxation to temperature  C     doThetaClimRelax - Set true if relaxation to temperature
169  C                        climatology is required.  C                        climatology is required.
170  C     doSaltClimRelax  - Set true if relaxation to salinity  C     doSaltClimRelax  - Set true if relaxation to salinity
# Line 171  C     usingZCoords     - Set to indicate Line 176  C     usingZCoords     - Set to indicate
176  C                        coords.  C                        coords.
177  C     openBoundaries - Using open-boundaries  C     openBoundaries - Using open-boundaries
178  C     nonHydrostatic - Using non-hydrostatic terms  C     nonHydrostatic - Using non-hydrostatic terms
179    C     globalFiles    - Selects between "global" and "tiled" files
180    C     allowFreezing  - Allows water to freeze and form ice
181        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,
182       & no_slip_sides,no_slip_bottom,       & no_slip_sides,no_slip_bottom,
183       & momViscosity, momAdvection, momForcing, useCoriolis,       & momViscosity, momAdvection, momForcing, useCoriolis,
# Line 180  C     nonHydrostatic - Using non-hydrost Line 187  C     nonHydrostatic - Using non-hydrost
187       & momStepping, tempStepping, saltStepping,       & momStepping, tempStepping, saltStepping,
188       & metricTerms, usingSphericalPolarMTerms,       & metricTerms, usingSphericalPolarMTerms,
189       & useConstantF, useBetaPlaneF, useSphereF,       & useConstantF, useBetaPlaneF, useSphereF,
190       & implicitDiffusion, doThetaClimRelax, doSaltClimRelax,       & implicitDiffusion, implicitViscosity,
191         & doThetaClimRelax, doSaltClimRelax,
192       & periodicExternalForcing, usingPCoords, usingZCoords,       & periodicExternalForcing, usingPCoords, usingZCoords,
193       & openBoundaries, nonHydrostatic       & openBoundaries, nonHydrostatic, globalFiles,
194         & allowFreezing
195        LOGICAL usingCartesianGrid        LOGICAL usingCartesianGrid
196        LOGICAL usingSphericalPolarGrid        LOGICAL usingSphericalPolarGrid
197        LOGICAL usingSphericalPolarMTerms        LOGICAL usingSphericalPolarMTerms
# Line 209  C     nonHydrostatic - Using non-hydrost Line 218  C     nonHydrostatic - Using non-hydrost
218        LOGICAL useBetaPlaneF        LOGICAL useBetaPlaneF
219        LOGICAL useSphereF        LOGICAL useSphereF
220        LOGICAL implicitDiffusion        LOGICAL implicitDiffusion
221          LOGICAL implicitViscosity
222        LOGICAL doThetaClimRelax        LOGICAL doThetaClimRelax
223        LOGICAL doSaltClimRelax        LOGICAL doSaltClimRelax
224        LOGICAL periodicExternalForcing        LOGICAL periodicExternalForcing
# Line 216  C     nonHydrostatic - Using non-hydrost Line 226  C     nonHydrostatic - Using non-hydrost
226        LOGICAL usingZCoords        LOGICAL usingZCoords
227        LOGICAL openBoundaries        LOGICAL openBoundaries
228        LOGICAL nonHydrostatic        LOGICAL nonHydrostatic
229          LOGICAL globalFiles
230          LOGICAL allowFreezing
231    
232  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.
233  C     cg2dTargetResidual  C     cg2dTargetResidual
# Line 323  C     pfFacMom      - Momentum pressure Line 335  C     pfFacMom      - Momentum pressure
335  C     cfFacMom      - Coriolis term tracer parameter  C     cfFacMom      - Coriolis term tracer parameter
336  C     foFacMom      - Momentum forcing tracer parameter  C     foFacMom      - Momentum forcing tracer parameter
337  C     mtFacMom      - Metric terms tracer parameter  C     mtFacMom      - Metric terms tracer parameter
338    C     cosPower      - Power of cosine of latitude to multiply viscosity
339  C     cAdjFreq      - Frequency of convective adjustment  C     cAdjFreq      - Frequency of convective adjustment
340  C  C
341  C     taveFreq      - Frequency with which time-averaged model state is written to  C     taveFreq      - Frequency with which time-averaged model state is written to
# Line 354  C                          circles ( see Line 367  C                          circles ( see
367       & recip_rhoConst, rhoConst, tRef, sRef,       & recip_rhoConst, rhoConst, tRef, sRef,
368       & endTime, chkPtFreq, pchkPtFreq, dumpFreq, taveFreq,       & endTime, chkPtFreq, pchkPtFreq, dumpFreq, taveFreq,
369       & afFacMom, vfFacMom, pfFacMom, cfFacMom, foFacMom, mtFacMom,       & afFacMom, vfFacMom, pfFacMom, cfFacMom, foFacMom, mtFacMom,
370         & cosPower,
371       & cAdjFreq, omega, tauThetaClimRelax, lambdaThetaClimRelax,       & cAdjFreq, omega, tauThetaClimRelax, lambdaThetaClimRelax,
372       & tauSaltClimRelax, lambdaSaltClimRelax,       & tauSaltClimRelax, lambdaSaltClimRelax,
373       & externForcingCycle, externForcingPeriod,       & externForcingCycle, externForcingPeriod,
374       & viscAp, diffKpT, diffKpS, hFacMinDr, hFacMinDp,       & viscAp, diffKpT, diffKpS, hFacMinDr, hFacMinDp,
375       & theta_S, specVol_S, horiVertRatio, recip_horiVertRatio,       & theta_S, specVol_S, horiVertRatio, recip_horiVertRatio,
376       & latFFTFiltLo       & latFFTFiltLo, ivdc_kappa
377    
378        _RL cg2dTargetResidual        _RL cg2dTargetResidual
379        _RL cg3dTargetResidual        _RL cg3dTargetResidual
# Line 433  C                          circles ( see Line 447  C                          circles ( see
447        _RL cfFacMom        _RL cfFacMom
448        _RL foFacMom        _RL foFacMom
449        _RL mTFacMom        _RL mTFacMom
450          _RL cosPower
451        _RL cAdjFreq        _RL cAdjFreq
452        _RL omega        _RL omega
453        _RL tauThetaClimRelax        _RL tauThetaClimRelax
# Line 444  C                          circles ( see Line 459  C                          circles ( see
459        _RL horiVertRatio        _RL horiVertRatio
460        _RL recip_horiVertRatio        _RL recip_horiVertRatio
461        _RL latFFTFiltLo        _RL latFFTFiltLo
462          _RL ivdc_kappa
463    
464        COMMON /PARM_A/ HeatCapacity_Cp,recip_Cp,        COMMON /PARM_A/ HeatCapacity_Cp,recip_Cp,
465       &                Lamba_theta       &                Lamba_theta

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.42

  ViewVC Help
Powered by ViewVC 1.1.22