<?xml version="1.0"?>

<namelist_definition>

<!-- Each namelist variable is defined in an <entry> element.  The
     content of the element is the documentation of how the variable is
     used.  Other aspects of the variable's definition are expressed as
     attributes of the <entry> element.  Note that it is an XML requirement
     that the attribute values are enclosed in quotes.  The attributes are:

     id
          The variable's name.  *** N.B. *** The name must be lower case.
          The module convert all namelist variable names to lower case
          since Fortran is case insensitive.

     type
          An abbreviation of the fortran declaration for the variable.
      Valid declarations are:

          char*n
          integer
          logical
          real

      Any of these types may be followed by a comma separated list of
      integers enclosed in parenthesis to indicate an array.

      The current namelist validation code only distinquishes between
      string and non-string types.

     input_pathname
          Only include this attribute to indicate that the variable
          contains the pathname of an input dataset that resides in the
          CESM inputdata directory tree.

      The recognized values are "abs" to indicate that an absolute
          pathname is required, or "rel:var_name" to indicate that the
          pathname is relative and that the namelist variable "var_name"
          contains the absolute root directory.

     category
          A category assigned for organizing the documentation.

     group
          The namelist group that the variable is declared in.

     valid_values
          This is an optional attribute that is mainly useful for variables
          that have only a small number of allowed values.
                                                                        -->


<!-- seaice_model -->

<entry id="config_dt" type="real"
	category="seaice_model" group="seaice_model">
Length of model time-step.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_calendar_type" type="char*1024"
	category="seaice_model" group="seaice_model">
Selection of the type of calendar that should be used in the simulation.

Valid values: 'gregorian', 'noleap'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_start_time" type="char*1024"
	category="seaice_model" group="seaice_model">
Timestamp describing the initial time of the simulation. If it is set to 'file', the initial time is read from restart_timestamp.

Valid values: 'YYYY-MM-DD_HH:MM:SS' or 'file'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_stop_time" type="char*1024"
	category="seaice_model" group="seaice_model">
Timestamp descriping the final time of the simulation. If it is set to 'none' the final time is determined from config_start_time and config_run_duration.

Valid values: 'YYYY-MM-DD_HH:MM:SS' or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_run_duration" type="char*1024"
	category="seaice_model" group="seaice_model">
Timestamp describing the length of the simulation. If it is set to 'none' the duration is determined from config_start_time and config_stop_time. config_run_duration overrides inconsistent values of config_stop_time.

Valid values: ''YYYY-MM-DD_HH:MM:SS' or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_num_halos" type="integer"
	category="seaice_model" group="seaice_model">
Determines the number of halo cells extending from a blocks owned cells (Called the 0-Halo). The default of 3 is the minimum that can be used with monotonic advection.

Valid values: Any positive integer value.
Default: Defined in namelist_defaults.xml
</entry>


<!-- io -->

<entry id="config_pio_num_iotasks" type="integer"
	category="io" group="io">
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 requried to write contiguous blocks of data to a file.

Valid values: Any positive integer value greater than or equal to 0.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_pio_stride" type="integer"
	category="io" group="io">
Integer specifying the stride of each IO task.

Valid values: Any positive integer value greater than 0.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_write_output_on_startup" type="logical"
	category="io" group="io">
If true write the output streams to disk after model initialization but before time stepping.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_test_case_diag" type="logical"
	category="io" group="io">
If true output test case diagnostics.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_test_case_diag_type" type="char*1024"
	category="io" group="io">
Test case diagnostic type.

Valid values: 'global_velocity', 'square_advection' or 'advection'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_full_abort_write" type="logical"
	category="io" group="io">
If true write the abort stream to disk after a critical error for the entire domain, not just failing block.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- decomposition -->

<entry id="config_block_decomp_file_prefix" type="char*1024"
	category="decomposition" group="decomposition">
Defines the prefix for the block decomposition file. Can include a path. The number of blocks is appended to the end of the prefix at run-time.

Valid values: Any path/prefix to a block decomposition file.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_number_of_blocks" type="integer"
	category="decomposition" group="decomposition">
Determines the number of blocks a simulation should be run with. If it is set to 0, the number of blocks is the same as the number of MPI tasks at run-time.

Valid values: Any integer greater than or equal to 0.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_explicit_proc_decomp" type="logical"
	category="decomposition" group="decomposition">
Determines if an explicit processor decomposition should be used. This is only useful if multiple blocks per processor are used.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_proc_decomp_file_prefix" type="char*1024"
	category="decomposition" group="decomposition">
Defines the prefix for the processor decomposition file. This file is only read if config_explicit_proc_decomp is true The number of processors is appended to the end of the prefix at run-time.

Valid values: Any path/prefix to a processor decomposition file.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_halo_exch" type="logical"
	category="decomposition" group="decomposition">
Determines if time integration halo exchanges are performed.

Valid values: .true. or .false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_aggregate_halo_exch" type="logical"
	category="decomposition" group="decomposition">
Determines if aggregated halo exchanges are used in some places.

Valid values: .true. or .false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_reuse_halo_exch" type="logical"
	category="decomposition" group="decomposition">
Determines if halo exchange lists are reused.

Valid values: .true. or .false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_load_balance_timers" type="logical"
	category="decomposition" group="decomposition">
Determines if mpi barriers are used and timed before halo exchanges.

Valid values: .true. or .false.
Default: Defined in namelist_defaults.xml
</entry>


<!-- restart -->

<entry id="config_do_restart" type="logical"
	category="restart" group="restart">
Determines if the initial conditions should be read from a restart file, or an input file.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_restart_timestamp_name" type="char*1024"
	category="restart" group="restart">
Path to the filename for restart timestamps to be read and written from.

Valid values: Path to a file.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_do_restart_hbrine" type="logical"
	category="restart" group="restart">
Restart the brine height tracer needed for vertical bgc

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_do_restart_zsalinity" type="logical"
	category="restart" group="restart">
Restart the z-salinity tracer

Valid values: false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_do_restart_bgc" type="logical"
	category="restart" group="restart">
Restart the ice biogeochemistry

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_do_restart_snow_density" type="logical"
	category="restart" group="restart">
Restart the snow density tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_do_restart_snow_grain_radius" type="logical"
	category="restart" group="restart">
Restart the snow grain radius tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- dimensions -->

<entry id="config_nCategories" type="integer"
	category="dimensions" group="dimensions">
The number of ice thickness categories to use.

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nIceLayers" type="integer"
	category="dimensions" group="dimensions">
The number of ice layers in the vertical direction to use.

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nSnowLayers" type="integer"
	category="dimensions" group="dimensions">
The number of snow layers in the vertical direction to use.

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>


<!-- initialize -->

<entry id="config_earth_radius" type="real"
	category="initialize" group="initialize">
Earth radius in m

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_condition_type" type="char*1024"
	category="initialize" group="initialize">
Initial condition type for sea ice state.

Valid values: 'restart', 'uniform', 'circle', 'square', 'uniform_interior' or 'uniform_1D'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_ice_area" type="real"
	category="initialize" group="initialize">
Sea ice concentration at initialization.

Valid values: A real number between 0.0 and 1.0 inclusive.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_ice_volume" type="real"
	category="initialize" group="initialize">
Sea ice volume at initialization.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_snow_volume" type="real"
	category="initialize" group="initialize">
Sea ice snow volume at initialization.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_latitude_north" type="real"
	category="initialize" group="initialize">
Minimum latitude limit for initial northern hemisphere sea ice extent.

Valid values: Any real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_latitude_south" type="real"
	category="initialize" group="initialize">
Maximum latitude limit for initial southern hemisphere sea ice extent.

Valid values: Any real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_velocity_type" type="char*1024"
	category="initialize" group="initialize">
Initial condition type for sea ice velocity.

Valid values: 'uniform', 'ocean', 'random', 'special', or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_uvelocity" type="real"
	category="initialize" group="initialize">
