Commit a2ababff authored by Dr Jeff Polton's avatar Dr Jeff Polton
Browse files

try non penetrative convection for IC stability

parent fa71f137
......@@ -42,7 +42,7 @@
cn_ocerst_out = "restart" ! suffix of ocean restart name (output)
cn_ocerst_outdir= "./restarts" ! directory in which to write output ocean restarts
ln_iscpl = .false. ! cavity evolution forcing or coupling to ice sheet model
nn_istate = 0 ! output the initial state (1) or not (0)
nn_istate = 1 ! output the initial state (1) or not (0)
ln_rst_list = .false. ! output restarts at list of times using nn_stocklist (T) or at set frequency with nn_stock (F)
nn_stock = 10 !43200 ! 14400 ! frequency of creation of a restart file (modulo referenced to 1)
nn_stocklist = 0,0,0,0,0,0,0,0,0,0 ! List of timesteps when a restart file is to be written
......@@ -129,10 +129,10 @@
!-----------------------------------------------------------------------
! ! file name ! frequency (hours) ! variable ! time interp.! clim ! 'yearly'/ ! weights ! rotation ! land/sea mask !
! ! ! (if <0 months) ! name ! (logical) ! (T/F) ! 'monthly' ! filename ! pairing ! filename !
sn_tem = 'initcd_votemper', -1 ,'votemper' , .false. , .true. , 'yearly' , '' , '' , ''
sn_sal = 'initcd_vosaline', -1 ,'vosaline' , .false. , .true. , 'yearly' , '' , '' , ''
!sn_dep = 'initcd_depth.nc' , -12 ,'gdept_4D', .false. , .true. , 'yearly' , '' , '' , ''
!sn_msk = 'initcd_mask.nc', -12 ,'mask', .false. , .true. , 'yearly' , '' , '' , ''
sn_tem = 'initcd_votemper', -12 ,'votemper' , .false. , .true. , 'yearly' , '' , '' , ''
sn_sal = 'initcd_vosaline', -12 ,'vosaline' , .false. , .true. , 'yearly' , '' , '' , ''
sn_dep = 'initcd_depth.nc' , -12 ,'gdept_4D', .false. , .true. , 'yearly' , '' , '' , ''
sn_msk = 'initcd_mask.nc', -12 ,'mask', .false. , .true. , 'yearly' , '' , '' , ''
!
cn_dir = './ICS/' ! root directory for the location of the runoff files
ln_tsd_init = .true. ! Initialisation of ocean T & S with T &S input data (T) or not (F)
......@@ -606,7 +606,7 @@ ln_rnf_depth_ini = .true. ! compute depth at initialisation from runoff file
ln_dyn3d_dmp =.false. ! open boundary condition for baroclinic velocities
rn_time_dmp = 1. ! Damping time scale in days
rn_time_dmp_out = 1. ! Outflow damping time scale
nn_rimwidth = 9 ! width of the relaxation zone
nn_rimwidth = 1 ! width of the relaxation zone
ln_vol = .false. ! total volume correction (see nn_volctl parameter)
nn_volctl = 1 ! = 0, the total water flux across open boundaries is zero
nb_jpk_bdy = 75 ! number of levels in the bdy data (set < 0 if consistent with planned run)
......@@ -710,8 +710,8 @@ ln_rnf_depth_ini = .true. ! compute depth at initialisation from runoff file
!-----------------------------------------------------------------------
&nameos ! ocean physical parameters
!-----------------------------------------------------------------------
ln_teos10 = .false. ! = Use TEOS-10 equation of state
ln_eos80 = .true. ! = Use EOS80 equation of state
ln_teos10 = .true. ! = Use TEOS-10 equation of state
ln_eos80 = .false. ! = Use EOS80 equation of state
ln_seos = .false. ! = Use simplified equation of state (S-EOS)
!
! ! S-EOS coefficients (ln_seos=T):
......@@ -933,7 +933,7 @@ ln_rnf_depth_ini = .true. ! compute depth at initialisation from runoff file
ln_zdfevd = .true. ! enhanced vertical diffusion (evd) (T) or not (F)
nn_evdm = 0 ! evd apply on tracer (=0) or on tracer and momentum (=1)
rn_avevd = 100. ! evd mixing coefficient [m2/s]
ln_zdfnpc = .false. ! Non-Penetrative Convective algorithm (T) or not (F)
ln_zdfnpc = .true. ! Non-Penetrative Convective algorithm (T) or not (F)
nn_npc = 1 ! frequency of application of npc
nn_npcp = 365 ! npc control print frequency
ln_zdfexp = .false. ! time-stepping: split-explicit (T) or implicit (F) time stepping
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment