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 |
& |
29 |
|
30 |
# Elliptic solver parameters |
31 |
&PARM02 |
32 |
cg2dMaxIters=500, |
33 |
cg2dTargetResidual=1.E-13, |
34 |
& |
35 |
|
36 |
# Time stepping parameters |
37 |
&PARM03 |
38 |
# nIter0 = 0, |
39 |
# nTimeSteps = 1000, |
40 |
# 100 years of integration will yield a reasonable flow field |
41 |
startTime = 0., |
42 |
endTime = 2209032000., |
43 |
deltaTmom = 1200.0, |
44 |
tauCD = 321428., |
45 |
deltaTtracer= 43200.0, |
46 |
deltaTClock = 43200.0, |
47 |
# if you are using a version later than checkpoint45d on the main branch |
48 |
# you can uncomment the following line and increase the time step |
49 |
# deltaTtracer and deltaTClock to 172800.0 as well to speed up the |
50 |
# asynchronous time stepping |
51 |
# deltaTfreesurf = 172800.0, |
52 |
abEps = 0.1, |
53 |
pChkptFreq= 86400000., |
54 |
dumpFreq= 2629800., |
55 |
taveFreq= 2629800., |
56 |
taveFreq= 2629800., |
57 |
monitorFreq=0., |
58 |
# 2 months restoring timescale for temperature |
59 |
tauThetaClimRelax = 5184000.0, |
60 |
# 6 months restoring timescale for salinity |
61 |
tauSaltClimRelax = 7776000.0, |
62 |
periodicExternalForcing=.TRUE., |
63 |
externForcingPeriod=2629800., |
64 |
externForcingCycle=31557600., |
65 |
& |
66 |
|
67 |
# Gridding parameters |
68 |
&PARM04 |
69 |
usingCartesianGrid=.FALSE., |
70 |
usingSphericalPolarGrid=.TRUE., |
71 |
delR= 50., 70., 100., 140., 190., |
72 |
240., 290., 340., 390., 440., |
73 |
490., 540., 590., 640., 690., |
74 |
phiMin=-80., |
75 |
dySpacing=4., |
76 |
dxSpacing=4., |
77 |
& |
78 |
|
79 |
# Input datasets |
80 |
&PARM05 |
81 |
bathyFile= 'bathymetry.bin', |
82 |
hydrogThetaFile='lev_t.bin', |
83 |
hydrogSaltFile= 'lev_s.bin', |
84 |
zonalWindFile= 'trenberth_taux.bin', |
85 |
meridWindFile= 'trenberth_tauy.bin', |
86 |
thetaClimFile= 'lev_sst.bin', |
87 |
saltClimFile= 'lev_sss.bin', |
88 |
surfQFile= 'ncep_qnet.bin', |
89 |
# fresh water flux is turned off, uncomment next line to turn on |
90 |
# (not recommened together with surface salinity restoring) |
91 |
# EmPmRFile= 'ncep_emp.bin', |
92 |
& |