Sea ice velocity in the U direction at initialization. ???Geo or native???

Valid values: Any real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_initial_vvelocity" type="real"
	category="initialize" group="initialize">
Sea ice velocity in the V direction at initialization. ???Geo or native???

Valid values: Any real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_calculate_coriolis" type="logical"
	category="initialize" group="initialize">
If True calculate the Coriolis parameter at initialization from the latitude.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>


<!-- use_sections -->

<entry id="config_use_dynamics" type="logical"
	category="use_sections" group="use_sections">
If true calculate dynamics.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_velocity_solver" type="logical"
	category="use_sections" group="use_sections">
If true calculate the sea ice velocity.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_advection" type="logical"
	category="use_sections" group="use_sections">
If true perform advection of the sea ice.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_forcing" type="logical"
	category="use_sections" group="use_sections">
If true calculate input forcing fields.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_package" type="logical"
	category="use_sections" group="use_sections">
If true perform calculations from the column physics package.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_prescribed_ice" type="logical"
	category="use_sections" group="use_sections">
If true use prescribed ice mode.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_prescribed_ice_forcing" type="logical"
	category="use_sections" group="use_sections">
If true use prescribed ice mode forcing through the MPAS streams system.

Valid values: true or .false
Default: Defined in namelist_defaults.xml
</entry>


<!-- forcing -->

<entry id="config_atmospheric_forcing_type" type="char*1024"
	category="forcing" group="forcing">
Atmospheric forcing type.

Valid values: 'CORE' or 'ISPOL'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_start_time" type="char*1024"
	category="forcing" group="forcing">
Forcing time to use at the simulation start time

Valid values: 'YYYY-MM-DD_HH:MM:SS
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_cycle_start" type="char*1024"
	category="forcing" group="forcing">
Start time for the forcing cycle.

Valid values: 'YYYY-MM-DD_HH:MM:SS
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_cycle_duration" type="char*1024"
	category="forcing" group="forcing">
Duration of the forcing cycle.

Valid values: 'YYYY-MM-DD_HH:MM:SS
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_precipitation_units" type="char*1024"
	category="forcing" group="forcing">
Forcing input precipitation units.

Valid values: 'mm_per_month', 'mm_per_day', or 'mm_per_sec'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_sst_type" type="char*1024"
	category="forcing" group="forcing">
Sea surface temperature ocean forcing type.

Valid values: 'ncar' or 'ISPOL'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_forcing_bgc_type" type="char*1024"
	category="forcing" group="forcing">
Ocean biogeochemistry forcing type.

Valid values: 'ISPOL'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_update_ocean_fluxes" type="logical"
	category="forcing" group="forcing">


Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_include_pond_freshwater_feedback" type="logical"
	category="forcing" group="forcing">
Reduce the ocean fresh water flux by the pond fresh water flux for coupling.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- testing -->

<entry id="config_use_test_ice_shelf" type="logical"
	category="testing" group="testing">
If true test add a test ice shelf to the ice shelf mask.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_testing_system_test" type="logical"
	category="testing" group="testing">
If true initialize variables that will fail the testing system tests.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_congelation_basal_melt" type="logical"
	category="testing" group="testing">
If true congelation and basal melt processes are active.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_lateral_melt" type="logical"
	category="testing" group="testing">
If true lateral melt process is active.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_latent_processes" type="logical"
	category="testing" group="testing">
If true latent heat processes are active.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_limit_air_temperatures" type="logical"
	category="testing" group="testing">
If true limit air temperatures above

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- velocity_solver -->

<entry id="config_dynamics_subcycle_number" type="integer"
	category="velocity_solver" group="velocity_solver">
The number of dynamics subcycles to perform per thermodynamic time step (config_dt)

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_rotate_cartesian_grid" type="logical"
	category="velocity_solver" group="velocity_solver">
Rotate the velocity directions from geographic so their pole lies on the equator.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_include_metric_terms" type="logical"
	category="velocity_solver" group="velocity_solver">
Include metric terms due to Earth curvature in velocity solver horizontal operators.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_elastic_subcycle_number" type="integer"
	category="velocity_solver" group="velocity_solver">
The number of elastic EVP subcycles to perform per dynamics time step.

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_strain_scheme" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Choice of stress divergence scheme to use in the velocity solver.

Valid values: 'weak', or 'variational'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_constitutive_relation_type" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Choice of constitutive relation to use in the velocity solver.

Valid values: 'evp', 'evp_revised', 'linear', or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_stress_divergence_scheme" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Choice of stress divergence scheme to use in the velocity solver.

Valid values: 'weak', or 'variational'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_variational_basis" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Type of basis functions to use with the variational stress divergence scheme.

Valid values: 'wachspress' or 'pwl'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_variational_denominator_type" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Type of denominator in variational calculation.

Valid values: 'original' or 'alternate'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_wachspress_integration_type" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Type of integration to perform with the Wachspress variational stress divergence scheme.

Valid values: 'trapezoidal', 'dunavant' or 'fekete'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_wachspress_integration_order" type="integer"
	category="velocity_solver" group="velocity_solver">
Order of integration for Wachspress basis integrations.

Valid values: 'trapezoidal': any positive integer, 'dunavant':1-10,12, 'fekete':1-6,8,9
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_calc_velocity_masks" type="logical"
	category="velocity_solver" group="velocity_solver">
Calculate velocity masks.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_average_variational_strain" type="logical"
	category="velocity_solver" group="velocity_solver">
Average variational strains over vertex.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_air_stress" type="logical"
	category="velocity_solver" group="velocity_solver">
If true include the air stress term in the velocity solver calculations.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_ocean_stress" type="logical"
	category="velocity_solver" group="velocity_solver">
If true include the ocean stress term in the velocity solver calculations.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_surface_tilt" type="logical"
	category="velocity_solver" group="velocity_solver">
If true include the sea surface tilt stress term in the velocity solver calculations.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_geostrophic_surface_tilt" type="logical"
	category="velocity_solver" group="velocity_solver">
If true calculate the sea surface tilt stress assuming currents are geostrophic.

Valid values: true or. false.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ocean_stress_type" type="char*1024"
	category="velocity_solver" group="velocity_solver">
Method for calculating ocean stress.

Valid values: 'linear', or 'quadratic'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_special_boundaries_velocity" type="logical"
	category="velocity_solver" group="velocity_solver">
Use the special boundaries velocities option.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_special_boundaries_velocity_masks" type="logical"
	category="velocity_solver" group="velocity_solver">
Use the special boundaries velocity mask option.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- advection -->

<entry id="config_advection_type" type="char*1024"
	category="advection" group="advection">
Type of advection scheme (upwind or incremental remapping).

Valid values: 'upwind' and 'incremental_remap'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_monotonic" type="logical"
	category="advection" group="advection">
If true then fluxes are limited to produce a monotonic advection scheme.

Valid values: true and false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_conservation_check" type="logical"
	category="advection" group="advection">
If true test the advection results for tracer conservation (incremental remap only).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_monotonicity_check" type="logical"
	category="advection" group="advection">
If true test the advection results for monotonicity (incremental remap only).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_recover_tracer_means_check" type="logical"
	category="advection" group="advection">
If true compare mass*tracer products for incremental remapping with analytical values.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- column_package -->

<entry id="config_use_column_shortwave" type="logical"
	category="column_package" group="column_package">
Run the shortwave radiation column physics calculation.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_vertical_thermodynamics" type="logical"
	category="column_package" group="column_package">
Run the vertical thermodynamics column physics calculation.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_biogeochemistry" type="logical"
	category="column_package" group="column_package">
Use biological and chemical tracers in the ice

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_itd_thermodynamics" type="logical"
	category="column_package" group="column_package">
Run the ice thickness distribution thermodynamics column physics calculation.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_ridging" type="logical"
	category="column_package" group="column_package">
