You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calculating time averages requires the time bounds. Traditionally, FMS history files contained the time bounds information in 3 variables: average_T1, average_T2, and average_DT
average_T1 is the start time for the averaging period (in the same time units as time)
average_T2 is the end time for the averaging period
average_DT is the length of the averaging period, in days
These 3 variables are referenced as a variable attribute in each diagnostic. e.g.
The modern diag manager does not save the time bounds in that non-standard format. It uses the CF convention, which is to point to the time bounds in the "bounds" attribute to time. e.g.
Calculating time averages requires the time bounds. Traditionally, FMS history files contained the time bounds information in 3 variables: average_T1, average_T2, and average_DT
average_T1 is the start time for the averaging period (in the same time units as time)
average_T2 is the end time for the averaging period
average_DT is the length of the averaging period, in days
These 3 variables are referenced as a variable attribute in each diagnostic. e.g.
The modern diag manager does not save the time bounds in that non-standard format. It uses the CF convention, which is to point to the time bounds in the "bounds" attribute to time. e.g.
The time bounds variable contains the start/end period for each time. https://cfconventions.org/Data/cf-conventions/cf-conventions-1.11/cf-conventions.html#cell-boundaries
The old diag manager saved both sets of time bounds and the new/modern diag manager saves only the CF standard time bounds.
In some places, the code is looking for
average_DT
which will need to be updated to be compatible with output from the new/modern diag manager.The text was updated successfully, but these errors were encountered: