1 |
# ==================== |
2 |
# | Model parameters | |
3 |
# ==================== |
4 |
# |
5 |
# Continuous equation parameters |
6 |
&PARM01 |
7 |
tRef = 15*20., |
8 |
sRef = 15*35., |
9 |
viscAr=1.E-3, |
10 |
viscAh=5.E5, |
11 |
diffKhT=0.0, |
12 |
diffKrT=3.E-5, |
13 |
diffKhS=0.0, |
14 |
diffKrS=3.E-5, |
15 |
rhonil=1035., |
16 |
gravity=9.81, |
17 |
eosType = 'POLY3', |
18 |
ivdc_kappa=100., |
19 |
implicitDiffusion=.TRUE., |
20 |
allowFreezing=.TRUE., |
21 |
useRealFreshWaterFlux=.TRUE., |
22 |
# turn on looped cells |
23 |
hFacMin=.05, |
24 |
hFacMindr=50., |
25 |
# set precision of data files |
26 |
readBinaryPrec=32, |
27 |
tr1Stepping=.TRUE. |
28 |
globalFiles=.TRUE. |
29 |
useSingleCpuIO=.TRUE. |
30 |
& |
31 |
|
32 |
# Elliptic solver parameters |
33 |
&PARM02 |
34 |
cg2dMaxIters=500, |
35 |
cg2dTargetResidual=1.E-13, |
36 |
& |
37 |
|
38 |
# Time stepping parameters |
39 |
&PARM03 |
40 |
# nIter0 = 0, |
41 |
# nTimeSteps = 1000, |
42 |
# 100 years of integration will yield a reasonable flow field |
43 |
startTime = 0., |
44 |
endTime = 2209032000., |
45 |
deltaTmom = 1200.0, |
46 |
tauCD = 321428., |
47 |
deltaTtracer= 43200.0, |
48 |
deltaTClock = 43200.0, |
49 |
# if you are using a version later than checkpoint45d on the main branch |
50 |
# you can uncomment the following line and increase the time step |
51 |
# deltaTtracer and deltaTClock to 172800.0 as well to speed up the |
52 |
# asynchronous time stepping |
53 |
# deltaTfreesurf = 172800.0, |
54 |
abEps = 0.1, |
55 |
pChkptFreq= 86400000., |
56 |
dumpFreq= 2629800., |
57 |
taveFreq= 2629800., |
58 |
taveFreq= 2629800., |
59 |
monitorFreq=0., |
60 |
# 2 months restoring timescale for temperature |
61 |
tauThetaClimRelax = 5184000.0, |
62 |
# 6 months restoring timescale for salinity |
63 |
tauSaltClimRelax = 7776000.0, |
64 |
periodicExternalForcing=.TRUE., |
65 |
externForcingPeriod=2629800., |
66 |
externForcingCycle=31557600., |
67 |
& |
68 |
|
69 |
# Gridding parameters |
70 |
&PARM04 |
71 |
usingCartesianGrid=.FALSE., |
72 |
usingSphericalPolarGrid=.TRUE., |
73 |
delR= 50., 70., 100., 140., 190., |
74 |
240., 290., 340., 390., 440., |
75 |
490., 540., 590., 640., 690., |
76 |
phiMin=-80., |
77 |
dySpacing=4., |
78 |
dxSpacing=4., |
79 |
& |
80 |
|
81 |
# Input datasets |
82 |
&PARM05 |
83 |
bathyFile= 'bathymetry.bin', |
84 |
hydrogThetaFile='lev_t.bin', |
85 |
hydrogSaltFile= 'lev_s.bin', |
86 |
zonalWindFile= 'trenberth_taux.bin', |
87 |
meridWindFile= 'trenberth_tauy.bin', |
88 |
thetaClimFile= 'lev_sst.bin', |
89 |
saltClimFile= 'lev_sss.bin', |
90 |
surfQFile= 'ncep_qnet.bin', |
91 |
# fresh water flux is turned off, uncomment next line to turn on |
92 |
# (not recommened together with surface salinity restoring) |
93 |
# EmPmRFile= 'ncep_emp.bin', |
94 |
& |