Run the ridging column physics calculation.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_column_snow_tracers" type="logical"
	category="column_package" group="column_package">
Allow snow modifications plus additional snow tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- column_tracers -->

<entry id="config_use_ice_age" type="logical"
	category="column_tracers" group="column_tracers">
If true use the ice age tracer.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_first_year_ice" type="logical"
	category="column_tracers" group="column_tracers">
If true use the first year ice tracer.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_level_ice" type="logical"
	category="column_tracers" group="column_tracers">
If true use the level ice tracers.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_cesm_meltponds" type="logical"
	category="column_tracers" group="column_tracers">
If true use the cesm meltponds tracers.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_level_meltponds" type="logical"
	category="column_tracers" group="column_tracers">
If true use the level ice meltponds tracers.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_topo_meltponds" type="logical"
	category="column_tracers" group="column_tracers">
If true use the topo meltpond tracers.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_aerosols" type="logical"
	category="column_tracers" group="column_tracers">
Carry aerosols in the ice (NCAR scheme)

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_effective_snow_density" type="logical"
	category="column_tracers" group="column_tracers">
Use effective snow density

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_snow_grain_radius" type="logical"
	category="column_tracers" group="column_tracers">
Use prognosed snow grain radius aging

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_special_boundaries_tracers" type="logical"
	category="column_tracers" group="column_tracers">
Modify tracers in given boundary cells.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- biogeochemistry -->

<entry id="config_use_brine" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the brine height tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_vertical_zsalinity" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use z-salinity (with Bitz and Lipscomb 1999 thermodynamics)

Valid values: false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_vertical_biochemistry" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Turn on the reaction terms for vertical biological tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_shortwave_bioabsorption" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Permit radiative transfer calculations that include dynamic chlorophyll and aerosols if active

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_vertical_tracers" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Allow vertically resolved biological and chemical tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_skeletal_biochemistry" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the bottom 1-layer biogeochemistry

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_nitrate" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the nitrate tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_carbon" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use dissolved organic and inorganic carbon tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_chlorophyll" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the chlorophyll tracer (currently not implemented!)

Valid values: false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_macromolecules" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use ocean macromolecule to determine DOC fractions in ice-ocean coupling

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_ammonium" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the ammonium tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_silicate" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the silicate tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_DMS" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use DMS/DMSPd/DMSPp species

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_nonreactive" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use a non-reactive nitrate tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_humics" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use the humic matter tracer

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_DON" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use dissolved organic nitrogen (proteins and amino acids)

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_iron" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Use particulate and dissolved iron tracers

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_modal_aerosols" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Aerosols are consistent with the CAM modal aerosol scheme

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_zaerosols" type="logical"
	category="biogeochemistry" group="biogeochemistry">
Aerosols in the ice use the z-aerosol scheme

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_skeletal_bgc_flux_type" type="char*1024"
	category="biogeochemistry" group="biogeochemistry">
Determines the ocean-ice fluxes of biogeochemistry for the bottom1-layer model: in Jin2006, the piston velocity is a function of ice growth/melt rate, in default, the piston velocity is constant

Valid values: Jin2006 or default
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_scale_initial_vertical_bgc" type="logical"
	category="biogeochemistry" group="biogeochemistry">
initialize the vertical ice biogeochemistry profile to scale with the salinity restart/initial profile

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_biogrid_bottom_molecular_sublayer" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the value of the ice/ocean molecular sublayer for the vertical biogeochemistry model

Valid values: positive real number less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_biogrid_top_molecular_sublayer" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the value of the ice surface molecular sublayer for the vertical biogeochemistry model

Valid values: positive real number less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_bio_gravity_drainage_length_scale" type="real"
	category="biogeochemistry" group="biogeochemistry">
positive real number less than 1

Valid values: Sets the gravity drainage length scale in the biological transport model
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_zsalinity_molecular_sublayer" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ice/ocean molecular sublayer for the z-salinity model

Valid values: zero or positive real number less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_zsalinity_gravity_drainage_scale" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the gravity drainage length scale in the z-salinity model

Valid values: positive real number less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_snow_porosity_at_ice_surface" type="real"
	category="biogeochemistry" group="biogeochemistry">
Specifies the snow porosity (volume of air/total volume) at the ice surface

Valid values: real between 0 and 1 or negative.  If negative, compute porosity from snow density
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_new_ice_fraction_biotracer" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of biological tracer retained as new sea ice is formed from ocean water

Valid values: positive real number less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_biotracer_in_frazil" type="real"
	category="biogeochemistry" group="biogeochemistry">
Factor multiplying the ocean concentration of a biological tracer in new frazil ice

Valid values: positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Si_to_N_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of silicate to nitrogen in diatoms

Valid values: positive real of order 1.8
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Si_to_N_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of silicate to nitrogen in small plankton

Valid values: 0
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Si_to_N_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of silicate to nitrogen in phaeocystis

Valid values: 0
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_S_to_N_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of sulfur to nitrogen in diatoms

Valid values: order of 0.03
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_S_to_N_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of sulfur to nitrogen in small plankeon

Valid values: order of 0.03
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_S_to_N_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of sulfur to nitrogen in phaeocystis

Valid values: order of 0.03
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_C_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to carbon in diatoms

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_C_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to carbon in small plankton

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_C_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to carbon in phaeocystis

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_N_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to nitrogen in diatoms

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_N_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to nitrogen in small plankton

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_N_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to nitrogen in phaeocystis

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_DON" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to dissolved organic nitrogen

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_DOC_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to poly/saccharid carbon

Valid values: positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_DOC_lipids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Sets the ratio of iron to lipid carbon

Valid values: positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_respiration_fraction_of_growth" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of algal growth that is lost due to respiration

Valid values: positive real less than one
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_rapid_mobile_to_stationary_time" type="real"
	category="biogeochemistry" group="biogeochemistry">
Rapid adsorption timescale

Valid values: zero or positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_long_mobile_to_stationary_time" type="real"
	category="biogeochemistry" group="biogeochemistry">
Slow adsorption timescale

Valid values: zero or positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_algal_maximum_velocity" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum speed at which diatoms can move

Valid values: zero or positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_Fe_to_dust" type="real"
	category="biogeochemistry" group="biogeochemistry">
Mass ratio of iron in dust

Valid values: zero or positive real number
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_solubility_of_Fe_in_dust" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of iron that is soluble

Valid values: real number between and including zero and one
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_chla_absorptivity_of_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Absorptivity of chlorophyll in diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_chla_absorptivity_of_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Absorptivity of chlorophyll in small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_chla_absorptivity_of_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Absorptivity of chlorophyll in phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_attenuation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the ability of diatoms to utilize light

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_attenuation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the ability of small plankton to utilize light

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_attenuation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the ability of phaeocystis to utilize light

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_inhibition_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the strength of light inhibition to growth for diatoms

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_inhibition_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the strength of light inhibition to growth for small plankton

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_light_inhibition_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the strength of light inhibition to growth for phaeocystis

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_growth_rate_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum growth rate for diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_growth_rate_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum growth rate for small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_growth_rate_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum growth rate for phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_growth_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the temperature dependence of growth for diatoms

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_growth_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the temperature dependence of growth for small plankton

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_growth_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Controls the temperature dependence of growth for phaeocystis

