Skip to content

Commit

Permalink
correct units for sin/cos grid rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
MJHarrison-GFDL committed Aug 21, 2018
1 parent 24f3c3f commit e3923d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/diagnostics/MOM_diagnostics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1953,11 +1953,11 @@ subroutine write_static_fields(G, GV, tv, diag)
if (id > 0) call post_data(id, G%dx_Cv, diag, .true.)

id = register_static_field('ocean_model', 'sin_rot', diag%axesT1, &
'sine of the clockwise angle of the ocean grid north to true north', 'radians')
'sine of the clockwise angle of the ocean grid north to true north', 'none')
if (id > 0) call post_data(id, G%sin_rot, diag, .true.)

id = register_static_field('ocean_model', 'cos_rot', diag%axesT1, &
'cosine of the clockwise angle of the ocean grid north to true north', 'radians')
'cosine of the clockwise angle of the ocean grid north to true north', 'none')
if (id > 0) call post_data(id, G%cos_rot, diag, .true.)


Expand Down

0 comments on commit e3923d3

Please sign in to comment.