| 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 |
|
|
# f0 - Reference coriolis parameter, |
| 16 |
|
|
# south edge of f on beta plane (1/s) |
| 17 |
|
|
# beta - df/dy (s^-1.m^-1) |
| 18 |
|
|
# tAlpha - Linear EOS thermal expansion coefficient (1/oC) |
| 19 |
|
|
# sBeta - Linear EOS haline contraction coefficient (1/ppt) |
| 20 |
|
|
# gravity - Acceleration due to gravity (m/s^2) |
| 21 |
|
|
# gBaro - Accel. due to gravity used in barotropic equation (m/s^2) |
| 22 |
|
|
# rigidLid - Set to true to use rigid lid |
| 23 |
|
|
# implicitFreeSurface - Set to true to use implicit free surface |
| 24 |
|
|
# eosType - Flag for linear or polynomial equation of state |
| 25 |
|
|
# GMkbackground - background value of GM/Redi coefficient |
| 26 |
|
|
# momAdvection - On/Off flag for momentum self transport |
| 27 |
|
|
# momViscosity - On/Off flag for momentum mixing |
| 28 |
|
|
# |
| 29 |
|
|
&PARM01 |
| 30 |
|
|
viscAz = 1.E-3, |
| 31 |
|
|
diffKzT = 1.E-5, |
| 32 |
|
|
diffKzS = 1.E-5, |
| 33 |
|
|
viscAh = 5.0E4, |
| 34 |
|
|
viscA4 = 5.e12, |
| 35 |
|
|
diffKhT = 1.0E3, |
| 36 |
|
|
diffKhS = 1.0E3, |
| 37 |
jmc |
1.10 |
rotationPeriod = 86400., |
| 38 |
heimbach |
1.1 |
f0 = 1.e-4, |
| 39 |
|
|
beta = 1.E-11, |
| 40 |
|
|
tAlpha = 2.E-4, |
| 41 |
|
|
sBeta = 7.4E-4, |
| 42 |
|
|
gravity = 9.81, |
| 43 |
|
|
gBaro = 9.81, |
| 44 |
|
|
rigidLid = .FALSE., |
| 45 |
|
|
implicitFreeSurface= .TRUE., |
| 46 |
|
|
implicitDiffusion = .TRUE., |
| 47 |
jmc |
1.6 |
useCDscheme = .TRUE., |
| 48 |
jmc |
1.7 |
useNHMTerms = .TRUE., |
| 49 |
heimbach |
1.1 |
eosType = 'POLY3', |
| 50 |
|
|
momAdvection = .TRUE., |
| 51 |
|
|
momViscosity = .TRUE., |
| 52 |
|
|
implicitDiffusion = .TRUE., |
| 53 |
|
|
implicitViscosity = .TRUE., |
| 54 |
|
|
no_slip_bottom = .TRUE., |
| 55 |
|
|
no_slip_sides = .FALSE., |
| 56 |
|
|
readBinaryPrec = 32, |
| 57 |
jmc |
1.9 |
#- not safe to use globalFiles in multi-processors runs |
| 58 |
|
|
#globalFiles = .TRUE. |
| 59 |
heimbach |
1.1 |
& |
| 60 |
|
|
|
| 61 |
|
|
# Elliptic solver parameters |
| 62 |
|
|
# |
| 63 |
|
|
# cg2dMaxIters - Maximum number of 2d solver iterations |
| 64 |
|
|
# cg2dTargetResidual - Solver target residual |
| 65 |
|
|
# |
| 66 |
|
|
&PARM02 |
| 67 |
|
|
cg2dMaxIters = 1000, |
| 68 |
heimbach |
1.2 |
cg2dTargetResidual = 1.E-13, |
| 69 |
heimbach |
1.1 |
& |
| 70 |
|
|
|
| 71 |
|
|
# Time stepping parameters |
| 72 |
|
|
# |
| 73 |
|
|
# startTime - Integration starting time (s) |
| 74 |
|
|
# endTime - Integration ending time (s) |
| 75 |
|
|
# tauCD - CD scheme coupling timescale (s) |
| 76 |
|
|
# deltaTMom - Timestep for momemtum equations (s) |
| 77 |
|
|
# deltaTtracer - Tracer timestep (s) |
| 78 |
|
|
# deltaTClock - Timestep used as model "clock" (s) |
| 79 |
|
|
# abEps - Adams-Bashforth stabilising factor |
| 80 |
|
|
# pChkPtFreq - Frequency of permanent check pointing (s) |
| 81 |
|
|
# chkPtFreq - Frequency of rolling check pointing (s) |
| 82 |
|
|
# dumpFreq - Frequency at which model state is stored (s) |
| 83 |
|
|
# tauThetaClimRelax - Relaxation to climatology time scale (s) |
| 84 |
|
|
# tauSaltClimRelax - Relaxation to climatology time scale (s) |
| 85 |
|
|
# |
| 86 |
|
|
&PARM03 |
| 87 |
|
|
startTime = 0.0, |
| 88 |
adcroft |
1.4 |
endTime = 72000.0, |
| 89 |
heimbach |
1.1 |
deltaTmom = 3600.0, |
| 90 |
|
|
TauCD = 172800. |
| 91 |
heimbach |
1.2 |
cAdjFreq = 0., |
| 92 |
heimbach |
1.1 |
abEps = 0.1, |
| 93 |
|
|
pChkptFreq = 0.0, |
| 94 |
|
|
chkptFreq = 0.0, |
| 95 |
dimitri |
1.8 |
dumpFreq = 39600.0, |
| 96 |
heimbach |
1.1 |
tauSaltClimRelax = 2592000.0, |
| 97 |
|
|
tauThetaClimRelax = 2592000.0, |
| 98 |
|
|
periodicExternalForcing = .TRUE., |
| 99 |
|
|
externForcingPeriod = 43200.0, |
| 100 |
heimbach |
1.2 |
externForcingCycle = 2764800.0, |
| 101 |
adcroft |
1.5 |
monitorFreq=1., |
| 102 |
heimbach |
1.1 |
& |
| 103 |
|
|
|
| 104 |
|
|
# Gridding parameters |
| 105 |
|
|
# |
| 106 |
|
|
# usingSphericalPolarGrid - On/Off flag for spherical polar coordinates |
| 107 |
|
|
# usingCartesianGrid - On/Off flag for selecting cartesian coordinates |
| 108 |
|
|
# delX - Zonal grid spacing (degrees) |
| 109 |
|
|
# delY - Meridional grid spacing (degrees) |
| 110 |
|
|
# delZ - Vertical grid spacing (m) |
| 111 |
|
|
# phiMin - Southern boundary latitude (degrees) |
| 112 |
|
|
# |
| 113 |
|
|
&PARM04 |
| 114 |
|
|
usingCartesianGrid = .FALSE., |
| 115 |
|
|
usingSphericalPolarGrid = .TRUE., |
| 116 |
|
|
delX = 20*2., |
| 117 |
|
|
delY = 16*2., |
| 118 |
|
|
delZ= 10., 10., 15., 20., 20., 25., 35., 50., 75., |
| 119 |
|
|
100., 150., 200., 275., 350., 415., 450., |
| 120 |
|
|
500., 500., 500., 500., 500., 500., 500. |
| 121 |
heimbach |
1.2 |
phiMin = 10., |
| 122 |
|
|
thetaMin= -42. |
| 123 |
heimbach |
1.1 |
& |
| 124 |
|
|
|
| 125 |
|
|
# Input datasets |
| 126 |
|
|
# |
| 127 |
|
|
# bathyFile - File containing bathymetry |
| 128 |
|
|
# hydrogThetaFile - File containing initial potential temperature data |
| 129 |
|
|
# hydrogSaltFile - File containing initial salinity data |
| 130 |
|
|
# zonalWindFile - File containing zonal wind data |
| 131 |
|
|
# meridWindFile - File containing meridional wind data |
| 132 |
|
|
# thetaClimFile - File containing theta climatology used for relaxation |
| 133 |
|
|
# saltClimFile - File containing salt climatology used for relaxation |
| 134 |
|
|
# |
| 135 |
|
|
&PARM05 |
| 136 |
|
|
bathyFile = 'kf_topog', |
| 137 |
|
|
hydrogThetaFile = 'kf_climtheta', |
| 138 |
|
|
hydrogSaltFile = 'kf_climsalt', |
| 139 |
|
|
zonalWindFile = 'kf_fu', |
| 140 |
|
|
meridWindFile = 'kf_fv', |
| 141 |
|
|
thetaClimFile = 'kf_sst', |
| 142 |
|
|
saltClimFile = 'kf_sss', |
| 143 |
|
|
surfQFile = 'kf_qnet', |
| 144 |
|
|
EmPmRFile = 'kf_empmr', |
| 145 |
|
|
surfQswFile = 'kf_sw', |
| 146 |
|
|
& |