Valid values: positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_grazed_fraction_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of diatom biomass grazed

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_grazed_fraction_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of small plankton biomass grazed

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_grazed_fraction_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of phaeocystis biomass grazed

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mortality_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Mortality rate of diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mortality_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Mortality rate of small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mortality_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Mortality rate of phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_mortality_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Temperature dependence of diatom mortality rate

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_mortality_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Temperature dependence of small plankton mortality rate

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temperature_mortality_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Temperature dependence of phaeocystis mortality rate

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_exudation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Rate diatoms exude DOC

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_exudation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Rate small plankton exude DOC

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_exudation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Rate phaeocystis exude DOC

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nitrate_saturation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Nitrate half saturation for diatom growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nitrate_saturation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Nitrate half saturation for small plankton growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nitrate_saturation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Nitrate half saturation for phaeocystis growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ammonium_saturation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Ammonium half saturation for diatom growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ammonium_saturation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Ammonium half saturation for small plankton growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ammonium_saturation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Ammonium half saturation for phaeocystis growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_silicate_saturation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Silicate half saturation for diatom growth

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_silicate_saturation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Silicate half saturation for small plankton growth

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_silicate_saturation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Silicate half saturation for phaeocystis growth

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_iron_saturation_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Iron half saturation for diatom growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_iron_saturation_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Iron half saturation for small plankton growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_iron_saturation_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Iron half saturation for phaeocystis growth

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_spilled_to_DON" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of spilled grazing to proteins

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_degredation_of_DON" type="real"
	category="biogeochemistry" group="biogeochemistry">
Bacterial degredation of DON

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_DON_ammonium" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of remineralized DON converted to ammonium

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_loss_to_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of mortality to poly/saccharids

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_loss_to_lipids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of mortality to lipids

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_exudation_to_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fracton of exudation to poly/saccharids

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_exudation_to_lipids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of exudation to lipids

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_remineralization_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Bacterial degredaton rate of poly/saccarids

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_remineralization_lipids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Bacterial degredation rate of lipids

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_brine_temperature" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum brine temperature

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_salinity_dependence_of_growth" type="real"
	category="biogeochemistry" group="biogeochemistry">
Salinity limitation factor

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_minimum_optical_depth" type="real"
	category="biogeochemistry" group="biogeochemistry">
Minimum optical depth above which light attenuates

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_slopped_grazing_fraction" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of grazing spilled or slopped

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_excreted_fraction" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of assimilation excreted

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_mortality_to_ammonium" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of mortality to ammonium

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fraction_iron_remineralized" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of remineralized iron

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_nitrification_rate" type="real"
	category="biogeochemistry" group="biogeochemistry">
Nitrification rate

Valid values: zero or positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_desorption_loss_particulate_iron" type="real"
	category="biogeochemistry" group="biogeochemistry">
Desorption rate of particulate iron to dissolved iron

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_loss_fraction" type="real"
	category="biogeochemistry" group="biogeochemistry">
Maximum uptake fraction in a single timestep

Valid values: zero or positive real less than 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_maximum_ratio_iron_to_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Optimal ratio of dissolved iron to poly/saccharids in the brine

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_respiration_loss_to_DMSPd" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of respiration loss as DMSPd

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_DMSP_to_DMS_conversion_fraction" type="real"
	category="biogeochemistry" group="biogeochemistry">
Fraction of conversion to DMS given high yield

Valid values: zero or positive real less than or equal to 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_DMSP_to_DMS_conversion_time" type="real"
	category="biogeochemistry" group="biogeochemistry">
Stefels conversion time

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_DMS_oxidation_time" type="real"
	category="biogeochemistry" group="biogeochemistry">
DMS oxidation time

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of diatoms

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of small plankton

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of phaeocystis

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_nitrate" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of nitrate

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_ammonium" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of ammonium

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_silicate" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of silicate

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_DMSPp" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of particulate DMSP

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_DMSPd" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dissolved DMSP

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_humics" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of humics

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_saccharids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of poly/saccharids

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_lipids" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of lipids

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_inorganic_carbon" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dissolved inorganic carbon

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_proteins" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of proteins

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_dissolved_iron" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dissolved iron

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_particulate_iron" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of particulate iron

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_black_carbon1" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of black carbon 1 pool

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_black_carbon2" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of black carbon 1 pool

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_dust1" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dust pool 1

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_dust2" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dust pool 2

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_dust3" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dust pool 3

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_mobility_type_dust4" type="real"
	category="biogeochemistry" group="biogeochemistry">
Transport type of dust pool 4

Valid values: -1 = entirely in the mobile phase; 0 = retention dominated; 1 = release dominated; 0.5 = equal but rapid exchange; 2 = equal but slow exchange
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_C_to_N_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal carbon to nitrogen mole ratio for diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_C_to_N_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal carbon to nitrogen mole ratio for small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_C_to_N_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal carbon to nitrogen mole ratio for phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_chla_to_N_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal chlorophyll to nitrogen ratio for diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_chla_to_N_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal chlorophyll to nitrogen ratio for small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_chla_to_N_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Algal chlorophyll to nitrogen ratio for phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_scales_absorption_diatoms" type="real"
	category="biogeochemistry" group="biogeochemistry">
Scales absorbed radiation for diatoms

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_scales_absorption_small_plankton" type="real"
	category="biogeochemistry" group="biogeochemistry">
Scales absorbed radiation for small plankton

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_scales_absorption_phaeocystis" type="real"
	category="biogeochemistry" group="biogeochemistry">
Scales absorbed radiation for phaeocystis

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_C_to_N_proteins" type="real"
	category="biogeochemistry" group="biogeochemistry">
Ratio of carbon to nitrogen in proteins

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>


<!-- shortwave -->

<entry id="config_shortwave_type" type="char*1024"
	category="shortwave" group="shortwave">
Shortwave radiation method.

Valid values: 'ccsm3' or 'dEdd'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_albedo_type" type="char*1024"
	category="shortwave" group="shortwave">
Albedo parameterization type.

Valid values: 'ccsm3' or 'constant'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_snicar_ad" type="logical"
	category="shortwave" group="shortwave">
If true turn on snicar_ad 5-band snow system

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_visible_ice_albedo" type="real"
	category="shortwave" group="shortwave">
Visible ice albedo for ice thickness greater than config_variable_albedo_thickness_limit.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_infrared_ice_albedo" type="real"
	category="shortwave" group="shortwave">
Near-IR ice albedo for ice thickness greater than config_variable_albedo_thickness_limit.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_visible_snow_albedo" type="real"
	category="shortwave" group="shortwave">
Visible cold snow albedo.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_infrared_snow_albedo" type="real"
	category="shortwave" group="shortwave">
Near-IR cold snow albedo.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_variable_albedo_thickness_limit" type="real"
	category="shortwave" group="shortwave">
Ice thickness above which the ice albedo is constant.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ice_shortwave_tuning_parameter" type="real"
	category="shortwave" group="shortwave">
Sea ice tuning parameter; +1 for 1sig increase in albedo.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_pond_shortwave_tuning_parameter" type="real"
	category="shortwave" group="shortwave">
Ponded ice tuning parameter; +1 for 1sig increase in albedo.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_snow_shortwave_tuning_parameter" type="real"
	category="shortwave" group="shortwave">
Snow tuning parameter; +1 for ~.01 change in broadband albedo.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_temp_change_snow_grain_radius_change" type="real"
	category="shortwave" group="shortwave">
Change in temperture for non-melt to melt snow grain radius change.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_max_melting_snow_grain_radius" type="real"
	category="shortwave" group="shortwave">
Maximum melting snow grain radius.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_algae_absorption_coefficient" type="real"
	category="shortwave" group="shortwave">
Algae absorption coefficient for 0.5 m thick layer.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>


<!-- snow -->

<entry id="config_snow_redistribution_scheme" type="char*1024"
	category="snow" group="snow">
Use a snow redistribution scheme

Valid values: '30percent (30% rule, precip only)','30percentsw (30% rulewith shortwave)','ITDsd (Lecomte PhD, 2014)','ITDrdg (like ITDsd but use level/ridged ice)','default or none (none)'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_fallen_snow_radius" type="real"
	category="snow" group="snow">
fallen snow grain radius

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_snow_liquid_ponds" type="logical"
	category="snow" group="snow">
use snow liquid tracer for ponds

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_new_snow_density" type="real"
	category="snow" group="snow">
new snow density

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_max_snow_density" type="real"
	category="snow" group="snow">
