Skip to content

Commit 4db5c77

Browse files
LI: Updates to Registry
* Update frames_per_outfile description and default value (this will make the default output filename to be 'output.nc') * Update default flow rate parameter to be the SI equivalent of 1e-16 pa-3 yr-1 * Changing default ice density from 900 to 910 * Updating default namelist file to reflect these changes
1 parent 40eec3f commit 4db5c77

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

namelist.input.landice

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
config_tracer_advection = "none"
77
/
88
&physical_parameters
9-
config_ice_density = 900.0
9+
config_ice_density = 910.0
1010
config_ocean_density = 1028.0
1111
config_sea_level = 0.0
12-
config_default_flowParamA = 4.3905866e-24
12+
config_default_flowParamA = 3.1709792e-24
1313
config_flowLawExponent = 3.0
1414
config_dynamic_thickness = 100.0
1515
/
@@ -35,7 +35,7 @@
3535
config_stats_interval = "0000_01:00:00"
3636
config_write_stats_on_startup = .true.
3737
config_write_output_on_startup = .true.
38-
config_frames_per_outfile = 1000
38+
config_frames_per_outfile = 0
3939
config_pio_num_iotasks = 0
4040
config_pio_stride = 1
4141
/

src/core_landice/Registry.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
</nml_record>
5959

6060
<nml_record name="physical_parameters">
61-
<nml_option name="config_ice_density" type="real" default_value="900.0" units="kg m^{-3}"
61+
<nml_option name="config_ice_density" type="real" default_value="910.0" units="kg m^{-3}"
6262
description="ice density to use"
6363
possible_values="Any positive real value"
6464
/>
@@ -70,8 +70,8 @@
7070
description="sea level to use for calculating floatation"
7171
possible_values="Any real value"
7272
/>
73-
<nml_option name="config_default_flowParamA" type="real" default_value="4.3905866e-24" units="s^{-1} Pa^{-n}"
74-
description="Defines the default value of the flow law parameter A to be used if it is not being calculated from ice temperature."
73+
<nml_option name="config_default_flowParamA" type="real" default_value="3.1709792e-24" units="s^{-1} Pa^{-n}"
74+
description="Defines the default value of the flow law parameter A to be used if it is not being calculated from ice temperature. Defaults to the SI representation of 1.0e-16 yr^{-1} Pa^{-3}."
7575
possible_values="Any positive real value"
7676
/>
7777
<nml_option name="config_flowLawExponent" type="real" default_value="3.0" units="none"
@@ -168,9 +168,9 @@
168168
description="Logical flag determining if an output file should be written prior to the first time step."
169169
possible_values=".true. or .false."
170170
/>
171-
<nml_option name="config_frames_per_outfile" type="integer" default_value="1000" units="unitless"
172-
description="Integer specifying how many time frames should be included in an output file. Once the maximum is reached, a new output file is created."
173-
possible_values="Any positive integer value greater than 0"
171+
<nml_option name="config_frames_per_outfile" type="integer" default_value="0" units="unitless"
172+
description="Integer specifying how many time frames should be included in an output file. Once the maximum is reached, a new output file is created. If 0 (or less) is specified then all time frames are included in a single file called 'output.nc'."
173+
possible_values="Any integer value"
174174
/>
175175
<nml_option name="config_pio_num_iotasks" type="integer" default_value="0" units="unitless"
176176
description="Integer specifying how many IO tasks should be used within the PIO library. A value of 0 causes all MPI tasks to also be IO tasks. IO tasks are required to write contiguous blocks of data to a file."

0 commit comments

Comments
 (0)