/[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.98 by jmc, Sun Nov 23 01:25:55 2003 UTC revision 1.114 by afe, Thu Jun 24 20:25:44 2004 UTC
# Line 83  C                        LINEAR, POLY3, Line 83  C                        LINEAR, POLY3,
83       &                uVelInitFile, vVelInitFile, pSurfInitFile,       &                uVelInitFile, vVelInitFile, pSurfInitFile,
84       &                dQdTfile, ploadFile,       &                dQdTfile, ploadFile,
85       &                eosType, pickupSuff,       &                eosType, pickupSuff,
86       &                mdsioLocalDir       &                mdsioLocalDir, tCyl
87        CHARACTER*(5) checkPtSuff(maxNoChkptLev)        CHARACTER*(5) checkPtSuff(maxNoChkptLev)
88        CHARACTER*(MAX_LEN_FNAM) bathyFile, topoFile        CHARACTER*(MAX_LEN_FNAM) bathyFile, topoFile
89        CHARACTER*(MAX_LEN_FNAM) hydrogThetaFile        CHARACTER*(MAX_LEN_FNAM) hydrogThetaFile
# Line 104  C                        LINEAR, POLY3, Line 104  C                        LINEAR, POLY3,
104        CHARACTER*(MAX_LEN_FNAM) mdsioLocalDir        CHARACTER*(MAX_LEN_FNAM) mdsioLocalDir
105        CHARACTER*(6) eosType        CHARACTER*(6) eosType
106        CHARACTER*(10) pickupSuff        CHARACTER*(10) pickupSuff
107          _RL tCyl
108    
109  C--   COMMON /PARM_I/ Integer valued parameters used by the model.  C--   COMMON /PARM_I/ Integer valued parameters used by the model.
110  C     cg2dMaxIters        :: Maximum number of iterations in the  C     cg2dMaxIters        :: Maximum number of iterations in the
# Line 171  C     usingCartesianGrid :: If TRUE grid Line 172  C     usingCartesianGrid :: If TRUE grid
172  C                          coordinate frame.  C                          coordinate frame.
173  C     usingSphericalPolarGrid :: If TRUE grid generation will be in a  C     usingSphericalPolarGrid :: If TRUE grid generation will be in a
174  C                               spherical polar frame.  C                               spherical polar frame.
175    C     usingCylindricalGrid :: If TRUE grid generation will be Cylindrical
176  C     no_slip_sides :: Impose "no-slip" at lateral boundaries.  C     no_slip_sides :: Impose "no-slip" at lateral boundaries.
177  C     no_slip_bottom :: Impose "no-slip" at bottom boundary.  C     no_slip_bottom :: Impose "no-slip" at bottom boundary.
178  C     staggerTimeStep :: enable a Stagger time stepping T,S Rho then U,V  C     staggerTimeStep :: enable a Stagger time stepping T,S Rho then U,V
# Line 213  C     useBetaPlaneF :: Coriolis paramete Line 215  C     useBetaPlaneF :: Coriolis paramete
215  C     useSphereF    :: Coriolis parameter set to 2.omega.sin(phi)  C     useSphereF    :: Coriolis parameter set to 2.omega.sin(phi)
216  C     useCDscheme   :: use CD-scheme to calculate Coriolis terms.  C     useCDscheme   :: use CD-scheme to calculate Coriolis terms.
217  C     useJamartWetPoints :: Use wet-point method for Coriolis (Jamart and Ozer, 1986)  C     useJamartWetPoints :: Use wet-point method for Coriolis (Jamart and Ozer, 1986)
218    C     useJamartMomAdv :: Use wet-point method for V.I. non-linear term
219    C     SadournyCoriolis :: use the enstrophy conserving scheme by Sadourny
220    C     upwindVorticity :: bias interpolation of vorticity in the Coriolis term
221    C     highOrderVorticity :: use 3rd/4th order interp. of vorticity in Coriolis
222    C     useAbsVorticity :: work with f+zeta in Coriolis terms
223  C     implicitDiffusion :: Turns implicit vertical diffusion on  C     implicitDiffusion :: Turns implicit vertical diffusion on
224  C     implicitViscosity :: Turns implicit vertical viscosity on  C     implicitViscosity :: Turns implicit vertical viscosity on
225    C     tempImplVertAdv :: Turns on implicit vertical advection for Temperature
226    C     saltImplVertAdv :: Turns on implicit vertical advection for Salinity
227    C     momImplVertAdv  :: Turns on implicit vertical advection for Momentum
228  C     multiDimAdvection :: Flag that enable multi-dimension advection  C     multiDimAdvection :: Flag that enable multi-dimension advection
229  C     forcing_In_AB :: if False, put forcing (Temp,Salt,Tracers) contribution  C     forcing_In_AB :: if False, put forcing (Temp,Salt,Tracers) contribution
230  C                      out off Adams-Bashforth time stepping.  C                      out off Adams-Bashforth time stepping.
# Line 241  C     allowFreezing  :: Allows surface w Line 251  C     allowFreezing  :: Allows surface w
251  C     useOldFreezing :: use the old version (before checkpoint52a_pre, 2003-11-12)  C     useOldFreezing :: use the old version (before checkpoint52a_pre, 2003-11-12)
252  C     groundAtK1  :: put the surface(k=1) at the Lower Boundary (=ground)  C     groundAtK1  :: put the surface(k=1) at the Lower Boundary (=ground)
253        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,
254       & usingCurvilinearGrid,       & usingCurvilinearGrid, usingCylindricalGrid,
255       & no_slip_sides,no_slip_bottom,       & no_slip_sides,no_slip_bottom,
256       & staggerTimeStep,       & staggerTimeStep,
257       & momViscosity, momAdvection, momForcing, useCoriolis,       & momViscosity, momAdvection, momForcing, useCoriolis,
# Line 254  C     groundAtK1  :: put the surface(k=1 Line 264  C     groundAtK1  :: put the surface(k=1
264       & metricTerms, usingSphericalPolarMTerms, useNHMTerms,       & metricTerms, usingSphericalPolarMTerms, useNHMTerms,
265       & useConstantF, useBetaPlaneF, useSphereF,       & useConstantF, useBetaPlaneF, useSphereF,
266       & useCDscheme,       & useCDscheme,
267       & useEnergyConservingCoriolis, useJamartWetPoints,       & useEnergyConservingCoriolis, useJamartWetPoints, useJamartMomAdv,
268         & SadournyCoriolis, upwindVorticity, highOrderVorticity,
269         & useAbsVorticity,
270       & implicitDiffusion, implicitViscosity,       & implicitDiffusion, implicitViscosity,
271         & tempImplVertAdv, saltImplVertAdv, momImplVertAdv,
272       & multiDimAdvection, forcing_In_AB,       & multiDimAdvection, forcing_In_AB,
273       & doThetaClimRelax, doSaltClimRelax, doTr1ClimRelax,       & doThetaClimRelax, doSaltClimRelax, doTr1ClimRelax,
274       & periodicExternalForcing,       & periodicExternalForcing,
# Line 266  C     groundAtK1  :: put the surface(k=1 Line 279  C     groundAtK1  :: put the surface(k=1
279       & readPickupWithTracer, writePickupWithTracer       & readPickupWithTracer, writePickupWithTracer
280        LOGICAL usingCartesianGrid        LOGICAL usingCartesianGrid
281        LOGICAL usingSphericalPolarGrid        LOGICAL usingSphericalPolarGrid
282          LOGICAL usingCylindricalGrid
283        LOGICAL usingCurvilinearGrid        LOGICAL usingCurvilinearGrid
284        LOGICAL usingSphericalPolarMTerms        LOGICAL usingSphericalPolarMTerms
285        LOGICAL useNHMTerms        LOGICAL useNHMTerms
# Line 300  C     groundAtK1  :: put the surface(k=1 Line 314  C     groundAtK1  :: put the surface(k=1
314        LOGICAL useCDscheme        LOGICAL useCDscheme
315        LOGICAL useEnergyConservingCoriolis        LOGICAL useEnergyConservingCoriolis
316        LOGICAL useJamartWetPoints        LOGICAL useJamartWetPoints
317          LOGICAL useJamartMomAdv
318          LOGICAL SadournyCoriolis
319          LOGICAL upwindVorticity
320          LOGICAL highOrderVorticity
321          LOGICAL useAbsVorticity
322        LOGICAL implicitDiffusion        LOGICAL implicitDiffusion
323        LOGICAL implicitViscosity        LOGICAL implicitViscosity
324          LOGICAL tempImplVertAdv
325          LOGICAL saltImplVertAdv
326          LOGICAL momImplVertAdv
327        LOGICAL multiDimAdvection        LOGICAL multiDimAdvection
328        LOGICAL forcing_In_AB        LOGICAL forcing_In_AB
329        LOGICAL doThetaClimRelax        LOGICAL doThetaClimRelax
# Line 373  C     viscAr    :: Eddy viscosity coeff. Line 395  C     viscAr    :: Eddy viscosity coeff.
395  C                 momentum vertically ( units of r^2/s )  C                 momentum vertically ( units of r^2/s )
396  C     viscA4    :: Biharmonic viscosity coeff. for mixing of  C     viscA4    :: Biharmonic viscosity coeff. for mixing of
397  C                 momentum laterally ( m^4/s )  C                 momentum laterally ( m^4/s )
398    C     viscC2leith :: Leith non-dimensional viscosity factor
399    C     viscAhMax :: Maximum eddy viscosity coeff. for mixing of
400    C                 momentum laterally ( m^2/s )
401    C     viscA4Max :: Maximum biharmonic viscosity coeff. for mixing of
402    C                 momentum laterally ( m^4/s )
403    C     viscAhGrid:: non-dimensional grid-size dependent viscosity
404    C     viscA4Grid:: non-dimensional grid-size dependent bi-harmonic viscosity
405    C     viscC4leith :: Leith non-dimensional viscosity factor
406  C     diffKhT   :: Laplacian diffusion coeff. for mixing of  C     diffKhT   :: Laplacian diffusion coeff. for mixing of
407  C                 heat laterally ( m^2/s )  C                 heat laterally ( m^2/s )
408  C     diffKrT   :: Laplacian diffusion coeff. for mixing of  C     diffKrT   :: Laplacian diffusion coeff. for mixing of
# Line 385  C     diffKrS   :: Laplacian diffusion c Line 415  C     diffKrS   :: Laplacian diffusion c
415  C                 salt vertically ( units of r^2/s )  C                 salt vertically ( units of r^2/s )
416  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of
417  C                 salt laterally ( m^4/s )  C                 salt laterally ( m^4/s )
418    C     diffKrBL79surf :: T/S surface diffusivity (m^2/s) Bryan and Lewis, 1979
419    C     diffKrBL79deep :: T/S deep diffusivity (m^2/s) Bryan and Lewis, 1979
420    C     diffKrBL79scl  :: depth scale for arctan fn (m) Bryan and Lewis, 1979
421    C     diffKrBL79Ho   :: depth offset for arctan fn (m) Bryan and Lewis, 1979
422  C     deltaT    :: Default timestep ( s )  C     deltaT    :: Default timestep ( s )
423  C     deltaTClock  :: Timestep used as model "clock". This determines the  C     deltaTClock  :: Timestep used as model "clock". This determines the
424  C                    IO frequencies and is used in tagging output. It can  C                    IO frequencies and is used in tagging output. It can
# Line 464  C      --"-"--  Quadratic  ( linear: 1/s Line 498  C      --"-"--  Quadratic  ( linear: 1/s
498       & abeps, startTime,       & abeps, startTime,
499       & phiMin, thetaMin, rSphere, recip_RSphere, f0, beta,       & phiMin, thetaMin, rSphere, recip_RSphere, f0, beta,
500       & fCori, fCoriG, fCoriCos,       & fCori, fCoriG, fCoriCos,
501       & viscAh,  viscA4,  viscAr, viscAstrain, viscAtension,       & viscAh,  viscAhMax, viscAhGrid, viscC2leith,
502         & viscA4,  viscA4Max, viscA4Grid, viscC4leith,
503         & viscAr, viscAstrain, viscAtension,
504       & diffKhT, diffK4T, diffKrT,       & diffKhT, diffK4T, diffKrT,
505       & diffKhS, diffK4S, diffKrS,       & diffKhS, diffK4S, diffKrS,
506         & diffKrBL79surf, diffKrBL79deep, diffKrBL79scl, diffKrBL79Ho,
507       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,
508       & hFacMin, hFacMinDz, hFacInf, hFacSup,       & hFacMin, hFacMinDz, hFacInf, hFacSup,
509       & gravity, recip_Gravity, gBaro, rhonil, recip_rhonil,       & gravity, recip_Gravity, gBaro, rhonil, recip_rhonil,
510       & recip_rhoConst, rhoConst,       & recip_rhoConst, rhoConst,
511       & rhoConstFresh, convertEmP2rUnit, tRef, sRef,       & rhoConstFresh, convertEmP2rUnit, tRef, sRef,
512       & endTime, chkPtFreq, pchkPtFreq, dumpFreq,       & endTime, chkPtFreq, pchkPtFreq, dumpFreq, adjDumpFreq,
513       & diagFreq, taveFreq, tave_lastIter, monitorFreq,       & diagFreq, taveFreq, tave_lastIter, monitorFreq,
514       & afFacMom, vfFacMom, pfFacMom, cfFacMom, foFacMom, mtFacMom,       & afFacMom, vfFacMom, pfFacMom, cfFacMom, foFacMom, mtFacMom,
515       & cosPower, cAdjFreq, omega, rotationPeriod,       & cosPower, cAdjFreq, omega, rotationPeriod,
# Line 516  C      --"-"--  Quadratic  ( linear: 1/s Line 553  C      --"-"--  Quadratic  ( linear: 1/s
553        _RL hFacSup        _RL hFacSup
554        _RL beta        _RL beta
555        _RL viscAh        _RL viscAh
556          _RL viscAhMax
557          _RL viscAhGrid
558          _RL viscC2leith
559        _RL viscAstrain        _RL viscAstrain
560        _RL viscAtension        _RL viscAtension
561        _RL viscAr        _RL viscAr
562        _RL viscA4        _RL viscA4
563          _RL viscA4Max
564          _RL viscA4Grid
565          _RL viscC4leith
566        _RL diffKhT        _RL diffKhT
567        _RL diffKrT        _RL diffKrT
568        _RL diffK4T        _RL diffK4T
569        _RL diffKhS        _RL diffKhS
570        _RL diffKrS        _RL diffKrS
571        _RL diffK4S        _RL diffK4S
572          _RL diffKrBL79surf
573          _RL diffKrBL79deep
574          _RL diffKrBL79scl
575          _RL diffKrBL79Ho
576        _RL delt        _RL delt
577        _RL tauCD        _RL tauCD
578        _RL rCD        _RL rCD
# Line 548  C      --"-"--  Quadratic  ( linear: 1/s Line 595  C      --"-"--  Quadratic  ( linear: 1/s
595        _RL chkPtFreq        _RL chkPtFreq
596        _RL pChkPtFreq        _RL pChkPtFreq
597        _RL dumpFreq        _RL dumpFreq
598          _RL adjDumpFreq
599        _RL diagFreq        _RL diagFreq
600        _RL taveFreq        _RL taveFreq
601        _RL tave_lastIter        _RL tave_lastIter
# Line 623  C Logical flags for selecting packages Line 671  C Logical flags for selecting packages
671        LOGICAL useSEAICE        LOGICAL useSEAICE
672        LOGICAL useBulkForce        LOGICAL useBulkForce
673        LOGICAL useThSIce        LOGICAL useThSIce
674          LOGICAL usefizhi
675          LOGICAL usegridalt
676          LOGICAL usediagnostics
677          LOGICAL useEBM
678        COMMON /PARM_PACKAGES/        COMMON /PARM_PACKAGES/
679       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,
680       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,
681       &        usePTRACERS,  useSBO, useSEAICE,       &        usePTRACERS,  useSBO, useSEAICE, useThSIce, useBulkForce,
682       &        useThSIce, useBulkForce       &        usefizhi,  usegridalt, usediagnostics, useEBM
683    
684    C     Run-time flags for early-initialization of MNC
685          LOGICAL
686         &     useMNC,
687         &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
688         &     mnc_echo_gvtypes, mnc_pickup_write, mnc_pickup_read,
689         &     mnc_use_for_mon
690          CHARACTER*(MAX_LEN_FNAM) mnc_outdir_str
691          CHARACTER*(MAX_LEN_FNAM) mnc_indir_str
692          COMMON /PARM_MNC/
693         &     useMNC,
694         &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
695         &     mnc_echo_gvtypes, mnc_pickup_write, mnc_pickup_read,
696         &     mnc_outdir_str, mnc_indir_str,
697         &     mnc_use_for_mon
698    
699    
700    CEH3 ;;; Local Variables: ***
701    CEH3 ;;; mode:fortran ***
702    CEH3 ;;; End: ***

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.114

  ViewVC Help
Powered by ViewVC 1.1.22