maximum snow density

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_minimum_wind_compaction" type="real"
	category="snow" group="snow">
minimum wind speed to compact snow

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_wind_compaction_factor" type="real"
	category="snow" group="snow">
wind compaction factor

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_max_dry_snow_radius" type="real"
	category="snow" group="snow">
maximum dry metamorphism snow grain radius

Valid values: positive real
Default: Defined in namelist_defaults.xml
</entry>


<!-- meltponds -->

<entry id="config_snow_to_ice_transition_depth" type="real"
	category="meltponds" group="meltponds">
Snow depth for transition to bare sea ice.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_pond_refreezing_type" type="char*1024"
	category="meltponds" group="meltponds">
Pond refreezing parameterization.

Valid values: 'cesm' or 'hlid'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_pond_flushing_timescale" type="real"
	category="meltponds" group="meltponds">
Alter e-folding time scale for flushing.?????

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_min_meltwater_retained_fraction" type="real"
	category="meltponds" group="meltponds">
Minimum retained fraction of meltwater.

Valid values: Any real number between 0 and 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_max_meltwater_retained_fraction" type="real"
	category="meltponds" group="meltponds">
Maximum retained fraction of meltwater.

Valid values: Any real number between 0 and 1
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_pond_depth_to_fraction_ratio" type="real"
	category="meltponds" group="meltponds">
Ratio of pond depth to pond fraction.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_snow_on_pond_ice_tapering_parameter" type="real"
	category="meltponds" group="meltponds">
Tapering parameter for snow on pond ice.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_critical_pond_ice_thickness" type="real"
	category="meltponds" group="meltponds">
Critical parameter for pond ice thickness.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>


<!-- thermodynamics -->

<entry id="config_thermodynamics_type" type="char*1024"
	category="thermodynamics" group="thermodynamics">
Vertical themodynamics type.

Valid values: 'zero layer', 'BL99', or 'mushy'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_heat_conductivity_type" type="char*1024"
	category="thermodynamics" group="thermodynamics">
Thermal conductivity type for BL99 thermodynamics. Options are Maykut and Untersteiner 1971 form (with Wettlaufer 1991 constants), or Pringle et al JGR 2007 'bubbly brine'

Valid values: 'MU71' or 'bubbly'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_rapid_mode_channel_radius" type="real"
	category="thermodynamics" group="thermodynamics">
Channel radius for rapid gravity drainage mode.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_rapid_model_critical_Ra" type="real"
	category="thermodynamics" group="thermodynamics">
Critical Rayleigh number for rapid gravity drainage mode.

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_rapid_mode_aspect_ratio" type="real"
	category="thermodynamics" group="thermodynamics">
Aspect ratio for rapid gravity drainage mode (larger=wider).

Valid values: Any positive real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_slow_mode_drainage_strength" type="real"
	category="thermodynamics" group="thermodynamics">
Slow gravity drainage mode drainage strength.

Valid values: Any negative real number.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_slow_mode_critical_porosity" type="real"
	category="thermodynamics" group="thermodynamics">
Liquid fraction porosity cutoff for slow gravity drainage mode.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_congelation_ice_porosity" type="real"
	category="thermodynamics" group="thermodynamics">
Liquid fraction of congelation ice.

Valid values: Any real number between 0 and 1.
Default: Defined in namelist_defaults.xml
</entry>


<!-- itd -->

<entry id="config_itd_conversion_type" type="char*1024"
	category="itd" group="itd">
Type of ice thickness distribution conversions.

Valid values: 'delta function' or 'linear remap'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_category_bounds_type" type="char*1024"
	category="itd" group="itd">
Type of ice thickness category bounds.

Valid values: 'single category', 'original', 'new', 'WMO', or 'asymptotic'
Default: Defined in namelist_defaults.xml
</entry>


<!-- ridging -->

<entry id="config_ice_strength_formulation" type="char*1024"
	category="ridging" group="ridging">
Type of ice strength formulation.

Valid values: 'Hibler79' or 'Rothrock75'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ridging_participation_function" type="char*1024"
	category="ridging" group="ridging">
Type of ridging participation function.

Valid values: 'Thorndike75' or 'exponential'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ridging_redistribution_function" type="char*1024"
	category="ridging" group="ridging">
Type of ridging redistribution function.

Valid values: 'Hibler80' or 'exponential'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ridiging_efolding_scale" type="real"
	category="ridging" group="ridging">
E-folding scale of ridged ice (krdg_redist = 1)

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ratio_ridging_work_to_PE" type="real"
	category="ridging" group="ridging">
Ratio of ridging work to PE change in ridging (kstrength = 1)

Valid values:
Default: Defined in namelist_defaults.xml
</entry>


<!-- atmosphere -->

<entry id="config_atmos_boundary_method" type="char*1024"
	category="atmosphere" group="atmosphere">
Atmosphere boundary method.

Valid values: 'ccsm3' or 'constant'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_calc_surface_stresses" type="logical"
	category="atmosphere" group="atmosphere">
If true calculate wind stress components.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_calc_surface_temperature" type="logical"
	category="atmosphere" group="atmosphere">
If true calculate surface temperature. If false surface temperature is computed elsewhere and atmos-ice fluxes are provided.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_form_drag" type="logical"
	category="atmosphere" group="atmosphere">
If true calculate form drag.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_high_frequency_coupling" type="logical"
	category="atmosphere" group="atmosphere">
If true use high frequency coupling.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_boundary_layer_iteration_number" type="integer"
	category="atmosphere" group="atmosphere">
Number of iterations for boundary layer calculations

Valid values: Any positive integer.
Default: Defined in namelist_defaults.xml
</entry>


<!-- ocean -->

<entry id="config_use_ocean_mixed_layer" type="logical"
	category="ocean" group="ocean">
If true use an ocean mixed layer.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ocean_mixed_layer_type" type="char*1024"
	category="ocean" group="ocean">
Type of mixed layer slab ocean model to use

Valid values: 'cice', or 'e3sm'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_min_friction_velocity" type="real"
	category="ocean" group="ocean">
Minimum friction velocity for ice-ocean heat flux.

Valid values:
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ocean_heat_transfer_type" type="char*1024"
	category="ocean" group="ocean">
Transfer coefficient type for ice-ocean heat flux.

Valid values: 'constant' or 'Cdn_ocn'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_sea_freezing_temperature_type" type="char*1024"
	category="ocean" group="ocean">
Form of ocean freezing temperature.

Valid values: 'mushy', 'linear_salt', or DEFAULT
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_ocean_surface_type" type="char*1024"
	category="ocean" group="ocean">
Type of coupled ocean surface: (MPAS-O:'free'), (SOM:'non-free')

Valid values: 'free' or 'non-free'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_couple_biogeochemistry_fields" type="logical"
	category="ocean" group="ocean">


Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_use_data_icebergs" type="logical"
	category="ocean" group="ocean">
Use data iceberg meltwater forcing

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- diagnostics -->

<entry id="config_check_state" type="logical"
	category="diagnostics" group="diagnostics">
If true perform a check at runtime of the model state.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- prescribed_ice -->

<entry id="config_prescribed_ice_stream_year_first" type="integer"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_year_last" type="integer"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_model_year_align" type="integer"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_fldvarname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_fldfilename" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_domtvarname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_domxvarname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_domyvarname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_domareaname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_dommaskname" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_domfilename" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_mapread" type="char*1024"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_prescribed_ice_stream_fill" type="logical"
	category="prescribed_ice" group="prescribed_ice">
Prescribed ice stream parameter for e3sm sea ice driver.

Valid values: Unknown
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_highFrequencyOutput -->

<entry id="config_AM_highFrequencyOutput_enable" type="logical"
	category="AM_highFrequencyOutput" group="AM_highFrequencyOutput">
