I’m currently running a short test of the GitHub - rmholmes/025deg_jra55_ryf configuration, but it only outputs monthly data, and I need daily as well. This may be obvious to others, but I’ve combed the technical report, CICE/MOM documentation and re-checked the cice_in.nml and diag_table and I just can’t work out where/what fields I am supposed to update in this particular configuration to output daily as well as monthly files. How do I do this?
Hi Serena
In cice_in.nml
, add d
to the fields you would like daily output for. e.g:
f_daidtd = 'm'
would become
f_daidtd = 'md'
For MOM, the best way to update the diag_table
is to use the make_diag_table.py
script. e.g. to add daily 2d fields, add them to diag_table_source.yaml
here and then run make_diag_table.py
Thanks @anton. @sschroeter just noting that Anton referenced the daily 2d *maximum* fields
section of the diag_table_source.yaml
. If you just want standard time-averages, put the required variable under daily 2d fields
.
There’s some info on diags here Getting started · COSIMA/access-om2 Wiki · GitHub
make_diag_table
is documented here GitHub - COSIMA/make_diag_table: Python script to generate MOM diag_table with most of the explanation in the comments in diag_table_source.yaml
make_diag_table/diag_table_source.yaml at master · COSIMA/make_diag_table · GitHub
Perfect, thank you all!