Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CF-compliant Time coordinate #19

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions components/mpas-ocean/src/Registry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
<dim name="nVerticesP1" definition="nVertices+1"
description="The total number of cells in the dual grid. Also the number of corners in the primary grid."
/>
<dim name="bnds" definition="2"
description="The number of coordinate bound"
/>
<dim name="TWO" definition="2"
description="The number two as a dimension."
/>
Expand Down Expand Up @@ -137,6 +140,10 @@
description="Selection of the type of calendar that should be used in the simulation."
possible_values="'gregorian', 'noleap'"
/>
<nml_option name="config_output_reference_time" type="character" default_value="0001-01-01_00:00:00"
description="Reference time used in the units attribute of Time in output files."
possible_values="'YYYY-MM-DD_HH:MM:SS'"
/>
</nml_record>
<nml_record name="io" mode="forward;analysis">
<nml_option name="config_write_output_on_startup" type="logical" default_value=".true."
Expand Down Expand Up @@ -326,7 +333,7 @@
/>
</nml_record>
<nml_record name="submesoscale_eddy_parameterization" mode="forward">
<nml_option name="config_submesoscale_enable" type="logical" default_value=".false."
<nml_option name="config_submesoscale_enable" type="logical" default_value=".false."
description="flag to enable the FK2011 parameterization for submesoscale eddies"
possible_values=".true. or .false."
/>
Expand Down Expand Up @@ -431,7 +438,7 @@
/>
<nml_option name="config_eddyMLD_reference_depth" type="real" default_value="10" units="m"
description="reference depth for threshold computation"
possible_values="any positive real, near 10"
possible_values="any positive real, near 10"
/>
<nml_option name="config_eddyMLD_reference_pressure" type="real" default_value="1.0e5" units="Pa"
description="reference pressure for original mixed layer depth calculation"
Expand Down Expand Up @@ -2530,6 +2537,12 @@
<var name="xtime" type="text" dimensions="Time"
description="model time, with format 'YYYY-MM-DD_HH:MM:SS'"
/>
<var name="Time" type="real" dimensions="Time" bounds="Time_bnds"
description="time" standard_name="time"
/>
<var name="Time_bnds" type="real" dimensions="Time bnds"
description="time bounds"
/>
<var name="simulationStartTime" type="text" dimensions="" default_value="'no_date_available'"
description="start time of first simulation, with format 'YYYY-MM-DD_HH:MM:SS'"
/>
Expand Down
Loading