If true, ocean analysis member highFrequencyOutput is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_highFrequencyOutput_compute_interval" type="char*1024"
	category="AM_highFrequencyOutput" group="AM_highFrequencyOutput">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_highFrequencyOutput_output_stream" type="char*1024"
	category="AM_highFrequencyOutput" group="AM_highFrequencyOutput">
Name of the stream that the highFrequencyOutput analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_highFrequencyOutput_compute_on_startup" type="logical"
	category="AM_highFrequencyOutput" group="AM_highFrequencyOutput">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_highFrequencyOutput_write_on_startup" type="logical"
	category="AM_highFrequencyOutput" group="AM_highFrequencyOutput">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_temperatures -->

<entry id="config_AM_temperatures_enable" type="logical"
	category="AM_temperatures" group="AM_temperatures">
If true, ocean analysis member temperatures is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_temperatures_compute_interval" type="char*1024"
	category="AM_temperatures" group="AM_temperatures">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_temperatures_output_stream" type="char*1024"
	category="AM_temperatures" group="AM_temperatures">
Name of the stream that the temperatures analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_temperatures_compute_on_startup" type="logical"
	category="AM_temperatures" group="AM_temperatures">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_temperatures_write_on_startup" type="logical"
	category="AM_temperatures" group="AM_temperatures">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_thicknesses -->

<entry id="config_AM_thicknesses_enable" type="logical"
	category="AM_thicknesses" group="AM_thicknesses">
If true, ocean analysis member thicknesses is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_thicknesses_compute_interval" type="char*1024"
	category="AM_thicknesses" group="AM_thicknesses">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_thicknesses_output_stream" type="char*1024"
	category="AM_thicknesses" group="AM_thicknesses">
Name of the stream that the thicknesses analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_thicknesses_compute_on_startup" type="logical"
	category="AM_thicknesses" group="AM_thicknesses">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_thicknesses_write_on_startup" type="logical"
	category="AM_thicknesses" group="AM_thicknesses">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_regionalStatistics -->

<entry id="config_AM_regionalStatistics_enable" type="logical"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
If true, ocean analysis member regionalStatistics is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_regionalStatistics_compute_interval" type="char*1024"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_regionalStatistics_output_stream" type="char*1024"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
Name of the stream that the regionalStatistics analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_regionalStatistics_compute_on_startup" type="logical"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_regionalStatistics_write_on_startup" type="logical"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_regionalStatistics_ice_extent_limit" type="real"
	category="AM_regionalStatistics" group="AM_regionalStatistics">
sea-ice fraction limit for ice extent.

Valid values: real value between 0 and 1
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_ridgingDiagnostics -->

<entry id="config_AM_ridgingDiagnostics_enable" type="logical"
	category="AM_ridgingDiagnostics" group="AM_ridgingDiagnostics">
If true, ocean analysis member ridgingDiagnostics is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_ridgingDiagnostics_compute_interval" type="char*1024"
	category="AM_ridgingDiagnostics" group="AM_ridgingDiagnostics">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_ridgingDiagnostics_output_stream" type="char*1024"
	category="AM_ridgingDiagnostics" group="AM_ridgingDiagnostics">
Name of the stream that the ridgingDiagnostics analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_ridgingDiagnostics_compute_on_startup" type="logical"
	category="AM_ridgingDiagnostics" group="AM_ridgingDiagnostics">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_ridgingDiagnostics_write_on_startup" type="logical"
	category="AM_ridgingDiagnostics" group="AM_ridgingDiagnostics">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_conservationCheck -->

<entry id="config_AM_conservationCheck_enable" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
If true, ocean analysis member conservationCheck is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_compute_interval" type="char*1024"
	category="AM_conservationCheck" group="AM_conservationCheck">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_output_stream" type="char*1024"
	category="AM_conservationCheck" group="AM_conservationCheck">
Name of the stream that the conservationCheck analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_compute_on_startup" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_write_on_startup" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_write_to_logfile" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
Logical flag determining if the conservation check is written to the log file.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_restart_stream" type="char*1024"
	category="AM_conservationCheck" group="AM_conservationCheck">
Name of the restart stream the analysis member will use to initialize itself if restart is enabled.

Valid values: A restart stream with state of the conservation check.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_carbon_failure_abort" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
If true, abort if carbon conservation fails bounds check.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_conservationCheck_include_ocean" type="logical"
	category="AM_conservationCheck" group="AM_conservationCheck">
Include slab ocean in conservation calculation.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_geographicalVectors -->

<entry id="config_AM_geographicalVectors_enable" type="logical"
	category="AM_geographicalVectors" group="AM_geographicalVectors">
If true, ocean analysis member geographicalVectors is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_geographicalVectors_compute_interval" type="char*1024"
	category="AM_geographicalVectors" group="AM_geographicalVectors">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_geographicalVectors_output_stream" type="char*1024"
	category="AM_geographicalVectors" group="AM_geographicalVectors">
Name of the stream that the geographicalVectors analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_geographicalVectors_compute_on_startup" type="logical"
	category="AM_geographicalVectors" group="AM_geographicalVectors">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_geographicalVectors_write_on_startup" type="logical"
	category="AM_geographicalVectors" group="AM_geographicalVectors">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_loadBalance -->

<entry id="config_AM_loadBalance_enable" type="logical"
	category="AM_loadBalance" group="AM_loadBalance">
If true, ocean analysis member loadBalance is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_loadBalance_compute_interval" type="char*1024"
	category="AM_loadBalance" group="AM_loadBalance">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_loadBalance_output_stream" type="char*1024"
	category="AM_loadBalance" group="AM_loadBalance">
Name of the stream that the loadBalance analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_loadBalance_compute_on_startup" type="logical"
	category="AM_loadBalance" group="AM_loadBalance">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_loadBalance_write_on_startup" type="logical"
	category="AM_loadBalance" group="AM_loadBalance">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_loadBalance_nProcs" type="integer"
	category="AM_loadBalance" group="AM_loadBalance">
Number of processors to output results for

Valid values: Any positive integer
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_maximumIcePresence -->

<entry id="config_AM_maximumIcePresence_enable" type="logical"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
If true, ocean analysis member maximumIcePresence is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_maximumIcePresence_compute_interval" type="char*1024"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_maximumIcePresence_output_stream" type="char*1024"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
Name of the stream that the maximumIcePresence analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_maximumIcePresence_compute_on_startup" type="logical"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_maximumIcePresence_write_on_startup" type="logical"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_maximumIcePresence_start_time" type="char*1024"
	category="AM_maximumIcePresence" group="AM_maximumIcePresence">
Time to start accumulating ice domain

Valid values: Timestamp
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_miscellaneous -->

<entry id="config_AM_miscellaneous_enable" type="logical"
	category="AM_miscellaneous" group="AM_miscellaneous">
If true, ocean analysis member miscellaneous is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_miscellaneous_compute_interval" type="char*1024"
	category="AM_miscellaneous" group="AM_miscellaneous">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_miscellaneous_output_stream" type="char*1024"
	category="AM_miscellaneous" group="AM_miscellaneous">
Name of the stream that the miscellaneous analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_miscellaneous_compute_on_startup" type="logical"
	category="AM_miscellaneous" group="AM_miscellaneous">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_miscellaneous_write_on_startup" type="logical"
	category="AM_miscellaneous" group="AM_miscellaneous">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_areaVariables -->

<entry id="config_AM_areaVariables_enable" type="logical"
	category="AM_areaVariables" group="AM_areaVariables">
If true, ocean analysis member areaVariables is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_areaVariables_compute_interval" type="char*1024"
	category="AM_areaVariables" group="AM_areaVariables">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_areaVariables_output_stream" type="char*1024"
	category="AM_areaVariables" group="AM_areaVariables">
Name of the stream that the areaVariables analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_areaVariables_compute_on_startup" type="logical"
	category="AM_areaVariables" group="AM_areaVariables">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_areaVariables_write_on_startup" type="logical"
	category="AM_areaVariables" group="AM_areaVariables">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_pondDiagnostics -->

