/[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.129 by edhill, Sun Oct 10 06:08:47 2004 UTC revision 1.134 by jmc, Mon Oct 18 21:32:48 2004 UTC
# Line 245  C                        climatology is Line 245  C                        climatology is
245  C     doSaltClimRelax  :: Set true if relaxation to salinity  C     doSaltClimRelax  :: Set true if relaxation to salinity
246  C                        climatology is required.  C                        climatology is required.
247  C     periodicExternalForcing :: Set true if forcing is time-dependant  C     periodicExternalForcing :: Set true if forcing is time-dependant
248  C     usingPCoords     :: Set to indicate that we are working in pressure  C     usingPCoords     :: Set to indicate that we are working in a pressure
249  C                        coords. (jmc: is it still used ?)  C                        type coordinate (p or p*).
250  C     usingZCoords     :: Set to indicate that we are working in height  C     usingZCoords     :: Set to indicate that we are working in a height
251  C                        coords. (jmc: is it still used ?)  C                        type coordinate (z or z*)
252    C     fluidIsAir       :: Set to indicate that the fluid major constituent
253    C                        is air
254    C     fluidIsWater     :: Set to indicate that the fluid major constituent
255    C                        is water
256  C     useDynP_inEos_Zc :: use the dynamical pressure in EOS (with Z-coord.)  C     useDynP_inEos_Zc :: use the dynamical pressure in EOS (with Z-coord.)
257  C                         this requires specific code for restart & exchange  C                         this requires specific code for restart & exchange
258  C     setCenterDr    :: set cell Center depth and put Interface at the middle  C     setCenterDr    :: set cell Center depth and put Interface at the middle
# Line 268  C     pickup_write_immed :: echo the pic Line 272  C     pickup_write_immed :: echo the pic
272  C     timeave_mdsio      :: use mdsio for timeave output  C     timeave_mdsio      :: use mdsio for timeave output
273  C     snapshot_mdsio     :: use mdsio for "snapshot" (dumpfreq/diagfreq) output  C     snapshot_mdsio     :: use mdsio for "snapshot" (dumpfreq/diagfreq) output
274  C     monitor_stdio      :: use stdio for monitor output  C     monitor_stdio      :: use stdio for monitor output
 C     useMNC           :: overall package run-time flag  
 C     mnc_use_indir    :: use "mnc_indir_str" as input filename prefix  
 C     mnc_use_outdir   :: use "mnc_outdir_str" as output filename prefix  
 C     mnc_outdir_date  :: use a date string within the output dir name  
 C     mnc_echo_gvtypes :: echo type names (fails on many platforms)  
 C     pickup_write_mnc :: use mnc to write pickups  
 C     pickup_read_mnc  :: use mnc to read  pickups  
 C     mon_write_mnc    :: use mnc to write monitor output  
275        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,        COMMON /PARM_L/ usingCartesianGrid, usingSphericalPolarGrid,
276       & usingCurvilinearGrid, usingCylindricalGrid,       & usingCurvilinearGrid, usingCylindricalGrid,
277       & no_slip_sides,no_slip_bottom,       & no_slip_sides,no_slip_bottom,
# Line 298  C     mon_write_mnc    :: use mnc to wri Line 294  C     mon_write_mnc    :: use mnc to wri
294       & multiDimAdvection, useMultiDimAdvec, forcing_In_AB,       & multiDimAdvection, useMultiDimAdvec, forcing_In_AB,
295       & doThetaClimRelax, doSaltClimRelax, doTr1ClimRelax,       & doThetaClimRelax, doSaltClimRelax, doTr1ClimRelax,
296       & periodicExternalForcing,       & periodicExternalForcing,
297         & fluidIsAir, fluidIsWater,
298       & usingPCoords, usingZCoords, useDynP_inEos_Zc, setCenterDr,       & usingPCoords, usingZCoords, useDynP_inEos_Zc, setCenterDr,
299       & nonHydrostatic, quasiHydrostatic, globalFiles, useSingleCpuIO,       & nonHydrostatic, quasiHydrostatic, globalFiles, useSingleCpuIO,
300       & allowFreezing, useOldFreezing, groundAtK1,       & allowFreezing, useOldFreezing, groundAtK1,
301       & usePickupBeforeC35, usePickupBeforeC54, debugMode,       & usePickupBeforeC35, usePickupBeforeC54, debugMode,
302       & readPickupWithTracer, writePickupWithTracer,       & readPickupWithTracer, writePickupWithTracer,
      &     useMNC,  
      &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,  
      &     mnc_echo_gvtypes,  
      &     pickup_write_mnc, pickup_read_mnc,  
      &     timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc,  
303       & pickup_read_mdsio, pickup_write_mdsio, pickup_write_immed,       & pickup_read_mdsio, pickup_write_mdsio, pickup_write_immed,
304       & timeave_mdsio, snapshot_mdsio, monitor_stdio       & timeave_mdsio, snapshot_mdsio, monitor_stdio,
305         & outputTypesInclusive
306    
307        LOGICAL usingCartesianGrid        LOGICAL usingCartesianGrid
308        LOGICAL usingSphericalPolarGrid        LOGICAL usingSphericalPolarGrid
309        LOGICAL usingCylindricalGrid        LOGICAL usingCylindricalGrid
# Line 363  C     mon_write_mnc    :: use mnc to wri Line 357  C     mon_write_mnc    :: use mnc to wri
357        LOGICAL doSaltClimRelax        LOGICAL doSaltClimRelax
358        LOGICAL doTr1ClimRelax        LOGICAL doTr1ClimRelax
359        LOGICAL periodicExternalForcing        LOGICAL periodicExternalForcing
360          LOGICAL fluidIsAir
361          LOGICAL fluidIsWater
362        LOGICAL usingPCoords        LOGICAL usingPCoords
363        LOGICAL usingZCoords        LOGICAL usingZCoords
364        LOGICAL useDynP_inEos_Zc        LOGICAL useDynP_inEos_Zc
# Line 379  C     mon_write_mnc    :: use mnc to wri Line 375  C     mon_write_mnc    :: use mnc to wri
375        LOGICAL debugMode        LOGICAL debugMode
376        LOGICAL readPickupWithTracer        LOGICAL readPickupWithTracer
377        LOGICAL writePickupWithTracer        LOGICAL writePickupWithTracer
       LOGICAL  
      &     useMNC,  
      &     mnc_use_indir, mnc_use_outdir, mnc_outdir_date,  
      &     mnc_echo_gvtypes,  
      &     pickup_write_mnc, pickup_read_mnc,  
      &     timeave_mnc, snapshot_mnc, monitor_mnc, autodiff_mnc  
378        LOGICAL pickup_read_mdsio, pickup_write_mdsio        LOGICAL pickup_read_mdsio, pickup_write_mdsio
379        LOGICAL pickup_write_immed        LOGICAL pickup_write_immed
380        LOGICAL timeave_mdsio, snapshot_mdsio, monitor_stdio        LOGICAL timeave_mdsio, snapshot_mdsio, monitor_stdio
381          LOGICAL outputTypesInclusive
382    
383  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.  C--   COMMON /PARM_R/ "Real" valued parameters used by the model.
384  C     cg2dTargetResidual  C     cg2dTargetResidual
# Line 420  C     gBaro     :: Accel. due to gravity Line 411  C     gBaro     :: Accel. due to gravity
411  C     rhoNil    :: Reference density for the linear equation of state  C     rhoNil    :: Reference density for the linear equation of state
412  C     rhoConst  :: Vertically constant reference density  C     rhoConst  :: Vertically constant reference density
413  C     rhoConstFresh :: Constant reference density for fresh water (rain)  C     rhoConstFresh :: Constant reference density for fresh water (rain)
414    C     tRef      :: reference vertical profile for potential temperature
415    C     sRef      :: reference vertical profile for salinity/specific humidity
416  C     startTime :: Start time for model ( s )  C     startTime :: Start time for model ( s )
417  C     phiMin    :: Latitude of southern most cell face.  C     phiMin    :: Latitude of southern most cell face.
418  C     thetaMin  :: Longitude of western most cell face (this  C     thetaMin  :: Longitude of western most cell face (this
# Line 451  C     viscA4Grid:: non-dimensional grid- Line 444  C     viscA4Grid:: non-dimensional grid-
444  C     viscC4leith :: Leith non-dimensional viscosity factor  C     viscC4leith :: Leith non-dimensional viscosity factor
445  C     diffKhT   :: Laplacian diffusion coeff. for mixing of  C     diffKhT   :: Laplacian diffusion coeff. for mixing of
446  C                 heat laterally ( m^2/s )  C                 heat laterally ( m^2/s )
447  C     diffKrT   :: Laplacian diffusion coeff. for mixing of  C     diffKrNrT :: vertical profile of Laplacian diffusion coeff.
448  C                 heat vertically ( units of r^2/s )  C                 for mixing of heat vertically ( units of r^2/s )
449  C     diffK4T   :: Biharmonic diffusion coeff. for mixing of  C     diffK4T   :: Biharmonic diffusion coeff. for mixing of
450  C                 heat laterally ( m^4/s )  C                 heat laterally ( m^4/s )
451  C     diffKhS  ::  Laplacian diffusion coeff. for mixing of  C     diffKhS  ::  Laplacian diffusion coeff. for mixing of
452  C                 salt laterally ( m^2/s )  C                 salt laterally ( m^2/s )
453  C     diffKrS   :: Laplacian diffusion coeff. for mixing of  C     diffKrNrS :: vertical profile of Laplacian diffusion coeff.
454  C                 salt vertically ( units of r^2/s )  C                 for mixing of salt vertically ( units of r^2/s ),
455  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of  C     diffK4S   :: Biharmonic diffusion coeff. for mixing of
456  C                 salt laterally ( m^4/s )  C                 salt laterally ( m^4/s )
457  C     diffKrBL79surf :: T/S surface diffusivity (m^2/s) Bryan and Lewis, 1979  C     diffKrBL79surf :: T/S surface diffusivity (m^2/s) Bryan and Lewis, 1979
# Line 547  C      --"-"--  Quadratic  ( linear: 1/s Line 540  C      --"-"--  Quadratic  ( linear: 1/s
540       & viscAh, viscAhW, viscAhMax, viscAhGrid, viscC2leith,       & viscAh, viscAhW, viscAhMax, viscAhGrid, viscC2leith,
541       & viscA4,  viscA4Max, viscA4Grid, viscC4leith,       & viscA4,  viscA4Max, viscA4Grid, viscC4leith,
542       & viscAr, viscAstrain, viscAtension,       & viscAr, viscAstrain, viscAtension,
543       & diffKhT, diffK4T, diffKrT,       & diffKhT, diffK4T, diffKrNrT,
544       & diffKhS, diffK4S, diffKrS,       & diffKhS, diffK4S, diffKrNrS,
545       & diffKrBL79surf, diffKrBL79deep, diffKrBL79scl, diffKrBL79Ho,       & diffKrBL79surf, diffKrBL79deep, diffKrBL79scl, diffKrBL79Ho,
546       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,       & delT, tauCD, rCD, freeSurfFac, implicSurfPress, implicDiv2Dflow,
547       & hFacMin, hFacMinDz, hFacInf, hFacSup,       & hFacMin, hFacMinDz, hFacInf, hFacSup,
# Line 612  C      --"-"--  Quadratic  ( linear: 1/s Line 605  C      --"-"--  Quadratic  ( linear: 1/s
605        _RL viscA4Grid        _RL viscA4Grid
606        _RL viscC4leith        _RL viscC4leith
607        _RL diffKhT        _RL diffKhT
608        _RL diffKrT        _RL diffKrNrT(Nr)
609        _RL diffK4T        _RL diffK4T
610        _RL diffKhS        _RL diffKhS
611        _RL diffKrS        _RL diffKrNrS(Nr)
612        _RL diffK4S        _RL diffK4S
613        _RL diffKrBL79surf        _RL diffKrBL79surf
614        _RL diffKrBL79deep        _RL diffKrBL79deep
# Line 728  C Logical flags for selecting packages Line 721  C Logical flags for selecting packages
721        LOGICAL usegridalt        LOGICAL usegridalt
722        LOGICAL usediagnostics        LOGICAL usediagnostics
723        LOGICAL useEBM        LOGICAL useEBM
724          LOGICAL useMNC
725        COMMON /PARM_PACKAGES/        COMMON /PARM_PACKAGES/
726       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,       &        useKPP, useGMRedi, useOBCS, useAIM, useLand, useECCO,
727       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,       &        useSHAP_FILT, useZONAL_FILT, useGrdchk, useFLT,
728       &        usePTRACERS,  useSBO, useSEAICE, useThSIce, useBulkForce,       &        usePTRACERS,  useSBO, useSEAICE, useThSIce, useBulkForce,
729       &        usefizhi,  usegridalt, usediagnostics, useEBM,       &        usefizhi,  usegridalt, usediagnostics, useEBM, useMNC,
730       &        usePP81, useMY82, useOPPS, useGGL90       &        usePP81, useMY82, useOPPS, useGGL90
731    
732  CEH3 ;;; Local Variables: ***  CEH3 ;;; Local Variables: ***

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.134

  ViewVC Help
Powered by ViewVC 1.1.22