Warning, /verification/lab_sea/input/data is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit 5e44d2ea on 2025-08-09 03:50:44 UTC
a2d6992aa1 Patr*0001 # ====================
0002 # | Model parameters |
0003 # ====================
0004 #
0005 # Continuous equation parameters
0006 #
0007 # tRef - Reference vertical potential temperature (deg C)
0008 # sRef - Reference vertical salinity (PSU)
0009 # viscAh - Horizontal eddy viscosity coefficient (m^2/s)
0010 # viscAz - Vertical eddy viscosity coefficient (m^2/s)
0011 # diffKhT - Horizontal temperature diffusivity (m^2/s)
0012 # diffKzT - Vertical temperature diffusivity (m^2/s)
0013 # diffKhS - Horizontal salt diffusivity (m^2/s)
0014 # diffKzS - Vertical salt diffusivity (m^2/s)
0015 # gravity - Acceleration due to gravity (m/s^2)
0016 # rigidLid - Set to true to use rigid lid
0017 # implicitFreeSurface - Set to true to use implicit free surface
0018 # eosType - Flag for linear or polynomial equation of state
0019 # momAdvection - On/Off flag for momentum self transport
0020 # momViscosity - On/Off flag for momentum mixing
0021 #
0022 &PARM01
0023 tRef= 24.0 , 23.0 , 22.0 , 21.0 , 20.0 ,
0024 19.0 , 18.0 , 17.0 , 16.0 , 15.0 ,
0025 14.0 , 13.0 , 12.0 , 11.0 , 10.0 ,
0026 9.0 , 8.0 , 7.0 , 6.0, 5.0 ,
0027 4.0 , 3.0 , 2.0 ,
0028 sRef= 34.65, 34.75, 34.82, 34.87, 34.90,
0029 34.90, 34.86, 34.78, 34.69, 34.60,
0030 34.58, 34.62, 34.68, 34.72, 34.73,
0031 34.74, 34.73, 34.73, 34.72, 34.72,
0032 34.71, 34.70, 34.69,
0033 no_slip_sides=.FALSE.,
0034 no_slip_bottom=.TRUE.,
0035 viscAz=1.93e-5,
0036 viscAh=5.E4,
0037 diffKhT=0.0,
0038 diffKzT=1.46e-5,
0039 diffKhS=0.0,
0040 diffKzS=1.46e-5,
0041 rigidLid=.FALSE.,
0042 implicitFreeSurface=.TRUE.,
8f999a98fa Patr*0043 eosType='JMD95Z',
a2d6992aa1 Patr*0044 saltStepping=.TRUE.,
0045 tempStepping=.TRUE.,
0046 momStepping=.TRUE.,
0047 implicitDiffusion=.TRUE.,
0048 implicitViscosity=.TRUE.,
0049 allowFreezing=.FALSE.,
05b7bb78c9 Jean*0050 #- set wrong celsius2K to reproduce old results:
0051 celsius2K=273.16,
b5d2aca571 Jean*0052 HeatCapacity_Cp = 3986.D0,
a2d6992aa1 Patr*0053 gravity = 9.8156,
e7251fa1dd Jean*0054 rhoConst = 1027.D0,
172555e26d Ian *0055 rhoConstFresh = 999.8,
e67f7f7c39 Jean*0056 useCDscheme=.TRUE.,
e7251fa1dd Jean*0057 useSingleCpuIO=.TRUE.,
0058 readBinaryPrec=32,
0059 writeBinaryPrec=32,
a2d6992aa1 Patr*0060 &
0061
0062 # Elliptic solver parameters
0063 #
0064 # cg2dMaxIters - Maximum number of 2d solver iterations
0065 # cg2dTargetResidual - Solver target residual
0066 #
0067 &PARM02
0068 cg2dMaxIters=500,
b5d2aca571 Jean*0069 cg2dTargetResidual=1.E-12,
a2d6992aa1 Patr*0070 &
0071
0072 # Time stepping parameters
0073 #
0074 # startTime - Integration starting time (s)
0075 # endTime - Integration ending time (s)
0076 # tauCD - CD scheme coupling timescale (s)
0077 # deltaTMom - Timestep for momemtum equations (s)
0078 # deltaTtracer - Tracer timestep (s)
0079 # deltaTClock - Timestep used as model "clock" (s)
0080 # abEps - Adams-Bashforth stabilising factor
0081 # pChkPtFreq - Frequency of permanent check pointing (s)
0082 # chkPtFreq - Frequency of rolling check pointing (s)
0083 # dumpFreq - Frequency at which model state is stored (s)
0084 # tauThetaClimRelax - Relaxation to climatology time scale (s)
0085 # tauSaltClimRelax - Relaxation to climatology time scale (s)
0086 #
0087 &PARM03
0088 tauCD=172800.,
5a57d7feaa Gael*0089 startTime=3600.0,
0d730dc7a6 Dimi*0090 endTime=36000.,
a2d6992aa1 Patr*0091 deltaTmom=3600.0,
0092 deltaTtracer=3600.0,
0093 deltaTClock =3600.0,
0094 cAdjFreq=0.,
0095 abEps=0.1,
e7251fa1dd Jean*0096 forcing_In_AB = .FALSE.,
a2d6992aa1 Patr*0097 pChkptFreq=36000.,
0098 chkptFreq= 0.,
0099 dumpFreq = 0.,
0100 monitorFreq=1.,
e7251fa1dd Jean*0101 pickupStrictlyMatch=.FALSE.,
a2d6992aa1 Patr*0102 &
0103
0104 # Gridding parameters
0105 #
0106 # usingSphericalPolarGrid - On/Off flag for spherical polar coordinates
0107 # delX - Zonal grid spacing (degrees)
0108 # delY - Meridional grid spacing (degrees)
0109 # delZ - Vertical grid spacing (m)
fdb16198f0 Jean*0110 # ygOrigin - Southern boundary latitude (degrees)
a2d6992aa1 Patr*0111 #
0112 &PARM04
0113 usingSphericalPolarGrid=.TRUE.,
a6026ad15f Jean*0114 delX=20*2.E0,
0115 delY=16*2.E0,
a2d6992aa1 Patr*0116 delZ= 10., 10., 15., 20., 20., 25., 35., 50., 75.,
0117 100., 150., 200., 275., 350., 415., 450.,
b5d2aca571 Jean*0118 500., 500., 500., 500., 500., 500., 500.,
fdb16198f0 Jean*0119 ygOrigin=46.,
0120 xgOrigin=280.,
e7251fa1dd Jean*0121 rSphere = 6371.D3,
a2d6992aa1 Patr*0122 &
0123
0124 # Input datasets
0125 #
0126 # bathyFile - File containing bathymetry
0127 # hydrogThetaFile - File containing initial potential temperature data
0128 # hydrogSaltFile - File containing initial salinity data
0129 # zonalWindFile - File containing zonal wind data
0130 # meridWindFile - File containing meridional wind data
0131 # thetaClimFile - File containing theta climatology used for relaxation
0132 # saltClimFile - File containing salt climatology used for relaxation
0133 #
0134 &PARM05
8f999a98fa Patr*0135 bathyFile = 'bathy.labsea1979',
0136 hydrogThetaFile = 'LevCli_temp.labsea1979',
0137 hydrogSaltFile = 'LevCli_salt.labsea1979',
a2d6992aa1 Patr*0138 &