<entry id="config_AM_pondDiagnostics_enable" type="logical"
	category="AM_pondDiagnostics" group="AM_pondDiagnostics">
If true, ocean analysis member pondDiagnostics is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pondDiagnostics_compute_interval" type="char*1024"
	category="AM_pondDiagnostics" group="AM_pondDiagnostics">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pondDiagnostics_output_stream" type="char*1024"
	category="AM_pondDiagnostics" group="AM_pondDiagnostics">
Name of the stream that the pondDiagnostics analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pondDiagnostics_compute_on_startup" type="logical"
	category="AM_pondDiagnostics" group="AM_pondDiagnostics">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pondDiagnostics_write_on_startup" type="logical"
	category="AM_pondDiagnostics" group="AM_pondDiagnostics">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_unitConversion -->

<entry id="config_AM_unitConversion_enable" type="logical"
	category="AM_unitConversion" group="AM_unitConversion">
If true, ocean analysis member unitConversion is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_unitConversion_compute_interval" type="char*1024"
	category="AM_unitConversion" group="AM_unitConversion">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_unitConversion_output_stream" type="char*1024"
	category="AM_unitConversion" group="AM_unitConversion">
Name of the stream that the unitConversion analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_unitConversion_compute_on_startup" type="logical"
	category="AM_unitConversion" group="AM_unitConversion">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_unitConversion_write_on_startup" type="logical"
	category="AM_unitConversion" group="AM_unitConversion">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_pointwiseStats -->

<entry id="config_AM_pointwiseStats_enable" type="logical"
	category="AM_pointwiseStats" group="AM_pointwiseStats">
If true, ocean analysis member pointwiseStats is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pointwiseStats_compute_interval" type="char*1024"
	category="AM_pointwiseStats" group="AM_pointwiseStats">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pointwiseStats_output_stream" type="char*1024"
	category="AM_pointwiseStats" group="AM_pointwiseStats">
Name of the stream that the pointwiseStats analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pointwiseStats_compute_on_startup" type="logical"
	category="AM_pointwiseStats" group="AM_pointwiseStats">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_pointwiseStats_write_on_startup" type="logical"
	category="AM_pointwiseStats" group="AM_pointwiseStats">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_iceShelves -->

<entry id="config_AM_iceShelves_enable" type="logical"
	category="AM_iceShelves" group="AM_iceShelves">
If true, ocean analysis member iceShelves is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_iceShelves_compute_interval" type="char*1024"
	category="AM_iceShelves" group="AM_iceShelves">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_iceShelves_output_stream" type="char*1024"
	category="AM_iceShelves" group="AM_iceShelves">
Name of the stream that the iceShelves analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_iceShelves_compute_on_startup" type="logical"
	category="AM_iceShelves" group="AM_iceShelves">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_iceShelves_write_on_startup" type="logical"
	category="AM_iceShelves" group="AM_iceShelves">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_icePresent -->

<entry id="config_AM_icePresent_enable" type="logical"
	category="AM_icePresent" group="AM_icePresent">
If true, ocean analysis member icePresent is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_icePresent_compute_interval" type="char*1024"
	category="AM_icePresent" group="AM_icePresent">
Timestamp determining how often analysis member computation should be performed.

Valid values: Any valid time stamp, 'dt', or 'output_interval'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_icePresent_output_stream" type="char*1024"
	category="AM_icePresent" group="AM_icePresent">
Name of the stream that the icePresent analysis member should be tied to.

Valid values: Any existing stream name or 'none'
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_icePresent_compute_on_startup" type="logical"
	category="AM_icePresent" group="AM_icePresent">
Logical flag determining if an analysis member computation occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_icePresent_write_on_startup" type="logical"
	category="AM_icePresent" group="AM_icePresent">
Logical flag determining if an analysis member write occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_timeSeriesStatsDaily -->

<entry id="config_AM_timeSeriesStatsDaily_enable" type="logical"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
If true, ocean analysis member time series stats is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_compute_on_startup" type="logical"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Logical flag determining if an analysis member computation occurs on start-up. You likely want this off for this (time series) analysis member because it will accumulate any state prior to time stepping (double counting the last time step).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_write_on_startup" type="logical"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Logical flag determining if an analysis member output occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_compute_interval" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Interval that determines frequency of computation for the time series stats analysis member.

Valid values: Any valid time stamp or 'dt'. This must also be less than or equal to output_interval / 2 (i.e., requires at least two samples in a series).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_output_stream" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Name of stream the time series stats analysis member will operate on.

Valid values: An existing stream that will be modified (existing real fields removed and new time series stats versions added) with time series stats outputs. Cannot be 'none', like other analysis members.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_restart_stream" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Name of the restart stream the time series stats analysis member will use to initialize itself if restart is enabled.

Valid values: A restart stream with state of the time series stats.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_operation" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
An operation describing the statistic to apply to the time series for all variables in the output stream, reducing the time dimension.

Valid values: An operation, where it can be 'avg', 'min', or 'max', 'sum', or 'sos' (sum of squares).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_reference_times" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
A list of absolute times describing when to start accumulating statistics. Each time indicates the start of one time window (time series statistic) per variable, in the output stream (i.e., provide four start times if you want quarterly climatologies, only one time is needed for monthly or daily averages, etc.)

Valid values: A list of absolute times or 'initial_time's, separated by ;.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_duration_intervals" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
A list of time durations in d_h:m:s describing how long to accumulate statistics in a time window for each repetition (repeat_interval). It has to match the number of start time tokens in reference_times.

Valid values: A list of time durations in d_h:m:s or 'repeat_interval's, separated by ;. Each must be greater than or equal to compute_interval * 2 and less than or equal to repeat_interval. duration_intervals less than repeat_intervals allow for repeated statistics within the repeat_interval (i.e., for climatologies)
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_repeat_intervals" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
A list of time durations in d_h:m:s describing the accumulation statistic temporal periodicity (time between beginning to accumulate again after it started - duration_interval describes when to stop after starting/restarting). It has to match the number of tokens in reference_times.

Valid values: MISSING POSSIBLE VALUES
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_reset_intervals" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
A list of time durations in d_h:m:s describing the statistic reset periodicity (how often to reset/clear/zero the accumulation). It has to match the number of tokens in reference_times.

Valid values: A list of time durations in d_h:m:s, separated by ;. Ought to be greater than or equal to output_interval (not verified by the analysis member).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsDaily_backward_output_offset" type="char*1024"
	category="AM_timeSeriesStatsDaily" group="AM_timeSeriesStatsDaily">
Backward offset for filename timestamps when writing the output stream

Valid values: A time interval in YYYY-MM-DD_hh:mm:ss.
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_timeSeriesStatsMonthly -->

<entry id="config_AM_timeSeriesStatsMonthly_enable" type="logical"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
If true, ocean analysis member time series stats is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_compute_on_startup" type="logical"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Logical flag determining if an analysis member computation occurs on start-up. You likely want this off for this (time series) analysis member because it will accumulate any state prior to time stepping (double counting the last time step).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_write_on_startup" type="logical"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Logical flag determining if an analysis member output occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_compute_interval" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Interval that determines frequency of computation for the time series stats analysis member.

Valid values: Any valid time stamp or 'dt'. This must also be less than or equal to output_interval / 2 (i.e., requires at least two samples in a series).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_output_stream" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Name of stream the time series stats analysis member will operate on.

Valid values: An existing stream that will be modified (existing real fields removed and new time series stats versions added) with time series stats outputs. Cannot be 'none', like other analysis members.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_restart_stream" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Name of the restart stream the time series stats analysis member will use to initialize itself if restart is enabled.

Valid values: A restart stream with state of the time series stats.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_operation" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
An operation describing the statistic to apply to the time series for all variables in the output stream, reducing the time dimension.

