Skip to content

Commit

Permalink
Clarify which diagnostics are for concentration
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-c-ross committed Aug 22, 2024
1 parent e64a381 commit 75112a6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/tracer/MOM_tracer_registry.F90
Original file line number Diff line number Diff line change
Expand Up @@ -456,19 +456,19 @@ subroutine register_tracer_diagnostics(Reg, h, Time, diag, G, GV, US, use_ALE, u
trim(lowercase(flux_longname)), conv_units, v_extensive=.true., &
conversion=Tr%conv_scale*US%s_to_T)
Tr%id_difc_xy = register_diag_field('ocean_model',trim(shortnm)//"_diffusionc_xy", &
diag%axesTL, Time, "Horizontal convergence of residual mean diffusive fluxes of "//trim(shortnm), &
trim(units)//' s-1')
diag%axesTL, Time, "Horizontal convergence of residual mean diffusive fluxes of "//&
trim(shortnm)//' concentration', trim(units)//' s-1')
Tr%id_dif_xy = register_diag_field('ocean_model',trim(shortnm)//"_diffusion_xy", &
diag%axesTL, Time, "Horizontal convergence of residual mean diffusive fluxes of "//trim(shortnm), &
trim(units)//' s-1')
Tr%id_advc_xy = register_diag_field('ocean_model',trim(shortnm)//"_advectionc_xy", &
diag%axesTL, Time, "Horizontal convergence of residual mean advective fluxes of "//trim(shortnm), &
trim(units)//' s-1')
diag%axesTL, Time, "Horizontal convergence of residual mean advective fluxes of "//&
trim(shortnm)//' concentration', trim(units)//' s-1')
Tr%id_advc_x = register_diag_field("ocean_model",trim(shortnm)//'_advectionc_x', &
diag%axesTL, Time, "Horizontal x mean advective fluxes of "//trim(shortnm), &
diag%axesTL, Time, "Horizontal x mean advective fluxes of "//trim(shortnm)//' concentration', &
trim(units)//' s-1')
Tr%id_advc_y = register_diag_field("ocean_model",trim(shortnm)//'_advectionc_y', &
diag%axesTL, Time, "Horizontal y mean advective fluxes of "//trim(shortnm), &
diag%axesTL, Time, "Horizontal y mean advective fluxes of "//trim(shortnm)//' concentration', &
trim(units)//' s-1')
Tr%id_adv_xy_2d = register_diag_field('ocean_model', trim(shortnm)//"_advection_xy_2d", &
diag%axesT1, Time, &
Expand Down

0 comments on commit 75112a6

Please sign in to comment.