@@ -119,8 +119,12 @@ cpl_defaults = {
119119 ocn_model="mom6"
120120 ice_model="cice"
121121 wav_model="ww3"
122- # future use: for MOM6 river runoff
122+ # MOM6 river runoff
123123 MOM6_RIVER_RUNOFF='True'
124+ # set USE_LA_LI2016 to the current default; this must be set False for restart repro
125+ MOM6_REPRO_LA='True'
126+ # set the THERMO_SPANS_COUPLING to the current default; according to Gustavo and Alper, the correct setting is "False"
127+ MOM6_THERMO_SPAN='True'
124128 NPROC_ICE='48'
125129 DT_ATMOS='900' #needed for C96 cases
126130 DT_DYNAM_MOM6='900'
@@ -151,7 +155,7 @@ cpl_defaults = {
151155# embeded bash script to create input files at prerun from specification
152156# in compset
153157
154- embed bash edit_inputs(CDATE,ATMRES,DT_CICE,NPROC_ICE,RUNTYPE,USE_RESTART_TIME,FRAZIL_FWSALT,RUNID,CICE_HIST_AVG,DUMPFREQ_N,DUMPFREQ,DT_THERM,DT_DYNAM,MOM6_RIVER_RUNOFF) [[[
158+ embed bash edit_inputs(CDATE,ATMRES,DT_CICE,NPROC_ICE,RUNTYPE,USE_RESTART_TIME,FRAZIL_FWSALT,RUNID,CICE_HIST_AVG,DUMPFREQ_N,DUMPFREQ,DT_THERM,DT_DYNAM,MOM6_RIVER_RUNOFF, MOM6_REPRO_LA, MOM6_THERMO_SPAN ) [[[
155159
156160python <<EOT
157161import os
@@ -206,7 +210,9 @@ with open("INPUT/MOM_input_template",'rt') as inf:
206210 for x in inf.readlines():
207211 newline=x.replace("DT_THERM_MOM6","@[DT_THERM]") \
208212 .replace("DT_DYNAM_MOM6","@[DT_DYNAM]") \
209- .replace("MOM6_RIVER_RUNOFF","@[MOM6_RIVER_RUNOFF]")
213+ .replace("MOM6_RIVER_RUNOFF","@[MOM6_RIVER_RUNOFF]") \
214+ .replace("MOM6_REPRO_LA","@[MOM6_REPRO_LA]") \
215+ .replace("MOM6_THERMO_SPAN","@[MOM6_THERMO_SPAN]")
210216 outf.write(newline)
211217
212218#diag_table
0 commit comments