Valid values: An operation, where it can be 'avg', 'min', or 'max', 'sum', or 'sos' (sum of squares).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_reference_times" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
A list of absolute times describing when to start accumulating statistics. Each time indicates the start of one time window (time series statistic) per variable, in the output stream (i.e., provide four start times if you want quarterly climatologies, only one time is needed for monthly or daily averages, etc.)

Valid values: A list of absolute times or 'initial_time's, separated by ;.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_duration_intervals" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
A list of time durations in d_h:m:s describing how long to accumulate statistics in a time window for each repetition (repeat_interval). It has to match the number of start time tokens in reference_times.

Valid values: A list of time durations in d_h:m:s or 'repeat_interval's, separated by ;. Each must be greater than or equal to compute_interval * 2 and less than or equal to repeat_interval. duration_intervals less than repeat_intervals allow for repeated statistics within the repeat_interval (i.e., for climatologies)
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_repeat_intervals" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
A list of time durations in d_h:m:s describing the accumulation statistic temporal periodicity (time between beginning to accumulate again after it started - duration_interval describes when to stop after starting/restarting). It has to match the number of tokens in reference_times.

Valid values: MISSING POSSIBLE VALUES
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_reset_intervals" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
A list of time durations in d_h:m:s describing the statistic reset periodicity (how often to reset/clear/zero the accumulation). It has to match the number of tokens in reference_times.

Valid values: A list of time durations in d_h:m:s, separated by ;. Ought to be greater than or equal to output_interval (not verified by the analysis member).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsMonthly_backward_output_offset" type="char*1024"
	category="AM_timeSeriesStatsMonthly" group="AM_timeSeriesStatsMonthly">
Backward offset for filename timestamps when writing the output stream

Valid values: A time interval in YYYY-MM-DD_hh:mm:ss.
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_timeSeriesStatsClimatology -->

<entry id="config_AM_timeSeriesStatsClimatology_enable" type="logical"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
If true, ocean analysis member time series stats is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_compute_on_startup" type="logical"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Logical flag determining if an analysis member computation occurs on start-up. You likely want this off for this (time series) analysis member because it will accumulate any state prior to time stepping (double counting the last time step).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_write_on_startup" type="logical"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Logical flag determining if an analysis member output occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_compute_interval" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Interval that determines frequency of computation for the time series stats analysis member.

Valid values: Any valid time stamp or 'dt'. This must also be less than or equal to output_interval / 2 (i.e., requires at least two samples in a series).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_output_stream" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Name of stream the time series stats analysis member will operate on.

Valid values: An existing stream that will be modified (existing real fields removed and new time series stats versions added) with time series stats outputs. Cannot be 'none', like other analysis members.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_restart_stream" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Name of the restart stream the time series stats analysis member will use to initialize itself if restart is enabled.

Valid values: A restart stream with state of the time series stats.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_operation" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
An operation describing the statistic to apply to the time series for all variables in the output stream, reducing the time dimension.

Valid values: An operation, where it can be 'avg', 'min', or 'max', 'sum', or 'sos' (sum of squares).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_reference_times" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
A list of absolute times describing when to start accumulating statistics. Each time indicates the start of one time window (time series statistic) per variable, in the output stream (i.e., provide four start times if you want quarterly climatologies, only one time is needed for monthly or daily averages, etc.)

Valid values: A list of absolute times or 'initial_time's, separated by ;.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_duration_intervals" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
A list of time durations in d_h:m:s describing how long to accumulate statistics in a time window for each repetition (repeat_interval). It has to match the number of start time tokens in reference_times.

Valid values: A list of time durations in d_h:m:s or 'repeat_interval's, separated by ;. Each must be greater than or equal to compute_interval * 2 and less than or equal to repeat_interval. duration_intervals less than repeat_intervals allow for repeated statistics within the repeat_interval (i.e., for climatologies)
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_repeat_intervals" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
A list of time durations in d_h:m:s describing the accumulation statistic temporal periodicity (time between beginning to accumulate again after it started - duration_interval describes when to stop after starting/restarting). It has to match the number of tokens in reference_times.

Valid values: MISSING POSSIBLE VALUES
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_reset_intervals" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
A list of time durations in d_h:m:s describing the statistic reset periodicity (how often to reset/clear/zero the accumulation). It has to match the number of tokens in reference_times.

Valid values: A list of time durations in d_h:m:s, separated by ;. Ought to be greater than or equal to output_interval (not verified by the analysis member).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsClimatology_backward_output_offset" type="char*1024"
	category="AM_timeSeriesStatsClimatology" group="AM_timeSeriesStatsClimatology">
Backward offset for filename timestamps when writing the output stream

Valid values: A time interval in YYYY-MM-DD_hh:mm:ss.
Default: Defined in namelist_defaults.xml
</entry>


<!-- AM_timeSeriesStatsCustom -->

<entry id="config_AM_timeSeriesStatsCustom_enable" type="logical"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
If true, ocean analysis member time series stats is called.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_compute_on_startup" type="logical"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Logical flag determining if an analysis member computation occurs on start-up. You likely want this off for this (time series) analysis member because it will accumulate any state prior to time stepping (double counting the last time step).

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_write_on_startup" type="logical"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Logical flag determining if an analysis member output occurs on start-up.

Valid values: true or false
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_compute_interval" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Interval that determines frequency of computation for the time series stats analysis member.

Valid values: Any valid time stamp or 'dt'. This must also be less than or equal to output_interval / 2 (i.e., requires at least two samples in a series).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_output_stream" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Name of stream the time series stats analysis member will operate on.

Valid values: An existing stream that will be modified (existing real fields removed and new time series stats versions added) with time series stats outputs. Cannot be 'none', like other analysis members.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_restart_stream" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Name of the restart stream the time series stats analysis member will use to initialize itself if restart is enabled.

Valid values: A restart stream with state of the time series stats.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_operation" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
An operation describing the statistic to apply to the time series for all variables in the output stream, reducing the time dimension.

Valid values: An operation, where it can be 'avg', 'min', or 'max', 'sum', or 'sos' (sum of squares).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_reference_times" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
A list of absolute times describing when to start accumulating statistics. Each time indicates the start of one time window (time series statistic) per variable, in the output stream (i.e., provide four start times if you want quarterly climatologies, only one time is needed for monthly or daily averages, etc.)

Valid values: A list of absolute times or 'initial_time's, separated by ;.
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_duration_intervals" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
A list of time durations in d_h:m:s describing how long to accumulate statistics in a time window for each repetition (repeat_interval). It has to match the number of start time tokens in reference_times.

Valid values: A list of time durations in d_h:m:s or 'repeat_interval's, separated by ;. Each must be greater than or equal to compute_interval * 2 and less than or equal to repeat_interval. duration_intervals less than repeat_intervals allow for repeated statistics within the repeat_interval (i.e., for climatologies)
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_repeat_intervals" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
A list of time durations in d_h:m:s describing the accumulation statistic temporal periodicity (time between beginning to accumulate again after it started - duration_interval describes when to stop after starting/restarting). It has to match the number of tokens in reference_times.

Valid values: MISSING POSSIBLE VALUES
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_reset_intervals" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
A list of time durations in d_h:m:s describing the statistic reset periodicity (how often to reset/clear/zero the accumulation). It has to match the number of tokens in reference_times.

Valid values: A list of time durations in d_h:m:s, separated by ;. Ought to be greater than or equal to output_interval (not verified by the analysis member).
Default: Defined in namelist_defaults.xml
</entry>

<entry id="config_AM_timeSeriesStatsCustom_backward_output_offset" type="char*1024"
	category="AM_timeSeriesStatsCustom" group="AM_timeSeriesStatsCustom">
Backward offset for filename timestamps when writing the output stream

Valid values: A time interval in YYYY-MM-DD_hh:mm:ss.
Default: Defined in namelist_defaults.xml
</entry>

</namelist_definition>
