/[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.106 by edhill, Tue Mar 23 05:24:43 2004 UTC revision 1.115 by jmc, Sat Jun 26 02:37:17 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 126  C     nonlinFreeSurf      :: option rela Line 127  C     nonlinFreeSurf      :: option rela
127  C                           =0 Linear free surface ; >0 Non-linear  C                           =0 Linear free surface ; >0 Non-linear
128  C     select_rStar        :: option related to r* vertical coordinate  C     select_rStar        :: option related to r* vertical coordinate
129  C                           =0 (default) use r coord. ; > 0 use r*  C                           =0 (default) use r coord. ; > 0 use r*
130    C     tempAdvScheme       :: Temp. Horiz.Advection scheme selector
131    C     tempVertAdvScheme   :: Temp. Vert. Advection scheme selector
132    C     saltAdvScheme       :: Salt. Horiz.advection scheme selector
133    C     saltVertAdvScheme   :: Salt. Vert. Advection scheme selector
134    C     debugLevel          :: debug level selector: higher -> more writing
135    
136        COMMON /PARM_I/        COMMON /PARM_I/
137       &        cg2dMaxIters,       &        cg2dMaxIters,
# Line 137  C                           =0 (default) Line 143  C                           =0 (default)
143       &        writeStatePrec, nCheckLev,       &        writeStatePrec, nCheckLev,
144       &        writeBinaryPrec, readBinaryPrec,       &        writeBinaryPrec, readBinaryPrec,
145       &        nonlinFreeSurf, select_rStar,       &        nonlinFreeSurf, select_rStar,
146       &        tempAdvScheme, saltAdvScheme, tracerAdvScheme,       &        tempAdvScheme, tempVertAdvScheme,
147         &        saltAdvScheme, saltVertAdvScheme,
148         &        tracerAdvScheme,
149       &        debugLevel       &        debugLevel
150        INTEGER cg2dMaxIters        INTEGER cg2dMaxIters
151        INTEGER cg2dChkResFreq        INTEGER cg2dChkResFreq
# Line 153  C                           =0 (default) Line 161  C                           =0 (default)
161        INTEGER nCheckLev        INTEGER nCheckLev
162        INTEGER nonlinFreeSurf        INTEGER nonlinFreeSurf
163        INTEGER select_rStar        INTEGER select_rStar
164        INTEGER tempAdvScheme        INTEGER tempAdvScheme, tempVertAdvScheme
165        INTEGER saltAdvScheme        INTEGER saltAdvScheme, saltVertAdvScheme
166        INTEGER tracerAdvScheme        INTEGER tracerAdvScheme
167        INTEGER debugLevel        INTEGER debugLevel
168    
# Line 171  C     usingCartesianGrid :: If TRUE grid Line 179  C     usingCartesianGrid :: If TRUE grid
179  C                          coordinate frame.  C                          coordinate frame.
180  C     usingSphericalPolarGrid :: If TRUE grid generation will be in a  C     usingSphericalPolarGrid :: If TRUE grid generation will be in a
181  C                               spherical polar frame.  C                               spherical polar frame.
182    C     usingCylindricalGrid :: If TRUE grid generation will be Cylindrical
183  C     no_slip_sides :: Impose "no-slip" at lateral boundaries.  C     no_slip_sides :: Impose "no-slip" at lateral boundaries.
184  C     no_slip_bottom :: Impose "no-slip" at bottom boundary.  C     no_slip_bottom :: Impose "no-slip" at bottom boundary.
185  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 222  C     useBetaPlaneF :: Coriolis paramete
222  C     useSphereF    :: Coriolis parameter set to 2.omega.sin(phi)  C     useSphereF    :: Coriolis parameter set to 2.omega.sin(phi)
223  C     useCDscheme   :: use CD-scheme to calculate Coriolis terms.  C     useCDscheme   :: use CD-scheme to calculate Coriolis terms.
224  C     useJamartWetPoints :: Use wet-point method for Coriolis (Jamart and Ozer, 1986)  C     useJamartWetPoints :: Use wet-point method for Coriolis (Jamart and Ozer, 1986)
225    C     useJamartMomAdv :: Use wet-point method for V.I. non-linear term
226    C     SadournyCoriolis :: use the enstrophy conserving scheme by Sadourny
227    C     upwindVorticity :: bias interpolation of vorticity in the Coriolis term
228    C     highOrderVorticity :: use 3rd/4th order interp. of vorticity in Coriolis
229    C     useAbsVorticity :: work with f+zeta in Coriolis terms
230  C     implicitDiffusion :: Turns implicit vertical diffusion on  C     implicitDiffusion :: Turns implicit vertical diffusion on
231  C     implicitViscosity :: Turns implicit vertical viscosity on  C     implicitViscosity :: Turns implicit vertical viscosity on
232  C     tempImplVertAdv :: Turns on implicit vertical advection for Temperature  C     tempImplVertAdv :: Turns on implicit vertical advection for Temperature
# Line 244  C     allowFreezing  :: Allows surface w Line 258  C     allowFreezing  :: Allows surface w
258  C     useOldFreezing :: use the old version (before checkpoint52a_pre, 2003-11-12)  C     useOldFreezing :: use the old version (before checkpoint52a_pre, 2003-11-12)
259  C     groundAtK1  :: put the surface(k=1) at the Lower Boundary (=ground)  C     groundAtK1  :: put the surface(k=1) at the Lower Boundary (=ground)
260        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,
261       & usingCurvilinearGrid,       & usingCurvilinearGrid, usingCylindricalGrid,
262       & no_slip_sides,no_slip_bottom,       & no_slip_sides,no_slip_bottom,
263       & staggerTimeStep,       & staggerTimeStep,
264       & momViscosity, momAdvection, momForcing, useCoriolis,       & momViscosity, momAdvection, momForcing, useCoriolis,
# Line 257  C     groundAtK1  :: put the surface(k=1 Line 271  C     groundAtK1  :: put the surface(k=1
271       & metricTerms, usingSphericalPolarMTerms, useNHMTerms,       & metricTerms, usingSphericalPolarMTerms, useNHMTerms,
272       & useConstantF, useBetaPlaneF, useSphereF,       & useConstantF, useBetaPlaneF, useSphereF,
273       & useCDscheme,       & useCDscheme,
274       & useEnergyConservingCoriolis, useJamartWetPoints,       & useEnergyConservingCoriolis, useJamartWetPoints, useJamartMomAdv,
275         & SadournyCoriolis, upwindVorticity, highOrderVorticity,
276         & useAbsVorticity,
277       & implicitDiffusion, implicitViscosity,       & implicitDiffusion, implicitViscosity,
278       & tempImplVertAdv, saltImplVertAdv, momImplVertAdv,       & tempImplVertAdv, saltImplVertAdv, momImplVertAdv,
279       & multiDimAdvection, forcing_In_AB,       & multiDimAdvection, forcing_In_AB,
# Line 270  C     groundAtK1  :: put the surface(k=1 Line 286  C     groundAtK1  :: put the surface(k=1
286       & readPickupWithTracer, writePickupWithTracer       & readPickupWithTracer, writePickupWithTracer
287        LOGICAL usingCartesianGrid        LOGICAL usingCartesianGrid
288        LOGICAL usingSphericalPolarGrid        LOGICAL usingSphericalPolarGrid
289          LOGICAL usingCylindricalGrid
290        LOGICAL usingCurvilinearGrid        LOGICAL usingCurvilinearGrid
291        LOGICAL usingSphericalPolarMTerms        LOGICAL usingSphericalPolarMTerms
292        LOGICAL useNHMTerms        LOGICAL useNHMTerms
# Line 304  C     groundAtK1  :: put the surface(k=1 Line 321  C     groundAtK1  :: put the surface(k=1
321        LOGICAL useCDscheme        LOGICAL useCDscheme
322        LOGICAL useEnergyConservingCoriolis        LOGICAL useEnergyConservingCoriolis
323        LOGICAL useJamartWetPoints        LOGICAL useJamartWetPoints
324          LOGICAL useJamartMomAdv
325          LOGICAL SadournyCoriolis
326          LOGICAL upwindVorticity
327          LOGICAL highOrderVorticity
328          LOGICAL useAbsVorticity
329        LOGICAL implicitDiffusion        LOGICAL implicitDiffusion
330        LOGICAL implicitViscosity        LOGICAL implicitViscosity
331        LOGICAL tempImplVertAdv        LOGICAL tempImplVertAdv
# Line 380  C     viscAr    :: Eddy viscosity coeff. Line 402  C     viscAr    :: Eddy viscosity coeff.
402  C                 momentum vertically ( units of r^2/s )  C                 momentum vertically ( units of r^2/s )
403  C     viscA4    :: Biharmonic viscosity coeff. for mixing of  C     viscA4    :: Biharmonic viscosity coeff. for mixing of
404  C                 momentum laterally ( m^4/s )  C                 momentum laterally ( m^4/s )
405    C     viscC2leith :: Leith non-dimensional viscosity factor
406  C     viscAhMax :: Maximum eddy viscosity coeff. for mixing of  C     viscAhMax :: Maximum eddy viscosity coeff. for mixing of
407  C                 momentum laterally ( m^2/s )  C                 momentum laterally ( m^2/s )
408  C     viscA4Max :: Maximum biharmonic viscosity coeff. for mixing of  C     viscA4Max :: Maximum biharmonic viscosity coeff. for mixing of
409  C                 momentum laterally ( m^4/s )  C                 momentum laterally ( m^4/s )
410  C     viscAhGrid:: non-dimensional grid-size dependent viscosity  C     viscAhGrid:: non-dimensional grid-size dependent viscosity
411  C     viscA4Grid:: non-dimensional grid-size dependent bi-harmonic viscosity  C     viscA4Grid:: non-dimensional grid-size dependent bi-harmonic viscosity
412    C     viscC4leith :: Leith non-dimensional viscosity factor
413  C     diffKhT   :: Laplacian diffusion coeff. for mixing of  C     diffKhT   :: Laplacian diffusion coeff. for mixing of
414  C                 heat laterally ( m^2/s )  C                 heat laterally ( m^2/s )
415  C     diffKrT   :: Laplacian diffusion coeff. for mixing of  C     diffKrT   :: Laplacian diffusion coeff. for mixing of
# Line 398  C     diffKrS   :: Laplacian diffusion c Line 422  C     diffKrS   :: Laplacian diffusion c
422  C                 salt vertically ( units of r^2/s )  C                 salt vertically ( units of r^2/s )
423  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of
424  C                 salt laterally ( m^4/s )  C                 salt laterally ( m^4/s )
425    C     diffKrBL79surf :: T/S surface diffusivity (m^2/s) Bryan and Lewis, 1979
426    C     diffKrBL79deep :: T/S deep diffusivity (m^2/s) Bryan and Lewis, 1979
427    C     diffKrBL79scl  :: depth scale for arctan fn (m) Bryan and Lewis, 1979
428    C     diffKrBL79Ho   :: depth offset for arctan fn (m) Bryan and Lewis, 1979
429  C     deltaT    :: Default timestep ( s )  C     deltaT    :: Default timestep ( s )
430  C     deltaTClock  :: Timestep used as model "clock". This determines the  C     deltaTClock  :: Timestep used as model "clock". This determines the
431  C                    IO frequencies and is used in tagging output. It can  C                    IO frequencies and is used in tagging output. It can
# Line 477  C      --"-"--  Quadratic  ( linear: 1/s Line 505  C      --"-"--  Quadratic  ( linear: 1/s
505       & abeps, startTime,       & abeps, startTime,
506       & phiMin, thetaMin, rSphere, recip_RSphere, f0, beta,       & phiMin, thetaMin, rSphere, recip_RSphere, f0, beta,
507       & fCori, fCoriG, fCoriCos,       & fCori, fCoriG, fCoriCos,
508       & viscAh,  viscAhMax, viscAhGrid,       & viscAh,  viscAhMax, viscAhGrid, viscC2leith,
509       & viscA4,  viscA4Max, viscA4Grid,       & viscA4,  viscA4Max, viscA4Grid, viscC4leith,
510       & viscAr, viscAstrain, viscAtension,       & viscAr, viscAstrain, viscAtension,
511       & diffKhT, diffK4T, diffKrT,       & diffKhT, diffK4T, diffKrT,
512       & diffKhS, diffK4S, diffKrS,       & diffKhS, diffK4S, diffKrS,
513         & diffKrBL79surf, diffKrBL79deep, diffKrBL79scl, diffKrBL79Ho,
514       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,
515       & hFacMin, hFacMinDz, hFacInf, hFacSup,       & hFacMin, hFacMinDz, hFacInf, hFacSup,
516       & gravity, recip_Gravity, gBaro, rhonil, recip_rhonil,       & gravity, recip_Gravity, gBaro, rhonil, recip_rhonil,
# Line 533  C      --"-"--  Quadratic  ( linear: 1/s Line 562  C      --"-"--  Quadratic  ( linear: 1/s
562        _RL viscAh        _RL viscAh
563        _RL viscAhMax        _RL viscAhMax
564        _RL viscAhGrid        _RL viscAhGrid
565          _RL viscC2leith
566        _RL viscAstrain        _RL viscAstrain
567        _RL viscAtension        _RL viscAtension
568        _RL viscAr        _RL viscAr
569        _RL viscA4        _RL viscA4
570        _RL viscA4Max        _RL viscA4Max
571        _RL viscA4Grid        _RL viscA4Grid
572          _RL viscC4leith
573        _RL diffKhT        _RL diffKhT
574        _RL diffKrT        _RL diffKrT
575        _RL diffK4T        _RL diffK4T
576        _RL diffKhS        _RL diffKhS
577        _RL diffKrS        _RL diffKrS
578        _RL diffK4S        _RL diffK4S
579          _RL diffKrBL79surf
580          _RL diffKrBL79deep
581          _RL diffKrBL79scl
582          _RL diffKrBL79Ho
583        _RL delt        _RL delt
584        _RL tauCD        _RL tauCD
585        _RL rCD        _RL rCD
# Line 646  C Logical flags for selecting packages Line 681  C Logical flags for selecting packages
681        LOGICAL usefizhi        LOGICAL usefizhi
682        LOGICAL usegridalt        LOGICAL usegridalt
683        LOGICAL usediagnostics        LOGICAL usediagnostics
684          LOGICAL useEBM
685        COMMON /PARM_PACKAGES/        COMMON /PARM_PACKAGES/
686       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,
687       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,
688       &        usePTRACERS,  useSBO, useSEAICE, useThSIce, useBulkForce,       &        usePTRACERS,  useSBO, useSEAICE, useThSIce, useBulkForce,
689       &        usefizhi,  usegridalt, usediagnostics       &        usefizhi,  usegridalt, usediagnostics, useEBM
690    
691  C     Run-time flags for early-initialization of MNC  C     Run-time flags for early-initialization of MNC
692        LOGICAL        LOGICAL
693       &     useMNC,       &     useMNC,
694       &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,       &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
695       &     mnc_echo_gvtypes, mnc_pickup_create, mnc_pickup_read       &     mnc_echo_gvtypes, mnc_pickup_write, mnc_pickup_read,
696         &     mnc_use_for_mon
697        CHARACTER*(MAX_LEN_FNAM) mnc_outdir_str        CHARACTER*(MAX_LEN_FNAM) mnc_outdir_str
698        CHARACTER*(MAX_LEN_FNAM) mnc_indir_str        CHARACTER*(MAX_LEN_FNAM) mnc_indir_str
699        COMMON /PARM_MNC/        COMMON /PARM_MNC/
700       &     useMNC,       &     useMNC,
701       &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,       &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,
702       &     mnc_echo_gvtypes, mnc_pickup_create, mnc_pickup_read,       &     mnc_echo_gvtypes, mnc_pickup_write, mnc_pickup_read,
703       &     mnc_outdir_str, mnc_indir_str       &     mnc_outdir_str, mnc_indir_str,
704         &     mnc_use_for_mon
705    
706    
707  CEH3 ;;; Local Variables: ***  CEH3 ;;; Local Variables: ***

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.115

  ViewVC Help
Powered by ViewVC 1.1.22