Skip to content

Commit 8d9352d

Browse files
authored
Move sw_redist, sw_frac, sw_dtemp from thermo to shortwave namelist (#540)
* Move sw_redist, sw_frac, sw_dtemp from thermo to shortwave namelist Update verbose diagnostic output Update icepack to also include sw_redist, sw_frac, sw_dtemp changes in icepack driver (not required) Update version number in prep for next minor release * update verbose output in ice_init.F90 * update verbose output * update close_boundaries documentation
1 parent 40d3867 commit 8d9352d

File tree

6 files changed

+368
-406
lines changed

6 files changed

+368
-406
lines changed

cicecore/cicedynB/general/ice_init.F90

+358-395
Large diffs are not rendered by default.

cicecore/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CICE 6.1.3
1+
CICE 6.1.4

configuration/scripts/ice_in

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,6 @@
108108
dSdt_slow_mode = -5.0e-8
109109
phi_c_slow_mode = 0.05
110110
phi_i_mushy = 0.85
111-
sw_redist = .false.
112-
sw_frac = 0.9d0
113-
sw_dtemp = 0.02d0
114111
hfrazilmin = 0.05d0
115112
floediam = 300.0d0
116113
/
@@ -172,6 +169,9 @@
172169
dT_mlt = 1.5
173170
rsnw_mlt = 1500.
174171
kalg = 0.6
172+
sw_redist = .false.
173+
sw_frac = 0.9d0
174+
sw_dtemp = 0.02d0
175175
/
176176

177177
&ponds_nml

doc/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
# built documents.
6363
#
6464
# The short X.Y version.
65-
version = u'6.1.3'
65+
version = u'6.1.4'
6666
# The full version, including alpha/beta/rc tags.
67-
version = u'6.1.3'
67+
version = u'6.1.4'
6868

6969
# The language for content autogenerated by Sphinx. Refer to documentation
7070
# for a list of supported languages.

doc/source/user_guide/ug_case_settings.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ grid_nml
212212
"``bathymetry_file``", "string", "name of bathymetry file to be read", "‘unknown_bathymetry_file’"
213213
"``bathymetry_format``", "``default``", "NetCDF depth field", "‘default’"
214214
"", "``pop``", "pop thickness file in cm in ascii format", ""
215-
"``close_boundaries``", "logical", "set land on edges of grid", "``.false.``"
216215
"``dxrect``", "real", "x-direction grid spacing for rectangular grid in cm", "0.0"
217216
"``dyrect``", "real", "y-direction grid spacing for rectangular grid in cm", "0.0"
218217
"``gridcpl_file``", "string", "input file for coupling grid info", "'unknown_gridcpl_file'"
@@ -342,9 +341,6 @@ thermo_nml
342341
"``phi_c_slow_mode``", ":math:`0<\phi_c < 1`", "critical liquid fraction", "0.05"
343342
"``phi_i_mushy``", ":math:`0<\phi_i < 1`", "solid fraction at lower boundary", "0.85"
344343
"``Rac_rapid_mode``", "real", "critical Rayleigh number", "10.0"
345-
"``sw_redist``", "logical", "redistribute internal shortwave to surface", "``.false.``"
346-
"``sw_frac``", "real", "fraction redistributed", "0.9"
347-
"``sw_dtemp``", "real", "temperature difference from melt to start redistributing", "0.02"
348344
"", "", "", ""
349345

350346
.. _dynamics_nml:
@@ -438,6 +434,9 @@ shortwave_nml
438434
"``R_snw``", "real", "tuning parameter for snow (broadband albedo) from Delta-Eddington shortwave", "1.5"
439435
"``shortwave``", "``ccsm3``", "NCAR CCSM3 shortwave distribution method", "``ccsm3``"
440436
"", "``dEdd``", "Delta-Eddington method", ""
437+
"``sw_dtemp``", "real", "temperature difference from melt to start redistributing", "0.02"
438+
"``sw_frac``", "real", "fraction redistributed", "0.9"
439+
"``sw_redist``", "logical", "redistribute internal shortwave to surface", "``.false.``"
441440
"", "", "", ""
442441

443442
ponds_nml

0 commit comments

Comments
 (0)