/[MITgcm]/MITgcm/verification/lab_sea/input_ad/data
ViewVC logotype

Annotation of /MITgcm/verification/lab_sea/input_ad/data

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


Revision 1.12 - (hide annotations) (download)
Tue Jan 17 15:38:17 2012 UTC (12 years, 3 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint63i
Changes since 1.11: +12 -22 lines
- remove Linear EOS parameters (not relevant with eosType='JMD95Z').
- switch also Momentum forcing out of AB (forcing_In_AB=F, previously
  just for tracer with tracForcingOutAB=1)

1 heimbach 1.1 # ====================
2     # | Model parameters |
3     # ====================
4     #
5     # Continuous equation parameters
6     #
7     # tRef - Reference vertical potential temperature (deg C)
8     # sRef - Reference vertical salinity (PSU)
9     # viscAh - Horizontal eddy viscosity coefficient (m^2/s)
10     # viscAz - Vertical eddy viscosity coefficient (m^2/s)
11     # diffKhT - Horizontal temperature diffusivity (m^2/s)
12     # diffKzT - Vertical temperature diffusivity (m^2/s)
13     # diffKhS - Horizontal salt diffusivity (m^2/s)
14     # diffKzS - Vertical salt diffusivity (m^2/s)
15     # gravity - Acceleration due to gravity (m/s^2)
16     # rigidLid - Set to true to use rigid lid
17     # implicitFreeSurface - Set to true to use implicit free surface
18     # eosType - Flag for linear or polynomial equation of state
19     # momAdvection - On/Off flag for momentum self transport
20     # momViscosity - On/Off flag for momentum mixing
21     #
22     &PARM01
23     tRef= 24.0 , 23.0 , 22.0 , 21.0 , 20.0 ,
24     19.0 , 18.0 , 17.0 , 16.0 , 15.0 ,
25     14.0 , 13.0 , 12.0 , 11.0 , 10.0 ,
26     9.0 , 8.0 , 7.0 , 6.0, 5.0 ,
27     4.0 , 3.0 , 2.0 ,
28     sRef= 34.65, 34.75, 34.82, 34.87, 34.90,
29     34.90, 34.86, 34.78, 34.69, 34.60,
30     34.58, 34.62, 34.68, 34.72, 34.73,
31     34.74, 34.73, 34.73, 34.72, 34.72,
32     34.71, 34.70, 34.69,
33     no_slip_sides=.FALSE.,
34     no_slip_bottom=.TRUE.,
35     viscAz=1.93e-5,
36     viscAh=5.E4,
37     diffKhT=0.0,
38     diffKzT=1.46e-5,
39     diffKhS=0.0,
40     diffKzS=1.46e-5,
41     rigidLid=.FALSE.,
42     implicitFreeSurface=.TRUE.,
43     eosType='JMD95Z',
44     saltStepping=.TRUE.,
45     tempStepping=.TRUE.,
46     momStepping=.TRUE.,
47     implicitDiffusion=.TRUE.,
48     implicitViscosity=.TRUE.,
49     allowFreezing=.FALSE.,
50 jmc 1.12 HeatCapacity_Cp = 3986.D0,
51 heimbach 1.1 gravity = 9.8156,
52 jmc 1.12 rhoConst = 1027.D0,
53 ifenty 1.10 rhoConstFresh = 999.8,
54 heimbach 1.1 useCDscheme=.TRUE.,
55     inAdExact=.TRUE.,
56 heimbach 1.5 #ph(
57 heimbach 1.8 staggerTimeStep=.TRUE.,
58 heimbach 1.5 multiDimAdvection=.TRUE.,
59     tempAdvScheme=30,
60     saltAdvScheme=30,
61     #ph)
62 jmc 1.12 #globalFiles=.TRUE.,
63     #- not safe to use globalFiles in multi-processors runs; set instead useSingleCpuIO
64     useSingleCpuIO=.FALSE.,
65     readBinaryPrec=32,
66     writeBinaryPrec=32,
67 heimbach 1.1 &
68    
69     # Elliptic solver parameters
70     #
71     # cg2dMaxIters - Maximum number of 2d solver iterations
72     # cg2dTargetResidual - Solver target residual
73     #
74     &PARM02
75 heimbach 1.5 cg2dMaxIters=1000,
76 jmc 1.12 cg2dTargetResidual=1.E-13,
77 heimbach 1.1 &
78    
79     # Time stepping parameters
80     #
81     # startTime - Integration starting time (s)
82     # endTime - Integration ending time (s)
83     # tauCD - CD scheme coupling timescale (s)
84     # deltaTMom - Timestep for momemtum equations (s)
85     # deltaTtracer - Tracer timestep (s)
86     # deltaTClock - Timestep used as model "clock" (s)
87     # abEps - Adams-Bashforth stabilising factor
88     # pChkPtFreq - Frequency of permanent check pointing (s)
89     # chkPtFreq - Frequency of rolling check pointing (s)
90     # dumpFreq - Frequency at which model state is stored (s)
91     # tauThetaClimRelax - Relaxation to climatology time scale (s)
92     # tauSaltClimRelax - Relaxation to climatology time scale (s)
93     #
94     &PARM03
95     tauCD=172800.,
96     startTime=0.0,
97 heimbach 1.11 nTimeSteps=3,
98 heimbach 1.1 deltaTmom=3600.0,
99     deltaTtracer=3600.0,
100     deltaTClock =3600.0,
101     cAdjFreq=0.,
102     abEps=0.1,
103 jmc 1.12 forcing_In_AB = .FALSE.,
104 heimbach 1.1 pChkptFreq=36000.,
105     chkptFreq= 0.,
106     dumpFreq = 0.,
107 jmc 1.12 taveFreq = 36000.,
108 heimbach 1.1 monitorFreq=1.,
109     adjMonitorFreq=1.,
110 heimbach 1.3 adjDumpFreq=1.,
111 heimbach 1.1 &
112    
113     # Gridding parameters
114     #
115     # usingSphericalPolarGrid - On/Off flag for spherical polar coordinates
116     # delX - Zonal grid spacing (degrees)
117     # delY - Meridional grid spacing (degrees)
118     # delZ - Vertical grid spacing (m)
119 jmc 1.7 # ygOrigin - Southern boundary latitude (degrees)
120 heimbach 1.1 #
121     &PARM04
122     usingSphericalPolarGrid=.TRUE.,
123     delX=20*2.E0,
124     delY=16*2.E0,
125     delZ= 10., 10., 15., 20., 20., 25., 35., 50., 75.,
126     100., 150., 200., 275., 350., 415., 450.,
127 jmc 1.12 500., 500., 500., 500., 500., 500., 500.,
128 jmc 1.7 ygOrigin=46.,
129     xgOrigin=280.,
130 jmc 1.12 rSphere = 6371.D3,
131 heimbach 1.1 &
132    
133     # Input datasets
134     #
135     # bathyFile - File containing bathymetry
136     # hydrogThetaFile - File containing initial potential temperature data
137     # hydrogSaltFile - File containing initial salinity data
138     # zonalWindFile - File containing zonal wind data
139     # meridWindFile - File containing meridional wind data
140     # thetaClimFile - File containing theta climatology used for relaxation
141     # saltClimFile - File containing salt climatology used for relaxation
142     #
143     &PARM05
144     bathyFile = 'bathy.labsea1979',
145     hydrogThetaFile = 'LevCli_temp.labsea1979',
146     hydrogSaltFile = 'LevCli_salt.labsea1979',
147     &

  ViewVC Help
Powered by ViewVC 1.1.22