-
Notifications
You must be signed in to change notification settings - Fork 23
Technical documentation
This section describes how to create the initial coupling field restarts.
See https://github.com/OceansAus/access-om2/issues/45
See .csv tables auto-generated by https://github.com/aekiss/run_summary in /g/data3/hh5/tmp/cosima/access-om2-run-summaries
on NCI.
is here: MOM_diags.txt (best viewed as "raw").
A comprehensive tabulation of MOM5 diagnostics does not exist.
A set of Unix commands to generate such a list is offered on p.413 of S. M. Griffies "Elements of the Modular Ocean Model (MOM) 5 (2012 release with updates)" [Technical Report 7, NOAA/Geophysical Fluid Dynamics Laboratory Ocean Group, February 2012] but this does not deal well with diagnostic registrations that span multiple lines.
The list offered here is more complete, but not without its own problems. Hopefully it will be of some use.
This is a work in progress.
Some of these diags may not actually be available because the functions may not be called.
Also many names are programmatically generated so you have to dive into the code to figure out what they are, eg
e: id_yflux_adv_int_z ( n ) = register_diag_field ( 'ocean_model' , trim ( t_prog ( n ) % name ) // '_yflux_adv_int_z' , grd % tracer_axes_flux_y ( 1 : 2 ) , time % model_time , 'z-integral of cp*rho*dxt*v*temp' , 'Watts' , missing_value = missing_value , range = ( / - 1.e18 , 1.e18 / ) )
(we are working on dealing with that case)
The diag list was produced by Marshall Ward using flint to parse the entire MOM codebase via this script (named parse.py
):
from flint.project import Project
proj = Project(verbose=True)
proj.parse('mom5/mom5')
The parse.py
script was run (python
works fine if 3.x is installed):
python3 parse.py > out
The parsed output out
is then filtered with grep
to just list the lines with diag_table field registrations:
grep -e "^mom5" -e "= *register_diag_field" out > MOM_diags.txt
- Quick start
- Downloading ACCESS-OM2
- Building the models
- Running a test case
- Checking model output
- Running on gadi
- Updating an experiment
- Creating a new experiment
- Starting an experiment from existing restarts
- Integrating with the COSIMA cookbook
- Archiving model output
- Updating model bathymetry
- Perturbing the forcing fields
- Changing the bathymetry, land-sea mask and OASIS remapping weights
- Overview
- Coupling strategy
- Model load balancing
- CICE block distribution
- Build system
- Future work
- libaccessom2 / YATM
- MOM
- CICE
- Building models individually
- Installing new executables
- Contributing changes to the ACCESS-OM2 repository
- Testing
- Release history